diff --git a/src/grammar/mysql/MySqlParser.g4 b/src/grammar/mysql/MySqlParser.g4 index 5db09dfd..3fa39299 100644 --- a/src/grammar/mysql/MySqlParser.g4 +++ b/src/grammar/mysql/MySqlParser.g4 @@ -1071,7 +1071,7 @@ orderByClause ; orderByExpression - : expression order=(KW_ASC | KW_DESC)? + : (expression | columnNamePathAllowEmpty) order=(KW_ASC | KW_DESC)? ; tableSources @@ -1258,7 +1258,7 @@ groupByClause ; havingClause - : KW_HAVING havingExpr=expression + : KW_HAVING (havingExpr=expression | columnNamePathAllowEmpty) ; windowClause @@ -1266,7 +1266,7 @@ windowClause ; groupByItem - : expression order=(KW_ASC | KW_DESC)? + : (expression | columnNamePathAllowEmpty) order=(KW_ASC | KW_DESC)? ; limitClause @@ -2431,13 +2431,14 @@ columnName ; columnNamePath - : uid (dottedId dottedId?)? - | .? dottedId dottedId? + : uid (dottedId dottedId?)? # columnNamePath_default + | .? dottedId dottedId? # columnNamePath_dotted + | uid DOT {this.shouldMatchEmpty()}? emptyColumn # columnNamePath_dot_empty ; columnNamePathAllowEmpty - : {this.shouldMatchEmpty()}? emptyColumn - | uid (dottedId dottedId?)? + : columnNamePath + | {this.shouldMatchEmpty()}? emptyColumn ; tableSpaceNameCreate diff --git a/src/grammar/postgresql/PostgreSqlParser.g4 b/src/grammar/postgresql/PostgreSqlParser.g4 index 148d4302..64583dbd 100644 --- a/src/grammar/postgresql/PostgreSqlParser.g4 +++ b/src/grammar/postgresql/PostgreSqlParser.g4 @@ -40,6 +40,17 @@ options { superClass=SQLParserBase; } +@parser::members { + isFollowedByInto(): boolean { + return this.tokenStream.LA(1) === PostgreSqlParser.KW_INTO; + } + + isFollowedByEnd(): boolean { + const la = this.tokenStream.LA(1); + return la === PostgreSqlParser.SEMI || la === PostgreSqlParser.EOF; + } +} + @header { import { SQLParserBase } from '../SQLParserBase'; } @@ -2629,7 +2640,8 @@ optIndirection ; targetList - : targetEl (COMMA targetEl)* + : {this.isFollowedByInto() || this.isFollowedByEnd()}? + | targetEl (COMMA targetEl)* ; targetEl @@ -2735,7 +2747,8 @@ columnName ; columnNamePath - : colId optIndirection + : colId optIndirection # columnNamePath_default + | colId DOT {this.shouldMatchEmpty()}? emptyColumn # columnNamePath_dot_empty ; columnNameCreate @@ -3628,5 +3641,5 @@ anyIdentifier ; sqlExpression - : targetList? intoClause? fromClause? whereClause? groupClause? havingClause? windowClause? + : targetList intoClause? fromClause? whereClause? groupClause? havingClause? windowClause? ; \ No newline at end of file diff --git a/src/grammar/trino/TrinoSql.g4 b/src/grammar/trino/TrinoSql.g4 index a21d1cfd..170f6e1b 100644 --- a/src/grammar/trino/TrinoSql.g4 +++ b/src/grammar/trino/TrinoSql.g4 @@ -29,6 +29,12 @@ options { superClass=SQLParserBase; } +@parser::members { + notEntityCollecting(): boolean { + return !this.entityCollecting; + } +} + @header { import { SQLParserBase } from '../SQLParserBase'; } @@ -380,10 +386,19 @@ joinType ; joinCriteria - : KW_ON booleanExpression + : KW_ON (joinColumnEquality | {this.notEntityCollecting()}? booleanExpression) | KW_USING '(' identifier (',' identifier)* ')' ; +joinColumnEquality + : left=joinColumnReference EQ right=joinColumnReference + ; + +joinColumnReference + : identifier DOT {this.entityCollecting}? emptyColumn + | columnName + ; + sampledRelation : patternRecognition (KW_TABLESAMPLE sampleType '(' percentage=expression ')')? ; @@ -1039,6 +1054,10 @@ columnRef | {this.shouldMatchEmpty()}? ; +emptyColumn + : + ; + columnName : qualifiedName ; diff --git a/src/lib/mysql/MySqlParser.interp b/src/lib/mysql/MySqlParser.interp index e675b018..7e259558 100644 --- a/src/lib/mysql/MySqlParser.interp +++ b/src/lib/mysql/MySqlParser.interp @@ -2225,4 +2225,4 @@ functionNameBase atn: -[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 +[4, 1, 895, 8139, 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, 130, 3, 130, 3955, 8, 130, 1, 131, 1, 131, 1, 131, 5, 131, 3960, 8, 131, 10, 131, 12, 131, 3963, 9, 131, 1, 132, 1, 132, 5, 132, 3967, 8, 132, 10, 132, 12, 132, 3970, 9, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3975, 8, 132, 10, 132, 12, 132, 3978, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3983, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3991, 8, 133, 1, 133, 3, 133, 3994, 8, 133, 1, 133, 3, 133, 3997, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 4002, 8, 133, 10, 133, 12, 133, 4005, 9, 133, 3, 133, 4007, 8, 133, 1, 133, 3, 133, 4010, 8, 133, 1, 133, 1, 133, 3, 133, 4014, 8, 133, 1, 133, 1, 133, 3, 133, 4018, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 4024, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 4031, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 4041, 8, 136, 1, 136, 1, 136, 3, 136, 4045, 8, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 4054, 8, 137, 1, 138, 3, 138, 4057, 8, 138, 1, 138, 1, 138, 3, 138, 4061, 8, 138, 1, 138, 1, 138, 5, 138, 4065, 8, 138, 10, 138, 12, 138, 4068, 9, 138, 1, 138, 1, 138, 1, 138, 5, 138, 4073, 8, 138, 10, 138, 12, 138, 4076, 9, 138, 1, 138, 1, 138, 3, 138, 4080, 8, 138, 1, 138, 1, 138, 3, 138, 4084, 8, 138, 1, 138, 1, 138, 5, 138, 4088, 8, 138, 10, 138, 12, 138, 4091, 9, 138, 1, 138, 1, 138, 1, 138, 3, 138, 4096, 8, 138, 1, 138, 3, 138, 4099, 8, 138, 3, 138, 4101, 8, 138, 1, 138, 1, 138, 3, 138, 4105, 8, 138, 1, 139, 1, 139, 1, 139, 3, 139, 4110, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 4117, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 4127, 8, 140, 1, 141, 1, 141, 5, 141, 4131, 8, 141, 10, 141, 12, 141, 4134, 9, 141, 1, 141, 1, 141, 3, 141, 4138, 8, 141, 1, 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, 141, 3, 141, 4160, 8, 141, 1, 142, 1, 142, 3, 142, 4164, 8, 142, 1, 142, 1, 142, 3, 142, 4168, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 4176, 8, 143, 1, 143, 1, 143, 3, 143, 4180, 8, 143, 1, 143, 3, 143, 4183, 8, 143, 3, 143, 4185, 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, 4198, 8, 144, 1, 144, 3, 144, 4201, 8, 144, 1, 145, 1, 145, 1, 145, 5, 145, 4206, 8, 145, 10, 145, 12, 145, 4209, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4218, 8, 146, 1, 146, 3, 146, 4221, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4226, 8, 146, 3, 146, 4228, 8, 146, 1, 146, 1, 146, 3, 146, 4232, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4240, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 4246, 8, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 4255, 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, 4268, 8, 149, 1, 150, 1, 150, 3, 150, 4272, 8, 150, 1, 150, 1, 150, 5, 150, 4276, 8, 150, 10, 150, 12, 150, 4279, 9, 150, 1, 151, 1, 151, 1, 151, 3, 151, 4284, 8, 151, 1, 151, 3, 151, 4287, 8, 151, 1, 151, 1, 151, 3, 151, 4291, 8, 151, 1, 151, 3, 151, 4294, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 4301, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 3, 155, 4313, 8, 155, 1, 155, 1, 155, 3, 155, 4317, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 4323, 8, 156, 10, 156, 12, 156, 4326, 9, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 4337, 8, 156, 1, 156, 1, 156, 4, 156, 4341, 8, 156, 11, 156, 12, 156, 4342, 3, 156, 4345, 8, 156, 1, 156, 1, 156, 4, 156, 4349, 8, 156, 11, 156, 12, 156, 4350, 3, 156, 4353, 8, 156, 3, 156, 4355, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 4361, 8, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 4369, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 4377, 8, 158, 1, 159, 1, 159, 3, 159, 4381, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 4386, 8, 159, 3, 159, 4388, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 5, 160, 4395, 8, 160, 10, 160, 12, 160, 4398, 9, 160, 1, 160, 1, 160, 3, 160, 4402, 8, 160, 1, 161, 1, 161, 1, 161, 3, 161, 4407, 8, 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, 4422, 8, 162, 10, 162, 12, 162, 4425, 9, 162, 1, 163, 1, 163, 3, 163, 4429, 8, 163, 1, 163, 3, 163, 4432, 8, 163, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4438, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4445, 8, 164, 1, 165, 1, 165, 1, 165, 3, 165, 4450, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 4457, 8, 166, 10, 166, 12, 166, 4460, 9, 166, 3, 166, 4462, 8, 166, 1, 167, 1, 167, 3, 167, 4466, 8, 167, 1, 168, 1, 168, 3, 168, 4470, 8, 168, 1, 168, 1, 168, 3, 168, 4474, 8, 168, 1, 168, 3, 168, 4477, 8, 168, 1, 168, 3, 168, 4480, 8, 168, 1, 168, 3, 168, 4483, 8, 168, 1, 169, 1, 169, 3, 169, 4487, 8, 169, 1, 169, 1, 169, 3, 169, 4491, 8, 169, 1, 169, 3, 169, 4494, 8, 169, 1, 169, 3, 169, 4497, 8, 169, 1, 169, 3, 169, 4500, 8, 169, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 4507, 8, 171, 1, 171, 1, 171, 3, 171, 4511, 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, 4524, 8, 173, 10, 173, 12, 173, 4527, 9, 173, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 3, 176, 4539, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 4545, 8, 176, 10, 176, 12, 176, 4548, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4557, 8, 177, 1, 178, 1, 178, 3, 178, 4561, 8, 178, 1, 178, 3, 178, 4564, 8, 178, 1, 178, 1, 178, 1, 179, 1, 179, 3, 179, 4570, 8, 179, 1, 179, 3, 179, 4573, 8, 179, 1, 179, 3, 179, 4576, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4585, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 4594, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4602, 8, 182, 10, 182, 12, 182, 4605, 9, 182, 1, 182, 3, 182, 4608, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 5, 183, 4616, 8, 183, 10, 183, 12, 183, 4619, 9, 183, 1, 183, 3, 183, 4622, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 4631, 8, 184, 10, 184, 12, 184, 4634, 9, 184, 1, 184, 3, 184, 4637, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 4646, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 5, 186, 4653, 8, 186, 10, 186, 12, 186, 4656, 9, 186, 3, 186, 4658, 8, 186, 1, 186, 1, 186, 3, 186, 4662, 8, 186, 1, 186, 5, 186, 4665, 8, 186, 10, 186, 12, 186, 4668, 9, 186, 1, 186, 3, 186, 4671, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 5, 187, 4678, 8, 187, 10, 187, 12, 187, 4681, 9, 187, 3, 187, 4683, 8, 187, 1, 187, 3, 187, 4686, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4693, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4699, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4705, 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, 4729, 8, 190, 10, 190, 12, 190, 4732, 9, 190, 3, 190, 4734, 8, 190, 1, 190, 3, 190, 4737, 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, 4756, 8, 194, 3, 194, 4758, 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, 4779, 8, 195, 10, 195, 12, 195, 4782, 9, 195, 3, 195, 4784, 8, 195, 1, 195, 3, 195, 4787, 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, 4806, 8, 199, 3, 199, 4808, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4820, 8, 201, 10, 201, 12, 201, 4823, 9, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4833, 8, 201, 10, 201, 12, 201, 4836, 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, 4870, 8, 201, 10, 201, 12, 201, 4873, 9, 201, 1, 201, 1, 201, 3, 201, 4877, 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, 4912, 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, 4926, 8, 205, 1, 206, 1, 206, 1, 206, 5, 206, 4931, 8, 206, 10, 206, 12, 206, 4934, 9, 206, 1, 206, 3, 206, 4937, 8, 206, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4943, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 4951, 8, 208, 3, 208, 4953, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 4964, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4974, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4981, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4987, 8, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 3, 216, 4995, 8, 216, 1, 217, 1, 217, 1, 217, 3, 217, 5000, 8, 217, 1, 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, 1, 217, 1, 217, 5, 217, 5030, 8, 217, 10, 217, 12, 217, 5033, 9, 217, 1, 217, 5, 217, 5036, 8, 217, 10, 217, 12, 217, 5039, 9, 217, 1, 217, 1, 217, 3, 217, 5043, 8, 217, 1, 218, 1, 218, 1, 218, 3, 218, 5048, 8, 218, 1, 218, 4, 218, 5051, 8, 218, 11, 218, 12, 218, 5052, 1, 218, 1, 218, 4, 218, 5057, 8, 218, 11, 218, 12, 218, 5058, 3, 218, 5061, 8, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 4, 219, 5070, 8, 219, 11, 219, 12, 219, 5071, 1, 219, 5, 219, 5075, 8, 219, 10, 219, 12, 219, 5078, 9, 219, 1, 219, 1, 219, 4, 219, 5082, 8, 219, 11, 219, 12, 219, 5083, 3, 219, 5086, 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, 5100, 8, 222, 1, 222, 1, 222, 4, 222, 5104, 8, 222, 11, 222, 12, 222, 5105, 1, 222, 1, 222, 1, 222, 3, 222, 5111, 8, 222, 1, 223, 1, 223, 1, 223, 3, 223, 5116, 8, 223, 1, 223, 1, 223, 4, 223, 5120, 8, 223, 11, 223, 12, 223, 5121, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5129, 8, 223, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 3, 225, 5137, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 4, 225, 5143, 8, 225, 11, 225, 12, 225, 5144, 1, 225, 1, 225, 1, 225, 3, 225, 5150, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5156, 8, 226, 1, 226, 3, 226, 5159, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5167, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5174, 8, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5183, 8, 228, 1, 228, 3, 228, 5186, 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, 5201, 8, 230, 10, 230, 12, 230, 5204, 9, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 3, 231, 5211, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5219, 8, 231, 1, 232, 1, 232, 3, 232, 5223, 8, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 3, 233, 5230, 8, 233, 1, 233, 1, 233, 4, 233, 5234, 8, 233, 11, 233, 12, 233, 5235, 1, 234, 1, 234, 1, 234, 1, 234, 4, 234, 5242, 8, 234, 11, 234, 12, 234, 5243, 1, 235, 1, 235, 1, 235, 3, 235, 5249, 8, 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, 5, 235, 5262, 8, 235, 10, 235, 12, 235, 5265, 9, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5271, 8, 235, 1, 235, 5, 235, 5274, 8, 235, 10, 235, 12, 235, 5277, 9, 235, 3, 235, 5279, 8, 235, 3, 235, 5281, 8, 235, 1, 235, 1, 235, 4, 235, 5285, 8, 235, 11, 235, 12, 235, 5286, 3, 235, 5289, 8, 235, 1, 235, 1, 235, 5, 235, 5293, 8, 235, 10, 235, 12, 235, 5296, 9, 235, 1, 235, 1, 235, 3, 235, 5300, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5307, 8, 235, 1, 236, 1, 236, 1, 236, 3, 236, 5312, 8, 236, 1, 236, 1, 236, 3, 236, 5316, 8, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5321, 8, 236, 5, 236, 5323, 8, 236, 10, 236, 12, 236, 5326, 9, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5331, 8, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5337, 8, 236, 1, 236, 5, 236, 5340, 8, 236, 10, 236, 12, 236, 5343, 9, 236, 3, 236, 5345, 8, 236, 3, 236, 5347, 8, 236, 1, 236, 1, 236, 4, 236, 5351, 8, 236, 11, 236, 12, 236, 5352, 3, 236, 5355, 8, 236, 1, 236, 1, 236, 5, 236, 5359, 8, 236, 10, 236, 12, 236, 5362, 9, 236, 1, 236, 1, 236, 3, 236, 5366, 8, 236, 1, 237, 1, 237, 1, 237, 3, 237, 5371, 8, 237, 1, 237, 1, 237, 1, 237, 5, 237, 5376, 8, 237, 10, 237, 12, 237, 5379, 9, 237, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5385, 8, 238, 10, 238, 12, 238, 5388, 9, 238, 1, 238, 1, 238, 3, 238, 5392, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5399, 8, 238, 10, 238, 12, 238, 5402, 9, 238, 1, 238, 3, 238, 5405, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5411, 8, 238, 1, 238, 5, 238, 5414, 8, 238, 10, 238, 12, 238, 5417, 9, 238, 3, 238, 5419, 8, 238, 3, 238, 5421, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5427, 8, 238, 10, 238, 12, 238, 5430, 9, 238, 3, 238, 5432, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5439, 8, 238, 3, 238, 5441, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5446, 8, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5451, 8, 238, 10, 238, 12, 238, 5454, 9, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5460, 8, 238, 10, 238, 12, 238, 5463, 9, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5468, 8, 238, 3, 238, 5470, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5477, 8, 239, 1, 239, 3, 239, 5480, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 5, 240, 5490, 8, 240, 10, 240, 12, 240, 5493, 9, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5498, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 5506, 8, 241, 1, 241, 3, 241, 5509, 8, 241, 1, 241, 1, 241, 3, 241, 5513, 8, 241, 1, 241, 3, 241, 5516, 8, 241, 1, 241, 1, 241, 3, 241, 5520, 8, 241, 3, 241, 5522, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5533, 8, 242, 1, 242, 3, 242, 5536, 8, 242, 1, 242, 1, 242, 3, 242, 5540, 8, 242, 1, 242, 3, 242, 5543, 8, 242, 1, 242, 3, 242, 5546, 8, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5553, 8, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 5, 244, 5563, 8, 244, 10, 244, 12, 244, 5566, 9, 244, 3, 244, 5568, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5575, 8, 245, 1, 245, 1, 245, 5, 245, 5579, 8, 245, 10, 245, 12, 245, 5582, 9, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 5, 246, 5589, 8, 246, 10, 246, 12, 246, 5592, 9, 246, 1, 247, 1, 247, 3, 247, 5596, 8, 247, 1, 247, 1, 247, 1, 247, 5, 247, 5601, 8, 247, 10, 247, 12, 247, 5604, 9, 247, 1, 247, 1, 247, 3, 247, 5608, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5614, 8, 247, 1, 247, 1, 247, 3, 247, 5618, 8, 247, 1, 247, 1, 247, 3, 247, 5622, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5630, 8, 247, 1, 247, 1, 247, 3, 247, 5634, 8, 247, 1, 247, 1, 247, 3, 247, 5638, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5644, 8, 247, 3, 247, 5646, 8, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5658, 8, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5663, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5669, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5675, 8, 250, 1, 250, 1, 250, 3, 250, 5679, 8, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5684, 8, 250, 3, 250, 5686, 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, 5710, 8, 252, 4, 252, 5712, 8, 252, 11, 252, 12, 252, 5713, 1, 252, 3, 252, 5717, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5726, 8, 253, 1, 253, 1, 253, 3, 253, 5730, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5739, 8, 253, 1, 253, 1, 253, 3, 253, 5743, 8, 253, 1, 253, 1, 253, 3, 253, 5747, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5753, 8, 253, 3, 253, 5755, 8, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5764, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5774, 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, 5801, 8, 255, 1, 256, 1, 256, 3, 256, 5805, 8, 256, 1, 256, 1, 256, 1, 256, 3, 256, 5810, 8, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5817, 8, 257, 1, 257, 3, 257, 5820, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5826, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5836, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 5846, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5856, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5862, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5871, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5877, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5884, 8, 260, 3, 260, 5886, 8, 260, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 3, 262, 5894, 8, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 5900, 8, 262, 1, 262, 1, 262, 3, 262, 5904, 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, 5921, 8, 263, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 5931, 8, 265, 1, 266, 1, 266, 3, 266, 5935, 8, 266, 1, 266, 1, 266, 3, 266, 5939, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5949, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5954, 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, 6026, 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, 6044, 8, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 3, 269, 6052, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6058, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6070, 8, 269, 1, 269, 1, 269, 3, 269, 6074, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6085, 8, 269, 1, 269, 1, 269, 3, 269, 6089, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6098, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 5, 270, 6104, 8, 270, 10, 270, 12, 270, 6107, 9, 270, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 6113, 8, 271, 1, 272, 1, 272, 3, 272, 6117, 8, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 3, 273, 6124, 8, 273, 1, 273, 1, 273, 1, 273, 3, 273, 6129, 8, 273, 1, 273, 3, 273, 6132, 8, 273, 1, 273, 3, 273, 6135, 8, 273, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6146, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6153, 8, 276, 10, 276, 12, 276, 6156, 9, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6162, 8, 276, 10, 276, 12, 276, 6165, 9, 276, 3, 276, 6167, 8, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 6179, 8, 278, 10, 278, 12, 278, 6182, 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, 6199, 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, 6212, 8, 281, 1, 281, 3, 281, 6215, 8, 281, 1, 281, 1, 281, 3, 281, 6219, 8, 281, 1, 281, 3, 281, 6222, 8, 281, 3, 281, 6224, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6231, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6238, 8, 282, 5, 282, 6240, 8, 282, 10, 282, 12, 282, 6243, 9, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6249, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6256, 8, 282, 1, 282, 3, 282, 6259, 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, 6273, 8, 282, 10, 282, 12, 282, 6276, 9, 282, 3, 282, 6278, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6288, 8, 283, 1, 283, 1, 283, 3, 283, 6292, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6298, 8, 283, 1, 283, 3, 283, 6301, 8, 283, 1, 283, 3, 283, 6304, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6309, 8, 283, 1, 283, 1, 283, 3, 283, 6313, 8, 283, 1, 283, 3, 283, 6316, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6323, 8, 283, 1, 283, 3, 283, 6326, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6332, 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, 6368, 8, 283, 1, 283, 3, 283, 6371, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6383, 8, 283, 1, 283, 3, 283, 6386, 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, 6402, 8, 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, 1, 283, 3, 283, 6419, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6426, 8, 283, 1, 283, 3, 283, 6429, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 5, 283, 6436, 8, 283, 10, 283, 12, 283, 6439, 9, 283, 3, 283, 6441, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6446, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6452, 8, 283, 3, 283, 6454, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6460, 8, 283, 1, 283, 1, 283, 3, 283, 6464, 8, 283, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6470, 8, 284, 1, 284, 3, 284, 6473, 8, 284, 1, 284, 3, 284, 6476, 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, 6489, 8, 285, 1, 285, 3, 285, 6492, 8, 285, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6498, 8, 286, 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, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6517, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 6523, 8, 288, 1, 288, 3, 288, 6526, 8, 288, 1, 288, 1, 288, 3, 288, 6530, 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, 6544, 8, 289, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 5, 291, 6554, 8, 291, 10, 291, 12, 291, 6557, 9, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6564, 8, 291, 1, 291, 1, 291, 3, 291, 6568, 8, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 3, 292, 6575, 8, 292, 1, 292, 1, 292, 1, 292, 5, 292, 6580, 8, 292, 10, 292, 12, 292, 6583, 9, 292, 1, 293, 1, 293, 3, 293, 6587, 8, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 5, 294, 6598, 8, 294, 10, 294, 12, 294, 6601, 9, 294, 1, 295, 1, 295, 1, 295, 1, 295, 5, 295, 6607, 8, 295, 10, 295, 12, 295, 6610, 9, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 6617, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6622, 8, 297, 1, 297, 3, 297, 6625, 8, 297, 1, 298, 1, 298, 1, 298, 3, 298, 6630, 8, 298, 1, 298, 3, 298, 6633, 8, 298, 1, 299, 1, 299, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 6645, 8, 301, 1, 302, 1, 302, 1, 302, 3, 302, 6650, 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, 6663, 8, 302, 3, 302, 6665, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6670, 8, 302, 1, 302, 1, 302, 3, 302, 6674, 8, 302, 1, 302, 3, 302, 6677, 8, 302, 3, 302, 6679, 8, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 6686, 8, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6693, 8, 304, 1, 304, 3, 304, 6696, 8, 304, 1, 304, 3, 304, 6699, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6705, 8, 304, 1, 304, 1, 304, 3, 304, 6709, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6715, 8, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6723, 8, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6732, 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, 6745, 8, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6750, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 5, 310, 6756, 8, 310, 10, 310, 12, 310, 6759, 9, 310, 3, 310, 6761, 8, 310, 1, 311, 1, 311, 1, 311, 3, 311, 6766, 8, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6771, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 5, 311, 6777, 8, 311, 10, 311, 12, 311, 6780, 9, 311, 3, 311, 6782, 8, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6790, 8, 312, 1, 313, 1, 313, 3, 313, 6794, 8, 313, 1, 313, 1, 313, 1, 313, 5, 313, 6799, 8, 313, 10, 313, 12, 313, 6802, 9, 313, 1, 314, 1, 314, 1, 314, 3, 314, 6807, 8, 314, 1, 314, 3, 314, 6810, 8, 314, 1, 315, 1, 315, 3, 315, 6814, 8, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6825, 8, 315, 10, 315, 12, 315, 6828, 9, 315, 1, 315, 1, 315, 1, 315, 3, 315, 6833, 8, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6843, 8, 315, 10, 315, 12, 315, 6846, 9, 315, 3, 315, 6848, 8, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6857, 8, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6862, 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, 6881, 8, 325, 10, 325, 12, 325, 6884, 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, 6897, 8, 330, 10, 330, 12, 330, 6900, 9, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 5, 332, 6907, 8, 332, 10, 332, 12, 332, 6910, 9, 332, 1, 333, 1, 333, 3, 333, 6914, 8, 333, 1, 334, 1, 334, 1, 334, 3, 334, 6919, 8, 334, 3, 334, 6921, 8, 334, 1, 334, 3, 334, 6924, 8, 334, 1, 334, 1, 334, 3, 334, 6928, 8, 334, 3, 334, 6930, 8, 334, 1, 335, 1, 335, 1, 335, 5, 335, 6935, 8, 335, 10, 335, 12, 335, 6938, 9, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 3, 337, 6945, 8, 337, 3, 337, 6947, 8, 337, 1, 337, 3, 337, 6950, 8, 337, 1, 337, 1, 337, 3, 337, 6954, 8, 337, 1, 337, 1, 337, 3, 337, 6958, 8, 337, 1, 338, 1, 338, 1, 338, 3, 338, 6963, 8, 338, 3, 338, 6965, 8, 338, 1, 338, 3, 338, 6968, 8, 338, 1, 338, 1, 338, 3, 338, 6972, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6979, 8, 338, 1, 339, 1, 339, 1, 339, 3, 339, 6984, 8, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 5, 343, 6995, 8, 343, 10, 343, 12, 343, 6998, 9, 343, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7007, 8, 345, 1, 345, 3, 345, 7010, 8, 345, 1, 345, 3, 345, 7013, 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, 7026, 8, 348, 1, 349, 1, 349, 1, 350, 1, 350, 3, 350, 7032, 8, 350, 1, 350, 3, 350, 7035, 8, 350, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 3, 352, 7043, 8, 352, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 3, 354, 7050, 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, 7068, 8, 356, 11, 356, 12, 356, 7069, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 3, 357, 7077, 8, 357, 3, 357, 7079, 8, 357, 1, 358, 1, 358, 1, 358, 4, 358, 7084, 8, 358, 11, 358, 12, 358, 7085, 3, 358, 7088, 8, 358, 1, 359, 1, 359, 3, 359, 7092, 8, 359, 1, 360, 1, 360, 1, 360, 5, 360, 7097, 8, 360, 10, 360, 12, 360, 7100, 9, 360, 1, 361, 1, 361, 1, 361, 3, 361, 7105, 8, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 7116, 8, 362, 1, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7122, 8, 363, 1, 364, 1, 364, 1, 365, 1, 365, 3, 365, 7128, 8, 365, 1, 366, 3, 366, 7131, 8, 366, 1, 366, 1, 366, 3, 366, 7135, 8, 366, 1, 366, 4, 366, 7138, 8, 366, 11, 366, 12, 366, 7139, 1, 366, 3, 366, 7143, 8, 366, 1, 366, 1, 366, 3, 366, 7147, 8, 366, 1, 366, 1, 366, 3, 366, 7151, 8, 366, 3, 366, 7153, 8, 366, 1, 367, 1, 367, 1, 368, 3, 368, 7158, 8, 368, 1, 368, 1, 368, 1, 369, 3, 369, 7163, 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, 7176, 8, 370, 1, 370, 3, 370, 7179, 8, 370, 1, 371, 1, 371, 3, 371, 7183, 8, 371, 1, 371, 3, 371, 7186, 8, 371, 1, 371, 3, 371, 7189, 8, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7194, 8, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7199, 8, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7205, 8, 371, 1, 371, 3, 371, 7208, 8, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7213, 8, 371, 1, 371, 3, 371, 7216, 8, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7221, 8, 371, 1, 371, 3, 371, 7224, 8, 371, 1, 371, 1, 371, 3, 371, 7228, 8, 371, 1, 371, 5, 371, 7231, 8, 371, 10, 371, 12, 371, 7234, 9, 371, 1, 371, 1, 371, 3, 371, 7238, 8, 371, 1, 371, 5, 371, 7241, 8, 371, 10, 371, 12, 371, 7244, 9, 371, 1, 371, 1, 371, 3, 371, 7248, 8, 371, 1, 371, 3, 371, 7251, 8, 371, 1, 371, 5, 371, 7254, 8, 371, 10, 371, 12, 371, 7257, 9, 371, 1, 371, 1, 371, 3, 371, 7261, 8, 371, 1, 371, 5, 371, 7264, 8, 371, 10, 371, 12, 371, 7267, 9, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7272, 8, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7277, 8, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7282, 8, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7287, 8, 371, 1, 371, 1, 371, 3, 371, 7291, 8, 371, 1, 371, 3, 371, 7294, 8, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7299, 8, 371, 1, 371, 1, 371, 3, 371, 7303, 8, 371, 1, 371, 1, 371, 3, 371, 7307, 8, 371, 1, 372, 1, 372, 1, 372, 1, 372, 5, 372, 7313, 8, 372, 10, 372, 12, 372, 7316, 9, 372, 1, 372, 1, 372, 1, 373, 1, 373, 3, 373, 7322, 8, 373, 1, 373, 1, 373, 3, 373, 7326, 8, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7331, 8, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7336, 8, 373, 1, 373, 1, 373, 3, 373, 7340, 8, 373, 3, 373, 7342, 8, 373, 1, 373, 3, 373, 7345, 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, 7361, 8, 376, 1, 376, 1, 376, 1, 377, 1, 377, 1, 377, 1, 377, 5, 377, 7369, 8, 377, 10, 377, 12, 377, 7372, 9, 377, 1, 377, 1, 377, 1, 378, 1, 378, 1, 378, 5, 378, 7379, 8, 378, 10, 378, 12, 378, 7382, 9, 378, 1, 379, 1, 379, 1, 379, 1, 379, 5, 379, 7388, 8, 379, 10, 379, 12, 379, 7391, 9, 379, 1, 380, 1, 380, 1, 380, 1, 380, 5, 380, 7397, 8, 380, 10, 380, 12, 380, 7400, 9, 380, 1, 380, 1, 380, 1, 381, 1, 381, 3, 381, 7406, 8, 381, 1, 382, 1, 382, 1, 382, 5, 382, 7411, 8, 382, 10, 382, 12, 382, 7414, 9, 382, 1, 383, 1, 383, 1, 383, 5, 383, 7419, 8, 383, 10, 383, 12, 383, 7422, 9, 383, 1, 384, 1, 384, 1, 384, 5, 384, 7427, 8, 384, 10, 384, 12, 384, 7430, 9, 384, 1, 385, 1, 385, 1, 385, 1, 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, 3, 385, 7448, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7458, 8, 385, 1, 386, 1, 386, 1, 386, 3, 386, 7463, 8, 386, 1, 386, 3, 386, 7466, 8, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7471, 8, 386, 1, 386, 3, 386, 7474, 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, 7496, 8, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 3, 390, 7505, 8, 390, 1, 390, 3, 390, 7508, 8, 390, 1, 391, 1, 391, 1, 391, 3, 391, 7513, 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, 7544, 8, 391, 11, 391, 12, 391, 7545, 1, 391, 1, 391, 3, 391, 7550, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 4, 391, 7557, 8, 391, 11, 391, 12, 391, 7558, 1, 391, 1, 391, 3, 391, 7563, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7572, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7580, 8, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7585, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7593, 8, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7598, 8, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7603, 8, 391, 3, 391, 7605, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7614, 8, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7619, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7627, 8, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7632, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7640, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7648, 8, 391, 1, 391, 3, 391, 7651, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7661, 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, 7679, 8, 391, 1, 391, 3, 391, 7682, 8, 391, 1, 391, 3, 391, 7685, 8, 391, 1, 391, 1, 391, 3, 391, 7689, 8, 391, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 393, 1, 393, 1, 393, 1, 393, 5, 393, 7700, 8, 393, 10, 393, 12, 393, 7703, 9, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 3, 393, 7710, 8, 393, 1, 394, 1, 394, 3, 394, 7714, 8, 394, 1, 395, 1, 395, 1, 395, 3, 395, 7719, 8, 395, 1, 395, 1, 395, 1, 395, 3, 395, 7724, 8, 395, 1, 395, 1, 395, 1, 395, 1, 395, 3, 395, 7730, 8, 395, 1, 395, 1, 395, 1, 395, 3, 395, 7735, 8, 395, 1, 395, 1, 395, 3, 395, 7739, 8, 395, 1, 395, 1, 395, 1, 395, 3, 395, 7744, 8, 395, 1, 395, 1, 395, 1, 395, 3, 395, 7749, 8, 395, 1, 395, 1, 395, 1, 395, 3, 395, 7754, 8, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 5, 395, 7762, 8, 395, 10, 395, 12, 395, 7765, 9, 395, 3, 395, 7767, 8, 395, 1, 395, 1, 395, 3, 395, 7771, 8, 395, 1, 395, 1, 395, 3, 395, 7775, 8, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7782, 8, 396, 1, 396, 1, 396, 3, 396, 7786, 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, 7815, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7823, 8, 397, 1, 398, 3, 398, 7826, 8, 398, 1, 398, 3, 398, 7829, 8, 398, 1, 398, 3, 398, 7832, 8, 398, 1, 398, 3, 398, 7835, 8, 398, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 401, 1, 401, 1, 402, 1, 402, 3, 402, 7846, 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, 7860, 8, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 5, 405, 7867, 8, 405, 10, 405, 12, 405, 7870, 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, 7896, 8, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 408, 1, 408, 1, 408, 5, 408, 7906, 8, 408, 10, 408, 12, 408, 7909, 9, 408, 1, 409, 1, 409, 1, 409, 3, 409, 7914, 8, 409, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 3, 410, 7922, 8, 410, 1, 410, 1, 410, 1, 410, 3, 410, 7927, 8, 410, 1, 410, 1, 410, 1, 410, 1, 410, 5, 410, 7933, 8, 410, 10, 410, 12, 410, 7936, 9, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7943, 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, 7956, 8, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7962, 8, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7968, 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, 7983, 8, 411, 1, 411, 1, 411, 3, 411, 7987, 8, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7993, 8, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 5, 411, 8002, 8, 411, 10, 411, 12, 411, 8005, 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, 8023, 8, 412, 10, 412, 12, 412, 8026, 9, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 4, 412, 8035, 8, 412, 11, 412, 12, 412, 8036, 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, 8055, 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, 8072, 8, 412, 10, 412, 12, 412, 8075, 9, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 8087, 8, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 3, 415, 8096, 8, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 3, 416, 8105, 8, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 3, 417, 8114, 8, 417, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 3, 419, 8123, 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, 9510, 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, 3951, 1, 0, 0, 0, 262, 3956, 1, 0, 0, 0, 264, 3982, 1, 0, 0, 0, 266, 4023, 1, 0, 0, 0, 268, 4030, 1, 0, 0, 0, 270, 4032, 1, 0, 0, 0, 272, 4036, 1, 0, 0, 0, 274, 4053, 1, 0, 0, 0, 276, 4104, 1, 0, 0, 0, 278, 4116, 1, 0, 0, 0, 280, 4126, 1, 0, 0, 0, 282, 4128, 1, 0, 0, 0, 284, 4161, 1, 0, 0, 0, 286, 4169, 1, 0, 0, 0, 288, 4186, 1, 0, 0, 0, 290, 4202, 1, 0, 0, 0, 292, 4239, 1, 0, 0, 0, 294, 4245, 1, 0, 0, 0, 296, 4254, 1, 0, 0, 0, 298, 4267, 1, 0, 0, 0, 300, 4271, 1, 0, 0, 0, 302, 4300, 1, 0, 0, 0, 304, 4302, 1, 0, 0, 0, 306, 4306, 1, 0, 0, 0, 308, 4308, 1, 0, 0, 0, 310, 4316, 1, 0, 0, 0, 312, 4354, 1, 0, 0, 0, 314, 4368, 1, 0, 0, 0, 316, 4376, 1, 0, 0, 0, 318, 4380, 1, 0, 0, 0, 320, 4389, 1, 0, 0, 0, 322, 4403, 1, 0, 0, 0, 324, 4408, 1, 0, 0, 0, 326, 4428, 1, 0, 0, 0, 328, 4433, 1, 0, 0, 0, 330, 4449, 1, 0, 0, 0, 332, 4451, 1, 0, 0, 0, 334, 4463, 1, 0, 0, 0, 336, 4467, 1, 0, 0, 0, 338, 4484, 1, 0, 0, 0, 340, 4501, 1, 0, 0, 0, 342, 4504, 1, 0, 0, 0, 344, 4514, 1, 0, 0, 0, 346, 4518, 1, 0, 0, 0, 348, 4528, 1, 0, 0, 0, 350, 4531, 1, 0, 0, 0, 352, 4536, 1, 0, 0, 0, 354, 4556, 1, 0, 0, 0, 356, 4558, 1, 0, 0, 0, 358, 4575, 1, 0, 0, 0, 360, 4584, 1, 0, 0, 0, 362, 4593, 1, 0, 0, 0, 364, 4595, 1, 0, 0, 0, 366, 4609, 1, 0, 0, 0, 368, 4623, 1, 0, 0, 0, 370, 4638, 1, 0, 0, 0, 372, 4647, 1, 0, 0, 0, 374, 4672, 1, 0, 0, 0, 376, 4687, 1, 0, 0, 0, 378, 4706, 1, 0, 0, 0, 380, 4736, 1, 0, 0, 0, 382, 4738, 1, 0, 0, 0, 384, 4740, 1, 0, 0, 0, 386, 4742, 1, 0, 0, 0, 388, 4757, 1, 0, 0, 0, 390, 4786, 1, 0, 0, 0, 392, 4788, 1, 0, 0, 0, 394, 4790, 1, 0, 0, 0, 396, 4792, 1, 0, 0, 0, 398, 4807, 1, 0, 0, 0, 400, 4809, 1, 0, 0, 0, 402, 4876, 1, 0, 0, 0, 404, 4878, 1, 0, 0, 0, 406, 4884, 1, 0, 0, 0, 408, 4911, 1, 0, 0, 0, 410, 4925, 1, 0, 0, 0, 412, 4936, 1, 0, 0, 0, 414, 4938, 1, 0, 0, 0, 416, 4944, 1, 0, 0, 0, 418, 4954, 1, 0, 0, 0, 420, 4958, 1, 0, 0, 0, 422, 4965, 1, 0, 0, 0, 424, 4969, 1, 0, 0, 0, 426, 4975, 1, 0, 0, 0, 428, 4982, 1, 0, 0, 0, 430, 4988, 1, 0, 0, 0, 432, 4994, 1, 0, 0, 0, 434, 4999, 1, 0, 0, 0, 436, 5044, 1, 0, 0, 0, 438, 5065, 1, 0, 0, 0, 440, 5090, 1, 0, 0, 0, 442, 5093, 1, 0, 0, 0, 444, 5099, 1, 0, 0, 0, 446, 5115, 1, 0, 0, 0, 448, 5130, 1, 0, 0, 0, 450, 5136, 1, 0, 0, 0, 452, 5166, 1, 0, 0, 0, 454, 5168, 1, 0, 0, 0, 456, 5175, 1, 0, 0, 0, 458, 5187, 1, 0, 0, 0, 460, 5193, 1, 0, 0, 0, 462, 5218, 1, 0, 0, 0, 464, 5222, 1, 0, 0, 0, 466, 5226, 1, 0, 0, 0, 468, 5237, 1, 0, 0, 0, 470, 5245, 1, 0, 0, 0, 472, 5308, 1, 0, 0, 0, 474, 5367, 1, 0, 0, 0, 476, 5469, 1, 0, 0, 0, 478, 5479, 1, 0, 0, 0, 480, 5481, 1, 0, 0, 0, 482, 5499, 1, 0, 0, 0, 484, 5523, 1, 0, 0, 0, 486, 5547, 1, 0, 0, 0, 488, 5554, 1, 0, 0, 0, 490, 5574, 1, 0, 0, 0, 492, 5583, 1, 0, 0, 0, 494, 5645, 1, 0, 0, 0, 496, 5647, 1, 0, 0, 0, 498, 5651, 1, 0, 0, 0, 500, 5685, 1, 0, 0, 0, 502, 5687, 1, 0, 0, 0, 504, 5690, 1, 0, 0, 0, 506, 5754, 1, 0, 0, 0, 508, 5773, 1, 0, 0, 0, 510, 5800, 1, 0, 0, 0, 512, 5804, 1, 0, 0, 0, 514, 5825, 1, 0, 0, 0, 516, 5835, 1, 0, 0, 0, 518, 5845, 1, 0, 0, 0, 520, 5885, 1, 0, 0, 0, 522, 5887, 1, 0, 0, 0, 524, 5890, 1, 0, 0, 0, 526, 5920, 1, 0, 0, 0, 528, 5922, 1, 0, 0, 0, 530, 5925, 1, 0, 0, 0, 532, 6025, 1, 0, 0, 0, 534, 6043, 1, 0, 0, 0, 536, 6045, 1, 0, 0, 0, 538, 6097, 1, 0, 0, 0, 540, 6099, 1, 0, 0, 0, 542, 6108, 1, 0, 0, 0, 544, 6114, 1, 0, 0, 0, 546, 6121, 1, 0, 0, 0, 548, 6136, 1, 0, 0, 0, 550, 6145, 1, 0, 0, 0, 552, 6147, 1, 0, 0, 0, 554, 6168, 1, 0, 0, 0, 556, 6173, 1, 0, 0, 0, 558, 6183, 1, 0, 0, 0, 560, 6189, 1, 0, 0, 0, 562, 6223, 1, 0, 0, 0, 564, 6277, 1, 0, 0, 0, 566, 6463, 1, 0, 0, 0, 568, 6475, 1, 0, 0, 0, 570, 6491, 1, 0, 0, 0, 572, 6497, 1, 0, 0, 0, 574, 6516, 1, 0, 0, 0, 576, 6529, 1, 0, 0, 0, 578, 6543, 1, 0, 0, 0, 580, 6545, 1, 0, 0, 0, 582, 6548, 1, 0, 0, 0, 584, 6572, 1, 0, 0, 0, 586, 6584, 1, 0, 0, 0, 588, 6590, 1, 0, 0, 0, 590, 6602, 1, 0, 0, 0, 592, 6616, 1, 0, 0, 0, 594, 6618, 1, 0, 0, 0, 596, 6626, 1, 0, 0, 0, 598, 6634, 1, 0, 0, 0, 600, 6636, 1, 0, 0, 0, 602, 6638, 1, 0, 0, 0, 604, 6678, 1, 0, 0, 0, 606, 6685, 1, 0, 0, 0, 608, 6687, 1, 0, 0, 0, 610, 6710, 1, 0, 0, 0, 612, 6716, 1, 0, 0, 0, 614, 6726, 1, 0, 0, 0, 616, 6735, 1, 0, 0, 0, 618, 6738, 1, 0, 0, 0, 620, 6741, 1, 0, 0, 0, 622, 6762, 1, 0, 0, 0, 624, 6783, 1, 0, 0, 0, 626, 6791, 1, 0, 0, 0, 628, 6803, 1, 0, 0, 0, 630, 6811, 1, 0, 0, 0, 632, 6849, 1, 0, 0, 0, 634, 6861, 1, 0, 0, 0, 636, 6863, 1, 0, 0, 0, 638, 6865, 1, 0, 0, 0, 640, 6867, 1, 0, 0, 0, 642, 6869, 1, 0, 0, 0, 644, 6871, 1, 0, 0, 0, 646, 6873, 1, 0, 0, 0, 648, 6875, 1, 0, 0, 0, 650, 6877, 1, 0, 0, 0, 652, 6885, 1, 0, 0, 0, 654, 6887, 1, 0, 0, 0, 656, 6889, 1, 0, 0, 0, 658, 6891, 1, 0, 0, 0, 660, 6893, 1, 0, 0, 0, 662, 6901, 1, 0, 0, 0, 664, 6903, 1, 0, 0, 0, 666, 6913, 1, 0, 0, 0, 668, 6929, 1, 0, 0, 0, 670, 6931, 1, 0, 0, 0, 672, 6939, 1, 0, 0, 0, 674, 6957, 1, 0, 0, 0, 676, 6978, 1, 0, 0, 0, 678, 6983, 1, 0, 0, 0, 680, 6985, 1, 0, 0, 0, 682, 6987, 1, 0, 0, 0, 684, 6989, 1, 0, 0, 0, 686, 6991, 1, 0, 0, 0, 688, 6999, 1, 0, 0, 0, 690, 7009, 1, 0, 0, 0, 692, 7014, 1, 0, 0, 0, 694, 7018, 1, 0, 0, 0, 696, 7025, 1, 0, 0, 0, 698, 7027, 1, 0, 0, 0, 700, 7034, 1, 0, 0, 0, 702, 7036, 1, 0, 0, 0, 704, 7042, 1, 0, 0, 0, 706, 7044, 1, 0, 0, 0, 708, 7049, 1, 0, 0, 0, 710, 7051, 1, 0, 0, 0, 712, 7053, 1, 0, 0, 0, 714, 7071, 1, 0, 0, 0, 716, 7087, 1, 0, 0, 0, 718, 7089, 1, 0, 0, 0, 720, 7093, 1, 0, 0, 0, 722, 7104, 1, 0, 0, 0, 724, 7115, 1, 0, 0, 0, 726, 7121, 1, 0, 0, 0, 728, 7123, 1, 0, 0, 0, 730, 7127, 1, 0, 0, 0, 732, 7152, 1, 0, 0, 0, 734, 7154, 1, 0, 0, 0, 736, 7157, 1, 0, 0, 0, 738, 7162, 1, 0, 0, 0, 740, 7178, 1, 0, 0, 0, 742, 7306, 1, 0, 0, 0, 744, 7308, 1, 0, 0, 0, 746, 7341, 1, 0, 0, 0, 748, 7346, 1, 0, 0, 0, 750, 7350, 1, 0, 0, 0, 752, 7356, 1, 0, 0, 0, 754, 7364, 1, 0, 0, 0, 756, 7375, 1, 0, 0, 0, 758, 7383, 1, 0, 0, 0, 760, 7392, 1, 0, 0, 0, 762, 7405, 1, 0, 0, 0, 764, 7407, 1, 0, 0, 0, 766, 7415, 1, 0, 0, 0, 768, 7423, 1, 0, 0, 0, 770, 7457, 1, 0, 0, 0, 772, 7473, 1, 0, 0, 0, 774, 7475, 1, 0, 0, 0, 776, 7478, 1, 0, 0, 0, 778, 7482, 1, 0, 0, 0, 780, 7507, 1, 0, 0, 0, 782, 7688, 1, 0, 0, 0, 784, 7690, 1, 0, 0, 0, 786, 7709, 1, 0, 0, 0, 788, 7711, 1, 0, 0, 0, 790, 7774, 1, 0, 0, 0, 792, 7814, 1, 0, 0, 0, 794, 7816, 1, 0, 0, 0, 796, 7825, 1, 0, 0, 0, 798, 7836, 1, 0, 0, 0, 800, 7838, 1, 0, 0, 0, 802, 7841, 1, 0, 0, 0, 804, 7845, 1, 0, 0, 0, 806, 7847, 1, 0, 0, 0, 808, 7859, 1, 0, 0, 0, 810, 7861, 1, 0, 0, 0, 812, 7895, 1, 0, 0, 0, 814, 7897, 1, 0, 0, 0, 816, 7902, 1, 0, 0, 0, 818, 7913, 1, 0, 0, 0, 820, 7926, 1, 0, 0, 0, 822, 7937, 1, 0, 0, 0, 824, 8054, 1, 0, 0, 0, 826, 8076, 1, 0, 0, 0, 828, 8086, 1, 0, 0, 0, 830, 8095, 1, 0, 0, 0, 832, 8104, 1, 0, 0, 0, 834, 8113, 1, 0, 0, 0, 836, 8115, 1, 0, 0, 0, 838, 8122, 1, 0, 0, 0, 840, 8124, 1, 0, 0, 0, 842, 8126, 1, 0, 0, 0, 844, 8128, 1, 0, 0, 0, 846, 8130, 1, 0, 0, 0, 848, 8132, 1, 0, 0, 0, 850, 8134, 1, 0, 0, 0, 852, 8136, 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, 3952, 3, 820, 410, 0, 3950, 3952, 3, 678, 339, 0, 3951, 3949, 1, 0, 0, 0, 3951, 3950, 1, 0, 0, 0, 3952, 3954, 1, 0, 0, 0, 3953, 3955, 7, 55, 0, 0, 3954, 3953, 1, 0, 0, 0, 3954, 3955, 1, 0, 0, 0, 3955, 261, 1, 0, 0, 0, 3956, 3961, 3, 264, 132, 0, 3957, 3958, 5, 868, 0, 0, 3958, 3960, 3, 264, 132, 0, 3959, 3957, 1, 0, 0, 0, 3960, 3963, 1, 0, 0, 0, 3961, 3959, 1, 0, 0, 0, 3961, 3962, 1, 0, 0, 0, 3962, 263, 1, 0, 0, 0, 3963, 3961, 1, 0, 0, 0, 3964, 3968, 3, 266, 133, 0, 3965, 3967, 3, 276, 138, 0, 3966, 3965, 1, 0, 0, 0, 3967, 3970, 1, 0, 0, 0, 3968, 3966, 1, 0, 0, 0, 3968, 3969, 1, 0, 0, 0, 3969, 3983, 1, 0, 0, 0, 3970, 3968, 1, 0, 0, 0, 3971, 3972, 5, 866, 0, 0, 3972, 3976, 3, 266, 133, 0, 3973, 3975, 3, 276, 138, 0, 3974, 3973, 1, 0, 0, 0, 3975, 3978, 1, 0, 0, 0, 3976, 3974, 1, 0, 0, 0, 3976, 3977, 1, 0, 0, 0, 3977, 3979, 1, 0, 0, 0, 3978, 3976, 1, 0, 0, 0, 3979, 3980, 5, 867, 0, 0, 3980, 3983, 1, 0, 0, 0, 3981, 3983, 3, 288, 144, 0, 3982, 3964, 1, 0, 0, 0, 3982, 3971, 1, 0, 0, 0, 3982, 3981, 1, 0, 0, 0, 3983, 265, 1, 0, 0, 0, 3984, 3990, 3, 662, 331, 0, 3985, 3986, 5, 130, 0, 0, 3986, 3987, 5, 866, 0, 0, 3987, 3988, 3, 686, 343, 0, 3988, 3989, 5, 867, 0, 0, 3989, 3991, 1, 0, 0, 0, 3990, 3985, 1, 0, 0, 0, 3990, 3991, 1, 0, 0, 0, 3991, 3996, 1, 0, 0, 0, 3992, 3994, 5, 13, 0, 0, 3993, 3992, 1, 0, 0, 0, 3993, 3994, 1, 0, 0, 0, 3994, 3995, 1, 0, 0, 0, 3995, 3997, 3, 722, 361, 0, 3996, 3993, 1, 0, 0, 0, 3996, 3997, 1, 0, 0, 0, 3997, 4006, 1, 0, 0, 0, 3998, 4003, 3, 272, 136, 0, 3999, 4000, 5, 868, 0, 0, 4000, 4002, 3, 272, 136, 0, 4001, 3999, 1, 0, 0, 0, 4002, 4005, 1, 0, 0, 0, 4003, 4001, 1, 0, 0, 0, 4003, 4004, 1, 0, 0, 0, 4004, 4007, 1, 0, 0, 0, 4005, 4003, 1, 0, 0, 0, 4006, 3998, 1, 0, 0, 0, 4006, 4007, 1, 0, 0, 0, 4007, 4024, 1, 0, 0, 0, 4008, 4010, 5, 95, 0, 0, 4009, 4008, 1, 0, 0, 0, 4009, 4010, 1, 0, 0, 0, 4010, 4011, 1, 0, 0, 0, 4011, 4013, 3, 268, 134, 0, 4012, 4014, 5, 13, 0, 0, 4013, 4012, 1, 0, 0, 0, 4013, 4014, 1, 0, 0, 0, 4014, 4015, 1, 0, 0, 0, 4015, 4017, 3, 722, 361, 0, 4016, 4018, 3, 270, 135, 0, 4017, 4016, 1, 0, 0, 0, 4017, 4018, 1, 0, 0, 0, 4018, 4024, 1, 0, 0, 0, 4019, 4020, 5, 866, 0, 0, 4020, 4021, 3, 262, 131, 0, 4021, 4022, 5, 867, 0, 0, 4022, 4024, 1, 0, 0, 0, 4023, 3984, 1, 0, 0, 0, 4023, 4009, 1, 0, 0, 0, 4023, 4019, 1, 0, 0, 0, 4024, 267, 1, 0, 0, 0, 4025, 4031, 3, 210, 105, 0, 4026, 4027, 5, 866, 0, 0, 4027, 4028, 3, 210, 105, 0, 4028, 4029, 5, 867, 0, 0, 4029, 4031, 1, 0, 0, 0, 4030, 4025, 1, 0, 0, 0, 4030, 4026, 1, 0, 0, 0, 4031, 269, 1, 0, 0, 0, 4032, 4033, 5, 866, 0, 0, 4033, 4034, 3, 670, 335, 0, 4034, 4035, 5, 867, 0, 0, 4035, 271, 1, 0, 0, 0, 4036, 4037, 7, 56, 0, 0, 4037, 4040, 7, 19, 0, 0, 4038, 4039, 5, 65, 0, 0, 4039, 4041, 3, 274, 137, 0, 4040, 4038, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4044, 5, 866, 0, 0, 4043, 4045, 3, 650, 325, 0, 4044, 4043, 1, 0, 0, 0, 4044, 4045, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4047, 5, 867, 0, 0, 4047, 273, 1, 0, 0, 0, 4048, 4054, 5, 91, 0, 0, 4049, 4050, 5, 125, 0, 0, 4050, 4054, 5, 20, 0, 0, 4051, 4052, 5, 74, 0, 0, 4052, 4054, 5, 20, 0, 0, 4053, 4048, 1, 0, 0, 0, 4053, 4049, 1, 0, 0, 0, 4053, 4051, 1, 0, 0, 0, 4054, 275, 1, 0, 0, 0, 4055, 4057, 7, 57, 0, 0, 4056, 4055, 1, 0, 0, 0, 4056, 4057, 1, 0, 0, 0, 4057, 4058, 1, 0, 0, 0, 4058, 4060, 5, 91, 0, 0, 4059, 4061, 5, 95, 0, 0, 4060, 4059, 1, 0, 0, 0, 4060, 4061, 1, 0, 0, 0, 4061, 4062, 1, 0, 0, 0, 4062, 4066, 3, 266, 133, 0, 4063, 4065, 3, 278, 139, 0, 4064, 4063, 1, 0, 0, 0, 4065, 4068, 1, 0, 0, 0, 4066, 4064, 1, 0, 0, 0, 4066, 4067, 1, 0, 0, 0, 4067, 4105, 1, 0, 0, 0, 4068, 4066, 1, 0, 0, 0, 4069, 4070, 5, 172, 0, 0, 4070, 4074, 3, 266, 133, 0, 4071, 4073, 3, 278, 139, 0, 4072, 4071, 1, 0, 0, 0, 4073, 4076, 1, 0, 0, 0, 4074, 4072, 1, 0, 0, 0, 4074, 4075, 1, 0, 0, 0, 4075, 4105, 1, 0, 0, 0, 4076, 4074, 1, 0, 0, 0, 4077, 4079, 7, 58, 0, 0, 4078, 4080, 5, 127, 0, 0, 4079, 4078, 1, 0, 0, 0, 4079, 4080, 1, 0, 0, 0, 4080, 4081, 1, 0, 0, 0, 4081, 4083, 5, 91, 0, 0, 4082, 4084, 5, 95, 0, 0, 4083, 4082, 1, 0, 0, 0, 4083, 4084, 1, 0, 0, 0, 4084, 4085, 1, 0, 0, 0, 4085, 4089, 3, 266, 133, 0, 4086, 4088, 3, 278, 139, 0, 4087, 4086, 1, 0, 0, 0, 4088, 4091, 1, 0, 0, 0, 4089, 4087, 1, 0, 0, 0, 4089, 4090, 1, 0, 0, 0, 4090, 4105, 1, 0, 0, 0, 4091, 4089, 1, 0, 0, 0, 4092, 4100, 5, 113, 0, 0, 4093, 4096, 5, 84, 0, 0, 4094, 4096, 7, 58, 0, 0, 4095, 4093, 1, 0, 0, 0, 4095, 4094, 1, 0, 0, 0, 4096, 4098, 1, 0, 0, 0, 4097, 4099, 5, 127, 0, 0, 4098, 4097, 1, 0, 0, 0, 4098, 4099, 1, 0, 0, 0, 4099, 4101, 1, 0, 0, 0, 4100, 4095, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 4102, 1, 0, 0, 0, 4102, 4103, 5, 91, 0, 0, 4103, 4105, 3, 266, 133, 0, 4104, 4056, 1, 0, 0, 0, 4104, 4069, 1, 0, 0, 0, 4104, 4077, 1, 0, 0, 0, 4104, 4092, 1, 0, 0, 0, 4105, 277, 1, 0, 0, 0, 4106, 4109, 5, 119, 0, 0, 4107, 4110, 3, 820, 410, 0, 4108, 4110, 3, 678, 339, 0, 4109, 4107, 1, 0, 0, 0, 4109, 4108, 1, 0, 0, 0, 4110, 4117, 1, 0, 0, 0, 4111, 4112, 5, 188, 0, 0, 4112, 4113, 5, 866, 0, 0, 4113, 4114, 3, 670, 335, 0, 4114, 4115, 5, 867, 0, 0, 4115, 4117, 1, 0, 0, 0, 4116, 4106, 1, 0, 0, 0, 4116, 4111, 1, 0, 0, 0, 4117, 279, 1, 0, 0, 0, 4118, 4119, 5, 866, 0, 0, 4119, 4120, 3, 282, 141, 0, 4120, 4121, 5, 867, 0, 0, 4121, 4127, 1, 0, 0, 0, 4122, 4123, 5, 866, 0, 0, 4123, 4124, 3, 280, 140, 0, 4124, 4125, 5, 867, 0, 0, 4125, 4127, 1, 0, 0, 0, 4126, 4118, 1, 0, 0, 0, 4126, 4122, 1, 0, 0, 0, 4127, 281, 1, 0, 0, 0, 4128, 4132, 5, 154, 0, 0, 4129, 4131, 3, 298, 149, 0, 4130, 4129, 1, 0, 0, 0, 4131, 4134, 1, 0, 0, 0, 4132, 4130, 1, 0, 0, 0, 4132, 4133, 1, 0, 0, 0, 4133, 4135, 1, 0, 0, 0, 4134, 4132, 1, 0, 0, 0, 4135, 4137, 3, 300, 150, 0, 4136, 4138, 3, 312, 156, 0, 4137, 4136, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4139, 1, 0, 0, 0, 4139, 4141, 3, 318, 159, 0, 4140, 4142, 3, 320, 160, 0, 4141, 4140, 1, 0, 0, 0, 4141, 4142, 1, 0, 0, 0, 4142, 4144, 1, 0, 0, 0, 4143, 4145, 3, 322, 161, 0, 4144, 4143, 1, 0, 0, 0, 4144, 4145, 1, 0, 0, 0, 4145, 4147, 1, 0, 0, 0, 4146, 4148, 3, 324, 162, 0, 4147, 4146, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 4150, 1, 0, 0, 0, 4149, 4151, 3, 258, 129, 0, 4150, 4149, 1, 0, 0, 0, 4150, 4151, 1, 0, 0, 0, 4151, 4153, 1, 0, 0, 0, 4152, 4154, 3, 328, 164, 0, 4153, 4152, 1, 0, 0, 0, 4153, 4154, 1, 0, 0, 0, 4154, 4156, 1, 0, 0, 0, 4155, 4157, 3, 312, 156, 0, 4156, 4155, 1, 0, 0, 0, 4156, 4157, 1, 0, 0, 0, 4157, 4159, 1, 0, 0, 0, 4158, 4160, 3, 284, 142, 0, 4159, 4158, 1, 0, 0, 0, 4159, 4160, 1, 0, 0, 0, 4160, 283, 1, 0, 0, 0, 4161, 4163, 5, 181, 0, 0, 4162, 4164, 7, 45, 0, 0, 4163, 4162, 1, 0, 0, 0, 4163, 4164, 1, 0, 0, 0, 4164, 4167, 1, 0, 0, 0, 4165, 4168, 3, 282, 141, 0, 4166, 4168, 3, 280, 140, 0, 4167, 4165, 1, 0, 0, 0, 4167, 4166, 1, 0, 0, 0, 4168, 285, 1, 0, 0, 0, 4169, 4184, 5, 95, 0, 0, 4170, 4185, 3, 282, 141, 0, 4171, 4185, 3, 280, 140, 0, 4172, 4175, 5, 866, 0, 0, 4173, 4176, 3, 282, 141, 0, 4174, 4176, 3, 280, 140, 0, 4175, 4173, 1, 0, 0, 0, 4175, 4174, 1, 0, 0, 0, 4176, 4177, 1, 0, 0, 0, 4177, 4182, 5, 867, 0, 0, 4178, 4180, 5, 13, 0, 0, 4179, 4178, 1, 0, 0, 0, 4179, 4180, 1, 0, 0, 0, 4180, 4181, 1, 0, 0, 0, 4181, 4183, 3, 722, 361, 0, 4182, 4179, 1, 0, 0, 0, 4182, 4183, 1, 0, 0, 0, 4183, 4185, 1, 0, 0, 0, 4184, 4170, 1, 0, 0, 0, 4184, 4171, 1, 0, 0, 0, 4184, 4172, 1, 0, 0, 0, 4185, 287, 1, 0, 0, 0, 4186, 4187, 5, 253, 0, 0, 4187, 4188, 5, 866, 0, 0, 4188, 4189, 5, 882, 0, 0, 4189, 4190, 5, 868, 0, 0, 4190, 4191, 5, 882, 0, 0, 4191, 4192, 5, 337, 0, 0, 4192, 4193, 5, 866, 0, 0, 4193, 4194, 3, 290, 145, 0, 4194, 4195, 5, 867, 0, 0, 4195, 4200, 5, 867, 0, 0, 4196, 4198, 5, 13, 0, 0, 4197, 4196, 1, 0, 0, 0, 4197, 4198, 1, 0, 0, 0, 4198, 4199, 1, 0, 0, 0, 4199, 4201, 3, 722, 361, 0, 4200, 4197, 1, 0, 0, 0, 4200, 4201, 1, 0, 0, 0, 4201, 289, 1, 0, 0, 0, 4202, 4207, 3, 292, 146, 0, 4203, 4204, 5, 868, 0, 0, 4204, 4206, 3, 292, 146, 0, 4205, 4203, 1, 0, 0, 0, 4206, 4209, 1, 0, 0, 0, 4207, 4205, 1, 0, 0, 0, 4207, 4208, 1, 0, 0, 0, 4208, 291, 1, 0, 0, 0, 4209, 4207, 1, 0, 0, 0, 4210, 4227, 3, 674, 337, 0, 4211, 4212, 5, 65, 0, 0, 4212, 4228, 5, 256, 0, 0, 4213, 4225, 3, 742, 371, 0, 4214, 4215, 5, 257, 0, 0, 4215, 4217, 5, 882, 0, 0, 4216, 4218, 3, 294, 147, 0, 4217, 4216, 1, 0, 0, 0, 4217, 4218, 1, 0, 0, 0, 4218, 4220, 1, 0, 0, 0, 4219, 4221, 3, 296, 148, 0, 4220, 4219, 1, 0, 0, 0, 4220, 4221, 1, 0, 0, 0, 4221, 4226, 1, 0, 0, 0, 4222, 4223, 5, 60, 0, 0, 4223, 4224, 5, 257, 0, 0, 4224, 4226, 5, 882, 0, 0, 4225, 4214, 1, 0, 0, 0, 4225, 4222, 1, 0, 0, 0, 4226, 4228, 1, 0, 0, 0, 4227, 4211, 1, 0, 0, 0, 4227, 4213, 1, 0, 0, 0, 4228, 4240, 1, 0, 0, 0, 4229, 4231, 5, 255, 0, 0, 4230, 4232, 5, 257, 0, 0, 4231, 4230, 1, 0, 0, 0, 4231, 4232, 1, 0, 0, 0, 4232, 4233, 1, 0, 0, 0, 4233, 4234, 5, 882, 0, 0, 4234, 4235, 5, 337, 0, 0, 4235, 4236, 5, 866, 0, 0, 4236, 4237, 3, 290, 145, 0, 4237, 4238, 5, 867, 0, 0, 4238, 4240, 1, 0, 0, 0, 4239, 4210, 1, 0, 0, 0, 4239, 4229, 1, 0, 0, 0, 4240, 293, 1, 0, 0, 0, 4241, 4246, 5, 116, 0, 0, 4242, 4246, 5, 382, 0, 0, 4243, 4244, 5, 42, 0, 0, 4244, 4246, 3, 770, 385, 0, 4245, 4241, 1, 0, 0, 0, 4245, 4242, 1, 0, 0, 0, 4245, 4243, 1, 0, 0, 0, 4246, 4247, 1, 0, 0, 0, 4247, 4248, 5, 119, 0, 0, 4248, 4249, 5, 55, 0, 0, 4249, 295, 1, 0, 0, 0, 4250, 4255, 5, 116, 0, 0, 4251, 4255, 5, 382, 0, 0, 4252, 4253, 5, 42, 0, 0, 4253, 4255, 3, 770, 385, 0, 4254, 4250, 1, 0, 0, 0, 4254, 4251, 1, 0, 0, 0, 4254, 4252, 1, 0, 0, 0, 4255, 4256, 1, 0, 0, 0, 4256, 4257, 5, 119, 0, 0, 4257, 4258, 5, 382, 0, 0, 4258, 297, 1, 0, 0, 0, 4259, 4268, 7, 59, 0, 0, 4260, 4268, 5, 76, 0, 0, 4261, 4268, 5, 172, 0, 0, 4262, 4268, 5, 168, 0, 0, 4263, 4268, 5, 166, 0, 0, 4264, 4268, 5, 636, 0, 0, 4265, 4268, 7, 60, 0, 0, 4266, 4268, 5, 167, 0, 0, 4267, 4259, 1, 0, 0, 0, 4267, 4260, 1, 0, 0, 0, 4267, 4261, 1, 0, 0, 0, 4267, 4262, 1, 0, 0, 0, 4267, 4263, 1, 0, 0, 0, 4267, 4264, 1, 0, 0, 0, 4267, 4265, 1, 0, 0, 0, 4267, 4266, 1, 0, 0, 0, 4268, 299, 1, 0, 0, 0, 4269, 4272, 3, 306, 153, 0, 4270, 4272, 3, 302, 151, 0, 4271, 4269, 1, 0, 0, 0, 4271, 4270, 1, 0, 0, 0, 4272, 4277, 1, 0, 0, 0, 4273, 4274, 5, 868, 0, 0, 4274, 4276, 3, 302, 151, 0, 4275, 4273, 1, 0, 0, 0, 4276, 4279, 1, 0, 0, 0, 4277, 4275, 1, 0, 0, 0, 4277, 4278, 1, 0, 0, 0, 4278, 301, 1, 0, 0, 0, 4279, 4277, 1, 0, 0, 0, 4280, 4301, 3, 304, 152, 0, 4281, 4286, 3, 308, 154, 0, 4282, 4284, 5, 13, 0, 0, 4283, 4282, 1, 0, 0, 0, 4283, 4284, 1, 0, 0, 0, 4284, 4285, 1, 0, 0, 0, 4285, 4287, 3, 722, 361, 0, 4286, 4283, 1, 0, 0, 0, 4286, 4287, 1, 0, 0, 0, 4287, 4301, 1, 0, 0, 0, 4288, 4293, 3, 310, 155, 0, 4289, 4291, 5, 13, 0, 0, 4290, 4289, 1, 0, 0, 0, 4290, 4291, 1, 0, 0, 0, 4291, 4292, 1, 0, 0, 0, 4292, 4294, 3, 722, 361, 0, 4293, 4290, 1, 0, 0, 0, 4293, 4294, 1, 0, 0, 0, 4294, 4301, 1, 0, 0, 0, 4295, 4296, 3, 722, 361, 0, 4296, 4297, 5, 865, 0, 0, 4297, 4298, 4, 151, 3, 0, 4298, 4299, 3, 672, 336, 0, 4299, 4301, 1, 0, 0, 0, 4300, 4280, 1, 0, 0, 0, 4300, 4281, 1, 0, 0, 0, 4300, 4288, 1, 0, 0, 0, 4300, 4295, 1, 0, 0, 0, 4301, 303, 1, 0, 0, 0, 4302, 4303, 3, 718, 359, 0, 4303, 4304, 5, 865, 0, 0, 4304, 4305, 5, 850, 0, 0, 4305, 305, 1, 0, 0, 0, 4306, 4307, 5, 850, 0, 0, 4307, 307, 1, 0, 0, 0, 4308, 4309, 3, 674, 337, 0, 4309, 309, 1, 0, 0, 0, 4310, 4311, 5, 892, 0, 0, 4311, 4313, 5, 841, 0, 0, 4312, 4310, 1, 0, 0, 0, 4312, 4313, 1, 0, 0, 0, 4313, 4314, 1, 0, 0, 0, 4314, 4317, 3, 820, 410, 0, 4315, 4317, 3, 780, 390, 0, 4316, 4312, 1, 0, 0, 0, 4316, 4315, 1, 0, 0, 0, 4317, 311, 1, 0, 0, 0, 4318, 4319, 5, 88, 0, 0, 4319, 4324, 3, 236, 118, 0, 4320, 4321, 5, 868, 0, 0, 4321, 4323, 3, 236, 118, 0, 4322, 4320, 1, 0, 0, 0, 4323, 4326, 1, 0, 0, 0, 4324, 4322, 1, 0, 0, 0, 4324, 4325, 1, 0, 0, 0, 4325, 4355, 1, 0, 0, 0, 4326, 4324, 1, 0, 0, 0, 4327, 4328, 5, 88, 0, 0, 4328, 4329, 5, 372, 0, 0, 4329, 4355, 5, 882, 0, 0, 4330, 4331, 5, 88, 0, 0, 4331, 4332, 5, 128, 0, 0, 4332, 4336, 5, 882, 0, 0, 4333, 4334, 5, 26, 0, 0, 4334, 4335, 5, 155, 0, 0, 4335, 4337, 3, 704, 352, 0, 4336, 4333, 1, 0, 0, 0, 4336, 4337, 1, 0, 0, 0, 4337, 4344, 1, 0, 0, 0, 4338, 4340, 7, 47, 0, 0, 4339, 4341, 3, 314, 157, 0, 4340, 4339, 1, 0, 0, 0, 4341, 4342, 1, 0, 0, 0, 4342, 4340, 1, 0, 0, 0, 4342, 4343, 1, 0, 0, 0, 4343, 4345, 1, 0, 0, 0, 4344, 4338, 1, 0, 0, 0, 4344, 4345, 1, 0, 0, 0, 4345, 4352, 1, 0, 0, 0, 4346, 4348, 5, 102, 0, 0, 4347, 4349, 3, 316, 158, 0, 4348, 4347, 1, 0, 0, 0, 4349, 4350, 1, 0, 0, 0, 4350, 4348, 1, 0, 0, 0, 4350, 4351, 1, 0, 0, 0, 4351, 4353, 1, 0, 0, 0, 4352, 4346, 1, 0, 0, 0, 4352, 4353, 1, 0, 0, 0, 4353, 4355, 1, 0, 0, 0, 4354, 4318, 1, 0, 0, 0, 4354, 4327, 1, 0, 0, 0, 4354, 4330, 1, 0, 0, 0, 4355, 313, 1, 0, 0, 0, 4356, 4357, 5, 174, 0, 0, 4357, 4358, 5, 20, 0, 0, 4358, 4369, 5, 882, 0, 0, 4359, 4361, 5, 123, 0, 0, 4360, 4359, 1, 0, 0, 0, 4360, 4361, 1, 0, 0, 0, 4361, 4362, 1, 0, 0, 0, 4362, 4363, 5, 56, 0, 0, 4363, 4364, 5, 20, 0, 0, 4364, 4369, 5, 882, 0, 0, 4365, 4366, 5, 58, 0, 0, 4366, 4367, 5, 20, 0, 0, 4367, 4369, 5, 882, 0, 0, 4368, 4356, 1, 0, 0, 0, 4368, 4360, 1, 0, 0, 0, 4368, 4365, 1, 0, 0, 0, 4369, 315, 1, 0, 0, 0, 4370, 4371, 5, 171, 0, 0, 4371, 4372, 5, 20, 0, 0, 4372, 4377, 5, 882, 0, 0, 4373, 4374, 5, 174, 0, 0, 4374, 4375, 5, 20, 0, 0, 4375, 4377, 5, 882, 0, 0, 4376, 4370, 1, 0, 0, 0, 4376, 4373, 1, 0, 0, 0, 4377, 317, 1, 0, 0, 0, 4378, 4379, 5, 68, 0, 0, 4379, 4381, 3, 262, 131, 0, 4380, 4378, 1, 0, 0, 0, 4380, 4381, 1, 0, 0, 0, 4381, 4387, 1, 0, 0, 0, 4382, 4385, 5, 192, 0, 0, 4383, 4386, 3, 820, 410, 0, 4384, 4386, 3, 678, 339, 0, 4385, 4383, 1, 0, 0, 0, 4385, 4384, 1, 0, 0, 0, 4386, 4388, 1, 0, 0, 0, 4387, 4382, 1, 0, 0, 0, 4387, 4388, 1, 0, 0, 0, 4388, 319, 1, 0, 0, 0, 4389, 4390, 5, 74, 0, 0, 4390, 4391, 5, 20, 0, 0, 4391, 4396, 3, 326, 163, 0, 4392, 4393, 5, 868, 0, 0, 4393, 4395, 3, 326, 163, 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, 4401, 1, 0, 0, 0, 4398, 4396, 1, 0, 0, 0, 4399, 4400, 5, 194, 0, 0, 4400, 4402, 5, 584, 0, 0, 4401, 4399, 1, 0, 0, 0, 4401, 4402, 1, 0, 0, 0, 4402, 321, 1, 0, 0, 0, 4403, 4406, 5, 75, 0, 0, 4404, 4407, 3, 820, 410, 0, 4405, 4407, 3, 678, 339, 0, 4406, 4404, 1, 0, 0, 0, 4406, 4405, 1, 0, 0, 0, 4407, 323, 1, 0, 0, 0, 4408, 4409, 5, 689, 0, 0, 4409, 4410, 3, 798, 399, 0, 4410, 4411, 5, 13, 0, 0, 4411, 4412, 5, 866, 0, 0, 4412, 4413, 3, 796, 398, 0, 4413, 4423, 5, 867, 0, 0, 4414, 4415, 5, 868, 0, 0, 4415, 4416, 3, 798, 399, 0, 4416, 4417, 5, 13, 0, 0, 4417, 4418, 5, 866, 0, 0, 4418, 4419, 3, 796, 398, 0, 4419, 4420, 5, 867, 0, 0, 4420, 4422, 1, 0, 0, 0, 4421, 4414, 1, 0, 0, 0, 4422, 4425, 1, 0, 0, 0, 4423, 4421, 1, 0, 0, 0, 4423, 4424, 1, 0, 0, 0, 4424, 325, 1, 0, 0, 0, 4425, 4423, 1, 0, 0, 0, 4426, 4429, 3, 820, 410, 0, 4427, 4429, 3, 678, 339, 0, 4428, 4426, 1, 0, 0, 0, 4428, 4427, 1, 0, 0, 0, 4429, 4431, 1, 0, 0, 0, 4430, 4432, 7, 55, 0, 0, 4431, 4430, 1, 0, 0, 0, 4431, 4432, 1, 0, 0, 0, 4432, 327, 1, 0, 0, 0, 4433, 4444, 5, 100, 0, 0, 4434, 4435, 3, 330, 165, 0, 4435, 4436, 5, 868, 0, 0, 4436, 4438, 1, 0, 0, 0, 4437, 4434, 1, 0, 0, 0, 4437, 4438, 1, 0, 0, 0, 4438, 4439, 1, 0, 0, 0, 4439, 4445, 3, 330, 165, 0, 4440, 4441, 3, 330, 165, 0, 4441, 4442, 5, 509, 0, 0, 4442, 4443, 3, 330, 165, 0, 4443, 4445, 1, 0, 0, 0, 4444, 4437, 1, 0, 0, 0, 4444, 4440, 1, 0, 0, 0, 4445, 329, 1, 0, 0, 0, 4446, 4450, 3, 728, 364, 0, 4447, 4450, 3, 702, 351, 0, 4448, 4450, 3, 724, 362, 0, 4449, 4446, 1, 0, 0, 0, 4449, 4447, 1, 0, 0, 0, 4449, 4448, 1, 0, 0, 0, 4450, 331, 1, 0, 0, 0, 4451, 4452, 5, 640, 0, 0, 4452, 4461, 5, 664, 0, 0, 4453, 4458, 3, 354, 177, 0, 4454, 4455, 5, 868, 0, 0, 4455, 4457, 3, 354, 177, 0, 4456, 4454, 1, 0, 0, 0, 4457, 4460, 1, 0, 0, 0, 4458, 4456, 1, 0, 0, 0, 4458, 4459, 1, 0, 0, 0, 4459, 4462, 1, 0, 0, 0, 4460, 4458, 1, 0, 0, 0, 4461, 4453, 1, 0, 0, 0, 4461, 4462, 1, 0, 0, 0, 4462, 333, 1, 0, 0, 0, 4463, 4465, 5, 317, 0, 0, 4464, 4466, 5, 691, 0, 0, 4465, 4464, 1, 0, 0, 0, 4465, 4466, 1, 0, 0, 0, 4466, 335, 1, 0, 0, 0, 4467, 4469, 5, 341, 0, 0, 4468, 4470, 5, 691, 0, 0, 4469, 4468, 1, 0, 0, 0, 4469, 4470, 1, 0, 0, 0, 4470, 4476, 1, 0, 0, 0, 4471, 4473, 5, 11, 0, 0, 4472, 4474, 5, 502, 0, 0, 4473, 4472, 1, 0, 0, 0, 4473, 4474, 1, 0, 0, 0, 4474, 4475, 1, 0, 0, 0, 4475, 4477, 5, 326, 0, 0, 4476, 4471, 1, 0, 0, 0, 4476, 4477, 1, 0, 0, 0, 4477, 4482, 1, 0, 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, 140, 0, 0, 4482, 4479, 1, 0, 0, 0, 4482, 4483, 1, 0, 0, 0, 4483, 337, 1, 0, 0, 0, 4484, 4486, 5, 583, 0, 0, 4485, 4487, 5, 691, 0, 0, 4486, 4485, 1, 0, 0, 0, 4486, 4487, 1, 0, 0, 0, 4487, 4493, 1, 0, 0, 0, 4488, 4490, 5, 11, 0, 0, 4489, 4491, 5, 502, 0, 0, 4490, 4489, 1, 0, 0, 0, 4490, 4491, 1, 0, 0, 0, 4491, 4492, 1, 0, 0, 0, 4492, 4494, 5, 326, 0, 0, 4493, 4488, 1, 0, 0, 0, 4493, 4494, 1, 0, 0, 0, 4494, 4499, 1, 0, 0, 0, 4495, 4497, 5, 502, 0, 0, 4496, 4495, 1, 0, 0, 0, 4496, 4497, 1, 0, 0, 0, 4497, 4498, 1, 0, 0, 0, 4498, 4500, 5, 140, 0, 0, 4499, 4496, 1, 0, 0, 0, 4499, 4500, 1, 0, 0, 0, 4500, 339, 1, 0, 0, 0, 4501, 4502, 5, 589, 0, 0, 4502, 4503, 3, 722, 361, 0, 4503, 341, 1, 0, 0, 0, 4504, 4506, 5, 583, 0, 0, 4505, 4507, 5, 691, 0, 0, 4506, 4505, 1, 0, 0, 0, 4506, 4507, 1, 0, 0, 0, 4507, 4508, 1, 0, 0, 0, 4508, 4510, 5, 176, 0, 0, 4509, 4511, 5, 589, 0, 0, 4510, 4509, 1, 0, 0, 0, 4510, 4511, 1, 0, 0, 0, 4511, 4512, 1, 0, 0, 0, 4512, 4513, 3, 722, 361, 0, 4513, 343, 1, 0, 0, 0, 4514, 4515, 5, 140, 0, 0, 4515, 4516, 5, 589, 0, 0, 4516, 4517, 3, 722, 361, 0, 4517, 345, 1, 0, 0, 0, 4518, 4519, 5, 104, 0, 0, 4519, 4520, 7, 61, 0, 0, 4520, 4525, 3, 356, 178, 0, 4521, 4522, 5, 868, 0, 0, 4522, 4524, 3, 356, 178, 0, 4523, 4521, 1, 0, 0, 0, 4524, 4527, 1, 0, 0, 0, 4525, 4523, 1, 0, 0, 0, 4525, 4526, 1, 0, 0, 0, 4526, 347, 1, 0, 0, 0, 4527, 4525, 1, 0, 0, 0, 4528, 4529, 5, 183, 0, 0, 4529, 4530, 5, 752, 0, 0, 4530, 349, 1, 0, 0, 0, 4531, 4532, 5, 155, 0, 0, 4532, 4533, 5, 313, 0, 0, 4533, 4534, 5, 857, 0, 0, 4534, 4535, 7, 26, 0, 0, 4535, 351, 1, 0, 0, 0, 4536, 4538, 5, 155, 0, 0, 4537, 4539, 7, 62, 0, 0, 4538, 4537, 1, 0, 0, 0, 4538, 4539, 1, 0, 0, 0, 4539, 4540, 1, 0, 0, 0, 4540, 4541, 5, 664, 0, 0, 4541, 4546, 3, 360, 180, 0, 4542, 4543, 5, 868, 0, 0, 4543, 4545, 3, 360, 180, 0, 4544, 4542, 1, 0, 0, 0, 4545, 4548, 1, 0, 0, 0, 4546, 4544, 1, 0, 0, 0, 4546, 4547, 1, 0, 0, 0, 4547, 353, 1, 0, 0, 0, 4548, 4546, 1, 0, 0, 0, 4549, 4550, 5, 194, 0, 0, 4550, 4551, 5, 350, 0, 0, 4551, 4557, 5, 600, 0, 0, 4552, 4553, 5, 135, 0, 0, 4553, 4557, 5, 195, 0, 0, 4554, 4555, 5, 135, 0, 0, 4555, 4557, 5, 515, 0, 0, 4556, 4549, 1, 0, 0, 0, 4556, 4552, 1, 0, 0, 0, 4556, 4554, 1, 0, 0, 0, 4557, 355, 1, 0, 0, 0, 4558, 4563, 3, 662, 331, 0, 4559, 4561, 5, 13, 0, 0, 4560, 4559, 1, 0, 0, 0, 4560, 4561, 1, 0, 0, 0, 4561, 4562, 1, 0, 0, 0, 4562, 4564, 3, 722, 361, 0, 4563, 4560, 1, 0, 0, 0, 4563, 4564, 1, 0, 0, 0, 4564, 4565, 1, 0, 0, 0, 4565, 4566, 3, 358, 179, 0, 4566, 357, 1, 0, 0, 0, 4567, 4569, 5, 135, 0, 0, 4568, 4570, 5, 450, 0, 0, 4569, 4568, 1, 0, 0, 0, 4569, 4570, 1, 0, 0, 0, 4570, 4576, 1, 0, 0, 0, 4571, 4573, 5, 107, 0, 0, 4572, 4571, 1, 0, 0, 0, 4572, 4573, 1, 0, 0, 0, 4573, 4574, 1, 0, 0, 0, 4574, 4576, 5, 195, 0, 0, 4575, 4567, 1, 0, 0, 0, 4575, 4572, 1, 0, 0, 0, 4576, 359, 1, 0, 0, 0, 4577, 4578, 5, 440, 0, 0, 4578, 4579, 5, 448, 0, 0, 4579, 4585, 3, 362, 181, 0, 4580, 4581, 5, 135, 0, 0, 4581, 4585, 5, 195, 0, 0, 4582, 4583, 5, 135, 0, 0, 4583, 4585, 5, 515, 0, 0, 4584, 4577, 1, 0, 0, 0, 4584, 4580, 1, 0, 0, 0, 4584, 4582, 1, 0, 0, 0, 4585, 361, 1, 0, 0, 0, 4586, 4587, 5, 809, 0, 0, 4587, 4594, 5, 135, 0, 0, 4588, 4589, 5, 135, 0, 0, 4589, 4594, 5, 810, 0, 0, 4590, 4591, 5, 135, 0, 0, 4591, 4594, 5, 811, 0, 0, 4592, 4594, 5, 812, 0, 0, 4593, 4586, 1, 0, 0, 0, 4593, 4588, 1, 0, 0, 0, 4593, 4590, 1, 0, 0, 0, 4593, 4592, 1, 0, 0, 0, 4594, 363, 1, 0, 0, 0, 4595, 4596, 5, 25, 0, 0, 4596, 4597, 5, 453, 0, 0, 4597, 4598, 5, 176, 0, 0, 4598, 4603, 3, 380, 190, 0, 4599, 4600, 5, 868, 0, 0, 4600, 4602, 3, 380, 190, 0, 4601, 4599, 1, 0, 0, 0, 4602, 4605, 1, 0, 0, 0, 4603, 4601, 1, 0, 0, 0, 4603, 4604, 1, 0, 0, 0, 4604, 4607, 1, 0, 0, 0, 4605, 4603, 1, 0, 0, 0, 4606, 4608, 3, 400, 200, 0, 4607, 4606, 1, 0, 0, 0, 4607, 4608, 1, 0, 0, 0, 4608, 365, 1, 0, 0, 0, 4609, 4610, 5, 25, 0, 0, 4610, 4611, 5, 572, 0, 0, 4611, 4612, 5, 400, 0, 0, 4612, 4617, 3, 402, 201, 0, 4613, 4614, 5, 868, 0, 0, 4614, 4616, 3, 402, 201, 0, 4615, 4613, 1, 0, 0, 0, 4616, 4619, 1, 0, 0, 0, 4617, 4615, 1, 0, 0, 0, 4617, 4618, 1, 0, 0, 0, 4618, 4621, 1, 0, 0, 0, 4619, 4617, 1, 0, 0, 0, 4620, 4622, 3, 400, 200, 0, 4621, 4620, 1, 0, 0, 0, 4621, 4622, 1, 0, 0, 0, 4622, 367, 1, 0, 0, 0, 4623, 4624, 5, 25, 0, 0, 4624, 4625, 5, 572, 0, 0, 4625, 4626, 5, 605, 0, 0, 4626, 4627, 5, 176, 0, 0, 4627, 4632, 3, 390, 195, 0, 4628, 4629, 5, 868, 0, 0, 4629, 4631, 3, 390, 195, 0, 4630, 4628, 1, 0, 0, 0, 4631, 4634, 1, 0, 0, 0, 4632, 4630, 1, 0, 0, 0, 4632, 4633, 1, 0, 0, 0, 4633, 4636, 1, 0, 0, 0, 4634, 4632, 1, 0, 0, 0, 4635, 4637, 3, 400, 200, 0, 4636, 4635, 1, 0, 0, 0, 4636, 4637, 1, 0, 0, 0, 4637, 369, 1, 0, 0, 0, 4638, 4639, 5, 133, 0, 0, 4639, 4640, 7, 63, 0, 0, 4640, 4645, 5, 452, 0, 0, 4641, 4642, 5, 176, 0, 0, 4642, 4646, 5, 882, 0, 0, 4643, 4644, 5, 16, 0, 0, 4644, 4646, 5, 882, 0, 0, 4645, 4641, 1, 0, 0, 0, 4645, 4643, 1, 0, 0, 0, 4646, 371, 1, 0, 0, 0, 4647, 4648, 5, 640, 0, 0, 4648, 4657, 7, 64, 0, 0, 4649, 4654, 3, 406, 203, 0, 4650, 4651, 5, 868, 0, 0, 4651, 4653, 3, 406, 203, 0, 4652, 4650, 1, 0, 0, 0, 4653, 4656, 1, 0, 0, 0, 4654, 4652, 1, 0, 0, 0, 4654, 4655, 1, 0, 0, 0, 4655, 4658, 1, 0, 0, 0, 4656, 4654, 1, 0, 0, 0, 4657, 4649, 1, 0, 0, 0, 4657, 4658, 1, 0, 0, 0, 4658, 4661, 1, 0, 0, 0, 4659, 4660, 5, 676, 0, 0, 4660, 4662, 3, 408, 204, 0, 4661, 4659, 1, 0, 0, 0, 4661, 4662, 1, 0, 0, 0, 4662, 4666, 1, 0, 0, 0, 4663, 4665, 3, 410, 205, 0, 4664, 4663, 1, 0, 0, 0, 4665, 4668, 1, 0, 0, 0, 4666, 4664, 1, 0, 0, 0, 4666, 4667, 1, 0, 0, 0, 4667, 4670, 1, 0, 0, 0, 4668, 4666, 1, 0, 0, 0, 4669, 4671, 3, 400, 200, 0, 4670, 4669, 1, 0, 0, 0, 4670, 4671, 1, 0, 0, 0, 4671, 373, 1, 0, 0, 0, 4672, 4673, 5, 646, 0, 0, 4673, 4682, 7, 64, 0, 0, 4674, 4679, 3, 406, 203, 0, 4675, 4676, 5, 868, 0, 0, 4676, 4678, 3, 406, 203, 0, 4677, 4675, 1, 0, 0, 0, 4678, 4681, 1, 0, 0, 0, 4679, 4677, 1, 0, 0, 0, 4679, 4680, 1, 0, 0, 0, 4680, 4683, 1, 0, 0, 0, 4681, 4679, 1, 0, 0, 0, 4682, 4674, 1, 0, 0, 0, 4682, 4683, 1, 0, 0, 0, 4683, 4685, 1, 0, 0, 0, 4684, 4686, 3, 400, 200, 0, 4685, 4684, 1, 0, 0, 0, 4685, 4686, 1, 0, 0, 0, 4686, 375, 1, 0, 0, 0, 4687, 4688, 5, 640, 0, 0, 4688, 4692, 5, 415, 0, 0, 4689, 4690, 5, 678, 0, 0, 4690, 4691, 5, 857, 0, 0, 4691, 4693, 5, 882, 0, 0, 4692, 4689, 1, 0, 0, 0, 4692, 4693, 1, 0, 0, 0, 4693, 4698, 1, 0, 0, 0, 4694, 4695, 5, 868, 0, 0, 4695, 4696, 5, 529, 0, 0, 4696, 4697, 5, 857, 0, 0, 4697, 4699, 5, 882, 0, 0, 4698, 4694, 1, 0, 0, 0, 4698, 4699, 1, 0, 0, 0, 4699, 4704, 1, 0, 0, 0, 4700, 4701, 5, 868, 0, 0, 4701, 4702, 5, 363, 0, 0, 4702, 4703, 5, 857, 0, 0, 4703, 4705, 5, 882, 0, 0, 4704, 4700, 1, 0, 0, 0, 4704, 4705, 1, 0, 0, 0, 4705, 377, 1, 0, 0, 0, 4706, 4707, 5, 646, 0, 0, 4707, 4708, 5, 415, 0, 0, 4708, 379, 1, 0, 0, 0, 4709, 4710, 3, 382, 191, 0, 4710, 4711, 5, 857, 0, 0, 4711, 4712, 5, 882, 0, 0, 4712, 4737, 1, 0, 0, 0, 4713, 4714, 3, 384, 192, 0, 4714, 4715, 5, 857, 0, 0, 4715, 4716, 3, 728, 364, 0, 4716, 4737, 1, 0, 0, 0, 4717, 4718, 3, 386, 193, 0, 4718, 4719, 5, 857, 0, 0, 4719, 4720, 7, 26, 0, 0, 4720, 4737, 1, 0, 0, 0, 4721, 4737, 3, 388, 194, 0, 4722, 4723, 5, 424, 0, 0, 4723, 4724, 5, 857, 0, 0, 4724, 4733, 5, 866, 0, 0, 4725, 4730, 3, 722, 361, 0, 4726, 4727, 5, 868, 0, 0, 4727, 4729, 3, 722, 361, 0, 4728, 4726, 1, 0, 0, 0, 4729, 4732, 1, 0, 0, 0, 4730, 4728, 1, 0, 0, 0, 4730, 4731, 1, 0, 0, 0, 4731, 4734, 1, 0, 0, 0, 4732, 4730, 1, 0, 0, 0, 4733, 4725, 1, 0, 0, 0, 4733, 4734, 1, 0, 0, 0, 4734, 4735, 1, 0, 0, 0, 4735, 4737, 5, 867, 0, 0, 4736, 4709, 1, 0, 0, 0, 4736, 4713, 1, 0, 0, 0, 4736, 4717, 1, 0, 0, 0, 4736, 4721, 1, 0, 0, 0, 4736, 4722, 1, 0, 0, 0, 4737, 381, 1, 0, 0, 0, 4738, 4739, 7, 65, 0, 0, 4739, 383, 1, 0, 0, 0, 4740, 4741, 7, 66, 0, 0, 4741, 385, 1, 0, 0, 0, 4742, 4743, 7, 67, 0, 0, 4743, 387, 1, 0, 0, 0, 4744, 4745, 5, 543, 0, 0, 4745, 4746, 5, 857, 0, 0, 4746, 4758, 7, 68, 0, 0, 4747, 4748, 5, 574, 0, 0, 4748, 4749, 5, 857, 0, 0, 4749, 4758, 7, 69, 0, 0, 4750, 4751, 5, 310, 0, 0, 4751, 4755, 5, 857, 0, 0, 4752, 4756, 5, 507, 0, 0, 4753, 4756, 5, 450, 0, 0, 4754, 4756, 3, 412, 206, 0, 4755, 4752, 1, 0, 0, 0, 4755, 4753, 1, 0, 0, 0, 4755, 4754, 1, 0, 0, 0, 4756, 4758, 1, 0, 0, 0, 4757, 4744, 1, 0, 0, 0, 4757, 4747, 1, 0, 0, 0, 4757, 4750, 1, 0, 0, 0, 4758, 389, 1, 0, 0, 0, 4759, 4760, 3, 392, 196, 0, 4760, 4761, 5, 857, 0, 0, 4761, 4762, 5, 882, 0, 0, 4762, 4787, 1, 0, 0, 0, 4763, 4764, 3, 394, 197, 0, 4764, 4765, 5, 857, 0, 0, 4765, 4766, 3, 728, 364, 0, 4766, 4787, 1, 0, 0, 0, 4767, 4768, 3, 396, 198, 0, 4768, 4769, 5, 857, 0, 0, 4769, 4770, 7, 26, 0, 0, 4770, 4787, 1, 0, 0, 0, 4771, 4787, 3, 398, 199, 0, 4772, 4773, 5, 424, 0, 0, 4773, 4774, 5, 857, 0, 0, 4774, 4783, 5, 866, 0, 0, 4775, 4780, 3, 722, 361, 0, 4776, 4777, 5, 868, 0, 0, 4777, 4779, 3, 722, 361, 0, 4778, 4776, 1, 0, 0, 0, 4779, 4782, 1, 0, 0, 0, 4780, 4778, 1, 0, 0, 0, 4780, 4781, 1, 0, 0, 0, 4781, 4784, 1, 0, 0, 0, 4782, 4780, 1, 0, 0, 0, 4783, 4775, 1, 0, 0, 0, 4783, 4784, 1, 0, 0, 0, 4784, 4785, 1, 0, 0, 0, 4785, 4787, 5, 867, 0, 0, 4786, 4759, 1, 0, 0, 0, 4786, 4763, 1, 0, 0, 0, 4786, 4767, 1, 0, 0, 0, 4786, 4771, 1, 0, 0, 0, 4786, 4772, 1, 0, 0, 0, 4787, 391, 1, 0, 0, 0, 4788, 4789, 7, 70, 0, 0, 4789, 393, 1, 0, 0, 0, 4790, 4791, 7, 71, 0, 0, 4791, 395, 1, 0, 0, 0, 4792, 4793, 7, 72, 0, 0, 4793, 397, 1, 0, 0, 0, 4794, 4795, 5, 543, 0, 0, 4795, 4796, 5, 857, 0, 0, 4796, 4808, 7, 68, 0, 0, 4797, 4798, 5, 574, 0, 0, 4798, 4799, 5, 857, 0, 0, 4799, 4808, 7, 73, 0, 0, 4800, 4801, 5, 310, 0, 0, 4801, 4805, 5, 857, 0, 0, 4802, 4806, 5, 507, 0, 0, 4803, 4806, 5, 450, 0, 0, 4804, 4806, 3, 412, 206, 0, 4805, 4802, 1, 0, 0, 0, 4805, 4803, 1, 0, 0, 0, 4805, 4804, 1, 0, 0, 0, 4806, 4808, 1, 0, 0, 0, 4807, 4794, 1, 0, 0, 0, 4807, 4797, 1, 0, 0, 0, 4807, 4800, 1, 0, 0, 0, 4808, 399, 1, 0, 0, 0, 4809, 4810, 5, 65, 0, 0, 4810, 4811, 5, 328, 0, 0, 4811, 4812, 5, 882, 0, 0, 4812, 401, 1, 0, 0, 0, 4813, 4814, 5, 565, 0, 0, 4814, 4815, 5, 857, 0, 0, 4815, 4816, 5, 866, 0, 0, 4816, 4821, 3, 638, 319, 0, 4817, 4818, 5, 868, 0, 0, 4818, 4820, 3, 638, 319, 0, 4819, 4817, 1, 0, 0, 0, 4820, 4823, 1, 0, 0, 0, 4821, 4819, 1, 0, 0, 0, 4821, 4822, 1, 0, 0, 0, 4822, 4824, 1, 0, 0, 0, 4823, 4821, 1, 0, 0, 0, 4824, 4825, 5, 867, 0, 0, 4825, 4877, 1, 0, 0, 0, 4826, 4827, 5, 567, 0, 0, 4827, 4828, 5, 857, 0, 0, 4828, 4829, 5, 866, 0, 0, 4829, 4834, 3, 638, 319, 0, 4830, 4831, 5, 868, 0, 0, 4831, 4833, 3, 638, 319, 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, 4837, 1, 0, 0, 0, 4836, 4834, 1, 0, 0, 0, 4837, 4838, 5, 867, 0, 0, 4838, 4877, 1, 0, 0, 0, 4839, 4840, 5, 566, 0, 0, 4840, 4841, 5, 857, 0, 0, 4841, 4842, 5, 866, 0, 0, 4842, 4843, 3, 660, 330, 0, 4843, 4844, 5, 867, 0, 0, 4844, 4877, 1, 0, 0, 0, 4845, 4846, 5, 568, 0, 0, 4846, 4847, 5, 857, 0, 0, 4847, 4848, 5, 866, 0, 0, 4848, 4849, 3, 660, 330, 0, 4849, 4850, 5, 867, 0, 0, 4850, 4877, 1, 0, 0, 0, 4851, 4852, 5, 570, 0, 0, 4852, 4853, 5, 857, 0, 0, 4853, 4854, 5, 866, 0, 0, 4854, 4855, 3, 766, 383, 0, 4855, 4856, 5, 867, 0, 0, 4856, 4877, 1, 0, 0, 0, 4857, 4858, 5, 571, 0, 0, 4858, 4859, 5, 857, 0, 0, 4859, 4860, 5, 866, 0, 0, 4860, 4861, 3, 766, 383, 0, 4861, 4862, 5, 867, 0, 0, 4862, 4877, 1, 0, 0, 0, 4863, 4864, 5, 569, 0, 0, 4864, 4865, 5, 857, 0, 0, 4865, 4866, 5, 866, 0, 0, 4866, 4871, 3, 404, 202, 0, 4867, 4868, 5, 868, 0, 0, 4868, 4870, 3, 404, 202, 0, 4869, 4867, 1, 0, 0, 0, 4870, 4873, 1, 0, 0, 0, 4871, 4869, 1, 0, 0, 0, 4871, 4872, 1, 0, 0, 0, 4872, 4874, 1, 0, 0, 0, 4873, 4871, 1, 0, 0, 0, 4874, 4875, 5, 867, 0, 0, 4875, 4877, 1, 0, 0, 0, 4876, 4813, 1, 0, 0, 0, 4876, 4826, 1, 0, 0, 0, 4876, 4839, 1, 0, 0, 0, 4876, 4845, 1, 0, 0, 0, 4876, 4851, 1, 0, 0, 0, 4876, 4857, 1, 0, 0, 0, 4876, 4863, 1, 0, 0, 0, 4877, 403, 1, 0, 0, 0, 4878, 4879, 5, 866, 0, 0, 4879, 4880, 3, 662, 331, 0, 4880, 4881, 5, 868, 0, 0, 4881, 4882, 3, 662, 331, 0, 4882, 4883, 5, 867, 0, 0, 4883, 405, 1, 0, 0, 0, 4884, 4885, 7, 74, 0, 0, 4885, 407, 1, 0, 0, 0, 4886, 4887, 7, 75, 0, 0, 4887, 4888, 5, 857, 0, 0, 4888, 4912, 3, 412, 206, 0, 4889, 4890, 5, 460, 0, 0, 4890, 4891, 5, 857, 0, 0, 4891, 4892, 5, 882, 0, 0, 4892, 4893, 5, 868, 0, 0, 4893, 4894, 5, 461, 0, 0, 4894, 4895, 5, 857, 0, 0, 4895, 4912, 3, 728, 364, 0, 4896, 4897, 5, 611, 0, 0, 4897, 4898, 5, 857, 0, 0, 4898, 4899, 5, 882, 0, 0, 4899, 4900, 5, 868, 0, 0, 4900, 4901, 5, 612, 0, 0, 4901, 4902, 5, 857, 0, 0, 4902, 4912, 3, 728, 364, 0, 4903, 4904, 5, 557, 0, 0, 4904, 4905, 5, 857, 0, 0, 4905, 4906, 5, 882, 0, 0, 4906, 4907, 5, 868, 0, 0, 4907, 4908, 5, 558, 0, 0, 4908, 4909, 5, 857, 0, 0, 4909, 4912, 3, 728, 364, 0, 4910, 4912, 5, 634, 0, 0, 4911, 4886, 1, 0, 0, 0, 4911, 4889, 1, 0, 0, 0, 4911, 4896, 1, 0, 0, 0, 4911, 4903, 1, 0, 0, 0, 4911, 4910, 1, 0, 0, 0, 4912, 409, 1, 0, 0, 0, 4913, 4914, 5, 678, 0, 0, 4914, 4915, 5, 857, 0, 0, 4915, 4926, 5, 882, 0, 0, 4916, 4917, 5, 529, 0, 0, 4917, 4918, 5, 857, 0, 0, 4918, 4926, 5, 882, 0, 0, 4919, 4920, 5, 363, 0, 0, 4920, 4921, 5, 857, 0, 0, 4921, 4926, 5, 882, 0, 0, 4922, 4923, 5, 535, 0, 0, 4923, 4924, 5, 857, 0, 0, 4924, 4926, 5, 882, 0, 0, 4925, 4913, 1, 0, 0, 0, 4925, 4916, 1, 0, 0, 0, 4925, 4919, 1, 0, 0, 0, 4925, 4922, 1, 0, 0, 0, 4926, 411, 1, 0, 0, 0, 4927, 4932, 3, 712, 356, 0, 4928, 4929, 5, 868, 0, 0, 4929, 4931, 3, 712, 356, 0, 4930, 4928, 1, 0, 0, 0, 4931, 4934, 1, 0, 0, 0, 4932, 4930, 1, 0, 0, 0, 4932, 4933, 1, 0, 0, 0, 4933, 4937, 1, 0, 0, 0, 4934, 4932, 1, 0, 0, 0, 4935, 4937, 5, 882, 0, 0, 4936, 4927, 1, 0, 0, 0, 4936, 4935, 1, 0, 0, 0, 4937, 413, 1, 0, 0, 0, 4938, 4939, 5, 694, 0, 0, 4939, 4940, 7, 76, 0, 0, 4940, 4942, 3, 714, 357, 0, 4941, 4943, 7, 77, 0, 0, 4942, 4941, 1, 0, 0, 0, 4942, 4943, 1, 0, 0, 0, 4943, 415, 1, 0, 0, 0, 4944, 4945, 5, 694, 0, 0, 4945, 4946, 5, 378, 0, 0, 4946, 4952, 3, 714, 357, 0, 4947, 4950, 5, 654, 0, 0, 4948, 4949, 5, 65, 0, 0, 4949, 4951, 5, 489, 0, 0, 4950, 4948, 1, 0, 0, 0, 4950, 4951, 1, 0, 0, 0, 4951, 4953, 1, 0, 0, 0, 4952, 4947, 1, 0, 0, 0, 4952, 4953, 1, 0, 0, 0, 4953, 417, 1, 0, 0, 0, 4954, 4955, 5, 694, 0, 0, 4955, 4956, 5, 540, 0, 0, 4956, 4957, 3, 714, 357, 0, 4957, 419, 1, 0, 0, 0, 4958, 4959, 5, 694, 0, 0, 4959, 4960, 5, 341, 0, 0, 4960, 4963, 3, 714, 357, 0, 4961, 4962, 5, 513, 0, 0, 4962, 4964, 5, 533, 0, 0, 4963, 4961, 1, 0, 0, 0, 4963, 4964, 1, 0, 0, 0, 4964, 421, 1, 0, 0, 0, 4965, 4966, 5, 694, 0, 0, 4966, 4967, 5, 583, 0, 0, 4967, 4968, 3, 714, 357, 0, 4968, 423, 1, 0, 0, 0, 4969, 4970, 5, 694, 0, 0, 4970, 4973, 5, 551, 0, 0, 4971, 4972, 5, 33, 0, 0, 4972, 4974, 3, 714, 357, 0, 4973, 4971, 1, 0, 0, 0, 4973, 4974, 1, 0, 0, 0, 4974, 425, 1, 0, 0, 0, 4975, 4976, 5, 540, 0, 0, 4976, 4977, 3, 722, 361, 0, 4977, 4980, 5, 68, 0, 0, 4978, 4981, 5, 882, 0, 0, 4979, 4981, 5, 892, 0, 0, 4980, 4978, 1, 0, 0, 0, 4980, 4979, 1, 0, 0, 0, 4981, 427, 1, 0, 0, 0, 4982, 4983, 5, 717, 0, 0, 4983, 4986, 3, 722, 361, 0, 4984, 4985, 5, 188, 0, 0, 4985, 4987, 3, 768, 384, 0, 4986, 4984, 1, 0, 0, 0, 4986, 4987, 1, 0, 0, 0, 4987, 429, 1, 0, 0, 0, 4988, 4989, 7, 78, 0, 0, 4989, 4990, 5, 540, 0, 0, 4990, 4991, 3, 722, 361, 0, 4991, 431, 1, 0, 0, 0, 4992, 4995, 3, 434, 217, 0, 4993, 4995, 3, 4, 2, 0, 4994, 4992, 1, 0, 0, 0, 4994, 4993, 1, 0, 0, 0, 4995, 433, 1, 0, 0, 0, 4996, 4997, 3, 722, 361, 0, 4997, 4998, 5, 878, 0, 0, 4998, 5000, 1, 0, 0, 0, 4999, 4996, 1, 0, 0, 0, 4999, 5000, 1, 0, 0, 0, 5000, 5001, 1, 0, 0, 0, 5001, 5007, 5, 317, 0, 0, 5002, 5003, 3, 454, 227, 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, 456, 228, 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, 458, 229, 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, 5031, 1, 0, 0, 0, 5025, 5023, 1, 0, 0, 0, 5026, 5027, 3, 460, 230, 0, 5027, 5028, 5, 869, 0, 0, 5028, 5030, 1, 0, 0, 0, 5029, 5026, 1, 0, 0, 0, 5030, 5033, 1, 0, 0, 0, 5031, 5029, 1, 0, 0, 0, 5031, 5032, 1, 0, 0, 0, 5032, 5037, 1, 0, 0, 0, 5033, 5031, 1, 0, 0, 0, 5034, 5036, 3, 464, 232, 0, 5035, 5034, 1, 0, 0, 0, 5036, 5039, 1, 0, 0, 0, 5037, 5035, 1, 0, 0, 0, 5037, 5038, 1, 0, 0, 0, 5038, 5040, 1, 0, 0, 0, 5039, 5037, 1, 0, 0, 0, 5040, 5042, 5, 378, 0, 0, 5041, 5043, 3, 722, 361, 0, 5042, 5041, 1, 0, 0, 0, 5042, 5043, 1, 0, 0, 0, 5043, 435, 1, 0, 0, 0, 5044, 5047, 5, 23, 0, 0, 5045, 5048, 3, 722, 361, 0, 5046, 5048, 3, 820, 410, 0, 5047, 5045, 1, 0, 0, 0, 5047, 5046, 1, 0, 0, 0, 5047, 5048, 1, 0, 0, 0, 5048, 5050, 1, 0, 0, 0, 5049, 5051, 3, 466, 233, 0, 5050, 5049, 1, 0, 0, 0, 5051, 5052, 1, 0, 0, 0, 5052, 5050, 1, 0, 0, 0, 5052, 5053, 1, 0, 0, 0, 5053, 5060, 1, 0, 0, 0, 5054, 5056, 5, 53, 0, 0, 5055, 5057, 3, 464, 232, 0, 5056, 5055, 1, 0, 0, 0, 5057, 5058, 1, 0, 0, 0, 5058, 5056, 1, 0, 0, 0, 5058, 5059, 1, 0, 0, 0, 5059, 5061, 1, 0, 0, 0, 5060, 5054, 1, 0, 0, 0, 5060, 5061, 1, 0, 0, 0, 5061, 5062, 1, 0, 0, 0, 5062, 5063, 5, 378, 0, 0, 5063, 5064, 5, 23, 0, 0, 5064, 437, 1, 0, 0, 0, 5065, 5066, 5, 78, 0, 0, 5066, 5067, 3, 820, 410, 0, 5067, 5069, 5, 175, 0, 0, 5068, 5070, 3, 464, 232, 0, 5069, 5068, 1, 0, 0, 0, 5070, 5071, 1, 0, 0, 0, 5071, 5069, 1, 0, 0, 0, 5071, 5072, 1, 0, 0, 0, 5072, 5076, 1, 0, 0, 0, 5073, 5075, 3, 468, 234, 0, 5074, 5073, 1, 0, 0, 0, 5075, 5078, 1, 0, 0, 0, 5076, 5074, 1, 0, 0, 0, 5076, 5077, 1, 0, 0, 0, 5077, 5085, 1, 0, 0, 0, 5078, 5076, 1, 0, 0, 0, 5079, 5081, 5, 53, 0, 0, 5080, 5082, 3, 464, 232, 0, 5081, 5080, 1, 0, 0, 0, 5082, 5083, 1, 0, 0, 0, 5083, 5081, 1, 0, 0, 0, 5083, 5084, 1, 0, 0, 0, 5084, 5086, 1, 0, 0, 0, 5085, 5079, 1, 0, 0, 0, 5085, 5086, 1, 0, 0, 0, 5086, 5087, 1, 0, 0, 0, 5087, 5088, 5, 378, 0, 0, 5088, 5089, 5, 78, 0, 0, 5089, 439, 1, 0, 0, 0, 5090, 5091, 5, 90, 0, 0, 5091, 5092, 3, 722, 361, 0, 5092, 441, 1, 0, 0, 0, 5093, 5094, 5, 97, 0, 0, 5094, 5095, 3, 722, 361, 0, 5095, 443, 1, 0, 0, 0, 5096, 5097, 3, 722, 361, 0, 5097, 5098, 5, 878, 0, 0, 5098, 5100, 1, 0, 0, 0, 5099, 5096, 1, 0, 0, 0, 5099, 5100, 1, 0, 0, 0, 5100, 5101, 1, 0, 0, 0, 5101, 5103, 5, 106, 0, 0, 5102, 5104, 3, 464, 232, 0, 5103, 5102, 1, 0, 0, 0, 5104, 5105, 1, 0, 0, 0, 5105, 5103, 1, 0, 0, 0, 5105, 5106, 1, 0, 0, 0, 5106, 5107, 1, 0, 0, 0, 5107, 5108, 5, 378, 0, 0, 5108, 5110, 5, 106, 0, 0, 5109, 5111, 3, 722, 361, 0, 5110, 5109, 1, 0, 0, 0, 5110, 5111, 1, 0, 0, 0, 5111, 445, 1, 0, 0, 0, 5112, 5113, 3, 722, 361, 0, 5113, 5114, 5, 878, 0, 0, 5114, 5116, 1, 0, 0, 0, 5115, 5112, 1, 0, 0, 0, 5115, 5116, 1, 0, 0, 0, 5116, 5117, 1, 0, 0, 0, 5117, 5119, 5, 142, 0, 0, 5118, 5120, 3, 464, 232, 0, 5119, 5118, 1, 0, 0, 0, 5120, 5121, 1, 0, 0, 0, 5121, 5119, 1, 0, 0, 0, 5121, 5122, 1, 0, 0, 0, 5122, 5123, 1, 0, 0, 0, 5123, 5124, 5, 676, 0, 0, 5124, 5125, 3, 820, 410, 0, 5125, 5126, 5, 378, 0, 0, 5126, 5128, 5, 142, 0, 0, 5127, 5129, 3, 722, 361, 0, 5128, 5127, 1, 0, 0, 0, 5128, 5129, 1, 0, 0, 0, 5129, 447, 1, 0, 0, 0, 5130, 5131, 5, 148, 0, 0, 5131, 5132, 3, 820, 410, 0, 5132, 449, 1, 0, 0, 0, 5133, 5134, 3, 722, 361, 0, 5134, 5135, 5, 878, 0, 0, 5135, 5137, 1, 0, 0, 0, 5136, 5133, 1, 0, 0, 0, 5136, 5137, 1, 0, 0, 0, 5137, 5138, 1, 0, 0, 0, 5138, 5139, 5, 193, 0, 0, 5139, 5140, 3, 820, 410, 0, 5140, 5142, 5, 371, 0, 0, 5141, 5143, 3, 464, 232, 0, 5142, 5141, 1, 0, 0, 0, 5143, 5144, 1, 0, 0, 0, 5144, 5142, 1, 0, 0, 0, 5144, 5145, 1, 0, 0, 0, 5145, 5146, 1, 0, 0, 0, 5146, 5147, 5, 378, 0, 0, 5147, 5149, 5, 193, 0, 0, 5148, 5150, 3, 722, 361, 0, 5149, 5148, 1, 0, 0, 0, 5149, 5150, 1, 0, 0, 0, 5150, 451, 1, 0, 0, 0, 5151, 5152, 5, 334, 0, 0, 5152, 5167, 3, 722, 361, 0, 5153, 5158, 5, 64, 0, 0, 5154, 5156, 5, 501, 0, 0, 5155, 5154, 1, 0, 0, 0, 5155, 5156, 1, 0, 0, 0, 5156, 5157, 1, 0, 0, 0, 5157, 5159, 5, 68, 0, 0, 5158, 5155, 1, 0, 0, 0, 5158, 5159, 1, 0, 0, 0, 5159, 5160, 1, 0, 0, 0, 5160, 5161, 3, 722, 361, 0, 5161, 5162, 5, 88, 0, 0, 5162, 5163, 3, 720, 360, 0, 5163, 5167, 1, 0, 0, 0, 5164, 5165, 5, 516, 0, 0, 5165, 5167, 3, 722, 361, 0, 5166, 5151, 1, 0, 0, 0, 5166, 5153, 1, 0, 0, 0, 5166, 5164, 1, 0, 0, 0, 5167, 453, 1, 0, 0, 0, 5168, 5169, 5, 41, 0, 0, 5169, 5170, 3, 720, 360, 0, 5170, 5173, 3, 742, 371, 0, 5171, 5172, 5, 42, 0, 0, 5172, 5174, 3, 820, 410, 0, 5173, 5171, 1, 0, 0, 0, 5173, 5174, 1, 0, 0, 0, 5174, 455, 1, 0, 0, 0, 5175, 5176, 5, 41, 0, 0, 5176, 5177, 3, 722, 361, 0, 5177, 5178, 5, 30, 0, 0, 5178, 5185, 5, 65, 0, 0, 5179, 5186, 3, 728, 364, 0, 5180, 5182, 5, 164, 0, 0, 5181, 5183, 5, 682, 0, 0, 5182, 5181, 1, 0, 0, 0, 5182, 5183, 1, 0, 0, 0, 5183, 5184, 1, 0, 0, 0, 5184, 5186, 5, 882, 0, 0, 5185, 5179, 1, 0, 0, 0, 5185, 5180, 1, 0, 0, 0, 5186, 457, 1, 0, 0, 0, 5187, 5188, 5, 41, 0, 0, 5188, 5189, 3, 722, 361, 0, 5189, 5190, 5, 38, 0, 0, 5190, 5191, 5, 65, 0, 0, 5191, 5192, 3, 210, 105, 0, 5192, 459, 1, 0, 0, 0, 5193, 5194, 5, 41, 0, 0, 5194, 5195, 7, 79, 0, 0, 5195, 5196, 5, 417, 0, 0, 5196, 5197, 5, 65, 0, 0, 5197, 5202, 3, 462, 231, 0, 5198, 5199, 5, 868, 0, 0, 5199, 5201, 3, 462, 231, 0, 5200, 5198, 1, 0, 0, 0, 5201, 5204, 1, 0, 0, 0, 5202, 5200, 1, 0, 0, 0, 5202, 5203, 1, 0, 0, 0, 5203, 5205, 1, 0, 0, 0, 5204, 5202, 1, 0, 0, 0, 5205, 5206, 3, 432, 216, 0, 5206, 461, 1, 0, 0, 0, 5207, 5219, 3, 728, 364, 0, 5208, 5210, 5, 164, 0, 0, 5209, 5211, 5, 682, 0, 0, 5210, 5209, 1, 0, 0, 0, 5210, 5211, 1, 0, 0, 0, 5211, 5212, 1, 0, 0, 0, 5212, 5219, 5, 882, 0, 0, 5213, 5219, 3, 722, 361, 0, 5214, 5219, 5, 165, 0, 0, 5215, 5216, 5, 114, 0, 0, 5216, 5219, 5, 407, 0, 0, 5217, 5219, 5, 163, 0, 0, 5218, 5207, 1, 0, 0, 0, 5218, 5208, 1, 0, 0, 0, 5218, 5213, 1, 0, 0, 0, 5218, 5214, 1, 0, 0, 0, 5218, 5215, 1, 0, 0, 0, 5218, 5217, 1, 0, 0, 0, 5219, 463, 1, 0, 0, 0, 5220, 5223, 3, 18, 9, 0, 5221, 5223, 3, 4, 2, 0, 5222, 5220, 1, 0, 0, 0, 5222, 5221, 1, 0, 0, 0, 5223, 5224, 1, 0, 0, 0, 5224, 5225, 5, 869, 0, 0, 5225, 465, 1, 0, 0, 0, 5226, 5229, 5, 191, 0, 0, 5227, 5230, 3, 740, 370, 0, 5228, 5230, 3, 820, 410, 0, 5229, 5227, 1, 0, 0, 0, 5229, 5228, 1, 0, 0, 0, 5230, 5231, 1, 0, 0, 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, 467, 1, 0, 0, 0, 5237, 5238, 5, 54, 0, 0, 5238, 5239, 3, 820, 410, 0, 5239, 5241, 5, 175, 0, 0, 5240, 5242, 3, 464, 232, 0, 5241, 5240, 1, 0, 0, 0, 5242, 5243, 1, 0, 0, 0, 5243, 5241, 1, 0, 0, 0, 5243, 5244, 1, 0, 0, 0, 5244, 469, 1, 0, 0, 0, 5245, 5246, 5, 8, 0, 0, 5246, 5248, 5, 678, 0, 0, 5247, 5249, 3, 774, 387, 0, 5248, 5247, 1, 0, 0, 0, 5248, 5249, 1, 0, 0, 0, 5249, 5306, 1, 0, 0, 0, 5250, 5255, 3, 502, 251, 0, 5251, 5252, 5, 868, 0, 0, 5252, 5254, 3, 502, 251, 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, 5307, 1, 0, 0, 0, 5257, 5255, 1, 0, 0, 0, 5258, 5263, 3, 504, 252, 0, 5259, 5260, 5, 868, 0, 0, 5260, 5262, 3, 504, 252, 0, 5261, 5259, 1, 0, 0, 0, 5262, 5265, 1, 0, 0, 0, 5263, 5261, 1, 0, 0, 0, 5263, 5264, 1, 0, 0, 0, 5264, 5280, 1, 0, 0, 0, 5265, 5263, 1, 0, 0, 0, 5266, 5278, 5, 144, 0, 0, 5267, 5279, 5, 505, 0, 0, 5268, 5275, 3, 516, 258, 0, 5269, 5271, 5, 11, 0, 0, 5270, 5269, 1, 0, 0, 0, 5270, 5271, 1, 0, 0, 0, 5271, 5272, 1, 0, 0, 0, 5272, 5274, 3, 516, 258, 0, 5273, 5270, 1, 0, 0, 0, 5274, 5277, 1, 0, 0, 0, 5275, 5273, 1, 0, 0, 0, 5275, 5276, 1, 0, 0, 0, 5276, 5279, 1, 0, 0, 0, 5277, 5275, 1, 0, 0, 0, 5278, 5267, 1, 0, 0, 0, 5278, 5268, 1, 0, 0, 0, 5279, 5281, 1, 0, 0, 0, 5280, 5266, 1, 0, 0, 0, 5280, 5281, 1, 0, 0, 0, 5281, 5288, 1, 0, 0, 0, 5282, 5284, 5, 194, 0, 0, 5283, 5285, 3, 518, 259, 0, 5284, 5283, 1, 0, 0, 0, 5285, 5286, 1, 0, 0, 0, 5286, 5284, 1, 0, 0, 0, 5286, 5287, 1, 0, 0, 0, 5287, 5289, 1, 0, 0, 0, 5288, 5282, 1, 0, 0, 0, 5288, 5289, 1, 0, 0, 0, 5289, 5294, 1, 0, 0, 0, 5290, 5293, 3, 520, 260, 0, 5291, 5293, 3, 522, 261, 0, 5292, 5290, 1, 0, 0, 0, 5292, 5291, 1, 0, 0, 0, 5293, 5296, 1, 0, 0, 0, 5294, 5292, 1, 0, 0, 0, 5294, 5295, 1, 0, 0, 0, 5295, 5299, 1, 0, 0, 0, 5296, 5294, 1, 0, 0, 0, 5297, 5298, 7, 80, 0, 0, 5298, 5300, 5, 882, 0, 0, 5299, 5297, 1, 0, 0, 0, 5299, 5300, 1, 0, 0, 0, 5300, 5307, 1, 0, 0, 0, 5301, 5302, 3, 666, 333, 0, 5302, 5303, 5, 42, 0, 0, 5303, 5304, 5, 582, 0, 0, 5304, 5305, 3, 478, 239, 0, 5305, 5307, 1, 0, 0, 0, 5306, 5250, 1, 0, 0, 0, 5306, 5258, 1, 0, 0, 0, 5306, 5301, 1, 0, 0, 0, 5307, 471, 1, 0, 0, 0, 5308, 5309, 5, 34, 0, 0, 5309, 5311, 5, 678, 0, 0, 5310, 5312, 3, 776, 388, 0, 5311, 5310, 1, 0, 0, 0, 5311, 5312, 1, 0, 0, 0, 5312, 5313, 1, 0, 0, 0, 5313, 5315, 3, 700, 350, 0, 5314, 5316, 3, 506, 253, 0, 5315, 5314, 1, 0, 0, 0, 5315, 5316, 1, 0, 0, 0, 5316, 5324, 1, 0, 0, 0, 5317, 5318, 5, 868, 0, 0, 5318, 5320, 3, 700, 350, 0, 5319, 5321, 3, 506, 253, 0, 5320, 5319, 1, 0, 0, 0, 5320, 5321, 1, 0, 0, 0, 5321, 5323, 1, 0, 0, 0, 5322, 5317, 1, 0, 0, 0, 5323, 5326, 1, 0, 0, 0, 5324, 5322, 1, 0, 0, 0, 5324, 5325, 1, 0, 0, 0, 5325, 5330, 1, 0, 0, 0, 5326, 5324, 1, 0, 0, 0, 5327, 5328, 5, 42, 0, 0, 5328, 5329, 5, 582, 0, 0, 5329, 5331, 3, 478, 239, 0, 5330, 5327, 1, 0, 0, 0, 5330, 5331, 1, 0, 0, 0, 5331, 5346, 1, 0, 0, 0, 5332, 5344, 5, 144, 0, 0, 5333, 5345, 5, 505, 0, 0, 5334, 5341, 3, 516, 258, 0, 5335, 5337, 5, 11, 0, 0, 5336, 5335, 1, 0, 0, 0, 5336, 5337, 1, 0, 0, 0, 5337, 5338, 1, 0, 0, 0, 5338, 5340, 3, 516, 258, 0, 5339, 5336, 1, 0, 0, 0, 5340, 5343, 1, 0, 0, 0, 5341, 5339, 1, 0, 0, 0, 5341, 5342, 1, 0, 0, 0, 5342, 5345, 1, 0, 0, 0, 5343, 5341, 1, 0, 0, 0, 5344, 5333, 1, 0, 0, 0, 5344, 5334, 1, 0, 0, 0, 5345, 5347, 1, 0, 0, 0, 5346, 5332, 1, 0, 0, 0, 5346, 5347, 1, 0, 0, 0, 5347, 5354, 1, 0, 0, 0, 5348, 5350, 5, 194, 0, 0, 5349, 5351, 3, 518, 259, 0, 5350, 5349, 1, 0, 0, 0, 5351, 5352, 1, 0, 0, 0, 5352, 5350, 1, 0, 0, 0, 5352, 5353, 1, 0, 0, 0, 5353, 5355, 1, 0, 0, 0, 5354, 5348, 1, 0, 0, 0, 5354, 5355, 1, 0, 0, 0, 5355, 5360, 1, 0, 0, 0, 5356, 5359, 3, 520, 260, 0, 5357, 5359, 3, 522, 261, 0, 5358, 5356, 1, 0, 0, 0, 5358, 5357, 1, 0, 0, 0, 5359, 5362, 1, 0, 0, 0, 5360, 5358, 1, 0, 0, 0, 5360, 5361, 1, 0, 0, 0, 5361, 5365, 1, 0, 0, 0, 5362, 5360, 1, 0, 0, 0, 5363, 5364, 7, 80, 0, 0, 5364, 5366, 5, 882, 0, 0, 5365, 5363, 1, 0, 0, 0, 5365, 5366, 1, 0, 0, 0, 5366, 473, 1, 0, 0, 0, 5367, 5368, 5, 51, 0, 0, 5368, 5370, 5, 678, 0, 0, 5369, 5371, 3, 774, 387, 0, 5370, 5369, 1, 0, 0, 0, 5370, 5371, 1, 0, 0, 0, 5371, 5372, 1, 0, 0, 0, 5372, 5377, 3, 700, 350, 0, 5373, 5374, 5, 868, 0, 0, 5374, 5376, 3, 700, 350, 0, 5375, 5373, 1, 0, 0, 0, 5376, 5379, 1, 0, 0, 0, 5377, 5375, 1, 0, 0, 0, 5377, 5378, 1, 0, 0, 0, 5378, 475, 1, 0, 0, 0, 5379, 5377, 1, 0, 0, 0, 5380, 5381, 5, 73, 0, 0, 5381, 5386, 3, 530, 265, 0, 5382, 5383, 5, 868, 0, 0, 5383, 5385, 3, 530, 265, 0, 5384, 5382, 1, 0, 0, 0, 5385, 5388, 1, 0, 0, 0, 5386, 5384, 1, 0, 0, 0, 5386, 5387, 1, 0, 0, 0, 5387, 5389, 1, 0, 0, 0, 5388, 5386, 1, 0, 0, 0, 5389, 5391, 5, 119, 0, 0, 5390, 5392, 3, 498, 249, 0, 5391, 5390, 1, 0, 0, 0, 5391, 5392, 1, 0, 0, 0, 5392, 5393, 1, 0, 0, 0, 5393, 5394, 3, 534, 267, 0, 5394, 5404, 5, 176, 0, 0, 5395, 5400, 3, 510, 255, 0, 5396, 5397, 5, 868, 0, 0, 5397, 5399, 3, 510, 255, 0, 5398, 5396, 1, 0, 0, 0, 5399, 5402, 1, 0, 0, 0, 5400, 5398, 1, 0, 0, 0, 5400, 5401, 1, 0, 0, 0, 5401, 5405, 1, 0, 0, 0, 5402, 5400, 1, 0, 0, 0, 5403, 5405, 3, 664, 332, 0, 5404, 5395, 1, 0, 0, 0, 5404, 5403, 1, 0, 0, 0, 5405, 5420, 1, 0, 0, 0, 5406, 5418, 5, 144, 0, 0, 5407, 5419, 5, 505, 0, 0, 5408, 5415, 3, 516, 258, 0, 5409, 5411, 5, 11, 0, 0, 5410, 5409, 1, 0, 0, 0, 5410, 5411, 1, 0, 0, 0, 5411, 5412, 1, 0, 0, 0, 5412, 5414, 3, 516, 258, 0, 5413, 5410, 1, 0, 0, 0, 5414, 5417, 1, 0, 0, 0, 5415, 5413, 1, 0, 0, 0, 5415, 5416, 1, 0, 0, 0, 5416, 5419, 1, 0, 0, 0, 5417, 5415, 1, 0, 0, 0, 5418, 5407, 1, 0, 0, 0, 5418, 5408, 1, 0, 0, 0, 5419, 5421, 1, 0, 0, 0, 5420, 5406, 1, 0, 0, 0, 5420, 5421, 1, 0, 0, 0, 5421, 5431, 1, 0, 0, 0, 5422, 5428, 5, 194, 0, 0, 5423, 5424, 5, 73, 0, 0, 5424, 5427, 5, 121, 0, 0, 5425, 5427, 3, 518, 259, 0, 5426, 5423, 1, 0, 0, 0, 5426, 5425, 1, 0, 0, 0, 5427, 5430, 1, 0, 0, 0, 5428, 5426, 1, 0, 0, 0, 5428, 5429, 1, 0, 0, 0, 5429, 5432, 1, 0, 0, 0, 5430, 5428, 1, 0, 0, 0, 5431, 5422, 1, 0, 0, 0, 5431, 5432, 1, 0, 0, 0, 5432, 5440, 1, 0, 0, 0, 5433, 5434, 5, 13, 0, 0, 5434, 5438, 3, 700, 350, 0, 5435, 5436, 5, 194, 0, 0, 5436, 5437, 5, 582, 0, 0, 5437, 5439, 3, 478, 239, 0, 5438, 5435, 1, 0, 0, 0, 5438, 5439, 1, 0, 0, 0, 5439, 5441, 1, 0, 0, 0, 5440, 5433, 1, 0, 0, 0, 5440, 5441, 1, 0, 0, 0, 5441, 5470, 1, 0, 0, 0, 5442, 5445, 5, 73, 0, 0, 5443, 5444, 5, 547, 0, 0, 5444, 5446, 5, 119, 0, 0, 5445, 5443, 1, 0, 0, 0, 5445, 5446, 1, 0, 0, 0, 5446, 5447, 1, 0, 0, 0, 5447, 5452, 3, 666, 333, 0, 5448, 5449, 5, 868, 0, 0, 5449, 5451, 3, 666, 333, 0, 5450, 5448, 1, 0, 0, 0, 5451, 5454, 1, 0, 0, 0, 5452, 5450, 1, 0, 0, 0, 5452, 5453, 1, 0, 0, 0, 5453, 5455, 1, 0, 0, 0, 5454, 5452, 1, 0, 0, 0, 5455, 5456, 5, 176, 0, 0, 5456, 5461, 3, 666, 333, 0, 5457, 5458, 5, 868, 0, 0, 5458, 5460, 3, 666, 333, 0, 5459, 5457, 1, 0, 0, 0, 5460, 5463, 1, 0, 0, 0, 5461, 5459, 1, 0, 0, 0, 5461, 5462, 1, 0, 0, 0, 5462, 5467, 1, 0, 0, 0, 5463, 5461, 1, 0, 0, 0, 5464, 5465, 5, 194, 0, 0, 5465, 5466, 5, 704, 0, 0, 5466, 5468, 5, 121, 0, 0, 5467, 5464, 1, 0, 0, 0, 5467, 5468, 1, 0, 0, 0, 5468, 5470, 1, 0, 0, 0, 5469, 5380, 1, 0, 0, 0, 5469, 5442, 1, 0, 0, 0, 5470, 477, 1, 0, 0, 0, 5471, 5480, 5, 42, 0, 0, 5472, 5480, 5, 505, 0, 0, 5473, 5476, 5, 7, 0, 0, 5474, 5475, 5, 59, 0, 0, 5475, 5477, 3, 664, 332, 0, 5476, 5474, 1, 0, 0, 0, 5476, 5477, 1, 0, 0, 0, 5477, 5480, 1, 0, 0, 0, 5478, 5480, 3, 664, 332, 0, 5479, 5471, 1, 0, 0, 0, 5479, 5472, 1, 0, 0, 0, 5479, 5473, 1, 0, 0, 0, 5479, 5478, 1, 0, 0, 0, 5480, 479, 1, 0, 0, 0, 5481, 5482, 5, 73, 0, 0, 5482, 5483, 5, 547, 0, 0, 5483, 5484, 5, 119, 0, 0, 5484, 5485, 3, 700, 350, 0, 5485, 5486, 5, 176, 0, 0, 5486, 5491, 3, 700, 350, 0, 5487, 5488, 5, 868, 0, 0, 5488, 5490, 3, 700, 350, 0, 5489, 5487, 1, 0, 0, 0, 5490, 5493, 1, 0, 0, 0, 5491, 5489, 1, 0, 0, 0, 5491, 5492, 1, 0, 0, 0, 5492, 5497, 1, 0, 0, 0, 5493, 5491, 1, 0, 0, 0, 5494, 5495, 5, 194, 0, 0, 5495, 5496, 5, 73, 0, 0, 5496, 5498, 5, 121, 0, 0, 5497, 5494, 1, 0, 0, 0, 5497, 5498, 1, 0, 0, 0, 5498, 481, 1, 0, 0, 0, 5499, 5500, 5, 8, 0, 0, 5500, 5501, 5, 739, 0, 0, 5501, 5502, 5, 74, 0, 0, 5502, 5508, 3, 656, 328, 0, 5503, 5505, 5, 190, 0, 0, 5504, 5506, 5, 857, 0, 0, 5505, 5504, 1, 0, 0, 0, 5505, 5506, 1, 0, 0, 0, 5506, 5507, 1, 0, 0, 0, 5507, 5509, 3, 490, 245, 0, 5508, 5503, 1, 0, 0, 0, 5508, 5509, 1, 0, 0, 0, 5509, 5515, 1, 0, 0, 0, 5510, 5512, 5, 837, 0, 0, 5511, 5513, 5, 857, 0, 0, 5512, 5511, 1, 0, 0, 0, 5512, 5513, 1, 0, 0, 0, 5513, 5514, 1, 0, 0, 0, 5514, 5516, 3, 728, 364, 0, 5515, 5510, 1, 0, 0, 0, 5515, 5516, 1, 0, 0, 0, 5516, 5521, 1, 0, 0, 0, 5517, 5519, 7, 39, 0, 0, 5518, 5520, 5, 66, 0, 0, 5519, 5518, 1, 0, 0, 0, 5519, 5520, 1, 0, 0, 0, 5520, 5522, 1, 0, 0, 0, 5521, 5517, 1, 0, 0, 0, 5521, 5522, 1, 0, 0, 0, 5522, 483, 1, 0, 0, 0, 5523, 5524, 5, 34, 0, 0, 5524, 5525, 5, 739, 0, 0, 5525, 5526, 5, 74, 0, 0, 5526, 5527, 3, 654, 327, 0, 5527, 5528, 5, 839, 0, 0, 5528, 5529, 5, 857, 0, 0, 5529, 5535, 7, 81, 0, 0, 5530, 5532, 5, 190, 0, 0, 5531, 5533, 5, 857, 0, 0, 5532, 5531, 1, 0, 0, 0, 5532, 5533, 1, 0, 0, 0, 5533, 5534, 1, 0, 0, 0, 5534, 5536, 3, 490, 245, 0, 5535, 5530, 1, 0, 0, 0, 5535, 5536, 1, 0, 0, 0, 5536, 5542, 1, 0, 0, 0, 5537, 5539, 5, 837, 0, 0, 5538, 5540, 5, 857, 0, 0, 5539, 5538, 1, 0, 0, 0, 5539, 5540, 1, 0, 0, 0, 5540, 5541, 1, 0, 0, 0, 5541, 5543, 3, 728, 364, 0, 5542, 5537, 1, 0, 0, 0, 5542, 5543, 1, 0, 0, 0, 5543, 5545, 1, 0, 0, 0, 5544, 5546, 7, 39, 0, 0, 5545, 5544, 1, 0, 0, 0, 5545, 5546, 1, 0, 0, 0, 5546, 485, 1, 0, 0, 0, 5547, 5548, 5, 51, 0, 0, 5548, 5549, 5, 739, 0, 0, 5549, 5550, 5, 74, 0, 0, 5550, 5552, 3, 656, 328, 0, 5551, 5553, 5, 66, 0, 0, 5552, 5551, 1, 0, 0, 0, 5552, 5553, 1, 0, 0, 0, 5553, 487, 1, 0, 0, 0, 5554, 5555, 5, 155, 0, 0, 5555, 5556, 5, 739, 0, 0, 5556, 5557, 5, 74, 0, 0, 5557, 5567, 3, 656, 328, 0, 5558, 5559, 5, 65, 0, 0, 5559, 5564, 3, 728, 364, 0, 5560, 5561, 5, 868, 0, 0, 5561, 5563, 3, 728, 364, 0, 5562, 5560, 1, 0, 0, 0, 5563, 5566, 1, 0, 0, 0, 5564, 5562, 1, 0, 0, 0, 5564, 5565, 1, 0, 0, 0, 5565, 5568, 1, 0, 0, 0, 5566, 5564, 1, 0, 0, 0, 5567, 5558, 1, 0, 0, 0, 5567, 5568, 1, 0, 0, 0, 5568, 489, 1, 0, 0, 0, 5569, 5575, 3, 728, 364, 0, 5570, 5571, 3, 728, 364, 0, 5571, 5572, 5, 854, 0, 0, 5572, 5573, 3, 728, 364, 0, 5573, 5575, 1, 0, 0, 0, 5574, 5569, 1, 0, 0, 0, 5574, 5570, 1, 0, 0, 0, 5575, 5580, 1, 0, 0, 0, 5576, 5577, 5, 868, 0, 0, 5577, 5579, 3, 490, 245, 0, 5578, 5576, 1, 0, 0, 0, 5579, 5582, 1, 0, 0, 0, 5580, 5578, 1, 0, 0, 0, 5580, 5581, 1, 0, 0, 0, 5581, 491, 1, 0, 0, 0, 5582, 5580, 1, 0, 0, 0, 5583, 5584, 5, 141, 0, 0, 5584, 5585, 5, 678, 0, 0, 5585, 5590, 3, 536, 268, 0, 5586, 5587, 5, 868, 0, 0, 5587, 5589, 3, 536, 268, 0, 5588, 5586, 1, 0, 0, 0, 5589, 5592, 1, 0, 0, 0, 5590, 5588, 1, 0, 0, 0, 5590, 5591, 1, 0, 0, 0, 5591, 493, 1, 0, 0, 0, 5592, 5590, 1, 0, 0, 0, 5593, 5595, 5, 149, 0, 0, 5594, 5596, 3, 774, 387, 0, 5595, 5594, 1, 0, 0, 0, 5595, 5596, 1, 0, 0, 0, 5596, 5597, 1, 0, 0, 0, 5597, 5602, 3, 530, 265, 0, 5598, 5599, 5, 868, 0, 0, 5599, 5601, 3, 530, 265, 0, 5600, 5598, 1, 0, 0, 0, 5601, 5604, 1, 0, 0, 0, 5602, 5600, 1, 0, 0, 0, 5602, 5603, 1, 0, 0, 0, 5603, 5605, 1, 0, 0, 0, 5604, 5602, 1, 0, 0, 0, 5605, 5607, 5, 119, 0, 0, 5606, 5608, 3, 498, 249, 0, 5607, 5606, 1, 0, 0, 0, 5607, 5608, 1, 0, 0, 0, 5608, 5609, 1, 0, 0, 0, 5609, 5610, 3, 534, 267, 0, 5610, 5611, 5, 68, 0, 0, 5611, 5613, 3, 664, 332, 0, 5612, 5614, 3, 496, 248, 0, 5613, 5612, 1, 0, 0, 0, 5613, 5614, 1, 0, 0, 0, 5614, 5646, 1, 0, 0, 0, 5615, 5617, 5, 149, 0, 0, 5616, 5618, 3, 774, 387, 0, 5617, 5616, 1, 0, 0, 0, 5617, 5618, 1, 0, 0, 0, 5618, 5619, 1, 0, 0, 0, 5619, 5621, 5, 7, 0, 0, 5620, 5622, 5, 734, 0, 0, 5621, 5620, 1, 0, 0, 0, 5621, 5622, 1, 0, 0, 0, 5622, 5623, 1, 0, 0, 0, 5623, 5624, 5, 868, 0, 0, 5624, 5625, 5, 73, 0, 0, 5625, 5626, 5, 121, 0, 0, 5626, 5627, 5, 68, 0, 0, 5627, 5629, 3, 664, 332, 0, 5628, 5630, 3, 496, 248, 0, 5629, 5628, 1, 0, 0, 0, 5629, 5630, 1, 0, 0, 0, 5630, 5646, 1, 0, 0, 0, 5631, 5633, 5, 149, 0, 0, 5632, 5634, 3, 774, 387, 0, 5633, 5632, 1, 0, 0, 0, 5633, 5634, 1, 0, 0, 0, 5634, 5637, 1, 0, 0, 0, 5635, 5636, 5, 547, 0, 0, 5636, 5638, 5, 119, 0, 0, 5637, 5635, 1, 0, 0, 0, 5637, 5638, 1, 0, 0, 0, 5638, 5639, 1, 0, 0, 0, 5639, 5640, 3, 664, 332, 0, 5640, 5641, 5, 68, 0, 0, 5641, 5643, 3, 664, 332, 0, 5642, 5644, 3, 496, 248, 0, 5643, 5642, 1, 0, 0, 0, 5643, 5644, 1, 0, 0, 0, 5644, 5646, 1, 0, 0, 0, 5645, 5593, 1, 0, 0, 0, 5645, 5615, 1, 0, 0, 0, 5645, 5631, 1, 0, 0, 0, 5646, 495, 1, 0, 0, 0, 5647, 5648, 5, 79, 0, 0, 5648, 5649, 5, 674, 0, 0, 5649, 5650, 5, 678, 0, 0, 5650, 497, 1, 0, 0, 0, 5651, 5652, 7, 82, 0, 0, 5652, 499, 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, 5659, 1, 0, 0, 0, 5659, 5662, 5, 857, 0, 0, 5660, 5663, 3, 814, 407, 0, 5661, 5663, 5, 882, 0, 0, 5662, 5660, 1, 0, 0, 0, 5662, 5661, 1, 0, 0, 0, 5663, 5686, 1, 0, 0, 0, 5664, 5665, 5, 155, 0, 0, 5665, 5668, 5, 529, 0, 0, 5666, 5667, 5, 65, 0, 0, 5667, 5669, 3, 700, 350, 0, 5668, 5666, 1, 0, 0, 0, 5668, 5669, 1, 0, 0, 0, 5669, 5674, 1, 0, 0, 0, 5670, 5671, 5, 176, 0, 0, 5671, 5675, 5, 829, 0, 0, 5672, 5673, 5, 857, 0, 0, 5673, 5675, 5, 882, 0, 0, 5674, 5670, 1, 0, 0, 0, 5674, 5672, 1, 0, 0, 0, 5675, 5678, 1, 0, 0, 0, 5676, 5677, 5, 143, 0, 0, 5677, 5679, 5, 882, 0, 0, 5678, 5676, 1, 0, 0, 0, 5678, 5679, 1, 0, 0, 0, 5679, 5683, 1, 0, 0, 0, 5680, 5681, 5, 147, 0, 0, 5681, 5682, 5, 36, 0, 0, 5682, 5684, 5, 529, 0, 0, 5683, 5680, 1, 0, 0, 0, 5683, 5684, 1, 0, 0, 0, 5684, 5686, 1, 0, 0, 0, 5685, 5653, 1, 0, 0, 0, 5685, 5664, 1, 0, 0, 0, 5686, 501, 1, 0, 0, 0, 5687, 5688, 3, 700, 350, 0, 5688, 5689, 3, 520, 260, 0, 5689, 503, 1, 0, 0, 0, 5690, 5716, 3, 700, 350, 0, 5691, 5692, 5, 423, 0, 0, 5692, 5693, 5, 20, 0, 0, 5693, 5694, 5, 882, 0, 0, 5694, 5717, 3, 512, 256, 0, 5695, 5696, 5, 423, 0, 0, 5696, 5697, 5, 20, 0, 0, 5697, 5698, 5, 829, 0, 0, 5698, 5699, 5, 529, 0, 0, 5699, 5717, 3, 512, 256, 0, 5700, 5701, 5, 423, 0, 0, 5701, 5702, 5, 194, 0, 0, 5702, 5717, 3, 514, 257, 0, 5703, 5704, 5, 369, 0, 0, 5704, 5705, 5, 511, 0, 0, 5705, 5717, 5, 529, 0, 0, 5706, 5707, 7, 83, 0, 0, 5707, 5709, 3, 528, 264, 0, 5708, 5710, 3, 524, 262, 0, 5709, 5708, 1, 0, 0, 0, 5709, 5710, 1, 0, 0, 0, 5710, 5712, 1, 0, 0, 0, 5711, 5706, 1, 0, 0, 0, 5712, 5713, 1, 0, 0, 0, 5713, 5711, 1, 0, 0, 0, 5713, 5714, 1, 0, 0, 0, 5714, 5717, 1, 0, 0, 0, 5715, 5717, 3, 526, 263, 0, 5716, 5691, 1, 0, 0, 0, 5716, 5695, 1, 0, 0, 0, 5716, 5700, 1, 0, 0, 0, 5716, 5703, 1, 0, 0, 0, 5716, 5711, 1, 0, 0, 0, 5716, 5715, 1, 0, 0, 0, 5716, 5717, 1, 0, 0, 0, 5717, 505, 1, 0, 0, 0, 5718, 5719, 5, 423, 0, 0, 5719, 5725, 5, 20, 0, 0, 5720, 5726, 5, 882, 0, 0, 5721, 5722, 5, 829, 0, 0, 5722, 5726, 5, 529, 0, 0, 5723, 5724, 5, 529, 0, 0, 5724, 5726, 5, 882, 0, 0, 5725, 5720, 1, 0, 0, 0, 5725, 5721, 1, 0, 0, 0, 5725, 5723, 1, 0, 0, 0, 5726, 5729, 1, 0, 0, 0, 5727, 5728, 5, 11, 0, 0, 5728, 5730, 3, 506, 253, 0, 5729, 5727, 1, 0, 0, 0, 5729, 5730, 1, 0, 0, 0, 5730, 5755, 1, 0, 0, 0, 5731, 5732, 5, 423, 0, 0, 5732, 5733, 5, 194, 0, 0, 5733, 5742, 3, 722, 361, 0, 5734, 5738, 5, 20, 0, 0, 5735, 5739, 5, 882, 0, 0, 5736, 5737, 5, 829, 0, 0, 5737, 5739, 5, 529, 0, 0, 5738, 5735, 1, 0, 0, 0, 5738, 5736, 1, 0, 0, 0, 5739, 5743, 1, 0, 0, 0, 5740, 5741, 5, 13, 0, 0, 5741, 5743, 5, 882, 0, 0, 5742, 5734, 1, 0, 0, 0, 5742, 5740, 1, 0, 0, 0, 5742, 5743, 1, 0, 0, 0, 5743, 5746, 1, 0, 0, 0, 5744, 5745, 5, 11, 0, 0, 5745, 5747, 3, 506, 253, 0, 5746, 5744, 1, 0, 0, 0, 5746, 5747, 1, 0, 0, 0, 5747, 5755, 1, 0, 0, 0, 5748, 5749, 5, 423, 0, 0, 5749, 5750, 5, 194, 0, 0, 5750, 5752, 3, 722, 361, 0, 5751, 5753, 3, 508, 254, 0, 5752, 5751, 1, 0, 0, 0, 5752, 5753, 1, 0, 0, 0, 5753, 5755, 1, 0, 0, 0, 5754, 5718, 1, 0, 0, 0, 5754, 5731, 1, 0, 0, 0, 5754, 5748, 1, 0, 0, 0, 5755, 507, 1, 0, 0, 0, 5756, 5757, 5, 427, 0, 0, 5757, 5758, 5, 708, 0, 0, 5758, 5759, 5, 423, 0, 0, 5759, 5763, 5, 20, 0, 0, 5760, 5761, 5, 829, 0, 0, 5761, 5764, 5, 529, 0, 0, 5762, 5764, 5, 882, 0, 0, 5763, 5760, 1, 0, 0, 0, 5763, 5762, 1, 0, 0, 0, 5764, 5774, 1, 0, 0, 0, 5765, 5766, 5, 427, 0, 0, 5766, 5767, 5, 708, 0, 0, 5767, 5768, 5, 423, 0, 0, 5768, 5769, 5, 194, 0, 0, 5769, 5770, 3, 722, 361, 0, 5770, 5771, 5, 13, 0, 0, 5771, 5772, 5, 882, 0, 0, 5772, 5774, 1, 0, 0, 0, 5773, 5756, 1, 0, 0, 0, 5773, 5765, 1, 0, 0, 0, 5774, 509, 1, 0, 0, 0, 5775, 5776, 3, 700, 350, 0, 5776, 5777, 5, 423, 0, 0, 5777, 5778, 5, 20, 0, 0, 5778, 5779, 5, 529, 0, 0, 5779, 5780, 5, 882, 0, 0, 5780, 5801, 1, 0, 0, 0, 5781, 5782, 3, 700, 350, 0, 5782, 5783, 5, 423, 0, 0, 5783, 5784, 5, 20, 0, 0, 5784, 5785, 5, 829, 0, 0, 5785, 5786, 5, 529, 0, 0, 5786, 5787, 3, 512, 256, 0, 5787, 5801, 1, 0, 0, 0, 5788, 5789, 3, 700, 350, 0, 5789, 5790, 5, 423, 0, 0, 5790, 5791, 5, 20, 0, 0, 5791, 5792, 5, 882, 0, 0, 5792, 5793, 3, 512, 256, 0, 5793, 5801, 1, 0, 0, 0, 5794, 5795, 3, 700, 350, 0, 5795, 5796, 5, 423, 0, 0, 5796, 5797, 5, 194, 0, 0, 5797, 5798, 3, 514, 257, 0, 5798, 5801, 1, 0, 0, 0, 5799, 5801, 3, 700, 350, 0, 5800, 5775, 1, 0, 0, 0, 5800, 5781, 1, 0, 0, 0, 5800, 5788, 1, 0, 0, 0, 5800, 5794, 1, 0, 0, 0, 5800, 5799, 1, 0, 0, 0, 5801, 511, 1, 0, 0, 0, 5802, 5803, 5, 143, 0, 0, 5803, 5805, 5, 882, 0, 0, 5804, 5802, 1, 0, 0, 0, 5804, 5805, 1, 0, 0, 0, 5805, 5809, 1, 0, 0, 0, 5806, 5807, 5, 147, 0, 0, 5807, 5808, 5, 36, 0, 0, 5808, 5810, 5, 529, 0, 0, 5809, 5806, 1, 0, 0, 0, 5809, 5810, 1, 0, 0, 0, 5810, 513, 1, 0, 0, 0, 5811, 5819, 3, 722, 361, 0, 5812, 5816, 7, 84, 0, 0, 5813, 5817, 5, 882, 0, 0, 5814, 5815, 5, 829, 0, 0, 5815, 5817, 5, 529, 0, 0, 5816, 5813, 1, 0, 0, 0, 5816, 5814, 1, 0, 0, 0, 5817, 5818, 1, 0, 0, 0, 5818, 5820, 3, 512, 256, 0, 5819, 5812, 1, 0, 0, 0, 5819, 5820, 1, 0, 0, 0, 5820, 5826, 1, 0, 0, 0, 5821, 5822, 3, 722, 361, 0, 5822, 5823, 5, 188, 0, 0, 5823, 5824, 3, 814, 407, 0, 5824, 5826, 1, 0, 0, 0, 5825, 5811, 1, 0, 0, 0, 5825, 5821, 1, 0, 0, 0, 5826, 515, 1, 0, 0, 0, 5827, 5836, 5, 169, 0, 0, 5828, 5836, 5, 693, 0, 0, 5829, 5830, 5, 331, 0, 0, 5830, 5836, 5, 882, 0, 0, 5831, 5832, 5, 441, 0, 0, 5832, 5836, 5, 882, 0, 0, 5833, 5834, 5, 651, 0, 0, 5834, 5836, 5, 882, 0, 0, 5835, 5827, 1, 0, 0, 0, 5835, 5828, 1, 0, 0, 0, 5835, 5829, 1, 0, 0, 0, 5835, 5831, 1, 0, 0, 0, 5835, 5833, 1, 0, 0, 0, 5836, 517, 1, 0, 0, 0, 5837, 5838, 5, 479, 0, 0, 5838, 5846, 3, 728, 364, 0, 5839, 5840, 5, 482, 0, 0, 5840, 5846, 3, 728, 364, 0, 5841, 5842, 5, 478, 0, 0, 5842, 5846, 3, 728, 364, 0, 5843, 5844, 5, 483, 0, 0, 5844, 5846, 3, 728, 364, 0, 5845, 5837, 1, 0, 0, 0, 5845, 5839, 1, 0, 0, 0, 5845, 5841, 1, 0, 0, 0, 5845, 5843, 1, 0, 0, 0, 5846, 519, 1, 0, 0, 0, 5847, 5848, 5, 529, 0, 0, 5848, 5855, 5, 390, 0, 0, 5849, 5856, 5, 42, 0, 0, 5850, 5856, 5, 500, 0, 0, 5851, 5852, 5, 87, 0, 0, 5852, 5853, 3, 728, 364, 0, 5853, 5854, 5, 698, 0, 0, 5854, 5856, 1, 0, 0, 0, 5855, 5849, 1, 0, 0, 0, 5855, 5850, 1, 0, 0, 0, 5855, 5851, 1, 0, 0, 0, 5855, 5856, 1, 0, 0, 0, 5856, 5886, 1, 0, 0, 0, 5857, 5858, 5, 529, 0, 0, 5858, 5861, 5, 420, 0, 0, 5859, 5862, 5, 42, 0, 0, 5860, 5862, 3, 728, 364, 0, 5861, 5859, 1, 0, 0, 0, 5861, 5860, 1, 0, 0, 0, 5862, 5886, 1, 0, 0, 0, 5863, 5864, 5, 529, 0, 0, 5864, 5865, 5, 581, 0, 0, 5865, 5870, 5, 87, 0, 0, 5866, 5871, 5, 42, 0, 0, 5867, 5868, 3, 728, 364, 0, 5868, 5869, 5, 698, 0, 0, 5869, 5871, 1, 0, 0, 0, 5870, 5866, 1, 0, 0, 0, 5870, 5867, 1, 0, 0, 0, 5871, 5886, 1, 0, 0, 0, 5872, 5873, 5, 529, 0, 0, 5873, 5874, 5, 144, 0, 0, 5874, 5876, 5, 36, 0, 0, 5875, 5877, 7, 85, 0, 0, 5876, 5875, 1, 0, 0, 0, 5876, 5877, 1, 0, 0, 0, 5877, 5886, 1, 0, 0, 0, 5878, 5879, 5, 395, 0, 0, 5879, 5886, 3, 728, 364, 0, 5880, 5883, 5, 530, 0, 0, 5881, 5884, 3, 728, 364, 0, 5882, 5884, 5, 669, 0, 0, 5883, 5881, 1, 0, 0, 0, 5883, 5882, 1, 0, 0, 0, 5884, 5886, 1, 0, 0, 0, 5885, 5847, 1, 0, 0, 0, 5885, 5857, 1, 0, 0, 0, 5885, 5863, 1, 0, 0, 0, 5885, 5872, 1, 0, 0, 0, 5885, 5878, 1, 0, 0, 0, 5885, 5880, 1, 0, 0, 0, 5886, 521, 1, 0, 0, 0, 5887, 5888, 5, 304, 0, 0, 5888, 5889, 7, 86, 0, 0, 5889, 523, 1, 0, 0, 0, 5890, 5893, 5, 423, 0, 0, 5891, 5892, 5, 194, 0, 0, 5892, 5894, 3, 722, 361, 0, 5893, 5891, 1, 0, 0, 0, 5893, 5894, 1, 0, 0, 0, 5894, 5903, 1, 0, 0, 0, 5895, 5899, 5, 20, 0, 0, 5896, 5900, 5, 882, 0, 0, 5897, 5898, 5, 829, 0, 0, 5898, 5900, 5, 529, 0, 0, 5899, 5896, 1, 0, 0, 0, 5899, 5897, 1, 0, 0, 0, 5900, 5904, 1, 0, 0, 0, 5901, 5902, 5, 13, 0, 0, 5902, 5904, 5, 882, 0, 0, 5903, 5895, 1, 0, 0, 0, 5903, 5901, 1, 0, 0, 0, 5904, 525, 1, 0, 0, 0, 5905, 5906, 3, 528, 264, 0, 5906, 5907, 5, 429, 0, 0, 5907, 5908, 5, 555, 0, 0, 5908, 5921, 1, 0, 0, 0, 5909, 5910, 3, 528, 264, 0, 5910, 5911, 5, 401, 0, 0, 5911, 5912, 5, 555, 0, 0, 5912, 5913, 5, 155, 0, 0, 5913, 5914, 5, 330, 0, 0, 5914, 5915, 5, 13, 0, 0, 5915, 5916, 5, 882, 0, 0, 5916, 5921, 1, 0, 0, 0, 5917, 5918, 3, 528, 264, 0, 5918, 5919, 5, 675, 0, 0, 5919, 5921, 1, 0, 0, 0, 5920, 5905, 1, 0, 0, 0, 5920, 5909, 1, 0, 0, 0, 5920, 5917, 1, 0, 0, 0, 5921, 527, 1, 0, 0, 0, 5922, 5923, 7, 87, 0, 0, 5923, 5924, 5, 394, 0, 0, 5924, 529, 1, 0, 0, 0, 5925, 5930, 3, 532, 266, 0, 5926, 5927, 5, 866, 0, 0, 5927, 5928, 3, 670, 335, 0, 5928, 5929, 5, 867, 0, 0, 5929, 5931, 1, 0, 0, 0, 5930, 5926, 1, 0, 0, 0, 5930, 5931, 1, 0, 0, 0, 5931, 531, 1, 0, 0, 0, 5932, 5934, 5, 7, 0, 0, 5933, 5935, 5, 734, 0, 0, 5934, 5933, 1, 0, 0, 0, 5934, 5935, 1, 0, 0, 0, 5935, 6026, 1, 0, 0, 0, 5936, 5938, 5, 8, 0, 0, 5937, 5939, 5, 743, 0, 0, 5938, 5937, 1, 0, 0, 0, 5938, 5939, 1, 0, 0, 0, 5939, 6026, 1, 0, 0, 0, 5940, 5948, 5, 34, 0, 0, 5941, 5942, 5, 660, 0, 0, 5942, 5949, 5, 752, 0, 0, 5943, 5949, 5, 743, 0, 0, 5944, 5949, 5, 684, 0, 0, 5945, 5949, 5, 678, 0, 0, 5946, 5949, 5, 658, 0, 0, 5947, 5949, 5, 582, 0, 0, 5948, 5941, 1, 0, 0, 0, 5948, 5943, 1, 0, 0, 0, 5948, 5944, 1, 0, 0, 0, 5948, 5945, 1, 0, 0, 0, 5948, 5946, 1, 0, 0, 0, 5948, 5947, 1, 0, 0, 0, 5948, 5949, 1, 0, 0, 0, 5949, 6026, 1, 0, 0, 0, 5950, 6026, 5, 44, 0, 0, 5951, 5953, 5, 51, 0, 0, 5952, 5954, 5, 582, 0, 0, 5953, 5952, 1, 0, 0, 0, 5953, 5954, 1, 0, 0, 0, 5954, 6026, 1, 0, 0, 0, 5955, 6026, 5, 385, 0, 0, 5956, 6026, 5, 717, 0, 0, 5957, 6026, 5, 718, 0, 0, 5958, 5959, 5, 73, 0, 0, 5959, 6026, 5, 121, 0, 0, 5960, 6026, 5, 82, 0, 0, 5961, 6026, 5, 86, 0, 0, 5962, 5963, 5, 104, 0, 0, 5963, 6026, 5, 752, 0, 0, 5964, 6026, 5, 735, 0, 0, 5965, 6026, 5, 547, 0, 0, 5966, 6026, 5, 138, 0, 0, 5967, 6026, 5, 736, 0, 0, 5968, 5969, 5, 572, 0, 0, 5969, 6026, 7, 88, 0, 0, 5970, 6026, 5, 154, 0, 0, 5971, 5972, 5, 157, 0, 0, 5972, 6026, 7, 89, 0, 0, 5973, 6026, 5, 749, 0, 0, 5974, 6026, 5, 750, 0, 0, 5975, 6026, 5, 178, 0, 0, 5976, 6026, 5, 185, 0, 0, 5977, 6026, 5, 186, 0, 0, 5978, 6026, 5, 705, 0, 0, 5979, 6026, 5, 706, 0, 0, 5980, 6026, 5, 707, 0, 0, 5981, 6026, 5, 709, 0, 0, 5982, 6026, 5, 710, 0, 0, 5983, 6026, 5, 711, 0, 0, 5984, 6026, 5, 712, 0, 0, 5985, 6026, 5, 714, 0, 0, 5986, 6026, 5, 715, 0, 0, 5987, 6026, 5, 716, 0, 0, 5988, 6026, 5, 719, 0, 0, 5989, 6026, 5, 720, 0, 0, 5990, 6026, 5, 721, 0, 0, 5991, 6026, 5, 722, 0, 0, 5992, 6026, 5, 723, 0, 0, 5993, 6026, 5, 724, 0, 0, 5994, 6026, 5, 725, 0, 0, 5995, 6026, 5, 726, 0, 0, 5996, 6026, 5, 727, 0, 0, 5997, 6026, 5, 728, 0, 0, 5998, 6026, 5, 731, 0, 0, 5999, 6026, 5, 732, 0, 0, 6000, 6026, 5, 733, 0, 0, 6001, 6026, 5, 737, 0, 0, 6002, 6026, 5, 738, 0, 0, 6003, 6026, 5, 740, 0, 0, 6004, 6026, 5, 741, 0, 0, 6005, 6026, 5, 742, 0, 0, 6006, 6026, 5, 745, 0, 0, 6007, 6026, 5, 746, 0, 0, 6008, 6026, 5, 747, 0, 0, 6009, 6026, 5, 160, 0, 0, 6010, 6026, 5, 748, 0, 0, 6011, 6026, 5, 836, 0, 0, 6012, 6026, 5, 751, 0, 0, 6013, 6026, 5, 753, 0, 0, 6014, 6026, 5, 838, 0, 0, 6015, 6026, 5, 754, 0, 0, 6016, 6026, 5, 755, 0, 0, 6017, 6018, 5, 103, 0, 0, 6018, 6019, 5, 68, 0, 0, 6019, 6026, 5, 744, 0, 0, 6020, 6021, 5, 154, 0, 0, 6021, 6022, 5, 88, 0, 0, 6022, 6026, 5, 744, 0, 0, 6023, 6024, 5, 729, 0, 0, 6024, 6026, 5, 730, 0, 0, 6025, 5932, 1, 0, 0, 0, 6025, 5936, 1, 0, 0, 0, 6025, 5940, 1, 0, 0, 0, 6025, 5950, 1, 0, 0, 0, 6025, 5951, 1, 0, 0, 0, 6025, 5955, 1, 0, 0, 0, 6025, 5956, 1, 0, 0, 0, 6025, 5957, 1, 0, 0, 0, 6025, 5958, 1, 0, 0, 0, 6025, 5960, 1, 0, 0, 0, 6025, 5961, 1, 0, 0, 0, 6025, 5962, 1, 0, 0, 0, 6025, 5964, 1, 0, 0, 0, 6025, 5965, 1, 0, 0, 0, 6025, 5966, 1, 0, 0, 0, 6025, 5967, 1, 0, 0, 0, 6025, 5968, 1, 0, 0, 0, 6025, 5970, 1, 0, 0, 0, 6025, 5971, 1, 0, 0, 0, 6025, 5973, 1, 0, 0, 0, 6025, 5974, 1, 0, 0, 0, 6025, 5975, 1, 0, 0, 0, 6025, 5976, 1, 0, 0, 0, 6025, 5977, 1, 0, 0, 0, 6025, 5978, 1, 0, 0, 0, 6025, 5979, 1, 0, 0, 0, 6025, 5980, 1, 0, 0, 0, 6025, 5981, 1, 0, 0, 0, 6025, 5982, 1, 0, 0, 0, 6025, 5983, 1, 0, 0, 0, 6025, 5984, 1, 0, 0, 0, 6025, 5985, 1, 0, 0, 0, 6025, 5986, 1, 0, 0, 0, 6025, 5987, 1, 0, 0, 0, 6025, 5988, 1, 0, 0, 0, 6025, 5989, 1, 0, 0, 0, 6025, 5990, 1, 0, 0, 0, 6025, 5991, 1, 0, 0, 0, 6025, 5992, 1, 0, 0, 0, 6025, 5993, 1, 0, 0, 0, 6025, 5994, 1, 0, 0, 0, 6025, 5995, 1, 0, 0, 0, 6025, 5996, 1, 0, 0, 0, 6025, 5997, 1, 0, 0, 0, 6025, 5998, 1, 0, 0, 0, 6025, 5999, 1, 0, 0, 0, 6025, 6000, 1, 0, 0, 0, 6025, 6001, 1, 0, 0, 0, 6025, 6002, 1, 0, 0, 0, 6025, 6003, 1, 0, 0, 0, 6025, 6004, 1, 0, 0, 0, 6025, 6005, 1, 0, 0, 0, 6025, 6006, 1, 0, 0, 0, 6025, 6007, 1, 0, 0, 0, 6025, 6008, 1, 0, 0, 0, 6025, 6009, 1, 0, 0, 0, 6025, 6010, 1, 0, 0, 0, 6025, 6011, 1, 0, 0, 0, 6025, 6012, 1, 0, 0, 0, 6025, 6013, 1, 0, 0, 0, 6025, 6014, 1, 0, 0, 0, 6025, 6015, 1, 0, 0, 0, 6025, 6016, 1, 0, 0, 0, 6025, 6017, 1, 0, 0, 0, 6025, 6020, 1, 0, 0, 0, 6025, 6023, 1, 0, 0, 0, 6026, 533, 1, 0, 0, 0, 6027, 6044, 5, 850, 0, 0, 6028, 6029, 5, 850, 0, 0, 6029, 6030, 5, 865, 0, 0, 6030, 6044, 5, 850, 0, 0, 6031, 6032, 3, 722, 361, 0, 6032, 6033, 5, 865, 0, 0, 6033, 6034, 5, 850, 0, 0, 6034, 6044, 1, 0, 0, 0, 6035, 6036, 3, 722, 361, 0, 6036, 6037, 5, 865, 0, 0, 6037, 6038, 3, 722, 361, 0, 6038, 6044, 1, 0, 0, 0, 6039, 6040, 3, 722, 361, 0, 6040, 6041, 3, 726, 363, 0, 6041, 6044, 1, 0, 0, 0, 6042, 6044, 3, 722, 361, 0, 6043, 6027, 1, 0, 0, 0, 6043, 6028, 1, 0, 0, 0, 6043, 6031, 1, 0, 0, 0, 6043, 6035, 1, 0, 0, 0, 6043, 6039, 1, 0, 0, 0, 6043, 6042, 1, 0, 0, 0, 6044, 535, 1, 0, 0, 0, 6045, 6046, 3, 700, 350, 0, 6046, 6047, 5, 176, 0, 0, 6047, 6048, 3, 700, 350, 0, 6048, 537, 1, 0, 0, 0, 6049, 6051, 5, 10, 0, 0, 6050, 6052, 3, 548, 274, 0, 6051, 6050, 1, 0, 0, 0, 6051, 6052, 1, 0, 0, 0, 6052, 6053, 1, 0, 0, 0, 6053, 6054, 5, 173, 0, 0, 6054, 6098, 3, 660, 330, 0, 6055, 6057, 5, 10, 0, 0, 6056, 6058, 3, 548, 274, 0, 6057, 6056, 1, 0, 0, 0, 6057, 6058, 1, 0, 0, 0, 6058, 6059, 1, 0, 0, 0, 6059, 6060, 5, 173, 0, 0, 6060, 6061, 3, 662, 331, 0, 6061, 6062, 5, 185, 0, 0, 6062, 6063, 5, 77, 0, 0, 6063, 6064, 5, 119, 0, 0, 6064, 6069, 3, 670, 335, 0, 6065, 6066, 5, 194, 0, 0, 6066, 6067, 3, 728, 364, 0, 6067, 6068, 5, 19, 0, 0, 6068, 6070, 1, 0, 0, 0, 6069, 6065, 1, 0, 0, 0, 6069, 6070, 1, 0, 0, 0, 6070, 6098, 1, 0, 0, 0, 6071, 6073, 5, 10, 0, 0, 6072, 6074, 3, 548, 274, 0, 6073, 6072, 1, 0, 0, 0, 6073, 6074, 1, 0, 0, 0, 6074, 6075, 1, 0, 0, 0, 6075, 6076, 5, 173, 0, 0, 6076, 6077, 3, 662, 331, 0, 6077, 6078, 5, 185, 0, 0, 6078, 6079, 5, 77, 0, 0, 6079, 6080, 5, 119, 0, 0, 6080, 6084, 3, 674, 337, 0, 6081, 6082, 5, 188, 0, 0, 6082, 6083, 5, 360, 0, 0, 6083, 6085, 5, 882, 0, 0, 6084, 6081, 1, 0, 0, 0, 6084, 6085, 1, 0, 0, 0, 6085, 6098, 1, 0, 0, 0, 6086, 6088, 5, 10, 0, 0, 6087, 6089, 3, 548, 274, 0, 6088, 6087, 1, 0, 0, 0, 6088, 6089, 1, 0, 0, 0, 6089, 6090, 1, 0, 0, 0, 6090, 6091, 5, 173, 0, 0, 6091, 6092, 3, 662, 331, 0, 6092, 6093, 5, 51, 0, 0, 6093, 6094, 5, 77, 0, 0, 6094, 6095, 5, 119, 0, 0, 6095, 6096, 3, 670, 335, 0, 6096, 6098, 1, 0, 0, 0, 6097, 6049, 1, 0, 0, 0, 6097, 6055, 1, 0, 0, 0, 6097, 6071, 1, 0, 0, 0, 6097, 6086, 1, 0, 0, 0, 6098, 539, 1, 0, 0, 0, 6099, 6100, 5, 27, 0, 0, 6100, 6101, 5, 173, 0, 0, 6101, 6105, 3, 660, 330, 0, 6102, 6104, 3, 550, 275, 0, 6103, 6102, 1, 0, 0, 0, 6104, 6107, 1, 0, 0, 0, 6105, 6103, 1, 0, 0, 0, 6105, 6106, 1, 0, 0, 0, 6106, 541, 1, 0, 0, 0, 6107, 6105, 1, 0, 0, 0, 6108, 6109, 5, 329, 0, 0, 6109, 6110, 5, 173, 0, 0, 6110, 6112, 3, 660, 330, 0, 6111, 6113, 7, 90, 0, 0, 6112, 6111, 1, 0, 0, 0, 6112, 6113, 1, 0, 0, 0, 6113, 543, 1, 0, 0, 0, 6114, 6116, 5, 120, 0, 0, 6115, 6117, 3, 548, 274, 0, 6116, 6115, 1, 0, 0, 0, 6116, 6117, 1, 0, 0, 0, 6117, 6118, 1, 0, 0, 0, 6118, 6119, 7, 61, 0, 0, 6119, 6120, 3, 660, 330, 0, 6120, 545, 1, 0, 0, 0, 6121, 6123, 5, 562, 0, 0, 6122, 6124, 3, 548, 274, 0, 6123, 6122, 1, 0, 0, 0, 6123, 6124, 1, 0, 0, 0, 6124, 6125, 1, 0, 0, 0, 6125, 6126, 5, 173, 0, 0, 6126, 6128, 3, 660, 330, 0, 6127, 6129, 5, 549, 0, 0, 6128, 6127, 1, 0, 0, 0, 6128, 6129, 1, 0, 0, 0, 6129, 6131, 1, 0, 0, 0, 6130, 6132, 5, 392, 0, 0, 6131, 6130, 1, 0, 0, 0, 6131, 6132, 1, 0, 0, 0, 6132, 6134, 1, 0, 0, 0, 6133, 6135, 5, 679, 0, 0, 6134, 6133, 1, 0, 0, 0, 6134, 6135, 1, 0, 0, 0, 6135, 547, 1, 0, 0, 0, 6136, 6137, 7, 91, 0, 0, 6137, 549, 1, 0, 0, 0, 6138, 6139, 5, 65, 0, 0, 6139, 6146, 5, 677, 0, 0, 6140, 6146, 5, 549, 0, 0, 6141, 6146, 5, 396, 0, 0, 6142, 6146, 5, 484, 0, 0, 6143, 6146, 5, 392, 0, 0, 6144, 6146, 5, 327, 0, 0, 6145, 6138, 1, 0, 0, 0, 6145, 6140, 1, 0, 0, 0, 6145, 6141, 1, 0, 0, 0, 6145, 6142, 1, 0, 0, 0, 6145, 6143, 1, 0, 0, 0, 6145, 6144, 1, 0, 0, 0, 6146, 551, 1, 0, 0, 0, 6147, 6148, 5, 432, 0, 0, 6148, 6149, 5, 344, 0, 0, 6149, 6154, 3, 722, 361, 0, 6150, 6151, 5, 868, 0, 0, 6151, 6153, 3, 722, 361, 0, 6152, 6150, 1, 0, 0, 0, 6153, 6156, 1, 0, 0, 0, 6154, 6152, 1, 0, 0, 0, 6154, 6155, 1, 0, 0, 0, 6155, 6166, 1, 0, 0, 0, 6156, 6154, 1, 0, 0, 0, 6157, 6158, 5, 155, 0, 0, 6158, 6163, 3, 554, 277, 0, 6159, 6160, 5, 868, 0, 0, 6160, 6162, 3, 554, 277, 0, 6161, 6159, 1, 0, 0, 0, 6162, 6165, 1, 0, 0, 0, 6163, 6161, 1, 0, 0, 0, 6163, 6164, 1, 0, 0, 0, 6164, 6167, 1, 0, 0, 0, 6165, 6163, 1, 0, 0, 0, 6166, 6157, 1, 0, 0, 0, 6166, 6167, 1, 0, 0, 0, 6167, 553, 1, 0, 0, 0, 6168, 6169, 7, 92, 0, 0, 6169, 6170, 3, 718, 359, 0, 6170, 6171, 5, 857, 0, 0, 6171, 6172, 3, 820, 410, 0, 6172, 555, 1, 0, 0, 0, 6173, 6174, 5, 673, 0, 0, 6174, 6175, 5, 344, 0, 0, 6175, 6180, 3, 722, 361, 0, 6176, 6177, 5, 868, 0, 0, 6177, 6179, 3, 722, 361, 0, 6178, 6176, 1, 0, 0, 0, 6179, 6182, 1, 0, 0, 0, 6180, 6178, 1, 0, 0, 0, 6180, 6181, 1, 0, 0, 0, 6181, 557, 1, 0, 0, 0, 6182, 6180, 1, 0, 0, 0, 6183, 6184, 5, 432, 0, 0, 6184, 6185, 5, 534, 0, 0, 6185, 6186, 3, 722, 361, 0, 6186, 6187, 5, 603, 0, 0, 6187, 6188, 5, 882, 0, 0, 6188, 559, 1, 0, 0, 0, 6189, 6190, 5, 673, 0, 0, 6190, 6191, 5, 534, 0, 0, 6191, 6192, 3, 722, 361, 0, 6192, 561, 1, 0, 0, 0, 6193, 6194, 5, 713, 0, 0, 6194, 6195, 5, 450, 0, 0, 6195, 6196, 5, 360, 0, 0, 6196, 6198, 5, 367, 0, 0, 6197, 6199, 5, 857, 0, 0, 6198, 6197, 1, 0, 0, 0, 6198, 6199, 1, 0, 0, 0, 6199, 6200, 1, 0, 0, 0, 6200, 6224, 5, 882, 0, 0, 6201, 6202, 5, 713, 0, 0, 6202, 6203, 5, 433, 0, 0, 6203, 6204, 5, 68, 0, 0, 6204, 6205, 3, 692, 346, 0, 6205, 6206, 5, 423, 0, 0, 6206, 6207, 5, 20, 0, 0, 6207, 6214, 5, 882, 0, 0, 6208, 6209, 5, 360, 0, 0, 6209, 6211, 5, 367, 0, 0, 6210, 6212, 5, 857, 0, 0, 6211, 6210, 1, 0, 0, 0, 6211, 6212, 1, 0, 0, 0, 6212, 6213, 1, 0, 0, 0, 6213, 6215, 5, 882, 0, 0, 6214, 6208, 1, 0, 0, 0, 6214, 6215, 1, 0, 0, 0, 6215, 6221, 1, 0, 0, 0, 6216, 6218, 5, 144, 0, 0, 6217, 6219, 5, 502, 0, 0, 6218, 6217, 1, 0, 0, 0, 6218, 6219, 1, 0, 0, 0, 6219, 6220, 1, 0, 0, 0, 6220, 6222, 5, 169, 0, 0, 6221, 6216, 1, 0, 0, 0, 6221, 6222, 1, 0, 0, 0, 6222, 6224, 1, 0, 0, 0, 6223, 6193, 1, 0, 0, 0, 6223, 6201, 1, 0, 0, 0, 6224, 563, 1, 0, 0, 0, 6225, 6226, 5, 155, 0, 0, 6226, 6227, 3, 568, 284, 0, 6227, 6230, 7, 93, 0, 0, 6228, 6231, 3, 820, 410, 0, 6229, 6231, 5, 119, 0, 0, 6230, 6228, 1, 0, 0, 0, 6230, 6229, 1, 0, 0, 0, 6231, 6241, 1, 0, 0, 0, 6232, 6233, 5, 868, 0, 0, 6233, 6234, 3, 568, 284, 0, 6234, 6237, 7, 93, 0, 0, 6235, 6238, 3, 820, 410, 0, 6236, 6238, 5, 119, 0, 0, 6237, 6235, 1, 0, 0, 0, 6237, 6236, 1, 0, 0, 0, 6238, 6240, 1, 0, 0, 0, 6239, 6232, 1, 0, 0, 0, 6240, 6243, 1, 0, 0, 0, 6241, 6239, 1, 0, 0, 0, 6241, 6242, 1, 0, 0, 0, 6242, 6278, 1, 0, 0, 0, 6243, 6241, 1, 0, 0, 0, 6244, 6245, 5, 155, 0, 0, 6245, 6248, 3, 58, 29, 0, 6246, 6249, 3, 704, 352, 0, 6247, 6249, 5, 42, 0, 0, 6248, 6246, 1, 0, 0, 0, 6248, 6247, 1, 0, 0, 0, 6249, 6278, 1, 0, 0, 0, 6250, 6251, 5, 155, 0, 0, 6251, 6258, 5, 497, 0, 0, 6252, 6255, 3, 704, 352, 0, 6253, 6254, 5, 28, 0, 0, 6254, 6256, 3, 706, 353, 0, 6255, 6253, 1, 0, 0, 0, 6255, 6256, 1, 0, 0, 0, 6256, 6259, 1, 0, 0, 0, 6257, 6259, 5, 42, 0, 0, 6258, 6252, 1, 0, 0, 0, 6258, 6257, 1, 0, 0, 0, 6259, 6278, 1, 0, 0, 0, 6260, 6278, 3, 500, 250, 0, 6261, 6278, 3, 352, 176, 0, 6262, 6278, 3, 350, 175, 0, 6263, 6264, 5, 155, 0, 0, 6264, 6265, 3, 718, 359, 0, 6265, 6266, 7, 93, 0, 0, 6266, 6274, 3, 820, 410, 0, 6267, 6268, 5, 868, 0, 0, 6268, 6269, 3, 718, 359, 0, 6269, 6270, 7, 93, 0, 0, 6270, 6271, 3, 820, 410, 0, 6271, 6273, 1, 0, 0, 0, 6272, 6267, 1, 0, 0, 0, 6273, 6276, 1, 0, 0, 0, 6274, 6272, 1, 0, 0, 0, 6274, 6275, 1, 0, 0, 0, 6275, 6278, 1, 0, 0, 0, 6276, 6274, 1, 0, 0, 0, 6277, 6225, 1, 0, 0, 0, 6277, 6244, 1, 0, 0, 0, 6277, 6250, 1, 0, 0, 0, 6277, 6260, 1, 0, 0, 0, 6277, 6261, 1, 0, 0, 0, 6277, 6262, 1, 0, 0, 0, 6277, 6263, 1, 0, 0, 0, 6278, 565, 1, 0, 0, 0, 6279, 6280, 5, 157, 0, 0, 6280, 6281, 7, 63, 0, 0, 6281, 6464, 5, 452, 0, 0, 6282, 6283, 5, 157, 0, 0, 6283, 6284, 7, 94, 0, 0, 6284, 6287, 5, 386, 0, 0, 6285, 6286, 5, 80, 0, 0, 6286, 6288, 5, 882, 0, 0, 6287, 6285, 1, 0, 0, 0, 6287, 6288, 1, 0, 0, 0, 6288, 6291, 1, 0, 0, 0, 6289, 6290, 5, 68, 0, 0, 6290, 6292, 3, 728, 364, 0, 6291, 6289, 1, 0, 0, 0, 6291, 6292, 1, 0, 0, 0, 6292, 6300, 1, 0, 0, 0, 6293, 6297, 5, 100, 0, 0, 6294, 6295, 3, 728, 364, 0, 6295, 6296, 5, 868, 0, 0, 6296, 6298, 1, 0, 0, 0, 6297, 6294, 1, 0, 0, 0, 6297, 6298, 1, 0, 0, 0, 6298, 6299, 1, 0, 0, 0, 6299, 6301, 3, 728, 364, 0, 6300, 6293, 1, 0, 0, 0, 6300, 6301, 1, 0, 0, 0, 6301, 6303, 1, 0, 0, 0, 6302, 6304, 3, 400, 200, 0, 6303, 6302, 1, 0, 0, 0, 6303, 6304, 1, 0, 0, 0, 6304, 6464, 1, 0, 0, 0, 6305, 6306, 5, 157, 0, 0, 6306, 6308, 3, 570, 285, 0, 6307, 6309, 3, 572, 286, 0, 6308, 6307, 1, 0, 0, 0, 6308, 6309, 1, 0, 0, 0, 6309, 6464, 1, 0, 0, 0, 6310, 6312, 5, 157, 0, 0, 6311, 6313, 5, 392, 0, 0, 6312, 6311, 1, 0, 0, 0, 6312, 6313, 1, 0, 0, 0, 6313, 6315, 1, 0, 0, 0, 6314, 6316, 5, 408, 0, 0, 6315, 6314, 1, 0, 0, 0, 6315, 6316, 1, 0, 0, 0, 6316, 6317, 1, 0, 0, 0, 6317, 6318, 7, 47, 0, 0, 6318, 6319, 7, 95, 0, 0, 6319, 6322, 3, 662, 331, 0, 6320, 6321, 7, 95, 0, 0, 6321, 6323, 3, 638, 319, 0, 6322, 6320, 1, 0, 0, 0, 6322, 6323, 1, 0, 0, 0, 6323, 6325, 1, 0, 0, 0, 6324, 6326, 3, 572, 286, 0, 6325, 6324, 1, 0, 0, 0, 6325, 6326, 1, 0, 0, 0, 6326, 6464, 1, 0, 0, 0, 6327, 6328, 5, 157, 0, 0, 6328, 6329, 5, 34, 0, 0, 6329, 6331, 7, 0, 0, 0, 6330, 6332, 3, 776, 388, 0, 6331, 6330, 1, 0, 0, 0, 6331, 6332, 1, 0, 0, 0, 6332, 6333, 1, 0, 0, 0, 6333, 6464, 3, 638, 319, 0, 6334, 6335, 5, 157, 0, 0, 6335, 6336, 5, 34, 0, 0, 6336, 6337, 7, 96, 0, 0, 6337, 6464, 3, 718, 359, 0, 6338, 6339, 5, 157, 0, 0, 6339, 6340, 5, 34, 0, 0, 6340, 6341, 5, 409, 0, 0, 6341, 6464, 3, 642, 321, 0, 6342, 6343, 5, 157, 0, 0, 6343, 6344, 5, 34, 0, 0, 6344, 6345, 5, 684, 0, 0, 6345, 6464, 3, 646, 323, 0, 6346, 6347, 5, 157, 0, 0, 6347, 6348, 5, 34, 0, 0, 6348, 6349, 5, 173, 0, 0, 6349, 6464, 3, 662, 331, 0, 6350, 6351, 5, 157, 0, 0, 6351, 6352, 5, 34, 0, 0, 6352, 6353, 5, 678, 0, 0, 6353, 6464, 3, 700, 350, 0, 6354, 6355, 5, 157, 0, 0, 6355, 6356, 5, 380, 0, 0, 6356, 6357, 3, 708, 354, 0, 6357, 6358, 7, 97, 0, 0, 6358, 6464, 1, 0, 0, 0, 6359, 6360, 5, 157, 0, 0, 6360, 6464, 3, 574, 287, 0, 6361, 6362, 5, 157, 0, 0, 6362, 6370, 7, 98, 0, 0, 6363, 6367, 5, 100, 0, 0, 6364, 6365, 3, 728, 364, 0, 6365, 6366, 5, 868, 0, 0, 6366, 6368, 1, 0, 0, 0, 6367, 6364, 1, 0, 0, 0, 6367, 6368, 1, 0, 0, 0, 6368, 6369, 1, 0, 0, 0, 6369, 6371, 3, 728, 364, 0, 6370, 6363, 1, 0, 0, 0, 6370, 6371, 1, 0, 0, 0, 6371, 6464, 1, 0, 0, 0, 6372, 6373, 5, 157, 0, 0, 6373, 6374, 5, 262, 0, 0, 6374, 6375, 5, 866, 0, 0, 6375, 6376, 5, 850, 0, 0, 6376, 6377, 5, 867, 0, 0, 6377, 6464, 7, 98, 0, 0, 6378, 6379, 5, 157, 0, 0, 6379, 6382, 3, 576, 288, 0, 6380, 6381, 7, 95, 0, 0, 6381, 6383, 3, 638, 319, 0, 6382, 6380, 1, 0, 0, 0, 6382, 6383, 1, 0, 0, 0, 6383, 6385, 1, 0, 0, 0, 6384, 6386, 3, 572, 286, 0, 6385, 6384, 1, 0, 0, 0, 6385, 6386, 1, 0, 0, 0, 6386, 6464, 1, 0, 0, 0, 6387, 6388, 5, 157, 0, 0, 6388, 6389, 5, 132, 0, 0, 6389, 6390, 5, 336, 0, 0, 6390, 6464, 3, 718, 359, 0, 6391, 6392, 5, 157, 0, 0, 6392, 6393, 5, 409, 0, 0, 6393, 6394, 5, 336, 0, 0, 6394, 6464, 3, 642, 321, 0, 6395, 6396, 5, 157, 0, 0, 6396, 6403, 5, 414, 0, 0, 6397, 6398, 5, 65, 0, 0, 6398, 6401, 3, 666, 333, 0, 6399, 6400, 5, 188, 0, 0, 6400, 6402, 3, 664, 332, 0, 6401, 6399, 1, 0, 0, 0, 6401, 6402, 1, 0, 0, 0, 6402, 6404, 1, 0, 0, 0, 6403, 6397, 1, 0, 0, 0, 6403, 6404, 1, 0, 0, 0, 6404, 6464, 1, 0, 0, 0, 6405, 6407, 5, 157, 0, 0, 6406, 6408, 5, 392, 0, 0, 6407, 6406, 1, 0, 0, 0, 6407, 6408, 1, 0, 0, 0, 6408, 6409, 1, 0, 0, 0, 6409, 6410, 7, 99, 0, 0, 6410, 6411, 7, 95, 0, 0, 6411, 6414, 3, 662, 331, 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, 6418, 1, 0, 0, 0, 6416, 6417, 5, 192, 0, 0, 6417, 6419, 3, 820, 410, 0, 6418, 6416, 1, 0, 0, 0, 6418, 6419, 1, 0, 0, 0, 6419, 6464, 1, 0, 0, 0, 6420, 6421, 5, 157, 0, 0, 6421, 6422, 5, 516, 0, 0, 6422, 6425, 5, 752, 0, 0, 6423, 6424, 7, 95, 0, 0, 6424, 6426, 3, 638, 319, 0, 6425, 6423, 1, 0, 0, 0, 6425, 6426, 1, 0, 0, 0, 6426, 6428, 1, 0, 0, 0, 6427, 6429, 3, 572, 286, 0, 6428, 6427, 1, 0, 0, 0, 6428, 6429, 1, 0, 0, 0, 6429, 6464, 1, 0, 0, 0, 6430, 6431, 5, 157, 0, 0, 6431, 6440, 5, 545, 0, 0, 6432, 6437, 3, 578, 289, 0, 6433, 6434, 5, 868, 0, 0, 6434, 6436, 3, 578, 289, 0, 6435, 6433, 1, 0, 0, 0, 6436, 6439, 1, 0, 0, 0, 6437, 6435, 1, 0, 0, 0, 6437, 6438, 1, 0, 0, 0, 6438, 6441, 1, 0, 0, 0, 6439, 6437, 1, 0, 0, 0, 6440, 6432, 1, 0, 0, 0, 6440, 6441, 1, 0, 0, 0, 6441, 6445, 1, 0, 0, 0, 6442, 6443, 5, 65, 0, 0, 6443, 6444, 5, 548, 0, 0, 6444, 6446, 3, 728, 364, 0, 6445, 6442, 1, 0, 0, 0, 6445, 6446, 1, 0, 0, 0, 6446, 6453, 1, 0, 0, 0, 6447, 6448, 5, 100, 0, 0, 6448, 6451, 3, 728, 364, 0, 6449, 6450, 5, 509, 0, 0, 6450, 6452, 3, 728, 364, 0, 6451, 6449, 1, 0, 0, 0, 6451, 6452, 1, 0, 0, 0, 6452, 6454, 1, 0, 0, 0, 6453, 6447, 1, 0, 0, 0, 6453, 6454, 1, 0, 0, 0, 6454, 6464, 1, 0, 0, 0, 6455, 6456, 5, 157, 0, 0, 6456, 6457, 7, 64, 0, 0, 6457, 6459, 5, 645, 0, 0, 6458, 6460, 3, 400, 200, 0, 6459, 6458, 1, 0, 0, 0, 6459, 6460, 1, 0, 0, 0, 6460, 6464, 1, 0, 0, 0, 6461, 6462, 5, 157, 0, 0, 6462, 6464, 5, 564, 0, 0, 6463, 6279, 1, 0, 0, 0, 6463, 6282, 1, 0, 0, 0, 6463, 6305, 1, 0, 0, 0, 6463, 6310, 1, 0, 0, 0, 6463, 6327, 1, 0, 0, 0, 6463, 6334, 1, 0, 0, 0, 6463, 6338, 1, 0, 0, 0, 6463, 6342, 1, 0, 0, 0, 6463, 6346, 1, 0, 0, 0, 6463, 6350, 1, 0, 0, 0, 6463, 6354, 1, 0, 0, 0, 6463, 6359, 1, 0, 0, 0, 6463, 6361, 1, 0, 0, 0, 6463, 6372, 1, 0, 0, 0, 6463, 6378, 1, 0, 0, 0, 6463, 6387, 1, 0, 0, 0, 6463, 6391, 1, 0, 0, 0, 6463, 6395, 1, 0, 0, 0, 6463, 6405, 1, 0, 0, 0, 6463, 6420, 1, 0, 0, 0, 6463, 6430, 1, 0, 0, 0, 6463, 6455, 1, 0, 0, 0, 6463, 6461, 1, 0, 0, 0, 6464, 567, 1, 0, 0, 0, 6465, 6476, 5, 892, 0, 0, 6466, 6476, 5, 893, 0, 0, 6467, 6468, 5, 870, 0, 0, 6468, 6470, 5, 870, 0, 0, 6469, 6467, 1, 0, 0, 0, 6469, 6470, 1, 0, 0, 0, 6470, 6471, 1, 0, 0, 0, 6471, 6473, 7, 100, 0, 0, 6472, 6469, 1, 0, 0, 0, 6472, 6473, 1, 0, 0, 0, 6473, 6474, 1, 0, 0, 0, 6474, 6476, 3, 722, 361, 0, 6475, 6465, 1, 0, 0, 0, 6475, 6466, 1, 0, 0, 0, 6475, 6472, 1, 0, 0, 0, 6476, 569, 1, 0, 0, 0, 6477, 6478, 5, 26, 0, 0, 6478, 6492, 5, 155, 0, 0, 6479, 6492, 5, 823, 0, 0, 6480, 6492, 5, 824, 0, 0, 6481, 6492, 5, 40, 0, 0, 6482, 6492, 5, 153, 0, 0, 6483, 6484, 5, 409, 0, 0, 6484, 6492, 5, 645, 0, 0, 6485, 6486, 5, 132, 0, 0, 6486, 6492, 5, 645, 0, 0, 6487, 6489, 7, 62, 0, 0, 6488, 6487, 1, 0, 0, 0, 6488, 6489, 1, 0, 0, 0, 6489, 6490, 1, 0, 0, 0, 6490, 6492, 7, 101, 0, 0, 6491, 6477, 1, 0, 0, 0, 6491, 6479, 1, 0, 0, 0, 6491, 6480, 1, 0, 0, 0, 6491, 6481, 1, 0, 0, 0, 6491, 6482, 1, 0, 0, 0, 6491, 6483, 1, 0, 0, 0, 6491, 6485, 1, 0, 0, 0, 6491, 6488, 1, 0, 0, 0, 6492, 571, 1, 0, 0, 0, 6493, 6494, 5, 99, 0, 0, 6494, 6498, 5, 882, 0, 0, 6495, 6496, 5, 192, 0, 0, 6496, 6498, 3, 820, 410, 0, 6497, 6493, 1, 0, 0, 0, 6497, 6495, 1, 0, 0, 0, 6498, 573, 1, 0, 0, 0, 6499, 6501, 5, 647, 0, 0, 6500, 6499, 1, 0, 0, 0, 6500, 6501, 1, 0, 0, 0, 6501, 6502, 1, 0, 0, 0, 6502, 6517, 5, 381, 0, 0, 6503, 6504, 5, 453, 0, 0, 6504, 6517, 5, 645, 0, 0, 6505, 6517, 5, 536, 0, 0, 6506, 6517, 5, 734, 0, 0, 6507, 6509, 5, 408, 0, 0, 6508, 6507, 1, 0, 0, 0, 6508, 6509, 1, 0, 0, 0, 6509, 6510, 1, 0, 0, 0, 6510, 6517, 5, 544, 0, 0, 6511, 6517, 5, 546, 0, 0, 6512, 6513, 5, 598, 0, 0, 6513, 6517, 5, 422, 0, 0, 6514, 6517, 5, 312, 0, 0, 6515, 6517, 5, 356, 0, 0, 6516, 6500, 1, 0, 0, 0, 6516, 6503, 1, 0, 0, 0, 6516, 6505, 1, 0, 0, 0, 6516, 6506, 1, 0, 0, 0, 6516, 6508, 1, 0, 0, 0, 6516, 6511, 1, 0, 0, 0, 6516, 6512, 1, 0, 0, 0, 6516, 6514, 1, 0, 0, 0, 6516, 6515, 1, 0, 0, 0, 6517, 575, 1, 0, 0, 0, 6518, 6530, 5, 386, 0, 0, 6519, 6520, 5, 173, 0, 0, 6520, 6530, 5, 645, 0, 0, 6521, 6523, 5, 392, 0, 0, 6522, 6521, 1, 0, 0, 0, 6522, 6523, 1, 0, 0, 0, 6523, 6525, 1, 0, 0, 0, 6524, 6526, 5, 408, 0, 0, 6525, 6524, 1, 0, 0, 0, 6525, 6526, 1, 0, 0, 0, 6526, 6527, 1, 0, 0, 0, 6527, 6530, 5, 752, 0, 0, 6528, 6530, 5, 667, 0, 0, 6529, 6518, 1, 0, 0, 0, 6529, 6519, 1, 0, 0, 0, 6529, 6522, 1, 0, 0, 0, 6529, 6528, 1, 0, 0, 0, 6530, 577, 1, 0, 0, 0, 6531, 6544, 5, 7, 0, 0, 6532, 6533, 5, 320, 0, 0, 6533, 6544, 5, 437, 0, 0, 6534, 6535, 5, 355, 0, 0, 6535, 6544, 5, 656, 0, 0, 6536, 6544, 5, 358, 0, 0, 6537, 6544, 5, 439, 0, 0, 6538, 6544, 5, 802, 0, 0, 6539, 6540, 5, 521, 0, 0, 6540, 6544, 5, 397, 0, 0, 6541, 6544, 5, 605, 0, 0, 6542, 6544, 5, 655, 0, 0, 6543, 6531, 1, 0, 0, 0, 6543, 6532, 1, 0, 0, 0, 6543, 6534, 1, 0, 0, 0, 6543, 6536, 1, 0, 0, 0, 6543, 6537, 1, 0, 0, 0, 6543, 6538, 1, 0, 0, 0, 6543, 6539, 1, 0, 0, 0, 6543, 6541, 1, 0, 0, 0, 6543, 6542, 1, 0, 0, 0, 6544, 579, 1, 0, 0, 0, 6545, 6546, 5, 318, 0, 0, 6546, 6547, 5, 882, 0, 0, 6547, 581, 1, 0, 0, 0, 6548, 6549, 5, 324, 0, 0, 6549, 6567, 5, 82, 0, 0, 6550, 6555, 3, 602, 301, 0, 6551, 6552, 5, 868, 0, 0, 6552, 6554, 3, 602, 301, 0, 6553, 6551, 1, 0, 0, 0, 6554, 6557, 1, 0, 0, 0, 6555, 6553, 1, 0, 0, 0, 6555, 6556, 1, 0, 0, 0, 6556, 6568, 1, 0, 0, 0, 6557, 6555, 1, 0, 0, 0, 6558, 6559, 3, 662, 331, 0, 6559, 6560, 5, 130, 0, 0, 6560, 6563, 5, 866, 0, 0, 6561, 6564, 3, 686, 343, 0, 6562, 6564, 5, 7, 0, 0, 6563, 6561, 1, 0, 0, 0, 6563, 6562, 1, 0, 0, 0, 6564, 6565, 1, 0, 0, 0, 6565, 6566, 5, 867, 0, 0, 6566, 6568, 1, 0, 0, 0, 6567, 6550, 1, 0, 0, 0, 6567, 6558, 1, 0, 0, 0, 6568, 6569, 1, 0, 0, 0, 6569, 6570, 5, 80, 0, 0, 6570, 6571, 3, 638, 319, 0, 6571, 583, 1, 0, 0, 0, 6572, 6574, 5, 404, 0, 0, 6573, 6575, 3, 548, 274, 0, 6574, 6573, 1, 0, 0, 0, 6574, 6575, 1, 0, 0, 0, 6575, 6576, 1, 0, 0, 0, 6576, 6581, 3, 604, 302, 0, 6577, 6578, 5, 868, 0, 0, 6578, 6580, 3, 604, 302, 0, 6579, 6577, 1, 0, 0, 0, 6580, 6583, 1, 0, 0, 0, 6581, 6579, 1, 0, 0, 0, 6581, 6582, 1, 0, 0, 0, 6582, 585, 1, 0, 0, 0, 6583, 6581, 1, 0, 0, 0, 6584, 6586, 5, 94, 0, 0, 6585, 6587, 7, 102, 0, 0, 6586, 6585, 1, 0, 0, 0, 6586, 6587, 1, 0, 0, 0, 6587, 6588, 1, 0, 0, 0, 6588, 6589, 3, 820, 410, 0, 6589, 587, 1, 0, 0, 0, 6590, 6591, 5, 103, 0, 0, 6591, 6592, 5, 82, 0, 0, 6592, 6593, 5, 88, 0, 0, 6593, 6594, 5, 324, 0, 0, 6594, 6599, 3, 608, 304, 0, 6595, 6596, 5, 868, 0, 0, 6596, 6598, 3, 608, 304, 0, 6597, 6595, 1, 0, 0, 0, 6598, 6601, 1, 0, 0, 0, 6599, 6597, 1, 0, 0, 0, 6599, 6600, 1, 0, 0, 0, 6600, 589, 1, 0, 0, 0, 6601, 6599, 1, 0, 0, 0, 6602, 6603, 5, 575, 0, 0, 6603, 6608, 3, 592, 296, 0, 6604, 6605, 5, 868, 0, 0, 6605, 6607, 3, 592, 296, 0, 6606, 6604, 1, 0, 0, 0, 6607, 6610, 1, 0, 0, 0, 6608, 6606, 1, 0, 0, 0, 6608, 6609, 1, 0, 0, 0, 6609, 591, 1, 0, 0, 0, 6610, 6608, 1, 0, 0, 0, 6611, 6617, 5, 453, 0, 0, 6612, 6617, 5, 563, 0, 0, 6613, 6614, 5, 548, 0, 0, 6614, 6617, 5, 324, 0, 0, 6615, 6617, 5, 598, 0, 0, 6616, 6611, 1, 0, 0, 0, 6616, 6612, 1, 0, 0, 0, 6616, 6613, 1, 0, 0, 0, 6616, 6615, 1, 0, 0, 0, 6617, 593, 1, 0, 0, 0, 6618, 6619, 5, 575, 0, 0, 6619, 6624, 5, 531, 0, 0, 6620, 6622, 3, 774, 387, 0, 6621, 6620, 1, 0, 0, 0, 6621, 6622, 1, 0, 0, 0, 6622, 6623, 1, 0, 0, 0, 6623, 6625, 3, 722, 361, 0, 6624, 6621, 1, 0, 0, 0, 6624, 6625, 1, 0, 0, 0, 6625, 595, 1, 0, 0, 0, 6626, 6627, 5, 575, 0, 0, 6627, 6629, 7, 64, 0, 0, 6628, 6630, 5, 7, 0, 0, 6629, 6628, 1, 0, 0, 0, 6629, 6630, 1, 0, 0, 0, 6630, 6632, 1, 0, 0, 0, 6631, 6633, 3, 400, 200, 0, 6632, 6631, 1, 0, 0, 0, 6632, 6633, 1, 0, 0, 0, 6633, 597, 1, 0, 0, 0, 6634, 6635, 5, 576, 0, 0, 6635, 599, 1, 0, 0, 0, 6636, 6637, 5, 749, 0, 0, 6637, 601, 1, 0, 0, 0, 6638, 6644, 3, 662, 331, 0, 6639, 6640, 7, 19, 0, 0, 6640, 6641, 5, 866, 0, 0, 6641, 6642, 3, 650, 325, 0, 6642, 6643, 5, 867, 0, 0, 6643, 6645, 1, 0, 0, 0, 6644, 6639, 1, 0, 0, 0, 6644, 6645, 1, 0, 0, 0, 6645, 603, 1, 0, 0, 0, 6646, 6665, 5, 366, 0, 0, 6647, 6665, 5, 422, 0, 0, 6648, 6650, 7, 103, 0, 0, 6649, 6648, 1, 0, 0, 0, 6649, 6650, 1, 0, 0, 0, 6650, 6651, 1, 0, 0, 0, 6651, 6665, 5, 452, 0, 0, 6652, 6665, 5, 517, 0, 0, 6653, 6665, 5, 734, 0, 0, 6654, 6655, 5, 548, 0, 0, 6655, 6665, 5, 324, 0, 0, 6656, 6665, 5, 645, 0, 0, 6657, 6665, 5, 680, 0, 0, 6658, 6662, 5, 752, 0, 0, 6659, 6660, 5, 194, 0, 0, 6660, 6661, 5, 135, 0, 0, 6661, 6663, 5, 104, 0, 0, 6662, 6659, 1, 0, 0, 0, 6662, 6663, 1, 0, 0, 0, 6663, 6665, 1, 0, 0, 0, 6664, 6646, 1, 0, 0, 0, 6664, 6647, 1, 0, 0, 0, 6664, 6649, 1, 0, 0, 0, 6664, 6652, 1, 0, 0, 0, 6664, 6653, 1, 0, 0, 0, 6664, 6654, 1, 0, 0, 0, 6664, 6656, 1, 0, 0, 0, 6664, 6657, 1, 0, 0, 0, 6664, 6658, 1, 0, 0, 0, 6665, 6679, 1, 0, 0, 0, 6666, 6667, 5, 556, 0, 0, 6667, 6669, 5, 452, 0, 0, 6668, 6670, 3, 400, 200, 0, 6669, 6668, 1, 0, 0, 0, 6669, 6670, 1, 0, 0, 0, 6670, 6679, 1, 0, 0, 0, 6671, 6673, 7, 61, 0, 0, 6672, 6674, 3, 660, 330, 0, 6673, 6672, 1, 0, 0, 0, 6673, 6674, 1, 0, 0, 0, 6674, 6676, 1, 0, 0, 0, 6675, 6677, 3, 606, 303, 0, 6676, 6675, 1, 0, 0, 0, 6676, 6677, 1, 0, 0, 0, 6677, 6679, 1, 0, 0, 0, 6678, 6664, 1, 0, 0, 0, 6678, 6666, 1, 0, 0, 0, 6678, 6671, 1, 0, 0, 0, 6679, 605, 1, 0, 0, 0, 6680, 6681, 5, 194, 0, 0, 6681, 6682, 5, 135, 0, 0, 6682, 6686, 5, 104, 0, 0, 6683, 6684, 5, 65, 0, 0, 6684, 6686, 5, 391, 0, 0, 6685, 6680, 1, 0, 0, 0, 6685, 6683, 1, 0, 0, 0, 6686, 607, 1, 0, 0, 0, 6687, 6695, 3, 662, 331, 0, 6688, 6689, 5, 130, 0, 0, 6689, 6692, 5, 866, 0, 0, 6690, 6693, 3, 686, 343, 0, 6691, 6693, 5, 7, 0, 0, 6692, 6690, 1, 0, 0, 0, 6692, 6691, 1, 0, 0, 0, 6693, 6694, 1, 0, 0, 0, 6694, 6696, 5, 867, 0, 0, 6695, 6688, 1, 0, 0, 0, 6695, 6696, 1, 0, 0, 0, 6696, 6704, 1, 0, 0, 0, 6697, 6699, 7, 19, 0, 0, 6698, 6697, 1, 0, 0, 0, 6698, 6699, 1, 0, 0, 0, 6699, 6700, 1, 0, 0, 0, 6700, 6701, 5, 866, 0, 0, 6701, 6702, 3, 650, 325, 0, 6702, 6703, 5, 867, 0, 0, 6703, 6705, 1, 0, 0, 0, 6704, 6698, 1, 0, 0, 0, 6704, 6705, 1, 0, 0, 0, 6705, 6708, 1, 0, 0, 0, 6706, 6707, 5, 79, 0, 0, 6707, 6709, 5, 446, 0, 0, 6708, 6706, 1, 0, 0, 0, 6708, 6709, 1, 0, 0, 0, 6709, 609, 1, 0, 0, 0, 6710, 6711, 7, 104, 0, 0, 6711, 6714, 3, 662, 331, 0, 6712, 6715, 3, 674, 337, 0, 6713, 6715, 5, 882, 0, 0, 6714, 6712, 1, 0, 0, 0, 6714, 6713, 1, 0, 0, 0, 6714, 6715, 1, 0, 0, 0, 6715, 611, 1, 0, 0, 0, 6716, 6722, 7, 104, 0, 0, 6717, 6723, 5, 392, 0, 0, 6718, 6723, 5, 528, 0, 0, 6719, 6720, 5, 826, 0, 0, 6720, 6721, 5, 857, 0, 0, 6721, 6723, 7, 105, 0, 0, 6722, 6717, 1, 0, 0, 0, 6722, 6718, 1, 0, 0, 0, 6722, 6719, 1, 0, 0, 0, 6722, 6723, 1, 0, 0, 0, 6723, 6724, 1, 0, 0, 0, 6724, 6725, 3, 634, 317, 0, 6725, 613, 1, 0, 0, 0, 6726, 6727, 7, 104, 0, 0, 6727, 6731, 5, 10, 0, 0, 6728, 6729, 5, 826, 0, 0, 6729, 6730, 5, 857, 0, 0, 6730, 6732, 5, 666, 0, 0, 6731, 6728, 1, 0, 0, 0, 6731, 6732, 1, 0, 0, 0, 6732, 6733, 1, 0, 0, 0, 6733, 6734, 3, 210, 105, 0, 6734, 615, 1, 0, 0, 0, 6735, 6736, 5, 419, 0, 0, 6736, 6737, 5, 882, 0, 0, 6737, 617, 1, 0, 0, 0, 6738, 6739, 5, 187, 0, 0, 6739, 6740, 3, 638, 319, 0, 6740, 619, 1, 0, 0, 0, 6741, 6749, 5, 158, 0, 0, 6742, 6744, 5, 164, 0, 0, 6743, 6745, 5, 682, 0, 0, 6744, 6743, 1, 0, 0, 0, 6744, 6745, 1, 0, 0, 0, 6745, 6746, 1, 0, 0, 0, 6746, 6750, 3, 732, 366, 0, 6747, 6750, 5, 889, 0, 0, 6748, 6750, 5, 890, 0, 0, 6749, 6742, 1, 0, 0, 0, 6749, 6747, 1, 0, 0, 0, 6749, 6748, 1, 0, 0, 0, 6750, 6760, 1, 0, 0, 0, 6751, 6752, 5, 155, 0, 0, 6752, 6757, 3, 624, 312, 0, 6753, 6754, 5, 868, 0, 0, 6754, 6756, 3, 624, 312, 0, 6755, 6753, 1, 0, 0, 0, 6756, 6759, 1, 0, 0, 0, 6757, 6755, 1, 0, 0, 0, 6757, 6758, 1, 0, 0, 0, 6758, 6761, 1, 0, 0, 0, 6759, 6757, 1, 0, 0, 0, 6760, 6751, 1, 0, 0, 0, 6760, 6761, 1, 0, 0, 0, 6761, 621, 1, 0, 0, 0, 6762, 6770, 5, 145, 0, 0, 6763, 6765, 5, 164, 0, 0, 6764, 6766, 5, 682, 0, 0, 6765, 6764, 1, 0, 0, 0, 6765, 6766, 1, 0, 0, 0, 6766, 6767, 1, 0, 0, 0, 6767, 6771, 3, 732, 366, 0, 6768, 6771, 5, 889, 0, 0, 6769, 6771, 5, 890, 0, 0, 6770, 6763, 1, 0, 0, 0, 6770, 6768, 1, 0, 0, 0, 6770, 6769, 1, 0, 0, 0, 6770, 6771, 1, 0, 0, 0, 6771, 6781, 1, 0, 0, 0, 6772, 6773, 5, 155, 0, 0, 6773, 6778, 3, 624, 312, 0, 6774, 6775, 5, 868, 0, 0, 6775, 6777, 3, 624, 312, 0, 6776, 6774, 1, 0, 0, 0, 6777, 6780, 1, 0, 0, 0, 6778, 6776, 1, 0, 0, 0, 6778, 6779, 1, 0, 0, 0, 6779, 6782, 1, 0, 0, 0, 6780, 6778, 1, 0, 0, 0, 6781, 6772, 1, 0, 0, 0, 6781, 6782, 1, 0, 0, 0, 6782, 623, 1, 0, 0, 0, 6783, 6784, 7, 106, 0, 0, 6784, 6789, 5, 857, 0, 0, 6785, 6790, 3, 732, 366, 0, 6786, 6790, 5, 883, 0, 0, 6787, 6790, 3, 702, 351, 0, 6788, 6790, 3, 724, 362, 0, 6789, 6785, 1, 0, 0, 0, 6789, 6786, 1, 0, 0, 0, 6789, 6787, 1, 0, 0, 0, 6789, 6788, 1, 0, 0, 0, 6790, 625, 1, 0, 0, 0, 6791, 6793, 5, 194, 0, 0, 6792, 6794, 5, 552, 0, 0, 6793, 6792, 1, 0, 0, 0, 6793, 6794, 1, 0, 0, 0, 6794, 6795, 1, 0, 0, 0, 6795, 6800, 3, 52, 26, 0, 6796, 6797, 5, 868, 0, 0, 6797, 6799, 3, 52, 26, 0, 6798, 6796, 1, 0, 0, 0, 6799, 6802, 1, 0, 0, 0, 6800, 6798, 1, 0, 0, 0, 6800, 6801, 1, 0, 0, 0, 6801, 627, 1, 0, 0, 0, 6802, 6800, 1, 0, 0, 0, 6803, 6804, 5, 173, 0, 0, 6804, 6806, 3, 662, 331, 0, 6805, 6807, 3, 258, 129, 0, 6806, 6805, 1, 0, 0, 0, 6806, 6807, 1, 0, 0, 0, 6807, 6809, 1, 0, 0, 0, 6808, 6810, 3, 328, 164, 0, 6809, 6808, 1, 0, 0, 0, 6809, 6810, 1, 0, 0, 0, 6810, 629, 1, 0, 0, 0, 6811, 6813, 5, 72, 0, 0, 6812, 6814, 7, 107, 0, 0, 6813, 6812, 1, 0, 0, 0, 6813, 6814, 1, 0, 0, 0, 6814, 6815, 1, 0, 0, 0, 6815, 6847, 5, 48, 0, 0, 6816, 6817, 3, 568, 284, 0, 6817, 6818, 5, 857, 0, 0, 6818, 6826, 7, 108, 0, 0, 6819, 6820, 5, 868, 0, 0, 6820, 6821, 3, 568, 284, 0, 6821, 6822, 5, 857, 0, 0, 6822, 6823, 7, 108, 0, 0, 6823, 6825, 1, 0, 0, 0, 6824, 6819, 1, 0, 0, 0, 6825, 6828, 1, 0, 0, 0, 6826, 6824, 1, 0, 0, 0, 6826, 6827, 1, 0, 0, 0, 6827, 6848, 1, 0, 0, 0, 6828, 6826, 1, 0, 0, 0, 6829, 6832, 5, 30, 0, 0, 6830, 6833, 3, 728, 364, 0, 6831, 6833, 3, 568, 284, 0, 6832, 6830, 1, 0, 0, 0, 6832, 6831, 1, 0, 0, 0, 6833, 6834, 1, 0, 0, 0, 6834, 6835, 3, 568, 284, 0, 6835, 6836, 5, 857, 0, 0, 6836, 6844, 3, 632, 316, 0, 6837, 6838, 5, 868, 0, 0, 6838, 6839, 3, 568, 284, 0, 6839, 6840, 5, 857, 0, 0, 6840, 6841, 3, 632, 316, 0, 6841, 6843, 1, 0, 0, 0, 6842, 6837, 1, 0, 0, 0, 6843, 6846, 1, 0, 0, 0, 6844, 6842, 1, 0, 0, 0, 6844, 6845, 1, 0, 0, 0, 6845, 6848, 1, 0, 0, 0, 6846, 6844, 1, 0, 0, 0, 6847, 6816, 1, 0, 0, 0, 6847, 6829, 1, 0, 0, 0, 6848, 631, 1, 0, 0, 0, 6849, 6850, 7, 109, 0, 0, 6850, 633, 1, 0, 0, 0, 6851, 6857, 3, 210, 105, 0, 6852, 6857, 3, 186, 93, 0, 6853, 6857, 3, 192, 96, 0, 6854, 6857, 3, 208, 104, 0, 6855, 6857, 3, 220, 110, 0, 6856, 6851, 1, 0, 0, 0, 6856, 6852, 1, 0, 0, 0, 6856, 6853, 1, 0, 0, 0, 6856, 6854, 1, 0, 0, 0, 6856, 6855, 1, 0, 0, 0, 6857, 6862, 1, 0, 0, 0, 6858, 6859, 5, 65, 0, 0, 6859, 6860, 5, 349, 0, 0, 6860, 6862, 3, 722, 361, 0, 6861, 6856, 1, 0, 0, 0, 6861, 6858, 1, 0, 0, 0, 6862, 635, 1, 0, 0, 0, 6863, 6864, 3, 718, 359, 0, 6864, 637, 1, 0, 0, 0, 6865, 6866, 3, 718, 359, 0, 6866, 639, 1, 0, 0, 0, 6867, 6868, 3, 718, 359, 0, 6868, 641, 1, 0, 0, 0, 6869, 6870, 3, 718, 359, 0, 6870, 643, 1, 0, 0, 0, 6871, 6872, 3, 718, 359, 0, 6872, 645, 1, 0, 0, 0, 6873, 6874, 3, 718, 359, 0, 6874, 647, 1, 0, 0, 0, 6875, 6876, 3, 722, 361, 0, 6876, 649, 1, 0, 0, 0, 6877, 6882, 3, 652, 326, 0, 6878, 6879, 5, 868, 0, 0, 6879, 6881, 3, 652, 326, 0, 6880, 6878, 1, 0, 0, 0, 6881, 6884, 1, 0, 0, 0, 6882, 6880, 1, 0, 0, 0, 6882, 6883, 1, 0, 0, 0, 6883, 651, 1, 0, 0, 0, 6884, 6882, 1, 0, 0, 0, 6885, 6886, 3, 722, 361, 0, 6886, 653, 1, 0, 0, 0, 6887, 6888, 3, 722, 361, 0, 6888, 655, 1, 0, 0, 0, 6889, 6890, 3, 722, 361, 0, 6890, 657, 1, 0, 0, 0, 6891, 6892, 3, 718, 359, 0, 6892, 659, 1, 0, 0, 0, 6893, 6898, 3, 662, 331, 0, 6894, 6895, 5, 868, 0, 0, 6895, 6897, 3, 662, 331, 0, 6896, 6894, 1, 0, 0, 0, 6897, 6900, 1, 0, 0, 0, 6898, 6896, 1, 0, 0, 0, 6898, 6899, 1, 0, 0, 0, 6899, 661, 1, 0, 0, 0, 6900, 6898, 1, 0, 0, 0, 6901, 6902, 3, 718, 359, 0, 6902, 663, 1, 0, 0, 0, 6903, 6908, 3, 666, 333, 0, 6904, 6905, 5, 868, 0, 0, 6905, 6907, 3, 666, 333, 0, 6906, 6904, 1, 0, 0, 0, 6907, 6910, 1, 0, 0, 0, 6908, 6906, 1, 0, 0, 0, 6908, 6909, 1, 0, 0, 0, 6909, 665, 1, 0, 0, 0, 6910, 6908, 1, 0, 0, 0, 6911, 6914, 3, 700, 350, 0, 6912, 6914, 3, 722, 361, 0, 6913, 6911, 1, 0, 0, 0, 6913, 6912, 1, 0, 0, 0, 6914, 667, 1, 0, 0, 0, 6915, 6920, 3, 722, 361, 0, 6916, 6918, 3, 726, 363, 0, 6917, 6919, 3, 726, 363, 0, 6918, 6917, 1, 0, 0, 0, 6918, 6919, 1, 0, 0, 0, 6919, 6921, 1, 0, 0, 0, 6920, 6916, 1, 0, 0, 0, 6920, 6921, 1, 0, 0, 0, 6921, 6930, 1, 0, 0, 0, 6922, 6924, 9, 0, 0, 0, 6923, 6922, 1, 0, 0, 0, 6923, 6924, 1, 0, 0, 0, 6924, 6925, 1, 0, 0, 0, 6925, 6927, 3, 726, 363, 0, 6926, 6928, 3, 726, 363, 0, 6927, 6926, 1, 0, 0, 0, 6927, 6928, 1, 0, 0, 0, 6928, 6930, 1, 0, 0, 0, 6929, 6915, 1, 0, 0, 0, 6929, 6923, 1, 0, 0, 0, 6930, 669, 1, 0, 0, 0, 6931, 6936, 3, 674, 337, 0, 6932, 6933, 5, 868, 0, 0, 6933, 6935, 3, 674, 337, 0, 6934, 6932, 1, 0, 0, 0, 6935, 6938, 1, 0, 0, 0, 6936, 6934, 1, 0, 0, 0, 6936, 6937, 1, 0, 0, 0, 6937, 671, 1, 0, 0, 0, 6938, 6936, 1, 0, 0, 0, 6939, 6940, 1, 0, 0, 0, 6940, 673, 1, 0, 0, 0, 6941, 6946, 3, 722, 361, 0, 6942, 6944, 3, 726, 363, 0, 6943, 6945, 3, 726, 363, 0, 6944, 6943, 1, 0, 0, 0, 6944, 6945, 1, 0, 0, 0, 6945, 6947, 1, 0, 0, 0, 6946, 6942, 1, 0, 0, 0, 6946, 6947, 1, 0, 0, 0, 6947, 6958, 1, 0, 0, 0, 6948, 6950, 9, 0, 0, 0, 6949, 6948, 1, 0, 0, 0, 6949, 6950, 1, 0, 0, 0, 6950, 6951, 1, 0, 0, 0, 6951, 6953, 3, 726, 363, 0, 6952, 6954, 3, 726, 363, 0, 6953, 6952, 1, 0, 0, 0, 6953, 6954, 1, 0, 0, 0, 6954, 6958, 1, 0, 0, 0, 6955, 6956, 4, 337, 4, 0, 6956, 6958, 3, 672, 336, 0, 6957, 6941, 1, 0, 0, 0, 6957, 6949, 1, 0, 0, 0, 6957, 6955, 1, 0, 0, 0, 6958, 675, 1, 0, 0, 0, 6959, 6964, 3, 722, 361, 0, 6960, 6962, 3, 726, 363, 0, 6961, 6963, 3, 726, 363, 0, 6962, 6961, 1, 0, 0, 0, 6962, 6963, 1, 0, 0, 0, 6963, 6965, 1, 0, 0, 0, 6964, 6960, 1, 0, 0, 0, 6964, 6965, 1, 0, 0, 0, 6965, 6979, 1, 0, 0, 0, 6966, 6968, 9, 0, 0, 0, 6967, 6966, 1, 0, 0, 0, 6967, 6968, 1, 0, 0, 0, 6968, 6969, 1, 0, 0, 0, 6969, 6971, 3, 726, 363, 0, 6970, 6972, 3, 726, 363, 0, 6971, 6970, 1, 0, 0, 0, 6971, 6972, 1, 0, 0, 0, 6972, 6979, 1, 0, 0, 0, 6973, 6974, 3, 722, 361, 0, 6974, 6975, 5, 865, 0, 0, 6975, 6976, 4, 338, 5, 0, 6976, 6977, 3, 672, 336, 0, 6977, 6979, 1, 0, 0, 0, 6978, 6959, 1, 0, 0, 0, 6978, 6967, 1, 0, 0, 0, 6978, 6973, 1, 0, 0, 0, 6979, 677, 1, 0, 0, 0, 6980, 6984, 3, 676, 338, 0, 6981, 6982, 4, 339, 6, 0, 6982, 6984, 3, 672, 336, 0, 6983, 6980, 1, 0, 0, 0, 6983, 6981, 1, 0, 0, 0, 6984, 679, 1, 0, 0, 0, 6985, 6986, 3, 722, 361, 0, 6986, 681, 1, 0, 0, 0, 6987, 6988, 3, 722, 361, 0, 6988, 683, 1, 0, 0, 0, 6989, 6990, 3, 722, 361, 0, 6990, 685, 1, 0, 0, 0, 6991, 6996, 3, 688, 344, 0, 6992, 6993, 5, 868, 0, 0, 6993, 6995, 3, 688, 344, 0, 6994, 6992, 1, 0, 0, 0, 6995, 6998, 1, 0, 0, 0, 6996, 6994, 1, 0, 0, 0, 6996, 6997, 1, 0, 0, 0, 6997, 687, 1, 0, 0, 0, 6998, 6996, 1, 0, 0, 0, 6999, 7000, 3, 722, 361, 0, 7000, 689, 1, 0, 0, 0, 7001, 7006, 3, 722, 361, 0, 7002, 7003, 5, 866, 0, 0, 7003, 7004, 3, 728, 364, 0, 7004, 7005, 5, 867, 0, 0, 7005, 7007, 1, 0, 0, 0, 7006, 7002, 1, 0, 0, 0, 7006, 7007, 1, 0, 0, 0, 7007, 7010, 1, 0, 0, 0, 7008, 7010, 3, 820, 410, 0, 7009, 7001, 1, 0, 0, 0, 7009, 7008, 1, 0, 0, 0, 7010, 7012, 1, 0, 0, 0, 7011, 7013, 7, 55, 0, 0, 7012, 7011, 1, 0, 0, 0, 7012, 7013, 1, 0, 0, 0, 7013, 691, 1, 0, 0, 0, 7014, 7015, 3, 694, 347, 0, 7015, 7016, 5, 878, 0, 0, 7016, 7017, 3, 728, 364, 0, 7017, 693, 1, 0, 0, 0, 7018, 7019, 3, 696, 348, 0, 7019, 7020, 5, 891, 0, 0, 7020, 695, 1, 0, 0, 0, 7021, 7026, 5, 882, 0, 0, 7022, 7026, 5, 889, 0, 0, 7023, 7026, 5, 704, 0, 0, 7024, 7026, 3, 850, 425, 0, 7025, 7021, 1, 0, 0, 0, 7025, 7022, 1, 0, 0, 0, 7025, 7023, 1, 0, 0, 0, 7025, 7024, 1, 0, 0, 0, 7026, 697, 1, 0, 0, 0, 7027, 7028, 7, 110, 0, 0, 7028, 699, 1, 0, 0, 0, 7029, 7031, 3, 696, 348, 0, 7030, 7032, 3, 698, 349, 0, 7031, 7030, 1, 0, 0, 0, 7031, 7032, 1, 0, 0, 0, 7032, 7035, 1, 0, 0, 0, 7033, 7035, 3, 60, 30, 0, 7034, 7029, 1, 0, 0, 0, 7034, 7033, 1, 0, 0, 0, 7035, 701, 1, 0, 0, 0, 7036, 7037, 7, 111, 0, 0, 7037, 703, 1, 0, 0, 0, 7038, 7043, 5, 228, 0, 0, 7039, 7043, 3, 840, 420, 0, 7040, 7043, 5, 882, 0, 0, 7041, 7043, 5, 879, 0, 0, 7042, 7038, 1, 0, 0, 0, 7042, 7039, 1, 0, 0, 0, 7042, 7040, 1, 0, 0, 0, 7042, 7041, 1, 0, 0, 0, 7043, 705, 1, 0, 0, 0, 7044, 7045, 3, 722, 361, 0, 7045, 707, 1, 0, 0, 0, 7046, 7050, 3, 710, 355, 0, 7047, 7050, 5, 889, 0, 0, 7048, 7050, 5, 882, 0, 0, 7049, 7046, 1, 0, 0, 0, 7049, 7047, 1, 0, 0, 0, 7049, 7048, 1, 0, 0, 0, 7050, 709, 1, 0, 0, 0, 7051, 7052, 7, 112, 0, 0, 7052, 711, 1, 0, 0, 0, 7053, 7054, 3, 728, 364, 0, 7054, 7055, 5, 854, 0, 0, 7055, 7056, 3, 728, 364, 0, 7056, 7057, 5, 854, 0, 0, 7057, 7058, 3, 728, 364, 0, 7058, 7059, 5, 854, 0, 0, 7059, 7060, 3, 728, 364, 0, 7060, 7061, 5, 854, 0, 0, 7061, 7067, 3, 728, 364, 0, 7062, 7063, 5, 878, 0, 0, 7063, 7064, 3, 728, 364, 0, 7064, 7065, 5, 854, 0, 0, 7065, 7066, 3, 728, 364, 0, 7066, 7068, 1, 0, 0, 0, 7067, 7062, 1, 0, 0, 0, 7068, 7069, 1, 0, 0, 0, 7069, 7067, 1, 0, 0, 0, 7069, 7070, 1, 0, 0, 0, 7070, 713, 1, 0, 0, 0, 7071, 7078, 3, 716, 358, 0, 7072, 7073, 5, 868, 0, 0, 7073, 7076, 3, 716, 358, 0, 7074, 7075, 5, 868, 0, 0, 7075, 7077, 3, 728, 364, 0, 7076, 7074, 1, 0, 0, 0, 7076, 7077, 1, 0, 0, 0, 7077, 7079, 1, 0, 0, 0, 7078, 7072, 1, 0, 0, 0, 7078, 7079, 1, 0, 0, 0, 7079, 715, 1, 0, 0, 0, 7080, 7088, 5, 882, 0, 0, 7081, 7088, 5, 887, 0, 0, 7082, 7084, 5, 884, 0, 0, 7083, 7082, 1, 0, 0, 0, 7084, 7085, 1, 0, 0, 0, 7085, 7083, 1, 0, 0, 0, 7085, 7086, 1, 0, 0, 0, 7086, 7088, 1, 0, 0, 0, 7087, 7080, 1, 0, 0, 0, 7087, 7081, 1, 0, 0, 0, 7087, 7083, 1, 0, 0, 0, 7088, 717, 1, 0, 0, 0, 7089, 7091, 3, 722, 361, 0, 7090, 7092, 3, 726, 363, 0, 7091, 7090, 1, 0, 0, 0, 7091, 7092, 1, 0, 0, 0, 7092, 719, 1, 0, 0, 0, 7093, 7098, 3, 722, 361, 0, 7094, 7095, 5, 868, 0, 0, 7095, 7097, 3, 722, 361, 0, 7096, 7094, 1, 0, 0, 0, 7097, 7100, 1, 0, 0, 0, 7098, 7096, 1, 0, 0, 0, 7098, 7099, 1, 0, 0, 0, 7099, 721, 1, 0, 0, 0, 7100, 7098, 1, 0, 0, 0, 7101, 7105, 3, 724, 362, 0, 7102, 7105, 5, 879, 0, 0, 7103, 7105, 5, 882, 0, 0, 7104, 7101, 1, 0, 0, 0, 7104, 7102, 1, 0, 0, 0, 7104, 7103, 1, 0, 0, 0, 7105, 723, 1, 0, 0, 0, 7106, 7116, 5, 889, 0, 0, 7107, 7116, 3, 840, 420, 0, 7108, 7116, 3, 842, 421, 0, 7109, 7116, 3, 710, 355, 0, 7110, 7116, 3, 844, 422, 0, 7111, 7116, 3, 846, 423, 0, 7112, 7116, 3, 848, 424, 0, 7113, 7116, 3, 850, 425, 0, 7114, 7116, 3, 812, 406, 0, 7115, 7106, 1, 0, 0, 0, 7115, 7107, 1, 0, 0, 0, 7115, 7108, 1, 0, 0, 0, 7115, 7109, 1, 0, 0, 0, 7115, 7110, 1, 0, 0, 0, 7115, 7111, 1, 0, 0, 0, 7115, 7112, 1, 0, 0, 0, 7115, 7113, 1, 0, 0, 0, 7115, 7114, 1, 0, 0, 0, 7116, 725, 1, 0, 0, 0, 7117, 7118, 5, 865, 0, 0, 7118, 7122, 5, 889, 0, 0, 7119, 7120, 5, 865, 0, 0, 7120, 7122, 3, 722, 361, 0, 7121, 7117, 1, 0, 0, 0, 7121, 7119, 1, 0, 0, 0, 7122, 727, 1, 0, 0, 0, 7123, 7124, 7, 113, 0, 0, 7124, 729, 1, 0, 0, 0, 7125, 7128, 5, 880, 0, 0, 7126, 7128, 3, 728, 364, 0, 7127, 7125, 1, 0, 0, 0, 7127, 7126, 1, 0, 0, 0, 7128, 731, 1, 0, 0, 0, 7129, 7131, 5, 888, 0, 0, 7130, 7129, 1, 0, 0, 0, 7130, 7131, 1, 0, 0, 0, 7131, 7132, 1, 0, 0, 0, 7132, 7135, 5, 882, 0, 0, 7133, 7135, 5, 881, 0, 0, 7134, 7130, 1, 0, 0, 0, 7134, 7133, 1, 0, 0, 0, 7135, 7137, 1, 0, 0, 0, 7136, 7138, 5, 882, 0, 0, 7137, 7136, 1, 0, 0, 0, 7138, 7139, 1, 0, 0, 0, 7139, 7137, 1, 0, 0, 0, 7139, 7140, 1, 0, 0, 0, 7140, 7153, 1, 0, 0, 0, 7141, 7143, 5, 888, 0, 0, 7142, 7141, 1, 0, 0, 0, 7142, 7143, 1, 0, 0, 0, 7143, 7144, 1, 0, 0, 0, 7144, 7147, 5, 882, 0, 0, 7145, 7147, 5, 881, 0, 0, 7146, 7142, 1, 0, 0, 0, 7146, 7145, 1, 0, 0, 0, 7147, 7150, 1, 0, 0, 0, 7148, 7149, 5, 28, 0, 0, 7149, 7151, 3, 706, 353, 0, 7150, 7148, 1, 0, 0, 0, 7150, 7151, 1, 0, 0, 0, 7151, 7153, 1, 0, 0, 0, 7152, 7134, 1, 0, 0, 0, 7152, 7146, 1, 0, 0, 0, 7153, 733, 1, 0, 0, 0, 7154, 7155, 7, 114, 0, 0, 7155, 735, 1, 0, 0, 0, 7156, 7158, 5, 888, 0, 0, 7157, 7156, 1, 0, 0, 0, 7157, 7158, 1, 0, 0, 0, 7158, 7159, 1, 0, 0, 0, 7159, 7160, 5, 884, 0, 0, 7160, 737, 1, 0, 0, 0, 7161, 7163, 5, 114, 0, 0, 7162, 7161, 1, 0, 0, 0, 7162, 7163, 1, 0, 0, 0, 7163, 7164, 1, 0, 0, 0, 7164, 7165, 7, 115, 0, 0, 7165, 739, 1, 0, 0, 0, 7166, 7179, 3, 732, 366, 0, 7167, 7179, 3, 728, 364, 0, 7168, 7169, 5, 854, 0, 0, 7169, 7179, 3, 728, 364, 0, 7170, 7179, 3, 736, 368, 0, 7171, 7179, 3, 734, 367, 0, 7172, 7179, 5, 885, 0, 0, 7173, 7179, 5, 887, 0, 0, 7174, 7176, 5, 114, 0, 0, 7175, 7174, 1, 0, 0, 0, 7175, 7176, 1, 0, 0, 0, 7176, 7177, 1, 0, 0, 0, 7177, 7179, 7, 115, 0, 0, 7178, 7166, 1, 0, 0, 0, 7178, 7167, 1, 0, 0, 0, 7178, 7168, 1, 0, 0, 0, 7178, 7170, 1, 0, 0, 0, 7178, 7171, 1, 0, 0, 0, 7178, 7172, 1, 0, 0, 0, 7178, 7173, 1, 0, 0, 0, 7178, 7175, 1, 0, 0, 0, 7179, 741, 1, 0, 0, 0, 7180, 7182, 7, 116, 0, 0, 7181, 7183, 5, 240, 0, 0, 7182, 7181, 1, 0, 0, 0, 7182, 7183, 1, 0, 0, 0, 7183, 7185, 1, 0, 0, 0, 7184, 7186, 3, 748, 374, 0, 7185, 7184, 1, 0, 0, 0, 7185, 7186, 1, 0, 0, 0, 7186, 7188, 1, 0, 0, 0, 7187, 7189, 5, 228, 0, 0, 7188, 7187, 1, 0, 0, 0, 7188, 7189, 1, 0, 0, 0, 7189, 7193, 1, 0, 0, 0, 7190, 7191, 3, 58, 29, 0, 7191, 7192, 3, 704, 352, 0, 7192, 7194, 1, 0, 0, 0, 7193, 7190, 1, 0, 0, 0, 7193, 7194, 1, 0, 0, 0, 7194, 7198, 1, 0, 0, 0, 7195, 7196, 5, 28, 0, 0, 7196, 7199, 3, 706, 353, 0, 7197, 7199, 5, 228, 0, 0, 7198, 7195, 1, 0, 0, 0, 7198, 7197, 1, 0, 0, 0, 7198, 7199, 1, 0, 0, 0, 7199, 7307, 1, 0, 0, 0, 7200, 7201, 5, 227, 0, 0, 7201, 7202, 7, 117, 0, 0, 7202, 7204, 5, 240, 0, 0, 7203, 7205, 3, 748, 374, 0, 7204, 7203, 1, 0, 0, 0, 7204, 7205, 1, 0, 0, 0, 7205, 7207, 1, 0, 0, 0, 7206, 7208, 5, 228, 0, 0, 7207, 7206, 1, 0, 0, 0, 7207, 7208, 1, 0, 0, 0, 7208, 7307, 1, 0, 0, 0, 7209, 7210, 5, 227, 0, 0, 7210, 7212, 7, 118, 0, 0, 7211, 7213, 3, 748, 374, 0, 7212, 7211, 1, 0, 0, 0, 7212, 7213, 1, 0, 0, 0, 7213, 7215, 1, 0, 0, 0, 7214, 7216, 5, 228, 0, 0, 7215, 7214, 1, 0, 0, 0, 7215, 7216, 1, 0, 0, 0, 7216, 7307, 1, 0, 0, 0, 7217, 7218, 5, 498, 0, 0, 7218, 7220, 5, 225, 0, 0, 7219, 7221, 3, 748, 374, 0, 7220, 7219, 1, 0, 0, 0, 7220, 7221, 1, 0, 0, 0, 7221, 7223, 1, 0, 0, 0, 7222, 7224, 5, 228, 0, 0, 7223, 7222, 1, 0, 0, 0, 7223, 7224, 1, 0, 0, 0, 7224, 7307, 1, 0, 0, 0, 7225, 7227, 7, 119, 0, 0, 7226, 7228, 3, 748, 374, 0, 7227, 7226, 1, 0, 0, 0, 7227, 7228, 1, 0, 0, 0, 7228, 7232, 1, 0, 0, 0, 7229, 7231, 7, 120, 0, 0, 7230, 7229, 1, 0, 0, 0, 7231, 7234, 1, 0, 0, 0, 7232, 7230, 1, 0, 0, 0, 7232, 7233, 1, 0, 0, 0, 7233, 7307, 1, 0, 0, 0, 7234, 7232, 1, 0, 0, 0, 7235, 7237, 5, 210, 0, 0, 7236, 7238, 3, 750, 375, 0, 7237, 7236, 1, 0, 0, 0, 7237, 7238, 1, 0, 0, 0, 7238, 7242, 1, 0, 0, 0, 7239, 7241, 7, 120, 0, 0, 7240, 7239, 1, 0, 0, 0, 7241, 7244, 1, 0, 0, 0, 7242, 7240, 1, 0, 0, 0, 7242, 7243, 1, 0, 0, 0, 7243, 7307, 1, 0, 0, 0, 7244, 7242, 1, 0, 0, 0, 7245, 7247, 5, 211, 0, 0, 7246, 7248, 5, 212, 0, 0, 7247, 7246, 1, 0, 0, 0, 7247, 7248, 1, 0, 0, 0, 7248, 7250, 1, 0, 0, 0, 7249, 7251, 3, 750, 375, 0, 7250, 7249, 1, 0, 0, 0, 7250, 7251, 1, 0, 0, 0, 7251, 7255, 1, 0, 0, 0, 7252, 7254, 7, 120, 0, 0, 7253, 7252, 1, 0, 0, 0, 7254, 7257, 1, 0, 0, 0, 7255, 7253, 1, 0, 0, 0, 7255, 7256, 1, 0, 0, 0, 7256, 7307, 1, 0, 0, 0, 7257, 7255, 1, 0, 0, 0, 7258, 7260, 7, 121, 0, 0, 7259, 7261, 3, 752, 376, 0, 7260, 7259, 1, 0, 0, 0, 7260, 7261, 1, 0, 0, 0, 7261, 7265, 1, 0, 0, 0, 7262, 7264, 7, 120, 0, 0, 7263, 7262, 1, 0, 0, 0, 7264, 7267, 1, 0, 0, 0, 7265, 7263, 1, 0, 0, 0, 7265, 7266, 1, 0, 0, 0, 7266, 7307, 1, 0, 0, 0, 7267, 7265, 1, 0, 0, 0, 7268, 7307, 7, 122, 0, 0, 7269, 7271, 7, 123, 0, 0, 7270, 7272, 3, 748, 374, 0, 7271, 7270, 1, 0, 0, 0, 7271, 7272, 1, 0, 0, 0, 7272, 7307, 1, 0, 0, 0, 7273, 7274, 7, 124, 0, 0, 7274, 7276, 3, 744, 372, 0, 7275, 7277, 5, 228, 0, 0, 7276, 7275, 1, 0, 0, 0, 7276, 7277, 1, 0, 0, 0, 7277, 7281, 1, 0, 0, 0, 7278, 7279, 3, 58, 29, 0, 7279, 7280, 3, 704, 352, 0, 7280, 7282, 1, 0, 0, 0, 7281, 7278, 1, 0, 0, 0, 7281, 7282, 1, 0, 0, 0, 7282, 7307, 1, 0, 0, 0, 7283, 7286, 7, 125, 0, 0, 7284, 7285, 5, 834, 0, 0, 7285, 7287, 3, 728, 364, 0, 7286, 7284, 1, 0, 0, 0, 7286, 7287, 1, 0, 0, 0, 7287, 7307, 1, 0, 0, 0, 7288, 7290, 5, 233, 0, 0, 7289, 7291, 5, 225, 0, 0, 7290, 7289, 1, 0, 0, 0, 7290, 7291, 1, 0, 0, 0, 7291, 7293, 1, 0, 0, 0, 7292, 7294, 5, 228, 0, 0, 7293, 7292, 1, 0, 0, 0, 7293, 7294, 1, 0, 0, 0, 7294, 7298, 1, 0, 0, 0, 7295, 7296, 3, 58, 29, 0, 7296, 7297, 3, 704, 352, 0, 7297, 7299, 1, 0, 0, 0, 7298, 7295, 1, 0, 0, 0, 7298, 7299, 1, 0, 0, 0, 7299, 7302, 1, 0, 0, 0, 7300, 7301, 5, 28, 0, 0, 7301, 7303, 3, 706, 353, 0, 7302, 7300, 1, 0, 0, 0, 7302, 7303, 1, 0, 0, 0, 7303, 7307, 1, 0, 0, 0, 7304, 7305, 5, 233, 0, 0, 7305, 7307, 5, 229, 0, 0, 7306, 7180, 1, 0, 0, 0, 7306, 7200, 1, 0, 0, 0, 7306, 7209, 1, 0, 0, 0, 7306, 7217, 1, 0, 0, 0, 7306, 7225, 1, 0, 0, 0, 7306, 7235, 1, 0, 0, 0, 7306, 7245, 1, 0, 0, 0, 7306, 7258, 1, 0, 0, 0, 7306, 7268, 1, 0, 0, 0, 7306, 7269, 1, 0, 0, 0, 7306, 7273, 1, 0, 0, 0, 7306, 7283, 1, 0, 0, 0, 7306, 7288, 1, 0, 0, 0, 7306, 7304, 1, 0, 0, 0, 7307, 743, 1, 0, 0, 0, 7308, 7309, 5, 866, 0, 0, 7309, 7314, 5, 882, 0, 0, 7310, 7311, 5, 868, 0, 0, 7311, 7313, 5, 882, 0, 0, 7312, 7310, 1, 0, 0, 0, 7313, 7316, 1, 0, 0, 0, 7314, 7312, 1, 0, 0, 0, 7314, 7315, 1, 0, 0, 0, 7315, 7317, 1, 0, 0, 0, 7316, 7314, 1, 0, 0, 0, 7317, 7318, 5, 867, 0, 0, 7318, 745, 1, 0, 0, 0, 7319, 7321, 7, 126, 0, 0, 7320, 7322, 3, 748, 374, 0, 7321, 7320, 1, 0, 0, 0, 7321, 7322, 1, 0, 0, 0, 7322, 7342, 1, 0, 0, 0, 7323, 7325, 5, 224, 0, 0, 7324, 7326, 3, 748, 374, 0, 7325, 7324, 1, 0, 0, 0, 7325, 7326, 1, 0, 0, 0, 7326, 7330, 1, 0, 0, 0, 7327, 7328, 3, 58, 29, 0, 7328, 7329, 3, 704, 352, 0, 7329, 7331, 1, 0, 0, 0, 7330, 7327, 1, 0, 0, 0, 7330, 7331, 1, 0, 0, 0, 7331, 7342, 1, 0, 0, 0, 7332, 7342, 7, 127, 0, 0, 7333, 7335, 7, 128, 0, 0, 7334, 7336, 3, 752, 376, 0, 7335, 7334, 1, 0, 0, 0, 7335, 7336, 1, 0, 0, 0, 7336, 7342, 1, 0, 0, 0, 7337, 7339, 7, 129, 0, 0, 7338, 7340, 7, 130, 0, 0, 7339, 7338, 1, 0, 0, 0, 7339, 7340, 1, 0, 0, 0, 7340, 7342, 1, 0, 0, 0, 7341, 7319, 1, 0, 0, 0, 7341, 7323, 1, 0, 0, 0, 7341, 7332, 1, 0, 0, 0, 7341, 7333, 1, 0, 0, 0, 7341, 7337, 1, 0, 0, 0, 7342, 7344, 1, 0, 0, 0, 7343, 7345, 5, 12, 0, 0, 7344, 7343, 1, 0, 0, 0, 7344, 7345, 1, 0, 0, 0, 7345, 747, 1, 0, 0, 0, 7346, 7347, 5, 866, 0, 0, 7347, 7348, 3, 728, 364, 0, 7348, 7349, 5, 867, 0, 0, 7349, 749, 1, 0, 0, 0, 7350, 7351, 5, 866, 0, 0, 7351, 7352, 3, 728, 364, 0, 7352, 7353, 5, 868, 0, 0, 7353, 7354, 3, 728, 364, 0, 7354, 7355, 5, 867, 0, 0, 7355, 751, 1, 0, 0, 0, 7356, 7357, 5, 866, 0, 0, 7357, 7360, 3, 728, 364, 0, 7358, 7359, 5, 868, 0, 0, 7359, 7361, 3, 728, 364, 0, 7360, 7358, 1, 0, 0, 0, 7360, 7361, 1, 0, 0, 0, 7361, 7362, 1, 0, 0, 0, 7362, 7363, 5, 867, 0, 0, 7363, 753, 1, 0, 0, 0, 7364, 7365, 5, 866, 0, 0, 7365, 7370, 3, 690, 345, 0, 7366, 7367, 5, 868, 0, 0, 7367, 7369, 3, 690, 345, 0, 7368, 7366, 1, 0, 0, 0, 7369, 7372, 1, 0, 0, 0, 7370, 7368, 1, 0, 0, 0, 7370, 7371, 1, 0, 0, 0, 7371, 7373, 1, 0, 0, 0, 7372, 7370, 1, 0, 0, 0, 7373, 7374, 5, 867, 0, 0, 7374, 755, 1, 0, 0, 0, 7375, 7380, 3, 820, 410, 0, 7376, 7377, 5, 868, 0, 0, 7377, 7379, 3, 820, 410, 0, 7378, 7376, 1, 0, 0, 0, 7379, 7382, 1, 0, 0, 0, 7380, 7378, 1, 0, 0, 0, 7380, 7381, 1, 0, 0, 0, 7381, 757, 1, 0, 0, 0, 7382, 7380, 1, 0, 0, 0, 7383, 7384, 7, 131, 0, 0, 7384, 7389, 3, 760, 380, 0, 7385, 7386, 5, 868, 0, 0, 7386, 7388, 3, 760, 380, 0, 7387, 7385, 1, 0, 0, 0, 7388, 7391, 1, 0, 0, 0, 7389, 7387, 1, 0, 0, 0, 7389, 7390, 1, 0, 0, 0, 7390, 759, 1, 0, 0, 0, 7391, 7389, 1, 0, 0, 0, 7392, 7393, 5, 866, 0, 0, 7393, 7398, 3, 762, 381, 0, 7394, 7395, 5, 868, 0, 0, 7395, 7397, 3, 762, 381, 0, 7396, 7394, 1, 0, 0, 0, 7397, 7400, 1, 0, 0, 0, 7398, 7396, 1, 0, 0, 0, 7398, 7399, 1, 0, 0, 0, 7399, 7401, 1, 0, 0, 0, 7400, 7398, 1, 0, 0, 0, 7401, 7402, 5, 867, 0, 0, 7402, 761, 1, 0, 0, 0, 7403, 7406, 3, 820, 410, 0, 7404, 7406, 5, 42, 0, 0, 7405, 7403, 1, 0, 0, 0, 7405, 7404, 1, 0, 0, 0, 7406, 763, 1, 0, 0, 0, 7407, 7412, 3, 740, 370, 0, 7408, 7409, 5, 868, 0, 0, 7409, 7411, 3, 740, 370, 0, 7410, 7408, 1, 0, 0, 0, 7411, 7414, 1, 0, 0, 0, 7412, 7410, 1, 0, 0, 0, 7412, 7413, 1, 0, 0, 0, 7413, 765, 1, 0, 0, 0, 7414, 7412, 1, 0, 0, 0, 7415, 7420, 5, 882, 0, 0, 7416, 7417, 5, 868, 0, 0, 7417, 7419, 5, 882, 0, 0, 7418, 7416, 1, 0, 0, 0, 7419, 7422, 1, 0, 0, 0, 7420, 7418, 1, 0, 0, 0, 7420, 7421, 1, 0, 0, 0, 7421, 767, 1, 0, 0, 0, 7422, 7420, 1, 0, 0, 0, 7423, 7428, 5, 892, 0, 0, 7424, 7425, 5, 868, 0, 0, 7425, 7427, 5, 892, 0, 0, 7426, 7424, 1, 0, 0, 0, 7427, 7430, 1, 0, 0, 0, 7428, 7426, 1, 0, 0, 0, 7428, 7429, 1, 0, 0, 0, 7429, 769, 1, 0, 0, 0, 7430, 7428, 1, 0, 0, 0, 7431, 7458, 5, 116, 0, 0, 7432, 7433, 5, 24, 0, 0, 7433, 7434, 5, 866, 0, 0, 7434, 7435, 3, 820, 410, 0, 7435, 7436, 5, 13, 0, 0, 7436, 7437, 3, 746, 373, 0, 7437, 7438, 5, 867, 0, 0, 7438, 7458, 1, 0, 0, 0, 7439, 7441, 3, 826, 413, 0, 7440, 7439, 1, 0, 0, 0, 7440, 7441, 1, 0, 0, 0, 7441, 7442, 1, 0, 0, 0, 7442, 7458, 3, 740, 370, 0, 7443, 7447, 3, 772, 386, 0, 7444, 7445, 5, 119, 0, 0, 7445, 7446, 5, 185, 0, 0, 7446, 7448, 3, 772, 386, 0, 7447, 7444, 1, 0, 0, 0, 7447, 7448, 1, 0, 0, 0, 7448, 7458, 1, 0, 0, 0, 7449, 7450, 5, 866, 0, 0, 7450, 7451, 3, 820, 410, 0, 7451, 7452, 5, 867, 0, 0, 7452, 7458, 1, 0, 0, 0, 7453, 7454, 5, 866, 0, 0, 7454, 7455, 3, 718, 359, 0, 7455, 7456, 5, 867, 0, 0, 7456, 7458, 1, 0, 0, 0, 7457, 7431, 1, 0, 0, 0, 7457, 7432, 1, 0, 0, 0, 7457, 7440, 1, 0, 0, 0, 7457, 7443, 1, 0, 0, 0, 7457, 7449, 1, 0, 0, 0, 7457, 7453, 1, 0, 0, 0, 7458, 771, 1, 0, 0, 0, 7459, 7465, 7, 132, 0, 0, 7460, 7462, 5, 866, 0, 0, 7461, 7463, 3, 728, 364, 0, 7462, 7461, 1, 0, 0, 0, 7462, 7463, 1, 0, 0, 0, 7463, 7464, 1, 0, 0, 0, 7464, 7466, 5, 867, 0, 0, 7465, 7460, 1, 0, 0, 0, 7465, 7466, 1, 0, 0, 0, 7466, 7474, 1, 0, 0, 0, 7467, 7468, 5, 295, 0, 0, 7468, 7470, 5, 866, 0, 0, 7469, 7471, 3, 728, 364, 0, 7470, 7469, 1, 0, 0, 0, 7470, 7471, 1, 0, 0, 0, 7471, 7472, 1, 0, 0, 0, 7472, 7474, 5, 867, 0, 0, 7473, 7459, 1, 0, 0, 0, 7473, 7467, 1, 0, 0, 0, 7474, 773, 1, 0, 0, 0, 7475, 7476, 5, 78, 0, 0, 7476, 7477, 5, 60, 0, 0, 7477, 775, 1, 0, 0, 0, 7478, 7479, 5, 78, 0, 0, 7479, 7480, 5, 114, 0, 0, 7480, 7481, 5, 60, 0, 0, 7481, 777, 1, 0, 0, 0, 7482, 7483, 5, 124, 0, 0, 7483, 7484, 5, 143, 0, 0, 7484, 779, 1, 0, 0, 0, 7485, 7508, 3, 782, 391, 0, 7486, 7508, 3, 790, 395, 0, 7487, 7508, 3, 792, 396, 0, 7488, 7495, 3, 812, 406, 0, 7489, 7490, 5, 866, 0, 0, 7490, 7496, 5, 867, 0, 0, 7491, 7492, 5, 866, 0, 0, 7492, 7493, 3, 816, 408, 0, 7493, 7494, 5, 867, 0, 0, 7494, 7496, 1, 0, 0, 0, 7495, 7489, 1, 0, 0, 0, 7495, 7491, 1, 0, 0, 0, 7496, 7508, 1, 0, 0, 0, 7497, 7504, 3, 642, 321, 0, 7498, 7499, 5, 866, 0, 0, 7499, 7505, 5, 867, 0, 0, 7500, 7501, 5, 866, 0, 0, 7501, 7502, 3, 816, 408, 0, 7502, 7503, 5, 867, 0, 0, 7503, 7505, 1, 0, 0, 0, 7504, 7498, 1, 0, 0, 0, 7504, 7500, 1, 0, 0, 0, 7505, 7508, 1, 0, 0, 0, 7506, 7508, 3, 814, 407, 0, 7507, 7485, 1, 0, 0, 0, 7507, 7486, 1, 0, 0, 0, 7507, 7487, 1, 0, 0, 0, 7507, 7488, 1, 0, 0, 0, 7507, 7497, 1, 0, 0, 0, 7507, 7506, 1, 0, 0, 0, 7508, 781, 1, 0, 0, 0, 7509, 7512, 7, 133, 0, 0, 7510, 7511, 5, 866, 0, 0, 7511, 7513, 5, 867, 0, 0, 7512, 7510, 1, 0, 0, 0, 7512, 7513, 1, 0, 0, 0, 7513, 7689, 1, 0, 0, 0, 7514, 7689, 3, 60, 30, 0, 7515, 7516, 5, 33, 0, 0, 7516, 7517, 5, 866, 0, 0, 7517, 7518, 3, 820, 410, 0, 7518, 7519, 5, 868, 0, 0, 7519, 7520, 3, 746, 373, 0, 7520, 7521, 5, 867, 0, 0, 7521, 7689, 1, 0, 0, 0, 7522, 7523, 5, 33, 0, 0, 7523, 7524, 5, 866, 0, 0, 7524, 7525, 3, 820, 410, 0, 7525, 7526, 5, 188, 0, 0, 7526, 7527, 3, 704, 352, 0, 7527, 7528, 5, 867, 0, 0, 7528, 7689, 1, 0, 0, 0, 7529, 7530, 5, 24, 0, 0, 7530, 7531, 5, 866, 0, 0, 7531, 7532, 3, 820, 410, 0, 7532, 7533, 5, 13, 0, 0, 7533, 7534, 3, 746, 373, 0, 7534, 7535, 5, 867, 0, 0, 7535, 7689, 1, 0, 0, 0, 7536, 7537, 5, 189, 0, 0, 7537, 7538, 5, 866, 0, 0, 7538, 7539, 3, 674, 337, 0, 7539, 7540, 5, 867, 0, 0, 7540, 7689, 1, 0, 0, 0, 7541, 7543, 5, 23, 0, 0, 7542, 7544, 3, 784, 392, 0, 7543, 7542, 1, 0, 0, 0, 7544, 7545, 1, 0, 0, 0, 7545, 7543, 1, 0, 0, 0, 7545, 7546, 1, 0, 0, 0, 7546, 7549, 1, 0, 0, 0, 7547, 7548, 5, 53, 0, 0, 7548, 7550, 3, 818, 409, 0, 7549, 7547, 1, 0, 0, 0, 7549, 7550, 1, 0, 0, 0, 7550, 7551, 1, 0, 0, 0, 7551, 7552, 5, 378, 0, 0, 7552, 7689, 1, 0, 0, 0, 7553, 7554, 5, 23, 0, 0, 7554, 7556, 3, 820, 410, 0, 7555, 7557, 3, 784, 392, 0, 7556, 7555, 1, 0, 0, 0, 7557, 7558, 1, 0, 0, 0, 7558, 7556, 1, 0, 0, 0, 7558, 7559, 1, 0, 0, 0, 7559, 7562, 1, 0, 0, 0, 7560, 7561, 5, 53, 0, 0, 7561, 7563, 3, 818, 409, 0, 7562, 7560, 1, 0, 0, 0, 7562, 7563, 1, 0, 0, 0, 7563, 7564, 1, 0, 0, 0, 7564, 7565, 5, 378, 0, 0, 7565, 7689, 1, 0, 0, 0, 7566, 7567, 5, 224, 0, 0, 7567, 7568, 5, 866, 0, 0, 7568, 7571, 3, 816, 408, 0, 7569, 7570, 5, 188, 0, 0, 7570, 7572, 3, 704, 352, 0, 7571, 7569, 1, 0, 0, 0, 7571, 7572, 1, 0, 0, 0, 7572, 7573, 1, 0, 0, 0, 7573, 7574, 5, 867, 0, 0, 7574, 7689, 1, 0, 0, 0, 7575, 7576, 5, 296, 0, 0, 7576, 7579, 5, 866, 0, 0, 7577, 7580, 3, 732, 366, 0, 7578, 7580, 3, 820, 410, 0, 7579, 7577, 1, 0, 0, 0, 7579, 7578, 1, 0, 0, 0, 7580, 7581, 1, 0, 0, 0, 7581, 7584, 5, 80, 0, 0, 7582, 7585, 3, 732, 366, 0, 7583, 7585, 3, 820, 410, 0, 7584, 7582, 1, 0, 0, 0, 7584, 7583, 1, 0, 0, 0, 7585, 7586, 1, 0, 0, 0, 7586, 7587, 5, 867, 0, 0, 7587, 7689, 1, 0, 0, 0, 7588, 7589, 7, 134, 0, 0, 7589, 7592, 5, 866, 0, 0, 7590, 7593, 3, 732, 366, 0, 7591, 7593, 3, 820, 410, 0, 7592, 7590, 1, 0, 0, 0, 7592, 7591, 1, 0, 0, 0, 7593, 7594, 1, 0, 0, 0, 7594, 7597, 5, 68, 0, 0, 7595, 7598, 3, 728, 364, 0, 7596, 7598, 3, 820, 410, 0, 7597, 7595, 1, 0, 0, 0, 7597, 7596, 1, 0, 0, 0, 7598, 7604, 1, 0, 0, 0, 7599, 7602, 5, 65, 0, 0, 7600, 7603, 3, 728, 364, 0, 7601, 7603, 3, 820, 410, 0, 7602, 7600, 1, 0, 0, 0, 7602, 7601, 1, 0, 0, 0, 7603, 7605, 1, 0, 0, 0, 7604, 7599, 1, 0, 0, 0, 7604, 7605, 1, 0, 0, 0, 7605, 7606, 1, 0, 0, 0, 7606, 7607, 5, 867, 0, 0, 7607, 7689, 1, 0, 0, 0, 7608, 7609, 5, 300, 0, 0, 7609, 7610, 5, 866, 0, 0, 7610, 7613, 7, 135, 0, 0, 7611, 7614, 3, 732, 366, 0, 7612, 7614, 3, 820, 410, 0, 7613, 7611, 1, 0, 0, 0, 7613, 7612, 1, 0, 0, 0, 7613, 7614, 1, 0, 0, 0, 7614, 7615, 1, 0, 0, 0, 7615, 7618, 5, 68, 0, 0, 7616, 7619, 3, 732, 366, 0, 7617, 7619, 3, 820, 410, 0, 7618, 7616, 1, 0, 0, 0, 7618, 7617, 1, 0, 0, 0, 7619, 7620, 1, 0, 0, 0, 7620, 7621, 5, 867, 0, 0, 7621, 7689, 1, 0, 0, 0, 7622, 7623, 5, 300, 0, 0, 7623, 7626, 5, 866, 0, 0, 7624, 7627, 3, 732, 366, 0, 7625, 7627, 3, 820, 410, 0, 7626, 7624, 1, 0, 0, 0, 7626, 7625, 1, 0, 0, 0, 7627, 7628, 1, 0, 0, 0, 7628, 7631, 5, 68, 0, 0, 7629, 7632, 3, 732, 366, 0, 7630, 7632, 3, 820, 410, 0, 7631, 7629, 1, 0, 0, 0, 7631, 7630, 1, 0, 0, 0, 7632, 7633, 1, 0, 0, 0, 7633, 7634, 5, 867, 0, 0, 7634, 7689, 1, 0, 0, 0, 7635, 7636, 5, 840, 0, 0, 7636, 7639, 5, 866, 0, 0, 7637, 7640, 3, 732, 366, 0, 7638, 7640, 3, 820, 410, 0, 7639, 7637, 1, 0, 0, 0, 7639, 7638, 1, 0, 0, 0, 7640, 7647, 1, 0, 0, 0, 7641, 7642, 5, 13, 0, 0, 7642, 7643, 7, 136, 0, 0, 7643, 7644, 5, 866, 0, 0, 7644, 7645, 3, 728, 364, 0, 7645, 7646, 5, 867, 0, 0, 7646, 7648, 1, 0, 0, 0, 7647, 7641, 1, 0, 0, 0, 7647, 7648, 1, 0, 0, 0, 7648, 7650, 1, 0, 0, 0, 7649, 7651, 3, 786, 393, 0, 7650, 7649, 1, 0, 0, 0, 7650, 7651, 1, 0, 0, 0, 7651, 7652, 1, 0, 0, 0, 7652, 7653, 5, 867, 0, 0, 7653, 7689, 1, 0, 0, 0, 7654, 7655, 5, 293, 0, 0, 7655, 7656, 5, 866, 0, 0, 7656, 7657, 3, 70, 35, 0, 7657, 7660, 5, 68, 0, 0, 7658, 7661, 3, 732, 366, 0, 7659, 7661, 3, 820, 410, 0, 7660, 7658, 1, 0, 0, 0, 7660, 7659, 1, 0, 0, 0, 7661, 7662, 1, 0, 0, 0, 7662, 7663, 5, 867, 0, 0, 7663, 7689, 1, 0, 0, 0, 7664, 7665, 5, 827, 0, 0, 7665, 7666, 5, 866, 0, 0, 7666, 7667, 7, 137, 0, 0, 7667, 7668, 5, 868, 0, 0, 7668, 7669, 3, 732, 366, 0, 7669, 7670, 5, 867, 0, 0, 7670, 7689, 1, 0, 0, 0, 7671, 7672, 5, 254, 0, 0, 7672, 7673, 5, 866, 0, 0, 7673, 7674, 3, 820, 410, 0, 7674, 7675, 5, 868, 0, 0, 7675, 7678, 3, 820, 410, 0, 7676, 7677, 5, 579, 0, 0, 7677, 7679, 3, 746, 373, 0, 7678, 7676, 1, 0, 0, 0, 7678, 7679, 1, 0, 0, 0, 7679, 7681, 1, 0, 0, 0, 7680, 7682, 3, 294, 147, 0, 7681, 7680, 1, 0, 0, 0, 7681, 7682, 1, 0, 0, 0, 7682, 7684, 1, 0, 0, 0, 7683, 7685, 3, 296, 148, 0, 7684, 7683, 1, 0, 0, 0, 7684, 7685, 1, 0, 0, 0, 7685, 7686, 1, 0, 0, 0, 7686, 7687, 5, 867, 0, 0, 7687, 7689, 1, 0, 0, 0, 7688, 7509, 1, 0, 0, 0, 7688, 7514, 1, 0, 0, 0, 7688, 7515, 1, 0, 0, 0, 7688, 7522, 1, 0, 0, 0, 7688, 7529, 1, 0, 0, 0, 7688, 7536, 1, 0, 0, 0, 7688, 7541, 1, 0, 0, 0, 7688, 7553, 1, 0, 0, 0, 7688, 7566, 1, 0, 0, 0, 7688, 7575, 1, 0, 0, 0, 7688, 7588, 1, 0, 0, 0, 7688, 7608, 1, 0, 0, 0, 7688, 7622, 1, 0, 0, 0, 7688, 7635, 1, 0, 0, 0, 7688, 7654, 1, 0, 0, 0, 7688, 7664, 1, 0, 0, 0, 7688, 7671, 1, 0, 0, 0, 7689, 783, 1, 0, 0, 0, 7690, 7691, 5, 191, 0, 0, 7691, 7692, 3, 818, 409, 0, 7692, 7693, 5, 175, 0, 0, 7693, 7694, 3, 818, 409, 0, 7694, 785, 1, 0, 0, 0, 7695, 7696, 5, 448, 0, 0, 7696, 7701, 3, 788, 394, 0, 7697, 7698, 5, 868, 0, 0, 7698, 7700, 3, 788, 394, 0, 7699, 7697, 1, 0, 0, 0, 7700, 7703, 1, 0, 0, 0, 7701, 7699, 1, 0, 0, 0, 7701, 7702, 1, 0, 0, 0, 7702, 7710, 1, 0, 0, 0, 7703, 7701, 1, 0, 0, 0, 7704, 7705, 5, 448, 0, 0, 7705, 7706, 3, 728, 364, 0, 7706, 7707, 5, 854, 0, 0, 7707, 7708, 3, 728, 364, 0, 7708, 7710, 1, 0, 0, 0, 7709, 7695, 1, 0, 0, 0, 7709, 7704, 1, 0, 0, 0, 7710, 787, 1, 0, 0, 0, 7711, 7713, 3, 728, 364, 0, 7712, 7714, 7, 138, 0, 0, 7713, 7712, 1, 0, 0, 0, 7713, 7714, 1, 0, 0, 0, 7714, 789, 1, 0, 0, 0, 7715, 7716, 7, 139, 0, 0, 7716, 7718, 5, 866, 0, 0, 7717, 7719, 7, 45, 0, 0, 7718, 7717, 1, 0, 0, 0, 7718, 7719, 1, 0, 0, 0, 7719, 7720, 1, 0, 0, 0, 7720, 7721, 3, 818, 409, 0, 7721, 7723, 5, 867, 0, 0, 7722, 7724, 3, 794, 397, 0, 7723, 7722, 1, 0, 0, 0, 7723, 7724, 1, 0, 0, 0, 7724, 7775, 1, 0, 0, 0, 7725, 7726, 5, 262, 0, 0, 7726, 7734, 5, 866, 0, 0, 7727, 7735, 5, 850, 0, 0, 7728, 7730, 5, 7, 0, 0, 7729, 7728, 1, 0, 0, 0, 7729, 7730, 1, 0, 0, 0, 7730, 7731, 1, 0, 0, 0, 7731, 7735, 3, 818, 409, 0, 7732, 7733, 5, 49, 0, 0, 7733, 7735, 3, 816, 408, 0, 7734, 7727, 1, 0, 0, 0, 7734, 7729, 1, 0, 0, 0, 7734, 7732, 1, 0, 0, 0, 7735, 7736, 1, 0, 0, 0, 7736, 7738, 5, 867, 0, 0, 7737, 7739, 3, 794, 397, 0, 7738, 7737, 1, 0, 0, 0, 7738, 7739, 1, 0, 0, 0, 7739, 7775, 1, 0, 0, 0, 7740, 7741, 7, 140, 0, 0, 7741, 7743, 5, 866, 0, 0, 7742, 7744, 5, 7, 0, 0, 7743, 7742, 1, 0, 0, 0, 7743, 7744, 1, 0, 0, 0, 7744, 7745, 1, 0, 0, 0, 7745, 7746, 3, 818, 409, 0, 7746, 7748, 5, 867, 0, 0, 7747, 7749, 3, 794, 397, 0, 7748, 7747, 1, 0, 0, 0, 7748, 7749, 1, 0, 0, 0, 7749, 7775, 1, 0, 0, 0, 7750, 7751, 5, 266, 0, 0, 7751, 7753, 5, 866, 0, 0, 7752, 7754, 5, 49, 0, 0, 7753, 7752, 1, 0, 0, 0, 7753, 7754, 1, 0, 0, 0, 7754, 7755, 1, 0, 0, 0, 7755, 7766, 3, 816, 408, 0, 7756, 7757, 5, 125, 0, 0, 7757, 7758, 5, 20, 0, 0, 7758, 7763, 3, 260, 130, 0, 7759, 7760, 5, 868, 0, 0, 7760, 7762, 3, 260, 130, 0, 7761, 7759, 1, 0, 0, 0, 7762, 7765, 1, 0, 0, 0, 7763, 7761, 1, 0, 0, 0, 7763, 7764, 1, 0, 0, 0, 7764, 7767, 1, 0, 0, 0, 7765, 7763, 1, 0, 0, 0, 7766, 7756, 1, 0, 0, 0, 7766, 7767, 1, 0, 0, 0, 7767, 7770, 1, 0, 0, 0, 7768, 7769, 5, 156, 0, 0, 7769, 7771, 5, 882, 0, 0, 7770, 7768, 1, 0, 0, 0, 7770, 7771, 1, 0, 0, 0, 7771, 7772, 1, 0, 0, 0, 7772, 7773, 5, 867, 0, 0, 7773, 7775, 1, 0, 0, 0, 7774, 7715, 1, 0, 0, 0, 7774, 7725, 1, 0, 0, 0, 7774, 7740, 1, 0, 0, 0, 7774, 7750, 1, 0, 0, 0, 7775, 791, 1, 0, 0, 0, 7776, 7777, 7, 141, 0, 0, 7777, 7778, 5, 866, 0, 0, 7778, 7781, 3, 820, 410, 0, 7779, 7780, 5, 868, 0, 0, 7780, 7782, 3, 728, 364, 0, 7781, 7779, 1, 0, 0, 0, 7781, 7782, 1, 0, 0, 0, 7782, 7785, 1, 0, 0, 0, 7783, 7784, 5, 868, 0, 0, 7784, 7786, 3, 728, 364, 0, 7785, 7783, 1, 0, 0, 0, 7785, 7786, 1, 0, 0, 0, 7786, 7787, 1, 0, 0, 0, 7787, 7788, 5, 867, 0, 0, 7788, 7789, 3, 794, 397, 0, 7789, 7815, 1, 0, 0, 0, 7790, 7791, 7, 142, 0, 0, 7791, 7792, 5, 866, 0, 0, 7792, 7793, 3, 820, 410, 0, 7793, 7794, 5, 867, 0, 0, 7794, 7795, 3, 794, 397, 0, 7795, 7815, 1, 0, 0, 0, 7796, 7797, 7, 143, 0, 0, 7797, 7798, 5, 866, 0, 0, 7798, 7799, 5, 867, 0, 0, 7799, 7815, 3, 794, 397, 0, 7800, 7801, 5, 273, 0, 0, 7801, 7802, 5, 866, 0, 0, 7802, 7803, 3, 820, 410, 0, 7803, 7804, 5, 868, 0, 0, 7804, 7805, 3, 728, 364, 0, 7805, 7806, 5, 867, 0, 0, 7806, 7807, 3, 794, 397, 0, 7807, 7815, 1, 0, 0, 0, 7808, 7809, 5, 272, 0, 0, 7809, 7810, 5, 866, 0, 0, 7810, 7811, 3, 728, 364, 0, 7811, 7812, 5, 867, 0, 0, 7812, 7813, 3, 794, 397, 0, 7813, 7815, 1, 0, 0, 0, 7814, 7776, 1, 0, 0, 0, 7814, 7790, 1, 0, 0, 0, 7814, 7796, 1, 0, 0, 0, 7814, 7800, 1, 0, 0, 0, 7814, 7808, 1, 0, 0, 0, 7815, 793, 1, 0, 0, 0, 7816, 7822, 5, 129, 0, 0, 7817, 7818, 5, 866, 0, 0, 7818, 7819, 3, 796, 398, 0, 7819, 7820, 5, 867, 0, 0, 7820, 7823, 1, 0, 0, 0, 7821, 7823, 3, 798, 399, 0, 7822, 7817, 1, 0, 0, 0, 7822, 7821, 1, 0, 0, 0, 7823, 795, 1, 0, 0, 0, 7824, 7826, 3, 798, 399, 0, 7825, 7824, 1, 0, 0, 0, 7825, 7826, 1, 0, 0, 0, 7826, 7828, 1, 0, 0, 0, 7827, 7829, 3, 810, 405, 0, 7828, 7827, 1, 0, 0, 0, 7828, 7829, 1, 0, 0, 0, 7829, 7831, 1, 0, 0, 0, 7830, 7832, 3, 258, 129, 0, 7831, 7830, 1, 0, 0, 0, 7831, 7832, 1, 0, 0, 0, 7832, 7834, 1, 0, 0, 0, 7833, 7835, 3, 800, 400, 0, 7834, 7833, 1, 0, 0, 0, 7834, 7835, 1, 0, 0, 0, 7835, 797, 1, 0, 0, 0, 7836, 7837, 3, 722, 361, 0, 7837, 799, 1, 0, 0, 0, 7838, 7839, 3, 802, 401, 0, 7839, 7840, 3, 804, 402, 0, 7840, 801, 1, 0, 0, 0, 7841, 7842, 7, 144, 0, 0, 7842, 803, 1, 0, 0, 0, 7843, 7846, 3, 808, 404, 0, 7844, 7846, 3, 806, 403, 0, 7845, 7843, 1, 0, 0, 0, 7845, 7844, 1, 0, 0, 0, 7846, 805, 1, 0, 0, 0, 7847, 7848, 5, 17, 0, 0, 7848, 7849, 3, 808, 404, 0, 7849, 7850, 5, 11, 0, 0, 7850, 7851, 3, 808, 404, 0, 7851, 807, 1, 0, 0, 0, 7852, 7853, 5, 36, 0, 0, 7853, 7860, 5, 586, 0, 0, 7854, 7855, 5, 669, 0, 0, 7855, 7860, 7, 145, 0, 0, 7856, 7857, 3, 820, 410, 0, 7857, 7858, 7, 145, 0, 0, 7858, 7860, 1, 0, 0, 0, 7859, 7852, 1, 0, 0, 0, 7859, 7854, 1, 0, 0, 0, 7859, 7856, 1, 0, 0, 0, 7860, 809, 1, 0, 0, 0, 7861, 7862, 5, 130, 0, 0, 7862, 7863, 5, 20, 0, 0, 7863, 7868, 3, 820, 410, 0, 7864, 7865, 5, 868, 0, 0, 7865, 7867, 3, 820, 410, 0, 7866, 7864, 1, 0, 0, 0, 7867, 7870, 1, 0, 0, 0, 7868, 7866, 1, 0, 0, 0, 7868, 7869, 1, 0, 0, 0, 7869, 811, 1, 0, 0, 0, 7870, 7868, 1, 0, 0, 0, 7871, 7896, 3, 852, 426, 0, 7872, 7896, 5, 757, 0, 0, 7873, 7896, 5, 289, 0, 0, 7874, 7896, 5, 285, 0, 0, 7875, 7896, 5, 286, 0, 0, 7876, 7896, 5, 287, 0, 0, 7877, 7896, 5, 290, 0, 0, 7878, 7896, 5, 291, 0, 0, 7879, 7896, 5, 292, 0, 0, 7880, 7896, 5, 78, 0, 0, 7881, 7896, 5, 86, 0, 0, 7882, 7896, 5, 288, 0, 0, 7883, 7896, 5, 294, 0, 0, 7884, 7896, 5, 488, 0, 0, 7885, 7896, 5, 295, 0, 0, 7886, 7896, 5, 142, 0, 0, 7887, 7896, 5, 143, 0, 0, 7888, 7896, 5, 297, 0, 0, 7889, 7896, 5, 298, 0, 0, 7890, 7896, 5, 299, 0, 0, 7891, 7896, 5, 300, 0, 0, 7892, 7896, 5, 301, 0, 0, 7893, 7896, 5, 302, 0, 0, 7894, 7896, 5, 303, 0, 0, 7895, 7871, 1, 0, 0, 0, 7895, 7872, 1, 0, 0, 0, 7895, 7873, 1, 0, 0, 0, 7895, 7874, 1, 0, 0, 0, 7895, 7875, 1, 0, 0, 0, 7895, 7876, 1, 0, 0, 0, 7895, 7877, 1, 0, 0, 0, 7895, 7878, 1, 0, 0, 0, 7895, 7879, 1, 0, 0, 0, 7895, 7880, 1, 0, 0, 0, 7895, 7881, 1, 0, 0, 0, 7895, 7882, 1, 0, 0, 0, 7895, 7883, 1, 0, 0, 0, 7895, 7884, 1, 0, 0, 0, 7895, 7885, 1, 0, 0, 0, 7895, 7886, 1, 0, 0, 0, 7895, 7887, 1, 0, 0, 0, 7895, 7888, 1, 0, 0, 0, 7895, 7889, 1, 0, 0, 0, 7895, 7890, 1, 0, 0, 0, 7895, 7891, 1, 0, 0, 0, 7895, 7892, 1, 0, 0, 0, 7895, 7893, 1, 0, 0, 0, 7895, 7894, 1, 0, 0, 0, 7896, 813, 1, 0, 0, 0, 7897, 7898, 7, 146, 0, 0, 7898, 7899, 5, 866, 0, 0, 7899, 7900, 3, 818, 409, 0, 7900, 7901, 5, 867, 0, 0, 7901, 815, 1, 0, 0, 0, 7902, 7907, 3, 818, 409, 0, 7903, 7904, 5, 868, 0, 0, 7904, 7906, 3, 818, 409, 0, 7905, 7903, 1, 0, 0, 0, 7906, 7909, 1, 0, 0, 0, 7907, 7905, 1, 0, 0, 0, 7907, 7908, 1, 0, 0, 0, 7908, 817, 1, 0, 0, 0, 7909, 7907, 1, 0, 0, 0, 7910, 7914, 3, 740, 370, 0, 7911, 7914, 3, 780, 390, 0, 7912, 7914, 3, 820, 410, 0, 7913, 7910, 1, 0, 0, 0, 7913, 7911, 1, 0, 0, 0, 7913, 7912, 1, 0, 0, 0, 7914, 819, 1, 0, 0, 0, 7915, 7916, 6, 410, -1, 0, 7916, 7917, 7, 147, 0, 0, 7917, 7927, 3, 820, 410, 4, 7918, 7919, 3, 822, 411, 0, 7919, 7921, 5, 89, 0, 0, 7920, 7922, 5, 114, 0, 0, 7921, 7920, 1, 0, 0, 0, 7921, 7922, 1, 0, 0, 0, 7922, 7923, 1, 0, 0, 0, 7923, 7924, 7, 148, 0, 0, 7924, 7927, 1, 0, 0, 0, 7925, 7927, 3, 822, 411, 0, 7926, 7915, 1, 0, 0, 0, 7926, 7918, 1, 0, 0, 0, 7926, 7925, 1, 0, 0, 0, 7927, 7934, 1, 0, 0, 0, 7928, 7929, 10, 3, 0, 0, 7929, 7930, 3, 832, 416, 0, 7930, 7931, 3, 820, 410, 4, 7931, 7933, 1, 0, 0, 0, 7932, 7928, 1, 0, 0, 0, 7933, 7936, 1, 0, 0, 0, 7934, 7932, 1, 0, 0, 0, 7934, 7935, 1, 0, 0, 0, 7935, 821, 1, 0, 0, 0, 7936, 7934, 1, 0, 0, 0, 7937, 7938, 6, 411, -1, 0, 7938, 7939, 3, 824, 412, 0, 7939, 8003, 1, 0, 0, 0, 7940, 7942, 10, 6, 0, 0, 7941, 7943, 5, 114, 0, 0, 7942, 7941, 1, 0, 0, 0, 7942, 7943, 1, 0, 0, 0, 7943, 7944, 1, 0, 0, 0, 7944, 7945, 5, 17, 0, 0, 7945, 7946, 3, 822, 411, 0, 7946, 7947, 5, 11, 0, 0, 7947, 7948, 3, 822, 411, 7, 7948, 8002, 1, 0, 0, 0, 7949, 7950, 10, 5, 0, 0, 7950, 7951, 5, 604, 0, 0, 7951, 7952, 5, 99, 0, 0, 7952, 8002, 3, 822, 411, 6, 7953, 7955, 10, 3, 0, 0, 7954, 7956, 5, 114, 0, 0, 7955, 7954, 1, 0, 0, 0, 7955, 7956, 1, 0, 0, 0, 7956, 7957, 1, 0, 0, 0, 7957, 7958, 7, 149, 0, 0, 7958, 8002, 3, 822, 411, 4, 7959, 7961, 10, 9, 0, 0, 7960, 7962, 5, 114, 0, 0, 7961, 7960, 1, 0, 0, 0, 7961, 7962, 1, 0, 0, 0, 7962, 7963, 1, 0, 0, 0, 7963, 7964, 5, 80, 0, 0, 7964, 7967, 5, 866, 0, 0, 7965, 7968, 3, 210, 105, 0, 7966, 7968, 3, 756, 378, 0, 7967, 7965, 1, 0, 0, 0, 7967, 7966, 1, 0, 0, 0, 7968, 7969, 1, 0, 0, 0, 7969, 7970, 5, 867, 0, 0, 7970, 8002, 1, 0, 0, 0, 7971, 7972, 10, 8, 0, 0, 7972, 7973, 5, 89, 0, 0, 7973, 8002, 3, 738, 369, 0, 7974, 7975, 10, 7, 0, 0, 7975, 7982, 3, 828, 414, 0, 7976, 7977, 7, 150, 0, 0, 7977, 7978, 5, 866, 0, 0, 7978, 7979, 3, 210, 105, 0, 7979, 7980, 5, 867, 0, 0, 7980, 7983, 1, 0, 0, 0, 7981, 7983, 3, 822, 411, 0, 7982, 7976, 1, 0, 0, 0, 7982, 7981, 1, 0, 0, 0, 7983, 8002, 1, 0, 0, 0, 7984, 7986, 10, 4, 0, 0, 7985, 7987, 5, 114, 0, 0, 7986, 7985, 1, 0, 0, 0, 7986, 7987, 1, 0, 0, 0, 7987, 7988, 1, 0, 0, 0, 7988, 7989, 5, 99, 0, 0, 7989, 7992, 3, 822, 411, 0, 7990, 7991, 5, 384, 0, 0, 7991, 7993, 5, 882, 0, 0, 7992, 7990, 1, 0, 0, 0, 7992, 7993, 1, 0, 0, 0, 7993, 8002, 1, 0, 0, 0, 7994, 7995, 10, 2, 0, 0, 7995, 7996, 5, 485, 0, 0, 7996, 7997, 5, 510, 0, 0, 7997, 7998, 5, 866, 0, 0, 7998, 7999, 3, 822, 411, 0, 7999, 8000, 5, 867, 0, 0, 8000, 8002, 1, 0, 0, 0, 8001, 7940, 1, 0, 0, 0, 8001, 7949, 1, 0, 0, 0, 8001, 7953, 1, 0, 0, 0, 8001, 7959, 1, 0, 0, 0, 8001, 7971, 1, 0, 0, 0, 8001, 7974, 1, 0, 0, 0, 8001, 7984, 1, 0, 0, 0, 8001, 7994, 1, 0, 0, 0, 8002, 8005, 1, 0, 0, 0, 8003, 8001, 1, 0, 0, 0, 8003, 8004, 1, 0, 0, 0, 8004, 823, 1, 0, 0, 0, 8005, 8003, 1, 0, 0, 0, 8006, 8007, 6, 412, -1, 0, 8007, 8055, 3, 740, 370, 0, 8008, 8055, 3, 780, 390, 0, 8009, 8055, 3, 702, 351, 0, 8010, 8011, 3, 826, 413, 0, 8011, 8012, 3, 824, 412, 12, 8012, 8055, 1, 0, 0, 0, 8013, 8014, 5, 228, 0, 0, 8014, 8055, 3, 824, 412, 11, 8015, 8016, 5, 892, 0, 0, 8016, 8017, 5, 841, 0, 0, 8017, 8055, 3, 824, 412, 10, 8018, 8019, 5, 866, 0, 0, 8019, 8024, 3, 820, 410, 0, 8020, 8021, 5, 868, 0, 0, 8021, 8023, 3, 820, 410, 0, 8022, 8020, 1, 0, 0, 0, 8023, 8026, 1, 0, 0, 0, 8024, 8022, 1, 0, 0, 0, 8024, 8025, 1, 0, 0, 0, 8025, 8027, 1, 0, 0, 0, 8026, 8024, 1, 0, 0, 0, 8027, 8028, 5, 867, 0, 0, 8028, 8055, 1, 0, 0, 0, 8029, 8030, 5, 586, 0, 0, 8030, 8031, 5, 866, 0, 0, 8031, 8034, 3, 820, 410, 0, 8032, 8033, 5, 868, 0, 0, 8033, 8035, 3, 820, 410, 0, 8034, 8032, 1, 0, 0, 0, 8035, 8036, 1, 0, 0, 0, 8036, 8034, 1, 0, 0, 0, 8036, 8037, 1, 0, 0, 0, 8037, 8038, 1, 0, 0, 0, 8038, 8039, 5, 867, 0, 0, 8039, 8055, 1, 0, 0, 0, 8040, 8041, 5, 60, 0, 0, 8041, 8042, 5, 866, 0, 0, 8042, 8043, 3, 210, 105, 0, 8043, 8044, 5, 867, 0, 0, 8044, 8055, 1, 0, 0, 0, 8045, 8046, 5, 866, 0, 0, 8046, 8047, 3, 210, 105, 0, 8047, 8048, 5, 867, 0, 0, 8048, 8055, 1, 0, 0, 0, 8049, 8050, 5, 87, 0, 0, 8050, 8051, 3, 820, 410, 0, 8051, 8052, 3, 70, 35, 0, 8052, 8055, 1, 0, 0, 0, 8053, 8055, 3, 676, 338, 0, 8054, 8006, 1, 0, 0, 0, 8054, 8008, 1, 0, 0, 0, 8054, 8009, 1, 0, 0, 0, 8054, 8010, 1, 0, 0, 0, 8054, 8013, 1, 0, 0, 0, 8054, 8015, 1, 0, 0, 0, 8054, 8018, 1, 0, 0, 0, 8054, 8029, 1, 0, 0, 0, 8054, 8040, 1, 0, 0, 0, 8054, 8045, 1, 0, 0, 0, 8054, 8049, 1, 0, 0, 0, 8054, 8053, 1, 0, 0, 0, 8055, 8073, 1, 0, 0, 0, 8056, 8057, 10, 4, 0, 0, 8057, 8058, 3, 838, 419, 0, 8058, 8059, 3, 824, 412, 5, 8059, 8072, 1, 0, 0, 0, 8060, 8061, 10, 3, 0, 0, 8061, 8062, 3, 834, 417, 0, 8062, 8063, 3, 824, 412, 4, 8063, 8072, 1, 0, 0, 0, 8064, 8065, 10, 2, 0, 0, 8065, 8066, 3, 836, 418, 0, 8066, 8067, 3, 824, 412, 3, 8067, 8072, 1, 0, 0, 0, 8068, 8069, 10, 14, 0, 0, 8069, 8070, 5, 28, 0, 0, 8070, 8072, 3, 706, 353, 0, 8071, 8056, 1, 0, 0, 0, 8071, 8060, 1, 0, 0, 0, 8071, 8064, 1, 0, 0, 0, 8071, 8068, 1, 0, 0, 0, 8072, 8075, 1, 0, 0, 0, 8073, 8071, 1, 0, 0, 0, 8073, 8074, 1, 0, 0, 0, 8074, 825, 1, 0, 0, 0, 8075, 8073, 1, 0, 0, 0, 8076, 8077, 7, 151, 0, 0, 8077, 827, 1, 0, 0, 0, 8078, 8079, 5, 859, 0, 0, 8079, 8087, 5, 858, 0, 0, 8080, 8081, 5, 860, 0, 0, 8081, 8087, 5, 857, 0, 0, 8082, 8083, 5, 859, 0, 0, 8083, 8084, 5, 857, 0, 0, 8084, 8087, 5, 858, 0, 0, 8085, 8087, 3, 830, 415, 0, 8086, 8078, 1, 0, 0, 0, 8086, 8080, 1, 0, 0, 0, 8086, 8082, 1, 0, 0, 0, 8086, 8085, 1, 0, 0, 0, 8087, 829, 1, 0, 0, 0, 8088, 8089, 5, 859, 0, 0, 8089, 8096, 5, 857, 0, 0, 8090, 8091, 5, 858, 0, 0, 8091, 8096, 5, 857, 0, 0, 8092, 8096, 5, 857, 0, 0, 8093, 8096, 5, 858, 0, 0, 8094, 8096, 5, 859, 0, 0, 8095, 8088, 1, 0, 0, 0, 8095, 8090, 1, 0, 0, 0, 8095, 8092, 1, 0, 0, 0, 8095, 8093, 1, 0, 0, 0, 8095, 8094, 1, 0, 0, 0, 8096, 831, 1, 0, 0, 0, 8097, 8105, 5, 11, 0, 0, 8098, 8099, 5, 863, 0, 0, 8099, 8105, 5, 863, 0, 0, 8100, 8105, 5, 196, 0, 0, 8101, 8105, 5, 124, 0, 0, 8102, 8103, 5, 862, 0, 0, 8103, 8105, 5, 862, 0, 0, 8104, 8097, 1, 0, 0, 0, 8104, 8098, 1, 0, 0, 0, 8104, 8100, 1, 0, 0, 0, 8104, 8101, 1, 0, 0, 0, 8104, 8102, 1, 0, 0, 0, 8105, 833, 1, 0, 0, 0, 8106, 8107, 5, 859, 0, 0, 8107, 8114, 5, 859, 0, 0, 8108, 8109, 5, 858, 0, 0, 8109, 8114, 5, 858, 0, 0, 8110, 8114, 5, 863, 0, 0, 8111, 8114, 5, 864, 0, 0, 8112, 8114, 5, 862, 0, 0, 8113, 8106, 1, 0, 0, 0, 8113, 8108, 1, 0, 0, 0, 8113, 8110, 1, 0, 0, 0, 8113, 8111, 1, 0, 0, 0, 8113, 8112, 1, 0, 0, 0, 8114, 835, 1, 0, 0, 0, 8115, 8116, 7, 152, 0, 0, 8116, 837, 1, 0, 0, 0, 8117, 8118, 5, 854, 0, 0, 8118, 8123, 5, 858, 0, 0, 8119, 8120, 5, 854, 0, 0, 8120, 8121, 5, 858, 0, 0, 8121, 8123, 5, 858, 0, 0, 8122, 8117, 1, 0, 0, 0, 8122, 8119, 1, 0, 0, 0, 8123, 839, 1, 0, 0, 0, 8124, 8125, 7, 153, 0, 0, 8125, 841, 1, 0, 0, 0, 8126, 8127, 7, 154, 0, 0, 8127, 843, 1, 0, 0, 0, 8128, 8129, 7, 155, 0, 0, 8129, 845, 1, 0, 0, 0, 8130, 8131, 7, 156, 0, 0, 8131, 847, 1, 0, 0, 0, 8132, 8133, 7, 157, 0, 0, 8133, 849, 1, 0, 0, 0, 8134, 8135, 7, 158, 0, 0, 8135, 851, 1, 0, 0, 0, 8136, 8137, 7, 159, 0, 0, 8137, 853, 1, 0, 0, 0, 1173, 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, 3954, 3961, 3968, 3976, 3982, 3990, 3993, 3996, 4003, 4006, 4009, 4013, 4017, 4023, 4030, 4040, 4044, 4053, 4056, 4060, 4066, 4074, 4079, 4083, 4089, 4095, 4098, 4100, 4104, 4109, 4116, 4126, 4132, 4137, 4141, 4144, 4147, 4150, 4153, 4156, 4159, 4163, 4167, 4175, 4179, 4182, 4184, 4197, 4200, 4207, 4217, 4220, 4225, 4227, 4231, 4239, 4245, 4254, 4267, 4271, 4277, 4283, 4286, 4290, 4293, 4300, 4312, 4316, 4324, 4336, 4342, 4344, 4350, 4352, 4354, 4360, 4368, 4376, 4380, 4385, 4387, 4396, 4401, 4406, 4423, 4428, 4431, 4437, 4444, 4449, 4458, 4461, 4465, 4469, 4473, 4476, 4479, 4482, 4486, 4490, 4493, 4496, 4499, 4506, 4510, 4525, 4538, 4546, 4556, 4560, 4563, 4569, 4572, 4575, 4584, 4593, 4603, 4607, 4617, 4621, 4632, 4636, 4645, 4654, 4657, 4661, 4666, 4670, 4679, 4682, 4685, 4692, 4698, 4704, 4730, 4733, 4736, 4755, 4757, 4780, 4783, 4786, 4805, 4807, 4821, 4834, 4871, 4876, 4911, 4925, 4932, 4936, 4942, 4950, 4952, 4963, 4973, 4980, 4986, 4994, 4999, 5007, 5015, 5023, 5031, 5037, 5042, 5047, 5052, 5058, 5060, 5071, 5076, 5083, 5085, 5099, 5105, 5110, 5115, 5121, 5128, 5136, 5144, 5149, 5155, 5158, 5166, 5173, 5182, 5185, 5202, 5210, 5218, 5222, 5229, 5235, 5243, 5248, 5255, 5263, 5270, 5275, 5278, 5280, 5286, 5288, 5292, 5294, 5299, 5306, 5311, 5315, 5320, 5324, 5330, 5336, 5341, 5344, 5346, 5352, 5354, 5358, 5360, 5365, 5370, 5377, 5386, 5391, 5400, 5404, 5410, 5415, 5418, 5420, 5426, 5428, 5431, 5438, 5440, 5445, 5452, 5461, 5467, 5469, 5476, 5479, 5491, 5497, 5505, 5508, 5512, 5515, 5519, 5521, 5532, 5535, 5539, 5542, 5545, 5552, 5564, 5567, 5574, 5580, 5590, 5595, 5602, 5607, 5613, 5617, 5621, 5629, 5633, 5637, 5643, 5645, 5657, 5662, 5668, 5674, 5678, 5683, 5685, 5709, 5713, 5716, 5725, 5729, 5738, 5742, 5746, 5752, 5754, 5763, 5773, 5800, 5804, 5809, 5816, 5819, 5825, 5835, 5845, 5855, 5861, 5870, 5876, 5883, 5885, 5893, 5899, 5903, 5920, 5930, 5934, 5938, 5948, 5953, 6025, 6043, 6051, 6057, 6069, 6073, 6084, 6088, 6097, 6105, 6112, 6116, 6123, 6128, 6131, 6134, 6145, 6154, 6163, 6166, 6180, 6198, 6211, 6214, 6218, 6221, 6223, 6230, 6237, 6241, 6248, 6255, 6258, 6274, 6277, 6287, 6291, 6297, 6300, 6303, 6308, 6312, 6315, 6322, 6325, 6331, 6367, 6370, 6382, 6385, 6401, 6403, 6407, 6414, 6418, 6425, 6428, 6437, 6440, 6445, 6451, 6453, 6459, 6463, 6469, 6472, 6475, 6488, 6491, 6497, 6500, 6508, 6516, 6522, 6525, 6529, 6543, 6555, 6563, 6567, 6574, 6581, 6586, 6599, 6608, 6616, 6621, 6624, 6629, 6632, 6644, 6649, 6662, 6664, 6669, 6673, 6676, 6678, 6685, 6692, 6695, 6698, 6704, 6708, 6714, 6722, 6731, 6744, 6749, 6757, 6760, 6765, 6770, 6778, 6781, 6789, 6793, 6800, 6806, 6809, 6813, 6826, 6832, 6844, 6847, 6856, 6861, 6882, 6898, 6908, 6913, 6918, 6920, 6923, 6927, 6929, 6936, 6944, 6946, 6949, 6953, 6957, 6962, 6964, 6967, 6971, 6978, 6983, 6996, 7006, 7009, 7012, 7025, 7031, 7034, 7042, 7049, 7069, 7076, 7078, 7085, 7087, 7091, 7098, 7104, 7115, 7121, 7127, 7130, 7134, 7139, 7142, 7146, 7150, 7152, 7157, 7162, 7175, 7178, 7182, 7185, 7188, 7193, 7198, 7204, 7207, 7212, 7215, 7220, 7223, 7227, 7232, 7237, 7242, 7247, 7250, 7255, 7260, 7265, 7271, 7276, 7281, 7286, 7290, 7293, 7298, 7302, 7306, 7314, 7321, 7325, 7330, 7335, 7339, 7341, 7344, 7360, 7370, 7380, 7389, 7398, 7405, 7412, 7420, 7428, 7440, 7447, 7457, 7462, 7465, 7470, 7473, 7495, 7504, 7507, 7512, 7545, 7549, 7558, 7562, 7571, 7579, 7584, 7592, 7597, 7602, 7604, 7613, 7618, 7626, 7631, 7639, 7647, 7650, 7660, 7678, 7681, 7684, 7688, 7701, 7709, 7713, 7718, 7723, 7729, 7734, 7738, 7743, 7748, 7753, 7763, 7766, 7770, 7774, 7781, 7785, 7814, 7822, 7825, 7828, 7831, 7834, 7845, 7859, 7868, 7895, 7907, 7913, 7921, 7926, 7934, 7942, 7955, 7961, 7967, 7982, 7986, 7992, 8001, 8003, 8024, 8036, 8054, 8071, 8073, 8086, 8095, 8104, 8113, 8122] \ No newline at end of file diff --git a/src/lib/mysql/MySqlParser.ts b/src/lib/mysql/MySqlParser.ts index b0580e47..9df6b0f4 100644 --- a/src/lib/mysql/MySqlParser.ts +++ b/src/lib/mysql/MySqlParser.ts @@ -22014,14 +22014,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3949; - this.expression(0); this.state = 3951; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { case 1: + { + this.state = 3949; + this.expression(0); + } + break; + case 2: { this.state = 3950; + this.columnNamePathAllowEmpty(); + } + break; + } + this.state = 3954; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { + case 1: + { + this.state = 3953; localContext._order = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -22057,25 +22071,25 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3953; + this.state = 3956; this.tableSource(); - this.state = 3958; + this.state = 3961; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 545, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 546, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3954; + this.state = 3957; this.match(MySqlParser.COMMA); - this.state = 3955; + this.state = 3958; this.tableSource(); } } } - this.state = 3960; + this.state = 3963; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 545, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 546, this.context); } } } @@ -22099,30 +22113,30 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 3979; + this.state = 3982; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 548, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { case 1: localContext = new TableSourceBaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3961; + this.state = 3964; this.tableSourceItem(); - this.state = 3965; + this.state = 3968; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 546, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 547, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3962; + this.state = 3965; this.joinPart(); } } } - this.state = 3967; + this.state = 3970; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 546, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 547, this.context); } } break; @@ -22130,25 +22144,25 @@ export class MySqlParser extends SQLParserBase { localContext = new TableSourceNestedContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3968; + this.state = 3971; this.match(MySqlParser.LR_BRACKET); - this.state = 3969; + this.state = 3972; this.tableSourceItem(); - this.state = 3973; + this.state = 3976; 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 = 3970; + this.state = 3973; this.joinPart(); } } - this.state = 3975; + this.state = 3978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3976; + this.state = 3979; this.match(MySqlParser.RR_BRACKET); } break; @@ -22156,7 +22170,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableJsonContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3978; + this.state = 3981; this.jsonTable(); } break; @@ -22182,75 +22196,75 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 4020; + this.state = 4023; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 558, this.context) ) { case 1: localContext = new AtomTableItemContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3981; + this.state = 3984; this.tableName(); - this.state = 3987; + this.state = 3990; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { case 1: { - this.state = 3982; + this.state = 3985; this.match(MySqlParser.KW_PARTITION); - this.state = 3983; + this.state = 3986; this.match(MySqlParser.LR_BRACKET); - this.state = 3984; + this.state = 3987; this.partitionNames(); - this.state = 3985; + this.state = 3988; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3993; + this.state = 3996; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 552, this.context) ) { case 1: { - this.state = 3990; + this.state = 3993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3989; + this.state = 3992; this.match(MySqlParser.KW_AS); } } - this.state = 3992; + this.state = 3995; (localContext as AtomTableItemContext)._alias = this.uid(); } break; } - this.state = 4003; + this.state = 4006; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 553, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 554, this.context) ) { case 1: { - this.state = 3995; + this.state = 3998; this.indexHint(); - this.state = 4000; + this.state = 4003; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 552, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 553, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3996; + this.state = 3999; this.match(MySqlParser.COMMA); - this.state = 3997; + this.state = 4000; this.indexHint(); } } } - this.state = 4002; + this.state = 4005; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 552, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 553, this.context); } } break; @@ -22261,36 +22275,36 @@ export class MySqlParser extends SQLParserBase { localContext = new SubqueryTableItemContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4006; + this.state = 4009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 95) { { - this.state = 4005; + this.state = 4008; this.match(MySqlParser.KW_LATERAL); } } - this.state = 4008; + this.state = 4011; this.atomSubQueryTableSource(); - this.state = 4010; + this.state = 4013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4009; + this.state = 4012; this.match(MySqlParser.KW_AS); } } - this.state = 4012; + this.state = 4015; (localContext as SubqueryTableItemContext)._alias = this.uid(); - this.state = 4014; + this.state = 4017; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { case 1: { - this.state = 4013; + this.state = 4016; this.fullColumnNames(); } break; @@ -22301,11 +22315,11 @@ export class MySqlParser extends SQLParserBase { localContext = new TableSourcesItemContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4016; + this.state = 4019; this.match(MySqlParser.LR_BRACKET); - this.state = 4017; + this.state = 4020; this.tableSources(); - this.state = 4018; + this.state = 4021; this.match(MySqlParser.RR_BRACKET); } break; @@ -22329,24 +22343,24 @@ export class MySqlParser extends SQLParserBase { let localContext = new AtomSubQueryTableSourceContext(this.context, this.state); this.enterRule(localContext, 268, MySqlParser.RULE_atomSubQueryTableSource); try { - this.state = 4027; + this.state = 4030; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 558, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 559, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4022; + this.state = 4025; this.selectStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4023; + this.state = 4026; this.match(MySqlParser.LR_BRACKET); - this.state = 4024; + this.state = 4027; localContext._parenthesisSubquery = this.selectStatement(); - this.state = 4025; + this.state = 4028; this.match(MySqlParser.RR_BRACKET); } break; @@ -22372,11 +22386,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4029; + this.state = 4032; this.match(MySqlParser.LR_BRACKET); - this.state = 4030; + this.state = 4033; this.columnNames(); - this.state = 4031; + this.state = 4034; this.match(MySqlParser.RR_BRACKET); } } @@ -22401,7 +22415,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4033; + this.state = 4036; localContext._indexHintAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 79 || _la === 187)) { @@ -22411,7 +22425,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4034; + this.state = 4037; localContext._keyFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -22421,31 +22435,31 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4037; + this.state = 4040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4035; + this.state = 4038; this.match(MySqlParser.KW_FOR); - this.state = 4036; + this.state = 4039; this.indexHintType(); } } - this.state = 4039; + this.state = 4042; this.match(MySqlParser.LR_BRACKET); - this.state = 4041; + this.state = 4044; 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 = 4040; + this.state = 4043; this.indexNames(); } } - this.state = 4043; + this.state = 4046; this.match(MySqlParser.RR_BRACKET); } } @@ -22467,31 +22481,31 @@ export class MySqlParser extends SQLParserBase { let localContext = new IndexHintTypeContext(this.context, this.state); this.enterRule(localContext, 274, MySqlParser.RULE_indexHintType); try { - this.state = 4050; + this.state = 4053; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_JOIN: this.enterOuterAlt(localContext, 1); { - this.state = 4045; + this.state = 4048; this.match(MySqlParser.KW_JOIN); } break; case MySqlParser.KW_ORDER: this.enterOuterAlt(localContext, 2); { - this.state = 4046; + this.state = 4049; this.match(MySqlParser.KW_ORDER); - this.state = 4047; + this.state = 4050; this.match(MySqlParser.KW_BY); } break; case MySqlParser.KW_GROUP: this.enterOuterAlt(localContext, 3); { - this.state = 4048; + this.state = 4051; this.match(MySqlParser.KW_GROUP); - this.state = 4049; + this.state = 4052; this.match(MySqlParser.KW_BY); } break; @@ -22519,7 +22533,7 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 4101; + this.state = 4104; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CROSS: @@ -22528,12 +22542,12 @@ export class MySqlParser extends SQLParserBase { localContext = new InnerJoinContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4053; + this.state = 4056; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 35 || _la === 84) { { - this.state = 4052; + this.state = 4055; _la = this.tokenStream.LA(1); if(!(_la === 35 || _la === 84)) { this.errorHandler.recoverInline(this); @@ -22545,35 +22559,35 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4055; + this.state = 4058; this.match(MySqlParser.KW_JOIN); - this.state = 4057; + this.state = 4060; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 564, this.context) ) { case 1: { - this.state = 4056; + this.state = 4059; this.match(MySqlParser.KW_LATERAL); } break; } - this.state = 4059; + this.state = 4062; this.tableSourceItem(); - this.state = 4063; + this.state = 4066; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 564, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 565, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4060; + this.state = 4063; this.joinSpec(); } } } - this.state = 4065; + this.state = 4068; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 564, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 565, this.context); } } break; @@ -22581,25 +22595,25 @@ export class MySqlParser extends SQLParserBase { localContext = new StraightJoinContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4066; + this.state = 4069; this.match(MySqlParser.KW_STRAIGHT_JOIN); - this.state = 4067; + this.state = 4070; this.tableSourceItem(); - this.state = 4071; + this.state = 4074; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 565, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 566, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4068; + this.state = 4071; this.joinSpec(); } } } - this.state = 4073; + this.state = 4076; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 565, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 566, this.context); } } break; @@ -22608,7 +22622,7 @@ export class MySqlParser extends SQLParserBase { localContext = new OuterJoinContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4074; + this.state = 4077; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 150)) { this.errorHandler.recoverInline(this); @@ -22617,45 +22631,45 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4076; + this.state = 4079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 4075; + this.state = 4078; this.match(MySqlParser.KW_OUTER); } } - this.state = 4078; + this.state = 4081; this.match(MySqlParser.KW_JOIN); - this.state = 4080; + this.state = 4083; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 567, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 568, this.context) ) { case 1: { - this.state = 4079; + this.state = 4082; this.match(MySqlParser.KW_LATERAL); } break; } - this.state = 4082; + this.state = 4085; this.tableSourceItem(); - this.state = 4086; + this.state = 4089; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 568, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 569, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4083; + this.state = 4086; this.joinSpec(); } } } - this.state = 4088; + this.state = 4091; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 568, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 569, this.context); } } break; @@ -22663,26 +22677,26 @@ export class MySqlParser extends SQLParserBase { localContext = new NaturalJoinContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4089; + this.state = 4092; this.match(MySqlParser.KW_NATURAL); - this.state = 4097; + this.state = 4100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84 || _la === 98 || _la === 150) { { - this.state = 4092; + this.state = 4095; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_INNER: { - this.state = 4090; + this.state = 4093; this.match(MySqlParser.KW_INNER); } break; case MySqlParser.KW_LEFT: case MySqlParser.KW_RIGHT: { - this.state = 4091; + this.state = 4094; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 150)) { this.errorHandler.recoverInline(this); @@ -22696,12 +22710,12 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4095; + this.state = 4098; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 4094; + this.state = 4097; this.match(MySqlParser.KW_OUTER); } } @@ -22709,9 +22723,9 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4099; + this.state = 4102; this.match(MySqlParser.KW_JOIN); - this.state = 4100; + this.state = 4103; this.tableSourceItem(); } break; @@ -22737,27 +22751,27 @@ export class MySqlParser extends SQLParserBase { let localContext = new JoinSpecContext(this.context, this.state); this.enterRule(localContext, 278, MySqlParser.RULE_joinSpec); try { - this.state = 4113; + this.state = 4116; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { { - this.state = 4103; - this.match(MySqlParser.KW_ON); this.state = 4106; + this.match(MySqlParser.KW_ON); + this.state = 4109; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 573, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 574, this.context) ) { case 1: { - this.state = 4104; + this.state = 4107; this.expression(0); } break; case 2: { - this.state = 4105; + this.state = 4108; this.columnNamePathAllowEmpty(); } break; @@ -22768,13 +22782,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 4108; + this.state = 4111; this.match(MySqlParser.KW_USING); - this.state = 4109; + this.state = 4112; this.match(MySqlParser.LR_BRACKET); - this.state = 4110; + this.state = 4113; this.columnNames(); - this.state = 4111; + this.state = 4114; this.match(MySqlParser.RR_BRACKET); } break; @@ -22800,28 +22814,28 @@ export class MySqlParser extends SQLParserBase { let localContext = new QueryExpressionContext(this.context, this.state); this.enterRule(localContext, 280, MySqlParser.RULE_queryExpression); try { - this.state = 4123; + this.state = 4126; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 575, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 576, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4115; + this.state = 4118; this.match(MySqlParser.LR_BRACKET); - this.state = 4116; + this.state = 4119; this.querySpecification(); - this.state = 4117; + this.state = 4120; this.match(MySqlParser.RR_BRACKET); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4119; + this.state = 4122; this.match(MySqlParser.LR_BRACKET); - this.state = 4120; + this.state = 4123; this.queryExpression(); - this.state = 4121; + this.state = 4124; this.match(MySqlParser.RR_BRACKET); } break; @@ -22848,55 +22862,45 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4125; + this.state = 4128; this.match(MySqlParser.KW_SELECT); - this.state = 4129; + this.state = 4132; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 576, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 577, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4126; + this.state = 4129; this.selectSpec(); } } } - this.state = 4131; + this.state = 4134; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 576, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 577, this.context); } - this.state = 4132; + this.state = 4135; this.selectElements(); - this.state = 4134; + this.state = 4137; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 578, this.context) ) { case 1: { - this.state = 4133; + this.state = 4136; this.intoClause(); } break; } - this.state = 4136; + this.state = 4139; this.fromClause(); - this.state = 4138; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 578, this.context) ) { - case 1: - { - this.state = 4137; - this.groupByClause(); - } - break; - } this.state = 4141; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: { this.state = 4140; - this.havingClause(); + this.groupByClause(); } break; } @@ -22906,7 +22910,7 @@ export class MySqlParser extends SQLParserBase { case 1: { this.state = 4143; - this.windowClause(); + this.havingClause(); } break; } @@ -22916,7 +22920,7 @@ export class MySqlParser extends SQLParserBase { case 1: { this.state = 4146; - this.orderByClause(); + this.windowClause(); } break; } @@ -22926,7 +22930,7 @@ export class MySqlParser extends SQLParserBase { case 1: { this.state = 4149; - this.limitClause(); + this.orderByClause(); } break; } @@ -22936,7 +22940,7 @@ export class MySqlParser extends SQLParserBase { case 1: { this.state = 4152; - this.intoClause(); + this.limitClause(); } break; } @@ -22946,6 +22950,16 @@ export class MySqlParser extends SQLParserBase { case 1: { this.state = 4155; + this.intoClause(); + } + break; + } + this.state = 4159; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 585, this.context) ) { + case 1: + { + this.state = 4158; this.unionStatement(); } break; @@ -22973,14 +22987,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4158; + this.state = 4161; this.match(MySqlParser.KW_UNION); - this.state = 4160; + this.state = 4163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 4159; + this.state = 4162; localContext._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -22993,18 +23007,18 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4164; + this.state = 4167; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 4162; + this.state = 4165; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 4163; + this.state = 4166; this.queryExpression(); } break; @@ -23034,64 +23048,64 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4166; + this.state = 4169; this.match(MySqlParser.KW_LATERAL); - this.state = 4181; + this.state = 4184; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 590, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 591, this.context) ) { case 1: { - this.state = 4167; + this.state = 4170; this.querySpecification(); } break; case 2: { - this.state = 4168; + this.state = 4171; this.queryExpression(); } break; case 3: { { - this.state = 4169; - this.match(MySqlParser.LR_BRACKET); this.state = 4172; + this.match(MySqlParser.LR_BRACKET); + this.state = 4175; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 4170; + this.state = 4173; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 4171; + this.state = 4174; this.queryExpression(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4174; + this.state = 4177; this.match(MySqlParser.RR_BRACKET); - this.state = 4179; + this.state = 4182; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 589, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 590, this.context) ) { case 1: { - this.state = 4176; + this.state = 4179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4175; + this.state = 4178; this.match(MySqlParser.KW_AS); } } - this.state = 4178; + this.state = 4181; localContext._alias = this.uid(); } break; @@ -23123,42 +23137,42 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4183; + this.state = 4186; this.match(MySqlParser.KW_JSON_TABLE); - this.state = 4184; + this.state = 4187; this.match(MySqlParser.LR_BRACKET); - this.state = 4185; + this.state = 4188; this.match(MySqlParser.STRING_LITERAL); - this.state = 4186; + this.state = 4189; this.match(MySqlParser.COMMA); - this.state = 4187; + this.state = 4190; this.match(MySqlParser.STRING_LITERAL); - this.state = 4188; + this.state = 4191; this.match(MySqlParser.KW_COLUMNS); - this.state = 4189; + this.state = 4192; this.match(MySqlParser.LR_BRACKET); - this.state = 4190; + this.state = 4193; this.jsonColumnList(); - this.state = 4191; + this.state = 4194; this.match(MySqlParser.RR_BRACKET); - this.state = 4192; + this.state = 4195; this.match(MySqlParser.RR_BRACKET); - this.state = 4197; + this.state = 4200; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 592, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 593, this.context) ) { case 1: { - this.state = 4194; + this.state = 4197; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4193; + this.state = 4196; this.match(MySqlParser.KW_AS); } } - this.state = 4196; + this.state = 4199; localContext._alias = this.uid(); } break; @@ -23186,21 +23200,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4199; + this.state = 4202; this.jsonColumn(); - this.state = 4204; + this.state = 4207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4200; + this.state = 4203; this.match(MySqlParser.COMMA); - this.state = 4201; + this.state = 4204; this.jsonColumn(); } } - this.state = 4206; + this.state = 4209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23225,22 +23239,22 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 292, MySqlParser.RULE_jsonColumn); let _la: number; try { - this.state = 4236; + this.state = 4239; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 599, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 600, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4207; + this.state = 4210; this.columnName(); - this.state = 4224; + this.state = 4227; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: { - this.state = 4208; + this.state = 4211; this.match(MySqlParser.KW_FOR); - this.state = 4209; + this.state = 4212; this.match(MySqlParser.KW_ORDINALITY); } break; @@ -23304,33 +23318,33 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_POINT: case MySqlParser.KW_POLYGON: { - this.state = 4210; + this.state = 4213; this.dataType(); - this.state = 4222; + this.state = 4225; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PATH: { - this.state = 4211; + this.state = 4214; this.match(MySqlParser.KW_PATH); - this.state = 4212; + this.state = 4215; this.match(MySqlParser.STRING_LITERAL); - this.state = 4214; + this.state = 4217; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 594, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 595, this.context) ) { case 1: { - this.state = 4213; + this.state = 4216; this.jsonOnEmpty(); } break; } - this.state = 4217; + this.state = 4220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 116 || _la === 382) { { - this.state = 4216; + this.state = 4219; this.jsonOnError(); } } @@ -23339,11 +23353,11 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_EXISTS: { - this.state = 4219; + this.state = 4222; this.match(MySqlParser.KW_EXISTS); - this.state = 4220; + this.state = 4223; this.match(MySqlParser.KW_PATH); - this.state = 4221; + this.state = 4224; this.match(MySqlParser.STRING_LITERAL); } break; @@ -23360,27 +23374,27 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4226; + this.state = 4229; this.match(MySqlParser.KW_NESTED); - this.state = 4228; + this.state = 4231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 4227; + this.state = 4230; this.match(MySqlParser.KW_PATH); } } - this.state = 4230; + this.state = 4233; this.match(MySqlParser.STRING_LITERAL); - this.state = 4231; + this.state = 4234; this.match(MySqlParser.KW_COLUMNS); - this.state = 4232; + this.state = 4235; this.match(MySqlParser.LR_BRACKET); - this.state = 4233; + this.state = 4236; this.jsonColumnList(); - this.state = 4234; + this.state = 4237; this.match(MySqlParser.RR_BRACKET); } break; @@ -23406,35 +23420,35 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4242; + this.state = 4245; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NULL_LITERAL: { - this.state = 4238; + this.state = 4241; this.match(MySqlParser.KW_NULL_LITERAL); } break; case MySqlParser.KW_ERROR: { - this.state = 4239; + this.state = 4242; this.match(MySqlParser.KW_ERROR); } break; case MySqlParser.KW_DEFAULT: { - this.state = 4240; + this.state = 4243; this.match(MySqlParser.KW_DEFAULT); - this.state = 4241; + this.state = 4244; this.defaultValue(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4244; + this.state = 4247; this.match(MySqlParser.KW_ON); - this.state = 4245; + this.state = 4248; this.match(MySqlParser.KW_EMPTY); } } @@ -23458,35 +23472,35 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4251; + this.state = 4254; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NULL_LITERAL: { - this.state = 4247; + this.state = 4250; this.match(MySqlParser.KW_NULL_LITERAL); } break; case MySqlParser.KW_ERROR: { - this.state = 4248; + this.state = 4251; this.match(MySqlParser.KW_ERROR); } break; case MySqlParser.KW_DEFAULT: { - this.state = 4249; + this.state = 4252; this.match(MySqlParser.KW_DEFAULT); - this.state = 4250; + this.state = 4253; this.defaultValue(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4253; + this.state = 4256; this.match(MySqlParser.KW_ON); - this.state = 4254; + this.state = 4257; this.match(MySqlParser.KW_ERROR); } } @@ -23509,7 +23523,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 298, MySqlParser.RULE_selectSpec); let _la: number; try { - this.state = 4264; + this.state = 4267; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALL: @@ -23517,7 +23531,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DISTINCTROW: this.enterOuterAlt(localContext, 1); { - this.state = 4256; + this.state = 4259; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49 || _la === 50)) { this.errorHandler.recoverInline(this); @@ -23531,35 +23545,35 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_HIGH_PRIORITY: this.enterOuterAlt(localContext, 2); { - this.state = 4257; + this.state = 4260; this.match(MySqlParser.KW_HIGH_PRIORITY); } break; case MySqlParser.KW_STRAIGHT_JOIN: this.enterOuterAlt(localContext, 3); { - this.state = 4258; + this.state = 4261; this.match(MySqlParser.KW_STRAIGHT_JOIN); } break; case MySqlParser.KW_SQL_SMALL_RESULT: this.enterOuterAlt(localContext, 4); { - this.state = 4259; + this.state = 4262; this.match(MySqlParser.KW_SQL_SMALL_RESULT); } break; case MySqlParser.KW_SQL_BIG_RESULT: this.enterOuterAlt(localContext, 5); { - this.state = 4260; + this.state = 4263; this.match(MySqlParser.KW_SQL_BIG_RESULT); } break; case MySqlParser.KW_SQL_BUFFER_RESULT: this.enterOuterAlt(localContext, 6); { - this.state = 4261; + this.state = 4264; this.match(MySqlParser.KW_SQL_BUFFER_RESULT); } break; @@ -23567,7 +23581,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SQL_NO_CACHE: this.enterOuterAlt(localContext, 7); { - this.state = 4262; + this.state = 4265; _la = this.tokenStream.LA(1); if(!(_la === 637 || _la === 638)) { this.errorHandler.recoverInline(this); @@ -23581,7 +23595,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SQL_CALC_FOUND_ROWS: this.enterOuterAlt(localContext, 8); { - this.state = 4263; + this.state = 4266; this.match(MySqlParser.KW_SQL_CALC_FOUND_ROWS); } break; @@ -23610,39 +23624,39 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4268; + this.state = 4271; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 603, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 604, this.context) ) { case 1: { - this.state = 4266; + this.state = 4269; this.pureAllColumns(); } break; case 2: { - this.state = 4267; + this.state = 4270; this.selectElement(); } break; } - this.state = 4274; + this.state = 4277; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 604, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 605, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4270; + this.state = 4273; this.match(MySqlParser.COMMA); - this.state = 4271; + this.state = 4274; this.selectElement(); } } } - this.state = 4276; + this.state = 4279; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 604, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 605, this.context); } } } @@ -23665,14 +23679,14 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 302, MySqlParser.RULE_selectElement); let _la: number; try { - this.state = 4297; + this.state = 4300; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 609, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { case 1: localContext = new SelectElement_starContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4277; + this.state = 4280; this.tableAllColumns(); } break; @@ -23680,24 +23694,24 @@ export class MySqlParser extends SQLParserBase { localContext = new SelectElement_labelContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4278; + this.state = 4281; this.selectLiteralColumnName(); - this.state = 4283; + this.state = 4286; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 606, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 607, this.context) ) { case 1: { - this.state = 4280; + this.state = 4283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4279; + this.state = 4282; this.match(MySqlParser.KW_AS); } } - this.state = 4282; + this.state = 4285; (localContext as SelectElement_labelContext)._alias = this.uid(); } break; @@ -23708,24 +23722,24 @@ export class MySqlParser extends SQLParserBase { localContext = new SelectElement_exprContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4285; + this.state = 4288; this.selectExpressionColumnName(); - this.state = 4290; + this.state = 4293; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 608, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 609, this.context) ) { case 1: { - this.state = 4287; + this.state = 4290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4286; + this.state = 4289; this.match(MySqlParser.KW_AS); } } - this.state = 4289; + this.state = 4292; (localContext as SelectElement_exprContext)._alias = this.uid(); } break; @@ -23736,15 +23750,15 @@ export class MySqlParser extends SQLParserBase { localContext = new SelectElement_dot_emptyContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4292; + this.state = 4295; this.uid(); - this.state = 4293; + this.state = 4296; this.match(MySqlParser.DOT); - this.state = 4294; + this.state = 4297; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 4295; + this.state = 4298; this.emptyColumn(); } break; @@ -23770,11 +23784,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4299; + this.state = 4302; this.fullId(); - this.state = 4300; + this.state = 4303; this.match(MySqlParser.DOT); - this.state = 4301; + this.state = 4304; this.match(MySqlParser.STAR); } } @@ -23798,7 +23812,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4303; + this.state = 4306; this.match(MySqlParser.STAR); } } @@ -23822,7 +23836,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4305; + this.state = 4308; this.columnName(); } } @@ -23844,26 +23858,26 @@ export class MySqlParser extends SQLParserBase { let localContext = new SelectExpressionColumnNameContext(this.context, this.state); this.enterRule(localContext, 310, MySqlParser.RULE_selectExpressionColumnName); try { - this.state = 4313; + this.state = 4316; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 611, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 612, this.context) ) { case 1: localContext = new SelectExpressionElementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4309; + this.state = 4312; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 611, this.context) ) { case 1: { - this.state = 4307; + this.state = 4310; this.match(MySqlParser.LOCAL_ID); - this.state = 4308; + this.state = 4311; this.match(MySqlParser.VAR_ASSIGN); } break; } - this.state = 4311; + this.state = 4314; this.expression(0); } break; @@ -23871,7 +23885,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SelectFunctionElementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4312; + this.state = 4315; this.functionCall(); } break; @@ -23897,34 +23911,34 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 4351; + this.state = 4354; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 619, this.context) ) { case 1: localContext = new SelectIntoVariablesContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4315; + this.state = 4318; this.match(MySqlParser.KW_INTO); - this.state = 4316; + this.state = 4319; this.assignmentField(); - this.state = 4321; + this.state = 4324; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 612, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 613, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4317; + this.state = 4320; this.match(MySqlParser.COMMA); - this.state = 4318; + this.state = 4321; this.assignmentField(); } } } - this.state = 4323; + this.state = 4326; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 612, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 613, this.context); } } break; @@ -23932,11 +23946,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SelectIntoDumpFileContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4324; + this.state = 4327; this.match(MySqlParser.KW_INTO); - this.state = 4325; + this.state = 4328; this.match(MySqlParser.KW_DUMPFILE); - this.state = 4326; + this.state = 4329; this.match(MySqlParser.STRING_LITERAL); } break; @@ -23945,32 +23959,32 @@ export class MySqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 4327; + this.state = 4330; this.match(MySqlParser.KW_INTO); - this.state = 4328; + this.state = 4331; this.match(MySqlParser.KW_OUTFILE); - this.state = 4329; + this.state = 4332; (localContext as SelectIntoTextFileContext)._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 4333; + this.state = 4336; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 613, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 614, this.context) ) { case 1: { - this.state = 4330; + this.state = 4333; this.match(MySqlParser.KW_CHARACTER); - this.state = 4331; + this.state = 4334; this.match(MySqlParser.KW_SET); - this.state = 4332; + this.state = 4335; (localContext as SelectIntoTextFileContext)._charset = this.charsetName(); } break; } - this.state = 4341; + this.state = 4344; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 615, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { case 1: { - this.state = 4335; + this.state = 4338; (localContext as SelectIntoTextFileContext)._fieldsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -23980,7 +23994,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4337; + this.state = 4340; this.errorHandler.sync(this); alternative = 1; do { @@ -23988,7 +24002,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 4336; + this.state = 4339; this.selectFieldsInto(); } } @@ -23996,21 +24010,21 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4339; + this.state = 4342; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 614, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 615, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; } - this.state = 4349; + this.state = 4352; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { case 1: { - this.state = 4343; + this.state = 4346; this.match(MySqlParser.KW_LINES); - this.state = 4345; + this.state = 4348; this.errorHandler.sync(this); alternative = 1; do { @@ -24018,7 +24032,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 4344; + this.state = 4347; this.selectLinesInto(); } } @@ -24026,9 +24040,9 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4347; + this.state = 4350; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 616, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 617, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -24057,17 +24071,17 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 314, MySqlParser.RULE_selectFieldsInto); let _la: number; try { - this.state = 4365; + this.state = 4368; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TERMINATED: this.enterOuterAlt(localContext, 1); { - this.state = 4353; + this.state = 4356; this.match(MySqlParser.KW_TERMINATED); - this.state = 4354; + this.state = 4357; this.match(MySqlParser.KW_BY); - this.state = 4355; + this.state = 4358; localContext._terminationField = this.match(MySqlParser.STRING_LITERAL); } break; @@ -24075,32 +24089,32 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_OPTIONALLY: this.enterOuterAlt(localContext, 2); { - this.state = 4357; + this.state = 4360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 4356; + this.state = 4359; this.match(MySqlParser.KW_OPTIONALLY); } } - this.state = 4359; + this.state = 4362; this.match(MySqlParser.KW_ENCLOSED); - this.state = 4360; + this.state = 4363; this.match(MySqlParser.KW_BY); - this.state = 4361; + this.state = 4364; localContext._enClosion = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_ESCAPED: this.enterOuterAlt(localContext, 3); { - this.state = 4362; + this.state = 4365; this.match(MySqlParser.KW_ESCAPED); - this.state = 4363; + this.state = 4366; this.match(MySqlParser.KW_BY); - this.state = 4364; + this.state = 4367; localContext._escaping = this.match(MySqlParser.STRING_LITERAL); } break; @@ -24126,28 +24140,28 @@ export class MySqlParser extends SQLParserBase { let localContext = new SelectLinesIntoContext(this.context, this.state); this.enterRule(localContext, 316, MySqlParser.RULE_selectLinesInto); try { - this.state = 4373; + this.state = 4376; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_STARTING: this.enterOuterAlt(localContext, 1); { - this.state = 4367; + this.state = 4370; this.match(MySqlParser.KW_STARTING); - this.state = 4368; + this.state = 4371; this.match(MySqlParser.KW_BY); - this.state = 4369; + this.state = 4372; localContext._starting = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_TERMINATED: this.enterOuterAlt(localContext, 2); { - this.state = 4370; + this.state = 4373; this.match(MySqlParser.KW_TERMINATED); - this.state = 4371; + this.state = 4374; this.match(MySqlParser.KW_BY); - this.state = 4372; + this.state = 4375; localContext._terminationLine = this.match(MySqlParser.STRING_LITERAL); } break; @@ -24175,37 +24189,37 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4377; + this.state = 4380; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 623, this.context) ) { case 1: { - this.state = 4375; + this.state = 4378; this.match(MySqlParser.KW_FROM); - this.state = 4376; + this.state = 4379; this.tableSources(); } break; } - this.state = 4384; + this.state = 4387; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 624, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 625, this.context) ) { case 1: { - this.state = 4379; - this.match(MySqlParser.KW_WHERE); this.state = 4382; + this.match(MySqlParser.KW_WHERE); + this.state = 4385; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 623, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 624, this.context) ) { case 1: { - this.state = 4380; + this.state = 4383; localContext._whereExpr = this.expression(0); } break; case 2: { - this.state = 4381; + this.state = 4384; this.columnNamePathAllowEmpty(); } break; @@ -24236,38 +24250,38 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4386; + this.state = 4389; this.match(MySqlParser.KW_GROUP); - this.state = 4387; + this.state = 4390; this.match(MySqlParser.KW_BY); - this.state = 4388; + this.state = 4391; this.groupByItem(); - this.state = 4393; + this.state = 4396; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 625, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 626, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4389; + this.state = 4392; this.match(MySqlParser.COMMA); - this.state = 4390; + this.state = 4393; this.groupByItem(); } } } - this.state = 4395; + this.state = 4398; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 625, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 626, this.context); } - this.state = 4398; + this.state = 4401; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 626, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 627, this.context) ) { case 1: { - this.state = 4396; + this.state = 4399; this.match(MySqlParser.KW_WITH); - this.state = 4397; + this.state = 4400; this.match(MySqlParser.KW_ROLLUP); } break; @@ -24294,10 +24308,24 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4400; + this.state = 4403; this.match(MySqlParser.KW_HAVING); - this.state = 4401; - localContext._havingExpr = this.expression(0); + this.state = 4406; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 628, this.context) ) { + case 1: + { + this.state = 4404; + localContext._havingExpr = this.expression(0); + } + break; + case 2: + { + this.state = 4405; + this.columnNamePathAllowEmpty(); + } + break; + } } } catch (re) { @@ -24321,43 +24349,43 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4403; + this.state = 4408; this.match(MySqlParser.KW_WINDOW); - this.state = 4404; + this.state = 4409; this.windowName(); - this.state = 4405; + this.state = 4410; this.match(MySqlParser.KW_AS); - this.state = 4406; + this.state = 4411; this.match(MySqlParser.LR_BRACKET); - this.state = 4407; + this.state = 4412; this.windowSpec(); - this.state = 4408; + this.state = 4413; this.match(MySqlParser.RR_BRACKET); - this.state = 4418; + this.state = 4423; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 627, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 629, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4409; + this.state = 4414; this.match(MySqlParser.COMMA); - this.state = 4410; + this.state = 4415; this.windowName(); - this.state = 4411; + this.state = 4416; this.match(MySqlParser.KW_AS); - this.state = 4412; + this.state = 4417; this.match(MySqlParser.LR_BRACKET); - this.state = 4413; + this.state = 4418; this.windowSpec(); - this.state = 4414; + this.state = 4419; this.match(MySqlParser.RR_BRACKET); } } } - this.state = 4420; + this.state = 4425; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 627, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 629, this.context); } } } @@ -24382,14 +24410,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4421; - this.expression(0); - this.state = 4423; + this.state = 4428; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 628, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 630, this.context) ) { + case 1: + { + this.state = 4426; + this.expression(0); + } + break; + case 2: + { + this.state = 4427; + this.columnNamePathAllowEmpty(); + } + break; + } + this.state = 4431; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 631, this.context) ) { case 1: { - this.state = 4422; + this.state = 4430; localContext._order = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -24424,36 +24466,36 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4425; + this.state = 4433; this.match(MySqlParser.KW_LIMIT); - this.state = 4436; + this.state = 4444; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 630, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 633, this.context) ) { case 1: { - this.state = 4429; + this.state = 4437; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 629, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 632, this.context) ) { case 1: { - this.state = 4426; + this.state = 4434; localContext._offset = this.limitClauseAtom(); - this.state = 4427; + this.state = 4435; this.match(MySqlParser.COMMA); } break; } - this.state = 4431; + this.state = 4439; localContext._limit = this.limitClauseAtom(); } break; case 2: { - this.state = 4432; + this.state = 4440; localContext._limit = this.limitClauseAtom(); - this.state = 4433; + this.state = 4441; this.match(MySqlParser.KW_OFFSET); - this.state = 4434; + this.state = 4442; localContext._offset = this.limitClauseAtom(); } break; @@ -24478,7 +24520,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new LimitClauseAtomContext(this.context, this.state); this.enterRule(localContext, 330, MySqlParser.RULE_limitClauseAtom); try { - this.state = 4441; + this.state = 4449; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -24489,7 +24531,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 4438; + this.state = 4446; this.decimalLiteral(); } break; @@ -24497,7 +24539,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.GLOBAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 4439; + this.state = 4447; this.mysqlVariable(); } break; @@ -25050,7 +25092,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 3); { - this.state = 4440; + this.state = 4448; this.simpleId(); } break; @@ -25079,30 +25121,30 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4443; + this.state = 4451; this.match(MySqlParser.KW_START); - this.state = 4444; + this.state = 4452; this.match(MySqlParser.KW_TRANSACTION); - this.state = 4453; + this.state = 4461; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 633, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 636, this.context) ) { case 1: { - this.state = 4445; + this.state = 4453; this.transactionMode(); - this.state = 4450; + this.state = 4458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4446; + this.state = 4454; this.match(MySqlParser.COMMA); - this.state = 4447; + this.state = 4455; this.transactionMode(); } } - this.state = 4452; + this.state = 4460; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25132,14 +25174,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4455; + this.state = 4463; this.match(MySqlParser.KW_BEGIN); - this.state = 4457; + this.state = 4465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4456; + this.state = 4464; this.match(MySqlParser.KW_WORK); } } @@ -25167,56 +25209,56 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4459; + this.state = 4467; this.match(MySqlParser.KW_COMMIT); - this.state = 4461; + this.state = 4469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4460; + this.state = 4468; this.match(MySqlParser.KW_WORK); } } - this.state = 4468; + this.state = 4476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 4463; + this.state = 4471; this.match(MySqlParser.KW_AND); - this.state = 4465; + this.state = 4473; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4464; + this.state = 4472; localContext._noChain = this.match(MySqlParser.KW_NO); } } - this.state = 4467; + this.state = 4475; this.match(MySqlParser.KW_CHAIN); } } - this.state = 4474; + this.state = 4482; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 639, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 642, this.context) ) { case 1: { - this.state = 4471; + this.state = 4479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4470; + this.state = 4478; localContext._noRelease = this.match(MySqlParser.KW_NO); } } - this.state = 4473; + this.state = 4481; this.match(MySqlParser.KW_RELEASE); } break; @@ -25244,56 +25286,56 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4476; + this.state = 4484; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4478; + this.state = 4486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4477; + this.state = 4485; this.match(MySqlParser.KW_WORK); } } - this.state = 4485; + this.state = 4493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 4480; + this.state = 4488; this.match(MySqlParser.KW_AND); - this.state = 4482; + this.state = 4490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4481; + this.state = 4489; localContext._noChain = this.match(MySqlParser.KW_NO); } } - this.state = 4484; + this.state = 4492; this.match(MySqlParser.KW_CHAIN); } } - this.state = 4491; + this.state = 4499; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 644, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 647, this.context) ) { case 1: { - this.state = 4488; + this.state = 4496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4487; + this.state = 4495; localContext._noRelease = this.match(MySqlParser.KW_NO); } } - this.state = 4490; + this.state = 4498; this.match(MySqlParser.KW_RELEASE); } break; @@ -25320,9 +25362,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4493; + this.state = 4501; this.match(MySqlParser.KW_SAVEPOINT); - this.state = 4494; + this.state = 4502; localContext._identifier = this.uid(); } } @@ -25347,31 +25389,31 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4496; + this.state = 4504; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4498; + this.state = 4506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4497; + this.state = 4505; this.match(MySqlParser.KW_WORK); } } - this.state = 4500; + this.state = 4508; this.match(MySqlParser.KW_TO); - this.state = 4502; + this.state = 4510; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 646, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 649, this.context) ) { case 1: { - this.state = 4501; + this.state = 4509; this.match(MySqlParser.KW_SAVEPOINT); } break; } - this.state = 4504; + this.state = 4512; localContext._identifier = this.uid(); } } @@ -25395,11 +25437,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4506; + this.state = 4514; this.match(MySqlParser.KW_RELEASE); - this.state = 4507; + this.state = 4515; this.match(MySqlParser.KW_SAVEPOINT); - this.state = 4508; + this.state = 4516; localContext._identifier = this.uid(); } } @@ -25424,9 +25466,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4510; + this.state = 4518; this.match(MySqlParser.KW_LOCK); - this.state = 4511; + this.state = 4519; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -25435,21 +25477,21 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4512; + this.state = 4520; this.lockTableElement(); - this.state = 4517; + this.state = 4525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4513; + this.state = 4521; this.match(MySqlParser.COMMA); - this.state = 4514; + this.state = 4522; this.lockTableElement(); } } - this.state = 4519; + this.state = 4527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25475,9 +25517,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4520; + this.state = 4528; this.match(MySqlParser.KW_UNLOCK); - this.state = 4521; + this.state = 4529; this.match(MySqlParser.KW_TABLES); } } @@ -25502,13 +25544,13 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4523; + this.state = 4531; this.match(MySqlParser.KW_SET); - this.state = 4524; + this.state = 4532; this.match(MySqlParser.KW_AUTOCOMMIT); - this.state = 4525; + this.state = 4533; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4526; + this.state = 4534; localContext._autocommitValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -25541,14 +25583,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4528; + this.state = 4536; this.match(MySqlParser.KW_SET); - this.state = 4530; + this.state = 4538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413 || _la === 593) { { - this.state = 4529; + this.state = 4537; localContext._transactionContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 593)) { @@ -25561,23 +25603,23 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4532; + this.state = 4540; this.match(MySqlParser.KW_TRANSACTION); - this.state = 4533; + this.state = 4541; this.transactionOption(); - this.state = 4538; + this.state = 4546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4534; + this.state = 4542; this.match(MySqlParser.COMMA); - this.state = 4535; + this.state = 4543; this.transactionOption(); } } - this.state = 4540; + this.state = 4548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25601,35 +25643,35 @@ export class MySqlParser extends SQLParserBase { let localContext = new TransactionModeContext(this.context, this.state); this.enterRule(localContext, 354, MySqlParser.RULE_transactionMode); try { - this.state = 4548; + this.state = 4556; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 650, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 653, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4541; + this.state = 4549; this.match(MySqlParser.KW_WITH); - this.state = 4542; + this.state = 4550; this.match(MySqlParser.KW_CONSISTENT); - this.state = 4543; + this.state = 4551; this.match(MySqlParser.KW_SNAPSHOT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4544; + this.state = 4552; this.match(MySqlParser.KW_READ); - this.state = 4545; + this.state = 4553; this.match(MySqlParser.KW_WRITE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4546; + this.state = 4554; this.match(MySqlParser.KW_READ); - this.state = 4547; + this.state = 4555; this.match(MySqlParser.KW_ONLY); } break; @@ -25656,29 +25698,29 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4550; + this.state = 4558; this.tableName(); - this.state = 4555; + this.state = 4563; 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 = 4552; + this.state = 4560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4551; + this.state = 4559; this.match(MySqlParser.KW_AS); } } - this.state = 4554; + this.state = 4562; localContext._alias = this.uid(); } } - this.state = 4557; + this.state = 4565; this.lockAction(); } } @@ -25701,20 +25743,20 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 358, MySqlParser.RULE_lockAction); let _la: number; try { - this.state = 4567; + this.state = 4575; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_READ: this.enterOuterAlt(localContext, 1); { - this.state = 4559; + this.state = 4567; this.match(MySqlParser.KW_READ); - this.state = 4561; + this.state = 4569; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 4560; + this.state = 4568; this.match(MySqlParser.KW_LOCAL); } } @@ -25725,17 +25767,17 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_WRITE: this.enterOuterAlt(localContext, 2); { - this.state = 4564; + this.state = 4572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 4563; + this.state = 4571; this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 4566; + this.state = 4574; this.match(MySqlParser.KW_WRITE); } break; @@ -25761,35 +25803,35 @@ export class MySqlParser extends SQLParserBase { let localContext = new TransactionOptionContext(this.context, this.state); this.enterRule(localContext, 360, MySqlParser.RULE_transactionOption); try { - this.state = 4576; + this.state = 4584; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 656, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 659, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4569; + this.state = 4577; this.match(MySqlParser.KW_ISOLATION); - this.state = 4570; + this.state = 4578; this.match(MySqlParser.KW_LEVEL); - this.state = 4571; + this.state = 4579; this.transactionLevel(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4572; + this.state = 4580; this.match(MySqlParser.KW_READ); - this.state = 4573; + this.state = 4581; this.match(MySqlParser.KW_WRITE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4574; + this.state = 4582; this.match(MySqlParser.KW_READ); - this.state = 4575; + this.state = 4583; this.match(MySqlParser.KW_ONLY); } break; @@ -25813,40 +25855,40 @@ export class MySqlParser extends SQLParserBase { let localContext = new TransactionLevelContext(this.context, this.state); this.enterRule(localContext, 362, MySqlParser.RULE_transactionLevel); try { - this.state = 4585; + this.state = 4593; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 657, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 660, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4578; + this.state = 4586; this.match(MySqlParser.KW_REPEATABLE); - this.state = 4579; + this.state = 4587; this.match(MySqlParser.KW_READ); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4580; + this.state = 4588; this.match(MySqlParser.KW_READ); - this.state = 4581; + this.state = 4589; this.match(MySqlParser.KW_COMMITTED); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4582; + this.state = 4590; this.match(MySqlParser.KW_READ); - this.state = 4583; + this.state = 4591; this.match(MySqlParser.KW_UNCOMMITTED); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4584; + this.state = 4592; this.match(MySqlParser.KW_SERIALIZABLE); } break; @@ -25873,36 +25915,36 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4587; + this.state = 4595; this.match(MySqlParser.KW_CHANGE); - this.state = 4588; + this.state = 4596; this.match(MySqlParser.KW_MASTER); - this.state = 4589; + this.state = 4597; this.match(MySqlParser.KW_TO); - this.state = 4590; + this.state = 4598; this.masterOption(); - this.state = 4595; + this.state = 4603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4591; + this.state = 4599; this.match(MySqlParser.COMMA); - this.state = 4592; + this.state = 4600; this.masterOption(); } } - this.state = 4597; + this.state = 4605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4599; + this.state = 4607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4598; + this.state = 4606; this.channelOption(); } } @@ -25930,36 +25972,36 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4601; + this.state = 4609; this.match(MySqlParser.KW_CHANGE); - this.state = 4602; + this.state = 4610; this.match(MySqlParser.KW_REPLICATION); - this.state = 4603; + this.state = 4611; this.match(MySqlParser.KW_FILTER); - this.state = 4604; + this.state = 4612; this.replicationFilter(); - this.state = 4609; + this.state = 4617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4605; + this.state = 4613; this.match(MySqlParser.COMMA); - this.state = 4606; + this.state = 4614; this.replicationFilter(); } } - this.state = 4611; + this.state = 4619; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4613; + this.state = 4621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4612; + this.state = 4620; this.channelOption(); } } @@ -25987,38 +26029,38 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4615; + this.state = 4623; this.match(MySqlParser.KW_CHANGE); - this.state = 4616; + this.state = 4624; this.match(MySqlParser.KW_REPLICATION); - this.state = 4617; + this.state = 4625; this.match(MySqlParser.KW_SOURCE); - this.state = 4618; + this.state = 4626; this.match(MySqlParser.KW_TO); - this.state = 4619; + this.state = 4627; this.replicationSourceOption(); - this.state = 4624; + this.state = 4632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4620; + this.state = 4628; this.match(MySqlParser.COMMA); - this.state = 4621; + this.state = 4629; this.replicationSourceOption(); } } - this.state = 4626; + this.state = 4634; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4628; + this.state = 4636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4627; + this.state = 4635; this.channelOption(); } } @@ -26046,9 +26088,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4630; + this.state = 4638; this.match(MySqlParser.KW_PURGE); - this.state = 4631; + this.state = 4639; localContext._purgeFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 453)) { @@ -26058,24 +26100,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4632; + this.state = 4640; this.match(MySqlParser.KW_LOGS); - this.state = 4637; + this.state = 4645; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TO: { - this.state = 4633; + this.state = 4641; this.match(MySqlParser.KW_TO); - this.state = 4634; + this.state = 4642; localContext._fileName = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_BEFORE: { - this.state = 4635; + this.state = 4643; this.match(MySqlParser.KW_BEFORE); - this.state = 4636; + this.state = 4644; localContext._timeValue = this.match(MySqlParser.STRING_LITERAL); } break; @@ -26105,9 +26147,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4639; + this.state = 4647; this.match(MySqlParser.KW_START); - this.state = 4640; + this.state = 4648; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -26116,64 +26158,64 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4649; + this.state = 4657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 438 || _la === 639) { { - this.state = 4641; + this.state = 4649; this.threadType(); - this.state = 4646; + this.state = 4654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4642; + this.state = 4650; this.match(MySqlParser.COMMA); - this.state = 4643; + this.state = 4651; this.threadType(); } } - this.state = 4648; + this.state = 4656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4653; + this.state = 4661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 676) { { - this.state = 4651; + this.state = 4659; this.match(MySqlParser.KW_UNTIL); - this.state = 4652; + this.state = 4660; this.untilOption(); } } - this.state = 4658; + this.state = 4666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 363 || _la === 529 || _la === 535 || _la === 678) { { { - this.state = 4655; + this.state = 4663; this.connectionOptions(); } } - this.state = 4660; + this.state = 4668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4662; + this.state = 4670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4661; + this.state = 4669; this.channelOption(); } } @@ -26201,9 +26243,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4664; + this.state = 4672; this.match(MySqlParser.KW_STOP); - this.state = 4665; + this.state = 4673; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -26212,38 +26254,38 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4674; + this.state = 4682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 438 || _la === 639) { { - this.state = 4666; + this.state = 4674; this.threadType(); - this.state = 4671; + this.state = 4679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4667; + this.state = 4675; this.match(MySqlParser.COMMA); - this.state = 4668; + this.state = 4676; this.threadType(); } } - this.state = 4673; + this.state = 4681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4677; + this.state = 4685; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4676; + this.state = 4684; this.channelOption(); } } @@ -26271,52 +26313,52 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4679; + this.state = 4687; this.match(MySqlParser.KW_START); - this.state = 4680; + this.state = 4688; this.match(MySqlParser.KW_GROUP_REPLICATION); - this.state = 4684; + this.state = 4692; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 678) { { - this.state = 4681; + this.state = 4689; this.match(MySqlParser.KW_USER); - this.state = 4682; + this.state = 4690; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4683; + this.state = 4691; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 4690; + this.state = 4698; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 674, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 677, this.context) ) { case 1: { - this.state = 4686; + this.state = 4694; this.match(MySqlParser.COMMA); - this.state = 4687; + this.state = 4695; this.match(MySqlParser.KW_PASSWORD); - this.state = 4688; + this.state = 4696; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4689; + this.state = 4697; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 4696; + this.state = 4704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 4692; + this.state = 4700; this.match(MySqlParser.COMMA); - this.state = 4693; + this.state = 4701; this.match(MySqlParser.KW_DEFAULT_AUTH); - this.state = 4694; + this.state = 4702; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4695; + this.state = 4703; this.match(MySqlParser.STRING_LITERAL); } } @@ -26343,9 +26385,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4698; + this.state = 4706; this.match(MySqlParser.KW_STOP); - this.state = 4699; + this.state = 4707; this.match(MySqlParser.KW_GROUP_REPLICATION); } } @@ -26368,7 +26410,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 380, MySqlParser.RULE_masterOption); let _la: number; try { - this.state = 4728; + this.state = 4736; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MASTER_BIND: @@ -26392,11 +26434,11 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterStringOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4701; + this.state = 4709; this.stringMasterOption(); - this.state = 4702; + this.state = 4710; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4703; + this.state = 4711; this.match(MySqlParser.STRING_LITERAL); } break; @@ -26411,11 +26453,11 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterDecimalOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4705; + this.state = 4713; this.decimalMasterOption(); - this.state = 4706; + this.state = 4714; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4707; + this.state = 4715; this.decimalLiteral(); } break; @@ -26429,11 +26471,11 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterBoolOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4709; + this.state = 4717; this.boolMasterOption(); - this.state = 4710; + this.state = 4718; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4711; + this.state = 4719; (localContext as MasterBoolOptionContext)._boolVal = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -26451,7 +26493,7 @@ export class MySqlParser extends SQLParserBase { localContext = new V8AddMasterOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4713; + this.state = 4721; this.v8NewMasterOption(); } break; @@ -26459,39 +26501,39 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterUidListOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4714; + this.state = 4722; this.match(MySqlParser.KW_IGNORE_SERVER_IDS); - this.state = 4715; + this.state = 4723; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4716; + this.state = 4724; this.match(MySqlParser.LR_BRACKET); - this.state = 4725; + this.state = 4733; 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 = 4717; + this.state = 4725; (localContext as MasterUidListOptionContext)._server_id = this.uid(); - this.state = 4722; + this.state = 4730; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4718; + this.state = 4726; this.match(MySqlParser.COMMA); - this.state = 4719; + this.state = 4727; (localContext as MasterUidListOptionContext)._server_id = this.uid(); } } - this.state = 4724; + this.state = 4732; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4727; + this.state = 4735; this.match(MySqlParser.RR_BRACKET); } break; @@ -26520,7 +26562,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4730; + this.state = 4738; _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); @@ -26552,7 +26594,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4732; + this.state = 4740; _la = this.tokenStream.LA(1); if(!(((((_la - 456)) & ~0x1F) === 0 && ((1 << (_la - 456)) & 2097831) !== 0) || _la === 558)) { this.errorHandler.recoverInline(this); @@ -26584,7 +26626,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4734; + this.state = 4742; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 411 || _la === 416 || _la === 454 || _la === 466 || _la === 573 || _la === 617)) { this.errorHandler.recoverInline(this); @@ -26614,17 +26656,17 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 388, MySqlParser.RULE_v8NewMasterOption); let _la: number; try { - this.state = 4749; + this.state = 4757; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PRIVILEGE_CHECKS_USER: this.enterOuterAlt(localContext, 1); { - this.state = 4736; + this.state = 4744; this.match(MySqlParser.KW_PRIVILEGE_CHECKS_USER); - this.state = 4737; + this.state = 4745; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4738; + this.state = 4746; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -26638,11 +26680,11 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 4739; + this.state = 4747; this.match(MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK); - this.state = 4740; + this.state = 4748; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4741; + this.state = 4749; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -26656,22 +26698,22 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS: this.enterOuterAlt(localContext, 3); { - this.state = 4742; + this.state = 4750; this.match(MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS); - this.state = 4743; + this.state = 4751; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4747; + this.state = 4755; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OFF: { - this.state = 4744; + this.state = 4752; this.match(MySqlParser.KW_OFF); } break; case MySqlParser.KW_LOCAL: { - this.state = 4745; + this.state = 4753; this.match(MySqlParser.KW_LOCAL); } break; @@ -26683,7 +26725,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 4746; + this.state = 4754; this.gtuidSet(); } break; @@ -26715,7 +26757,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 390, MySqlParser.RULE_replicationSourceOption); let _la: number; try { - this.state = 4778; + this.state = 4786; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NETWORK_NAMESPACE: @@ -26739,11 +26781,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceStringOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4751; + this.state = 4759; this.stringSourceOption(); - this.state = 4752; + this.state = 4760; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4753; + this.state = 4761; this.match(MySqlParser.STRING_LITERAL); } break; @@ -26758,11 +26800,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceDecimalOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4755; + this.state = 4763; this.decimalSourceOption(); - this.state = 4756; + this.state = 4764; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4757; + this.state = 4765; this.decimalLiteral(); } break; @@ -26776,11 +26818,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceBoolOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4759; + this.state = 4767; this.boolSourceOption(); - this.state = 4760; + this.state = 4768; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4761; + this.state = 4769; (localContext as SourceBoolOptionContext)._boolVal = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -26798,7 +26840,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceOtherOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4763; + this.state = 4771; this.otherSourceOption(); } break; @@ -26806,39 +26848,39 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceUidListOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4764; + this.state = 4772; this.match(MySqlParser.KW_IGNORE_SERVER_IDS); - this.state = 4765; + this.state = 4773; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4766; + this.state = 4774; this.match(MySqlParser.LR_BRACKET); - this.state = 4775; + this.state = 4783; 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 = 4767; + this.state = 4775; (localContext as SourceUidListOptionContext)._server_id = this.uid(); - this.state = 4772; + this.state = 4780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4768; + this.state = 4776; this.match(MySqlParser.COMMA); - this.state = 4769; + this.state = 4777; (localContext as SourceUidListOptionContext)._server_id = this.uid(); } } - this.state = 4774; + this.state = 4782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4777; + this.state = 4785; this.match(MySqlParser.RR_BRACKET); } break; @@ -26867,7 +26909,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4780; + this.state = 4788; _la = this.tokenStream.LA(1); if(!(_la === 499 || _la === 557 || ((((_la - 606)) & ~0x1F) === 0 && ((1 << (_la - 606)) & 125771823) !== 0))) { this.errorHandler.recoverInline(this); @@ -26899,7 +26941,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4782; + this.state = 4790; _la = this.tokenStream.LA(1); if(!(_la === 558 || ((((_la - 610)) & ~0x1F) === 0 && ((1 << (_la - 610)) & 1397) !== 0))) { this.errorHandler.recoverInline(this); @@ -26931,7 +26973,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4784; + this.state = 4792; _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); @@ -26961,17 +27003,17 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 398, MySqlParser.RULE_otherSourceOption); let _la: number; try { - this.state = 4799; + this.state = 4807; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PRIVILEGE_CHECKS_USER: this.enterOuterAlt(localContext, 1); { - this.state = 4786; + this.state = 4794; this.match(MySqlParser.KW_PRIVILEGE_CHECKS_USER); - this.state = 4787; + this.state = 4795; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4788; + this.state = 4796; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -26985,11 +27027,11 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 4789; + this.state = 4797; this.match(MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK); - this.state = 4790; + this.state = 4798; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4791; + this.state = 4799; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 118 || _la === 119 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -27003,22 +27045,22 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS: this.enterOuterAlt(localContext, 3); { - this.state = 4792; + this.state = 4800; this.match(MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS); - this.state = 4793; + this.state = 4801; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4797; + this.state = 4805; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OFF: { - this.state = 4794; + this.state = 4802; this.match(MySqlParser.KW_OFF); } break; case MySqlParser.KW_LOCAL: { - this.state = 4795; + this.state = 4803; this.match(MySqlParser.KW_LOCAL); } break; @@ -27030,7 +27072,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 4796; + this.state = 4804; this.gtuidSet(); } break; @@ -27063,11 +27105,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4801; + this.state = 4809; this.match(MySqlParser.KW_FOR); - this.state = 4802; + this.state = 4810; this.match(MySqlParser.KW_CHANNEL); - this.state = 4803; + this.state = 4811; this.match(MySqlParser.STRING_LITERAL); } } @@ -27090,38 +27132,38 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 402, MySqlParser.RULE_replicationFilter); let _la: number; try { - this.state = 4868; + this.state = 4876; 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 = 4805; + this.state = 4813; this.match(MySqlParser.KW_REPLICATE_DO_DB); - this.state = 4806; + this.state = 4814; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4807; + this.state = 4815; this.match(MySqlParser.LR_BRACKET); - this.state = 4808; + this.state = 4816; this.databaseName(); - this.state = 4813; + this.state = 4821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4809; + this.state = 4817; this.match(MySqlParser.COMMA); - this.state = 4810; + this.state = 4818; this.databaseName(); } } - this.state = 4815; + this.state = 4823; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4816; + this.state = 4824; this.match(MySqlParser.RR_BRACKET); } break; @@ -27129,31 +27171,31 @@ export class MySqlParser extends SQLParserBase { localContext = new IgnoreDbReplicationContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4818; + this.state = 4826; this.match(MySqlParser.KW_REPLICATE_IGNORE_DB); - this.state = 4819; + this.state = 4827; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4820; + this.state = 4828; this.match(MySqlParser.LR_BRACKET); - this.state = 4821; + this.state = 4829; this.databaseName(); - this.state = 4826; + this.state = 4834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4822; + this.state = 4830; this.match(MySqlParser.COMMA); - this.state = 4823; + this.state = 4831; this.databaseName(); } } - this.state = 4828; + this.state = 4836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4829; + this.state = 4837; this.match(MySqlParser.RR_BRACKET); } break; @@ -27161,15 +27203,15 @@ export class MySqlParser extends SQLParserBase { localContext = new DoTableReplicationContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4831; + this.state = 4839; this.match(MySqlParser.KW_REPLICATE_DO_TABLE); - this.state = 4832; + this.state = 4840; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4833; + this.state = 4841; this.match(MySqlParser.LR_BRACKET); - this.state = 4834; + this.state = 4842; this.tableNames(); - this.state = 4835; + this.state = 4843; this.match(MySqlParser.RR_BRACKET); } break; @@ -27177,15 +27219,15 @@ export class MySqlParser extends SQLParserBase { localContext = new IgnoreTableReplicationContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4837; + this.state = 4845; this.match(MySqlParser.KW_REPLICATE_IGNORE_TABLE); - this.state = 4838; + this.state = 4846; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4839; + this.state = 4847; this.match(MySqlParser.LR_BRACKET); - this.state = 4840; + this.state = 4848; this.tableNames(); - this.state = 4841; + this.state = 4849; this.match(MySqlParser.RR_BRACKET); } break; @@ -27193,15 +27235,15 @@ export class MySqlParser extends SQLParserBase { localContext = new WildDoTableReplicationContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4843; + this.state = 4851; this.match(MySqlParser.KW_REPLICATE_WILD_DO_TABLE); - this.state = 4844; + this.state = 4852; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4845; + this.state = 4853; this.match(MySqlParser.LR_BRACKET); - this.state = 4846; + this.state = 4854; this.simpleStrings(); - this.state = 4847; + this.state = 4855; this.match(MySqlParser.RR_BRACKET); } break; @@ -27209,15 +27251,15 @@ export class MySqlParser extends SQLParserBase { localContext = new WildIgnoreTableReplicationContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 4849; + this.state = 4857; this.match(MySqlParser.KW_REPLICATE_WILD_IGNORE_TABLE); - this.state = 4850; + this.state = 4858; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4851; + this.state = 4859; this.match(MySqlParser.LR_BRACKET); - this.state = 4852; + this.state = 4860; this.simpleStrings(); - this.state = 4853; + this.state = 4861; this.match(MySqlParser.RR_BRACKET); } break; @@ -27225,31 +27267,31 @@ export class MySqlParser extends SQLParserBase { localContext = new RewriteDbReplicationContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 4855; + this.state = 4863; this.match(MySqlParser.KW_REPLICATE_REWRITE_DB); - this.state = 4856; + this.state = 4864; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4857; + this.state = 4865; this.match(MySqlParser.LR_BRACKET); - this.state = 4858; + this.state = 4866; this.tablePair(); - this.state = 4863; + this.state = 4871; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4859; + this.state = 4867; this.match(MySqlParser.COMMA); - this.state = 4860; + this.state = 4868; this.tablePair(); } } - this.state = 4865; + this.state = 4873; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4866; + this.state = 4874; this.match(MySqlParser.RR_BRACKET); } break; @@ -27277,15 +27319,15 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4870; + this.state = 4878; this.match(MySqlParser.LR_BRACKET); - this.state = 4871; + this.state = 4879; localContext._firstTable = this.tableName(); - this.state = 4872; + this.state = 4880; this.match(MySqlParser.COMMA); - this.state = 4873; + this.state = 4881; localContext._secondTable = this.tableName(); - this.state = 4874; + this.state = 4882; this.match(MySqlParser.RR_BRACKET); } } @@ -27310,7 +27352,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4876; + this.state = 4884; _la = this.tokenStream.LA(1); if(!(_la === 438 || _la === 639)) { this.errorHandler.recoverInline(this); @@ -27340,7 +27382,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 408, MySqlParser.RULE_untilOption); let _la: number; try { - this.state = 4903; + this.state = 4911; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQL_AFTER_GTIDS: @@ -27348,7 +27390,7 @@ export class MySqlParser extends SQLParserBase { localContext = new GtidsUntilOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4878; + this.state = 4886; (localContext as GtidsUntilOptionContext)._gtids = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 633 || _la === 635)) { @@ -27358,9 +27400,9 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4879; + this.state = 4887; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4880; + this.state = 4888; this.gtuidSet(); } break; @@ -27368,19 +27410,19 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4881; + this.state = 4889; this.match(MySqlParser.KW_MASTER_LOG_FILE); - this.state = 4882; + this.state = 4890; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4883; + this.state = 4891; this.match(MySqlParser.STRING_LITERAL); - this.state = 4884; + this.state = 4892; this.match(MySqlParser.COMMA); - this.state = 4885; + this.state = 4893; this.match(MySqlParser.KW_MASTER_LOG_POS); - this.state = 4886; + this.state = 4894; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4887; + this.state = 4895; this.decimalLiteral(); } break; @@ -27388,19 +27430,19 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4888; + this.state = 4896; this.match(MySqlParser.KW_SOURCE_LOG_FILE); - this.state = 4889; + this.state = 4897; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4890; + this.state = 4898; this.match(MySqlParser.STRING_LITERAL); - this.state = 4891; + this.state = 4899; this.match(MySqlParser.COMMA); - this.state = 4892; + this.state = 4900; this.match(MySqlParser.KW_SOURCE_LOG_POS); - this.state = 4893; + this.state = 4901; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4894; + this.state = 4902; this.decimalLiteral(); } break; @@ -27408,19 +27450,19 @@ export class MySqlParser extends SQLParserBase { localContext = new RelayLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4895; + this.state = 4903; this.match(MySqlParser.KW_RELAY_LOG_FILE); - this.state = 4896; + this.state = 4904; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4897; + this.state = 4905; this.match(MySqlParser.STRING_LITERAL); - this.state = 4898; + this.state = 4906; this.match(MySqlParser.COMMA); - this.state = 4899; + this.state = 4907; this.match(MySqlParser.KW_RELAY_LOG_POS); - this.state = 4900; + this.state = 4908; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4901; + this.state = 4909; this.decimalLiteral(); } break; @@ -27428,7 +27470,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SqlGapsUntilOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4902; + this.state = 4910; this.match(MySqlParser.KW_SQL_AFTER_MTS_GAPS); } break; @@ -27454,18 +27496,18 @@ export class MySqlParser extends SQLParserBase { let localContext = new ConnectionOptionsContext(this.context, this.state); this.enterRule(localContext, 410, MySqlParser.RULE_connectionOptions); try { - this.state = 4917; + this.state = 4925; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_USER: localContext = new UserConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4905; + this.state = 4913; this.match(MySqlParser.KW_USER); - this.state = 4906; + this.state = 4914; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4907; + this.state = 4915; (localContext as UserConnectionOptionContext)._conOptUser = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27473,11 +27515,11 @@ export class MySqlParser extends SQLParserBase { localContext = new PasswordConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4908; + this.state = 4916; this.match(MySqlParser.KW_PASSWORD); - this.state = 4909; + this.state = 4917; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4910; + this.state = 4918; (localContext as PasswordConnectionOptionContext)._conOptPassword = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27485,11 +27527,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DefaultAuthConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4911; + this.state = 4919; this.match(MySqlParser.KW_DEFAULT_AUTH); - this.state = 4912; + this.state = 4920; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4913; + this.state = 4921; (localContext as DefaultAuthConnectionOptionContext)._conOptDefAuth = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27497,11 +27539,11 @@ export class MySqlParser extends SQLParserBase { localContext = new PluginDirConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4914; + this.state = 4922; this.match(MySqlParser.KW_PLUGIN_DIR); - this.state = 4915; + this.state = 4923; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4916; + this.state = 4924; (localContext as PluginDirConnectionOptionContext)._conOptPluginDir = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27528,7 +27570,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 412, MySqlParser.RULE_gtuidSet); try { let alternative: number; - this.state = 4928; + this.state = 4936; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -27539,32 +27581,32 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 4919; + this.state = 4927; this.uuidSet(); - this.state = 4924; + this.state = 4932; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 692, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 695, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4920; + this.state = 4928; this.match(MySqlParser.COMMA); - this.state = 4921; + this.state = 4929; this.uuidSet(); } } } - this.state = 4926; + this.state = 4934; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 692, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 695, this.context); } } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 4927; + this.state = 4935; this.match(MySqlParser.STRING_LITERAL); } break; @@ -27593,9 +27635,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4930; + this.state = 4938; this.match(MySqlParser.KW_XA); - this.state = 4931; + this.state = 4939; localContext._xaStart = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 317 || _la === 640)) { @@ -27605,14 +27647,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4932; + this.state = 4940; this.xid(); - this.state = 4934; + this.state = 4942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91 || _la === 577) { { - this.state = 4933; + this.state = 4941; localContext._xaAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 577)) { @@ -27648,27 +27690,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4936; + this.state = 4944; this.match(MySqlParser.KW_XA); - this.state = 4937; + this.state = 4945; this.match(MySqlParser.KW_END); - this.state = 4938; + this.state = 4946; this.xid(); - this.state = 4944; + this.state = 4952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 654) { { - this.state = 4939; + this.state = 4947; this.match(MySqlParser.KW_SUSPEND); - this.state = 4942; + this.state = 4950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4940; + this.state = 4948; this.match(MySqlParser.KW_FOR); - this.state = 4941; + this.state = 4949; this.match(MySqlParser.KW_MIGRATE); } } @@ -27698,11 +27740,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4946; + this.state = 4954; this.match(MySqlParser.KW_XA); - this.state = 4947; + this.state = 4955; this.match(MySqlParser.KW_PREPARE); - this.state = 4948; + this.state = 4956; this.xid(); } } @@ -27727,20 +27769,20 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4950; + this.state = 4958; this.match(MySqlParser.KW_XA); - this.state = 4951; + this.state = 4959; this.match(MySqlParser.KW_COMMIT); - this.state = 4952; + this.state = 4960; this.xid(); - this.state = 4955; + this.state = 4963; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 4953; + this.state = 4961; this.match(MySqlParser.KW_ONE); - this.state = 4954; + this.state = 4962; this.match(MySqlParser.KW_PHASE); } } @@ -27767,11 +27809,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4957; + this.state = 4965; this.match(MySqlParser.KW_XA); - this.state = 4958; + this.state = 4966; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4959; + this.state = 4967; this.xid(); } } @@ -27796,18 +27838,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4961; + this.state = 4969; this.match(MySqlParser.KW_XA); - this.state = 4962; + this.state = 4970; this.match(MySqlParser.KW_RECOVER); - this.state = 4965; + this.state = 4973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 4963; + this.state = 4971; this.match(MySqlParser.KW_CONVERT); - this.state = 4964; + this.state = 4972; this.xid(); } } @@ -27834,24 +27876,24 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4967; + this.state = 4975; this.match(MySqlParser.KW_PREPARE); - this.state = 4968; + this.state = 4976; localContext._stmt_name = this.uid(); - this.state = 4969; + this.state = 4977; this.match(MySqlParser.KW_FROM); - this.state = 4972; + this.state = 4980; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 4970; + this.state = 4978; localContext._query = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.LOCAL_ID: { - this.state = 4971; + this.state = 4979; localContext._variable = this.match(MySqlParser.LOCAL_ID); } break; @@ -27881,18 +27923,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4974; + this.state = 4982; this.match(MySqlParser.KW_EXECUTE); - this.state = 4975; + this.state = 4983; localContext._stmt_name = this.uid(); - this.state = 4978; + this.state = 4986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 4976; + this.state = 4984; this.match(MySqlParser.KW_USING); - this.state = 4977; + this.state = 4985; this.userVariables(); } } @@ -27920,7 +27962,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4980; + this.state = 4988; localContext._dropFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 51 || _la === 362)) { @@ -27930,9 +27972,9 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4981; + this.state = 4989; this.match(MySqlParser.KW_PREPARE); - this.state = 4982; + this.state = 4990; localContext._stmt_name = this.uid(); } } @@ -27954,20 +27996,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new RoutineBodyContext(this.context, this.state); this.enterRule(localContext, 432, MySqlParser.RULE_routineBody); try { - this.state = 4986; + this.state = 4994; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 701, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 704, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4984; + this.state = 4992; this.blockStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4985; + this.state = 4993; this.sqlStatement(); } break; @@ -27995,114 +28037,114 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4991; + this.state = 4999; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 702, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 705, this.context) ) { case 1: { - this.state = 4988; + this.state = 4996; localContext._begin = this.uid(); - this.state = 4989; + this.state = 4997; this.match(MySqlParser.COLON_SYMB); } break; } - this.state = 4993; + this.state = 5001; this.match(MySqlParser.KW_BEGIN); - this.state = 4999; + this.state = 5007; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 703, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 706, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4994; + this.state = 5002; this.declareVariable(); - this.state = 4995; + this.state = 5003; this.match(MySqlParser.SEMI); } } } - this.state = 5001; + this.state = 5009; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 703, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 706, this.context); } - this.state = 5007; + this.state = 5015; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 704, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 707, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5002; + this.state = 5010; this.declareCondition(); - this.state = 5003; + this.state = 5011; this.match(MySqlParser.SEMI); } } } - this.state = 5009; + this.state = 5017; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 704, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 707, this.context); } - this.state = 5015; + this.state = 5023; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 705, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 708, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5010; + this.state = 5018; this.declareCursor(); - this.state = 5011; + this.state = 5019; this.match(MySqlParser.SEMI); } } } - this.state = 5017; + this.state = 5025; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 705, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 708, this.context); } - this.state = 5023; + this.state = 5031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 41) { { { - this.state = 5018; + this.state = 5026; this.declareHandler(); - this.state = 5019; + this.state = 5027; this.match(MySqlParser.SEMI); } } - this.state = 5025; + this.state = 5033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5029; + this.state = 5037; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 707, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 710, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5026; + this.state = 5034; this.procedureSqlStatement(); } } } - this.state = 5031; + this.state = 5039; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 707, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 710, this.context); } - this.state = 5032; + this.state = 5040; this.match(MySqlParser.KW_END); - this.state = 5034; + this.state = 5042; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 708, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 711, this.context) ) { case 1: { - this.state = 5033; + this.state = 5041; localContext._end = this.uid(); } break; @@ -28131,46 +28173,46 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5036; + this.state = 5044; this.match(MySqlParser.KW_CASE); - this.state = 5039; + this.state = 5047; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 709, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 712, this.context) ) { case 1: { - this.state = 5037; + this.state = 5045; localContext._case_value = this.uid(); } break; case 2: { - this.state = 5038; + this.state = 5046; this.expression(0); } break; } - this.state = 5042; + this.state = 5050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5041; + this.state = 5049; this.caseAlternative(); } } - this.state = 5044; + this.state = 5052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 5052; + this.state = 5060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 5046; + this.state = 5054; this.match(MySqlParser.KW_ELSE); - this.state = 5048; + this.state = 5056; this.errorHandler.sync(this); alternative = 1; do { @@ -28178,7 +28220,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5047; + this.state = 5055; this.procedureSqlStatement(); } } @@ -28186,16 +28228,16 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5050; + this.state = 5058; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 711, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 714, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } - this.state = 5054; + this.state = 5062; this.match(MySqlParser.KW_END); - this.state = 5055; + this.state = 5063; this.match(MySqlParser.KW_CASE); } } @@ -28221,13 +28263,13 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5057; + this.state = 5065; this.match(MySqlParser.KW_IF); - this.state = 5058; + this.state = 5066; this.expression(0); - this.state = 5059; + this.state = 5067; this.match(MySqlParser.KW_THEN); - this.state = 5061; + this.state = 5069; this.errorHandler.sync(this); alternative = 1; do { @@ -28235,7 +28277,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5060; + this.state = 5068; localContext._procedureSqlStatement = this.procedureSqlStatement(); localContext._thenStatements.push(localContext._procedureSqlStatement); } @@ -28244,32 +28286,32 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5063; + this.state = 5071; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 713, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 716, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5068; + this.state = 5076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 54) { { { - this.state = 5065; + this.state = 5073; this.elseIfAlternative(); } } - this.state = 5070; + this.state = 5078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5077; + this.state = 5085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 5071; + this.state = 5079; this.match(MySqlParser.KW_ELSE); - this.state = 5073; + this.state = 5081; this.errorHandler.sync(this); alternative = 1; do { @@ -28277,7 +28319,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5072; + this.state = 5080; localContext._procedureSqlStatement = this.procedureSqlStatement(); localContext._elseStatements.push(localContext._procedureSqlStatement); } @@ -28286,16 +28328,16 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5075; + this.state = 5083; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 715, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 718, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } - this.state = 5079; + this.state = 5087; this.match(MySqlParser.KW_END); - this.state = 5080; + this.state = 5088; this.match(MySqlParser.KW_IF); } } @@ -28319,9 +28361,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5082; + this.state = 5090; this.match(MySqlParser.KW_ITERATE); - this.state = 5083; + this.state = 5091; localContext._label = this.uid(); } } @@ -28345,9 +28387,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5085; + this.state = 5093; this.match(MySqlParser.KW_LEAVE); - this.state = 5086; + this.state = 5094; localContext._label = this.uid(); } } @@ -28373,21 +28415,21 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5091; + this.state = 5099; 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 = 5088; + this.state = 5096; localContext._begin_label = this.uid(); - this.state = 5089; + this.state = 5097; this.match(MySqlParser.COLON_SYMB); } } - this.state = 5093; + this.state = 5101; this.match(MySqlParser.KW_LOOP); - this.state = 5095; + this.state = 5103; this.errorHandler.sync(this); alternative = 1; do { @@ -28395,7 +28437,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5094; + this.state = 5102; this.procedureSqlStatement(); } } @@ -28403,20 +28445,20 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5097; + this.state = 5105; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 718, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 721, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5099; + this.state = 5107; this.match(MySqlParser.KW_END); - this.state = 5100; + this.state = 5108; this.match(MySqlParser.KW_LOOP); - this.state = 5102; + this.state = 5110; 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 = 5101; + this.state = 5109; localContext._end_label = this.uid(); } } @@ -28445,21 +28487,21 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5107; + this.state = 5115; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 720, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 723, this.context) ) { case 1: { - this.state = 5104; + this.state = 5112; localContext._begin_label = this.uid(); - this.state = 5105; + this.state = 5113; this.match(MySqlParser.COLON_SYMB); } break; } - this.state = 5109; + this.state = 5117; this.match(MySqlParser.KW_REPEAT); - this.state = 5111; + this.state = 5119; this.errorHandler.sync(this); alternative = 1; do { @@ -28467,7 +28509,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5110; + this.state = 5118; this.procedureSqlStatement(); } } @@ -28475,24 +28517,24 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5113; + this.state = 5121; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 721, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 724, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5115; + this.state = 5123; this.match(MySqlParser.KW_UNTIL); - this.state = 5116; + this.state = 5124; this.expression(0); - this.state = 5117; + this.state = 5125; this.match(MySqlParser.KW_END); - this.state = 5118; + this.state = 5126; this.match(MySqlParser.KW_REPEAT); - this.state = 5120; + 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 = 5119; + this.state = 5127; localContext._end_label = this.uid(); } } @@ -28519,9 +28561,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5122; + this.state = 5130; this.match(MySqlParser.KW_RETURN); - this.state = 5123; + this.state = 5131; this.expression(0); } } @@ -28547,25 +28589,25 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5128; + this.state = 5136; 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 = 5125; + this.state = 5133; localContext._begin_label = this.uid(); - this.state = 5126; + this.state = 5134; this.match(MySqlParser.COLON_SYMB); } } - this.state = 5130; + this.state = 5138; this.match(MySqlParser.KW_WHILE); - this.state = 5131; + this.state = 5139; this.expression(0); - this.state = 5132; + this.state = 5140; this.match(MySqlParser.KW_DO); - this.state = 5134; + this.state = 5142; this.errorHandler.sync(this); alternative = 1; do { @@ -28573,7 +28615,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5133; + this.state = 5141; this.procedureSqlStatement(); } } @@ -28581,20 +28623,20 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5136; + this.state = 5144; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 724, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 727, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5138; + this.state = 5146; this.match(MySqlParser.KW_END); - this.state = 5139; + this.state = 5147; this.match(MySqlParser.KW_WHILE); - this.state = 5141; + this.state = 5149; 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 = 5140; + this.state = 5148; localContext._end_label = this.uid(); } } @@ -28620,16 +28662,16 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 452, MySqlParser.RULE_cursorStatement); let _la: number; try { - this.state = 5158; + this.state = 5166; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CLOSE: localContext = new CloseCursorContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5143; + this.state = 5151; this.match(MySqlParser.KW_CLOSE); - this.state = 5144; + this.state = 5152; (localContext as CloseCursorContext)._cursor_name = this.uid(); } break; @@ -28637,33 +28679,33 @@ export class MySqlParser extends SQLParserBase { localContext = new FetchCursorContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5145; + this.state = 5153; this.match(MySqlParser.KW_FETCH); - this.state = 5150; + this.state = 5158; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 727, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 730, this.context) ) { case 1: { - this.state = 5147; + this.state = 5155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 501) { { - this.state = 5146; + this.state = 5154; this.match(MySqlParser.KW_NEXT); } } - this.state = 5149; + this.state = 5157; this.match(MySqlParser.KW_FROM); } break; } - this.state = 5152; + this.state = 5160; (localContext as FetchCursorContext)._cursor_name = this.uid(); - this.state = 5153; + this.state = 5161; this.match(MySqlParser.KW_INTO); - this.state = 5154; + this.state = 5162; (localContext as FetchCursorContext)._var_names = this.uidList(); } break; @@ -28671,9 +28713,9 @@ export class MySqlParser extends SQLParserBase { localContext = new OpenCursorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5156; + this.state = 5164; this.match(MySqlParser.KW_OPEN); - this.state = 5157; + this.state = 5165; (localContext as OpenCursorContext)._cursor_name = this.uid(); } break; @@ -28702,20 +28744,20 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5160; + this.state = 5168; this.match(MySqlParser.KW_DECLARE); - this.state = 5161; + this.state = 5169; localContext._var_names = this.uidList(); - this.state = 5162; + this.state = 5170; this.dataType(); - this.state = 5165; + this.state = 5173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 5163; + this.state = 5171; this.match(MySqlParser.KW_DEFAULT); - this.state = 5164; + this.state = 5172; this.expression(0); } } @@ -28743,15 +28785,15 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5167; + this.state = 5175; this.match(MySqlParser.KW_DECLARE); - this.state = 5168; + this.state = 5176; localContext._condition_name = this.uid(); - this.state = 5169; + this.state = 5177; this.match(MySqlParser.KW_CONDITION); - this.state = 5170; + this.state = 5178; this.match(MySqlParser.KW_FOR); - this.state = 5177; + this.state = 5185; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -28761,25 +28803,25 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5171; + this.state = 5179; this.decimalLiteral(); } break; case MySqlParser.KW_SQLSTATE: { - this.state = 5172; + this.state = 5180; this.match(MySqlParser.KW_SQLSTATE); - this.state = 5174; + this.state = 5182; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 5173; + this.state = 5181; this.match(MySqlParser.KW_VALUE); } } - this.state = 5176; + this.state = 5184; this.match(MySqlParser.STRING_LITERAL); } break; @@ -28808,15 +28850,15 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5179; + this.state = 5187; this.match(MySqlParser.KW_DECLARE); - this.state = 5180; + this.state = 5188; localContext._condition_name = this.uid(); - this.state = 5181; + this.state = 5189; this.match(MySqlParser.KW_CURSOR); - this.state = 5182; + this.state = 5190; this.match(MySqlParser.KW_FOR); - this.state = 5183; + this.state = 5191; this.selectStatement(); } } @@ -28841,9 +28883,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5185; + this.state = 5193; this.match(MySqlParser.KW_DECLARE); - this.state = 5186; + this.state = 5194; localContext._handlerAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 32 || _la === 61 || _la === 180)) { @@ -28853,29 +28895,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5187; + this.state = 5195; this.match(MySqlParser.KW_HANDLER); - this.state = 5188; + this.state = 5196; this.match(MySqlParser.KW_FOR); - this.state = 5189; + this.state = 5197; this.handlerConditionValue(); - this.state = 5194; + this.state = 5202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5190; + this.state = 5198; this.match(MySqlParser.COMMA); - this.state = 5191; + this.state = 5199; this.handlerConditionValue(); } } - this.state = 5196; + this.state = 5204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5197; + this.state = 5205; this.routineBody(); } } @@ -28898,7 +28940,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 462, MySqlParser.RULE_handlerConditionValue); let _la: number; try { - this.state = 5210; + this.state = 5218; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -28910,7 +28952,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionCodeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5199; + this.state = 5207; this.decimalLiteral(); } break; @@ -28918,19 +28960,19 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionStateContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5200; + this.state = 5208; this.match(MySqlParser.KW_SQLSTATE); - this.state = 5202; + this.state = 5210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 5201; + this.state = 5209; this.match(MySqlParser.KW_VALUE); } } - this.state = 5204; + this.state = 5212; this.match(MySqlParser.STRING_LITERAL); } break; @@ -29486,7 +29528,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionNameContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5205; + this.state = 5213; (localContext as HandlerConditionNameContext)._condition_name = this.uid(); } break; @@ -29494,7 +29536,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionWarningContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5206; + this.state = 5214; this.match(MySqlParser.KW_SQLWARNING); } break; @@ -29502,9 +29544,9 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionNotfoundContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5207; + this.state = 5215; this.match(MySqlParser.KW_NOT); - this.state = 5208; + this.state = 5216; this.match(MySqlParser.KW_FOUND); } break; @@ -29512,7 +29554,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionExceptionContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 5209; + this.state = 5217; this.match(MySqlParser.KW_SQLEXCEPTION); } break; @@ -29540,23 +29582,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5214; + this.state = 5222; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 735, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 738, this.context) ) { case 1: { - this.state = 5212; + this.state = 5220; this.compoundStatement(); } break; case 2: { - this.state = 5213; + this.state = 5221; this.sqlStatement(); } break; } - this.state = 5216; + this.state = 5224; this.match(MySqlParser.SEMI); } } @@ -29581,27 +29623,27 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5218; + this.state = 5226; this.match(MySqlParser.KW_WHEN); - this.state = 5221; + this.state = 5229; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 736, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 739, this.context) ) { case 1: { - this.state = 5219; + this.state = 5227; this.constant(); } break; case 2: { - this.state = 5220; + this.state = 5228; this.expression(0); } break; } - this.state = 5223; + this.state = 5231; this.match(MySqlParser.KW_THEN); - this.state = 5225; + this.state = 5233; this.errorHandler.sync(this); alternative = 1; do { @@ -29609,7 +29651,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5224; + this.state = 5232; this.procedureSqlStatement(); } } @@ -29617,9 +29659,9 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5227; + this.state = 5235; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 737, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 740, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -29644,13 +29686,13 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5229; + this.state = 5237; this.match(MySqlParser.KW_ELSEIF); - this.state = 5230; + this.state = 5238; this.expression(0); - this.state = 5231; + this.state = 5239; this.match(MySqlParser.KW_THEN); - this.state = 5233; + this.state = 5241; this.errorHandler.sync(this); alternative = 1; do { @@ -29658,7 +29700,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5232; + this.state = 5240; this.procedureSqlStatement(); } } @@ -29666,9 +29708,9 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5235; + this.state = 5243; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 738, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 741, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -29693,41 +29735,41 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5237; + this.state = 5245; this.match(MySqlParser.KW_ALTER); - this.state = 5238; + this.state = 5246; this.match(MySqlParser.KW_USER); - this.state = 5240; + this.state = 5248; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 739, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 742, this.context) ) { case 1: { - this.state = 5239; + this.state = 5247; this.ifExists(); } break; } - this.state = 5298; + this.state = 5306; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 751, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 754, this.context) ) { case 1: { { - this.state = 5242; + this.state = 5250; this.userSpecification(); - this.state = 5247; + this.state = 5255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5243; + this.state = 5251; this.match(MySqlParser.COMMA); - this.state = 5244; + this.state = 5252; this.userSpecification(); } } - this.state = 5249; + this.state = 5257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29737,37 +29779,37 @@ export class MySqlParser extends SQLParserBase { case 2: { { - this.state = 5250; + this.state = 5258; this.alterUserAuthOption(); - this.state = 5255; + this.state = 5263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5251; + this.state = 5259; this.match(MySqlParser.COMMA); - this.state = 5252; + this.state = 5260; this.alterUserAuthOption(); } } - this.state = 5257; + this.state = 5265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5272; + this.state = 5280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5258; + this.state = 5266; this.match(MySqlParser.KW_REQUIRE); - this.state = 5270; + this.state = 5278; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5259; + this.state = 5267; this.match(MySqlParser.KW_NONE); } break; @@ -29777,29 +29819,29 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5260; + this.state = 5268; this.tlsOption(); - this.state = 5267; + this.state = 5275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5262; + this.state = 5270; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5261; + this.state = 5269; this.match(MySqlParser.KW_AND); } } - this.state = 5264; + this.state = 5272; this.tlsOption(); } } - this.state = 5269; + this.state = 5277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29811,49 +29853,49 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 5280; + this.state = 5288; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 747, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 750, this.context) ) { case 1: { - this.state = 5274; + this.state = 5282; this.match(MySqlParser.KW_WITH); - this.state = 5276; + this.state = 5284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5275; + this.state = 5283; this.userResourceOption(); } } - this.state = 5278; + this.state = 5286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 51) !== 0)); } break; } - this.state = 5286; + this.state = 5294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 304 || _la === 395 || _la === 529 || _la === 530) { { - this.state = 5284; + this.state = 5292; 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 = 5282; + this.state = 5290; this.userPasswordOption(); } break; case MySqlParser.KW_ACCOUNT: { - this.state = 5283; + this.state = 5291; this.userLockOption(); } break; @@ -29861,16 +29903,16 @@ export class MySqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 5288; + this.state = 5296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5291; + this.state = 5299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 15 || _la === 340) { { - this.state = 5289; + this.state = 5297; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 340)) { this.errorHandler.recoverInline(this); @@ -29879,7 +29921,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5290; + this.state = 5298; this.match(MySqlParser.STRING_LITERAL); } } @@ -29891,14 +29933,14 @@ export class MySqlParser extends SQLParserBase { { { { - this.state = 5293; + this.state = 5301; this.userOrRoleName(); } - this.state = 5294; + this.state = 5302; this.match(MySqlParser.KW_DEFAULT); - this.state = 5295; + this.state = 5303; this.match(MySqlParser.KW_ROLE); - this.state = 5296; + this.state = 5304; this.roleOption(); } } @@ -29927,85 +29969,85 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5300; + this.state = 5308; this.match(MySqlParser.KW_CREATE); - this.state = 5301; + this.state = 5309; this.match(MySqlParser.KW_USER); - this.state = 5303; + this.state = 5311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5302; + this.state = 5310; this.ifNotExists(); } } - this.state = 5305; + this.state = 5313; this.userName(); - this.state = 5307; + this.state = 5315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5306; + this.state = 5314; this.createUserAuthOption(); } } - this.state = 5316; + this.state = 5324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5309; + this.state = 5317; this.match(MySqlParser.COMMA); - this.state = 5310; + this.state = 5318; this.userName(); - this.state = 5312; + this.state = 5320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5311; + this.state = 5319; this.createUserAuthOption(); } } } } - this.state = 5318; + this.state = 5326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5322; + this.state = 5330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 5319; + this.state = 5327; this.match(MySqlParser.KW_DEFAULT); - this.state = 5320; + this.state = 5328; this.match(MySqlParser.KW_ROLE); - this.state = 5321; + this.state = 5329; this.roleOption(); } } - this.state = 5338; + this.state = 5346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5324; + this.state = 5332; this.match(MySqlParser.KW_REQUIRE); - this.state = 5336; + this.state = 5344; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5325; + this.state = 5333; this.match(MySqlParser.KW_NONE); } break; @@ -30015,29 +30057,29 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5326; + this.state = 5334; this.tlsOption(); - this.state = 5333; + this.state = 5341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5328; + this.state = 5336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5327; + this.state = 5335; this.match(MySqlParser.KW_AND); } } - this.state = 5330; + this.state = 5338; this.tlsOption(); } } - this.state = 5335; + this.state = 5343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30049,49 +30091,49 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 5346; + this.state = 5354; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 762, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 765, this.context) ) { case 1: { - this.state = 5340; + this.state = 5348; this.match(MySqlParser.KW_WITH); - this.state = 5342; + this.state = 5350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5341; + this.state = 5349; this.userResourceOption(); } } - this.state = 5344; + this.state = 5352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 51) !== 0)); } break; } - this.state = 5352; + this.state = 5360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 304 || _la === 395 || _la === 529 || _la === 530) { { - this.state = 5350; + this.state = 5358; 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 = 5348; + this.state = 5356; this.userPasswordOption(); } break; case MySqlParser.KW_ACCOUNT: { - this.state = 5349; + this.state = 5357; this.userLockOption(); } break; @@ -30099,16 +30141,16 @@ export class MySqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 5354; + this.state = 5362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5357; + this.state = 5365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 15 || _la === 340) { { - this.state = 5355; + this.state = 5363; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 340)) { this.errorHandler.recoverInline(this); @@ -30117,7 +30159,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5356; + this.state = 5364; this.match(MySqlParser.STRING_LITERAL); } } @@ -30145,35 +30187,35 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5359; + this.state = 5367; this.match(MySqlParser.KW_DROP); - this.state = 5360; + this.state = 5368; this.match(MySqlParser.KW_USER); - this.state = 5362; + this.state = 5370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5361; + this.state = 5369; this.ifExists(); } } - this.state = 5364; + this.state = 5372; this.userName(); - this.state = 5369; + this.state = 5377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5365; + this.state = 5373; this.match(MySqlParser.COMMA); - this.state = 5366; + this.state = 5374; this.userName(); } } - this.state = 5371; + this.state = 5379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30199,69 +30241,69 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 5461; + this.state = 5469; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 785, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 788, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5372; + this.state = 5380; this.match(MySqlParser.KW_GRANT); - this.state = 5373; + this.state = 5381; this.privilegeClause(); - this.state = 5378; + this.state = 5386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5374; + this.state = 5382; this.match(MySqlParser.COMMA); - this.state = 5375; + this.state = 5383; this.privilegeClause(); } } - this.state = 5380; + this.state = 5388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5381; + this.state = 5389; this.match(MySqlParser.KW_ON); - this.state = 5383; + this.state = 5391; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 769, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 772, this.context) ) { case 1: { - this.state = 5382; + this.state = 5390; this.privilegeObjectType(); } break; } - this.state = 5385; + this.state = 5393; this.privilegeLevel(); - this.state = 5386; + this.state = 5394; this.match(MySqlParser.KW_TO); - this.state = 5396; + this.state = 5404; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 771, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 774, this.context) ) { case 1: { { - this.state = 5387; + this.state = 5395; this.userAuthOption(); - this.state = 5392; + this.state = 5400; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5388; + this.state = 5396; this.match(MySqlParser.COMMA); - this.state = 5389; + this.state = 5397; this.userAuthOption(); } } - this.state = 5394; + this.state = 5402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30270,24 +30312,24 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 5395; + this.state = 5403; this.userOrRoleNames(); } break; } - this.state = 5412; + this.state = 5420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5398; + this.state = 5406; this.match(MySqlParser.KW_REQUIRE); - this.state = 5410; + this.state = 5418; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5399; + this.state = 5407; localContext._tlsNone = this.match(MySqlParser.KW_NONE); } break; @@ -30297,29 +30339,29 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5400; + this.state = 5408; this.tlsOption(); - this.state = 5407; + this.state = 5415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5402; + this.state = 5410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5401; + this.state = 5409; this.match(MySqlParser.KW_AND); } } - this.state = 5404; + this.state = 5412; this.tlsOption(); } } - this.state = 5409; + this.state = 5417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30331,27 +30373,27 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 5423; + this.state = 5431; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 778, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 781, this.context) ) { case 1: { - this.state = 5414; + this.state = 5422; this.match(MySqlParser.KW_WITH); - this.state = 5420; + this.state = 5428; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 777, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 780, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 5418; + this.state = 5426; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_GRANT: { - this.state = 5415; + this.state = 5423; this.match(MySqlParser.KW_GRANT); - this.state = 5416; + this.state = 5424; this.match(MySqlParser.KW_OPTION); } break; @@ -30360,7 +30402,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_MAX_UPDATES_PER_HOUR: case MySqlParser.KW_MAX_USER_CONNECTIONS: { - this.state = 5417; + this.state = 5425; this.userResourceOption(); } break; @@ -30369,32 +30411,32 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 5422; + this.state = 5430; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 777, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 780, this.context); } } break; } - this.state = 5432; + this.state = 5440; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 5425; + this.state = 5433; this.match(MySqlParser.KW_AS); - this.state = 5426; + this.state = 5434; this.userName(); - this.state = 5430; + this.state = 5438; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 779, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 782, this.context) ) { case 1: { - this.state = 5427; + this.state = 5435; this.match(MySqlParser.KW_WITH); - this.state = 5428; + this.state = 5436; this.match(MySqlParser.KW_ROLE); - this.state = 5429; + this.state = 5437; this.roleOption(); } break; @@ -30407,76 +30449,76 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5434; + this.state = 5442; this.match(MySqlParser.KW_GRANT); - this.state = 5437; + this.state = 5445; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 781, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 784, this.context) ) { case 1: { - this.state = 5435; + this.state = 5443; this.match(MySqlParser.KW_PROXY); - this.state = 5436; + this.state = 5444; this.match(MySqlParser.KW_ON); } break; } { - this.state = 5439; + this.state = 5447; this.userOrRoleName(); } - this.state = 5444; + this.state = 5452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5440; + this.state = 5448; this.match(MySqlParser.COMMA); { - this.state = 5441; + this.state = 5449; this.userOrRoleName(); } } } - this.state = 5446; + this.state = 5454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5447; + this.state = 5455; this.match(MySqlParser.KW_TO); { - this.state = 5448; + this.state = 5456; this.userOrRoleName(); } - this.state = 5453; + this.state = 5461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5449; + this.state = 5457; this.match(MySqlParser.COMMA); { - this.state = 5450; + this.state = 5458; this.userOrRoleName(); } } } - this.state = 5455; + this.state = 5463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5459; + this.state = 5467; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 784, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 787, this.context) ) { case 1: { - this.state = 5456; + this.state = 5464; this.match(MySqlParser.KW_WITH); - this.state = 5457; + this.state = 5465; this.match(MySqlParser.KW_ADMIN); - this.state = 5458; + this.state = 5466; this.match(MySqlParser.KW_OPTION); } break; @@ -30504,36 +30546,36 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 478, MySqlParser.RULE_roleOption); let _la: number; try { - this.state = 5471; + this.state = 5479; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 787, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 790, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5463; + this.state = 5471; this.match(MySqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5464; + this.state = 5472; this.match(MySqlParser.KW_NONE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5465; + this.state = 5473; this.match(MySqlParser.KW_ALL); - this.state = 5468; + this.state = 5476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 5466; + this.state = 5474; this.match(MySqlParser.KW_EXCEPT); - this.state = 5467; + this.state = 5475; this.userOrRoleNames(); } } @@ -30543,7 +30585,7 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5470; + this.state = 5478; this.userOrRoleNames(); } break; @@ -30570,45 +30612,45 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5473; + this.state = 5481; this.match(MySqlParser.KW_GRANT); - this.state = 5474; + this.state = 5482; this.match(MySqlParser.KW_PROXY); - this.state = 5475; + this.state = 5483; this.match(MySqlParser.KW_ON); - this.state = 5476; + this.state = 5484; localContext._fromFirst = this.userName(); - this.state = 5477; + this.state = 5485; this.match(MySqlParser.KW_TO); - this.state = 5478; + this.state = 5486; localContext._toFirst = this.userName(); - this.state = 5483; + this.state = 5491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5479; + this.state = 5487; this.match(MySqlParser.COMMA); - this.state = 5480; + this.state = 5488; localContext._userName = this.userName(); localContext._toOther.push(localContext._userName); } } - this.state = 5485; + this.state = 5493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5489; + this.state = 5497; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 789, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 792, this.context) ) { case 1: { - this.state = 5486; + this.state = 5494; this.match(MySqlParser.KW_WITH); - this.state = 5487; + this.state = 5495; this.match(MySqlParser.KW_GRANT); - this.state = 5488; + this.state = 5496; this.match(MySqlParser.KW_OPTION); } break; @@ -30636,64 +30678,64 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5491; + this.state = 5499; this.match(MySqlParser.KW_ALTER); - this.state = 5492; + this.state = 5500; this.match(MySqlParser.KW_RESOURCE); - this.state = 5493; + this.state = 5501; this.match(MySqlParser.KW_GROUP); - this.state = 5494; + this.state = 5502; this.groupName(); - this.state = 5500; + this.state = 5508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 5495; + this.state = 5503; this.match(MySqlParser.KW_VCPU); - this.state = 5497; + this.state = 5505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5496; + this.state = 5504; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5499; + this.state = 5507; this.resourceGroupVCpuSpec(); } } - this.state = 5507; + this.state = 5515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 837) { { - this.state = 5502; + this.state = 5510; this.match(MySqlParser.KW_THREAD_PRIORITY); - this.state = 5504; + this.state = 5512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5503; + this.state = 5511; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5506; + this.state = 5514; this.decimalLiteral(); } } - this.state = 5513; + this.state = 5521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 5509; + this.state = 5517; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -30702,12 +30744,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5511; + this.state = 5519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 5510; + this.state = 5518; this.match(MySqlParser.KW_FORCE); } } @@ -30738,19 +30780,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5515; + this.state = 5523; this.match(MySqlParser.KW_CREATE); - this.state = 5516; + this.state = 5524; this.match(MySqlParser.KW_RESOURCE); - this.state = 5517; + this.state = 5525; this.match(MySqlParser.KW_GROUP); - this.state = 5518; + this.state = 5526; this.groupNameCreate(); - this.state = 5519; + this.state = 5527; this.match(MySqlParser.KW_TYPE); - this.state = 5520; + this.state = 5528; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5521; + this.state = 5529; _la = this.tokenStream.LA(1); if(!(_la === 678 || _la === 835)) { this.errorHandler.recoverInline(this); @@ -30759,56 +30801,56 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5527; + this.state = 5535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 5522; + this.state = 5530; this.match(MySqlParser.KW_VCPU); - this.state = 5524; + this.state = 5532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5523; + this.state = 5531; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5526; + this.state = 5534; this.resourceGroupVCpuSpec(); } } - this.state = 5534; + this.state = 5542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 837) { { - this.state = 5529; + this.state = 5537; this.match(MySqlParser.KW_THREAD_PRIORITY); - this.state = 5531; + this.state = 5539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5530; + this.state = 5538; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5533; + this.state = 5541; this.decimalLiteral(); } } - this.state = 5537; + this.state = 5545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 5536; + this.state = 5544; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -30843,20 +30885,20 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5539; + this.state = 5547; this.match(MySqlParser.KW_DROP); - this.state = 5540; + this.state = 5548; this.match(MySqlParser.KW_RESOURCE); - this.state = 5541; + this.state = 5549; this.match(MySqlParser.KW_GROUP); - this.state = 5542; + this.state = 5550; this.groupName(); - this.state = 5544; + this.state = 5552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 5543; + this.state = 5551; this.match(MySqlParser.KW_FORCE); } } @@ -30884,36 +30926,36 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5546; + this.state = 5554; this.match(MySqlParser.KW_SET); - this.state = 5547; + this.state = 5555; this.match(MySqlParser.KW_RESOURCE); - this.state = 5548; + this.state = 5556; this.match(MySqlParser.KW_GROUP); - this.state = 5549; + this.state = 5557; this.groupName(); - this.state = 5559; + this.state = 5567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5550; + this.state = 5558; this.match(MySqlParser.KW_FOR); - this.state = 5551; + this.state = 5559; this.decimalLiteral(); - this.state = 5556; + this.state = 5564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5552; + this.state = 5560; this.match(MySqlParser.COMMA); - this.state = 5553; + this.state = 5561; this.decimalLiteral(); } } - this.state = 5558; + this.state = 5566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30943,43 +30985,43 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5566; + this.state = 5574; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 804, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 807, this.context) ) { case 1: { - this.state = 5561; + this.state = 5569; this.decimalLiteral(); } break; case 2: { - this.state = 5562; + this.state = 5570; this.decimalLiteral(); - this.state = 5563; + this.state = 5571; this.match(MySqlParser.MINUS); - this.state = 5564; + this.state = 5572; this.decimalLiteral(); } break; } - this.state = 5572; + this.state = 5580; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 805, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 808, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5568; + this.state = 5576; this.match(MySqlParser.COMMA); - this.state = 5569; + this.state = 5577; this.resourceGroupVCpuSpec(); } } } - this.state = 5574; + this.state = 5582; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 805, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 808, this.context); } } } @@ -31004,25 +31046,25 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5575; + this.state = 5583; this.match(MySqlParser.KW_RENAME); - this.state = 5576; + this.state = 5584; this.match(MySqlParser.KW_USER); - this.state = 5577; + this.state = 5585; this.renameUserClause(); - this.state = 5582; + this.state = 5590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5578; + this.state = 5586; this.match(MySqlParser.COMMA); - this.state = 5579; + this.state = 5587; this.renameUserClause(); } } - this.state = 5584; + this.state = 5592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -31047,67 +31089,67 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 494, MySqlParser.RULE_revokeStatement); let _la: number; try { - this.state = 5637; + this.state = 5645; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 817, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 820, this.context) ) { case 1: localContext = new DetailRevokeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5585; + this.state = 5593; this.match(MySqlParser.KW_REVOKE); - this.state = 5587; + this.state = 5595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5586; + this.state = 5594; this.ifExists(); } } - this.state = 5589; + this.state = 5597; this.privilegeClause(); - this.state = 5594; + this.state = 5602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5590; + this.state = 5598; this.match(MySqlParser.COMMA); - this.state = 5591; + this.state = 5599; this.privilegeClause(); } } - this.state = 5596; + this.state = 5604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5597; + this.state = 5605; this.match(MySqlParser.KW_ON); - this.state = 5599; + this.state = 5607; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 809, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 812, this.context) ) { case 1: { - this.state = 5598; + this.state = 5606; this.privilegeObjectType(); } break; } - this.state = 5601; + this.state = 5609; this.privilegeLevel(); - this.state = 5602; + this.state = 5610; this.match(MySqlParser.KW_FROM); - this.state = 5603; + this.state = 5611; this.userOrRoleNames(); - this.state = 5605; + this.state = 5613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5604; + this.state = 5612; this.ignoreUnknownUser(); } } @@ -31118,46 +31160,46 @@ export class MySqlParser extends SQLParserBase { localContext = new ShortRevokeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5607; + this.state = 5615; this.match(MySqlParser.KW_REVOKE); - this.state = 5609; + this.state = 5617; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5608; + this.state = 5616; this.ifExists(); } } - this.state = 5611; + this.state = 5619; this.match(MySqlParser.KW_ALL); - this.state = 5613; + this.state = 5621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 734) { { - this.state = 5612; + this.state = 5620; this.match(MySqlParser.KW_PRIVILEGES); } } - this.state = 5615; + this.state = 5623; this.match(MySqlParser.COMMA); - this.state = 5616; + this.state = 5624; this.match(MySqlParser.KW_GRANT); - this.state = 5617; + this.state = 5625; this.match(MySqlParser.KW_OPTION); - this.state = 5618; + this.state = 5626; this.match(MySqlParser.KW_FROM); - this.state = 5619; + this.state = 5627; this.userOrRoleNames(); - this.state = 5621; + this.state = 5629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5620; + this.state = 5628; this.ignoreUnknownUser(); } } @@ -31168,42 +31210,42 @@ export class MySqlParser extends SQLParserBase { localContext = new ProxyAndRoleRevokeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5623; + this.state = 5631; this.match(MySqlParser.KW_REVOKE); - this.state = 5625; + this.state = 5633; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 814, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 817, this.context) ) { case 1: { - this.state = 5624; + this.state = 5632; this.ifExists(); } break; } - this.state = 5629; + this.state = 5637; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 815, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 818, this.context) ) { case 1: { - this.state = 5627; + this.state = 5635; this.match(MySqlParser.KW_PROXY); - this.state = 5628; + this.state = 5636; this.match(MySqlParser.KW_ON); } break; } - this.state = 5631; + this.state = 5639; this.userOrRoleNames(); - this.state = 5632; + this.state = 5640; this.match(MySqlParser.KW_FROM); - this.state = 5633; + this.state = 5641; this.userOrRoleNames(); - this.state = 5635; + this.state = 5643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5634; + this.state = 5642; this.ignoreUnknownUser(); } } @@ -31232,11 +31274,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5639; + this.state = 5647; this.match(MySqlParser.KW_IGNORE); - this.state = 5640; + this.state = 5648; this.match(MySqlParser.KW_UNKNOWN); - this.state = 5641; + this.state = 5649; this.match(MySqlParser.KW_USER); } } @@ -31261,7 +31303,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5643; + this.state = 5651; _la = this.tokenStream.LA(1); if(!(_la === 132 || _la === 173 || _la === 409)) { this.errorHandler.recoverInline(this); @@ -31291,44 +31333,44 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 500, MySqlParser.RULE_setPasswordStatement); let _la: number; try { - this.state = 5677; + this.state = 5685; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 824, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 827, this.context) ) { case 1: localContext = new V57Context(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5645; + this.state = 5653; this.match(MySqlParser.KW_SET); - this.state = 5646; + this.state = 5654; this.match(MySqlParser.KW_PASSWORD); - this.state = 5649; + this.state = 5657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5647; + this.state = 5655; this.match(MySqlParser.KW_FOR); - this.state = 5648; + this.state = 5656; this.userName(); } } - this.state = 5651; + this.state = 5659; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5654; + this.state = 5662; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OLD_PASSWORD: case MySqlParser.KW_PASSWORD: { - this.state = 5652; + this.state = 5660; this.passwordFunctionClause(); } break; case MySqlParser.STRING_LITERAL: { - this.state = 5653; + this.state = 5661; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31341,66 +31383,66 @@ export class MySqlParser extends SQLParserBase { localContext = new V80Context(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5656; + this.state = 5664; this.match(MySqlParser.KW_SET); - this.state = 5657; + this.state = 5665; this.match(MySqlParser.KW_PASSWORD); - this.state = 5660; + this.state = 5668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5658; + this.state = 5666; this.match(MySqlParser.KW_FOR); - this.state = 5659; + this.state = 5667; this.userName(); } } - this.state = 5666; + this.state = 5674; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TO: { - this.state = 5662; + this.state = 5670; this.match(MySqlParser.KW_TO); - this.state = 5663; + this.state = 5671; this.match(MySqlParser.KW_RANDOM); } break; case MySqlParser.EQUAL_SYMBOL: { - this.state = 5664; + this.state = 5672; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5665; + this.state = 5673; this.match(MySqlParser.STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5670; + this.state = 5678; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 822, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 825, this.context) ) { case 1: { - this.state = 5668; + this.state = 5676; this.match(MySqlParser.KW_REPLACE); - this.state = 5669; + this.state = 5677; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 5675; + this.state = 5683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 5672; + this.state = 5680; this.match(MySqlParser.KW_RETAIN); - this.state = 5673; + this.state = 5681; this.match(MySqlParser.KW_CURRENT); - this.state = 5674; + this.state = 5682; this.match(MySqlParser.KW_PASSWORD); } } @@ -31429,9 +31471,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5679; + this.state = 5687; this.userName(); - this.state = 5680; + this.state = 5688; this.userPasswordOption(); } } @@ -31457,60 +31499,60 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5682; + this.state = 5690; this.userName(); - this.state = 5708; + this.state = 5716; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 827, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 830, this.context) ) { case 1: { - this.state = 5683; + this.state = 5691; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5684; + this.state = 5692; this.match(MySqlParser.KW_BY); - this.state = 5685; + this.state = 5693; this.match(MySqlParser.STRING_LITERAL); - this.state = 5686; + this.state = 5694; this.authOptionClause(); } break; case 2: { - this.state = 5687; + this.state = 5695; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5688; + this.state = 5696; this.match(MySqlParser.KW_BY); - this.state = 5689; + this.state = 5697; this.match(MySqlParser.KW_RANDOM); - this.state = 5690; + this.state = 5698; this.match(MySqlParser.KW_PASSWORD); - this.state = 5691; + this.state = 5699; this.authOptionClause(); } break; case 3: { - this.state = 5692; + this.state = 5700; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5693; + this.state = 5701; this.match(MySqlParser.KW_WITH); - this.state = 5694; + this.state = 5702; this.authenticationRule(); } break; case 4: { - this.state = 5695; + this.state = 5703; this.match(MySqlParser.KW_DISCARD); - this.state = 5696; + this.state = 5704; this.match(MySqlParser.KW_OLD); - this.state = 5697; + this.state = 5705; this.match(MySqlParser.KW_PASSWORD); } break; case 5: { - this.state = 5703; + this.state = 5711; this.errorHandler.sync(this); alternative = 1; do { @@ -31518,7 +31560,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5698; + this.state = 5706; _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 51 || _la === 492)) { this.errorHandler.recoverInline(this); @@ -31527,14 +31569,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5699; + this.state = 5707; this.factor(); - this.state = 5701; + this.state = 5709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5700; + this.state = 5708; this.factorAuthOption(); } } @@ -31545,15 +31587,15 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5705; + this.state = 5713; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 826, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 829, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; case 6: { - this.state = 5707; + this.state = 5715; this.registrationOption(); } break; @@ -31579,31 +31621,31 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 506, MySqlParser.RULE_createUserAuthOption); let _la: number; try { - this.state = 5746; + this.state = 5754; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 834, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 837, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5710; + this.state = 5718; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5711; + this.state = 5719; this.match(MySqlParser.KW_BY); - this.state = 5717; + this.state = 5725; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5712; + this.state = 5720; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5713; + this.state = 5721; this.match(MySqlParser.KW_RANDOM); - this.state = 5714; + this.state = 5722; this.match(MySqlParser.KW_PASSWORD); } } @@ -31611,9 +31653,9 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_PASSWORD: { { - this.state = 5715; + this.state = 5723; this.match(MySqlParser.KW_PASSWORD); - this.state = 5716; + this.state = 5724; this.match(MySqlParser.STRING_LITERAL); } } @@ -31621,14 +31663,14 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5721; + this.state = 5729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5719; + this.state = 5727; this.match(MySqlParser.KW_AND); - this.state = 5720; + this.state = 5728; this.createUserAuthOption(); } } @@ -31638,35 +31680,35 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5723; + this.state = 5731; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5724; + this.state = 5732; this.match(MySqlParser.KW_WITH); - this.state = 5725; + this.state = 5733; localContext._authPlugin = this.uid(); - this.state = 5734; + this.state = 5742; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BY: { { - this.state = 5726; + this.state = 5734; this.match(MySqlParser.KW_BY); - this.state = 5730; + this.state = 5738; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5727; + this.state = 5735; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5728; + this.state = 5736; this.match(MySqlParser.KW_RANDOM); - this.state = 5729; + this.state = 5737; this.match(MySqlParser.KW_PASSWORD); } } @@ -31679,9 +31721,9 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_AS: { - this.state = 5732; + this.state = 5740; this.match(MySqlParser.KW_AS); - this.state = 5733; + this.state = 5741; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31762,14 +31804,14 @@ export class MySqlParser extends SQLParserBase { default: break; } - this.state = 5738; + this.state = 5746; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5736; + this.state = 5744; this.match(MySqlParser.KW_AND); - this.state = 5737; + this.state = 5745; this.createUserAuthOption(); } } @@ -31779,18 +31821,18 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5740; + this.state = 5748; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5741; + this.state = 5749; this.match(MySqlParser.KW_WITH); - this.state = 5742; + this.state = 5750; localContext._authPlugin = this.uid(); - this.state = 5744; + this.state = 5752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 427) { { - this.state = 5743; + this.state = 5751; this.createUserInitialAuthOption(); } } @@ -31817,36 +31859,36 @@ export class MySqlParser extends SQLParserBase { let localContext = new CreateUserInitialAuthOptionContext(this.context, this.state); this.enterRule(localContext, 508, MySqlParser.RULE_createUserInitialAuthOption); try { - this.state = 5765; + this.state = 5773; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 836, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 839, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5748; + this.state = 5756; this.match(MySqlParser.KW_INITIAL); - this.state = 5749; + this.state = 5757; this.match(MySqlParser.KW_AUTHENTICATION); - this.state = 5750; + this.state = 5758; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5751; + this.state = 5759; this.match(MySqlParser.KW_BY); - this.state = 5755; + this.state = 5763; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_RANDOM: { { - this.state = 5752; + this.state = 5760; this.match(MySqlParser.KW_RANDOM); - this.state = 5753; + this.state = 5761; this.match(MySqlParser.KW_PASSWORD); } } break; case MySqlParser.STRING_LITERAL: { - this.state = 5754; + this.state = 5762; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31858,19 +31900,19 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5757; + this.state = 5765; this.match(MySqlParser.KW_INITIAL); - this.state = 5758; + this.state = 5766; this.match(MySqlParser.KW_AUTHENTICATION); - this.state = 5759; + this.state = 5767; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5760; + this.state = 5768; this.match(MySqlParser.KW_WITH); - this.state = 5761; + this.state = 5769; localContext._authPlugin = this.uid(); - this.state = 5762; + this.state = 5770; this.match(MySqlParser.KW_AS); - this.state = 5763; + this.state = 5771; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31894,22 +31936,22 @@ export class MySqlParser extends SQLParserBase { let localContext = new UserAuthOptionContext(this.context, this.state); this.enterRule(localContext, 510, MySqlParser.RULE_userAuthOption); try { - this.state = 5792; + this.state = 5800; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 837, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 840, this.context) ) { case 1: localContext = new HashAuthOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5767; + this.state = 5775; this.userName(); - this.state = 5768; + this.state = 5776; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5769; + this.state = 5777; this.match(MySqlParser.KW_BY); - this.state = 5770; + this.state = 5778; this.match(MySqlParser.KW_PASSWORD); - this.state = 5771; + this.state = 5779; (localContext as HashAuthOptionContext)._hashed = this.match(MySqlParser.STRING_LITERAL); } break; @@ -31917,17 +31959,17 @@ export class MySqlParser extends SQLParserBase { localContext = new RandomAuthOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5773; + this.state = 5781; this.userName(); - this.state = 5774; + this.state = 5782; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5775; + this.state = 5783; this.match(MySqlParser.KW_BY); - this.state = 5776; + this.state = 5784; this.match(MySqlParser.KW_RANDOM); - this.state = 5777; + this.state = 5785; this.match(MySqlParser.KW_PASSWORD); - this.state = 5778; + this.state = 5786; this.authOptionClause(); } break; @@ -31935,15 +31977,15 @@ export class MySqlParser extends SQLParserBase { localContext = new StringAuthOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5780; + this.state = 5788; this.userName(); - this.state = 5781; + this.state = 5789; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5782; + this.state = 5790; this.match(MySqlParser.KW_BY); - this.state = 5783; + this.state = 5791; this.match(MySqlParser.STRING_LITERAL); - this.state = 5784; + this.state = 5792; this.authOptionClause(); } break; @@ -31951,13 +31993,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ModuleAuthOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5786; + this.state = 5794; this.userName(); - this.state = 5787; + this.state = 5795; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5788; + this.state = 5796; this.match(MySqlParser.KW_WITH); - this.state = 5789; + this.state = 5797; this.authenticationRule(); } break; @@ -31965,7 +32007,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SimpleAuthOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5791; + this.state = 5799; this.userName(); } break; @@ -31992,28 +32034,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5796; + this.state = 5804; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 838, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 841, this.context) ) { case 1: { - this.state = 5794; + this.state = 5802; this.match(MySqlParser.KW_REPLACE); - this.state = 5795; + this.state = 5803; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 5801; + this.state = 5809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 5798; + this.state = 5806; this.match(MySqlParser.KW_RETAIN); - this.state = 5799; + this.state = 5807; this.match(MySqlParser.KW_CURRENT); - this.state = 5800; + this.state = 5808; this.match(MySqlParser.KW_PASSWORD); } } @@ -32039,21 +32081,21 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 514, MySqlParser.RULE_authenticationRule); let _la: number; try { - this.state = 5817; + this.state = 5825; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 842, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 845, this.context) ) { case 1: localContext = new ModuleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5803; - (localContext as ModuleContext)._authPlugin = this.uid(); this.state = 5811; + (localContext as ModuleContext)._authPlugin = this.uid(); + this.state = 5819; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 841, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 844, this.context) ) { case 1: { - this.state = 5804; + this.state = 5812; _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 20 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -32062,27 +32104,27 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5808; + this.state = 5816; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5805; + this.state = 5813; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { - this.state = 5806; + this.state = 5814; this.match(MySqlParser.KW_RANDOM); - this.state = 5807; + this.state = 5815; this.match(MySqlParser.KW_PASSWORD); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5810; + this.state = 5818; this.authOptionClause(); } break; @@ -32093,11 +32135,11 @@ export class MySqlParser extends SQLParserBase { localContext = new PasswordModuleOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5813; + this.state = 5821; (localContext as PasswordModuleOptionContext)._authPlugin = this.uid(); - this.state = 5814; + this.state = 5822; this.match(MySqlParser.KW_USING); - this.state = 5815; + this.state = 5823; this.passwordFunctionClause(); } break; @@ -32121,47 +32163,47 @@ export class MySqlParser extends SQLParserBase { let localContext = new TlsOptionContext(this.context, this.state); this.enterRule(localContext, 516, MySqlParser.RULE_tlsOption); try { - this.state = 5827; + this.state = 5835; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SSL: this.enterOuterAlt(localContext, 1); { - this.state = 5819; + this.state = 5827; this.match(MySqlParser.KW_SSL); } break; case MySqlParser.KW_X509: this.enterOuterAlt(localContext, 2); { - this.state = 5820; + this.state = 5828; this.match(MySqlParser.KW_X509); } break; case MySqlParser.KW_CIPHER: this.enterOuterAlt(localContext, 3); { - this.state = 5821; + this.state = 5829; this.match(MySqlParser.KW_CIPHER); - this.state = 5822; + this.state = 5830; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_ISSUER: this.enterOuterAlt(localContext, 4); { - this.state = 5823; + this.state = 5831; this.match(MySqlParser.KW_ISSUER); - this.state = 5824; + this.state = 5832; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SUBJECT: this.enterOuterAlt(localContext, 5); { - this.state = 5825; + this.state = 5833; this.match(MySqlParser.KW_SUBJECT); - this.state = 5826; + this.state = 5834; this.match(MySqlParser.STRING_LITERAL); } break; @@ -32187,42 +32229,42 @@ export class MySqlParser extends SQLParserBase { let localContext = new UserResourceOptionContext(this.context, this.state); this.enterRule(localContext, 518, MySqlParser.RULE_userResourceOption); try { - this.state = 5837; + this.state = 5845; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MAX_QUERIES_PER_HOUR: this.enterOuterAlt(localContext, 1); { - this.state = 5829; + this.state = 5837; this.match(MySqlParser.KW_MAX_QUERIES_PER_HOUR); - this.state = 5830; + this.state = 5838; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_UPDATES_PER_HOUR: this.enterOuterAlt(localContext, 2); { - this.state = 5831; + this.state = 5839; this.match(MySqlParser.KW_MAX_UPDATES_PER_HOUR); - this.state = 5832; + this.state = 5840; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR: this.enterOuterAlt(localContext, 3); { - this.state = 5833; + this.state = 5841; this.match(MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR); - this.state = 5834; + this.state = 5842; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_USER_CONNECTIONS: this.enterOuterAlt(localContext, 4); { - this.state = 5835; + this.state = 5843; this.match(MySqlParser.KW_MAX_USER_CONNECTIONS); - this.state = 5836; + this.state = 5844; this.decimalLiteral(); } break; @@ -32249,38 +32291,38 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 520, MySqlParser.RULE_userPasswordOption); let _la: number; try { - this.state = 5877; + this.state = 5885; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 850, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 853, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5839; + this.state = 5847; this.match(MySqlParser.KW_PASSWORD); - this.state = 5840; + this.state = 5848; this.match(MySqlParser.KW_EXPIRE); - this.state = 5847; + this.state = 5855; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5841; + this.state = 5849; localContext._expireType = this.match(MySqlParser.KW_DEFAULT); } break; case MySqlParser.KW_NEVER: { - this.state = 5842; + this.state = 5850; localContext._expireType = this.match(MySqlParser.KW_NEVER); } break; case MySqlParser.KW_INTERVAL: { - this.state = 5843; + this.state = 5851; localContext._expireType = this.match(MySqlParser.KW_INTERVAL); - this.state = 5844; + this.state = 5852; this.decimalLiteral(); - this.state = 5845; + this.state = 5853; this.match(MySqlParser.KW_DAY); } break; @@ -32363,16 +32405,16 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5849; + this.state = 5857; this.match(MySqlParser.KW_PASSWORD); - this.state = 5850; + this.state = 5858; this.match(MySqlParser.KW_HISTORY); - this.state = 5853; + this.state = 5861; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5851; + this.state = 5859; this.match(MySqlParser.KW_DEFAULT); } break; @@ -32383,7 +32425,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5852; + this.state = 5860; this.decimalLiteral(); } break; @@ -32395,18 +32437,18 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5855; + this.state = 5863; this.match(MySqlParser.KW_PASSWORD); - this.state = 5856; + this.state = 5864; this.match(MySqlParser.KW_REUSE); - this.state = 5857; + this.state = 5865; this.match(MySqlParser.KW_INTERVAL); - this.state = 5862; + this.state = 5870; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5858; + this.state = 5866; this.match(MySqlParser.KW_DEFAULT); } break; @@ -32417,9 +32459,9 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5859; + this.state = 5867; this.decimalLiteral(); - this.state = 5860; + this.state = 5868; this.match(MySqlParser.KW_DAY); } break; @@ -32431,18 +32473,18 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5864; + this.state = 5872; this.match(MySqlParser.KW_PASSWORD); - this.state = 5865; + this.state = 5873; this.match(MySqlParser.KW_REQUIRE); - this.state = 5866; + this.state = 5874; this.match(MySqlParser.KW_CURRENT); - this.state = 5868; + this.state = 5876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 122) { { - this.state = 5867; + this.state = 5875; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -32459,18 +32501,18 @@ export class MySqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5870; + this.state = 5878; this.match(MySqlParser.KW_FAILED_LOGIN_ATTEMPTS); - this.state = 5871; + this.state = 5879; this.decimalLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5872; + this.state = 5880; this.match(MySqlParser.KW_PASSWORD_LOCK_TIME); - this.state = 5875; + this.state = 5883; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -32480,13 +32522,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5873; + this.state = 5881; this.decimalLiteral(); } break; case MySqlParser.KW_UNBOUNDED: { - this.state = 5874; + this.state = 5882; this.match(MySqlParser.KW_UNBOUNDED); } break; @@ -32518,9 +32560,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5879; + this.state = 5887; this.match(MySqlParser.KW_ACCOUNT); - this.state = 5880; + this.state = 5888; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 104 || _la === 183)) { @@ -32553,43 +32595,43 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5882; + this.state = 5890; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5885; + this.state = 5893; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 5883; + this.state = 5891; this.match(MySqlParser.KW_WITH); - this.state = 5884; + this.state = 5892; localContext._authPlugin = this.uid(); } } - this.state = 5895; + this.state = 5903; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BY: { { - this.state = 5887; + this.state = 5895; this.match(MySqlParser.KW_BY); - this.state = 5891; + this.state = 5899; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5888; + this.state = 5896; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5889; + this.state = 5897; this.match(MySqlParser.KW_RANDOM); - this.state = 5890; + this.state = 5898; this.match(MySqlParser.KW_PASSWORD); } } @@ -32602,9 +32644,9 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_AS: { - this.state = 5893; + this.state = 5901; this.match(MySqlParser.KW_AS); - this.state = 5894; + this.state = 5902; this.match(MySqlParser.STRING_LITERAL); } break; @@ -32631,45 +32673,45 @@ export class MySqlParser extends SQLParserBase { let localContext = new RegistrationOptionContext(this.context, this.state); this.enterRule(localContext, 526, MySqlParser.RULE_registrationOption); try { - this.state = 5912; + this.state = 5920; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 854, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 857, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5897; + this.state = 5905; this.factor(); - this.state = 5898; + this.state = 5906; this.match(MySqlParser.KW_INITIATE); - this.state = 5899; + this.state = 5907; this.match(MySqlParser.KW_REGISTRATION); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5901; + this.state = 5909; this.factor(); - this.state = 5902; + this.state = 5910; this.match(MySqlParser.KW_FINISH); - this.state = 5903; + this.state = 5911; this.match(MySqlParser.KW_REGISTRATION); - this.state = 5904; + this.state = 5912; this.match(MySqlParser.KW_SET); - this.state = 5905; + this.state = 5913; this.match(MySqlParser.KW_CHALLENGE_RESPONSE); - this.state = 5906; + this.state = 5914; this.match(MySqlParser.KW_AS); - this.state = 5907; + this.state = 5915; this.match(MySqlParser.STRING_LITERAL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5909; + this.state = 5917; this.factor(); - this.state = 5910; + this.state = 5918; this.match(MySqlParser.KW_UNREGISTER); } break; @@ -32696,7 +32738,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5914; + this.state = 5922; _la = this.tokenStream.LA(1); if(!(_la === 873 || _la === 874)) { this.errorHandler.recoverInline(this); @@ -32705,7 +32747,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5915; + this.state = 5923; this.match(MySqlParser.KW_FACTOR); } } @@ -32730,18 +32772,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5917; + this.state = 5925; this.privilege(); - this.state = 5922; + this.state = 5930; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 5918; + this.state = 5926; this.match(MySqlParser.LR_BRACKET); - this.state = 5919; + this.state = 5927; this.columnNames(); - this.state = 5920; + this.state = 5928; this.match(MySqlParser.RR_BRACKET); } } @@ -32767,20 +32809,20 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 532, MySqlParser.RULE_privilege); let _la: number; try { - this.state = 6017; + this.state = 6025; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 860, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 863, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5924; + this.state = 5932; this.match(MySqlParser.KW_ALL); - this.state = 5926; + this.state = 5934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 734) { { - this.state = 5925; + this.state = 5933; this.match(MySqlParser.KW_PRIVILEGES); } } @@ -32790,14 +32832,14 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5928; + this.state = 5936; this.match(MySqlParser.KW_ALTER); - this.state = 5930; + this.state = 5938; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 743) { { - this.state = 5929; + this.state = 5937; this.match(MySqlParser.KW_ROUTINE); } } @@ -32807,46 +32849,46 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5932; - this.match(MySqlParser.KW_CREATE); this.state = 5940; + this.match(MySqlParser.KW_CREATE); + this.state = 5948; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TEMPORARY: { - this.state = 5933; + this.state = 5941; this.match(MySqlParser.KW_TEMPORARY); - this.state = 5934; + this.state = 5942; this.match(MySqlParser.KW_TABLES); } break; case MySqlParser.KW_ROUTINE: { - this.state = 5935; + this.state = 5943; this.match(MySqlParser.KW_ROUTINE); } break; case MySqlParser.KW_VIEW: { - this.state = 5936; + this.state = 5944; this.match(MySqlParser.KW_VIEW); } break; case MySqlParser.KW_USER: { - this.state = 5937; + this.state = 5945; this.match(MySqlParser.KW_USER); } break; case MySqlParser.KW_TABLESPACE: { - this.state = 5938; + this.state = 5946; this.match(MySqlParser.KW_TABLESPACE); } break; case MySqlParser.KW_ROLE: { - this.state = 5939; + this.state = 5947; this.match(MySqlParser.KW_ROLE); } break; @@ -32862,21 +32904,21 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5942; + this.state = 5950; this.match(MySqlParser.KW_DELETE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5943; + this.state = 5951; this.match(MySqlParser.KW_DROP); - this.state = 5945; + this.state = 5953; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 582) { { - this.state = 5944; + this.state = 5952; this.match(MySqlParser.KW_ROLE); } } @@ -32886,90 +32928,90 @@ export class MySqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5947; + this.state = 5955; this.match(MySqlParser.KW_EVENT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5948; + this.state = 5956; this.match(MySqlParser.KW_EXECUTE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5949; + this.state = 5957; this.match(MySqlParser.KW_FILE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5950; + this.state = 5958; this.match(MySqlParser.KW_GRANT); - this.state = 5951; + this.state = 5959; this.match(MySqlParser.KW_OPTION); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5952; + this.state = 5960; this.match(MySqlParser.KW_INDEX); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5953; + this.state = 5961; this.match(MySqlParser.KW_INSERT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 5954; + this.state = 5962; this.match(MySqlParser.KW_LOCK); - this.state = 5955; + this.state = 5963; this.match(MySqlParser.KW_TABLES); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 5956; + this.state = 5964; this.match(MySqlParser.KW_PROCESS); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5957; + this.state = 5965; this.match(MySqlParser.KW_PROXY); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 5958; + this.state = 5966; this.match(MySqlParser.KW_REFERENCES); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5959; + this.state = 5967; this.match(MySqlParser.KW_RELOAD); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5960; + this.state = 5968; this.match(MySqlParser.KW_REPLICATION); - this.state = 5961; + this.state = 5969; _la = this.tokenStream.LA(1); if(!(_la === 333 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -32983,16 +33025,16 @@ export class MySqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5962; + this.state = 5970; this.match(MySqlParser.KW_SELECT); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 5963; + this.state = 5971; this.match(MySqlParser.KW_SHOW); - this.state = 5964; + this.state = 5972; _la = this.tokenStream.LA(1); if(!(_la === 40 || _la === 684)) { this.errorHandler.recoverInline(this); @@ -33006,339 +33048,339 @@ export class MySqlParser extends SQLParserBase { case 20: this.enterOuterAlt(localContext, 20); { - this.state = 5965; + this.state = 5973; this.match(MySqlParser.KW_SHUTDOWN); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 5966; + this.state = 5974; this.match(MySqlParser.KW_SUPER); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 5967; + this.state = 5975; this.match(MySqlParser.KW_TRIGGER); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 5968; + this.state = 5976; this.match(MySqlParser.KW_UPDATE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 5969; + this.state = 5977; this.match(MySqlParser.KW_USAGE); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 5970; + this.state = 5978; this.match(MySqlParser.KW_APPLICATION_PASSWORD_ADMIN); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 5971; + this.state = 5979; this.match(MySqlParser.KW_AUDIT_ABORT_EXEMPT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 5972; + this.state = 5980; this.match(MySqlParser.KW_AUDIT_ADMIN); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 5973; + this.state = 5981; this.match(MySqlParser.KW_AUTHENTICATION_POLICY_ADMIN); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 5974; + this.state = 5982; this.match(MySqlParser.KW_BACKUP_ADMIN); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 5975; + this.state = 5983; this.match(MySqlParser.KW_BINLOG_ADMIN); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 5976; + this.state = 5984; this.match(MySqlParser.KW_BINLOG_ENCRYPTION_ADMIN); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 5977; + this.state = 5985; this.match(MySqlParser.KW_CLONE_ADMIN); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 5978; + this.state = 5986; this.match(MySqlParser.KW_CONNECTION_ADMIN); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 5979; + this.state = 5987; this.match(MySqlParser.KW_ENCRYPTION_KEY_ADMIN); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 5980; + this.state = 5988; this.match(MySqlParser.KW_FIREWALL_ADMIN); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 5981; + this.state = 5989; this.match(MySqlParser.KW_FIREWALL_EXEMPT); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 5982; + this.state = 5990; this.match(MySqlParser.KW_FIREWALL_USER); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 5983; + this.state = 5991; this.match(MySqlParser.KW_FLUSH_OPTIMIZER_COSTS); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 5984; + this.state = 5992; this.match(MySqlParser.KW_FLUSH_STATUS); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 5985; + this.state = 5993; this.match(MySqlParser.KW_FLUSH_TABLES); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 5986; + this.state = 5994; this.match(MySqlParser.KW_FLUSH_USER_RESOURCES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 5987; + this.state = 5995; this.match(MySqlParser.KW_GROUP_REPLICATION_ADMIN); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 5988; + this.state = 5996; this.match(MySqlParser.KW_INNODB_REDO_LOG_ARCHIVE); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 5989; + this.state = 5997; this.match(MySqlParser.KW_INNODB_REDO_LOG_ENABLE); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 5990; + this.state = 5998; this.match(MySqlParser.KW_NDB_STORED_USER); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 5991; + this.state = 5999; this.match(MySqlParser.KW_PASSWORDLESS_USER_ADMIN); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 5992; + this.state = 6000; this.match(MySqlParser.KW_PERSIST_RO_VARIABLES_ADMIN); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 5993; + this.state = 6001; this.match(MySqlParser.KW_REPLICATION_APPLIER); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 5994; + this.state = 6002; this.match(MySqlParser.KW_REPLICATION_SLAVE_ADMIN); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 5995; + this.state = 6003; this.match(MySqlParser.KW_RESOURCE_GROUP_ADMIN); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 5996; + this.state = 6004; this.match(MySqlParser.KW_RESOURCE_GROUP_USER); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 5997; + this.state = 6005; this.match(MySqlParser.KW_ROLE_ADMIN); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 5998; + this.state = 6006; this.match(MySqlParser.KW_SERVICE_CONNECTION_ADMIN); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 5999; + this.state = 6007; this.match(MySqlParser.KW_SESSION_VARIABLES_ADMIN); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 6000; + this.state = 6008; this.match(MySqlParser.KW_SET_USER_ID); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 6001; + this.state = 6009; this.match(MySqlParser.KW_SKIP_QUERY_REWRITE); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 6002; + this.state = 6010; this.match(MySqlParser.KW_SHOW_ROUTINE); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 6003; + this.state = 6011; this.match(MySqlParser.KW_SYSTEM_USER); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 6004; + this.state = 6012; this.match(MySqlParser.KW_SYSTEM_VARIABLES_ADMIN); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 6005; + this.state = 6013; this.match(MySqlParser.KW_TABLE_ENCRYPTION_ADMIN); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 6006; + this.state = 6014; this.match(MySqlParser.KW_TP_CONNECTION_ADMIN); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 6007; + this.state = 6015; this.match(MySqlParser.KW_VERSION_TOKEN_ADMIN); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 6008; + this.state = 6016; this.match(MySqlParser.KW_XA_RECOVER_ADMIN); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 6009; + this.state = 6017; this.match(MySqlParser.KW_LOAD); - this.state = 6010; + this.state = 6018; this.match(MySqlParser.KW_FROM); - this.state = 6011; + this.state = 6019; this.match(MySqlParser.KW_S3); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 6012; + this.state = 6020; this.match(MySqlParser.KW_SELECT); - this.state = 6013; + this.state = 6021; this.match(MySqlParser.KW_INTO); - this.state = 6014; + this.state = 6022; this.match(MySqlParser.KW_S3); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 6015; + this.state = 6023; this.match(MySqlParser.KW_INVOKE); - this.state = 6016; + this.state = 6024; this.match(MySqlParser.KW_LAMBDA); } break; @@ -33362,14 +33404,14 @@ export class MySqlParser extends SQLParserBase { let localContext = new PrivilegeLevelContext(this.context, this.state); this.enterRule(localContext, 534, MySqlParser.RULE_privilegeLevel); try { - this.state = 6035; + this.state = 6043; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 861, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 864, this.context) ) { case 1: localContext = new CurrentSchemaPriviLevelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6019; + this.state = 6027; this.match(MySqlParser.STAR); } break; @@ -33377,11 +33419,11 @@ export class MySqlParser extends SQLParserBase { localContext = new GlobalPrivLevelContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6020; + this.state = 6028; this.match(MySqlParser.STAR); - this.state = 6021; + this.state = 6029; this.match(MySqlParser.DOT); - this.state = 6022; + this.state = 6030; this.match(MySqlParser.STAR); } break; @@ -33389,11 +33431,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteSchemaPrivLevelContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6023; + this.state = 6031; this.uid(); - this.state = 6024; + this.state = 6032; this.match(MySqlParser.DOT); - this.state = 6025; + this.state = 6033; this.match(MySqlParser.STAR); } break; @@ -33401,11 +33443,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteFullTablePrivLevelContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6027; + this.state = 6035; this.uid(); - this.state = 6028; + this.state = 6036; this.match(MySqlParser.DOT); - this.state = 6029; + this.state = 6037; this.uid(); } break; @@ -33413,9 +33455,9 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteFullTablePrivLevel2Context(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6031; + this.state = 6039; this.uid(); - this.state = 6032; + this.state = 6040; this.dottedId(); } break; @@ -33423,7 +33465,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteTablePrivLevelContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6034; + this.state = 6042; this.uid(); } break; @@ -33449,11 +33491,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6037; + this.state = 6045; localContext._fromFirst = this.userName(); - this.state = 6038; + this.state = 6046; this.match(MySqlParser.KW_TO); - this.state = 6039; + this.state = 6047; localContext._toFirst = this.userName(); } } @@ -33476,67 +33518,67 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 538, MySqlParser.RULE_analyzeTable); let _la: number; try { - this.state = 6089; + this.state = 6097; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 868, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 871, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6041; + this.state = 6049; this.match(MySqlParser.KW_ANALYZE); - this.state = 6043; + this.state = 6051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6042; + this.state = 6050; this.tableActionOption(); } } - this.state = 6045; + this.state = 6053; this.match(MySqlParser.KW_TABLE); - this.state = 6046; + this.state = 6054; this.tableNames(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6047; + this.state = 6055; this.match(MySqlParser.KW_ANALYZE); - this.state = 6049; + this.state = 6057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6048; + this.state = 6056; this.tableActionOption(); } } - this.state = 6051; + this.state = 6059; this.match(MySqlParser.KW_TABLE); - this.state = 6052; + this.state = 6060; this.tableName(); - this.state = 6053; + this.state = 6061; this.match(MySqlParser.KW_UPDATE); - this.state = 6054; + this.state = 6062; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6055; + this.state = 6063; this.match(MySqlParser.KW_ON); - this.state = 6056; + this.state = 6064; this.columnNames(); - this.state = 6061; + this.state = 6069; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 864, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 867, this.context) ) { case 1: { - this.state = 6057; + this.state = 6065; this.match(MySqlParser.KW_WITH); - this.state = 6058; + this.state = 6066; this.decimalLiteral(); - this.state = 6059; + this.state = 6067; this.match(MySqlParser.KW_BUCKETS); } break; @@ -33546,40 +33588,40 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6063; + this.state = 6071; this.match(MySqlParser.KW_ANALYZE); - this.state = 6065; + this.state = 6073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6064; + this.state = 6072; this.tableActionOption(); } } - this.state = 6067; + this.state = 6075; this.match(MySqlParser.KW_TABLE); - this.state = 6068; + this.state = 6076; this.tableName(); - this.state = 6069; + this.state = 6077; this.match(MySqlParser.KW_UPDATE); - this.state = 6070; + this.state = 6078; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6071; + this.state = 6079; this.match(MySqlParser.KW_ON); - this.state = 6072; + this.state = 6080; this.columnName(); - this.state = 6076; + this.state = 6084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 6073; + this.state = 6081; this.match(MySqlParser.KW_USING); - this.state = 6074; + this.state = 6082; this.match(MySqlParser.KW_DATA); - this.state = 6075; + this.state = 6083; this.match(MySqlParser.STRING_LITERAL); } } @@ -33589,29 +33631,29 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6078; + this.state = 6086; this.match(MySqlParser.KW_ANALYZE); - this.state = 6080; + this.state = 6088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6079; + this.state = 6087; this.tableActionOption(); } } - this.state = 6082; + this.state = 6090; this.match(MySqlParser.KW_TABLE); - this.state = 6083; + this.state = 6091; this.tableName(); - this.state = 6084; + this.state = 6092; this.match(MySqlParser.KW_DROP); - this.state = 6085; + this.state = 6093; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6086; + this.state = 6094; this.match(MySqlParser.KW_ON); - this.state = 6087; + this.state = 6095; this.columnNames(); } break; @@ -33638,23 +33680,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6091; + this.state = 6099; this.match(MySqlParser.KW_CHECK); - this.state = 6092; + this.state = 6100; this.match(MySqlParser.KW_TABLE); - this.state = 6093; + this.state = 6101; this.tableNames(); - this.state = 6097; + this.state = 6105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 65 || _la === 327 || _la === 392 || _la === 396 || _la === 484 || _la === 549) { { { - this.state = 6094; + this.state = 6102; this.checkTableOption(); } } - this.state = 6099; + this.state = 6107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33681,18 +33723,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6100; + this.state = 6108; this.match(MySqlParser.KW_CHECKSUM); - this.state = 6101; + this.state = 6109; this.match(MySqlParser.KW_TABLE); - this.state = 6102; + this.state = 6110; this.tableNames(); - this.state = 6104; + this.state = 6112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392 || _la === 549) { { - this.state = 6103; + this.state = 6111; localContext._actionOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 392 || _la === 549)) { @@ -33728,19 +33770,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6106; + this.state = 6114; this.match(MySqlParser.KW_OPTIMIZE); - this.state = 6108; + this.state = 6116; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6107; + this.state = 6115; this.tableActionOption(); } } - this.state = 6110; + this.state = 6118; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -33749,7 +33791,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6111; + this.state = 6119; this.tableNames(); } } @@ -33774,48 +33816,48 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6113; + this.state = 6121; this.match(MySqlParser.KW_REPAIR); - this.state = 6115; + this.state = 6123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6114; + this.state = 6122; this.tableActionOption(); } } - this.state = 6117; + this.state = 6125; this.match(MySqlParser.KW_TABLE); - this.state = 6118; + this.state = 6126; this.tableNames(); - this.state = 6120; + this.state = 6128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 549) { { - this.state = 6119; + this.state = 6127; this.match(MySqlParser.KW_QUICK); } } - this.state = 6123; + this.state = 6131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6122; + this.state = 6130; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6126; + this.state = 6134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 679) { { - this.state = 6125; + this.state = 6133; this.match(MySqlParser.KW_USE_FRM); } } @@ -33843,7 +33885,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6128; + this.state = 6136; _la = this.tokenStream.LA(1); if(!(_la === 115 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -33872,50 +33914,50 @@ export class MySqlParser extends SQLParserBase { let localContext = new CheckTableOptionContext(this.context, this.state); this.enterRule(localContext, 550, MySqlParser.RULE_checkTableOption); try { - this.state = 6137; + this.state = 6145; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 1); { - this.state = 6130; + this.state = 6138; this.match(MySqlParser.KW_FOR); - this.state = 6131; + this.state = 6139; this.match(MySqlParser.KW_UPGRADE); } break; case MySqlParser.KW_QUICK: this.enterOuterAlt(localContext, 2); { - this.state = 6132; + this.state = 6140; this.match(MySqlParser.KW_QUICK); } break; case MySqlParser.KW_FAST: this.enterOuterAlt(localContext, 3); { - this.state = 6133; + this.state = 6141; this.match(MySqlParser.KW_FAST); } break; case MySqlParser.KW_MEDIUM: this.enterOuterAlt(localContext, 4); { - this.state = 6134; + this.state = 6142; this.match(MySqlParser.KW_MEDIUM); } break; case MySqlParser.KW_EXTENDED: this.enterOuterAlt(localContext, 5); { - this.state = 6135; + this.state = 6143; this.match(MySqlParser.KW_EXTENDED); } break; case MySqlParser.KW_CHANGED: this.enterOuterAlt(localContext, 6); { - this.state = 6136; + this.state = 6144; this.match(MySqlParser.KW_CHANGED); } break; @@ -33944,50 +33986,50 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6139; + this.state = 6147; this.match(MySqlParser.KW_INSTALL); - this.state = 6140; + this.state = 6148; this.match(MySqlParser.KW_COMPONENT); - this.state = 6141; + this.state = 6149; localContext._component_name = this.uid(); - this.state = 6146; + this.state = 6154; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6142; + this.state = 6150; this.match(MySqlParser.COMMA); - this.state = 6143; + this.state = 6151; localContext._component_name = this.uid(); } } - this.state = 6148; + this.state = 6156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6158; + this.state = 6166; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 879, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 882, this.context) ) { case 1: { - this.state = 6149; + this.state = 6157; this.match(MySqlParser.KW_SET); - this.state = 6150; + this.state = 6158; this.variableExpr(); - this.state = 6155; + this.state = 6163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6151; + this.state = 6159; this.match(MySqlParser.COMMA); - this.state = 6152; + this.state = 6160; this.variableExpr(); } } - this.state = 6157; + this.state = 6165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34017,7 +34059,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6160; + this.state = 6168; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 531 || _la === 893 || _la === 894)) { this.errorHandler.recoverInline(this); @@ -34026,11 +34068,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6161; + this.state = 6169; localContext._system_var_name = this.fullId(); - this.state = 6162; + this.state = 6170; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6163; + this.state = 6171; this.expression(0); } } @@ -34055,25 +34097,25 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6165; + this.state = 6173; this.match(MySqlParser.KW_UNINSTALL); - this.state = 6166; + this.state = 6174; this.match(MySqlParser.KW_COMPONENT); - this.state = 6167; + this.state = 6175; localContext._component_name = this.uid(); - this.state = 6172; + this.state = 6180; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6168; + this.state = 6176; this.match(MySqlParser.COMMA); - this.state = 6169; + this.state = 6177; localContext._component_name = this.uid(); } } - this.state = 6174; + this.state = 6182; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34099,15 +34141,15 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6175; + this.state = 6183; this.match(MySqlParser.KW_INSTALL); - this.state = 6176; + this.state = 6184; this.match(MySqlParser.KW_PLUGIN); - this.state = 6177; + this.state = 6185; localContext._pluginName = this.uid(); - this.state = 6178; + this.state = 6186; this.match(MySqlParser.KW_SONAME); - this.state = 6179; + this.state = 6187; this.match(MySqlParser.STRING_LITERAL); } } @@ -34131,11 +34173,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6181; + this.state = 6189; this.match(MySqlParser.KW_UNINSTALL); - this.state = 6182; + this.state = 6190; this.match(MySqlParser.KW_PLUGIN); - this.state = 6183; + this.state = 6191; localContext._pluginName = this.uid(); } } @@ -34158,93 +34200,93 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 562, MySqlParser.RULE_cloneStatement); let _la: number; try { - this.state = 6215; + this.state = 6223; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 886, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 889, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6185; + this.state = 6193; this.match(MySqlParser.KW_CLONE); - this.state = 6186; + this.state = 6194; this.match(MySqlParser.KW_LOCAL); - this.state = 6187; + this.state = 6195; this.match(MySqlParser.KW_DATA); - this.state = 6188; + this.state = 6196; this.match(MySqlParser.KW_DIRECTORY); - this.state = 6190; + this.state = 6198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 6189; + this.state = 6197; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 6192; + this.state = 6200; this.match(MySqlParser.STRING_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6193; + this.state = 6201; this.match(MySqlParser.KW_CLONE); - this.state = 6194; + this.state = 6202; this.match(MySqlParser.KW_INSTANCE); - this.state = 6195; + this.state = 6203; this.match(MySqlParser.KW_FROM); - this.state = 6196; + this.state = 6204; this.userHostPort(); - this.state = 6197; + this.state = 6205; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 6198; + this.state = 6206; this.match(MySqlParser.KW_BY); - this.state = 6199; + this.state = 6207; this.match(MySqlParser.STRING_LITERAL); - this.state = 6206; + this.state = 6214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 360) { { - this.state = 6200; + this.state = 6208; this.match(MySqlParser.KW_DATA); - this.state = 6201; + this.state = 6209; this.match(MySqlParser.KW_DIRECTORY); - this.state = 6203; + this.state = 6211; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 6202; + this.state = 6210; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 6205; + this.state = 6213; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 6213; + this.state = 6221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 6208; + this.state = 6216; this.match(MySqlParser.KW_REQUIRE); - this.state = 6210; + this.state = 6218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 6209; + this.state = 6217; this.match(MySqlParser.KW_NO); } } - this.state = 6212; + this.state = 6220; this.match(MySqlParser.KW_SSL); } } @@ -34272,18 +34314,18 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 564, MySqlParser.RULE_setStatement); let _la: number; try { - this.state = 6269; + this.state = 6277; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 894, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 897, this.context) ) { case 1: localContext = new SetVariableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6217; + this.state = 6225; this.match(MySqlParser.KW_SET); - this.state = 6218; + this.state = 6226; this.variableClause(); - this.state = 6219; + this.state = 6227; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34292,33 +34334,33 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6222; + this.state = 6230; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 887, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 890, this.context) ) { case 1: { - this.state = 6220; + this.state = 6228; this.expression(0); } break; case 2: { - this.state = 6221; + this.state = 6229; this.match(MySqlParser.KW_ON); } break; } - this.state = 6233; + this.state = 6241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6224; + this.state = 6232; this.match(MySqlParser.COMMA); - this.state = 6225; + this.state = 6233; this.variableClause(); - this.state = 6226; + this.state = 6234; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34327,25 +34369,25 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6229; + this.state = 6237; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 888, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 891, this.context) ) { case 1: { - this.state = 6227; + this.state = 6235; this.expression(0); } break; case 2: { - this.state = 6228; + this.state = 6236; this.match(MySqlParser.KW_ON); } break; } } } - this.state = 6235; + this.state = 6243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34355,11 +34397,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SetCharsetContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6236; + this.state = 6244; this.match(MySqlParser.KW_SET); - this.state = 6237; + this.state = 6245; this.charSet(); - this.state = 6240; + this.state = 6248; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -34407,13 +34449,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 6238; + this.state = 6246; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 6239; + this.state = 6247; this.match(MySqlParser.KW_DEFAULT); } break; @@ -34426,11 +34468,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SetNamesContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6242; + this.state = 6250; this.match(MySqlParser.KW_SET); - this.state = 6243; + this.state = 6251; this.match(MySqlParser.KW_NAMES); - this.state = 6250; + this.state = 6258; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -34478,16 +34520,16 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 6244; + this.state = 6252; this.charsetName(); - this.state = 6247; + this.state = 6255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 6245; + this.state = 6253; this.match(MySqlParser.KW_COLLATE); - this.state = 6246; + this.state = 6254; this.collationName(); } } @@ -34496,7 +34538,7 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_DEFAULT: { - this.state = 6249; + this.state = 6257; this.match(MySqlParser.KW_DEFAULT); } break; @@ -34509,7 +34551,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SetPasswordContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6252; + this.state = 6260; this.setPasswordStatement(); } break; @@ -34517,7 +34559,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SetTransactionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6253; + this.state = 6261; this.setTransactionStatement(); } break; @@ -34525,7 +34567,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SetAutocommitContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6254; + this.state = 6262; this.setAutocommitStatement(); } break; @@ -34533,11 +34575,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SetNewValueInsideTriggerContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6255; + this.state = 6263; this.match(MySqlParser.KW_SET); - this.state = 6256; + this.state = 6264; (localContext as SetNewValueInsideTriggerContext)._system_var_name = this.fullId(); - this.state = 6257; + this.state = 6265; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34546,19 +34588,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6258; - this.expression(0); this.state = 6266; + this.expression(0); + this.state = 6274; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6259; + this.state = 6267; this.match(MySqlParser.COMMA); - this.state = 6260; + this.state = 6268; (localContext as SetNewValueInsideTriggerContext)._system_var_name = this.fullId(); - this.state = 6261; + this.state = 6269; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34567,11 +34609,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6262; + this.state = 6270; this.expression(0); } } - this.state = 6268; + this.state = 6276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34598,16 +34640,16 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 566, MySqlParser.RULE_showStatement); let _la: number; try { - this.state = 6455; + this.state = 6463; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 923, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 926, this.context) ) { case 1: localContext = new ShowMasterLogsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6271; + this.state = 6279; this.match(MySqlParser.KW_SHOW); - this.state = 6272; + this.state = 6280; (localContext as ShowMasterLogsContext)._logFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 453)) { @@ -34617,7 +34659,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6273; + this.state = 6281; this.match(MySqlParser.KW_LOGS); } break; @@ -34625,9 +34667,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowLogEventsContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6274; + this.state = 6282; this.match(MySqlParser.KW_SHOW); - this.state = 6275; + this.state = 6283; (localContext as ShowLogEventsContext)._logFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 559)) { @@ -34637,62 +34679,62 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6276; + this.state = 6284; this.match(MySqlParser.KW_EVENTS); - this.state = 6279; + this.state = 6287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 6277; + this.state = 6285; this.match(MySqlParser.KW_IN); - this.state = 6278; + this.state = 6286; (localContext as ShowLogEventsContext)._filename = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 6283; + this.state = 6291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68) { { - this.state = 6281; + this.state = 6289; this.match(MySqlParser.KW_FROM); - this.state = 6282; + this.state = 6290; (localContext as ShowLogEventsContext)._fromPosition = this.decimalLiteral(); } } - this.state = 6292; + this.state = 6300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6285; + this.state = 6293; this.match(MySqlParser.KW_LIMIT); - this.state = 6289; + this.state = 6297; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 897, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 900, this.context) ) { case 1: { - this.state = 6286; + this.state = 6294; (localContext as ShowLogEventsContext)._offset = this.decimalLiteral(); - this.state = 6287; + this.state = 6295; this.match(MySqlParser.COMMA); } break; } - this.state = 6291; + this.state = 6299; (localContext as ShowLogEventsContext)._rowCount = this.decimalLiteral(); } } - this.state = 6295; + this.state = 6303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6294; + this.state = 6302; this.channelOption(); } } @@ -34703,16 +34745,16 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowObjectFilterContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6297; + this.state = 6305; this.match(MySqlParser.KW_SHOW); - this.state = 6298; + this.state = 6306; this.showCommonEntity(); - this.state = 6300; + this.state = 6308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6299; + this.state = 6307; this.showFilter(); } } @@ -34723,29 +34765,29 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6302; + this.state = 6310; this.match(MySqlParser.KW_SHOW); - this.state = 6304; + this.state = 6312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6303; + this.state = 6311; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6307; + this.state = 6315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6306; + this.state = 6314; this.match(MySqlParser.KW_FULL); } } - this.state = 6309; + this.state = 6317; (localContext as ShowColumnsContext)._columnsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -34755,7 +34797,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6310; + this.state = 6318; (localContext as ShowColumnsContext)._tableFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34765,14 +34807,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6311; + this.state = 6319; this.tableName(); - this.state = 6314; + this.state = 6322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6312; + this.state = 6320; (localContext as ShowColumnsContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34782,17 +34824,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6313; + this.state = 6321; this.databaseName(); } } - this.state = 6317; + this.state = 6325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6316; + this.state = 6324; this.showFilter(); } } @@ -34803,11 +34845,11 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateDbContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6319; + this.state = 6327; this.match(MySqlParser.KW_SHOW); - this.state = 6320; + this.state = 6328; this.match(MySqlParser.KW_CREATE); - this.state = 6321; + this.state = 6329; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { this.errorHandler.recoverInline(this); @@ -34816,17 +34858,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6323; + this.state = 6331; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 905, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 908, this.context) ) { case 1: { - this.state = 6322; + this.state = 6330; this.ifNotExists(); } break; } - this.state = 6325; + this.state = 6333; this.databaseName(); } break; @@ -34834,11 +34876,11 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateFullIdObjectContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6326; + this.state = 6334; this.match(MySqlParser.KW_SHOW); - this.state = 6327; + this.state = 6335; this.match(MySqlParser.KW_CREATE); - this.state = 6328; + this.state = 6336; _la = this.tokenStream.LA(1); if(!(_la === 132 || _la === 178 || _la === 385)) { this.errorHandler.recoverInline(this); @@ -34847,7 +34889,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6329; + this.state = 6337; this.fullId(); } break; @@ -34855,13 +34897,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateFunctionContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6330; + this.state = 6338; this.match(MySqlParser.KW_SHOW); - this.state = 6331; + this.state = 6339; this.match(MySqlParser.KW_CREATE); - this.state = 6332; + this.state = 6340; this.match(MySqlParser.KW_FUNCTION); - this.state = 6333; + this.state = 6341; this.functionName(); } break; @@ -34869,13 +34911,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateViewContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 6334; + this.state = 6342; this.match(MySqlParser.KW_SHOW); - this.state = 6335; + this.state = 6343; this.match(MySqlParser.KW_CREATE); - this.state = 6336; + this.state = 6344; this.match(MySqlParser.KW_VIEW); - this.state = 6337; + this.state = 6345; this.viewName(); } break; @@ -34883,13 +34925,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 6338; + this.state = 6346; this.match(MySqlParser.KW_SHOW); - this.state = 6339; + this.state = 6347; this.match(MySqlParser.KW_CREATE); - this.state = 6340; + this.state = 6348; this.match(MySqlParser.KW_TABLE); - this.state = 6341; + this.state = 6349; this.tableName(); } break; @@ -34897,13 +34939,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateUserContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 6342; + this.state = 6350; this.match(MySqlParser.KW_SHOW); - this.state = 6343; + this.state = 6351; this.match(MySqlParser.KW_CREATE); - this.state = 6344; + this.state = 6352; this.match(MySqlParser.KW_USER); - this.state = 6345; + this.state = 6353; this.userName(); } break; @@ -34911,13 +34953,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowEngineContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 6346; + this.state = 6354; this.match(MySqlParser.KW_SHOW); - this.state = 6347; + this.state = 6355; this.match(MySqlParser.KW_ENGINE); - this.state = 6348; + this.state = 6356; this.engineName(); - this.state = 6349; + this.state = 6357; (localContext as ShowEngineContext)._engineOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 493 || _la === 645)) { @@ -34933,9 +34975,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowGlobalInfoContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 6351; + this.state = 6359; this.match(MySqlParser.KW_SHOW); - this.state = 6352; + this.state = 6360; this.showGlobalInfoClause(); } break; @@ -34943,9 +34985,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowErrorsContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 6353; + this.state = 6361; this.match(MySqlParser.KW_SHOW); - this.state = 6354; + this.state = 6362; (localContext as ShowErrorsContext)._errorFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 383 || _la === 688)) { @@ -34955,26 +34997,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6362; + this.state = 6370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6355; + this.state = 6363; this.match(MySqlParser.KW_LIMIT); - this.state = 6359; + this.state = 6367; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 906, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 909, this.context) ) { case 1: { - this.state = 6356; + this.state = 6364; (localContext as ShowErrorsContext)._offset = this.decimalLiteral(); - this.state = 6357; + this.state = 6365; this.match(MySqlParser.COMMA); } break; } - this.state = 6361; + this.state = 6369; (localContext as ShowErrorsContext)._rowCount = this.decimalLiteral(); } } @@ -34985,17 +35027,17 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCountErrorsContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 6364; + this.state = 6372; this.match(MySqlParser.KW_SHOW); - this.state = 6365; + this.state = 6373; this.match(MySqlParser.KW_COUNT); - this.state = 6366; + this.state = 6374; this.match(MySqlParser.LR_BRACKET); - this.state = 6367; + this.state = 6375; this.match(MySqlParser.STAR); - this.state = 6368; + this.state = 6376; this.match(MySqlParser.RR_BRACKET); - this.state = 6369; + this.state = 6377; (localContext as ShowCountErrorsContext)._errorFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 383 || _la === 688)) { @@ -35011,16 +35053,16 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowSchemaFilterContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 6370; + this.state = 6378; this.match(MySqlParser.KW_SHOW); - this.state = 6371; + this.state = 6379; this.showSchemaEntity(); - this.state = 6374; + this.state = 6382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6372; + this.state = 6380; (localContext as ShowSchemaFilterContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -35030,17 +35072,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6373; + this.state = 6381; this.databaseName(); } } - this.state = 6377; + this.state = 6385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6376; + this.state = 6384; this.showFilter(); } } @@ -35051,13 +35093,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowPercedureCodeContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 6379; + this.state = 6387; this.match(MySqlParser.KW_SHOW); - this.state = 6380; + this.state = 6388; this.match(MySqlParser.KW_PROCEDURE); - this.state = 6381; + this.state = 6389; this.match(MySqlParser.KW_CODE); - this.state = 6382; + this.state = 6390; (localContext as ShowPercedureCodeContext)._proc_name = this.fullId(); } break; @@ -35065,13 +35107,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowFunctionCodeContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 6383; + this.state = 6391; this.match(MySqlParser.KW_SHOW); - this.state = 6384; + this.state = 6392; this.match(MySqlParser.KW_FUNCTION); - this.state = 6385; + this.state = 6393; this.match(MySqlParser.KW_CODE); - this.state = 6386; + this.state = 6394; this.functionName(); } break; @@ -35079,27 +35121,27 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowGrantsContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 6387; + this.state = 6395; this.match(MySqlParser.KW_SHOW); - this.state = 6388; + this.state = 6396; this.match(MySqlParser.KW_GRANTS); - this.state = 6395; + this.state = 6403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6389; + this.state = 6397; this.match(MySqlParser.KW_FOR); - this.state = 6390; + this.state = 6398; this.userOrRoleName(); - this.state = 6393; + this.state = 6401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 6391; + this.state = 6399; this.match(MySqlParser.KW_USING); - this.state = 6392; + this.state = 6400; this.userOrRoleNames(); } } @@ -35113,19 +35155,19 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowIndexesContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 6397; + this.state = 6405; this.match(MySqlParser.KW_SHOW); - this.state = 6399; + this.state = 6407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6398; + this.state = 6406; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6401; + this.state = 6409; (localContext as ShowIndexesContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 93 || _la === 426)) { @@ -35135,7 +35177,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6402; + this.state = 6410; (localContext as ShowIndexesContext)._tableFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -35145,14 +35187,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6403; + this.state = 6411; this.tableName(); - this.state = 6406; + this.state = 6414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6404; + this.state = 6412; (localContext as ShowIndexesContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -35162,19 +35204,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6405; + this.state = 6413; this.databaseName(); } } - this.state = 6410; + this.state = 6418; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 6408; + this.state = 6416; this.match(MySqlParser.KW_WHERE); - this.state = 6409; + this.state = 6417; this.expression(0); } } @@ -35185,18 +35227,18 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowOpenTablesContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 6412; + this.state = 6420; this.match(MySqlParser.KW_SHOW); - this.state = 6413; + this.state = 6421; this.match(MySqlParser.KW_OPEN); - this.state = 6414; + this.state = 6422; this.match(MySqlParser.KW_TABLES); - this.state = 6417; + this.state = 6425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6415; + this.state = 6423; _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { this.errorHandler.recoverInline(this); @@ -35205,17 +35247,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6416; + this.state = 6424; this.databaseName(); } } - this.state = 6420; + this.state = 6428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6419; + this.state = 6427; this.showFilter(); } } @@ -35226,67 +35268,67 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowProfileContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 6422; + this.state = 6430; this.match(MySqlParser.KW_SHOW); - this.state = 6423; + this.state = 6431; this.match(MySqlParser.KW_PROFILE); - this.state = 6432; + this.state = 6440; 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 = 6424; + this.state = 6432; this.showProfileType(); - this.state = 6429; + this.state = 6437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6425; + this.state = 6433; this.match(MySqlParser.COMMA); - this.state = 6426; + this.state = 6434; this.showProfileType(); } } - this.state = 6431; + this.state = 6439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 6437; + this.state = 6445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6434; + this.state = 6442; this.match(MySqlParser.KW_FOR); - this.state = 6435; + this.state = 6443; this.match(MySqlParser.KW_QUERY); - this.state = 6436; + this.state = 6444; (localContext as ShowProfileContext)._queryCount = this.decimalLiteral(); } } - this.state = 6445; + this.state = 6453; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6439; + this.state = 6447; this.match(MySqlParser.KW_LIMIT); - this.state = 6440; + this.state = 6448; (localContext as ShowProfileContext)._rowCount = this.decimalLiteral(); - this.state = 6443; + this.state = 6451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 509) { { - this.state = 6441; + this.state = 6449; this.match(MySqlParser.KW_OFFSET); - this.state = 6442; + this.state = 6450; (localContext as ShowProfileContext)._offset = this.decimalLiteral(); } } @@ -35300,9 +35342,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowSlaveStatusContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 6447; + this.state = 6455; this.match(MySqlParser.KW_SHOW); - this.state = 6448; + this.state = 6456; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -35311,14 +35353,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6449; + this.state = 6457; this.match(MySqlParser.KW_STATUS); - this.state = 6451; + this.state = 6459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6450; + this.state = 6458; this.channelOption(); } } @@ -35329,9 +35371,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowReplicasContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 6453; + this.state = 6461; this.match(MySqlParser.KW_SHOW); - this.state = 6454; + this.state = 6462; this.match(MySqlParser.KW_REPLICAS); } break; @@ -35356,20 +35398,20 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 568, MySqlParser.RULE_variableClause); let _la: number; try { - this.state = 6467; + this.state = 6475; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LOCAL_ID: this.enterOuterAlt(localContext, 1); { - this.state = 6457; + this.state = 6465; this.match(MySqlParser.LOCAL_ID); } break; case MySqlParser.GLOBAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 6458; + this.state = 6466; this.match(MySqlParser.GLOBAL_ID); } break; @@ -35927,24 +35969,24 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 3); { - this.state = 6464; + this.state = 6472; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 925, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 928, this.context) ) { case 1: { - this.state = 6461; + this.state = 6469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 870) { { - this.state = 6459; + this.state = 6467; this.match(MySqlParser.AT_SIGN); - this.state = 6460; + this.state = 6468; this.match(MySqlParser.AT_SIGN); } } - this.state = 6463; + this.state = 6471; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 450 || _la === 531 || _la === 532 || _la === 593)) { this.errorHandler.recoverInline(this); @@ -35956,7 +35998,7 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 6466; + this.state = 6474; localContext._target = this.uid(); } break; @@ -35983,61 +36025,61 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 570, MySqlParser.RULE_showCommonEntity); let _la: number; try { - this.state = 6483; + this.state = 6491; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARACTER: this.enterOuterAlt(localContext, 1); { - this.state = 6469; + this.state = 6477; this.match(MySqlParser.KW_CHARACTER); - this.state = 6470; + this.state = 6478; this.match(MySqlParser.KW_SET); } break; case MySqlParser.KW_CHARSET: this.enterOuterAlt(localContext, 2); { - this.state = 6471; + this.state = 6479; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_COLLATION: this.enterOuterAlt(localContext, 3); { - this.state = 6472; + this.state = 6480; this.match(MySqlParser.KW_COLLATION); } break; case MySqlParser.KW_DATABASES: this.enterOuterAlt(localContext, 4); { - this.state = 6473; + this.state = 6481; this.match(MySqlParser.KW_DATABASES); } break; case MySqlParser.KW_SCHEMAS: this.enterOuterAlt(localContext, 5); { - this.state = 6474; + this.state = 6482; this.match(MySqlParser.KW_SCHEMAS); } break; case MySqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 6); { - this.state = 6475; + this.state = 6483; this.match(MySqlParser.KW_FUNCTION); - this.state = 6476; + this.state = 6484; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_PROCEDURE: this.enterOuterAlt(localContext, 7); { - this.state = 6477; + this.state = 6485; this.match(MySqlParser.KW_PROCEDURE); - this.state = 6478; + this.state = 6486; this.match(MySqlParser.KW_STATUS); } break; @@ -36047,12 +36089,12 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VARIABLES: this.enterOuterAlt(localContext, 8); { - this.state = 6480; + this.state = 6488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413 || _la === 593) { { - this.state = 6479; + this.state = 6487; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 593)) { this.errorHandler.recoverInline(this); @@ -36064,7 +36106,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6482; + this.state = 6490; _la = this.tokenStream.LA(1); if(!(_la === 645 || _la === 683)) { this.errorHandler.recoverInline(this); @@ -36097,24 +36139,24 @@ export class MySqlParser extends SQLParserBase { let localContext = new ShowFilterContext(this.context, this.state); this.enterRule(localContext, 572, MySqlParser.RULE_showFilter); try { - this.state = 6489; + this.state = 6497; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LIKE: this.enterOuterAlt(localContext, 1); { - this.state = 6485; + this.state = 6493; this.match(MySqlParser.KW_LIKE); - this.state = 6486; + this.state = 6494; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_WHERE: this.enterOuterAlt(localContext, 2); { - this.state = 6487; + this.state = 6495; this.match(MySqlParser.KW_WHERE); - this.state = 6488; + this.state = 6496; this.expression(0); } break; @@ -36141,47 +36183,47 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 574, MySqlParser.RULE_showGlobalInfoClause); let _la: number; try { - this.state = 6508; + this.state = 6516; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ENGINES: case MySqlParser.KW_STORAGE: this.enterOuterAlt(localContext, 1); { - this.state = 6492; + this.state = 6500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 647) { { - this.state = 6491; + this.state = 6499; this.match(MySqlParser.KW_STORAGE); } } - this.state = 6494; + this.state = 6502; this.match(MySqlParser.KW_ENGINES); } break; case MySqlParser.KW_MASTER: this.enterOuterAlt(localContext, 2); { - this.state = 6495; + this.state = 6503; this.match(MySqlParser.KW_MASTER); - this.state = 6496; + this.state = 6504; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_PLUGINS: this.enterOuterAlt(localContext, 3); { - this.state = 6497; + this.state = 6505; this.match(MySqlParser.KW_PLUGINS); } break; case MySqlParser.KW_PRIVILEGES: this.enterOuterAlt(localContext, 4); { - this.state = 6498; + this.state = 6506; this.match(MySqlParser.KW_PRIVILEGES); } break; @@ -36189,47 +36231,47 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_PROCESSLIST: this.enterOuterAlt(localContext, 5); { - this.state = 6500; + this.state = 6508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6499; + this.state = 6507; this.match(MySqlParser.KW_FULL); } } - this.state = 6502; + this.state = 6510; this.match(MySqlParser.KW_PROCESSLIST); } break; case MySqlParser.KW_PROFILES: this.enterOuterAlt(localContext, 6); { - this.state = 6503; + this.state = 6511; this.match(MySqlParser.KW_PROFILES); } break; case MySqlParser.KW_SLAVE: this.enterOuterAlt(localContext, 7); { - this.state = 6504; + this.state = 6512; this.match(MySqlParser.KW_SLAVE); - this.state = 6505; + this.state = 6513; this.match(MySqlParser.KW_HOSTS); } break; case MySqlParser.KW_AUTHORS: this.enterOuterAlt(localContext, 8); { - this.state = 6506; + this.state = 6514; this.match(MySqlParser.KW_AUTHORS); } break; case MySqlParser.KW_CONTRIBUTORS: this.enterOuterAlt(localContext, 9); { - this.state = 6507; + this.state = 6515; this.match(MySqlParser.KW_CONTRIBUTORS); } break; @@ -36256,22 +36298,22 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 576, MySqlParser.RULE_showSchemaEntity); let _la: number; try { - this.state = 6521; + this.state = 6529; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_EVENTS: this.enterOuterAlt(localContext, 1); { - this.state = 6510; + this.state = 6518; this.match(MySqlParser.KW_EVENTS); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 6511; + this.state = 6519; this.match(MySqlParser.KW_TABLE); - this.state = 6512; + this.state = 6520; this.match(MySqlParser.KW_STATUS); } break; @@ -36280,34 +36322,34 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_TABLES: this.enterOuterAlt(localContext, 3); { - this.state = 6514; + this.state = 6522; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6513; + this.state = 6521; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6517; + this.state = 6525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6516; + this.state = 6524; this.match(MySqlParser.KW_FULL); } } - this.state = 6519; + this.state = 6527; this.match(MySqlParser.KW_TABLES); } break; case MySqlParser.KW_TRIGGERS: this.enterOuterAlt(localContext, 4); { - this.state = 6520; + this.state = 6528; this.match(MySqlParser.KW_TRIGGERS); } break; @@ -36333,75 +36375,75 @@ export class MySqlParser extends SQLParserBase { let localContext = new ShowProfileTypeContext(this.context, this.state); this.enterRule(localContext, 578, MySqlParser.RULE_showProfileType); try { - this.state = 6535; + this.state = 6543; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 6523; + this.state = 6531; this.match(MySqlParser.KW_ALL); } break; case MySqlParser.KW_BLOCK: this.enterOuterAlt(localContext, 2); { - this.state = 6524; + this.state = 6532; this.match(MySqlParser.KW_BLOCK); - this.state = 6525; + this.state = 6533; this.match(MySqlParser.KW_IO); } break; case MySqlParser.KW_CONTEXT: this.enterOuterAlt(localContext, 3); { - this.state = 6526; + this.state = 6534; this.match(MySqlParser.KW_CONTEXT); - this.state = 6527; + this.state = 6535; this.match(MySqlParser.KW_SWITCHES); } break; case MySqlParser.KW_CPU: this.enterOuterAlt(localContext, 4); { - this.state = 6528; + this.state = 6536; this.match(MySqlParser.KW_CPU); } break; case MySqlParser.KW_IPC: this.enterOuterAlt(localContext, 5); { - this.state = 6529; + this.state = 6537; this.match(MySqlParser.KW_IPC); } break; case MySqlParser.KW_MEMORY: this.enterOuterAlt(localContext, 6); { - this.state = 6530; + this.state = 6538; this.match(MySqlParser.KW_MEMORY); } break; case MySqlParser.KW_PAGE: this.enterOuterAlt(localContext, 7); { - this.state = 6531; + this.state = 6539; this.match(MySqlParser.KW_PAGE); - this.state = 6532; + this.state = 6540; this.match(MySqlParser.KW_FAULTS); } break; case MySqlParser.KW_SOURCE: this.enterOuterAlt(localContext, 8); { - this.state = 6533; + this.state = 6541; this.match(MySqlParser.KW_SOURCE); } break; case MySqlParser.KW_SWAPS: this.enterOuterAlt(localContext, 9); { - this.state = 6534; + this.state = 6542; this.match(MySqlParser.KW_SWAPS); } break; @@ -36429,9 +36471,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6537; + this.state = 6545; this.match(MySqlParser.KW_BINLOG); - this.state = 6538; + this.state = 6546; this.match(MySqlParser.STRING_LITERAL); } } @@ -36456,30 +36498,30 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6540; + this.state = 6548; this.match(MySqlParser.KW_CACHE); - this.state = 6541; + this.state = 6549; this.match(MySqlParser.KW_INDEX); - this.state = 6559; + this.state = 6567; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 939, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 942, this.context) ) { case 1: { - this.state = 6542; + this.state = 6550; this.tableIndex(); - this.state = 6547; + this.state = 6555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6543; + this.state = 6551; this.match(MySqlParser.COMMA); - this.state = 6544; + this.state = 6552; this.tableIndex(); } } - this.state = 6549; + this.state = 6557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36487,13 +36529,13 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 6550; + this.state = 6558; this.tableName(); - this.state = 6551; + this.state = 6559; this.match(MySqlParser.KW_PARTITION); - this.state = 6552; + this.state = 6560; this.match(MySqlParser.LR_BRACKET); - this.state = 6555; + this.state = 6563; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -37046,27 +37088,27 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 6553; + this.state = 6561; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 6554; + this.state = 6562; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6557; + this.state = 6565; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 6561; + this.state = 6569; this.match(MySqlParser.KW_IN); - this.state = 6562; + this.state = 6570; this.databaseName(); } } @@ -37091,33 +37133,33 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6564; + this.state = 6572; this.match(MySqlParser.KW_FLUSH); - this.state = 6566; + this.state = 6574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6565; + this.state = 6573; this.tableActionOption(); } } - this.state = 6568; + this.state = 6576; this.flushOption(); - this.state = 6573; + this.state = 6581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6569; + this.state = 6577; this.match(MySqlParser.COMMA); - this.state = 6570; + this.state = 6578; this.flushOption(); } } - this.state = 6575; + this.state = 6583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37144,14 +37186,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6576; + this.state = 6584; this.match(MySqlParser.KW_KILL); - this.state = 6578; + this.state = 6586; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 942, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 945, this.context) ) { case 1: { - this.state = 6577; + this.state = 6585; localContext._connectionFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 349 || _la === 548)) { @@ -37164,7 +37206,7 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 6580; + this.state = 6588; this.expression(0); } } @@ -37189,29 +37231,29 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6582; + this.state = 6590; this.match(MySqlParser.KW_LOAD); - this.state = 6583; + this.state = 6591; this.match(MySqlParser.KW_INDEX); - this.state = 6584; + this.state = 6592; this.match(MySqlParser.KW_INTO); - this.state = 6585; + this.state = 6593; this.match(MySqlParser.KW_CACHE); - this.state = 6586; + this.state = 6594; this.loadedTableIndexes(); - this.state = 6591; + this.state = 6599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6587; + this.state = 6595; this.match(MySqlParser.COMMA); - this.state = 6588; + this.state = 6596; this.loadedTableIndexes(); } } - this.state = 6593; + this.state = 6601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37238,23 +37280,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6594; + this.state = 6602; this.match(MySqlParser.KW_RESET); - this.state = 6595; + this.state = 6603; this.resetOption(); - this.state = 6600; + this.state = 6608; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6596; + this.state = 6604; this.match(MySqlParser.COMMA); - this.state = 6597; + this.state = 6605; this.resetOption(); } } - this.state = 6602; + this.state = 6610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37278,36 +37320,36 @@ export class MySqlParser extends SQLParserBase { let localContext = new ResetOptionContext(this.context, this.state); this.enterRule(localContext, 592, MySqlParser.RULE_resetOption); try { - this.state = 6608; + this.state = 6616; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MASTER: this.enterOuterAlt(localContext, 1); { - this.state = 6603; + this.state = 6611; this.match(MySqlParser.KW_MASTER); } break; case MySqlParser.KW_REPLICA: this.enterOuterAlt(localContext, 2); { - this.state = 6604; + this.state = 6612; this.match(MySqlParser.KW_REPLICA); } break; case MySqlParser.KW_QUERY: this.enterOuterAlt(localContext, 3); { - this.state = 6605; + this.state = 6613; this.match(MySqlParser.KW_QUERY); - this.state = 6606; + this.state = 6614; this.match(MySqlParser.KW_CACHE); } break; case MySqlParser.KW_SLAVE: this.enterOuterAlt(localContext, 4); { - this.state = 6607; + this.state = 6615; this.match(MySqlParser.KW_SLAVE); } break; @@ -37335,26 +37377,26 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6610; + this.state = 6618; this.match(MySqlParser.KW_RESET); - this.state = 6611; + this.state = 6619; this.match(MySqlParser.KW_PERSIST); - this.state = 6616; + this.state = 6624; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 947, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 950, this.context) ) { case 1: { - this.state = 6613; + this.state = 6621; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 946, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 949, this.context) ) { case 1: { - this.state = 6612; + this.state = 6620; this.ifExists(); } break; } - this.state = 6615; + this.state = 6623; localContext._system_var_name = this.uid(); } break; @@ -37382,9 +37424,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6618; + this.state = 6626; this.match(MySqlParser.KW_RESET); - this.state = 6619; + this.state = 6627; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -37393,22 +37435,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6621; + this.state = 6629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7) { { - this.state = 6620; + this.state = 6628; this.match(MySqlParser.KW_ALL); } } - this.state = 6624; + this.state = 6632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6623; + this.state = 6631; this.channelOption(); } } @@ -37435,7 +37477,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6626; + this.state = 6634; this.match(MySqlParser.KW_RESTART); } } @@ -37459,7 +37501,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6628; + this.state = 6636; this.match(MySqlParser.KW_SHUTDOWN); } } @@ -37484,14 +37526,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6630; + this.state = 6638; this.tableName(); - this.state = 6636; + this.state = 6644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 6631; + this.state = 6639; localContext._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -37501,11 +37543,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6632; + this.state = 6640; this.match(MySqlParser.LR_BRACKET); - this.state = 6633; + this.state = 6641; this.indexNames(); - this.state = 6634; + this.state = 6642; this.match(MySqlParser.RR_BRACKET); } } @@ -37531,25 +37573,25 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 604, MySqlParser.RULE_flushOption); let _la: number; try { - this.state = 6670; + this.state = 6678; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 957, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 960, this.context) ) { case 1: localContext = new SimpleFlushOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6656; + this.state = 6664; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DES_KEY_FILE: { - this.state = 6638; + this.state = 6646; this.match(MySqlParser.KW_DES_KEY_FILE); } break; case MySqlParser.KW_HOSTS: { - this.state = 6639; + this.state = 6647; this.match(MySqlParser.KW_HOSTS); } break; @@ -37561,12 +37603,12 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_RELAY: case MySqlParser.KW_SLOW: { - this.state = 6641; + this.state = 6649; 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 = 6640; + this.state = 6648; _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); @@ -37578,56 +37620,56 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6643; + this.state = 6651; this.match(MySqlParser.KW_LOGS); } break; case MySqlParser.KW_OPTIMIZER_COSTS: { - this.state = 6644; + this.state = 6652; this.match(MySqlParser.KW_OPTIMIZER_COSTS); } break; case MySqlParser.KW_PRIVILEGES: { - this.state = 6645; + this.state = 6653; this.match(MySqlParser.KW_PRIVILEGES); } break; case MySqlParser.KW_QUERY: { - this.state = 6646; + this.state = 6654; this.match(MySqlParser.KW_QUERY); - this.state = 6647; + this.state = 6655; this.match(MySqlParser.KW_CACHE); } break; case MySqlParser.KW_STATUS: { - this.state = 6648; + this.state = 6656; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_USER_RESOURCES: { - this.state = 6649; + this.state = 6657; this.match(MySqlParser.KW_USER_RESOURCES); } break; case MySqlParser.KW_TABLES: { - this.state = 6650; + this.state = 6658; this.match(MySqlParser.KW_TABLES); - this.state = 6654; + this.state = 6662; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 952, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 955, this.context) ) { case 1: { - this.state = 6651; + this.state = 6659; this.match(MySqlParser.KW_WITH); - this.state = 6652; + this.state = 6660; this.match(MySqlParser.KW_READ); - this.state = 6653; + this.state = 6661; this.match(MySqlParser.KW_LOCK); } break; @@ -37643,16 +37685,16 @@ export class MySqlParser extends SQLParserBase { localContext = new ChannelFlushOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6658; + this.state = 6666; this.match(MySqlParser.KW_RELAY); - this.state = 6659; + this.state = 6667; this.match(MySqlParser.KW_LOGS); - this.state = 6661; + this.state = 6669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6660; + this.state = 6668; this.channelOption(); } } @@ -37663,7 +37705,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableFlushOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6663; + this.state = 6671; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -37672,22 +37714,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6665; + this.state = 6673; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 955, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 958, this.context) ) { case 1: { - this.state = 6664; + this.state = 6672; this.tableNames(); } break; } - this.state = 6668; + this.state = 6676; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 956, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 959, this.context) ) { case 1: { - this.state = 6667; + this.state = 6675; this.flushTableOption(); } break; @@ -37714,26 +37756,26 @@ export class MySqlParser extends SQLParserBase { let localContext = new FlushTableOptionContext(this.context, this.state); this.enterRule(localContext, 606, MySqlParser.RULE_flushTableOption); try { - this.state = 6677; + this.state = 6685; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_WITH: this.enterOuterAlt(localContext, 1); { - this.state = 6672; + this.state = 6680; this.match(MySqlParser.KW_WITH); - this.state = 6673; + this.state = 6681; this.match(MySqlParser.KW_READ); - this.state = 6674; + this.state = 6682; this.match(MySqlParser.KW_LOCK); } break; case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 2); { - this.state = 6675; + this.state = 6683; this.match(MySqlParser.KW_FOR); - this.state = 6676; + this.state = 6684; this.match(MySqlParser.KW_EXPORT); } break; @@ -37762,18 +37804,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6679; - this.tableName(); this.state = 6687; + this.tableName(); + this.state = 6695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 6680; + this.state = 6688; this.match(MySqlParser.KW_PARTITION); - this.state = 6681; + this.state = 6689; this.match(MySqlParser.LR_BRACKET); - this.state = 6684; + this.state = 6692; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -38326,35 +38368,35 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 6682; + this.state = 6690; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 6683; + this.state = 6691; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6686; + this.state = 6694; this.match(MySqlParser.RR_BRACKET); } } - this.state = 6696; + this.state = 6704; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 962, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 965, this.context) ) { case 1: { - this.state = 6690; + this.state = 6698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 6689; + this.state = 6697; localContext._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -38367,23 +38409,23 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6692; + this.state = 6700; this.match(MySqlParser.LR_BRACKET); - this.state = 6693; + this.state = 6701; this.indexNames(); - this.state = 6694; + this.state = 6702; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 6700; + this.state = 6708; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 6698; + this.state = 6706; this.match(MySqlParser.KW_IGNORE); - this.state = 6699; + this.state = 6707; this.match(MySqlParser.KW_LEAVES); } } @@ -38411,7 +38453,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6702; + this.state = 6710; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -38421,20 +38463,20 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6703; + this.state = 6711; this.tableName(); - this.state = 6706; + this.state = 6714; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 964, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 967, this.context) ) { case 1: { - this.state = 6704; + this.state = 6712; localContext._column = this.columnName(); } break; case 2: { - this.state = 6705; + this.state = 6713; localContext._pattern = this.match(MySqlParser.STRING_LITERAL); } break; @@ -38462,7 +38504,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6708; + this.state = 6716; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -38472,28 +38514,28 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6714; + this.state = 6722; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_EXTENDED: { - this.state = 6709; + this.state = 6717; this.match(MySqlParser.KW_EXTENDED); } break; case MySqlParser.KW_PARTITIONS: { - this.state = 6710; + this.state = 6718; this.match(MySqlParser.KW_PARTITIONS); } break; case MySqlParser.KW_FORMAT: { - this.state = 6711; + this.state = 6719; this.match(MySqlParser.KW_FORMAT); - this.state = 6712; + this.state = 6720; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6713; + this.state = 6721; _la = this.tokenStream.LA(1); if(!(_la === 442 || _la === 663 || _la === 666)) { this.errorHandler.recoverInline(this); @@ -38515,7 +38557,7 @@ export class MySqlParser extends SQLParserBase { default: break; } - this.state = 6716; + this.state = 6724; this.describeObjectClause(); } } @@ -38540,7 +38582,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6718; + this.state = 6726; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -38550,23 +38592,23 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6719; + this.state = 6727; this.match(MySqlParser.KW_ANALYZE); - this.state = 6723; + this.state = 6731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 826) { { - this.state = 6720; + this.state = 6728; this.match(MySqlParser.KW_FORMAT); - this.state = 6721; + this.state = 6729; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6722; + this.state = 6730; this.match(MySqlParser.KW_TREE); } } - this.state = 6725; + this.state = 6733; this.selectStatement(); } } @@ -38590,9 +38632,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6727; + this.state = 6735; this.match(MySqlParser.KW_HELP); - this.state = 6728; + this.state = 6736; this.match(MySqlParser.STRING_LITERAL); } } @@ -38616,9 +38658,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6730; + this.state = 6738; this.match(MySqlParser.KW_USE); - this.state = 6731; + this.state = 6739; this.databaseName(); } } @@ -38643,68 +38685,68 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6733; - this.match(MySqlParser.KW_SIGNAL); this.state = 6741; + this.match(MySqlParser.KW_SIGNAL); + this.state = 6749; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQLSTATE: { { - this.state = 6734; + this.state = 6742; this.match(MySqlParser.KW_SQLSTATE); - this.state = 6736; + this.state = 6744; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 6735; + this.state = 6743; this.match(MySqlParser.KW_VALUE); } } - this.state = 6738; + this.state = 6746; this.stringLiteral(); } } break; case MySqlParser.ID: { - this.state = 6739; + this.state = 6747; this.match(MySqlParser.ID); } break; case MySqlParser.REVERSE_QUOTE_ID: { - this.state = 6740; + this.state = 6748; this.match(MySqlParser.REVERSE_QUOTE_ID); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6752; + this.state = 6760; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 970, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 973, this.context) ) { case 1: { - this.state = 6743; + this.state = 6751; this.match(MySqlParser.KW_SET); - this.state = 6744; + this.state = 6752; this.signalConditionInformation(); - this.state = 6749; + this.state = 6757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6745; + this.state = 6753; this.match(MySqlParser.COMMA); - this.state = 6746; + this.state = 6754; this.signalConditionInformation(); } } - this.state = 6751; + this.state = 6759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38734,40 +38776,40 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6754; - this.match(MySqlParser.KW_RESIGNAL); this.state = 6762; + this.match(MySqlParser.KW_RESIGNAL); + this.state = 6770; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQLSTATE: { { - this.state = 6755; + this.state = 6763; this.match(MySqlParser.KW_SQLSTATE); - this.state = 6757; + this.state = 6765; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 6756; + this.state = 6764; this.match(MySqlParser.KW_VALUE); } } - this.state = 6759; + this.state = 6767; this.stringLiteral(); } } break; case MySqlParser.ID: { - this.state = 6760; + this.state = 6768; this.match(MySqlParser.ID); } break; case MySqlParser.REVERSE_QUOTE_ID: { - this.state = 6761; + this.state = 6769; this.match(MySqlParser.REVERSE_QUOTE_ID); } break; @@ -38838,28 +38880,28 @@ export class MySqlParser extends SQLParserBase { default: break; } - this.state = 6773; + this.state = 6781; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 974, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 977, this.context) ) { case 1: { - this.state = 6764; + this.state = 6772; this.match(MySqlParser.KW_SET); - this.state = 6765; + this.state = 6773; this.signalConditionInformation(); - this.state = 6770; + this.state = 6778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6766; + this.state = 6774; this.match(MySqlParser.COMMA); - this.state = 6767; + this.state = 6775; this.signalConditionInformation(); } } - this.state = 6772; + this.state = 6780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38889,7 +38931,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6775; + this.state = 6783; _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); @@ -38898,29 +38940,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6776; + this.state = 6784; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6781; + this.state = 6789; 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 = 6777; + this.state = 6785; this.stringLiteral(); } break; case MySqlParser.DECIMAL_LITERAL: { - this.state = 6778; + this.state = 6786; this.match(MySqlParser.DECIMAL_LITERAL); } break; case MySqlParser.LOCAL_ID: case MySqlParser.GLOBAL_ID: { - this.state = 6779; + this.state = 6787; this.mysqlVariable(); } break; @@ -39472,7 +39514,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.MOD: case MySqlParser.ID: { - this.state = 6780; + this.state = 6788; this.simpleId(); } break; @@ -39502,33 +39544,33 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6783; + this.state = 6791; this.match(MySqlParser.KW_WITH); - this.state = 6785; + this.state = 6793; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 976, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 979, this.context) ) { case 1: { - this.state = 6784; + this.state = 6792; this.match(MySqlParser.KW_RECURSIVE); } break; } - this.state = 6787; + this.state = 6795; this.commonTableExpressions(); - this.state = 6792; + this.state = 6800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6788; + this.state = 6796; this.match(MySqlParser.COMMA); - this.state = 6789; + this.state = 6797; this.commonTableExpressions(); } } - this.state = 6794; + this.state = 6802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39554,26 +39596,26 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6795; + this.state = 6803; this.match(MySqlParser.KW_TABLE); - this.state = 6796; + this.state = 6804; this.tableName(); - this.state = 6798; + this.state = 6806; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 978, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 981, this.context) ) { case 1: { - this.state = 6797; + this.state = 6805; this.orderByClause(); } break; } - this.state = 6801; + this.state = 6809; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 979, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 982, this.context) ) { case 1: { - this.state = 6800; + this.state = 6808; this.limitClause(); } break; @@ -39601,14 +39643,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6803; + this.state = 6811; this.match(MySqlParser.KW_GET); - this.state = 6805; + this.state = 6813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36 || _la === 170) { { - this.state = 6804; + this.state = 6812; _la = this.tokenStream.LA(1); if(!(_la === 36 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -39620,19 +39662,19 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6807; + this.state = 6815; this.match(MySqlParser.KW_DIAGNOSTICS); - this.state = 6839; + this.state = 6847; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 984, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 987, this.context) ) { case 1: { { - this.state = 6808; + this.state = 6816; this.variableClause(); - this.state = 6809; + this.state = 6817; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6810; + this.state = 6818; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 831)) { this.errorHandler.recoverInline(this); @@ -39641,19 +39683,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6818; + this.state = 6826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6811; + this.state = 6819; this.match(MySqlParser.COMMA); - this.state = 6812; + this.state = 6820; this.variableClause(); - this.state = 6813; + this.state = 6821; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6814; + this.state = 6822; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 831)) { this.errorHandler.recoverInline(this); @@ -39664,7 +39706,7 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 6820; + this.state = 6828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39674,9 +39716,9 @@ export class MySqlParser extends SQLParserBase { case 2: { { - this.state = 6821; + this.state = 6829; this.match(MySqlParser.KW_CONDITION); - this.state = 6824; + this.state = 6832; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -39686,7 +39728,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 6822; + this.state = 6830; this.decimalLiteral(); } break; @@ -40245,36 +40287,36 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.LOCAL_ID: case MySqlParser.GLOBAL_ID: { - this.state = 6823; + this.state = 6831; this.variableClause(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6826; + this.state = 6834; this.variableClause(); - this.state = 6827; + this.state = 6835; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6828; - this.diagnosticsConditionInformationName(); this.state = 6836; + this.diagnosticsConditionInformationName(); + this.state = 6844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6829; + this.state = 6837; this.match(MySqlParser.COMMA); - this.state = 6830; + this.state = 6838; this.variableClause(); - this.state = 6831; + this.state = 6839; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6832; + this.state = 6840; this.diagnosticsConditionInformationName(); } } - this.state = 6838; + this.state = 6846; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40305,7 +40347,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6841; + this.state = 6849; _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); @@ -40334,7 +40376,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new DescribeObjectClauseContext(this.context, this.state); this.enterRule(localContext, 634, MySqlParser.RULE_describeObjectClause); try { - this.state = 6853; + this.state = 6861; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DELETE: @@ -40346,37 +40388,37 @@ export class MySqlParser extends SQLParserBase { localContext = new DescribeStatementsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6848; + this.state = 6856; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: { - this.state = 6843; + this.state = 6851; this.selectStatement(); } break; case MySqlParser.KW_DELETE: { - this.state = 6844; + this.state = 6852; this.deleteStatement(); } break; case MySqlParser.KW_INSERT: { - this.state = 6845; + this.state = 6853; this.insertStatement(); } break; case MySqlParser.KW_REPLACE: { - this.state = 6846; + this.state = 6854; this.replaceStatement(); } break; case MySqlParser.KW_UPDATE: { - this.state = 6847; + this.state = 6855; this.updateStatement(); } break; @@ -40389,11 +40431,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DescribeConnectionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6850; + this.state = 6858; this.match(MySqlParser.KW_FOR); - this.state = 6851; + this.state = 6859; this.match(MySqlParser.KW_CONNECTION); - this.state = 6852; + this.state = 6860; (localContext as DescribeConnectionContext)._connection_id = this.uid(); } break; @@ -40421,7 +40463,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6855; + this.state = 6863; this.fullId(); } } @@ -40445,7 +40487,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6857; + this.state = 6865; this.fullId(); } } @@ -40469,7 +40511,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6859; + this.state = 6867; this.fullId(); } } @@ -40493,7 +40535,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6861; + this.state = 6869; this.fullId(); } } @@ -40517,7 +40559,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6863; + this.state = 6871; this.fullId(); } } @@ -40541,7 +40583,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6865; + this.state = 6873; this.fullId(); } } @@ -40565,7 +40607,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6867; + this.state = 6875; this.uid(); } } @@ -40590,21 +40632,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6869; + this.state = 6877; this.indexName(); - this.state = 6874; + this.state = 6882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6870; + this.state = 6878; this.match(MySqlParser.COMMA); - this.state = 6871; + this.state = 6879; this.indexName(); } } - this.state = 6876; + this.state = 6884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40630,7 +40672,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6877; + this.state = 6885; this.uid(); } } @@ -40654,7 +40696,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6879; + this.state = 6887; this.uid(); } } @@ -40678,7 +40720,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6881; + this.state = 6889; this.uid(); } } @@ -40702,7 +40744,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6883; + this.state = 6891; this.fullId(); } } @@ -40727,25 +40769,25 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6885; + this.state = 6893; this.tableName(); - this.state = 6890; + this.state = 6898; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 988, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 991, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6886; + this.state = 6894; this.match(MySqlParser.COMMA); - this.state = 6887; + this.state = 6895; this.tableName(); } } } - this.state = 6892; + this.state = 6900; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 988, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 991, this.context); } } } @@ -40769,7 +40811,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6893; + this.state = 6901; this.fullId(); } } @@ -40794,21 +40836,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6895; + this.state = 6903; this.userOrRoleName(); - this.state = 6900; + this.state = 6908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6896; + this.state = 6904; this.match(MySqlParser.COMMA); - this.state = 6897; + this.state = 6905; this.userOrRoleName(); } } - this.state = 6902; + this.state = 6910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40832,20 +40874,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new UserOrRoleNameContext(this.context, this.state); this.enterRule(localContext, 666, MySqlParser.RULE_userOrRoleName); try { - this.state = 6905; + this.state = 6913; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 990, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 993, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6903; + this.state = 6911; this.userName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6904; + this.state = 6912; this.uid(); } break; @@ -40870,27 +40912,27 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 668, MySqlParser.RULE_columnNameCreate); let _la: number; try { - this.state = 6921; + this.state = 6929; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 995, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6907; + this.state = 6915; this.uid(); - this.state = 6912; + this.state = 6920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6908; + this.state = 6916; this.dottedId(); - this.state = 6910; + this.state = 6918; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6909; + this.state = 6917; this.dottedId(); } } @@ -40903,24 +40945,24 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6915; + this.state = 6923; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 993, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 996, this.context) ) { case 1: { - this.state = 6914; + this.state = 6922; this.matchWildcard(); } break; } - this.state = 6917; + this.state = 6925; this.dottedId(); - this.state = 6919; + this.state = 6927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6918; + this.state = 6926; this.dottedId(); } } @@ -40950,25 +40992,25 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6923; + this.state = 6931; this.columnName(); - this.state = 6928; + this.state = 6936; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 996, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 999, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6924; + this.state = 6932; this.match(MySqlParser.COMMA); - this.state = 6925; + this.state = 6933; this.columnName(); } } } - this.state = 6930; + this.state = 6938; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 996, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 999, this.context); } } } @@ -41013,27 +41055,27 @@ export class MySqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 674, MySqlParser.RULE_columnName); try { - this.state = 6949; + this.state = 6957; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6933; + this.state = 6941; this.uid(); - this.state = 6938; + this.state = 6946; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context) ) { case 1: { - this.state = 6934; + this.state = 6942; this.dottedId(); - this.state = 6936; + this.state = 6944; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 997, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context) ) { case 1: { - this.state = 6935; + this.state = 6943; this.dottedId(); } break; @@ -41046,24 +41088,24 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6941; + this.state = 6949; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 999, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context) ) { case 1: { - this.state = 6940; + this.state = 6948; this.matchWildcard(); } break; } - this.state = 6943; + this.state = 6951; this.dottedId(); - this.state = 6945; + this.state = 6953; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1003, this.context) ) { case 1: { - this.state = 6944; + this.state = 6952; this.dottedId(); } break; @@ -41073,11 +41115,11 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6947; + this.state = 6955; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 6948; + this.state = 6956; this.emptyColumn(); } break; @@ -41101,27 +41143,28 @@ export class MySqlParser extends SQLParserBase { let localContext = new ColumnNamePathContext(this.context, this.state); this.enterRule(localContext, 676, MySqlParser.RULE_columnNamePath); try { - this.state = 6965; + this.state = 6978; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1009, this.context) ) { case 1: + localContext = new ColumnNamePath_defaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6951; + this.state = 6959; this.uid(); - this.state = 6956; + this.state = 6964; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1003, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { case 1: { - this.state = 6952; + this.state = 6960; this.dottedId(); - this.state = 6954; + this.state = 6962; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1005, this.context) ) { case 1: { - this.state = 6953; + this.state = 6961; this.dottedId(); } break; @@ -41132,32 +41175,49 @@ export class MySqlParser extends SQLParserBase { } break; case 2: + localContext = new ColumnNamePath_dottedContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6959; + this.state = 6967; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1007, this.context) ) { case 1: { - this.state = 6958; + this.state = 6966; this.matchWildcard(); } break; } - this.state = 6961; + this.state = 6969; this.dottedId(); - this.state = 6963; + this.state = 6971; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1005, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1008, this.context) ) { case 1: { - this.state = 6962; + this.state = 6970; this.dottedId(); } break; } } break; + case 3: + localContext = new ColumnNamePath_dot_emptyContext(localContext); + this.enterOuterAlt(localContext, 3); + { + this.state = 6973; + this.uid(); + this.state = 6974; + this.match(MySqlParser.DOT); + this.state = 6975; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 6976; + this.emptyColumn(); + } + break; } } catch (re) { @@ -41178,45 +41238,25 @@ export class MySqlParser extends SQLParserBase { let localContext = new ColumnNamePathAllowEmptyContext(this.context, this.state); this.enterRule(localContext, 678, MySqlParser.RULE_columnNamePathAllowEmpty); try { - this.state = 6976; + this.state = 6983; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1009, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1010, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6967; - if (!(this.shouldMatchEmpty())) { - throw this.createFailedPredicateException("this.shouldMatchEmpty()"); - } - this.state = 6968; - this.emptyColumn(); + this.state = 6980; + this.columnNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6969; - this.uid(); - this.state = 6974; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1008, this.context) ) { - case 1: - { - 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 = 6971; - this.dottedId(); - } - break; - } - } - break; + this.state = 6981; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } + this.state = 6982; + this.emptyColumn(); } break; } @@ -41241,7 +41281,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6978; + this.state = 6985; this.uid(); } } @@ -41265,7 +41305,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6980; + this.state = 6987; this.uid(); } } @@ -41289,7 +41329,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6982; + this.state = 6989; this.uid(); } } @@ -41314,25 +41354,25 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6984; + this.state = 6991; this.partitionName(); - this.state = 6989; + this.state = 6996; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1010, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1011, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6985; + this.state = 6992; this.match(MySqlParser.COMMA); - this.state = 6986; + this.state = 6993; this.partitionName(); } } } - this.state = 6991; + this.state = 6998; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1010, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1011, this.context); } } } @@ -41356,7 +41396,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6992; + this.state = 6999; this.uid(); } } @@ -41381,23 +41421,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7002; + this.state = 7009; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1012, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1013, this.context) ) { case 1: { - this.state = 6994; + this.state = 7001; this.uid(); - this.state = 6999; + this.state = 7006; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1011, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1012, this.context) ) { case 1: { - this.state = 6995; + this.state = 7002; this.match(MySqlParser.LR_BRACKET); - this.state = 6996; + this.state = 7003; this.decimalLiteral(); - this.state = 6997; + this.state = 7004; this.match(MySqlParser.RR_BRACKET); } break; @@ -41406,17 +41446,17 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 7001; + this.state = 7008; this.expression(0); } break; } - this.state = 7005; + this.state = 7012; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1013, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1014, this.context) ) { case 1: { - this.state = 7004; + this.state = 7011; localContext._sortType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -41451,11 +41491,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7007; + this.state = 7014; this.userAtHost(); - this.state = 7008; + this.state = 7015; this.match(MySqlParser.COLON_SYMB); - this.state = 7009; + this.state = 7016; this.decimalLiteral(); } } @@ -41479,9 +41519,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7011; + this.state = 7018; this.simpleUserName(); - this.state = 7012; + this.state = 7019; this.match(MySqlParser.HOST_IP_ADDRESS); } } @@ -41503,34 +41543,34 @@ export class MySqlParser extends SQLParserBase { let localContext = new SimpleUserNameContext(this.context, this.state); this.enterRule(localContext, 696, MySqlParser.RULE_simpleUserName); try { - this.state = 7018; + this.state = 7025; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1014, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1015, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7014; + this.state = 7021; this.match(MySqlParser.STRING_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7015; + this.state = 7022; this.match(MySqlParser.ID); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7016; + this.state = 7023; this.match(MySqlParser.KW_ADMIN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7017; + this.state = 7024; this.keywordsCanBeId(); } break; @@ -41557,7 +41597,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7020; + this.state = 7027; _la = this.tokenStream.LA(1); if(!(((((_la - 870)) & ~0x1F) === 0 && ((1 << (_la - 870)) & 6291457) !== 0))) { this.errorHandler.recoverInline(this); @@ -41587,20 +41627,20 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 700, MySqlParser.RULE_userName); let _la: number; try { - this.state = 7027; + this.state = 7034; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1016, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1017, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7022; + this.state = 7029; this.simpleUserName(); - this.state = 7024; + this.state = 7031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 870)) & ~0x1F) === 0 && ((1 << (_la - 870)) & 6291457) !== 0)) { { - this.state = 7023; + this.state = 7030; this.hostName(); } } @@ -41610,7 +41650,7 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7026; + this.state = 7033; this.currentUserExpression(); } break; @@ -41637,7 +41677,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7029; + this.state = 7036; _la = this.tokenStream.LA(1); if(!(_la === 892 || _la === 893)) { this.errorHandler.recoverInline(this); @@ -41666,34 +41706,34 @@ export class MySqlParser extends SQLParserBase { let localContext = new CharsetNameContext(this.context, this.state); this.enterRule(localContext, 704, MySqlParser.RULE_charsetName); try { - this.state = 7035; + this.state = 7042; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1017, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7031; + this.state = 7038; this.match(MySqlParser.KW_BINARY); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7032; + this.state = 7039; this.charsetNameBase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7033; + this.state = 7040; this.match(MySqlParser.STRING_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7034; + this.state = 7041; this.match(MySqlParser.CHARSET_REVERSE_QOUTE_STRING); } break; @@ -41719,7 +41759,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7037; + this.state = 7044; this.uid(); } } @@ -41741,7 +41781,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new EngineNameContext(this.context, this.state); this.enterRule(localContext, 708, MySqlParser.RULE_engineName); try { - this.state = 7042; + this.state = 7049; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CONNECT: @@ -41759,21 +41799,21 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_TOKUDB: this.enterOuterAlt(localContext, 1); { - this.state = 7039; + this.state = 7046; this.engineNameBase(); } break; case MySqlParser.ID: this.enterOuterAlt(localContext, 2); { - this.state = 7040; + this.state = 7047; this.match(MySqlParser.ID); } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 7041; + this.state = 7048; this.match(MySqlParser.STRING_LITERAL); } break; @@ -41802,7 +41842,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7044; + this.state = 7051; _la = this.tokenStream.LA(1); if(!(_la === 348 || ((((_la - 797)) & ~0x1F) === 0 && ((1 << (_la - 797)) & 4095) !== 0))) { this.errorHandler.recoverInline(this); @@ -41834,41 +41874,41 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7046; + this.state = 7053; this.decimalLiteral(); - this.state = 7047; + this.state = 7054; this.match(MySqlParser.MINUS); - this.state = 7048; + this.state = 7055; this.decimalLiteral(); - this.state = 7049; + this.state = 7056; this.match(MySqlParser.MINUS); - this.state = 7050; + this.state = 7057; this.decimalLiteral(); - this.state = 7051; + this.state = 7058; this.match(MySqlParser.MINUS); - this.state = 7052; + this.state = 7059; this.decimalLiteral(); - this.state = 7053; + this.state = 7060; this.match(MySqlParser.MINUS); - this.state = 7054; + this.state = 7061; this.decimalLiteral(); - this.state = 7060; + this.state = 7067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7055; + this.state = 7062; this.match(MySqlParser.COLON_SYMB); - this.state = 7056; + this.state = 7063; this.decimalLiteral(); - this.state = 7057; + this.state = 7064; this.match(MySqlParser.MINUS); - this.state = 7058; + this.state = 7065; this.decimalLiteral(); } } - this.state = 7062; + this.state = 7069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 878); @@ -41895,25 +41935,25 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7064; - localContext._globalTableUid = this.xuidStringId(); this.state = 7071; + localContext._globalTableUid = this.xuidStringId(); + this.state = 7078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7065; + this.state = 7072; this.match(MySqlParser.COMMA); - this.state = 7066; + this.state = 7073; localContext._qualifier = this.xuidStringId(); - this.state = 7069; + this.state = 7076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7067; + this.state = 7074; this.match(MySqlParser.COMMA); - this.state = 7068; + this.state = 7075; localContext._idFormat = this.decimalLiteral(); } } @@ -41942,37 +41982,37 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 716, MySqlParser.RULE_xuidStringId); let _la: number; try { - this.state = 7080; + this.state = 7087; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 7073; + this.state = 7080; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.BIT_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 7074; + this.state = 7081; this.match(MySqlParser.BIT_STRING); } break; case MySqlParser.HEXADECIMAL_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 7076; + this.state = 7083; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7075; + this.state = 7082; this.match(MySqlParser.HEXADECIMAL_LITERAL); } } - this.state = 7078; + this.state = 7085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 884); @@ -42002,14 +42042,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7082; + this.state = 7089; this.uid(); - this.state = 7084; + this.state = 7091; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1024, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1025, this.context) ) { case 1: { - this.state = 7083; + this.state = 7090; this.dottedId(); } break; @@ -42037,21 +42077,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7086; + this.state = 7093; this.uid(); - this.state = 7091; + this.state = 7098; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7087; + this.state = 7094; this.match(MySqlParser.COMMA); - this.state = 7088; + this.state = 7095; this.uid(); } } - this.state = 7093; + this.state = 7100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -42075,7 +42115,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new UidContext(this.context, this.state); this.enterRule(localContext, 722, MySqlParser.RULE_uid); try { - this.state = 7097; + this.state = 7104; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -42627,21 +42667,21 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 7094; + this.state = 7101; this.simpleId(); } break; case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 7095; + this.state = 7102; this.match(MySqlParser.CHARSET_REVERSE_QOUTE_STRING); } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 7096; + this.state = 7103; this.match(MySqlParser.STRING_LITERAL); } break; @@ -42667,69 +42707,69 @@ export class MySqlParser extends SQLParserBase { let localContext = new SimpleIdContext(this.context, this.state); this.enterRule(localContext, 724, MySqlParser.RULE_simpleId); try { - this.state = 7108; + this.state = 7115; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1027, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1028, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7099; + this.state = 7106; this.match(MySqlParser.ID); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7100; + this.state = 7107; this.charsetNameBase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7101; + this.state = 7108; this.transactionLevelBase(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7102; + this.state = 7109; this.engineNameBase(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7103; + this.state = 7110; this.privilegesBase(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7104; + this.state = 7111; this.intervalTypeBase(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7105; + this.state = 7112; this.dataTypeBase(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7106; + this.state = 7113; this.keywordsCanBeId(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7107; + this.state = 7114; this.scalarFunctionName(); } break; @@ -42753,24 +42793,24 @@ export class MySqlParser extends SQLParserBase { let localContext = new DottedIdContext(this.context, this.state); this.enterRule(localContext, 726, MySqlParser.RULE_dottedId); try { - this.state = 7114; + this.state = 7121; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1028, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1029, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7110; + this.state = 7117; this.match(MySqlParser.DOT); - this.state = 7111; + this.state = 7118; this.match(MySqlParser.ID); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7112; + this.state = 7119; this.match(MySqlParser.DOT); - this.state = 7113; + this.state = 7120; this.uid(); } break; @@ -42797,7 +42837,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7116; + this.state = 7123; _la = this.tokenStream.LA(1); if(!(((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0))) { this.errorHandler.recoverInline(this); @@ -42826,13 +42866,13 @@ export class MySqlParser extends SQLParserBase { let localContext = new FileSizeLiteralContext(this.context, this.state); this.enterRule(localContext, 730, MySqlParser.RULE_fileSizeLiteral); try { - this.state = 7120; + this.state = 7127; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.FILESIZE_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 7118; + this.state = 7125; this.match(MySqlParser.FILESIZE_LITERAL); } break; @@ -42844,7 +42884,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 7119; + this.state = 7126; this.decimalLiteral(); } break; @@ -42872,42 +42912,42 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 7145; + this.state = 7152; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7127; + this.state = 7134; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 7123; + this.state = 7130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7122; + this.state = 7129; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7125; + this.state = 7132; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.START_NATIONAL_STRING_LITERAL: { - this.state = 7126; + this.state = 7133; this.match(MySqlParser.START_NATIONAL_STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7130; + this.state = 7137; this.errorHandler.sync(this); alternative = 1; do { @@ -42915,7 +42955,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 7129; + this.state = 7136; this.match(MySqlParser.STRING_LITERAL); } } @@ -42923,52 +42963,52 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7132; + this.state = 7139; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1032, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7139; + this.state = 7146; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 7135; + this.state = 7142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7134; + this.state = 7141; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7137; + this.state = 7144; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.START_NATIONAL_STRING_LITERAL: { - this.state = 7138; + this.state = 7145; this.match(MySqlParser.START_NATIONAL_STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7143; + this.state = 7150; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context) ) { case 1: { - this.state = 7141; + this.state = 7148; this.match(MySqlParser.KW_COLLATE); - this.state = 7142; + this.state = 7149; this.collationName(); } break; @@ -42998,7 +43038,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7147; + this.state = 7154; _la = this.tokenStream.LA(1); if(!(_la === 63 || _la === 179)) { this.errorHandler.recoverInline(this); @@ -43030,17 +43070,17 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7150; + this.state = 7157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7149; + this.state = 7156; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7152; + this.state = 7159; this.match(MySqlParser.HEXADECIMAL_LITERAL); } } @@ -43065,17 +43105,17 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7155; + this.state = 7162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7154; + this.state = 7161; this.match(MySqlParser.KW_NOT); } } - this.state = 7157; + this.state = 7164; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 886)) { this.errorHandler.recoverInline(this); @@ -43105,74 +43145,74 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 740, MySqlParser.RULE_constant); let _la: number; try { - this.state = 7171; + this.state = 7178; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1041, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7159; + this.state = 7166; this.stringLiteral(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7160; + this.state = 7167; this.decimalLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7161; + this.state = 7168; this.match(MySqlParser.MINUS); - this.state = 7162; + this.state = 7169; this.decimalLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7163; + this.state = 7170; this.hexadecimalLiteral(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7164; + this.state = 7171; this.booleanLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7165; + this.state = 7172; this.match(MySqlParser.REAL_LITERAL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7166; + this.state = 7173; this.match(MySqlParser.BIT_STRING); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7168; + this.state = 7175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7167; + this.state = 7174; this.match(MySqlParser.KW_NOT); } } - this.state = 7170; + this.state = 7177; localContext._nullLiteral = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 886)) { @@ -43206,14 +43246,14 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 7299; + this.state = 7306; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context) ) { case 1: localContext = new StringDataTypeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7173; + this.state = 7180; (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)) { @@ -43223,62 +43263,62 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7175; + this.state = 7182; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 240) { { - this.state = 7174; + this.state = 7181; this.match(MySqlParser.KW_VARYING); } } - this.state = 7178; + this.state = 7185; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1042, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context) ) { case 1: { - this.state = 7177; + this.state = 7184; this.lengthOneDimension(); } break; } - this.state = 7181; + this.state = 7188; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context) ) { case 1: { - this.state = 7180; + this.state = 7187; this.match(MySqlParser.KW_BINARY); } break; } - this.state = 7186; + this.state = 7193; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context) ) { case 1: { - this.state = 7183; + this.state = 7190; this.charSet(); - this.state = 7184; + this.state = 7191; this.charsetName(); } break; } - this.state = 7191; + this.state = 7198; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context) ) { case 1: { - this.state = 7188; + this.state = 7195; this.match(MySqlParser.KW_COLLATE); - this.state = 7189; + this.state = 7196; this.collationName(); } break; case 2: { - this.state = 7190; + this.state = 7197; this.match(MySqlParser.KW_BINARY); } break; @@ -43289,9 +43329,9 @@ export class MySqlParser extends SQLParserBase { localContext = new NationalVaryingStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7193; + this.state = 7200; this.match(MySqlParser.KW_NATIONAL); - this.state = 7194; + this.state = 7201; (localContext as NationalVaryingStringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || _la === 224)) { @@ -43301,24 +43341,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7195; + this.state = 7202; this.match(MySqlParser.KW_VARYING); - this.state = 7197; + this.state = 7204; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { case 1: { - this.state = 7196; + this.state = 7203; this.lengthOneDimension(); } break; } - this.state = 7200; + this.state = 7207; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { case 1: { - this.state = 7199; + this.state = 7206; this.match(MySqlParser.KW_BINARY); } break; @@ -43329,9 +43369,9 @@ export class MySqlParser extends SQLParserBase { localContext = new NationalStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7202; + this.state = 7209; this.match(MySqlParser.KW_NATIONAL); - this.state = 7203; + this.state = 7210; (localContext as NationalStringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || _la === 224 || _la === 225)) { @@ -43341,22 +43381,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7205; + this.state = 7212; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { case 1: { - this.state = 7204; + this.state = 7211; this.lengthOneDimension(); } break; } - this.state = 7208; + this.state = 7215; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { case 1: { - this.state = 7207; + this.state = 7214; this.match(MySqlParser.KW_BINARY); } break; @@ -43367,26 +43407,26 @@ export class MySqlParser extends SQLParserBase { localContext = new NationalStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7210; + this.state = 7217; this.match(MySqlParser.KW_NCHAR); - this.state = 7211; + this.state = 7218; (localContext as NationalStringDataTypeContext)._typeName = this.match(MySqlParser.KW_VARCHAR); - this.state = 7213; + this.state = 7220; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { case 1: { - this.state = 7212; + this.state = 7219; this.lengthOneDimension(); } break; } - this.state = 7216; + this.state = 7223; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { case 1: { - this.state = 7215; + this.state = 7222; this.match(MySqlParser.KW_BINARY); } break; @@ -43397,7 +43437,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7218; + this.state = 7225; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 4095) !== 0))) { @@ -43407,24 +43447,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7220; + this.state = 7227; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context) ) { case 1: { - this.state = 7219; + this.state = 7226; this.lengthOneDimension(); } break; } - this.state = 7225; + this.state = 7232; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7222; + this.state = 7229; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43436,9 +43476,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7227; + this.state = 7234; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context); } } break; @@ -43446,26 +43486,26 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7228; + this.state = 7235; (localContext as DimensionDataTypeContext)._typeName = this.match(MySqlParser.KW_REAL); - this.state = 7230; + this.state = 7237; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1055, this.context) ) { case 1: { - this.state = 7229; + this.state = 7236; this.lengthTwoDimension(); } break; } - this.state = 7235; + this.state = 7242; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1055, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1056, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7232; + this.state = 7239; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43477,9 +43517,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7237; + this.state = 7244; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1055, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1056, this.context); } } break; @@ -43487,36 +43527,36 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 7238; + this.state = 7245; (localContext as DimensionDataTypeContext)._typeName = this.match(MySqlParser.KW_DOUBLE); - this.state = 7240; + this.state = 7247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 212) { { - this.state = 7239; + this.state = 7246; this.match(MySqlParser.KW_PRECISION); } } - this.state = 7243; + this.state = 7250; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1057, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { case 1: { - this.state = 7242; + this.state = 7249; this.lengthTwoDimension(); } break; } - this.state = 7248; + this.state = 7255; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7245; + this.state = 7252; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43528,9 +43568,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7250; + this.state = 7257; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context); } } break; @@ -43538,7 +43578,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 7251; + this.state = 7258; (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)) { @@ -43548,24 +43588,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7253; + this.state = 7260; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context) ) { case 1: { - this.state = 7252; + this.state = 7259; this.lengthTwoOptionalDimension(); } break; } - this.state = 7258; + this.state = 7265; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7255; + this.state = 7262; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43577,9 +43617,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7260; + this.state = 7267; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context); } } break; @@ -43587,7 +43627,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SimpleDataTypeContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 7261; + this.state = 7268; (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)) { @@ -43603,7 +43643,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 7262; + this.state = 7269; (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)) { @@ -43613,12 +43653,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7264; + this.state = 7271; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { case 1: { - this.state = 7263; + this.state = 7270; this.lengthOneDimension(); } break; @@ -43629,7 +43669,7 @@ export class MySqlParser extends SQLParserBase { localContext = new CollectionDataTypeContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 7266; + this.state = 7273; (localContext as CollectionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 155 || _la === 239)) { @@ -43639,26 +43679,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7267; + this.state = 7274; this.collectionOptions(); - this.state = 7269; + this.state = 7276; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1063, this.context) ) { case 1: { - this.state = 7268; + this.state = 7275; this.match(MySqlParser.KW_BINARY); } break; } - this.state = 7274; + this.state = 7281; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1063, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { case 1: { - this.state = 7271; + this.state = 7278; this.charSet(); - this.state = 7272; + this.state = 7279; this.charsetName(); } break; @@ -43669,7 +43709,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SpatialDataTypeContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 7276; + this.state = 7283; (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))) { @@ -43679,14 +43719,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7279; + this.state = 7286; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1065, this.context) ) { case 1: { - this.state = 7277; + this.state = 7284; this.match(MySqlParser.KW_SRID); - this.state = 7278; + this.state = 7285; this.decimalLiteral(); } break; @@ -43697,48 +43737,48 @@ export class MySqlParser extends SQLParserBase { localContext = new LongVarcharDataTypeContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 7281; + this.state = 7288; (localContext as LongVarcharDataTypeContext)._typeName = this.match(MySqlParser.KW_LONG); - this.state = 7283; + this.state = 7290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 7282; + this.state = 7289; this.match(MySqlParser.KW_VARCHAR); } } - this.state = 7286; + this.state = 7293; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1066, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context) ) { case 1: { - this.state = 7285; + this.state = 7292; this.match(MySqlParser.KW_BINARY); } break; } - this.state = 7291; + this.state = 7298; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { case 1: { - this.state = 7288; + this.state = 7295; this.charSet(); - this.state = 7289; + this.state = 7296; this.charsetName(); } break; } - this.state = 7295; + this.state = 7302; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context) ) { case 1: { - this.state = 7293; + this.state = 7300; this.match(MySqlParser.KW_COLLATE); - this.state = 7294; + this.state = 7301; this.collationName(); } break; @@ -43749,9 +43789,9 @@ export class MySqlParser extends SQLParserBase { localContext = new LongVarbinaryDataTypeContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 7297; + this.state = 7304; this.match(MySqlParser.KW_LONG); - this.state = 7298; + this.state = 7305; this.match(MySqlParser.KW_VARBINARY); } break; @@ -43778,27 +43818,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7301; + this.state = 7308; this.match(MySqlParser.LR_BRACKET); - this.state = 7302; + this.state = 7309; this.match(MySqlParser.STRING_LITERAL); - this.state = 7307; + this.state = 7314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7303; + this.state = 7310; this.match(MySqlParser.COMMA); - this.state = 7304; + this.state = 7311; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7309; + this.state = 7316; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7310; + this.state = 7317; this.match(MySqlParser.RR_BRACKET); } } @@ -43823,13 +43863,13 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7334; + this.state = 7341; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: case MySqlParser.KW_NCHAR: { - this.state = 7312; + this.state = 7319; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 498)) { @@ -43839,12 +43879,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7314; + this.state = 7321; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7313; + this.state = 7320; this.lengthOneDimension(); } } @@ -43853,26 +43893,26 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_CHAR: { - this.state = 7316; + this.state = 7323; localContext._typeName = this.match(MySqlParser.KW_CHAR); - this.state = 7318; + this.state = 7325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7317; + this.state = 7324; this.lengthOneDimension(); } } - this.state = 7323; + this.state = 7330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26 || _la === 224 || _la === 823) { { - this.state = 7320; + this.state = 7327; this.charSet(); - this.state = 7321; + this.state = 7328; this.charsetName(); } } @@ -43886,7 +43926,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DATETIME: case MySqlParser.KW_JSON: { - this.state = 7325; + this.state = 7332; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 202)) & ~0x1F) === 0 && ((1 << (_la - 202)) & 1441857) !== 0) || _la === 442)) { @@ -43901,7 +43941,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DECIMAL: case MySqlParser.KW_DEC: { - this.state = 7326; + this.state = 7333; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 216 || _la === 217)) { @@ -43911,12 +43951,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7328; + this.state = 7335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7327; + this.state = 7334; this.lengthTwoOptionalDimension(); } } @@ -43926,7 +43966,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_UNSIGNED: case MySqlParser.KW_SIGNED: { - this.state = 7330; + this.state = 7337; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43935,12 +43975,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7332; + this.state = 7339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202 || _la === 208) { { - this.state = 7331; + this.state = 7338; _la = this.tokenStream.LA(1); if(!(_la === 202 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -43957,12 +43997,12 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7337; + this.state = 7344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 7336; + this.state = 7343; this.match(MySqlParser.KW_ARRAY); } } @@ -43989,11 +44029,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7339; + this.state = 7346; this.match(MySqlParser.LR_BRACKET); - this.state = 7340; + this.state = 7347; this.decimalLiteral(); - this.state = 7341; + this.state = 7348; this.match(MySqlParser.RR_BRACKET); } } @@ -44017,15 +44057,15 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7343; + this.state = 7350; this.match(MySqlParser.LR_BRACKET); - this.state = 7344; + this.state = 7351; this.decimalLiteral(); - this.state = 7345; + this.state = 7352; this.match(MySqlParser.COMMA); - this.state = 7346; + this.state = 7353; this.decimalLiteral(); - this.state = 7347; + this.state = 7354; this.match(MySqlParser.RR_BRACKET); } } @@ -44050,23 +44090,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7349; + this.state = 7356; this.match(MySqlParser.LR_BRACKET); - this.state = 7350; + this.state = 7357; this.decimalLiteral(); - this.state = 7353; + this.state = 7360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7351; + this.state = 7358; this.match(MySqlParser.COMMA); - this.state = 7352; + this.state = 7359; this.decimalLiteral(); } } - this.state = 7355; + this.state = 7362; this.match(MySqlParser.RR_BRACKET); } } @@ -44091,27 +44131,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7357; + this.state = 7364; this.match(MySqlParser.LR_BRACKET); - this.state = 7358; + this.state = 7365; this.indexColumnName(); - this.state = 7363; + this.state = 7370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7359; + this.state = 7366; this.match(MySqlParser.COMMA); - this.state = 7360; + this.state = 7367; this.indexColumnName(); } } - this.state = 7365; + this.state = 7372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7366; + this.state = 7373; this.match(MySqlParser.RR_BRACKET); } } @@ -44136,21 +44176,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7368; + this.state = 7375; this.expression(0); - this.state = 7373; + this.state = 7380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7369; + this.state = 7376; this.match(MySqlParser.COMMA); - this.state = 7370; + this.state = 7377; this.expression(0); } } - this.state = 7375; + this.state = 7382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44177,7 +44217,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7376; + this.state = 7383; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 682)) { this.errorHandler.recoverInline(this); @@ -44186,21 +44226,21 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7377; + this.state = 7384; this.expressionsWithDefaults(); - this.state = 7382; + this.state = 7389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7378; + this.state = 7385; this.match(MySqlParser.COMMA); - this.state = 7379; + this.state = 7386; this.expressionsWithDefaults(); } } - this.state = 7384; + this.state = 7391; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44227,27 +44267,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7385; + this.state = 7392; this.match(MySqlParser.LR_BRACKET); - this.state = 7386; + this.state = 7393; this.expressionOrDefault(); - this.state = 7391; + this.state = 7398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7387; + this.state = 7394; this.match(MySqlParser.COMMA); - this.state = 7388; + this.state = 7395; this.expressionOrDefault(); } } - this.state = 7393; + this.state = 7400; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7394; + this.state = 7401; this.match(MySqlParser.RR_BRACKET); } } @@ -44269,20 +44309,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new ExpressionOrDefaultContext(this.context, this.state); this.enterRule(localContext, 762, MySqlParser.RULE_expressionOrDefault); try { - this.state = 7398; + this.state = 7405; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1083, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1084, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7396; + this.state = 7403; this.expression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7397; + this.state = 7404; this.match(MySqlParser.KW_DEFAULT); } break; @@ -44309,21 +44349,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7400; + this.state = 7407; this.constant(); - this.state = 7405; + this.state = 7412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7401; + this.state = 7408; this.match(MySqlParser.COMMA); - this.state = 7402; + this.state = 7409; this.constant(); } } - this.state = 7407; + this.state = 7414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44350,21 +44390,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7408; + this.state = 7415; this.match(MySqlParser.STRING_LITERAL); - this.state = 7413; + this.state = 7420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7409; + this.state = 7416; this.match(MySqlParser.COMMA); - this.state = 7410; + this.state = 7417; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7415; + this.state = 7422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44391,21 +44431,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7416; + this.state = 7423; this.match(MySqlParser.LOCAL_ID); - this.state = 7421; + this.state = 7428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7417; + this.state = 7424; this.match(MySqlParser.COMMA); - this.state = 7418; + this.state = 7425; this.match(MySqlParser.LOCAL_ID); } } - this.state = 7423; + this.state = 7430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44429,65 +44469,65 @@ export class MySqlParser extends SQLParserBase { let localContext = new DefaultValueContext(this.context, this.state); this.enterRule(localContext, 770, MySqlParser.RULE_defaultValue); try { - this.state = 7450; + this.state = 7457; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1089, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1090, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7424; + this.state = 7431; this.match(MySqlParser.KW_NULL_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7425; + this.state = 7432; this.match(MySqlParser.KW_CAST); - this.state = 7426; + this.state = 7433; this.match(MySqlParser.LR_BRACKET); - this.state = 7427; + this.state = 7434; this.expression(0); - this.state = 7428; + this.state = 7435; this.match(MySqlParser.KW_AS); - this.state = 7429; + this.state = 7436; this.convertedDataType(); - this.state = 7430; + this.state = 7437; this.match(MySqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7433; + this.state = 7440; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1088, this.context) ) { case 1: { - this.state = 7432; + this.state = 7439; this.unaryOperator(); } break; } - this.state = 7435; + this.state = 7442; this.constant(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7436; + this.state = 7443; this.currentTimestamp(); - this.state = 7440; + this.state = 7447; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1088, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1089, this.context) ) { case 1: { - this.state = 7437; + this.state = 7444; this.match(MySqlParser.KW_ON); - this.state = 7438; + this.state = 7445; this.match(MySqlParser.KW_UPDATE); - this.state = 7439; + this.state = 7446; this.currentTimestamp(); } break; @@ -44497,22 +44537,22 @@ export class MySqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7442; + this.state = 7449; this.match(MySqlParser.LR_BRACKET); - this.state = 7443; + this.state = 7450; this.expression(0); - this.state = 7444; + this.state = 7451; this.match(MySqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7446; + this.state = 7453; this.match(MySqlParser.LR_BRACKET); - this.state = 7447; + this.state = 7454; this.fullId(); - this.state = 7448; + this.state = 7455; this.match(MySqlParser.RR_BRACKET); } break; @@ -44539,14 +44579,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7466; + this.state = 7473; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CURRENT_TIMESTAMP: case MySqlParser.KW_LOCALTIME: case MySqlParser.KW_LOCALTIMESTAMP: { - this.state = 7452; + this.state = 7459; _la = this.tokenStream.LA(1); if(!(((((_la - 287)) & ~0x1F) === 0 && ((1 << (_la - 287)) & 131) !== 0))) { this.errorHandler.recoverInline(this); @@ -44555,24 +44595,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7458; + this.state = 7465; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1091, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1092, this.context) ) { case 1: { - this.state = 7453; + this.state = 7460; this.match(MySqlParser.LR_BRACKET); - this.state = 7455; + this.state = 7462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0)) { { - this.state = 7454; + this.state = 7461; this.decimalLiteral(); } } - this.state = 7457; + this.state = 7464; this.match(MySqlParser.RR_BRACKET); } break; @@ -44581,21 +44621,21 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_NOW: { - this.state = 7460; + this.state = 7467; this.match(MySqlParser.KW_NOW); - this.state = 7461; + this.state = 7468; this.match(MySqlParser.LR_BRACKET); - this.state = 7463; + this.state = 7470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0)) { { - this.state = 7462; + this.state = 7469; this.decimalLiteral(); } } - this.state = 7465; + this.state = 7472; this.match(MySqlParser.RR_BRACKET); } break; @@ -44624,9 +44664,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7468; + this.state = 7475; this.match(MySqlParser.KW_IF); - this.state = 7469; + this.state = 7476; this.match(MySqlParser.KW_EXISTS); } } @@ -44650,11 +44690,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7471; + this.state = 7478; this.match(MySqlParser.KW_IF); - this.state = 7472; + this.state = 7479; this.match(MySqlParser.KW_NOT); - this.state = 7473; + this.state = 7480; this.match(MySqlParser.KW_EXISTS); } } @@ -44678,9 +44718,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7475; + this.state = 7482; this.match(MySqlParser.KW_OR); - this.state = 7476; + this.state = 7483; this.match(MySqlParser.KW_REPLACE); } } @@ -44702,14 +44742,14 @@ export class MySqlParser extends SQLParserBase { let localContext = new FunctionCallContext(this.context, this.state); this.enterRule(localContext, 780, MySqlParser.RULE_functionCall); try { - this.state = 7500; + this.state = 7507; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context) ) { case 1: localContext = new SpecificFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7478; + this.state = 7485; this.specificFunction(); } break; @@ -44717,7 +44757,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AggregateFunctionCallContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7479; + this.state = 7486; this.aggregateWindowedFunction(); } break; @@ -44725,7 +44765,7 @@ export class MySqlParser extends SQLParserBase { localContext = new NonAggregateFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7480; + this.state = 7487; this.nonAggregateWindowedFunction(); } break; @@ -44733,26 +44773,26 @@ export class MySqlParser extends SQLParserBase { localContext = new ScalarFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7481; - this.scalarFunctionName(); this.state = 7488; + this.scalarFunctionName(); + this.state = 7495; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context) ) { case 1: { - this.state = 7482; + this.state = 7489; this.match(MySqlParser.LR_BRACKET); - this.state = 7483; + this.state = 7490; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 7484; + this.state = 7491; this.match(MySqlParser.LR_BRACKET); - this.state = 7485; + this.state = 7492; this.functionArgs(); - this.state = 7486; + this.state = 7493; this.match(MySqlParser.RR_BRACKET); } break; @@ -44763,26 +44803,26 @@ export class MySqlParser extends SQLParserBase { localContext = new UdfFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7490; - this.functionName(); this.state = 7497; + this.functionName(); + this.state = 7504; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context) ) { case 1: { - this.state = 7491; + this.state = 7498; this.match(MySqlParser.LR_BRACKET); - this.state = 7492; + this.state = 7499; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 7493; + this.state = 7500; this.match(MySqlParser.LR_BRACKET); - this.state = 7494; + this.state = 7501; this.functionArgs(); - this.state = 7495; + this.state = 7502; this.match(MySqlParser.RR_BRACKET); } break; @@ -44793,7 +44833,7 @@ export class MySqlParser extends SQLParserBase { localContext = new PasswordFunctionCallContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7499; + this.state = 7506; this.passwordFunctionClause(); } break; @@ -44818,14 +44858,14 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 782, MySqlParser.RULE_specificFunction); let _la: number; try { - this.state = 7681; + this.state = 7688; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1120, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1121, this.context) ) { case 1: localContext = new SimpleFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7502; + this.state = 7509; _la = this.tokenStream.LA(1); if(!(_la === 152 || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 262159) !== 0))) { this.errorHandler.recoverInline(this); @@ -44834,14 +44874,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7505; + this.state = 7512; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1098, this.context) ) { case 1: { - this.state = 7503; + this.state = 7510; this.match(MySqlParser.LR_BRACKET); - this.state = 7504; + this.state = 7511; this.match(MySqlParser.RR_BRACKET); } break; @@ -44852,7 +44892,7 @@ export class MySqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7507; + this.state = 7514; this.currentUserExpression(); } break; @@ -44860,17 +44900,17 @@ export class MySqlParser extends SQLParserBase { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7508; + this.state = 7515; this.match(MySqlParser.KW_CONVERT); - this.state = 7509; + this.state = 7516; this.match(MySqlParser.LR_BRACKET); - this.state = 7510; + this.state = 7517; this.expression(0); - this.state = 7511; + this.state = 7518; (localContext as DataTypeFunctionCallContext)._separator = this.match(MySqlParser.COMMA); - this.state = 7512; + this.state = 7519; this.convertedDataType(); - this.state = 7513; + this.state = 7520; this.match(MySqlParser.RR_BRACKET); } break; @@ -44878,17 +44918,17 @@ export class MySqlParser extends SQLParserBase { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7515; + this.state = 7522; this.match(MySqlParser.KW_CONVERT); - this.state = 7516; + this.state = 7523; this.match(MySqlParser.LR_BRACKET); - this.state = 7517; + this.state = 7524; this.expression(0); - this.state = 7518; + this.state = 7525; this.match(MySqlParser.KW_USING); - this.state = 7519; + this.state = 7526; this.charsetName(); - this.state = 7520; + this.state = 7527; this.match(MySqlParser.RR_BRACKET); } break; @@ -44896,17 +44936,17 @@ export class MySqlParser extends SQLParserBase { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7522; + this.state = 7529; this.match(MySqlParser.KW_CAST); - this.state = 7523; + this.state = 7530; this.match(MySqlParser.LR_BRACKET); - this.state = 7524; + this.state = 7531; this.expression(0); - this.state = 7525; + this.state = 7532; this.match(MySqlParser.KW_AS); - this.state = 7526; + this.state = 7533; this.convertedDataType(); - this.state = 7527; + this.state = 7534; this.match(MySqlParser.RR_BRACKET); } break; @@ -44914,13 +44954,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ValuesFunctionCallContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7529; + this.state = 7536; this.match(MySqlParser.KW_VALUES); - this.state = 7530; + this.state = 7537; this.match(MySqlParser.LR_BRACKET); - this.state = 7531; + this.state = 7538; this.columnName(); - this.state = 7532; + this.state = 7539; this.match(MySqlParser.RR_BRACKET); } break; @@ -44928,35 +44968,35 @@ export class MySqlParser extends SQLParserBase { localContext = new CaseFunctionCallContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 7534; + this.state = 7541; this.match(MySqlParser.KW_CASE); - this.state = 7536; + this.state = 7543; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7535; + this.state = 7542; this.caseFuncAlternative(); } } - this.state = 7538; + this.state = 7545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 7542; + this.state = 7549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 7540; + this.state = 7547; this.match(MySqlParser.KW_ELSE); - this.state = 7541; + this.state = 7548; (localContext as CaseFunctionCallContext)._elseArg = this.functionArg(); } } - this.state = 7544; + this.state = 7551; this.match(MySqlParser.KW_END); } break; @@ -44964,37 +45004,37 @@ export class MySqlParser extends SQLParserBase { localContext = new CaseExpressionFunctionCallContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 7546; + this.state = 7553; this.match(MySqlParser.KW_CASE); - this.state = 7547; + this.state = 7554; this.expression(0); - this.state = 7549; + this.state = 7556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7548; + this.state = 7555; this.caseFuncAlternative(); } } - this.state = 7551; + this.state = 7558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 7555; + this.state = 7562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 7553; + this.state = 7560; this.match(MySqlParser.KW_ELSE); - this.state = 7554; + this.state = 7561; (localContext as CaseExpressionFunctionCallContext)._elseArg = this.functionArg(); } } - this.state = 7557; + this.state = 7564; this.match(MySqlParser.KW_END); } break; @@ -45002,25 +45042,25 @@ export class MySqlParser extends SQLParserBase { localContext = new CharFunctionCallContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 7559; + this.state = 7566; this.match(MySqlParser.KW_CHAR); - this.state = 7560; + this.state = 7567; this.match(MySqlParser.LR_BRACKET); - this.state = 7561; + this.state = 7568; this.functionArgs(); - this.state = 7564; + this.state = 7571; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 7562; + this.state = 7569; this.match(MySqlParser.KW_USING); - this.state = 7563; + this.state = 7570; this.charsetName(); } } - this.state = 7566; + this.state = 7573; this.match(MySqlParser.RR_BRACKET); } break; @@ -45028,45 +45068,45 @@ export class MySqlParser extends SQLParserBase { localContext = new PositionFunctionCallContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 7568; + this.state = 7575; this.match(MySqlParser.KW_POSITION); - this.state = 7569; + this.state = 7576; this.match(MySqlParser.LR_BRACKET); - this.state = 7572; + this.state = 7579; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1103, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1104, this.context) ) { case 1: { - this.state = 7570; + this.state = 7577; (localContext as PositionFunctionCallContext)._positionString = this.stringLiteral(); } break; case 2: { - this.state = 7571; + this.state = 7578; (localContext as PositionFunctionCallContext)._positionExpression = this.expression(0); } break; } - this.state = 7574; + this.state = 7581; this.match(MySqlParser.KW_IN); - this.state = 7577; + this.state = 7584; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1104, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1105, this.context) ) { case 1: { - this.state = 7575; + this.state = 7582; (localContext as PositionFunctionCallContext)._inString = this.stringLiteral(); } break; case 2: { - this.state = 7576; + this.state = 7583; (localContext as PositionFunctionCallContext)._inExpression = this.expression(0); } break; } - this.state = 7579; + this.state = 7586; this.match(MySqlParser.RR_BRACKET); } break; @@ -45074,7 +45114,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SubstrFunctionCallContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 7581; + this.state = 7588; _la = this.tokenStream.LA(1); if(!(_la === 297 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -45083,61 +45123,61 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7582; + this.state = 7589; this.match(MySqlParser.LR_BRACKET); - this.state = 7585; + this.state = 7592; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1105, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { case 1: { - this.state = 7583; + this.state = 7590; (localContext as SubstrFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7584; + this.state = 7591; (localContext as SubstrFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7587; + this.state = 7594; this.match(MySqlParser.KW_FROM); - this.state = 7590; + this.state = 7597; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1107, this.context) ) { case 1: { - this.state = 7588; + this.state = 7595; (localContext as SubstrFunctionCallContext)._fromDecimal = this.decimalLiteral(); } break; case 2: { - this.state = 7589; + this.state = 7596; (localContext as SubstrFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7597; + this.state = 7604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 7592; + this.state = 7599; this.match(MySqlParser.KW_FOR); - this.state = 7595; + this.state = 7602; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1107, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1108, this.context) ) { case 1: { - this.state = 7593; + this.state = 7600; (localContext as SubstrFunctionCallContext)._forDecimal = this.decimalLiteral(); } break; case 2: { - this.state = 7594; + this.state = 7601; (localContext as SubstrFunctionCallContext)._forExpression = this.expression(0); } break; @@ -45145,7 +45185,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 7599; + this.state = 7606; this.match(MySqlParser.RR_BRACKET); } break; @@ -45153,11 +45193,11 @@ export class MySqlParser extends SQLParserBase { localContext = new TrimFunctionCallContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 7601; + this.state = 7608; this.match(MySqlParser.KW_TRIM); - this.state = 7602; + this.state = 7609; this.match(MySqlParser.LR_BRACKET); - this.state = 7603; + this.state = 7610; (localContext as TrimFunctionCallContext)._positioinForm = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 96 || _la === 177)) { @@ -45167,41 +45207,41 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7606; + this.state = 7613; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1109, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1110, this.context) ) { case 1: { - this.state = 7604; + this.state = 7611; (localContext as TrimFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7605; + this.state = 7612; (localContext as TrimFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7608; + this.state = 7615; this.match(MySqlParser.KW_FROM); - this.state = 7611; + this.state = 7618; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1110, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1111, this.context) ) { case 1: { - this.state = 7609; + this.state = 7616; (localContext as TrimFunctionCallContext)._fromString = this.stringLiteral(); } break; case 2: { - this.state = 7610; + this.state = 7617; (localContext as TrimFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7613; + this.state = 7620; this.match(MySqlParser.RR_BRACKET); } break; @@ -45209,45 +45249,45 @@ export class MySqlParser extends SQLParserBase { localContext = new TrimFunctionCallContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 7615; + this.state = 7622; this.match(MySqlParser.KW_TRIM); - this.state = 7616; + this.state = 7623; this.match(MySqlParser.LR_BRACKET); - this.state = 7619; + this.state = 7626; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1111, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context) ) { case 1: { - this.state = 7617; + this.state = 7624; (localContext as TrimFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7618; + this.state = 7625; (localContext as TrimFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7621; + this.state = 7628; this.match(MySqlParser.KW_FROM); - this.state = 7624; + this.state = 7631; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1113, this.context) ) { case 1: { - this.state = 7622; + this.state = 7629; (localContext as TrimFunctionCallContext)._fromString = this.stringLiteral(); } break; case 2: { - this.state = 7623; + this.state = 7630; (localContext as TrimFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7626; + this.state = 7633; this.match(MySqlParser.RR_BRACKET); } break; @@ -45255,34 +45295,34 @@ export class MySqlParser extends SQLParserBase { localContext = new WeightFunctionCallContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 7628; + this.state = 7635; this.match(MySqlParser.KW_WEIGHT_STRING); - this.state = 7629; + this.state = 7636; this.match(MySqlParser.LR_BRACKET); - this.state = 7632; + this.state = 7639; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1113, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context) ) { case 1: { - this.state = 7630; + this.state = 7637; this.stringLiteral(); } break; case 2: { - this.state = 7631; + this.state = 7638; this.expression(0); } break; } - this.state = 7640; + this.state = 7647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 7634; + this.state = 7641; this.match(MySqlParser.KW_AS); - this.state = 7635; + this.state = 7642; (localContext as WeightFunctionCallContext)._stringFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 224 || _la === 228)) { @@ -45292,26 +45332,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7636; + this.state = 7643; this.match(MySqlParser.LR_BRACKET); - this.state = 7637; + this.state = 7644; this.decimalLiteral(); - this.state = 7638; + this.state = 7645; this.match(MySqlParser.RR_BRACKET); } } - this.state = 7643; + this.state = 7650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 448) { { - this.state = 7642; + this.state = 7649; this.levelsInWeightString(); } } - this.state = 7645; + this.state = 7652; this.match(MySqlParser.RR_BRACKET); } break; @@ -45319,31 +45359,31 @@ export class MySqlParser extends SQLParserBase { localContext = new ExtractFunctionCallContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 7647; + this.state = 7654; this.match(MySqlParser.KW_EXTRACT); - this.state = 7648; + this.state = 7655; this.match(MySqlParser.LR_BRACKET); - this.state = 7649; + this.state = 7656; this.intervalType(); - this.state = 7650; + this.state = 7657; this.match(MySqlParser.KW_FROM); - this.state = 7653; + this.state = 7660; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1116, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1117, this.context) ) { case 1: { - this.state = 7651; + this.state = 7658; (localContext as ExtractFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7652; + this.state = 7659; (localContext as ExtractFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7655; + this.state = 7662; this.match(MySqlParser.RR_BRACKET); } break; @@ -45351,11 +45391,11 @@ export class MySqlParser extends SQLParserBase { localContext = new GetFormatFunctionCallContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 7657; + this.state = 7664; this.match(MySqlParser.KW_GET_FORMAT); - this.state = 7658; + this.state = 7665; this.match(MySqlParser.LR_BRACKET); - this.state = 7659; + this.state = 7666; (localContext as GetFormatFunctionCallContext)._datetimeFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 11) !== 0))) { @@ -45365,11 +45405,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7660; + this.state = 7667; this.match(MySqlParser.COMMA); - this.state = 7661; + this.state = 7668; this.stringLiteral(); - this.state = 7662; + this.state = 7669; this.match(MySqlParser.RR_BRACKET); } break; @@ -45377,49 +45417,49 @@ export class MySqlParser extends SQLParserBase { localContext = new JsonValueFunctionCallContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 7664; + this.state = 7671; this.match(MySqlParser.KW_JSON_VALUE); - this.state = 7665; + this.state = 7672; this.match(MySqlParser.LR_BRACKET); - this.state = 7666; + this.state = 7673; this.expression(0); - this.state = 7667; + this.state = 7674; this.match(MySqlParser.COMMA); - this.state = 7668; + this.state = 7675; this.expression(0); - this.state = 7671; + this.state = 7678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 579) { { - this.state = 7669; + this.state = 7676; this.match(MySqlParser.KW_RETURNING); - this.state = 7670; + this.state = 7677; this.convertedDataType(); } } - this.state = 7674; + this.state = 7681; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1118, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1119, this.context) ) { case 1: { - this.state = 7673; + this.state = 7680; this.jsonOnEmpty(); } break; } - this.state = 7677; + this.state = 7684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 116 || _la === 382) { { - this.state = 7676; + this.state = 7683; this.jsonOnError(); } } - this.state = 7679; + this.state = 7686; this.match(MySqlParser.RR_BRACKET); } break; @@ -45445,13 +45485,13 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7683; + this.state = 7690; this.match(MySqlParser.KW_WHEN); - this.state = 7684; + this.state = 7691; localContext._condition = this.functionArg(); - this.state = 7685; + this.state = 7692; this.match(MySqlParser.KW_THEN); - this.state = 7686; + this.state = 7693; localContext._consequent = this.functionArg(); } } @@ -45474,30 +45514,30 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 786, MySqlParser.RULE_levelsInWeightString); let _la: number; try { - this.state = 7702; + this.state = 7709; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1122, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1123, this.context) ) { case 1: localContext = new LevelWeightListContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7688; + this.state = 7695; this.match(MySqlParser.KW_LEVEL); - this.state = 7689; + this.state = 7696; this.levelInWeightListElement(); - this.state = 7694; + this.state = 7701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7690; + this.state = 7697; this.match(MySqlParser.COMMA); - this.state = 7691; + this.state = 7698; this.levelInWeightListElement(); } } - this.state = 7696; + this.state = 7703; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -45507,13 +45547,13 @@ export class MySqlParser extends SQLParserBase { localContext = new LevelWeightRangeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7697; + this.state = 7704; this.match(MySqlParser.KW_LEVEL); - this.state = 7698; + this.state = 7705; (localContext as LevelWeightRangeContext)._firstLevel = this.decimalLiteral(); - this.state = 7699; + this.state = 7706; this.match(MySqlParser.MINUS); - this.state = 7700; + this.state = 7707; (localContext as LevelWeightRangeContext)._lastLevel = this.decimalLiteral(); } break; @@ -45540,14 +45580,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7704; + this.state = 7711; this.decimalLiteral(); - this.state = 7706; + this.state = 7713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || _la === 45 || _la === 830) { { - this.state = 7705; + this.state = 7712; localContext._orderType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45 || _la === 830)) { @@ -45581,7 +45621,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 790, MySqlParser.RULE_aggregateWindowedFunction); let _la: number; try { - this.state = 7767; + this.state = 7774; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AVG: @@ -45590,7 +45630,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUM: this.enterOuterAlt(localContext, 1); { - this.state = 7708; + this.state = 7715; _la = this.tokenStream.LA(1); if(!(((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 8400897) !== 0))) { this.errorHandler.recoverInline(this); @@ -45599,14 +45639,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7709; + this.state = 7716; this.match(MySqlParser.LR_BRACKET); - this.state = 7711; + this.state = 7718; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1124, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1125, this.context) ) { case 1: { - this.state = 7710; + this.state = 7717; localContext._aggregator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -45619,16 +45659,16 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 7713; + this.state = 7720; this.functionArg(); - this.state = 7714; + this.state = 7721; this.match(MySqlParser.RR_BRACKET); - this.state = 7716; + this.state = 7723; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1125, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context) ) { case 1: { - this.state = 7715; + this.state = 7722; this.overClause(); } break; @@ -45638,52 +45678,52 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_COUNT: this.enterOuterAlt(localContext, 2); { - this.state = 7718; + this.state = 7725; this.match(MySqlParser.KW_COUNT); - this.state = 7719; + this.state = 7726; this.match(MySqlParser.LR_BRACKET); - this.state = 7727; + this.state = 7734; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1127, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1128, this.context) ) { case 1: { - this.state = 7720; + this.state = 7727; localContext._starArg = this.match(MySqlParser.STAR); } break; case 2: { - this.state = 7722; + this.state = 7729; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1127, this.context) ) { case 1: { - this.state = 7721; + this.state = 7728; localContext._aggregator = this.match(MySqlParser.KW_ALL); } break; } - this.state = 7724; + this.state = 7731; this.functionArg(); } break; case 3: { - this.state = 7725; + this.state = 7732; localContext._aggregator = this.match(MySqlParser.KW_DISTINCT); - this.state = 7726; + this.state = 7733; this.functionArgs(); } break; } - this.state = 7729; + this.state = 7736; this.match(MySqlParser.RR_BRACKET); - this.state = 7731; + this.state = 7738; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1128, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1129, this.context) ) { case 1: { - this.state = 7730; + this.state = 7737; this.overClause(); } break; @@ -45702,7 +45742,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VARIANCE: this.enterOuterAlt(localContext, 3); { - this.state = 7733; + this.state = 7740; _la = this.tokenStream.LA(1); if(!(((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 62652423) !== 0))) { this.errorHandler.recoverInline(this); @@ -45711,28 +45751,28 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7734; + this.state = 7741; this.match(MySqlParser.LR_BRACKET); - this.state = 7736; + this.state = 7743; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1129, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1130, this.context) ) { case 1: { - this.state = 7735; + this.state = 7742; localContext._aggregator = this.match(MySqlParser.KW_ALL); } break; } - this.state = 7738; + this.state = 7745; this.functionArg(); - this.state = 7739; + this.state = 7746; this.match(MySqlParser.RR_BRACKET); - this.state = 7741; + this.state = 7748; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1130, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1131, this.context) ) { case 1: { - this.state = 7740; + this.state = 7747; this.overClause(); } break; @@ -45742,65 +45782,65 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_GROUP_CONCAT: this.enterOuterAlt(localContext, 4); { - this.state = 7743; + this.state = 7750; this.match(MySqlParser.KW_GROUP_CONCAT); - this.state = 7744; + this.state = 7751; this.match(MySqlParser.LR_BRACKET); - this.state = 7746; + this.state = 7753; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1131, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1132, this.context) ) { case 1: { - this.state = 7745; + this.state = 7752; localContext._aggregator = this.match(MySqlParser.KW_DISTINCT); } break; } - this.state = 7748; + this.state = 7755; this.functionArgs(); - this.state = 7759; + this.state = 7766; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 7749; + this.state = 7756; this.match(MySqlParser.KW_ORDER); - this.state = 7750; + this.state = 7757; this.match(MySqlParser.KW_BY); - this.state = 7751; + this.state = 7758; this.orderByExpression(); - this.state = 7756; + this.state = 7763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7752; + this.state = 7759; this.match(MySqlParser.COMMA); - this.state = 7753; + this.state = 7760; this.orderByExpression(); } } - this.state = 7758; + this.state = 7765; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 7763; + this.state = 7770; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 156) { { - this.state = 7761; + this.state = 7768; this.match(MySqlParser.KW_SEPARATOR); - this.state = 7762; + this.state = 7769; localContext._separator = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7765; + this.state = 7772; this.match(MySqlParser.RR_BRACKET); } break; @@ -45827,14 +45867,14 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 792, MySqlParser.RULE_nonAggregateWindowedFunction); let _la: number; try { - this.state = 7807; + this.state = 7814; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LAG: case MySqlParser.KW_LEAD: this.enterOuterAlt(localContext, 1); { - this.state = 7769; + this.state = 7776; _la = this.tokenStream.LA(1); if(!(_la === 267 || _la === 269)) { this.errorHandler.recoverInline(this); @@ -45843,37 +45883,37 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7770; + this.state = 7777; this.match(MySqlParser.LR_BRACKET); - this.state = 7771; + this.state = 7778; this.expression(0); - this.state = 7774; + this.state = 7781; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1136, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1137, this.context) ) { case 1: { - this.state = 7772; + this.state = 7779; this.match(MySqlParser.COMMA); - this.state = 7773; + this.state = 7780; this.decimalLiteral(); } break; } - this.state = 7778; + this.state = 7785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7776; + this.state = 7783; this.match(MySqlParser.COMMA); - this.state = 7777; + this.state = 7784; this.decimalLiteral(); } } - this.state = 7780; + this.state = 7787; this.match(MySqlParser.RR_BRACKET); - this.state = 7781; + this.state = 7788; this.overClause(); } break; @@ -45881,7 +45921,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_LAST_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 7783; + this.state = 7790; _la = this.tokenStream.LA(1); if(!(_la === 265 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -45890,13 +45930,13 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7784; + this.state = 7791; this.match(MySqlParser.LR_BRACKET); - this.state = 7785; + this.state = 7792; this.expression(0); - this.state = 7786; + this.state = 7793; this.match(MySqlParser.RR_BRACKET); - this.state = 7787; + this.state = 7794; this.overClause(); } break; @@ -45907,7 +45947,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ROW_NUMBER: this.enterOuterAlt(localContext, 3); { - this.state = 7789; + this.state = 7796; _la = this.tokenStream.LA(1); if(!(((((_la - 263)) & ~0x1F) === 0 && ((1 << (_la - 263)) & 14339) !== 0))) { this.errorHandler.recoverInline(this); @@ -45916,45 +45956,45 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7790; + this.state = 7797; this.match(MySqlParser.LR_BRACKET); - this.state = 7791; + this.state = 7798; this.match(MySqlParser.RR_BRACKET); - this.state = 7792; + this.state = 7799; this.overClause(); } break; case MySqlParser.KW_NTH_VALUE: this.enterOuterAlt(localContext, 4); { - this.state = 7793; + this.state = 7800; this.match(MySqlParser.KW_NTH_VALUE); - this.state = 7794; + this.state = 7801; this.match(MySqlParser.LR_BRACKET); - this.state = 7795; + this.state = 7802; this.expression(0); - this.state = 7796; + this.state = 7803; this.match(MySqlParser.COMMA); - this.state = 7797; + this.state = 7804; this.decimalLiteral(); - this.state = 7798; + this.state = 7805; this.match(MySqlParser.RR_BRACKET); - this.state = 7799; + this.state = 7806; this.overClause(); } break; case MySqlParser.KW_NTILE: this.enterOuterAlt(localContext, 5); { - this.state = 7801; + this.state = 7808; this.match(MySqlParser.KW_NTILE); - this.state = 7802; + this.state = 7809; this.match(MySqlParser.LR_BRACKET); - this.state = 7803; + this.state = 7810; this.decimalLiteral(); - this.state = 7804; + this.state = 7811; this.match(MySqlParser.RR_BRACKET); - this.state = 7805; + this.state = 7812; this.overClause(); } break; @@ -45982,18 +46022,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7809; + this.state = 7816; this.match(MySqlParser.KW_OVER); - this.state = 7815; + this.state = 7822; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 7810; + this.state = 7817; this.match(MySqlParser.LR_BRACKET); - this.state = 7811; + this.state = 7818; this.windowSpec(); - this.state = 7812; + this.state = 7819; this.match(MySqlParser.RR_BRACKET); } break; @@ -46547,7 +46587,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 7814; + this.state = 7821; this.windowName(); } break; @@ -46577,42 +46617,42 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7818; + this.state = 7825; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1140, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context) ) { case 1: { - this.state = 7817; + this.state = 7824; this.windowName(); } break; } - this.state = 7821; + this.state = 7828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 7820; + this.state = 7827; this.partitionClause(); } } - this.state = 7824; + this.state = 7831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 7823; + this.state = 7830; this.orderByClause(); } } - this.state = 7827; + this.state = 7834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134 || _la === 587) { { - this.state = 7826; + this.state = 7833; this.frameClause(); } } @@ -46639,7 +46679,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7829; + this.state = 7836; this.uid(); } } @@ -46663,9 +46703,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7831; + this.state = 7838; this.frameUnits(); - this.state = 7832; + this.state = 7839; this.frameExtent(); } } @@ -46690,7 +46730,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7834; + this.state = 7841; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 587)) { this.errorHandler.recoverInline(this); @@ -46719,20 +46759,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new FrameExtentContext(this.context, this.state); this.enterRule(localContext, 804, MySqlParser.RULE_frameExtent); try { - this.state = 7838; + this.state = 7845; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1144, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7836; + this.state = 7843; this.frameRange(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7837; + this.state = 7844; this.frameBetween(); } break; @@ -46758,13 +46798,13 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7840; + this.state = 7847; this.match(MySqlParser.KW_BETWEEN); - this.state = 7841; + this.state = 7848; this.frameRange(); - this.state = 7842; + this.state = 7849; this.match(MySqlParser.KW_AND); - this.state = 7843; + this.state = 7850; this.frameRange(); } } @@ -46787,24 +46827,24 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 808, MySqlParser.RULE_frameRange); let _la: number; try { - this.state = 7852; + this.state = 7859; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7845; + this.state = 7852; this.match(MySqlParser.KW_CURRENT); - this.state = 7846; + this.state = 7853; this.match(MySqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7847; + this.state = 7854; this.match(MySqlParser.KW_UNBOUNDED); - this.state = 7848; + this.state = 7855; _la = this.tokenStream.LA(1); if(!(_la === 405 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -46818,9 +46858,9 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7849; + this.state = 7856; this.expression(0); - this.state = 7850; + this.state = 7857; _la = this.tokenStream.LA(1); if(!(_la === 405 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -46854,25 +46894,25 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7854; + this.state = 7861; this.match(MySqlParser.KW_PARTITION); - this.state = 7855; + this.state = 7862; this.match(MySqlParser.KW_BY); - this.state = 7856; + this.state = 7863; this.expression(0); - this.state = 7861; + this.state = 7868; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7857; + this.state = 7864; this.match(MySqlParser.COMMA); - this.state = 7858; + this.state = 7865; this.expression(0); } } - this.state = 7863; + this.state = 7870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46896,7 +46936,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new ScalarFunctionNameContext(this.context, this.state); this.enterRule(localContext, 812, MySqlParser.RULE_scalarFunctionName); try { - this.state = 7888; + this.state = 7895; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DATABASE: @@ -46953,168 +46993,168 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.MOD: this.enterOuterAlt(localContext, 1); { - this.state = 7864; + this.state = 7871; this.functionNameBase(); } break; case MySqlParser.KW_ASCII: this.enterOuterAlt(localContext, 2); { - this.state = 7865; + this.state = 7872; this.match(MySqlParser.KW_ASCII); } break; case MySqlParser.KW_CURDATE: this.enterOuterAlt(localContext, 3); { - this.state = 7866; + this.state = 7873; this.match(MySqlParser.KW_CURDATE); } break; case MySqlParser.KW_CURRENT_DATE: this.enterOuterAlt(localContext, 4); { - this.state = 7867; + this.state = 7874; this.match(MySqlParser.KW_CURRENT_DATE); } break; case MySqlParser.KW_CURRENT_TIME: this.enterOuterAlt(localContext, 5); { - this.state = 7868; + this.state = 7875; this.match(MySqlParser.KW_CURRENT_TIME); } break; case MySqlParser.KW_CURRENT_TIMESTAMP: this.enterOuterAlt(localContext, 6); { - this.state = 7869; + this.state = 7876; this.match(MySqlParser.KW_CURRENT_TIMESTAMP); } break; case MySqlParser.KW_CURTIME: this.enterOuterAlt(localContext, 7); { - this.state = 7870; + this.state = 7877; this.match(MySqlParser.KW_CURTIME); } break; case MySqlParser.KW_DATE_ADD: this.enterOuterAlt(localContext, 8); { - this.state = 7871; + this.state = 7878; this.match(MySqlParser.KW_DATE_ADD); } break; case MySqlParser.KW_DATE_SUB: this.enterOuterAlt(localContext, 9); { - this.state = 7872; + this.state = 7879; this.match(MySqlParser.KW_DATE_SUB); } break; case MySqlParser.KW_IF: this.enterOuterAlt(localContext, 10); { - this.state = 7873; + this.state = 7880; this.match(MySqlParser.KW_IF); } break; case MySqlParser.KW_INSERT: this.enterOuterAlt(localContext, 11); { - this.state = 7874; + this.state = 7881; this.match(MySqlParser.KW_INSERT); } break; case MySqlParser.KW_LOCALTIME: this.enterOuterAlt(localContext, 12); { - this.state = 7875; + this.state = 7882; this.match(MySqlParser.KW_LOCALTIME); } break; case MySqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 13); { - this.state = 7876; + this.state = 7883; this.match(MySqlParser.KW_LOCALTIMESTAMP); } break; case MySqlParser.KW_MID: this.enterOuterAlt(localContext, 14); { - this.state = 7877; + this.state = 7884; this.match(MySqlParser.KW_MID); } break; case MySqlParser.KW_NOW: this.enterOuterAlt(localContext, 15); { - this.state = 7878; + this.state = 7885; this.match(MySqlParser.KW_NOW); } break; case MySqlParser.KW_REPEAT: this.enterOuterAlt(localContext, 16); { - this.state = 7879; + this.state = 7886; this.match(MySqlParser.KW_REPEAT); } break; case MySqlParser.KW_REPLACE: this.enterOuterAlt(localContext, 17); { - this.state = 7880; + this.state = 7887; this.match(MySqlParser.KW_REPLACE); } break; case MySqlParser.KW_SUBSTR: this.enterOuterAlt(localContext, 18); { - this.state = 7881; + this.state = 7888; this.match(MySqlParser.KW_SUBSTR); } break; case MySqlParser.KW_SUBSTRING: this.enterOuterAlt(localContext, 19); { - this.state = 7882; + this.state = 7889; this.match(MySqlParser.KW_SUBSTRING); } break; case MySqlParser.KW_SYSDATE: this.enterOuterAlt(localContext, 20); { - this.state = 7883; + this.state = 7890; this.match(MySqlParser.KW_SYSDATE); } break; case MySqlParser.KW_TRIM: this.enterOuterAlt(localContext, 21); { - this.state = 7884; + this.state = 7891; this.match(MySqlParser.KW_TRIM); } break; case MySqlParser.KW_UTC_DATE: this.enterOuterAlt(localContext, 22); { - this.state = 7885; + this.state = 7892; this.match(MySqlParser.KW_UTC_DATE); } break; case MySqlParser.KW_UTC_TIME: this.enterOuterAlt(localContext, 23); { - this.state = 7886; + this.state = 7893; this.match(MySqlParser.KW_UTC_TIME); } break; case MySqlParser.KW_UTC_TIMESTAMP: this.enterOuterAlt(localContext, 24); { - this.state = 7887; + this.state = 7894; this.match(MySqlParser.KW_UTC_TIMESTAMP); } break; @@ -47143,7 +47183,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7890; + this.state = 7897; _la = this.tokenStream.LA(1); if(!(_la === 512 || _la === 529)) { this.errorHandler.recoverInline(this); @@ -47152,11 +47192,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7891; + this.state = 7898; this.match(MySqlParser.LR_BRACKET); - this.state = 7892; + this.state = 7899; this.functionArg(); - this.state = 7893; + this.state = 7900; this.match(MySqlParser.RR_BRACKET); } } @@ -47181,21 +47221,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7895; + this.state = 7902; this.functionArg(); - this.state = 7900; + this.state = 7907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7896; + this.state = 7903; this.match(MySqlParser.COMMA); - this.state = 7897; + this.state = 7904; this.functionArg(); } } - this.state = 7902; + this.state = 7909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47219,27 +47259,27 @@ export class MySqlParser extends SQLParserBase { let localContext = new FunctionArgContext(this.context, this.state); this.enterRule(localContext, 818, MySqlParser.RULE_functionArg); try { - this.state = 7906; + this.state = 7913; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1149, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1150, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7903; + this.state = 7910; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7904; + this.state = 7911; this.functionCall(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7905; + this.state = 7912; this.expression(0); } break; @@ -47278,16 +47318,16 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7919; + this.state = 7926; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1151, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1152, this.context) ) { case 1: { localContext = new NotExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7909; + this.state = 7916; (localContext as NotExpressionContext)._notOperator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 860)) { @@ -47297,7 +47337,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7910; + this.state = 7917; this.expression(4); } break; @@ -47306,21 +47346,21 @@ export class MySqlParser extends SQLParserBase { localContext = new IsExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7911; + this.state = 7918; this.predicate(0); - this.state = 7912; + this.state = 7919; this.match(MySqlParser.KW_IS); - this.state = 7914; + this.state = 7921; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7913; + this.state = 7920; this.match(MySqlParser.KW_NOT); } } - this.state = 7916; + this.state = 7923; (localContext as IsExpressionContext)._testValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 63 || _la === 179 || _la === 674)) { @@ -47337,15 +47377,15 @@ export class MySqlParser extends SQLParserBase { localContext = new PredicateExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7918; + this.state = 7925; this.predicate(0); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7927; + this.state = 7934; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1152, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1153, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -47356,20 +47396,20 @@ export class MySqlParser extends SQLParserBase { { localContext = new LogicalExpressionContext(new ExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expression); - this.state = 7921; + this.state = 7928; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7922; + this.state = 7929; this.logicalOperator(); - this.state = 7923; + this.state = 7930; this.expression(4); } } } - this.state = 7929; + this.state = 7936; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1152, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1153, this.context); } } } @@ -47411,13 +47451,13 @@ export class MySqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 7931; + this.state = 7938; this.expressionAtom(0); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7996; + this.state = 8003; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1161, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1162, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -47425,34 +47465,34 @@ export class MySqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 7994; + this.state = 8001; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1160, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1161, this.context) ) { case 1: { localContext = new BetweenPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7933; + this.state = 7940; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 7935; + this.state = 7942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7934; + this.state = 7941; this.match(MySqlParser.KW_NOT); } } - this.state = 7937; + this.state = 7944; this.match(MySqlParser.KW_BETWEEN); - this.state = 7938; + this.state = 7945; this.predicate(0); - this.state = 7939; + this.state = 7946; this.match(MySqlParser.KW_AND); - this.state = 7940; + this.state = 7947; this.predicate(7); } break; @@ -47460,15 +47500,15 @@ export class MySqlParser extends SQLParserBase { { localContext = new SoundsLikePredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7942; + this.state = 7949; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 7943; + this.state = 7950; this.match(MySqlParser.KW_SOUNDS); - this.state = 7944; + this.state = 7951; this.match(MySqlParser.KW_LIKE); - this.state = 7945; + this.state = 7952; this.predicate(6); } break; @@ -47476,21 +47516,21 @@ export class MySqlParser extends SQLParserBase { { localContext = new RegexpPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7946; + this.state = 7953; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7948; + this.state = 7955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7947; + this.state = 7954; this.match(MySqlParser.KW_NOT); } } - this.state = 7950; + this.state = 7957; (localContext as RegexpPredicateContext)._regex = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 151)) { @@ -47500,7 +47540,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7951; + this.state = 7958; this.predicate(4); } break; @@ -47508,41 +47548,41 @@ export class MySqlParser extends SQLParserBase { { localContext = new InPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7952; + this.state = 7959; if (!(this.precpred(this.context, 9))) { throw this.createFailedPredicateException("this.precpred(this.context, 9)"); } - this.state = 7954; + this.state = 7961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7953; + this.state = 7960; this.match(MySqlParser.KW_NOT); } } - this.state = 7956; + this.state = 7963; this.match(MySqlParser.KW_IN); - this.state = 7957; + this.state = 7964; this.match(MySqlParser.LR_BRACKET); - this.state = 7960; + this.state = 7967; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1156, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1157, this.context) ) { case 1: { - this.state = 7958; + this.state = 7965; this.selectStatement(); } break; case 2: { - this.state = 7959; + this.state = 7966; this.expressions(); } break; } - this.state = 7962; + this.state = 7969; this.match(MySqlParser.RR_BRACKET); } break; @@ -47550,13 +47590,13 @@ export class MySqlParser extends SQLParserBase { { localContext = new IsNullPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7964; + this.state = 7971; if (!(this.precpred(this.context, 8))) { throw this.createFailedPredicateException("this.precpred(this.context, 8)"); } - this.state = 7965; + this.state = 7972; this.match(MySqlParser.KW_IS); - this.state = 7966; + this.state = 7973; this.nullNotNull(); } break; @@ -47564,18 +47604,18 @@ export class MySqlParser extends SQLParserBase { { localContext = new BinaryComparisonPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7967; + this.state = 7974; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 7968; - this.comparisonOperator(); this.state = 7975; + this.comparisonOperator(); + this.state = 7982; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1157, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1158, this.context) ) { case 1: { - this.state = 7969; + this.state = 7976; (localContext as BinaryComparisonPredicateContext)._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 309 || _la === 602)) { @@ -47585,17 +47625,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7970; + this.state = 7977; this.match(MySqlParser.LR_BRACKET); - this.state = 7971; + this.state = 7978; (localContext as BinaryComparisonPredicateContext)._subQuery = this.selectStatement(); - this.state = 7972; + this.state = 7979; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 7974; + this.state = 7981; (localContext as BinaryComparisonPredicateContext)._right = this.predicate(0); } break; @@ -47606,32 +47646,32 @@ export class MySqlParser extends SQLParserBase { { localContext = new LikePredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7977; + this.state = 7984; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 7979; + this.state = 7986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7978; + this.state = 7985; this.match(MySqlParser.KW_NOT); } } - this.state = 7981; + this.state = 7988; this.match(MySqlParser.KW_LIKE); - this.state = 7982; + this.state = 7989; this.predicate(0); - this.state = 7985; + this.state = 7992; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1159, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1160, this.context) ) { case 1: { - this.state = 7983; + this.state = 7990; this.match(MySqlParser.KW_ESCAPE); - this.state = 7984; + this.state = 7991; this.match(MySqlParser.STRING_LITERAL); } break; @@ -47642,28 +47682,28 @@ export class MySqlParser extends SQLParserBase { { localContext = new JsonMemberOfPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7987; + this.state = 7994; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 7988; + this.state = 7995; this.match(MySqlParser.KW_MEMBER); - this.state = 7989; + this.state = 7996; this.match(MySqlParser.KW_OF); - this.state = 7990; + this.state = 7997; this.match(MySqlParser.LR_BRACKET); - this.state = 7991; + this.state = 7998; this.predicate(0); - this.state = 7992; + this.state = 7999; this.match(MySqlParser.RR_BRACKET); } break; } } } - this.state = 7998; + this.state = 8005; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1161, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1162, this.context); } } } @@ -47700,16 +47740,16 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8047; + this.state = 8054; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1164, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1165, this.context) ) { case 1: { localContext = new ConstantExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8000; + this.state = 8007; this.constant(); } break; @@ -47718,7 +47758,7 @@ export class MySqlParser extends SQLParserBase { localContext = new FunctionCallExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8001; + this.state = 8008; this.functionCall(); } break; @@ -47727,7 +47767,7 @@ export class MySqlParser extends SQLParserBase { localContext = new MysqlVariableExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8002; + this.state = 8009; this.mysqlVariable(); } break; @@ -47736,9 +47776,9 @@ export class MySqlParser extends SQLParserBase { localContext = new UnaryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8003; + this.state = 8010; this.unaryOperator(); - this.state = 8004; + this.state = 8011; this.expressionAtom(12); } break; @@ -47747,9 +47787,9 @@ export class MySqlParser extends SQLParserBase { localContext = new BinaryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8006; + this.state = 8013; this.match(MySqlParser.KW_BINARY); - this.state = 8007; + this.state = 8014; this.expressionAtom(11); } break; @@ -47758,11 +47798,11 @@ export class MySqlParser extends SQLParserBase { localContext = new VariableAssignExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8008; + this.state = 8015; this.match(MySqlParser.LOCAL_ID); - this.state = 8009; + this.state = 8016; this.match(MySqlParser.VAR_ASSIGN); - this.state = 8010; + this.state = 8017; this.expressionAtom(10); } break; @@ -47771,27 +47811,27 @@ export class MySqlParser extends SQLParserBase { localContext = new NestedExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8011; + this.state = 8018; this.match(MySqlParser.LR_BRACKET); - this.state = 8012; + this.state = 8019; this.expression(0); - this.state = 8017; + this.state = 8024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 8013; + this.state = 8020; this.match(MySqlParser.COMMA); - this.state = 8014; + this.state = 8021; this.expression(0); } } - this.state = 8019; + this.state = 8026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8020; + this.state = 8027; this.match(MySqlParser.RR_BRACKET); } break; @@ -47800,29 +47840,29 @@ export class MySqlParser extends SQLParserBase { localContext = new NestedRowExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8022; + this.state = 8029; this.match(MySqlParser.KW_ROW); - this.state = 8023; + this.state = 8030; this.match(MySqlParser.LR_BRACKET); - this.state = 8024; + this.state = 8031; this.expression(0); - this.state = 8027; + this.state = 8034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8025; + this.state = 8032; this.match(MySqlParser.COMMA); - this.state = 8026; + this.state = 8033; this.expression(0); } } - this.state = 8029; + this.state = 8036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 868); - this.state = 8031; + this.state = 8038; this.match(MySqlParser.RR_BRACKET); } break; @@ -47831,13 +47871,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ExistsExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8033; + this.state = 8040; this.match(MySqlParser.KW_EXISTS); - this.state = 8034; + this.state = 8041; this.match(MySqlParser.LR_BRACKET); - this.state = 8035; + this.state = 8042; this.selectStatement(); - this.state = 8036; + this.state = 8043; this.match(MySqlParser.RR_BRACKET); } break; @@ -47846,11 +47886,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SubqueryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8038; + this.state = 8045; this.match(MySqlParser.LR_BRACKET); - this.state = 8039; + this.state = 8046; this.selectStatement(); - this.state = 8040; + this.state = 8047; this.match(MySqlParser.RR_BRACKET); } break; @@ -47859,11 +47899,11 @@ export class MySqlParser extends SQLParserBase { localContext = new IntervalExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8042; + this.state = 8049; this.match(MySqlParser.KW_INTERVAL); - this.state = 8043; + this.state = 8050; this.expression(0); - this.state = 8044; + this.state = 8051; this.intervalType(); } break; @@ -47872,15 +47912,15 @@ export class MySqlParser extends SQLParserBase { localContext = new ColumnNameExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8046; + this.state = 8053; this.columnNamePath(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 8066; + this.state = 8073; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1166, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -47888,21 +47928,21 @@ export class MySqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 8064; + this.state = 8071; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1165, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1166, 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 = 8049; + this.state = 8056; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 8050; + this.state = 8057; this.jsonOperator(); - this.state = 8051; + this.state = 8058; (localContext as JsonExpressionAtomContext)._right = this.expressionAtom(5); } break; @@ -47911,13 +47951,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 = 8053; + this.state = 8060; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 8054; + this.state = 8061; this.bitOperator(); - this.state = 8055; + this.state = 8062; (localContext as BitExpressionAtomContext)._right = this.expressionAtom(4); } break; @@ -47926,13 +47966,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 = 8057; + this.state = 8064; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 8058; + this.state = 8065; this.mathOperator(); - this.state = 8059; + this.state = 8066; (localContext as MathExpressionAtomContext)._right = this.expressionAtom(3); } break; @@ -47940,22 +47980,22 @@ export class MySqlParser extends SQLParserBase { { localContext = new CollateExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 8061; + this.state = 8068; if (!(this.precpred(this.context, 14))) { throw this.createFailedPredicateException("this.precpred(this.context, 14)"); } - this.state = 8062; + this.state = 8069; this.match(MySqlParser.KW_COLLATE); - this.state = 8063; + this.state = 8070; this.collationName(); } break; } } } - this.state = 8068; + this.state = 8075; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1166, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context); } } } @@ -47980,7 +48020,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8069; + this.state = 8076; _la = this.tokenStream.LA(1); if(!(_la === 114 || ((((_la - 853)) & ~0x1F) === 0 && ((1 << (_la - 853)) & 387) !== 0))) { this.errorHandler.recoverInline(this); @@ -48009,42 +48049,42 @@ export class MySqlParser extends SQLParserBase { let localContext = new ComparisonOperatorContext(this.context, this.state); this.enterRule(localContext, 828, MySqlParser.RULE_comparisonOperator); try { - this.state = 8079; + this.state = 8086; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1168, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8071; + this.state = 8078; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8072; + this.state = 8079; this.match(MySqlParser.GREATER_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8073; + this.state = 8080; this.match(MySqlParser.EXCLAMATION_SYMBOL); - this.state = 8074; + this.state = 8081; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8075; + this.state = 8082; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8076; + this.state = 8083; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 8077; + this.state = 8084; this.match(MySqlParser.GREATER_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8078; + this.state = 8085; this.comparisonBase(); } break; @@ -48068,45 +48108,45 @@ export class MySqlParser extends SQLParserBase { let localContext = new ComparisonBaseContext(this.context, this.state); this.enterRule(localContext, 830, MySqlParser.RULE_comparisonBase); try { - this.state = 8088; + this.state = 8095; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1168, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1169, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8081; + this.state = 8088; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8082; + this.state = 8089; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8083; + this.state = 8090; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8084; + this.state = 8091; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8085; + this.state = 8092; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8086; + this.state = 8093; this.match(MySqlParser.GREATER_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8087; + this.state = 8094; this.match(MySqlParser.LESS_SYMBOL); } break; @@ -48130,45 +48170,45 @@ export class MySqlParser extends SQLParserBase { let localContext = new LogicalOperatorContext(this.context, this.state); this.enterRule(localContext, 832, MySqlParser.RULE_logicalOperator); try { - this.state = 8097; + this.state = 8104; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 8090; + this.state = 8097; this.match(MySqlParser.KW_AND); } break; case MySqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 8091; + this.state = 8098; this.match(MySqlParser.BIT_AND_OP); - this.state = 8092; + this.state = 8099; this.match(MySqlParser.BIT_AND_OP); } break; case MySqlParser.KW_XOR: this.enterOuterAlt(localContext, 3); { - this.state = 8093; + this.state = 8100; this.match(MySqlParser.KW_XOR); } break; case MySqlParser.KW_OR: this.enterOuterAlt(localContext, 4); { - this.state = 8094; + this.state = 8101; this.match(MySqlParser.KW_OR); } break; case MySqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 8095; + this.state = 8102; this.match(MySqlParser.BIT_OR_OP); - this.state = 8096; + this.state = 8103; this.match(MySqlParser.BIT_OR_OP); } break; @@ -48194,45 +48234,45 @@ export class MySqlParser extends SQLParserBase { let localContext = new BitOperatorContext(this.context, this.state); this.enterRule(localContext, 834, MySqlParser.RULE_bitOperator); try { - this.state = 8106; + this.state = 8113; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 8099; + this.state = 8106; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8100; + this.state = 8107; this.match(MySqlParser.LESS_SYMBOL); } break; case MySqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 8101; + this.state = 8108; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8102; + this.state = 8109; this.match(MySqlParser.GREATER_SYMBOL); } break; case MySqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 8103; + this.state = 8110; this.match(MySqlParser.BIT_AND_OP); } break; case MySqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 8104; + this.state = 8111; this.match(MySqlParser.BIT_XOR_OP); } break; case MySqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 8105; + this.state = 8112; this.match(MySqlParser.BIT_OR_OP); } break; @@ -48261,7 +48301,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8108; + this.state = 8115; _la = this.tokenStream.LA(1); if(!(((((_la - 850)) & ~0x1F) === 0 && ((1 << (_la - 850)) & 127) !== 0))) { this.errorHandler.recoverInline(this); @@ -48290,26 +48330,26 @@ export class MySqlParser extends SQLParserBase { let localContext = new JsonOperatorContext(this.context, this.state); this.enterRule(localContext, 838, MySqlParser.RULE_jsonOperator); try { - this.state = 8115; + this.state = 8122; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1171, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1172, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8110; + this.state = 8117; this.match(MySqlParser.MINUS); - this.state = 8111; + this.state = 8118; this.match(MySqlParser.GREATER_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8112; + this.state = 8119; this.match(MySqlParser.MINUS); - this.state = 8113; + this.state = 8120; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8114; + this.state = 8121; this.match(MySqlParser.GREATER_SYMBOL); } break; @@ -48336,7 +48376,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8117; + this.state = 8124; _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); @@ -48368,7 +48408,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8119; + this.state = 8126; _la = this.tokenStream.LA(1); if(!(((((_la - 809)) & ~0x1F) === 0 && ((1 << (_la - 809)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -48400,7 +48440,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8121; + this.state = 8128; _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); @@ -48432,7 +48472,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8123; + this.state = 8130; _la = this.tokenStream.LA(1); if(!(((((_la - 696)) & ~0x1F) === 0 && ((1 << (_la - 696)) & 255) !== 0))) { this.errorHandler.recoverInline(this); @@ -48464,7 +48504,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8125; + this.state = 8132; _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 1179679) !== 0))) { this.errorHandler.recoverInline(this); @@ -48496,7 +48536,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8127; + this.state = 8134; _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); @@ -48528,7 +48568,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8129; + this.state = 8136; _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); @@ -48564,6 +48604,8 @@ export class MySqlParser extends SQLParserBase { return this.selectElement_sempred(localContext as SelectElementContext, predIndex); case 337: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); + case 338: + return this.columnNamePath_sempred(localContext as ColumnNamePathContext, predIndex); case 339: return this.columnNamePathAllowEmpty_sempred(localContext as ColumnNamePathAllowEmptyContext, predIndex); case 410: @@ -48605,57 +48647,64 @@ export class MySqlParser extends SQLParserBase { } return true; } - private columnNamePathAllowEmpty_sempred(localContext: ColumnNamePathAllowEmptyContext | null, predIndex: number): boolean { + private columnNamePath_sempred(localContext: ColumnNamePathContext | null, predIndex: number): boolean { switch (predIndex) { case 5: return this.shouldMatchEmpty(); } return true; } - private expression_sempred(localContext: ExpressionContext | null, predIndex: number): boolean { + private columnNamePathAllowEmpty_sempred(localContext: ColumnNamePathAllowEmptyContext | null, predIndex: number): boolean { switch (predIndex) { case 6: + return this.shouldMatchEmpty(); + } + return true; + } + private expression_sempred(localContext: ExpressionContext | null, predIndex: number): boolean { + switch (predIndex) { + case 7: return this.precpred(this.context, 3); } return true; } private predicate_sempred(localContext: PredicateContext | null, predIndex: number): boolean { switch (predIndex) { - case 7: - return this.precpred(this.context, 6); case 8: - return this.precpred(this.context, 5); + return this.precpred(this.context, 6); case 9: - return this.precpred(this.context, 3); + return this.precpred(this.context, 5); case 10: - return this.precpred(this.context, 9); + return this.precpred(this.context, 3); case 11: - return this.precpred(this.context, 8); + return this.precpred(this.context, 9); case 12: - return this.precpred(this.context, 7); + return this.precpred(this.context, 8); case 13: - return this.precpred(this.context, 4); + return this.precpred(this.context, 7); case 14: + return this.precpred(this.context, 4); + case 15: return this.precpred(this.context, 2); } return true; } private expressionAtom_sempred(localContext: ExpressionAtomContext | null, predIndex: number): boolean { switch (predIndex) { - case 15: - return this.precpred(this.context, 4); case 16: - return this.precpred(this.context, 3); + return this.precpred(this.context, 4); case 17: - return this.precpred(this.context, 2); + return this.precpred(this.context, 3); case 18: + return this.precpred(this.context, 2); + case 19: return this.precpred(this.context, 14); } return true; } public static readonly _serializedATN: number[] = [ - 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, + 4,1,895,8139,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, @@ -49025,565 +49074,566 @@ export class MySqlParser extends SQLParserBase { 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,130,1,130,3,130,3952,8,130,1,130,3,130,3955,8,130,1,131,1,131, + 1,131,5,131,3960,8,131,10,131,12,131,3963,9,131,1,132,1,132,5,132, + 3967,8,132,10,132,12,132,3970,9,132,1,132,1,132,1,132,5,132,3975, + 8,132,10,132,12,132,3978,9,132,1,132,1,132,1,132,3,132,3983,8,132, + 1,133,1,133,1,133,1,133,1,133,1,133,3,133,3991,8,133,1,133,3,133, + 3994,8,133,1,133,3,133,3997,8,133,1,133,1,133,1,133,5,133,4002,8, + 133,10,133,12,133,4005,9,133,3,133,4007,8,133,1,133,3,133,4010,8, + 133,1,133,1,133,3,133,4014,8,133,1,133,1,133,3,133,4018,8,133,1, + 133,1,133,1,133,1,133,3,133,4024,8,133,1,134,1,134,1,134,1,134,1, + 134,3,134,4031,8,134,1,135,1,135,1,135,1,135,1,136,1,136,1,136,1, + 136,3,136,4041,8,136,1,136,1,136,3,136,4045,8,136,1,136,1,136,1, + 137,1,137,1,137,1,137,1,137,3,137,4054,8,137,1,138,3,138,4057,8, + 138,1,138,1,138,3,138,4061,8,138,1,138,1,138,5,138,4065,8,138,10, + 138,12,138,4068,9,138,1,138,1,138,1,138,5,138,4073,8,138,10,138, + 12,138,4076,9,138,1,138,1,138,3,138,4080,8,138,1,138,1,138,3,138, + 4084,8,138,1,138,1,138,5,138,4088,8,138,10,138,12,138,4091,9,138, + 1,138,1,138,1,138,3,138,4096,8,138,1,138,3,138,4099,8,138,3,138, + 4101,8,138,1,138,1,138,3,138,4105,8,138,1,139,1,139,1,139,3,139, + 4110,8,139,1,139,1,139,1,139,1,139,1,139,3,139,4117,8,139,1,140, + 1,140,1,140,1,140,1,140,1,140,1,140,1,140,3,140,4127,8,140,1,141, + 1,141,5,141,4131,8,141,10,141,12,141,4134,9,141,1,141,1,141,3,141, + 4138,8,141,1,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,141,3,141,4160,8,141,1,142,1,142,3,142, + 4164,8,142,1,142,1,142,3,142,4168,8,142,1,143,1,143,1,143,1,143, + 1,143,1,143,3,143,4176,8,143,1,143,1,143,3,143,4180,8,143,1,143, + 3,143,4183,8,143,3,143,4185,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,4198,8,144,1,144,3,144, + 4201,8,144,1,145,1,145,1,145,5,145,4206,8,145,10,145,12,145,4209, + 9,145,1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146,4218,8,146, + 1,146,3,146,4221,8,146,1,146,1,146,1,146,3,146,4226,8,146,3,146, + 4228,8,146,1,146,1,146,3,146,4232,8,146,1,146,1,146,1,146,1,146, + 1,146,1,146,3,146,4240,8,146,1,147,1,147,1,147,1,147,3,147,4246, + 8,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,3,148,4255,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,4268,8,149,1,150,1,150,3,150,4272,8,150,1,150,1,150,5,150, + 4276,8,150,10,150,12,150,4279,9,150,1,151,1,151,1,151,3,151,4284, + 8,151,1,151,3,151,4287,8,151,1,151,1,151,3,151,4291,8,151,1,151, + 3,151,4294,8,151,1,151,1,151,1,151,1,151,1,151,3,151,4301,8,151, + 1,152,1,152,1,152,1,152,1,153,1,153,1,154,1,154,1,155,1,155,3,155, + 4313,8,155,1,155,1,155,3,155,4317,8,155,1,156,1,156,1,156,1,156, + 5,156,4323,8,156,10,156,12,156,4326,9,156,1,156,1,156,1,156,1,156, + 1,156,1,156,1,156,1,156,1,156,3,156,4337,8,156,1,156,1,156,4,156, + 4341,8,156,11,156,12,156,4342,3,156,4345,8,156,1,156,1,156,4,156, + 4349,8,156,11,156,12,156,4350,3,156,4353,8,156,3,156,4355,8,156, + 1,157,1,157,1,157,1,157,3,157,4361,8,157,1,157,1,157,1,157,1,157, + 1,157,1,157,3,157,4369,8,157,1,158,1,158,1,158,1,158,1,158,1,158, + 3,158,4377,8,158,1,159,1,159,3,159,4381,8,159,1,159,1,159,1,159, + 3,159,4386,8,159,3,159,4388,8,159,1,160,1,160,1,160,1,160,1,160, + 5,160,4395,8,160,10,160,12,160,4398,9,160,1,160,1,160,3,160,4402, + 8,160,1,161,1,161,1,161,3,161,4407,8,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,4422, + 8,162,10,162,12,162,4425,9,162,1,163,1,163,3,163,4429,8,163,1,163, + 3,163,4432,8,163,1,164,1,164,1,164,1,164,3,164,4438,8,164,1,164, + 1,164,1,164,1,164,1,164,3,164,4445,8,164,1,165,1,165,1,165,3,165, + 4450,8,165,1,166,1,166,1,166,1,166,1,166,5,166,4457,8,166,10,166, + 12,166,4460,9,166,3,166,4462,8,166,1,167,1,167,3,167,4466,8,167, + 1,168,1,168,3,168,4470,8,168,1,168,1,168,3,168,4474,8,168,1,168, + 3,168,4477,8,168,1,168,3,168,4480,8,168,1,168,3,168,4483,8,168,1, + 169,1,169,3,169,4487,8,169,1,169,1,169,3,169,4491,8,169,1,169,3, + 169,4494,8,169,1,169,3,169,4497,8,169,1,169,3,169,4500,8,169,1,170, + 1,170,1,170,1,171,1,171,3,171,4507,8,171,1,171,1,171,3,171,4511, + 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,4524,8,173,10,173,12,173,4527,9,173,1,174,1,174,1,174, + 1,175,1,175,1,175,1,175,1,175,1,176,1,176,3,176,4539,8,176,1,176, + 1,176,1,176,1,176,5,176,4545,8,176,10,176,12,176,4548,9,176,1,177, + 1,177,1,177,1,177,1,177,1,177,1,177,3,177,4557,8,177,1,178,1,178, + 3,178,4561,8,178,1,178,3,178,4564,8,178,1,178,1,178,1,179,1,179, + 3,179,4570,8,179,1,179,3,179,4573,8,179,1,179,3,179,4576,8,179,1, + 180,1,180,1,180,1,180,1,180,1,180,1,180,3,180,4585,8,180,1,181,1, + 181,1,181,1,181,1,181,1,181,1,181,3,181,4594,8,181,1,182,1,182,1, + 182,1,182,1,182,1,182,5,182,4602,8,182,10,182,12,182,4605,9,182, + 1,182,3,182,4608,8,182,1,183,1,183,1,183,1,183,1,183,1,183,5,183, + 4616,8,183,10,183,12,183,4619,9,183,1,183,3,183,4622,8,183,1,184, + 1,184,1,184,1,184,1,184,1,184,1,184,5,184,4631,8,184,10,184,12,184, + 4634,9,184,1,184,3,184,4637,8,184,1,185,1,185,1,185,1,185,1,185, + 1,185,1,185,3,185,4646,8,185,1,186,1,186,1,186,1,186,1,186,5,186, + 4653,8,186,10,186,12,186,4656,9,186,3,186,4658,8,186,1,186,1,186, + 3,186,4662,8,186,1,186,5,186,4665,8,186,10,186,12,186,4668,9,186, + 1,186,3,186,4671,8,186,1,187,1,187,1,187,1,187,1,187,5,187,4678, + 8,187,10,187,12,187,4681,9,187,3,187,4683,8,187,1,187,3,187,4686, + 8,187,1,188,1,188,1,188,1,188,1,188,3,188,4693,8,188,1,188,1,188, + 1,188,1,188,3,188,4699,8,188,1,188,1,188,1,188,1,188,3,188,4705, + 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,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,190,5,190,4729,8,190,10,190,12,190,4732,9,190,3,190,4734,8,190, + 1,190,3,190,4737,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, + 4756,8,194,3,194,4758,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,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,195,1,195,5,195,4779,8,195,10,195,12,195,4782,9,195,3,195,4784, + 8,195,1,195,3,195,4787,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,4806,8,199,3,199,4808,8,199,1,200,1,200,1,200,1,200,1,201, + 1,201,1,201,1,201,1,201,1,201,5,201,4820,8,201,10,201,12,201,4823, + 9,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,5,201,4833, + 8,201,10,201,12,201,4836,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,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,201,1,201,1,201,1,201,5,201,4870,8,201,10,201,12,201,4873,9,201, + 1,201,1,201,3,201,4877,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,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,204,1,204,1,204,1,204,1,204,3,204,4912,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,4926, + 8,205,1,206,1,206,1,206,5,206,4931,8,206,10,206,12,206,4934,9,206, + 1,206,3,206,4937,8,206,1,207,1,207,1,207,1,207,3,207,4943,8,207, + 1,208,1,208,1,208,1,208,1,208,1,208,3,208,4951,8,208,3,208,4953, + 8,208,1,209,1,209,1,209,1,209,1,210,1,210,1,210,1,210,1,210,3,210, + 4964,8,210,1,211,1,211,1,211,1,211,1,212,1,212,1,212,1,212,3,212, + 4974,8,212,1,213,1,213,1,213,1,213,1,213,3,213,4981,8,213,1,214, + 1,214,1,214,1,214,3,214,4987,8,214,1,215,1,215,1,215,1,215,1,216, + 1,216,3,216,4995,8,216,1,217,1,217,1,217,3,217,5000,8,217,1,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,217,5,217,5022,8,217,10,217,12,217,5025,9,217,1,217,1,217,1,217, + 5,217,5030,8,217,10,217,12,217,5033,9,217,1,217,5,217,5036,8,217, + 10,217,12,217,5039,9,217,1,217,1,217,3,217,5043,8,217,1,218,1,218, + 1,218,3,218,5048,8,218,1,218,4,218,5051,8,218,11,218,12,218,5052, + 1,218,1,218,4,218,5057,8,218,11,218,12,218,5058,3,218,5061,8,218, + 1,218,1,218,1,218,1,219,1,219,1,219,1,219,4,219,5070,8,219,11,219, + 12,219,5071,1,219,5,219,5075,8,219,10,219,12,219,5078,9,219,1,219, + 1,219,4,219,5082,8,219,11,219,12,219,5083,3,219,5086,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,5100,8,222,1,222,1,222,4,222,5104,8,222,11,222,12,222,5105, + 1,222,1,222,1,222,3,222,5111,8,222,1,223,1,223,1,223,3,223,5116, + 8,223,1,223,1,223,4,223,5120,8,223,11,223,12,223,5121,1,223,1,223, + 1,223,1,223,1,223,3,223,5129,8,223,1,224,1,224,1,224,1,225,1,225, + 1,225,3,225,5137,8,225,1,225,1,225,1,225,1,225,4,225,5143,8,225, + 11,225,12,225,5144,1,225,1,225,1,225,3,225,5150,8,225,1,226,1,226, + 1,226,1,226,3,226,5156,8,226,1,226,3,226,5159,8,226,1,226,1,226, + 1,226,1,226,1,226,1,226,3,226,5167,8,226,1,227,1,227,1,227,1,227, + 1,227,3,227,5174,8,227,1,228,1,228,1,228,1,228,1,228,1,228,1,228, + 3,228,5183,8,228,1,228,3,228,5186,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,5201, + 8,230,10,230,12,230,5204,9,230,1,230,1,230,1,231,1,231,1,231,3,231, + 5211,8,231,1,231,1,231,1,231,1,231,1,231,1,231,3,231,5219,8,231, + 1,232,1,232,3,232,5223,8,232,1,232,1,232,1,233,1,233,1,233,3,233, + 5230,8,233,1,233,1,233,4,233,5234,8,233,11,233,12,233,5235,1,234, + 1,234,1,234,1,234,4,234,5242,8,234,11,234,12,234,5243,1,235,1,235, + 1,235,3,235,5249,8,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,5,235,5262,8,235,10,235,12,235, + 5265,9,235,1,235,1,235,1,235,1,235,3,235,5271,8,235,1,235,5,235, + 5274,8,235,10,235,12,235,5277,9,235,3,235,5279,8,235,3,235,5281, + 8,235,1,235,1,235,4,235,5285,8,235,11,235,12,235,5286,3,235,5289, + 8,235,1,235,1,235,5,235,5293,8,235,10,235,12,235,5296,9,235,1,235, + 1,235,3,235,5300,8,235,1,235,1,235,1,235,1,235,1,235,3,235,5307, + 8,235,1,236,1,236,1,236,3,236,5312,8,236,1,236,1,236,3,236,5316, + 8,236,1,236,1,236,1,236,3,236,5321,8,236,5,236,5323,8,236,10,236, + 12,236,5326,9,236,1,236,1,236,1,236,3,236,5331,8,236,1,236,1,236, + 1,236,1,236,3,236,5337,8,236,1,236,5,236,5340,8,236,10,236,12,236, + 5343,9,236,3,236,5345,8,236,3,236,5347,8,236,1,236,1,236,4,236,5351, + 8,236,11,236,12,236,5352,3,236,5355,8,236,1,236,1,236,5,236,5359, + 8,236,10,236,12,236,5362,9,236,1,236,1,236,3,236,5366,8,236,1,237, + 1,237,1,237,3,237,5371,8,237,1,237,1,237,1,237,5,237,5376,8,237, + 10,237,12,237,5379,9,237,1,238,1,238,1,238,1,238,5,238,5385,8,238, + 10,238,12,238,5388,9,238,1,238,1,238,3,238,5392,8,238,1,238,1,238, + 1,238,1,238,1,238,5,238,5399,8,238,10,238,12,238,5402,9,238,1,238, + 3,238,5405,8,238,1,238,1,238,1,238,1,238,3,238,5411,8,238,1,238, + 5,238,5414,8,238,10,238,12,238,5417,9,238,3,238,5419,8,238,3,238, + 5421,8,238,1,238,1,238,1,238,1,238,5,238,5427,8,238,10,238,12,238, + 5430,9,238,3,238,5432,8,238,1,238,1,238,1,238,1,238,1,238,3,238, + 5439,8,238,3,238,5441,8,238,1,238,1,238,1,238,3,238,5446,8,238,1, + 238,1,238,1,238,5,238,5451,8,238,10,238,12,238,5454,9,238,1,238, + 1,238,1,238,1,238,5,238,5460,8,238,10,238,12,238,5463,9,238,1,238, + 1,238,1,238,3,238,5468,8,238,3,238,5470,8,238,1,239,1,239,1,239, + 1,239,1,239,3,239,5477,8,239,1,239,3,239,5480,8,239,1,240,1,240, + 1,240,1,240,1,240,1,240,1,240,1,240,5,240,5490,8,240,10,240,12,240, + 5493,9,240,1,240,1,240,1,240,3,240,5498,8,240,1,241,1,241,1,241, + 1,241,1,241,1,241,3,241,5506,8,241,1,241,3,241,5509,8,241,1,241, + 1,241,3,241,5513,8,241,1,241,3,241,5516,8,241,1,241,1,241,3,241, + 5520,8,241,3,241,5522,8,241,1,242,1,242,1,242,1,242,1,242,1,242, + 1,242,1,242,1,242,3,242,5533,8,242,1,242,3,242,5536,8,242,1,242, + 1,242,3,242,5540,8,242,1,242,3,242,5543,8,242,1,242,3,242,5546,8, + 242,1,243,1,243,1,243,1,243,1,243,3,243,5553,8,243,1,244,1,244,1, + 244,1,244,1,244,1,244,1,244,1,244,5,244,5563,8,244,10,244,12,244, + 5566,9,244,3,244,5568,8,244,1,245,1,245,1,245,1,245,1,245,3,245, + 5575,8,245,1,245,1,245,5,245,5579,8,245,10,245,12,245,5582,9,245, + 1,246,1,246,1,246,1,246,1,246,5,246,5589,8,246,10,246,12,246,5592, + 9,246,1,247,1,247,3,247,5596,8,247,1,247,1,247,1,247,5,247,5601, + 8,247,10,247,12,247,5604,9,247,1,247,1,247,3,247,5608,8,247,1,247, + 1,247,1,247,1,247,3,247,5614,8,247,1,247,1,247,3,247,5618,8,247, + 1,247,1,247,3,247,5622,8,247,1,247,1,247,1,247,1,247,1,247,1,247, + 3,247,5630,8,247,1,247,1,247,3,247,5634,8,247,1,247,1,247,3,247, + 5638,8,247,1,247,1,247,1,247,1,247,3,247,5644,8,247,3,247,5646,8, + 247,1,248,1,248,1,248,1,248,1,249,1,249,1,250,1,250,1,250,1,250, + 3,250,5658,8,250,1,250,1,250,1,250,3,250,5663,8,250,1,250,1,250, + 1,250,1,250,3,250,5669,8,250,1,250,1,250,1,250,1,250,3,250,5675, + 8,250,1,250,1,250,3,250,5679,8,250,1,250,1,250,1,250,3,250,5684, + 8,250,3,250,5686,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,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,252,1,252,1,252,1,252,3,252,5710,8,252,4,252,5712,8,252,11,252, + 12,252,5713,1,252,3,252,5717,8,252,1,253,1,253,1,253,1,253,1,253, + 1,253,1,253,3,253,5726,8,253,1,253,1,253,3,253,5730,8,253,1,253, + 1,253,1,253,1,253,1,253,1,253,1,253,3,253,5739,8,253,1,253,1,253, + 3,253,5743,8,253,1,253,1,253,3,253,5747,8,253,1,253,1,253,1,253, + 1,253,3,253,5753,8,253,3,253,5755,8,253,1,254,1,254,1,254,1,254, + 1,254,1,254,1,254,3,254,5764,8,254,1,254,1,254,1,254,1,254,1,254, + 1,254,1,254,1,254,3,254,5774,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,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,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,3,255,5801, + 8,255,1,256,1,256,3,256,5805,8,256,1,256,1,256,1,256,3,256,5810, + 8,256,1,257,1,257,1,257,1,257,1,257,3,257,5817,8,257,1,257,3,257, + 5820,8,257,1,257,1,257,1,257,1,257,3,257,5826,8,257,1,258,1,258, + 1,258,1,258,1,258,1,258,1,258,1,258,3,258,5836,8,258,1,259,1,259, + 1,259,1,259,1,259,1,259,1,259,1,259,3,259,5846,8,259,1,260,1,260, + 1,260,1,260,1,260,1,260,1,260,1,260,3,260,5856,8,260,1,260,1,260, + 1,260,1,260,3,260,5862,8,260,1,260,1,260,1,260,1,260,1,260,1,260, + 1,260,3,260,5871,8,260,1,260,1,260,1,260,1,260,3,260,5877,8,260, + 1,260,1,260,1,260,1,260,1,260,3,260,5884,8,260,3,260,5886,8,260, + 1,261,1,261,1,261,1,262,1,262,1,262,3,262,5894,8,262,1,262,1,262, + 1,262,1,262,3,262,5900,8,262,1,262,1,262,3,262,5904,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,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,263,1,263,1,263,3,263,5921,8,263,1,264,1,264,1,264,1,265,1,265, + 1,265,1,265,1,265,3,265,5931,8,265,1,266,1,266,3,266,5935,8,266, + 1,266,1,266,3,266,5939,8,266,1,266,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,3,266,5949,8,266,1,266,1,266,1,266,3,266,5954,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,3,266,6018,8,266,1,267,1,267,1,267, + 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,6026,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,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,267,3,267,6044,8,267,1,268,1,268,1,268,1,268,1,269,1,269,3,269, + 6052,8,269,1,269,1,269,1,269,1,269,3,269,6058,8,269,1,269,1,269, + 1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,3,269,6070,8,269, + 1,269,1,269,3,269,6074,8,269,1,269,1,269,1,269,1,269,1,269,1,269, + 1,269,1,269,1,269,3,269,6085,8,269,1,269,1,269,3,269,6089,8,269, + 1,269,1,269,1,269,1,269,1,269,1,269,1,269,3,269,6098,8,269,1,270, + 1,270,1,270,1,270,5,270,6104,8,270,10,270,12,270,6107,9,270,1,271, + 1,271,1,271,1,271,3,271,6113,8,271,1,272,1,272,3,272,6117,8,272, + 1,272,1,272,1,272,1,273,1,273,3,273,6124,8,273,1,273,1,273,1,273, + 3,273,6129,8,273,1,273,3,273,6132,8,273,1,273,3,273,6135,8,273,1, + 274,1,274,1,275,1,275,1,275,1,275,1,275,1,275,1,275,3,275,6146,8, + 275,1,276,1,276,1,276,1,276,1,276,5,276,6153,8,276,10,276,12,276, + 6156,9,276,1,276,1,276,1,276,1,276,5,276,6162,8,276,10,276,12,276, + 6165,9,276,3,276,6167,8,276,1,277,1,277,1,277,1,277,1,277,1,278, + 1,278,1,278,1,278,1,278,5,278,6179,8,278,10,278,12,278,6182,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,6199,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,6212,8,281,1,281, + 3,281,6215,8,281,1,281,1,281,3,281,6219,8,281,1,281,3,281,6222,8, + 281,3,281,6224,8,281,1,282,1,282,1,282,1,282,1,282,3,282,6231,8, + 282,1,282,1,282,1,282,1,282,1,282,3,282,6238,8,282,5,282,6240,8, + 282,10,282,12,282,6243,9,282,1,282,1,282,1,282,1,282,3,282,6249, + 8,282,1,282,1,282,1,282,1,282,1,282,3,282,6256,8,282,1,282,3,282, + 6259,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,6273,8,282,10,282,12,282,6276,9,282,3,282, + 6278,8,282,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283, + 6288,8,283,1,283,1,283,3,283,6292,8,283,1,283,1,283,1,283,1,283, + 3,283,6298,8,283,1,283,3,283,6301,8,283,1,283,3,283,6304,8,283,1, + 283,1,283,1,283,3,283,6309,8,283,1,283,1,283,3,283,6313,8,283,1, + 283,3,283,6316,8,283,1,283,1,283,1,283,1,283,1,283,3,283,6323,8, + 283,1,283,3,283,6326,8,283,1,283,1,283,1,283,1,283,3,283,6332,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,283,1,283,3,283,6368,8,283,1,283,3,283,6371,8,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,6383,8,283, + 1,283,3,283,6386,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,6402,8,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,1,283,3,283,6419,8,283,1,283,1,283, + 1,283,1,283,1,283,3,283,6426,8,283,1,283,3,283,6429,8,283,1,283, + 1,283,1,283,1,283,1,283,5,283,6436,8,283,10,283,12,283,6439,9,283, + 3,283,6441,8,283,1,283,1,283,1,283,3,283,6446,8,283,1,283,1,283, + 1,283,1,283,3,283,6452,8,283,3,283,6454,8,283,1,283,1,283,1,283, + 1,283,3,283,6460,8,283,1,283,1,283,3,283,6464,8,283,1,284,1,284, + 1,284,1,284,3,284,6470,8,284,1,284,3,284,6473,8,284,1,284,3,284, + 6476,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,6489,8,285,1,285,3,285,6492,8,285,1,286,1,286, + 1,286,1,286,3,286,6498,8,286,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,287,1,287,1,287,1,287, + 1,287,1,287,3,287,6517,8,287,1,288,1,288,1,288,1,288,3,288,6523, + 8,288,1,288,3,288,6526,8,288,1,288,1,288,3,288,6530,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, + 3,289,6544,8,289,1,290,1,290,1,290,1,291,1,291,1,291,1,291,1,291, + 5,291,6554,8,291,10,291,12,291,6557,9,291,1,291,1,291,1,291,1,291, + 1,291,3,291,6564,8,291,1,291,1,291,3,291,6568,8,291,1,291,1,291, + 1,291,1,292,1,292,3,292,6575,8,292,1,292,1,292,1,292,5,292,6580, + 8,292,10,292,12,292,6583,9,292,1,293,1,293,3,293,6587,8,293,1,293, + 1,293,1,294,1,294,1,294,1,294,1,294,1,294,1,294,5,294,6598,8,294, + 10,294,12,294,6601,9,294,1,295,1,295,1,295,1,295,5,295,6607,8,295, + 10,295,12,295,6610,9,295,1,296,1,296,1,296,1,296,1,296,3,296,6617, + 8,296,1,297,1,297,1,297,3,297,6622,8,297,1,297,3,297,6625,8,297, + 1,298,1,298,1,298,3,298,6630,8,298,1,298,3,298,6633,8,298,1,299, + 1,299,1,300,1,300,1,301,1,301,1,301,1,301,1,301,1,301,3,301,6645, + 8,301,1,302,1,302,1,302,3,302,6650,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,6663,8,302,3,302, + 6665,8,302,1,302,1,302,1,302,3,302,6670,8,302,1,302,1,302,3,302, + 6674,8,302,1,302,3,302,6677,8,302,3,302,6679,8,302,1,303,1,303,1, + 303,1,303,1,303,3,303,6686,8,303,1,304,1,304,1,304,1,304,1,304,3, + 304,6693,8,304,1,304,3,304,6696,8,304,1,304,3,304,6699,8,304,1,304, + 1,304,1,304,1,304,3,304,6705,8,304,1,304,1,304,3,304,6709,8,304, + 1,305,1,305,1,305,1,305,3,305,6715,8,305,1,306,1,306,1,306,1,306, + 1,306,1,306,3,306,6723,8,306,1,306,1,306,1,307,1,307,1,307,1,307, + 1,307,3,307,6732,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,6745,8,310,1,310,1,310,1,310,3,310, + 6750,8,310,1,310,1,310,1,310,1,310,5,310,6756,8,310,10,310,12,310, + 6759,9,310,3,310,6761,8,310,1,311,1,311,1,311,3,311,6766,8,311,1, + 311,1,311,1,311,3,311,6771,8,311,1,311,1,311,1,311,1,311,5,311,6777, + 8,311,10,311,12,311,6780,9,311,3,311,6782,8,311,1,312,1,312,1,312, + 1,312,1,312,1,312,3,312,6790,8,312,1,313,1,313,3,313,6794,8,313, + 1,313,1,313,1,313,5,313,6799,8,313,10,313,12,313,6802,9,313,1,314, + 1,314,1,314,3,314,6807,8,314,1,314,3,314,6810,8,314,1,315,1,315, + 3,315,6814,8,315,1,315,1,315,1,315,1,315,1,315,1,315,1,315,1,315, + 1,315,5,315,6825,8,315,10,315,12,315,6828,9,315,1,315,1,315,1,315, + 3,315,6833,8,315,1,315,1,315,1,315,1,315,1,315,1,315,1,315,1,315, + 5,315,6843,8,315,10,315,12,315,6846,9,315,3,315,6848,8,315,1,316, + 1,316,1,317,1,317,1,317,1,317,1,317,3,317,6857,8,317,1,317,1,317, + 1,317,3,317,6862,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, + 6881,8,325,10,325,12,325,6884,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,6897,8,330,10,330,12,330, + 6900,9,330,1,331,1,331,1,332,1,332,1,332,5,332,6907,8,332,10,332, + 12,332,6910,9,332,1,333,1,333,3,333,6914,8,333,1,334,1,334,1,334, + 3,334,6919,8,334,3,334,6921,8,334,1,334,3,334,6924,8,334,1,334,1, + 334,3,334,6928,8,334,3,334,6930,8,334,1,335,1,335,1,335,5,335,6935, + 8,335,10,335,12,335,6938,9,335,1,336,1,336,1,337,1,337,1,337,3,337, + 6945,8,337,3,337,6947,8,337,1,337,3,337,6950,8,337,1,337,1,337,3, + 337,6954,8,337,1,337,1,337,3,337,6958,8,337,1,338,1,338,1,338,3, + 338,6963,8,338,3,338,6965,8,338,1,338,3,338,6968,8,338,1,338,1,338, + 3,338,6972,8,338,1,338,1,338,1,338,1,338,1,338,3,338,6979,8,338, + 1,339,1,339,1,339,3,339,6984,8,339,1,340,1,340,1,341,1,341,1,342, + 1,342,1,343,1,343,1,343,5,343,6995,8,343,10,343,12,343,6998,9,343, + 1,344,1,344,1,345,1,345,1,345,1,345,1,345,3,345,7007,8,345,1,345, + 3,345,7010,8,345,1,345,3,345,7013,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,7026,8,348,1,349, + 1,349,1,350,1,350,3,350,7032,8,350,1,350,3,350,7035,8,350,1,351, + 1,351,1,352,1,352,1,352,1,352,3,352,7043,8,352,1,353,1,353,1,354, + 1,354,1,354,3,354,7050,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, + 7068,8,356,11,356,12,356,7069,1,357,1,357,1,357,1,357,1,357,3,357, + 7077,8,357,3,357,7079,8,357,1,358,1,358,1,358,4,358,7084,8,358,11, + 358,12,358,7085,3,358,7088,8,358,1,359,1,359,3,359,7092,8,359,1, + 360,1,360,1,360,5,360,7097,8,360,10,360,12,360,7100,9,360,1,361, + 1,361,1,361,3,361,7105,8,361,1,362,1,362,1,362,1,362,1,362,1,362, + 1,362,1,362,1,362,3,362,7116,8,362,1,363,1,363,1,363,1,363,3,363, + 7122,8,363,1,364,1,364,1,365,1,365,3,365,7128,8,365,1,366,3,366, + 7131,8,366,1,366,1,366,3,366,7135,8,366,1,366,4,366,7138,8,366,11, + 366,12,366,7139,1,366,3,366,7143,8,366,1,366,1,366,3,366,7147,8, + 366,1,366,1,366,3,366,7151,8,366,3,366,7153,8,366,1,367,1,367,1, + 368,3,368,7158,8,368,1,368,1,368,1,369,3,369,7163,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, + 7176,8,370,1,370,3,370,7179,8,370,1,371,1,371,3,371,7183,8,371,1, + 371,3,371,7186,8,371,1,371,3,371,7189,8,371,1,371,1,371,1,371,3, + 371,7194,8,371,1,371,1,371,1,371,3,371,7199,8,371,1,371,1,371,1, + 371,1,371,3,371,7205,8,371,1,371,3,371,7208,8,371,1,371,1,371,1, + 371,3,371,7213,8,371,1,371,3,371,7216,8,371,1,371,1,371,1,371,3, + 371,7221,8,371,1,371,3,371,7224,8,371,1,371,1,371,3,371,7228,8,371, + 1,371,5,371,7231,8,371,10,371,12,371,7234,9,371,1,371,1,371,3,371, + 7238,8,371,1,371,5,371,7241,8,371,10,371,12,371,7244,9,371,1,371, + 1,371,3,371,7248,8,371,1,371,3,371,7251,8,371,1,371,5,371,7254,8, + 371,10,371,12,371,7257,9,371,1,371,1,371,3,371,7261,8,371,1,371, + 5,371,7264,8,371,10,371,12,371,7267,9,371,1,371,1,371,1,371,3,371, + 7272,8,371,1,371,1,371,1,371,3,371,7277,8,371,1,371,1,371,1,371, + 3,371,7282,8,371,1,371,1,371,1,371,3,371,7287,8,371,1,371,1,371, + 3,371,7291,8,371,1,371,3,371,7294,8,371,1,371,1,371,1,371,3,371, + 7299,8,371,1,371,1,371,3,371,7303,8,371,1,371,1,371,3,371,7307,8, + 371,1,372,1,372,1,372,1,372,5,372,7313,8,372,10,372,12,372,7316, + 9,372,1,372,1,372,1,373,1,373,3,373,7322,8,373,1,373,1,373,3,373, + 7326,8,373,1,373,1,373,1,373,3,373,7331,8,373,1,373,1,373,1,373, + 3,373,7336,8,373,1,373,1,373,3,373,7340,8,373,3,373,7342,8,373,1, + 373,3,373,7345,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,7361,8,376,1,376,1, + 376,1,377,1,377,1,377,1,377,5,377,7369,8,377,10,377,12,377,7372, + 9,377,1,377,1,377,1,378,1,378,1,378,5,378,7379,8,378,10,378,12,378, + 7382,9,378,1,379,1,379,1,379,1,379,5,379,7388,8,379,10,379,12,379, + 7391,9,379,1,380,1,380,1,380,1,380,5,380,7397,8,380,10,380,12,380, + 7400,9,380,1,380,1,380,1,381,1,381,3,381,7406,8,381,1,382,1,382, + 1,382,5,382,7411,8,382,10,382,12,382,7414,9,382,1,383,1,383,1,383, + 5,383,7419,8,383,10,383,12,383,7422,9,383,1,384,1,384,1,384,5,384, + 7427,8,384,10,384,12,384,7430,9,384,1,385,1,385,1,385,1,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,385,3,385,7448,8,385,1,385,1,385,1,385,1,385,1,385,1,385,1,385, + 1,385,3,385,7458,8,385,1,386,1,386,1,386,3,386,7463,8,386,1,386, + 3,386,7466,8,386,1,386,1,386,1,386,3,386,7471,8,386,1,386,3,386, + 7474,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,7496,8,390,1,390,1,390,1,390,1,390,1,390,1,390,1,390,3,390, + 7505,8,390,1,390,3,390,7508,8,390,1,391,1,391,1,391,3,391,7513,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, - 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,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,4,391,7544,8,391, + 11,391,12,391,7545,1,391,1,391,3,391,7550,8,391,1,391,1,391,1,391, + 1,391,1,391,4,391,7557,8,391,11,391,12,391,7558,1,391,1,391,3,391, + 7563,8,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,3,391,7572, + 8,391,1,391,1,391,1,391,1,391,1,391,1,391,3,391,7580,8,391,1,391, + 1,391,1,391,3,391,7585,8,391,1,391,1,391,1,391,1,391,1,391,1,391, + 3,391,7593,8,391,1,391,1,391,1,391,3,391,7598,8,391,1,391,1,391, + 1,391,3,391,7603,8,391,3,391,7605,8,391,1,391,1,391,1,391,1,391, + 1,391,1,391,1,391,3,391,7614,8,391,1,391,1,391,1,391,3,391,7619, + 8,391,1,391,1,391,1,391,1,391,1,391,1,391,3,391,7627,8,391,1,391, + 1,391,1,391,3,391,7632,8,391,1,391,1,391,1,391,1,391,1,391,1,391, + 3,391,7640,8,391,1,391,1,391,1,391,1,391,1,391,1,391,3,391,7648, + 8,391,1,391,3,391,7651,8,391,1,391,1,391,1,391,1,391,1,391,1,391, + 1,391,1,391,3,391,7661,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, + 7679,8,391,1,391,3,391,7682,8,391,1,391,3,391,7685,8,391,1,391,1, + 391,3,391,7689,8,391,1,392,1,392,1,392,1,392,1,392,1,393,1,393,1, + 393,1,393,5,393,7700,8,393,10,393,12,393,7703,9,393,1,393,1,393, + 1,393,1,393,1,393,3,393,7710,8,393,1,394,1,394,3,394,7714,8,394, + 1,395,1,395,1,395,3,395,7719,8,395,1,395,1,395,1,395,3,395,7724, + 8,395,1,395,1,395,1,395,1,395,3,395,7730,8,395,1,395,1,395,1,395, + 3,395,7735,8,395,1,395,1,395,3,395,7739,8,395,1,395,1,395,1,395, + 3,395,7744,8,395,1,395,1,395,1,395,3,395,7749,8,395,1,395,1,395, + 1,395,3,395,7754,8,395,1,395,1,395,1,395,1,395,1,395,1,395,5,395, + 7762,8,395,10,395,12,395,7765,9,395,3,395,7767,8,395,1,395,1,395, + 3,395,7771,8,395,1,395,1,395,3,395,7775,8,395,1,396,1,396,1,396, + 1,396,1,396,3,396,7782,8,396,1,396,1,396,3,396,7786,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,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,396,1,396,1,396,1,396,3,396,7815,8,396,1,397,1,397,1,397,1,397, + 1,397,1,397,3,397,7823,8,397,1,398,3,398,7826,8,398,1,398,3,398, + 7829,8,398,1,398,3,398,7832,8,398,1,398,3,398,7835,8,398,1,399,1, + 399,1,400,1,400,1,400,1,401,1,401,1,402,1,402,3,402,7846,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,7860,8,404,1,405,1,405,1,405,1,405,1,405,5,405,7867, + 8,405,10,405,12,405,7870,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,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,406,1,406,1,406,1,406,1,406,1,406,1,406,3,406,7896,8,406,1,407, + 1,407,1,407,1,407,1,407,1,408,1,408,1,408,5,408,7906,8,408,10,408, + 12,408,7909,9,408,1,409,1,409,1,409,3,409,7914,8,409,1,410,1,410, + 1,410,1,410,1,410,1,410,3,410,7922,8,410,1,410,1,410,1,410,3,410, + 7927,8,410,1,410,1,410,1,410,1,410,5,410,7933,8,410,10,410,12,410, + 7936,9,410,1,411,1,411,1,411,1,411,1,411,3,411,7943,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, - 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, + 7956,8,411,1,411,1,411,1,411,1,411,3,411,7962,8,411,1,411,1,411, + 1,411,1,411,3,411,7968,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,7983,8,411,1,411, + 1,411,3,411,7987,8,411,1,411,1,411,1,411,1,411,3,411,7993,8,411, + 1,411,1,411,1,411,1,411,1,411,1,411,1,411,5,411,8002,8,411,10,411, + 12,411,8005,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,8023,8,412, + 10,412,12,412,8026,9,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412, + 4,412,8035,8,412,11,412,12,412,8036,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, + 3,412,8055,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,8072,8,412,10,412, + 12,412,8075,9,412,1,413,1,413,1,414,1,414,1,414,1,414,1,414,1,414, + 1,414,1,414,3,414,8087,8,414,1,415,1,415,1,415,1,415,1,415,1,415, + 1,415,3,415,8096,8,415,1,416,1,416,1,416,1,416,1,416,1,416,1,416, + 3,416,8105,8,416,1,417,1,417,1,417,1,417,1,417,1,417,1,417,3,417, + 8114,8,417,1,418,1,418,1,419,1,419,1,419,1,419,1,419,3,419,8123, + 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,9510, + 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, @@ -49601,81 +49651,81 @@ export class MySqlParser extends SQLParserBase { 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,258,3939,1,0,0,0,260,3951,1,0,0,0,262,3956,1,0,0,0,264,3982, + 1,0,0,0,266,4023,1,0,0,0,268,4030,1,0,0,0,270,4032,1,0,0,0,272,4036, + 1,0,0,0,274,4053,1,0,0,0,276,4104,1,0,0,0,278,4116,1,0,0,0,280,4126, + 1,0,0,0,282,4128,1,0,0,0,284,4161,1,0,0,0,286,4169,1,0,0,0,288,4186, + 1,0,0,0,290,4202,1,0,0,0,292,4239,1,0,0,0,294,4245,1,0,0,0,296,4254, + 1,0,0,0,298,4267,1,0,0,0,300,4271,1,0,0,0,302,4300,1,0,0,0,304,4302, + 1,0,0,0,306,4306,1,0,0,0,308,4308,1,0,0,0,310,4316,1,0,0,0,312,4354, + 1,0,0,0,314,4368,1,0,0,0,316,4376,1,0,0,0,318,4380,1,0,0,0,320,4389, + 1,0,0,0,322,4403,1,0,0,0,324,4408,1,0,0,0,326,4428,1,0,0,0,328,4433, + 1,0,0,0,330,4449,1,0,0,0,332,4451,1,0,0,0,334,4463,1,0,0,0,336,4467, + 1,0,0,0,338,4484,1,0,0,0,340,4501,1,0,0,0,342,4504,1,0,0,0,344,4514, + 1,0,0,0,346,4518,1,0,0,0,348,4528,1,0,0,0,350,4531,1,0,0,0,352,4536, + 1,0,0,0,354,4556,1,0,0,0,356,4558,1,0,0,0,358,4575,1,0,0,0,360,4584, + 1,0,0,0,362,4593,1,0,0,0,364,4595,1,0,0,0,366,4609,1,0,0,0,368,4623, + 1,0,0,0,370,4638,1,0,0,0,372,4647,1,0,0,0,374,4672,1,0,0,0,376,4687, + 1,0,0,0,378,4706,1,0,0,0,380,4736,1,0,0,0,382,4738,1,0,0,0,384,4740, + 1,0,0,0,386,4742,1,0,0,0,388,4757,1,0,0,0,390,4786,1,0,0,0,392,4788, + 1,0,0,0,394,4790,1,0,0,0,396,4792,1,0,0,0,398,4807,1,0,0,0,400,4809, + 1,0,0,0,402,4876,1,0,0,0,404,4878,1,0,0,0,406,4884,1,0,0,0,408,4911, + 1,0,0,0,410,4925,1,0,0,0,412,4936,1,0,0,0,414,4938,1,0,0,0,416,4944, + 1,0,0,0,418,4954,1,0,0,0,420,4958,1,0,0,0,422,4965,1,0,0,0,424,4969, + 1,0,0,0,426,4975,1,0,0,0,428,4982,1,0,0,0,430,4988,1,0,0,0,432,4994, + 1,0,0,0,434,4999,1,0,0,0,436,5044,1,0,0,0,438,5065,1,0,0,0,440,5090, + 1,0,0,0,442,5093,1,0,0,0,444,5099,1,0,0,0,446,5115,1,0,0,0,448,5130, + 1,0,0,0,450,5136,1,0,0,0,452,5166,1,0,0,0,454,5168,1,0,0,0,456,5175, + 1,0,0,0,458,5187,1,0,0,0,460,5193,1,0,0,0,462,5218,1,0,0,0,464,5222, + 1,0,0,0,466,5226,1,0,0,0,468,5237,1,0,0,0,470,5245,1,0,0,0,472,5308, + 1,0,0,0,474,5367,1,0,0,0,476,5469,1,0,0,0,478,5479,1,0,0,0,480,5481, + 1,0,0,0,482,5499,1,0,0,0,484,5523,1,0,0,0,486,5547,1,0,0,0,488,5554, + 1,0,0,0,490,5574,1,0,0,0,492,5583,1,0,0,0,494,5645,1,0,0,0,496,5647, + 1,0,0,0,498,5651,1,0,0,0,500,5685,1,0,0,0,502,5687,1,0,0,0,504,5690, + 1,0,0,0,506,5754,1,0,0,0,508,5773,1,0,0,0,510,5800,1,0,0,0,512,5804, + 1,0,0,0,514,5825,1,0,0,0,516,5835,1,0,0,0,518,5845,1,0,0,0,520,5885, + 1,0,0,0,522,5887,1,0,0,0,524,5890,1,0,0,0,526,5920,1,0,0,0,528,5922, + 1,0,0,0,530,5925,1,0,0,0,532,6025,1,0,0,0,534,6043,1,0,0,0,536,6045, + 1,0,0,0,538,6097,1,0,0,0,540,6099,1,0,0,0,542,6108,1,0,0,0,544,6114, + 1,0,0,0,546,6121,1,0,0,0,548,6136,1,0,0,0,550,6145,1,0,0,0,552,6147, + 1,0,0,0,554,6168,1,0,0,0,556,6173,1,0,0,0,558,6183,1,0,0,0,560,6189, + 1,0,0,0,562,6223,1,0,0,0,564,6277,1,0,0,0,566,6463,1,0,0,0,568,6475, + 1,0,0,0,570,6491,1,0,0,0,572,6497,1,0,0,0,574,6516,1,0,0,0,576,6529, + 1,0,0,0,578,6543,1,0,0,0,580,6545,1,0,0,0,582,6548,1,0,0,0,584,6572, + 1,0,0,0,586,6584,1,0,0,0,588,6590,1,0,0,0,590,6602,1,0,0,0,592,6616, + 1,0,0,0,594,6618,1,0,0,0,596,6626,1,0,0,0,598,6634,1,0,0,0,600,6636, + 1,0,0,0,602,6638,1,0,0,0,604,6678,1,0,0,0,606,6685,1,0,0,0,608,6687, + 1,0,0,0,610,6710,1,0,0,0,612,6716,1,0,0,0,614,6726,1,0,0,0,616,6735, + 1,0,0,0,618,6738,1,0,0,0,620,6741,1,0,0,0,622,6762,1,0,0,0,624,6783, + 1,0,0,0,626,6791,1,0,0,0,628,6803,1,0,0,0,630,6811,1,0,0,0,632,6849, + 1,0,0,0,634,6861,1,0,0,0,636,6863,1,0,0,0,638,6865,1,0,0,0,640,6867, + 1,0,0,0,642,6869,1,0,0,0,644,6871,1,0,0,0,646,6873,1,0,0,0,648,6875, + 1,0,0,0,650,6877,1,0,0,0,652,6885,1,0,0,0,654,6887,1,0,0,0,656,6889, + 1,0,0,0,658,6891,1,0,0,0,660,6893,1,0,0,0,662,6901,1,0,0,0,664,6903, + 1,0,0,0,666,6913,1,0,0,0,668,6929,1,0,0,0,670,6931,1,0,0,0,672,6939, + 1,0,0,0,674,6957,1,0,0,0,676,6978,1,0,0,0,678,6983,1,0,0,0,680,6985, + 1,0,0,0,682,6987,1,0,0,0,684,6989,1,0,0,0,686,6991,1,0,0,0,688,6999, + 1,0,0,0,690,7009,1,0,0,0,692,7014,1,0,0,0,694,7018,1,0,0,0,696,7025, + 1,0,0,0,698,7027,1,0,0,0,700,7034,1,0,0,0,702,7036,1,0,0,0,704,7042, + 1,0,0,0,706,7044,1,0,0,0,708,7049,1,0,0,0,710,7051,1,0,0,0,712,7053, + 1,0,0,0,714,7071,1,0,0,0,716,7087,1,0,0,0,718,7089,1,0,0,0,720,7093, + 1,0,0,0,722,7104,1,0,0,0,724,7115,1,0,0,0,726,7121,1,0,0,0,728,7123, + 1,0,0,0,730,7127,1,0,0,0,732,7152,1,0,0,0,734,7154,1,0,0,0,736,7157, + 1,0,0,0,738,7162,1,0,0,0,740,7178,1,0,0,0,742,7306,1,0,0,0,744,7308, + 1,0,0,0,746,7341,1,0,0,0,748,7346,1,0,0,0,750,7350,1,0,0,0,752,7356, + 1,0,0,0,754,7364,1,0,0,0,756,7375,1,0,0,0,758,7383,1,0,0,0,760,7392, + 1,0,0,0,762,7405,1,0,0,0,764,7407,1,0,0,0,766,7415,1,0,0,0,768,7423, + 1,0,0,0,770,7457,1,0,0,0,772,7473,1,0,0,0,774,7475,1,0,0,0,776,7478, + 1,0,0,0,778,7482,1,0,0,0,780,7507,1,0,0,0,782,7688,1,0,0,0,784,7690, + 1,0,0,0,786,7709,1,0,0,0,788,7711,1,0,0,0,790,7774,1,0,0,0,792,7814, + 1,0,0,0,794,7816,1,0,0,0,796,7825,1,0,0,0,798,7836,1,0,0,0,800,7838, + 1,0,0,0,802,7841,1,0,0,0,804,7845,1,0,0,0,806,7847,1,0,0,0,808,7859, + 1,0,0,0,810,7861,1,0,0,0,812,7895,1,0,0,0,814,7897,1,0,0,0,816,7902, + 1,0,0,0,818,7913,1,0,0,0,820,7926,1,0,0,0,822,7937,1,0,0,0,824,8054, + 1,0,0,0,826,8076,1,0,0,0,828,8086,1,0,0,0,830,8095,1,0,0,0,832,8104, + 1,0,0,0,834,8113,1,0,0,0,836,8115,1,0,0,0,838,8122,1,0,0,0,840,8124, + 1,0,0,0,842,8126,1,0,0,0,844,8128,1,0,0,0,846,8130,1,0,0,0,848,8132, + 1,0,0,0,850,8134,1,0,0,0,852,8136,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, @@ -50805,1604 +50855,1606 @@ export class MySqlParser extends SQLParserBase { 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 + 1,0,0,0,3947,259,1,0,0,0,3948,3946,1,0,0,0,3949,3952,3,820,410,0, + 3950,3952,3,678,339,0,3951,3949,1,0,0,0,3951,3950,1,0,0,0,3952,3954, + 1,0,0,0,3953,3955,7,55,0,0,3954,3953,1,0,0,0,3954,3955,1,0,0,0,3955, + 261,1,0,0,0,3956,3961,3,264,132,0,3957,3958,5,868,0,0,3958,3960, + 3,264,132,0,3959,3957,1,0,0,0,3960,3963,1,0,0,0,3961,3959,1,0,0, + 0,3961,3962,1,0,0,0,3962,263,1,0,0,0,3963,3961,1,0,0,0,3964,3968, + 3,266,133,0,3965,3967,3,276,138,0,3966,3965,1,0,0,0,3967,3970,1, + 0,0,0,3968,3966,1,0,0,0,3968,3969,1,0,0,0,3969,3983,1,0,0,0,3970, + 3968,1,0,0,0,3971,3972,5,866,0,0,3972,3976,3,266,133,0,3973,3975, + 3,276,138,0,3974,3973,1,0,0,0,3975,3978,1,0,0,0,3976,3974,1,0,0, + 0,3976,3977,1,0,0,0,3977,3979,1,0,0,0,3978,3976,1,0,0,0,3979,3980, + 5,867,0,0,3980,3983,1,0,0,0,3981,3983,3,288,144,0,3982,3964,1,0, + 0,0,3982,3971,1,0,0,0,3982,3981,1,0,0,0,3983,265,1,0,0,0,3984,3990, + 3,662,331,0,3985,3986,5,130,0,0,3986,3987,5,866,0,0,3987,3988,3, + 686,343,0,3988,3989,5,867,0,0,3989,3991,1,0,0,0,3990,3985,1,0,0, + 0,3990,3991,1,0,0,0,3991,3996,1,0,0,0,3992,3994,5,13,0,0,3993,3992, + 1,0,0,0,3993,3994,1,0,0,0,3994,3995,1,0,0,0,3995,3997,3,722,361, + 0,3996,3993,1,0,0,0,3996,3997,1,0,0,0,3997,4006,1,0,0,0,3998,4003, + 3,272,136,0,3999,4000,5,868,0,0,4000,4002,3,272,136,0,4001,3999, + 1,0,0,0,4002,4005,1,0,0,0,4003,4001,1,0,0,0,4003,4004,1,0,0,0,4004, + 4007,1,0,0,0,4005,4003,1,0,0,0,4006,3998,1,0,0,0,4006,4007,1,0,0, + 0,4007,4024,1,0,0,0,4008,4010,5,95,0,0,4009,4008,1,0,0,0,4009,4010, + 1,0,0,0,4010,4011,1,0,0,0,4011,4013,3,268,134,0,4012,4014,5,13,0, + 0,4013,4012,1,0,0,0,4013,4014,1,0,0,0,4014,4015,1,0,0,0,4015,4017, + 3,722,361,0,4016,4018,3,270,135,0,4017,4016,1,0,0,0,4017,4018,1, + 0,0,0,4018,4024,1,0,0,0,4019,4020,5,866,0,0,4020,4021,3,262,131, + 0,4021,4022,5,867,0,0,4022,4024,1,0,0,0,4023,3984,1,0,0,0,4023,4009, + 1,0,0,0,4023,4019,1,0,0,0,4024,267,1,0,0,0,4025,4031,3,210,105,0, + 4026,4027,5,866,0,0,4027,4028,3,210,105,0,4028,4029,5,867,0,0,4029, + 4031,1,0,0,0,4030,4025,1,0,0,0,4030,4026,1,0,0,0,4031,269,1,0,0, + 0,4032,4033,5,866,0,0,4033,4034,3,670,335,0,4034,4035,5,867,0,0, + 4035,271,1,0,0,0,4036,4037,7,56,0,0,4037,4040,7,19,0,0,4038,4039, + 5,65,0,0,4039,4041,3,274,137,0,4040,4038,1,0,0,0,4040,4041,1,0,0, + 0,4041,4042,1,0,0,0,4042,4044,5,866,0,0,4043,4045,3,650,325,0,4044, + 4043,1,0,0,0,4044,4045,1,0,0,0,4045,4046,1,0,0,0,4046,4047,5,867, + 0,0,4047,273,1,0,0,0,4048,4054,5,91,0,0,4049,4050,5,125,0,0,4050, + 4054,5,20,0,0,4051,4052,5,74,0,0,4052,4054,5,20,0,0,4053,4048,1, + 0,0,0,4053,4049,1,0,0,0,4053,4051,1,0,0,0,4054,275,1,0,0,0,4055, + 4057,7,57,0,0,4056,4055,1,0,0,0,4056,4057,1,0,0,0,4057,4058,1,0, + 0,0,4058,4060,5,91,0,0,4059,4061,5,95,0,0,4060,4059,1,0,0,0,4060, + 4061,1,0,0,0,4061,4062,1,0,0,0,4062,4066,3,266,133,0,4063,4065,3, + 278,139,0,4064,4063,1,0,0,0,4065,4068,1,0,0,0,4066,4064,1,0,0,0, + 4066,4067,1,0,0,0,4067,4105,1,0,0,0,4068,4066,1,0,0,0,4069,4070, + 5,172,0,0,4070,4074,3,266,133,0,4071,4073,3,278,139,0,4072,4071, + 1,0,0,0,4073,4076,1,0,0,0,4074,4072,1,0,0,0,4074,4075,1,0,0,0,4075, + 4105,1,0,0,0,4076,4074,1,0,0,0,4077,4079,7,58,0,0,4078,4080,5,127, + 0,0,4079,4078,1,0,0,0,4079,4080,1,0,0,0,4080,4081,1,0,0,0,4081,4083, + 5,91,0,0,4082,4084,5,95,0,0,4083,4082,1,0,0,0,4083,4084,1,0,0,0, + 4084,4085,1,0,0,0,4085,4089,3,266,133,0,4086,4088,3,278,139,0,4087, + 4086,1,0,0,0,4088,4091,1,0,0,0,4089,4087,1,0,0,0,4089,4090,1,0,0, + 0,4090,4105,1,0,0,0,4091,4089,1,0,0,0,4092,4100,5,113,0,0,4093,4096, + 5,84,0,0,4094,4096,7,58,0,0,4095,4093,1,0,0,0,4095,4094,1,0,0,0, + 4096,4098,1,0,0,0,4097,4099,5,127,0,0,4098,4097,1,0,0,0,4098,4099, + 1,0,0,0,4099,4101,1,0,0,0,4100,4095,1,0,0,0,4100,4101,1,0,0,0,4101, + 4102,1,0,0,0,4102,4103,5,91,0,0,4103,4105,3,266,133,0,4104,4056, + 1,0,0,0,4104,4069,1,0,0,0,4104,4077,1,0,0,0,4104,4092,1,0,0,0,4105, + 277,1,0,0,0,4106,4109,5,119,0,0,4107,4110,3,820,410,0,4108,4110, + 3,678,339,0,4109,4107,1,0,0,0,4109,4108,1,0,0,0,4110,4117,1,0,0, + 0,4111,4112,5,188,0,0,4112,4113,5,866,0,0,4113,4114,3,670,335,0, + 4114,4115,5,867,0,0,4115,4117,1,0,0,0,4116,4106,1,0,0,0,4116,4111, + 1,0,0,0,4117,279,1,0,0,0,4118,4119,5,866,0,0,4119,4120,3,282,141, + 0,4120,4121,5,867,0,0,4121,4127,1,0,0,0,4122,4123,5,866,0,0,4123, + 4124,3,280,140,0,4124,4125,5,867,0,0,4125,4127,1,0,0,0,4126,4118, + 1,0,0,0,4126,4122,1,0,0,0,4127,281,1,0,0,0,4128,4132,5,154,0,0,4129, + 4131,3,298,149,0,4130,4129,1,0,0,0,4131,4134,1,0,0,0,4132,4130,1, + 0,0,0,4132,4133,1,0,0,0,4133,4135,1,0,0,0,4134,4132,1,0,0,0,4135, + 4137,3,300,150,0,4136,4138,3,312,156,0,4137,4136,1,0,0,0,4137,4138, + 1,0,0,0,4138,4139,1,0,0,0,4139,4141,3,318,159,0,4140,4142,3,320, + 160,0,4141,4140,1,0,0,0,4141,4142,1,0,0,0,4142,4144,1,0,0,0,4143, + 4145,3,322,161,0,4144,4143,1,0,0,0,4144,4145,1,0,0,0,4145,4147,1, + 0,0,0,4146,4148,3,324,162,0,4147,4146,1,0,0,0,4147,4148,1,0,0,0, + 4148,4150,1,0,0,0,4149,4151,3,258,129,0,4150,4149,1,0,0,0,4150,4151, + 1,0,0,0,4151,4153,1,0,0,0,4152,4154,3,328,164,0,4153,4152,1,0,0, + 0,4153,4154,1,0,0,0,4154,4156,1,0,0,0,4155,4157,3,312,156,0,4156, + 4155,1,0,0,0,4156,4157,1,0,0,0,4157,4159,1,0,0,0,4158,4160,3,284, + 142,0,4159,4158,1,0,0,0,4159,4160,1,0,0,0,4160,283,1,0,0,0,4161, + 4163,5,181,0,0,4162,4164,7,45,0,0,4163,4162,1,0,0,0,4163,4164,1, + 0,0,0,4164,4167,1,0,0,0,4165,4168,3,282,141,0,4166,4168,3,280,140, + 0,4167,4165,1,0,0,0,4167,4166,1,0,0,0,4168,285,1,0,0,0,4169,4184, + 5,95,0,0,4170,4185,3,282,141,0,4171,4185,3,280,140,0,4172,4175,5, + 866,0,0,4173,4176,3,282,141,0,4174,4176,3,280,140,0,4175,4173,1, + 0,0,0,4175,4174,1,0,0,0,4176,4177,1,0,0,0,4177,4182,5,867,0,0,4178, + 4180,5,13,0,0,4179,4178,1,0,0,0,4179,4180,1,0,0,0,4180,4181,1,0, + 0,0,4181,4183,3,722,361,0,4182,4179,1,0,0,0,4182,4183,1,0,0,0,4183, + 4185,1,0,0,0,4184,4170,1,0,0,0,4184,4171,1,0,0,0,4184,4172,1,0,0, + 0,4185,287,1,0,0,0,4186,4187,5,253,0,0,4187,4188,5,866,0,0,4188, + 4189,5,882,0,0,4189,4190,5,868,0,0,4190,4191,5,882,0,0,4191,4192, + 5,337,0,0,4192,4193,5,866,0,0,4193,4194,3,290,145,0,4194,4195,5, + 867,0,0,4195,4200,5,867,0,0,4196,4198,5,13,0,0,4197,4196,1,0,0,0, + 4197,4198,1,0,0,0,4198,4199,1,0,0,0,4199,4201,3,722,361,0,4200,4197, + 1,0,0,0,4200,4201,1,0,0,0,4201,289,1,0,0,0,4202,4207,3,292,146,0, + 4203,4204,5,868,0,0,4204,4206,3,292,146,0,4205,4203,1,0,0,0,4206, + 4209,1,0,0,0,4207,4205,1,0,0,0,4207,4208,1,0,0,0,4208,291,1,0,0, + 0,4209,4207,1,0,0,0,4210,4227,3,674,337,0,4211,4212,5,65,0,0,4212, + 4228,5,256,0,0,4213,4225,3,742,371,0,4214,4215,5,257,0,0,4215,4217, + 5,882,0,0,4216,4218,3,294,147,0,4217,4216,1,0,0,0,4217,4218,1,0, + 0,0,4218,4220,1,0,0,0,4219,4221,3,296,148,0,4220,4219,1,0,0,0,4220, + 4221,1,0,0,0,4221,4226,1,0,0,0,4222,4223,5,60,0,0,4223,4224,5,257, + 0,0,4224,4226,5,882,0,0,4225,4214,1,0,0,0,4225,4222,1,0,0,0,4226, + 4228,1,0,0,0,4227,4211,1,0,0,0,4227,4213,1,0,0,0,4228,4240,1,0,0, + 0,4229,4231,5,255,0,0,4230,4232,5,257,0,0,4231,4230,1,0,0,0,4231, + 4232,1,0,0,0,4232,4233,1,0,0,0,4233,4234,5,882,0,0,4234,4235,5,337, + 0,0,4235,4236,5,866,0,0,4236,4237,3,290,145,0,4237,4238,5,867,0, + 0,4238,4240,1,0,0,0,4239,4210,1,0,0,0,4239,4229,1,0,0,0,4240,293, + 1,0,0,0,4241,4246,5,116,0,0,4242,4246,5,382,0,0,4243,4244,5,42,0, + 0,4244,4246,3,770,385,0,4245,4241,1,0,0,0,4245,4242,1,0,0,0,4245, + 4243,1,0,0,0,4246,4247,1,0,0,0,4247,4248,5,119,0,0,4248,4249,5,55, + 0,0,4249,295,1,0,0,0,4250,4255,5,116,0,0,4251,4255,5,382,0,0,4252, + 4253,5,42,0,0,4253,4255,3,770,385,0,4254,4250,1,0,0,0,4254,4251, + 1,0,0,0,4254,4252,1,0,0,0,4255,4256,1,0,0,0,4256,4257,5,119,0,0, + 4257,4258,5,382,0,0,4258,297,1,0,0,0,4259,4268,7,59,0,0,4260,4268, + 5,76,0,0,4261,4268,5,172,0,0,4262,4268,5,168,0,0,4263,4268,5,166, + 0,0,4264,4268,5,636,0,0,4265,4268,7,60,0,0,4266,4268,5,167,0,0,4267, + 4259,1,0,0,0,4267,4260,1,0,0,0,4267,4261,1,0,0,0,4267,4262,1,0,0, + 0,4267,4263,1,0,0,0,4267,4264,1,0,0,0,4267,4265,1,0,0,0,4267,4266, + 1,0,0,0,4268,299,1,0,0,0,4269,4272,3,306,153,0,4270,4272,3,302,151, + 0,4271,4269,1,0,0,0,4271,4270,1,0,0,0,4272,4277,1,0,0,0,4273,4274, + 5,868,0,0,4274,4276,3,302,151,0,4275,4273,1,0,0,0,4276,4279,1,0, + 0,0,4277,4275,1,0,0,0,4277,4278,1,0,0,0,4278,301,1,0,0,0,4279,4277, + 1,0,0,0,4280,4301,3,304,152,0,4281,4286,3,308,154,0,4282,4284,5, + 13,0,0,4283,4282,1,0,0,0,4283,4284,1,0,0,0,4284,4285,1,0,0,0,4285, + 4287,3,722,361,0,4286,4283,1,0,0,0,4286,4287,1,0,0,0,4287,4301,1, + 0,0,0,4288,4293,3,310,155,0,4289,4291,5,13,0,0,4290,4289,1,0,0,0, + 4290,4291,1,0,0,0,4291,4292,1,0,0,0,4292,4294,3,722,361,0,4293,4290, + 1,0,0,0,4293,4294,1,0,0,0,4294,4301,1,0,0,0,4295,4296,3,722,361, + 0,4296,4297,5,865,0,0,4297,4298,4,151,3,0,4298,4299,3,672,336,0, + 4299,4301,1,0,0,0,4300,4280,1,0,0,0,4300,4281,1,0,0,0,4300,4288, + 1,0,0,0,4300,4295,1,0,0,0,4301,303,1,0,0,0,4302,4303,3,718,359,0, + 4303,4304,5,865,0,0,4304,4305,5,850,0,0,4305,305,1,0,0,0,4306,4307, + 5,850,0,0,4307,307,1,0,0,0,4308,4309,3,674,337,0,4309,309,1,0,0, + 0,4310,4311,5,892,0,0,4311,4313,5,841,0,0,4312,4310,1,0,0,0,4312, + 4313,1,0,0,0,4313,4314,1,0,0,0,4314,4317,3,820,410,0,4315,4317,3, + 780,390,0,4316,4312,1,0,0,0,4316,4315,1,0,0,0,4317,311,1,0,0,0,4318, + 4319,5,88,0,0,4319,4324,3,236,118,0,4320,4321,5,868,0,0,4321,4323, + 3,236,118,0,4322,4320,1,0,0,0,4323,4326,1,0,0,0,4324,4322,1,0,0, + 0,4324,4325,1,0,0,0,4325,4355,1,0,0,0,4326,4324,1,0,0,0,4327,4328, + 5,88,0,0,4328,4329,5,372,0,0,4329,4355,5,882,0,0,4330,4331,5,88, + 0,0,4331,4332,5,128,0,0,4332,4336,5,882,0,0,4333,4334,5,26,0,0,4334, + 4335,5,155,0,0,4335,4337,3,704,352,0,4336,4333,1,0,0,0,4336,4337, + 1,0,0,0,4337,4344,1,0,0,0,4338,4340,7,47,0,0,4339,4341,3,314,157, + 0,4340,4339,1,0,0,0,4341,4342,1,0,0,0,4342,4340,1,0,0,0,4342,4343, + 1,0,0,0,4343,4345,1,0,0,0,4344,4338,1,0,0,0,4344,4345,1,0,0,0,4345, + 4352,1,0,0,0,4346,4348,5,102,0,0,4347,4349,3,316,158,0,4348,4347, + 1,0,0,0,4349,4350,1,0,0,0,4350,4348,1,0,0,0,4350,4351,1,0,0,0,4351, + 4353,1,0,0,0,4352,4346,1,0,0,0,4352,4353,1,0,0,0,4353,4355,1,0,0, + 0,4354,4318,1,0,0,0,4354,4327,1,0,0,0,4354,4330,1,0,0,0,4355,313, + 1,0,0,0,4356,4357,5,174,0,0,4357,4358,5,20,0,0,4358,4369,5,882,0, + 0,4359,4361,5,123,0,0,4360,4359,1,0,0,0,4360,4361,1,0,0,0,4361,4362, + 1,0,0,0,4362,4363,5,56,0,0,4363,4364,5,20,0,0,4364,4369,5,882,0, + 0,4365,4366,5,58,0,0,4366,4367,5,20,0,0,4367,4369,5,882,0,0,4368, + 4356,1,0,0,0,4368,4360,1,0,0,0,4368,4365,1,0,0,0,4369,315,1,0,0, + 0,4370,4371,5,171,0,0,4371,4372,5,20,0,0,4372,4377,5,882,0,0,4373, + 4374,5,174,0,0,4374,4375,5,20,0,0,4375,4377,5,882,0,0,4376,4370, + 1,0,0,0,4376,4373,1,0,0,0,4377,317,1,0,0,0,4378,4379,5,68,0,0,4379, + 4381,3,262,131,0,4380,4378,1,0,0,0,4380,4381,1,0,0,0,4381,4387,1, + 0,0,0,4382,4385,5,192,0,0,4383,4386,3,820,410,0,4384,4386,3,678, + 339,0,4385,4383,1,0,0,0,4385,4384,1,0,0,0,4386,4388,1,0,0,0,4387, + 4382,1,0,0,0,4387,4388,1,0,0,0,4388,319,1,0,0,0,4389,4390,5,74,0, + 0,4390,4391,5,20,0,0,4391,4396,3,326,163,0,4392,4393,5,868,0,0,4393, + 4395,3,326,163,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,4401,1,0,0,0,4398,4396,1,0,0,0,4399, + 4400,5,194,0,0,4400,4402,5,584,0,0,4401,4399,1,0,0,0,4401,4402,1, + 0,0,0,4402,321,1,0,0,0,4403,4406,5,75,0,0,4404,4407,3,820,410,0, + 4405,4407,3,678,339,0,4406,4404,1,0,0,0,4406,4405,1,0,0,0,4407,323, + 1,0,0,0,4408,4409,5,689,0,0,4409,4410,3,798,399,0,4410,4411,5,13, + 0,0,4411,4412,5,866,0,0,4412,4413,3,796,398,0,4413,4423,5,867,0, + 0,4414,4415,5,868,0,0,4415,4416,3,798,399,0,4416,4417,5,13,0,0,4417, + 4418,5,866,0,0,4418,4419,3,796,398,0,4419,4420,5,867,0,0,4420,4422, + 1,0,0,0,4421,4414,1,0,0,0,4422,4425,1,0,0,0,4423,4421,1,0,0,0,4423, + 4424,1,0,0,0,4424,325,1,0,0,0,4425,4423,1,0,0,0,4426,4429,3,820, + 410,0,4427,4429,3,678,339,0,4428,4426,1,0,0,0,4428,4427,1,0,0,0, + 4429,4431,1,0,0,0,4430,4432,7,55,0,0,4431,4430,1,0,0,0,4431,4432, + 1,0,0,0,4432,327,1,0,0,0,4433,4444,5,100,0,0,4434,4435,3,330,165, + 0,4435,4436,5,868,0,0,4436,4438,1,0,0,0,4437,4434,1,0,0,0,4437,4438, + 1,0,0,0,4438,4439,1,0,0,0,4439,4445,3,330,165,0,4440,4441,3,330, + 165,0,4441,4442,5,509,0,0,4442,4443,3,330,165,0,4443,4445,1,0,0, + 0,4444,4437,1,0,0,0,4444,4440,1,0,0,0,4445,329,1,0,0,0,4446,4450, + 3,728,364,0,4447,4450,3,702,351,0,4448,4450,3,724,362,0,4449,4446, + 1,0,0,0,4449,4447,1,0,0,0,4449,4448,1,0,0,0,4450,331,1,0,0,0,4451, + 4452,5,640,0,0,4452,4461,5,664,0,0,4453,4458,3,354,177,0,4454,4455, + 5,868,0,0,4455,4457,3,354,177,0,4456,4454,1,0,0,0,4457,4460,1,0, + 0,0,4458,4456,1,0,0,0,4458,4459,1,0,0,0,4459,4462,1,0,0,0,4460,4458, + 1,0,0,0,4461,4453,1,0,0,0,4461,4462,1,0,0,0,4462,333,1,0,0,0,4463, + 4465,5,317,0,0,4464,4466,5,691,0,0,4465,4464,1,0,0,0,4465,4466,1, + 0,0,0,4466,335,1,0,0,0,4467,4469,5,341,0,0,4468,4470,5,691,0,0,4469, + 4468,1,0,0,0,4469,4470,1,0,0,0,4470,4476,1,0,0,0,4471,4473,5,11, + 0,0,4472,4474,5,502,0,0,4473,4472,1,0,0,0,4473,4474,1,0,0,0,4474, + 4475,1,0,0,0,4475,4477,5,326,0,0,4476,4471,1,0,0,0,4476,4477,1,0, + 0,0,4477,4482,1,0,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,140,0,0,4482,4479,1,0, + 0,0,4482,4483,1,0,0,0,4483,337,1,0,0,0,4484,4486,5,583,0,0,4485, + 4487,5,691,0,0,4486,4485,1,0,0,0,4486,4487,1,0,0,0,4487,4493,1,0, + 0,0,4488,4490,5,11,0,0,4489,4491,5,502,0,0,4490,4489,1,0,0,0,4490, + 4491,1,0,0,0,4491,4492,1,0,0,0,4492,4494,5,326,0,0,4493,4488,1,0, + 0,0,4493,4494,1,0,0,0,4494,4499,1,0,0,0,4495,4497,5,502,0,0,4496, + 4495,1,0,0,0,4496,4497,1,0,0,0,4497,4498,1,0,0,0,4498,4500,5,140, + 0,0,4499,4496,1,0,0,0,4499,4500,1,0,0,0,4500,339,1,0,0,0,4501,4502, + 5,589,0,0,4502,4503,3,722,361,0,4503,341,1,0,0,0,4504,4506,5,583, + 0,0,4505,4507,5,691,0,0,4506,4505,1,0,0,0,4506,4507,1,0,0,0,4507, + 4508,1,0,0,0,4508,4510,5,176,0,0,4509,4511,5,589,0,0,4510,4509,1, + 0,0,0,4510,4511,1,0,0,0,4511,4512,1,0,0,0,4512,4513,3,722,361,0, + 4513,343,1,0,0,0,4514,4515,5,140,0,0,4515,4516,5,589,0,0,4516,4517, + 3,722,361,0,4517,345,1,0,0,0,4518,4519,5,104,0,0,4519,4520,7,61, + 0,0,4520,4525,3,356,178,0,4521,4522,5,868,0,0,4522,4524,3,356,178, + 0,4523,4521,1,0,0,0,4524,4527,1,0,0,0,4525,4523,1,0,0,0,4525,4526, + 1,0,0,0,4526,347,1,0,0,0,4527,4525,1,0,0,0,4528,4529,5,183,0,0,4529, + 4530,5,752,0,0,4530,349,1,0,0,0,4531,4532,5,155,0,0,4532,4533,5, + 313,0,0,4533,4534,5,857,0,0,4534,4535,7,26,0,0,4535,351,1,0,0,0, + 4536,4538,5,155,0,0,4537,4539,7,62,0,0,4538,4537,1,0,0,0,4538,4539, + 1,0,0,0,4539,4540,1,0,0,0,4540,4541,5,664,0,0,4541,4546,3,360,180, + 0,4542,4543,5,868,0,0,4543,4545,3,360,180,0,4544,4542,1,0,0,0,4545, + 4548,1,0,0,0,4546,4544,1,0,0,0,4546,4547,1,0,0,0,4547,353,1,0,0, + 0,4548,4546,1,0,0,0,4549,4550,5,194,0,0,4550,4551,5,350,0,0,4551, + 4557,5,600,0,0,4552,4553,5,135,0,0,4553,4557,5,195,0,0,4554,4555, + 5,135,0,0,4555,4557,5,515,0,0,4556,4549,1,0,0,0,4556,4552,1,0,0, + 0,4556,4554,1,0,0,0,4557,355,1,0,0,0,4558,4563,3,662,331,0,4559, + 4561,5,13,0,0,4560,4559,1,0,0,0,4560,4561,1,0,0,0,4561,4562,1,0, + 0,0,4562,4564,3,722,361,0,4563,4560,1,0,0,0,4563,4564,1,0,0,0,4564, + 4565,1,0,0,0,4565,4566,3,358,179,0,4566,357,1,0,0,0,4567,4569,5, + 135,0,0,4568,4570,5,450,0,0,4569,4568,1,0,0,0,4569,4570,1,0,0,0, + 4570,4576,1,0,0,0,4571,4573,5,107,0,0,4572,4571,1,0,0,0,4572,4573, + 1,0,0,0,4573,4574,1,0,0,0,4574,4576,5,195,0,0,4575,4567,1,0,0,0, + 4575,4572,1,0,0,0,4576,359,1,0,0,0,4577,4578,5,440,0,0,4578,4579, + 5,448,0,0,4579,4585,3,362,181,0,4580,4581,5,135,0,0,4581,4585,5, + 195,0,0,4582,4583,5,135,0,0,4583,4585,5,515,0,0,4584,4577,1,0,0, + 0,4584,4580,1,0,0,0,4584,4582,1,0,0,0,4585,361,1,0,0,0,4586,4587, + 5,809,0,0,4587,4594,5,135,0,0,4588,4589,5,135,0,0,4589,4594,5,810, + 0,0,4590,4591,5,135,0,0,4591,4594,5,811,0,0,4592,4594,5,812,0,0, + 4593,4586,1,0,0,0,4593,4588,1,0,0,0,4593,4590,1,0,0,0,4593,4592, + 1,0,0,0,4594,363,1,0,0,0,4595,4596,5,25,0,0,4596,4597,5,453,0,0, + 4597,4598,5,176,0,0,4598,4603,3,380,190,0,4599,4600,5,868,0,0,4600, + 4602,3,380,190,0,4601,4599,1,0,0,0,4602,4605,1,0,0,0,4603,4601,1, + 0,0,0,4603,4604,1,0,0,0,4604,4607,1,0,0,0,4605,4603,1,0,0,0,4606, + 4608,3,400,200,0,4607,4606,1,0,0,0,4607,4608,1,0,0,0,4608,365,1, + 0,0,0,4609,4610,5,25,0,0,4610,4611,5,572,0,0,4611,4612,5,400,0,0, + 4612,4617,3,402,201,0,4613,4614,5,868,0,0,4614,4616,3,402,201,0, + 4615,4613,1,0,0,0,4616,4619,1,0,0,0,4617,4615,1,0,0,0,4617,4618, + 1,0,0,0,4618,4621,1,0,0,0,4619,4617,1,0,0,0,4620,4622,3,400,200, + 0,4621,4620,1,0,0,0,4621,4622,1,0,0,0,4622,367,1,0,0,0,4623,4624, + 5,25,0,0,4624,4625,5,572,0,0,4625,4626,5,605,0,0,4626,4627,5,176, + 0,0,4627,4632,3,390,195,0,4628,4629,5,868,0,0,4629,4631,3,390,195, + 0,4630,4628,1,0,0,0,4631,4634,1,0,0,0,4632,4630,1,0,0,0,4632,4633, + 1,0,0,0,4633,4636,1,0,0,0,4634,4632,1,0,0,0,4635,4637,3,400,200, + 0,4636,4635,1,0,0,0,4636,4637,1,0,0,0,4637,369,1,0,0,0,4638,4639, + 5,133,0,0,4639,4640,7,63,0,0,4640,4645,5,452,0,0,4641,4642,5,176, + 0,0,4642,4646,5,882,0,0,4643,4644,5,16,0,0,4644,4646,5,882,0,0,4645, + 4641,1,0,0,0,4645,4643,1,0,0,0,4646,371,1,0,0,0,4647,4648,5,640, + 0,0,4648,4657,7,64,0,0,4649,4654,3,406,203,0,4650,4651,5,868,0,0, + 4651,4653,3,406,203,0,4652,4650,1,0,0,0,4653,4656,1,0,0,0,4654,4652, + 1,0,0,0,4654,4655,1,0,0,0,4655,4658,1,0,0,0,4656,4654,1,0,0,0,4657, + 4649,1,0,0,0,4657,4658,1,0,0,0,4658,4661,1,0,0,0,4659,4660,5,676, + 0,0,4660,4662,3,408,204,0,4661,4659,1,0,0,0,4661,4662,1,0,0,0,4662, + 4666,1,0,0,0,4663,4665,3,410,205,0,4664,4663,1,0,0,0,4665,4668,1, + 0,0,0,4666,4664,1,0,0,0,4666,4667,1,0,0,0,4667,4670,1,0,0,0,4668, + 4666,1,0,0,0,4669,4671,3,400,200,0,4670,4669,1,0,0,0,4670,4671,1, + 0,0,0,4671,373,1,0,0,0,4672,4673,5,646,0,0,4673,4682,7,64,0,0,4674, + 4679,3,406,203,0,4675,4676,5,868,0,0,4676,4678,3,406,203,0,4677, + 4675,1,0,0,0,4678,4681,1,0,0,0,4679,4677,1,0,0,0,4679,4680,1,0,0, + 0,4680,4683,1,0,0,0,4681,4679,1,0,0,0,4682,4674,1,0,0,0,4682,4683, + 1,0,0,0,4683,4685,1,0,0,0,4684,4686,3,400,200,0,4685,4684,1,0,0, + 0,4685,4686,1,0,0,0,4686,375,1,0,0,0,4687,4688,5,640,0,0,4688,4692, + 5,415,0,0,4689,4690,5,678,0,0,4690,4691,5,857,0,0,4691,4693,5,882, + 0,0,4692,4689,1,0,0,0,4692,4693,1,0,0,0,4693,4698,1,0,0,0,4694,4695, + 5,868,0,0,4695,4696,5,529,0,0,4696,4697,5,857,0,0,4697,4699,5,882, + 0,0,4698,4694,1,0,0,0,4698,4699,1,0,0,0,4699,4704,1,0,0,0,4700,4701, + 5,868,0,0,4701,4702,5,363,0,0,4702,4703,5,857,0,0,4703,4705,5,882, + 0,0,4704,4700,1,0,0,0,4704,4705,1,0,0,0,4705,377,1,0,0,0,4706,4707, + 5,646,0,0,4707,4708,5,415,0,0,4708,379,1,0,0,0,4709,4710,3,382,191, + 0,4710,4711,5,857,0,0,4711,4712,5,882,0,0,4712,4737,1,0,0,0,4713, + 4714,3,384,192,0,4714,4715,5,857,0,0,4715,4716,3,728,364,0,4716, + 4737,1,0,0,0,4717,4718,3,386,193,0,4718,4719,5,857,0,0,4719,4720, + 7,26,0,0,4720,4737,1,0,0,0,4721,4737,3,388,194,0,4722,4723,5,424, + 0,0,4723,4724,5,857,0,0,4724,4733,5,866,0,0,4725,4730,3,722,361, + 0,4726,4727,5,868,0,0,4727,4729,3,722,361,0,4728,4726,1,0,0,0,4729, + 4732,1,0,0,0,4730,4728,1,0,0,0,4730,4731,1,0,0,0,4731,4734,1,0,0, + 0,4732,4730,1,0,0,0,4733,4725,1,0,0,0,4733,4734,1,0,0,0,4734,4735, + 1,0,0,0,4735,4737,5,867,0,0,4736,4709,1,0,0,0,4736,4713,1,0,0,0, + 4736,4717,1,0,0,0,4736,4721,1,0,0,0,4736,4722,1,0,0,0,4737,381,1, + 0,0,0,4738,4739,7,65,0,0,4739,383,1,0,0,0,4740,4741,7,66,0,0,4741, + 385,1,0,0,0,4742,4743,7,67,0,0,4743,387,1,0,0,0,4744,4745,5,543, + 0,0,4745,4746,5,857,0,0,4746,4758,7,68,0,0,4747,4748,5,574,0,0,4748, + 4749,5,857,0,0,4749,4758,7,69,0,0,4750,4751,5,310,0,0,4751,4755, + 5,857,0,0,4752,4756,5,507,0,0,4753,4756,5,450,0,0,4754,4756,3,412, + 206,0,4755,4752,1,0,0,0,4755,4753,1,0,0,0,4755,4754,1,0,0,0,4756, + 4758,1,0,0,0,4757,4744,1,0,0,0,4757,4747,1,0,0,0,4757,4750,1,0,0, + 0,4758,389,1,0,0,0,4759,4760,3,392,196,0,4760,4761,5,857,0,0,4761, + 4762,5,882,0,0,4762,4787,1,0,0,0,4763,4764,3,394,197,0,4764,4765, + 5,857,0,0,4765,4766,3,728,364,0,4766,4787,1,0,0,0,4767,4768,3,396, + 198,0,4768,4769,5,857,0,0,4769,4770,7,26,0,0,4770,4787,1,0,0,0,4771, + 4787,3,398,199,0,4772,4773,5,424,0,0,4773,4774,5,857,0,0,4774,4783, + 5,866,0,0,4775,4780,3,722,361,0,4776,4777,5,868,0,0,4777,4779,3, + 722,361,0,4778,4776,1,0,0,0,4779,4782,1,0,0,0,4780,4778,1,0,0,0, + 4780,4781,1,0,0,0,4781,4784,1,0,0,0,4782,4780,1,0,0,0,4783,4775, + 1,0,0,0,4783,4784,1,0,0,0,4784,4785,1,0,0,0,4785,4787,5,867,0,0, + 4786,4759,1,0,0,0,4786,4763,1,0,0,0,4786,4767,1,0,0,0,4786,4771, + 1,0,0,0,4786,4772,1,0,0,0,4787,391,1,0,0,0,4788,4789,7,70,0,0,4789, + 393,1,0,0,0,4790,4791,7,71,0,0,4791,395,1,0,0,0,4792,4793,7,72,0, + 0,4793,397,1,0,0,0,4794,4795,5,543,0,0,4795,4796,5,857,0,0,4796, + 4808,7,68,0,0,4797,4798,5,574,0,0,4798,4799,5,857,0,0,4799,4808, + 7,73,0,0,4800,4801,5,310,0,0,4801,4805,5,857,0,0,4802,4806,5,507, + 0,0,4803,4806,5,450,0,0,4804,4806,3,412,206,0,4805,4802,1,0,0,0, + 4805,4803,1,0,0,0,4805,4804,1,0,0,0,4806,4808,1,0,0,0,4807,4794, + 1,0,0,0,4807,4797,1,0,0,0,4807,4800,1,0,0,0,4808,399,1,0,0,0,4809, + 4810,5,65,0,0,4810,4811,5,328,0,0,4811,4812,5,882,0,0,4812,401,1, + 0,0,0,4813,4814,5,565,0,0,4814,4815,5,857,0,0,4815,4816,5,866,0, + 0,4816,4821,3,638,319,0,4817,4818,5,868,0,0,4818,4820,3,638,319, + 0,4819,4817,1,0,0,0,4820,4823,1,0,0,0,4821,4819,1,0,0,0,4821,4822, + 1,0,0,0,4822,4824,1,0,0,0,4823,4821,1,0,0,0,4824,4825,5,867,0,0, + 4825,4877,1,0,0,0,4826,4827,5,567,0,0,4827,4828,5,857,0,0,4828,4829, + 5,866,0,0,4829,4834,3,638,319,0,4830,4831,5,868,0,0,4831,4833,3, + 638,319,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,4837,1,0,0,0,4836,4834,1,0,0,0,4837,4838, + 5,867,0,0,4838,4877,1,0,0,0,4839,4840,5,566,0,0,4840,4841,5,857, + 0,0,4841,4842,5,866,0,0,4842,4843,3,660,330,0,4843,4844,5,867,0, + 0,4844,4877,1,0,0,0,4845,4846,5,568,0,0,4846,4847,5,857,0,0,4847, + 4848,5,866,0,0,4848,4849,3,660,330,0,4849,4850,5,867,0,0,4850,4877, + 1,0,0,0,4851,4852,5,570,0,0,4852,4853,5,857,0,0,4853,4854,5,866, + 0,0,4854,4855,3,766,383,0,4855,4856,5,867,0,0,4856,4877,1,0,0,0, + 4857,4858,5,571,0,0,4858,4859,5,857,0,0,4859,4860,5,866,0,0,4860, + 4861,3,766,383,0,4861,4862,5,867,0,0,4862,4877,1,0,0,0,4863,4864, + 5,569,0,0,4864,4865,5,857,0,0,4865,4866,5,866,0,0,4866,4871,3,404, + 202,0,4867,4868,5,868,0,0,4868,4870,3,404,202,0,4869,4867,1,0,0, + 0,4870,4873,1,0,0,0,4871,4869,1,0,0,0,4871,4872,1,0,0,0,4872,4874, + 1,0,0,0,4873,4871,1,0,0,0,4874,4875,5,867,0,0,4875,4877,1,0,0,0, + 4876,4813,1,0,0,0,4876,4826,1,0,0,0,4876,4839,1,0,0,0,4876,4845, + 1,0,0,0,4876,4851,1,0,0,0,4876,4857,1,0,0,0,4876,4863,1,0,0,0,4877, + 403,1,0,0,0,4878,4879,5,866,0,0,4879,4880,3,662,331,0,4880,4881, + 5,868,0,0,4881,4882,3,662,331,0,4882,4883,5,867,0,0,4883,405,1,0, + 0,0,4884,4885,7,74,0,0,4885,407,1,0,0,0,4886,4887,7,75,0,0,4887, + 4888,5,857,0,0,4888,4912,3,412,206,0,4889,4890,5,460,0,0,4890,4891, + 5,857,0,0,4891,4892,5,882,0,0,4892,4893,5,868,0,0,4893,4894,5,461, + 0,0,4894,4895,5,857,0,0,4895,4912,3,728,364,0,4896,4897,5,611,0, + 0,4897,4898,5,857,0,0,4898,4899,5,882,0,0,4899,4900,5,868,0,0,4900, + 4901,5,612,0,0,4901,4902,5,857,0,0,4902,4912,3,728,364,0,4903,4904, + 5,557,0,0,4904,4905,5,857,0,0,4905,4906,5,882,0,0,4906,4907,5,868, + 0,0,4907,4908,5,558,0,0,4908,4909,5,857,0,0,4909,4912,3,728,364, + 0,4910,4912,5,634,0,0,4911,4886,1,0,0,0,4911,4889,1,0,0,0,4911,4896, + 1,0,0,0,4911,4903,1,0,0,0,4911,4910,1,0,0,0,4912,409,1,0,0,0,4913, + 4914,5,678,0,0,4914,4915,5,857,0,0,4915,4926,5,882,0,0,4916,4917, + 5,529,0,0,4917,4918,5,857,0,0,4918,4926,5,882,0,0,4919,4920,5,363, + 0,0,4920,4921,5,857,0,0,4921,4926,5,882,0,0,4922,4923,5,535,0,0, + 4923,4924,5,857,0,0,4924,4926,5,882,0,0,4925,4913,1,0,0,0,4925,4916, + 1,0,0,0,4925,4919,1,0,0,0,4925,4922,1,0,0,0,4926,411,1,0,0,0,4927, + 4932,3,712,356,0,4928,4929,5,868,0,0,4929,4931,3,712,356,0,4930, + 4928,1,0,0,0,4931,4934,1,0,0,0,4932,4930,1,0,0,0,4932,4933,1,0,0, + 0,4933,4937,1,0,0,0,4934,4932,1,0,0,0,4935,4937,5,882,0,0,4936,4927, + 1,0,0,0,4936,4935,1,0,0,0,4937,413,1,0,0,0,4938,4939,5,694,0,0,4939, + 4940,7,76,0,0,4940,4942,3,714,357,0,4941,4943,7,77,0,0,4942,4941, + 1,0,0,0,4942,4943,1,0,0,0,4943,415,1,0,0,0,4944,4945,5,694,0,0,4945, + 4946,5,378,0,0,4946,4952,3,714,357,0,4947,4950,5,654,0,0,4948,4949, + 5,65,0,0,4949,4951,5,489,0,0,4950,4948,1,0,0,0,4950,4951,1,0,0,0, + 4951,4953,1,0,0,0,4952,4947,1,0,0,0,4952,4953,1,0,0,0,4953,417,1, + 0,0,0,4954,4955,5,694,0,0,4955,4956,5,540,0,0,4956,4957,3,714,357, + 0,4957,419,1,0,0,0,4958,4959,5,694,0,0,4959,4960,5,341,0,0,4960, + 4963,3,714,357,0,4961,4962,5,513,0,0,4962,4964,5,533,0,0,4963,4961, + 1,0,0,0,4963,4964,1,0,0,0,4964,421,1,0,0,0,4965,4966,5,694,0,0,4966, + 4967,5,583,0,0,4967,4968,3,714,357,0,4968,423,1,0,0,0,4969,4970, + 5,694,0,0,4970,4973,5,551,0,0,4971,4972,5,33,0,0,4972,4974,3,714, + 357,0,4973,4971,1,0,0,0,4973,4974,1,0,0,0,4974,425,1,0,0,0,4975, + 4976,5,540,0,0,4976,4977,3,722,361,0,4977,4980,5,68,0,0,4978,4981, + 5,882,0,0,4979,4981,5,892,0,0,4980,4978,1,0,0,0,4980,4979,1,0,0, + 0,4981,427,1,0,0,0,4982,4983,5,717,0,0,4983,4986,3,722,361,0,4984, + 4985,5,188,0,0,4985,4987,3,768,384,0,4986,4984,1,0,0,0,4986,4987, + 1,0,0,0,4987,429,1,0,0,0,4988,4989,7,78,0,0,4989,4990,5,540,0,0, + 4990,4991,3,722,361,0,4991,431,1,0,0,0,4992,4995,3,434,217,0,4993, + 4995,3,4,2,0,4994,4992,1,0,0,0,4994,4993,1,0,0,0,4995,433,1,0,0, + 0,4996,4997,3,722,361,0,4997,4998,5,878,0,0,4998,5000,1,0,0,0,4999, + 4996,1,0,0,0,4999,5000,1,0,0,0,5000,5001,1,0,0,0,5001,5007,5,317, + 0,0,5002,5003,3,454,227,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,456,228, + 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,458,229,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,5031,1,0,0,0,5025,5023,1,0,0,0,5026,5027,3,460, + 230,0,5027,5028,5,869,0,0,5028,5030,1,0,0,0,5029,5026,1,0,0,0,5030, + 5033,1,0,0,0,5031,5029,1,0,0,0,5031,5032,1,0,0,0,5032,5037,1,0,0, + 0,5033,5031,1,0,0,0,5034,5036,3,464,232,0,5035,5034,1,0,0,0,5036, + 5039,1,0,0,0,5037,5035,1,0,0,0,5037,5038,1,0,0,0,5038,5040,1,0,0, + 0,5039,5037,1,0,0,0,5040,5042,5,378,0,0,5041,5043,3,722,361,0,5042, + 5041,1,0,0,0,5042,5043,1,0,0,0,5043,435,1,0,0,0,5044,5047,5,23,0, + 0,5045,5048,3,722,361,0,5046,5048,3,820,410,0,5047,5045,1,0,0,0, + 5047,5046,1,0,0,0,5047,5048,1,0,0,0,5048,5050,1,0,0,0,5049,5051, + 3,466,233,0,5050,5049,1,0,0,0,5051,5052,1,0,0,0,5052,5050,1,0,0, + 0,5052,5053,1,0,0,0,5053,5060,1,0,0,0,5054,5056,5,53,0,0,5055,5057, + 3,464,232,0,5056,5055,1,0,0,0,5057,5058,1,0,0,0,5058,5056,1,0,0, + 0,5058,5059,1,0,0,0,5059,5061,1,0,0,0,5060,5054,1,0,0,0,5060,5061, + 1,0,0,0,5061,5062,1,0,0,0,5062,5063,5,378,0,0,5063,5064,5,23,0,0, + 5064,437,1,0,0,0,5065,5066,5,78,0,0,5066,5067,3,820,410,0,5067,5069, + 5,175,0,0,5068,5070,3,464,232,0,5069,5068,1,0,0,0,5070,5071,1,0, + 0,0,5071,5069,1,0,0,0,5071,5072,1,0,0,0,5072,5076,1,0,0,0,5073,5075, + 3,468,234,0,5074,5073,1,0,0,0,5075,5078,1,0,0,0,5076,5074,1,0,0, + 0,5076,5077,1,0,0,0,5077,5085,1,0,0,0,5078,5076,1,0,0,0,5079,5081, + 5,53,0,0,5080,5082,3,464,232,0,5081,5080,1,0,0,0,5082,5083,1,0,0, + 0,5083,5081,1,0,0,0,5083,5084,1,0,0,0,5084,5086,1,0,0,0,5085,5079, + 1,0,0,0,5085,5086,1,0,0,0,5086,5087,1,0,0,0,5087,5088,5,378,0,0, + 5088,5089,5,78,0,0,5089,439,1,0,0,0,5090,5091,5,90,0,0,5091,5092, + 3,722,361,0,5092,441,1,0,0,0,5093,5094,5,97,0,0,5094,5095,3,722, + 361,0,5095,443,1,0,0,0,5096,5097,3,722,361,0,5097,5098,5,878,0,0, + 5098,5100,1,0,0,0,5099,5096,1,0,0,0,5099,5100,1,0,0,0,5100,5101, + 1,0,0,0,5101,5103,5,106,0,0,5102,5104,3,464,232,0,5103,5102,1,0, + 0,0,5104,5105,1,0,0,0,5105,5103,1,0,0,0,5105,5106,1,0,0,0,5106,5107, + 1,0,0,0,5107,5108,5,378,0,0,5108,5110,5,106,0,0,5109,5111,3,722, + 361,0,5110,5109,1,0,0,0,5110,5111,1,0,0,0,5111,445,1,0,0,0,5112, + 5113,3,722,361,0,5113,5114,5,878,0,0,5114,5116,1,0,0,0,5115,5112, + 1,0,0,0,5115,5116,1,0,0,0,5116,5117,1,0,0,0,5117,5119,5,142,0,0, + 5118,5120,3,464,232,0,5119,5118,1,0,0,0,5120,5121,1,0,0,0,5121,5119, + 1,0,0,0,5121,5122,1,0,0,0,5122,5123,1,0,0,0,5123,5124,5,676,0,0, + 5124,5125,3,820,410,0,5125,5126,5,378,0,0,5126,5128,5,142,0,0,5127, + 5129,3,722,361,0,5128,5127,1,0,0,0,5128,5129,1,0,0,0,5129,447,1, + 0,0,0,5130,5131,5,148,0,0,5131,5132,3,820,410,0,5132,449,1,0,0,0, + 5133,5134,3,722,361,0,5134,5135,5,878,0,0,5135,5137,1,0,0,0,5136, + 5133,1,0,0,0,5136,5137,1,0,0,0,5137,5138,1,0,0,0,5138,5139,5,193, + 0,0,5139,5140,3,820,410,0,5140,5142,5,371,0,0,5141,5143,3,464,232, + 0,5142,5141,1,0,0,0,5143,5144,1,0,0,0,5144,5142,1,0,0,0,5144,5145, + 1,0,0,0,5145,5146,1,0,0,0,5146,5147,5,378,0,0,5147,5149,5,193,0, + 0,5148,5150,3,722,361,0,5149,5148,1,0,0,0,5149,5150,1,0,0,0,5150, + 451,1,0,0,0,5151,5152,5,334,0,0,5152,5167,3,722,361,0,5153,5158, + 5,64,0,0,5154,5156,5,501,0,0,5155,5154,1,0,0,0,5155,5156,1,0,0,0, + 5156,5157,1,0,0,0,5157,5159,5,68,0,0,5158,5155,1,0,0,0,5158,5159, + 1,0,0,0,5159,5160,1,0,0,0,5160,5161,3,722,361,0,5161,5162,5,88,0, + 0,5162,5163,3,720,360,0,5163,5167,1,0,0,0,5164,5165,5,516,0,0,5165, + 5167,3,722,361,0,5166,5151,1,0,0,0,5166,5153,1,0,0,0,5166,5164,1, + 0,0,0,5167,453,1,0,0,0,5168,5169,5,41,0,0,5169,5170,3,720,360,0, + 5170,5173,3,742,371,0,5171,5172,5,42,0,0,5172,5174,3,820,410,0,5173, + 5171,1,0,0,0,5173,5174,1,0,0,0,5174,455,1,0,0,0,5175,5176,5,41,0, + 0,5176,5177,3,722,361,0,5177,5178,5,30,0,0,5178,5185,5,65,0,0,5179, + 5186,3,728,364,0,5180,5182,5,164,0,0,5181,5183,5,682,0,0,5182,5181, + 1,0,0,0,5182,5183,1,0,0,0,5183,5184,1,0,0,0,5184,5186,5,882,0,0, + 5185,5179,1,0,0,0,5185,5180,1,0,0,0,5186,457,1,0,0,0,5187,5188,5, + 41,0,0,5188,5189,3,722,361,0,5189,5190,5,38,0,0,5190,5191,5,65,0, + 0,5191,5192,3,210,105,0,5192,459,1,0,0,0,5193,5194,5,41,0,0,5194, + 5195,7,79,0,0,5195,5196,5,417,0,0,5196,5197,5,65,0,0,5197,5202,3, + 462,231,0,5198,5199,5,868,0,0,5199,5201,3,462,231,0,5200,5198,1, + 0,0,0,5201,5204,1,0,0,0,5202,5200,1,0,0,0,5202,5203,1,0,0,0,5203, + 5205,1,0,0,0,5204,5202,1,0,0,0,5205,5206,3,432,216,0,5206,461,1, + 0,0,0,5207,5219,3,728,364,0,5208,5210,5,164,0,0,5209,5211,5,682, + 0,0,5210,5209,1,0,0,0,5210,5211,1,0,0,0,5211,5212,1,0,0,0,5212,5219, + 5,882,0,0,5213,5219,3,722,361,0,5214,5219,5,165,0,0,5215,5216,5, + 114,0,0,5216,5219,5,407,0,0,5217,5219,5,163,0,0,5218,5207,1,0,0, + 0,5218,5208,1,0,0,0,5218,5213,1,0,0,0,5218,5214,1,0,0,0,5218,5215, + 1,0,0,0,5218,5217,1,0,0,0,5219,463,1,0,0,0,5220,5223,3,18,9,0,5221, + 5223,3,4,2,0,5222,5220,1,0,0,0,5222,5221,1,0,0,0,5223,5224,1,0,0, + 0,5224,5225,5,869,0,0,5225,465,1,0,0,0,5226,5229,5,191,0,0,5227, + 5230,3,740,370,0,5228,5230,3,820,410,0,5229,5227,1,0,0,0,5229,5228, + 1,0,0,0,5230,5231,1,0,0,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,467,1,0,0,0,5237,5238,5,54,0,0,5238,5239,3,820,410, + 0,5239,5241,5,175,0,0,5240,5242,3,464,232,0,5241,5240,1,0,0,0,5242, + 5243,1,0,0,0,5243,5241,1,0,0,0,5243,5244,1,0,0,0,5244,469,1,0,0, + 0,5245,5246,5,8,0,0,5246,5248,5,678,0,0,5247,5249,3,774,387,0,5248, + 5247,1,0,0,0,5248,5249,1,0,0,0,5249,5306,1,0,0,0,5250,5255,3,502, + 251,0,5251,5252,5,868,0,0,5252,5254,3,502,251,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,5307, + 1,0,0,0,5257,5255,1,0,0,0,5258,5263,3,504,252,0,5259,5260,5,868, + 0,0,5260,5262,3,504,252,0,5261,5259,1,0,0,0,5262,5265,1,0,0,0,5263, + 5261,1,0,0,0,5263,5264,1,0,0,0,5264,5280,1,0,0,0,5265,5263,1,0,0, + 0,5266,5278,5,144,0,0,5267,5279,5,505,0,0,5268,5275,3,516,258,0, + 5269,5271,5,11,0,0,5270,5269,1,0,0,0,5270,5271,1,0,0,0,5271,5272, + 1,0,0,0,5272,5274,3,516,258,0,5273,5270,1,0,0,0,5274,5277,1,0,0, + 0,5275,5273,1,0,0,0,5275,5276,1,0,0,0,5276,5279,1,0,0,0,5277,5275, + 1,0,0,0,5278,5267,1,0,0,0,5278,5268,1,0,0,0,5279,5281,1,0,0,0,5280, + 5266,1,0,0,0,5280,5281,1,0,0,0,5281,5288,1,0,0,0,5282,5284,5,194, + 0,0,5283,5285,3,518,259,0,5284,5283,1,0,0,0,5285,5286,1,0,0,0,5286, + 5284,1,0,0,0,5286,5287,1,0,0,0,5287,5289,1,0,0,0,5288,5282,1,0,0, + 0,5288,5289,1,0,0,0,5289,5294,1,0,0,0,5290,5293,3,520,260,0,5291, + 5293,3,522,261,0,5292,5290,1,0,0,0,5292,5291,1,0,0,0,5293,5296,1, + 0,0,0,5294,5292,1,0,0,0,5294,5295,1,0,0,0,5295,5299,1,0,0,0,5296, + 5294,1,0,0,0,5297,5298,7,80,0,0,5298,5300,5,882,0,0,5299,5297,1, + 0,0,0,5299,5300,1,0,0,0,5300,5307,1,0,0,0,5301,5302,3,666,333,0, + 5302,5303,5,42,0,0,5303,5304,5,582,0,0,5304,5305,3,478,239,0,5305, + 5307,1,0,0,0,5306,5250,1,0,0,0,5306,5258,1,0,0,0,5306,5301,1,0,0, + 0,5307,471,1,0,0,0,5308,5309,5,34,0,0,5309,5311,5,678,0,0,5310,5312, + 3,776,388,0,5311,5310,1,0,0,0,5311,5312,1,0,0,0,5312,5313,1,0,0, + 0,5313,5315,3,700,350,0,5314,5316,3,506,253,0,5315,5314,1,0,0,0, + 5315,5316,1,0,0,0,5316,5324,1,0,0,0,5317,5318,5,868,0,0,5318,5320, + 3,700,350,0,5319,5321,3,506,253,0,5320,5319,1,0,0,0,5320,5321,1, + 0,0,0,5321,5323,1,0,0,0,5322,5317,1,0,0,0,5323,5326,1,0,0,0,5324, + 5322,1,0,0,0,5324,5325,1,0,0,0,5325,5330,1,0,0,0,5326,5324,1,0,0, + 0,5327,5328,5,42,0,0,5328,5329,5,582,0,0,5329,5331,3,478,239,0,5330, + 5327,1,0,0,0,5330,5331,1,0,0,0,5331,5346,1,0,0,0,5332,5344,5,144, + 0,0,5333,5345,5,505,0,0,5334,5341,3,516,258,0,5335,5337,5,11,0,0, + 5336,5335,1,0,0,0,5336,5337,1,0,0,0,5337,5338,1,0,0,0,5338,5340, + 3,516,258,0,5339,5336,1,0,0,0,5340,5343,1,0,0,0,5341,5339,1,0,0, + 0,5341,5342,1,0,0,0,5342,5345,1,0,0,0,5343,5341,1,0,0,0,5344,5333, + 1,0,0,0,5344,5334,1,0,0,0,5345,5347,1,0,0,0,5346,5332,1,0,0,0,5346, + 5347,1,0,0,0,5347,5354,1,0,0,0,5348,5350,5,194,0,0,5349,5351,3,518, + 259,0,5350,5349,1,0,0,0,5351,5352,1,0,0,0,5352,5350,1,0,0,0,5352, + 5353,1,0,0,0,5353,5355,1,0,0,0,5354,5348,1,0,0,0,5354,5355,1,0,0, + 0,5355,5360,1,0,0,0,5356,5359,3,520,260,0,5357,5359,3,522,261,0, + 5358,5356,1,0,0,0,5358,5357,1,0,0,0,5359,5362,1,0,0,0,5360,5358, + 1,0,0,0,5360,5361,1,0,0,0,5361,5365,1,0,0,0,5362,5360,1,0,0,0,5363, + 5364,7,80,0,0,5364,5366,5,882,0,0,5365,5363,1,0,0,0,5365,5366,1, + 0,0,0,5366,473,1,0,0,0,5367,5368,5,51,0,0,5368,5370,5,678,0,0,5369, + 5371,3,774,387,0,5370,5369,1,0,0,0,5370,5371,1,0,0,0,5371,5372,1, + 0,0,0,5372,5377,3,700,350,0,5373,5374,5,868,0,0,5374,5376,3,700, + 350,0,5375,5373,1,0,0,0,5376,5379,1,0,0,0,5377,5375,1,0,0,0,5377, + 5378,1,0,0,0,5378,475,1,0,0,0,5379,5377,1,0,0,0,5380,5381,5,73,0, + 0,5381,5386,3,530,265,0,5382,5383,5,868,0,0,5383,5385,3,530,265, + 0,5384,5382,1,0,0,0,5385,5388,1,0,0,0,5386,5384,1,0,0,0,5386,5387, + 1,0,0,0,5387,5389,1,0,0,0,5388,5386,1,0,0,0,5389,5391,5,119,0,0, + 5390,5392,3,498,249,0,5391,5390,1,0,0,0,5391,5392,1,0,0,0,5392,5393, + 1,0,0,0,5393,5394,3,534,267,0,5394,5404,5,176,0,0,5395,5400,3,510, + 255,0,5396,5397,5,868,0,0,5397,5399,3,510,255,0,5398,5396,1,0,0, + 0,5399,5402,1,0,0,0,5400,5398,1,0,0,0,5400,5401,1,0,0,0,5401,5405, + 1,0,0,0,5402,5400,1,0,0,0,5403,5405,3,664,332,0,5404,5395,1,0,0, + 0,5404,5403,1,0,0,0,5405,5420,1,0,0,0,5406,5418,5,144,0,0,5407,5419, + 5,505,0,0,5408,5415,3,516,258,0,5409,5411,5,11,0,0,5410,5409,1,0, + 0,0,5410,5411,1,0,0,0,5411,5412,1,0,0,0,5412,5414,3,516,258,0,5413, + 5410,1,0,0,0,5414,5417,1,0,0,0,5415,5413,1,0,0,0,5415,5416,1,0,0, + 0,5416,5419,1,0,0,0,5417,5415,1,0,0,0,5418,5407,1,0,0,0,5418,5408, + 1,0,0,0,5419,5421,1,0,0,0,5420,5406,1,0,0,0,5420,5421,1,0,0,0,5421, + 5431,1,0,0,0,5422,5428,5,194,0,0,5423,5424,5,73,0,0,5424,5427,5, + 121,0,0,5425,5427,3,518,259,0,5426,5423,1,0,0,0,5426,5425,1,0,0, + 0,5427,5430,1,0,0,0,5428,5426,1,0,0,0,5428,5429,1,0,0,0,5429,5432, + 1,0,0,0,5430,5428,1,0,0,0,5431,5422,1,0,0,0,5431,5432,1,0,0,0,5432, + 5440,1,0,0,0,5433,5434,5,13,0,0,5434,5438,3,700,350,0,5435,5436, + 5,194,0,0,5436,5437,5,582,0,0,5437,5439,3,478,239,0,5438,5435,1, + 0,0,0,5438,5439,1,0,0,0,5439,5441,1,0,0,0,5440,5433,1,0,0,0,5440, + 5441,1,0,0,0,5441,5470,1,0,0,0,5442,5445,5,73,0,0,5443,5444,5,547, + 0,0,5444,5446,5,119,0,0,5445,5443,1,0,0,0,5445,5446,1,0,0,0,5446, + 5447,1,0,0,0,5447,5452,3,666,333,0,5448,5449,5,868,0,0,5449,5451, + 3,666,333,0,5450,5448,1,0,0,0,5451,5454,1,0,0,0,5452,5450,1,0,0, + 0,5452,5453,1,0,0,0,5453,5455,1,0,0,0,5454,5452,1,0,0,0,5455,5456, + 5,176,0,0,5456,5461,3,666,333,0,5457,5458,5,868,0,0,5458,5460,3, + 666,333,0,5459,5457,1,0,0,0,5460,5463,1,0,0,0,5461,5459,1,0,0,0, + 5461,5462,1,0,0,0,5462,5467,1,0,0,0,5463,5461,1,0,0,0,5464,5465, + 5,194,0,0,5465,5466,5,704,0,0,5466,5468,5,121,0,0,5467,5464,1,0, + 0,0,5467,5468,1,0,0,0,5468,5470,1,0,0,0,5469,5380,1,0,0,0,5469,5442, + 1,0,0,0,5470,477,1,0,0,0,5471,5480,5,42,0,0,5472,5480,5,505,0,0, + 5473,5476,5,7,0,0,5474,5475,5,59,0,0,5475,5477,3,664,332,0,5476, + 5474,1,0,0,0,5476,5477,1,0,0,0,5477,5480,1,0,0,0,5478,5480,3,664, + 332,0,5479,5471,1,0,0,0,5479,5472,1,0,0,0,5479,5473,1,0,0,0,5479, + 5478,1,0,0,0,5480,479,1,0,0,0,5481,5482,5,73,0,0,5482,5483,5,547, + 0,0,5483,5484,5,119,0,0,5484,5485,3,700,350,0,5485,5486,5,176,0, + 0,5486,5491,3,700,350,0,5487,5488,5,868,0,0,5488,5490,3,700,350, + 0,5489,5487,1,0,0,0,5490,5493,1,0,0,0,5491,5489,1,0,0,0,5491,5492, + 1,0,0,0,5492,5497,1,0,0,0,5493,5491,1,0,0,0,5494,5495,5,194,0,0, + 5495,5496,5,73,0,0,5496,5498,5,121,0,0,5497,5494,1,0,0,0,5497,5498, + 1,0,0,0,5498,481,1,0,0,0,5499,5500,5,8,0,0,5500,5501,5,739,0,0,5501, + 5502,5,74,0,0,5502,5508,3,656,328,0,5503,5505,5,190,0,0,5504,5506, + 5,857,0,0,5505,5504,1,0,0,0,5505,5506,1,0,0,0,5506,5507,1,0,0,0, + 5507,5509,3,490,245,0,5508,5503,1,0,0,0,5508,5509,1,0,0,0,5509,5515, + 1,0,0,0,5510,5512,5,837,0,0,5511,5513,5,857,0,0,5512,5511,1,0,0, + 0,5512,5513,1,0,0,0,5513,5514,1,0,0,0,5514,5516,3,728,364,0,5515, + 5510,1,0,0,0,5515,5516,1,0,0,0,5516,5521,1,0,0,0,5517,5519,7,39, + 0,0,5518,5520,5,66,0,0,5519,5518,1,0,0,0,5519,5520,1,0,0,0,5520, + 5522,1,0,0,0,5521,5517,1,0,0,0,5521,5522,1,0,0,0,5522,483,1,0,0, + 0,5523,5524,5,34,0,0,5524,5525,5,739,0,0,5525,5526,5,74,0,0,5526, + 5527,3,654,327,0,5527,5528,5,839,0,0,5528,5529,5,857,0,0,5529,5535, + 7,81,0,0,5530,5532,5,190,0,0,5531,5533,5,857,0,0,5532,5531,1,0,0, + 0,5532,5533,1,0,0,0,5533,5534,1,0,0,0,5534,5536,3,490,245,0,5535, + 5530,1,0,0,0,5535,5536,1,0,0,0,5536,5542,1,0,0,0,5537,5539,5,837, + 0,0,5538,5540,5,857,0,0,5539,5538,1,0,0,0,5539,5540,1,0,0,0,5540, + 5541,1,0,0,0,5541,5543,3,728,364,0,5542,5537,1,0,0,0,5542,5543,1, + 0,0,0,5543,5545,1,0,0,0,5544,5546,7,39,0,0,5545,5544,1,0,0,0,5545, + 5546,1,0,0,0,5546,485,1,0,0,0,5547,5548,5,51,0,0,5548,5549,5,739, + 0,0,5549,5550,5,74,0,0,5550,5552,3,656,328,0,5551,5553,5,66,0,0, + 5552,5551,1,0,0,0,5552,5553,1,0,0,0,5553,487,1,0,0,0,5554,5555,5, + 155,0,0,5555,5556,5,739,0,0,5556,5557,5,74,0,0,5557,5567,3,656,328, + 0,5558,5559,5,65,0,0,5559,5564,3,728,364,0,5560,5561,5,868,0,0,5561, + 5563,3,728,364,0,5562,5560,1,0,0,0,5563,5566,1,0,0,0,5564,5562,1, + 0,0,0,5564,5565,1,0,0,0,5565,5568,1,0,0,0,5566,5564,1,0,0,0,5567, + 5558,1,0,0,0,5567,5568,1,0,0,0,5568,489,1,0,0,0,5569,5575,3,728, + 364,0,5570,5571,3,728,364,0,5571,5572,5,854,0,0,5572,5573,3,728, + 364,0,5573,5575,1,0,0,0,5574,5569,1,0,0,0,5574,5570,1,0,0,0,5575, + 5580,1,0,0,0,5576,5577,5,868,0,0,5577,5579,3,490,245,0,5578,5576, + 1,0,0,0,5579,5582,1,0,0,0,5580,5578,1,0,0,0,5580,5581,1,0,0,0,5581, + 491,1,0,0,0,5582,5580,1,0,0,0,5583,5584,5,141,0,0,5584,5585,5,678, + 0,0,5585,5590,3,536,268,0,5586,5587,5,868,0,0,5587,5589,3,536,268, + 0,5588,5586,1,0,0,0,5589,5592,1,0,0,0,5590,5588,1,0,0,0,5590,5591, + 1,0,0,0,5591,493,1,0,0,0,5592,5590,1,0,0,0,5593,5595,5,149,0,0,5594, + 5596,3,774,387,0,5595,5594,1,0,0,0,5595,5596,1,0,0,0,5596,5597,1, + 0,0,0,5597,5602,3,530,265,0,5598,5599,5,868,0,0,5599,5601,3,530, + 265,0,5600,5598,1,0,0,0,5601,5604,1,0,0,0,5602,5600,1,0,0,0,5602, + 5603,1,0,0,0,5603,5605,1,0,0,0,5604,5602,1,0,0,0,5605,5607,5,119, + 0,0,5606,5608,3,498,249,0,5607,5606,1,0,0,0,5607,5608,1,0,0,0,5608, + 5609,1,0,0,0,5609,5610,3,534,267,0,5610,5611,5,68,0,0,5611,5613, + 3,664,332,0,5612,5614,3,496,248,0,5613,5612,1,0,0,0,5613,5614,1, + 0,0,0,5614,5646,1,0,0,0,5615,5617,5,149,0,0,5616,5618,3,774,387, + 0,5617,5616,1,0,0,0,5617,5618,1,0,0,0,5618,5619,1,0,0,0,5619,5621, + 5,7,0,0,5620,5622,5,734,0,0,5621,5620,1,0,0,0,5621,5622,1,0,0,0, + 5622,5623,1,0,0,0,5623,5624,5,868,0,0,5624,5625,5,73,0,0,5625,5626, + 5,121,0,0,5626,5627,5,68,0,0,5627,5629,3,664,332,0,5628,5630,3,496, + 248,0,5629,5628,1,0,0,0,5629,5630,1,0,0,0,5630,5646,1,0,0,0,5631, + 5633,5,149,0,0,5632,5634,3,774,387,0,5633,5632,1,0,0,0,5633,5634, + 1,0,0,0,5634,5637,1,0,0,0,5635,5636,5,547,0,0,5636,5638,5,119,0, + 0,5637,5635,1,0,0,0,5637,5638,1,0,0,0,5638,5639,1,0,0,0,5639,5640, + 3,664,332,0,5640,5641,5,68,0,0,5641,5643,3,664,332,0,5642,5644,3, + 496,248,0,5643,5642,1,0,0,0,5643,5644,1,0,0,0,5644,5646,1,0,0,0, + 5645,5593,1,0,0,0,5645,5615,1,0,0,0,5645,5631,1,0,0,0,5646,495,1, + 0,0,0,5647,5648,5,79,0,0,5648,5649,5,674,0,0,5649,5650,5,678,0,0, + 5650,497,1,0,0,0,5651,5652,7,82,0,0,5652,499,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,5659,1,0,0,0,5659,5662, + 5,857,0,0,5660,5663,3,814,407,0,5661,5663,5,882,0,0,5662,5660,1, + 0,0,0,5662,5661,1,0,0,0,5663,5686,1,0,0,0,5664,5665,5,155,0,0,5665, + 5668,5,529,0,0,5666,5667,5,65,0,0,5667,5669,3,700,350,0,5668,5666, + 1,0,0,0,5668,5669,1,0,0,0,5669,5674,1,0,0,0,5670,5671,5,176,0,0, + 5671,5675,5,829,0,0,5672,5673,5,857,0,0,5673,5675,5,882,0,0,5674, + 5670,1,0,0,0,5674,5672,1,0,0,0,5675,5678,1,0,0,0,5676,5677,5,143, + 0,0,5677,5679,5,882,0,0,5678,5676,1,0,0,0,5678,5679,1,0,0,0,5679, + 5683,1,0,0,0,5680,5681,5,147,0,0,5681,5682,5,36,0,0,5682,5684,5, + 529,0,0,5683,5680,1,0,0,0,5683,5684,1,0,0,0,5684,5686,1,0,0,0,5685, + 5653,1,0,0,0,5685,5664,1,0,0,0,5686,501,1,0,0,0,5687,5688,3,700, + 350,0,5688,5689,3,520,260,0,5689,503,1,0,0,0,5690,5716,3,700,350, + 0,5691,5692,5,423,0,0,5692,5693,5,20,0,0,5693,5694,5,882,0,0,5694, + 5717,3,512,256,0,5695,5696,5,423,0,0,5696,5697,5,20,0,0,5697,5698, + 5,829,0,0,5698,5699,5,529,0,0,5699,5717,3,512,256,0,5700,5701,5, + 423,0,0,5701,5702,5,194,0,0,5702,5717,3,514,257,0,5703,5704,5,369, + 0,0,5704,5705,5,511,0,0,5705,5717,5,529,0,0,5706,5707,7,83,0,0,5707, + 5709,3,528,264,0,5708,5710,3,524,262,0,5709,5708,1,0,0,0,5709,5710, + 1,0,0,0,5710,5712,1,0,0,0,5711,5706,1,0,0,0,5712,5713,1,0,0,0,5713, + 5711,1,0,0,0,5713,5714,1,0,0,0,5714,5717,1,0,0,0,5715,5717,3,526, + 263,0,5716,5691,1,0,0,0,5716,5695,1,0,0,0,5716,5700,1,0,0,0,5716, + 5703,1,0,0,0,5716,5711,1,0,0,0,5716,5715,1,0,0,0,5716,5717,1,0,0, + 0,5717,505,1,0,0,0,5718,5719,5,423,0,0,5719,5725,5,20,0,0,5720,5726, + 5,882,0,0,5721,5722,5,829,0,0,5722,5726,5,529,0,0,5723,5724,5,529, + 0,0,5724,5726,5,882,0,0,5725,5720,1,0,0,0,5725,5721,1,0,0,0,5725, + 5723,1,0,0,0,5726,5729,1,0,0,0,5727,5728,5,11,0,0,5728,5730,3,506, + 253,0,5729,5727,1,0,0,0,5729,5730,1,0,0,0,5730,5755,1,0,0,0,5731, + 5732,5,423,0,0,5732,5733,5,194,0,0,5733,5742,3,722,361,0,5734,5738, + 5,20,0,0,5735,5739,5,882,0,0,5736,5737,5,829,0,0,5737,5739,5,529, + 0,0,5738,5735,1,0,0,0,5738,5736,1,0,0,0,5739,5743,1,0,0,0,5740,5741, + 5,13,0,0,5741,5743,5,882,0,0,5742,5734,1,0,0,0,5742,5740,1,0,0,0, + 5742,5743,1,0,0,0,5743,5746,1,0,0,0,5744,5745,5,11,0,0,5745,5747, + 3,506,253,0,5746,5744,1,0,0,0,5746,5747,1,0,0,0,5747,5755,1,0,0, + 0,5748,5749,5,423,0,0,5749,5750,5,194,0,0,5750,5752,3,722,361,0, + 5751,5753,3,508,254,0,5752,5751,1,0,0,0,5752,5753,1,0,0,0,5753,5755, + 1,0,0,0,5754,5718,1,0,0,0,5754,5731,1,0,0,0,5754,5748,1,0,0,0,5755, + 507,1,0,0,0,5756,5757,5,427,0,0,5757,5758,5,708,0,0,5758,5759,5, + 423,0,0,5759,5763,5,20,0,0,5760,5761,5,829,0,0,5761,5764,5,529,0, + 0,5762,5764,5,882,0,0,5763,5760,1,0,0,0,5763,5762,1,0,0,0,5764,5774, + 1,0,0,0,5765,5766,5,427,0,0,5766,5767,5,708,0,0,5767,5768,5,423, + 0,0,5768,5769,5,194,0,0,5769,5770,3,722,361,0,5770,5771,5,13,0,0, + 5771,5772,5,882,0,0,5772,5774,1,0,0,0,5773,5756,1,0,0,0,5773,5765, + 1,0,0,0,5774,509,1,0,0,0,5775,5776,3,700,350,0,5776,5777,5,423,0, + 0,5777,5778,5,20,0,0,5778,5779,5,529,0,0,5779,5780,5,882,0,0,5780, + 5801,1,0,0,0,5781,5782,3,700,350,0,5782,5783,5,423,0,0,5783,5784, + 5,20,0,0,5784,5785,5,829,0,0,5785,5786,5,529,0,0,5786,5787,3,512, + 256,0,5787,5801,1,0,0,0,5788,5789,3,700,350,0,5789,5790,5,423,0, + 0,5790,5791,5,20,0,0,5791,5792,5,882,0,0,5792,5793,3,512,256,0,5793, + 5801,1,0,0,0,5794,5795,3,700,350,0,5795,5796,5,423,0,0,5796,5797, + 5,194,0,0,5797,5798,3,514,257,0,5798,5801,1,0,0,0,5799,5801,3,700, + 350,0,5800,5775,1,0,0,0,5800,5781,1,0,0,0,5800,5788,1,0,0,0,5800, + 5794,1,0,0,0,5800,5799,1,0,0,0,5801,511,1,0,0,0,5802,5803,5,143, + 0,0,5803,5805,5,882,0,0,5804,5802,1,0,0,0,5804,5805,1,0,0,0,5805, + 5809,1,0,0,0,5806,5807,5,147,0,0,5807,5808,5,36,0,0,5808,5810,5, + 529,0,0,5809,5806,1,0,0,0,5809,5810,1,0,0,0,5810,513,1,0,0,0,5811, + 5819,3,722,361,0,5812,5816,7,84,0,0,5813,5817,5,882,0,0,5814,5815, + 5,829,0,0,5815,5817,5,529,0,0,5816,5813,1,0,0,0,5816,5814,1,0,0, + 0,5817,5818,1,0,0,0,5818,5820,3,512,256,0,5819,5812,1,0,0,0,5819, + 5820,1,0,0,0,5820,5826,1,0,0,0,5821,5822,3,722,361,0,5822,5823,5, + 188,0,0,5823,5824,3,814,407,0,5824,5826,1,0,0,0,5825,5811,1,0,0, + 0,5825,5821,1,0,0,0,5826,515,1,0,0,0,5827,5836,5,169,0,0,5828,5836, + 5,693,0,0,5829,5830,5,331,0,0,5830,5836,5,882,0,0,5831,5832,5,441, + 0,0,5832,5836,5,882,0,0,5833,5834,5,651,0,0,5834,5836,5,882,0,0, + 5835,5827,1,0,0,0,5835,5828,1,0,0,0,5835,5829,1,0,0,0,5835,5831, + 1,0,0,0,5835,5833,1,0,0,0,5836,517,1,0,0,0,5837,5838,5,479,0,0,5838, + 5846,3,728,364,0,5839,5840,5,482,0,0,5840,5846,3,728,364,0,5841, + 5842,5,478,0,0,5842,5846,3,728,364,0,5843,5844,5,483,0,0,5844,5846, + 3,728,364,0,5845,5837,1,0,0,0,5845,5839,1,0,0,0,5845,5841,1,0,0, + 0,5845,5843,1,0,0,0,5846,519,1,0,0,0,5847,5848,5,529,0,0,5848,5855, + 5,390,0,0,5849,5856,5,42,0,0,5850,5856,5,500,0,0,5851,5852,5,87, + 0,0,5852,5853,3,728,364,0,5853,5854,5,698,0,0,5854,5856,1,0,0,0, + 5855,5849,1,0,0,0,5855,5850,1,0,0,0,5855,5851,1,0,0,0,5855,5856, + 1,0,0,0,5856,5886,1,0,0,0,5857,5858,5,529,0,0,5858,5861,5,420,0, + 0,5859,5862,5,42,0,0,5860,5862,3,728,364,0,5861,5859,1,0,0,0,5861, + 5860,1,0,0,0,5862,5886,1,0,0,0,5863,5864,5,529,0,0,5864,5865,5,581, + 0,0,5865,5870,5,87,0,0,5866,5871,5,42,0,0,5867,5868,3,728,364,0, + 5868,5869,5,698,0,0,5869,5871,1,0,0,0,5870,5866,1,0,0,0,5870,5867, + 1,0,0,0,5871,5886,1,0,0,0,5872,5873,5,529,0,0,5873,5874,5,144,0, + 0,5874,5876,5,36,0,0,5875,5877,7,85,0,0,5876,5875,1,0,0,0,5876,5877, + 1,0,0,0,5877,5886,1,0,0,0,5878,5879,5,395,0,0,5879,5886,3,728,364, + 0,5880,5883,5,530,0,0,5881,5884,3,728,364,0,5882,5884,5,669,0,0, + 5883,5881,1,0,0,0,5883,5882,1,0,0,0,5884,5886,1,0,0,0,5885,5847, + 1,0,0,0,5885,5857,1,0,0,0,5885,5863,1,0,0,0,5885,5872,1,0,0,0,5885, + 5878,1,0,0,0,5885,5880,1,0,0,0,5886,521,1,0,0,0,5887,5888,5,304, + 0,0,5888,5889,7,86,0,0,5889,523,1,0,0,0,5890,5893,5,423,0,0,5891, + 5892,5,194,0,0,5892,5894,3,722,361,0,5893,5891,1,0,0,0,5893,5894, + 1,0,0,0,5894,5903,1,0,0,0,5895,5899,5,20,0,0,5896,5900,5,882,0,0, + 5897,5898,5,829,0,0,5898,5900,5,529,0,0,5899,5896,1,0,0,0,5899,5897, + 1,0,0,0,5900,5904,1,0,0,0,5901,5902,5,13,0,0,5902,5904,5,882,0,0, + 5903,5895,1,0,0,0,5903,5901,1,0,0,0,5904,525,1,0,0,0,5905,5906,3, + 528,264,0,5906,5907,5,429,0,0,5907,5908,5,555,0,0,5908,5921,1,0, + 0,0,5909,5910,3,528,264,0,5910,5911,5,401,0,0,5911,5912,5,555,0, + 0,5912,5913,5,155,0,0,5913,5914,5,330,0,0,5914,5915,5,13,0,0,5915, + 5916,5,882,0,0,5916,5921,1,0,0,0,5917,5918,3,528,264,0,5918,5919, + 5,675,0,0,5919,5921,1,0,0,0,5920,5905,1,0,0,0,5920,5909,1,0,0,0, + 5920,5917,1,0,0,0,5921,527,1,0,0,0,5922,5923,7,87,0,0,5923,5924, + 5,394,0,0,5924,529,1,0,0,0,5925,5930,3,532,266,0,5926,5927,5,866, + 0,0,5927,5928,3,670,335,0,5928,5929,5,867,0,0,5929,5931,1,0,0,0, + 5930,5926,1,0,0,0,5930,5931,1,0,0,0,5931,531,1,0,0,0,5932,5934,5, + 7,0,0,5933,5935,5,734,0,0,5934,5933,1,0,0,0,5934,5935,1,0,0,0,5935, + 6026,1,0,0,0,5936,5938,5,8,0,0,5937,5939,5,743,0,0,5938,5937,1,0, + 0,0,5938,5939,1,0,0,0,5939,6026,1,0,0,0,5940,5948,5,34,0,0,5941, + 5942,5,660,0,0,5942,5949,5,752,0,0,5943,5949,5,743,0,0,5944,5949, + 5,684,0,0,5945,5949,5,678,0,0,5946,5949,5,658,0,0,5947,5949,5,582, + 0,0,5948,5941,1,0,0,0,5948,5943,1,0,0,0,5948,5944,1,0,0,0,5948,5945, + 1,0,0,0,5948,5946,1,0,0,0,5948,5947,1,0,0,0,5948,5949,1,0,0,0,5949, + 6026,1,0,0,0,5950,6026,5,44,0,0,5951,5953,5,51,0,0,5952,5954,5,582, + 0,0,5953,5952,1,0,0,0,5953,5954,1,0,0,0,5954,6026,1,0,0,0,5955,6026, + 5,385,0,0,5956,6026,5,717,0,0,5957,6026,5,718,0,0,5958,5959,5,73, + 0,0,5959,6026,5,121,0,0,5960,6026,5,82,0,0,5961,6026,5,86,0,0,5962, + 5963,5,104,0,0,5963,6026,5,752,0,0,5964,6026,5,735,0,0,5965,6026, + 5,547,0,0,5966,6026,5,138,0,0,5967,6026,5,736,0,0,5968,5969,5,572, + 0,0,5969,6026,7,88,0,0,5970,6026,5,154,0,0,5971,5972,5,157,0,0,5972, + 6026,7,89,0,0,5973,6026,5,749,0,0,5974,6026,5,750,0,0,5975,6026, + 5,178,0,0,5976,6026,5,185,0,0,5977,6026,5,186,0,0,5978,6026,5,705, + 0,0,5979,6026,5,706,0,0,5980,6026,5,707,0,0,5981,6026,5,709,0,0, + 5982,6026,5,710,0,0,5983,6026,5,711,0,0,5984,6026,5,712,0,0,5985, + 6026,5,714,0,0,5986,6026,5,715,0,0,5987,6026,5,716,0,0,5988,6026, + 5,719,0,0,5989,6026,5,720,0,0,5990,6026,5,721,0,0,5991,6026,5,722, + 0,0,5992,6026,5,723,0,0,5993,6026,5,724,0,0,5994,6026,5,725,0,0, + 5995,6026,5,726,0,0,5996,6026,5,727,0,0,5997,6026,5,728,0,0,5998, + 6026,5,731,0,0,5999,6026,5,732,0,0,6000,6026,5,733,0,0,6001,6026, + 5,737,0,0,6002,6026,5,738,0,0,6003,6026,5,740,0,0,6004,6026,5,741, + 0,0,6005,6026,5,742,0,0,6006,6026,5,745,0,0,6007,6026,5,746,0,0, + 6008,6026,5,747,0,0,6009,6026,5,160,0,0,6010,6026,5,748,0,0,6011, + 6026,5,836,0,0,6012,6026,5,751,0,0,6013,6026,5,753,0,0,6014,6026, + 5,838,0,0,6015,6026,5,754,0,0,6016,6026,5,755,0,0,6017,6018,5,103, + 0,0,6018,6019,5,68,0,0,6019,6026,5,744,0,0,6020,6021,5,154,0,0,6021, + 6022,5,88,0,0,6022,6026,5,744,0,0,6023,6024,5,729,0,0,6024,6026, + 5,730,0,0,6025,5932,1,0,0,0,6025,5936,1,0,0,0,6025,5940,1,0,0,0, + 6025,5950,1,0,0,0,6025,5951,1,0,0,0,6025,5955,1,0,0,0,6025,5956, + 1,0,0,0,6025,5957,1,0,0,0,6025,5958,1,0,0,0,6025,5960,1,0,0,0,6025, + 5961,1,0,0,0,6025,5962,1,0,0,0,6025,5964,1,0,0,0,6025,5965,1,0,0, + 0,6025,5966,1,0,0,0,6025,5967,1,0,0,0,6025,5968,1,0,0,0,6025,5970, + 1,0,0,0,6025,5971,1,0,0,0,6025,5973,1,0,0,0,6025,5974,1,0,0,0,6025, + 5975,1,0,0,0,6025,5976,1,0,0,0,6025,5977,1,0,0,0,6025,5978,1,0,0, + 0,6025,5979,1,0,0,0,6025,5980,1,0,0,0,6025,5981,1,0,0,0,6025,5982, + 1,0,0,0,6025,5983,1,0,0,0,6025,5984,1,0,0,0,6025,5985,1,0,0,0,6025, + 5986,1,0,0,0,6025,5987,1,0,0,0,6025,5988,1,0,0,0,6025,5989,1,0,0, + 0,6025,5990,1,0,0,0,6025,5991,1,0,0,0,6025,5992,1,0,0,0,6025,5993, + 1,0,0,0,6025,5994,1,0,0,0,6025,5995,1,0,0,0,6025,5996,1,0,0,0,6025, + 5997,1,0,0,0,6025,5998,1,0,0,0,6025,5999,1,0,0,0,6025,6000,1,0,0, + 0,6025,6001,1,0,0,0,6025,6002,1,0,0,0,6025,6003,1,0,0,0,6025,6004, + 1,0,0,0,6025,6005,1,0,0,0,6025,6006,1,0,0,0,6025,6007,1,0,0,0,6025, + 6008,1,0,0,0,6025,6009,1,0,0,0,6025,6010,1,0,0,0,6025,6011,1,0,0, + 0,6025,6012,1,0,0,0,6025,6013,1,0,0,0,6025,6014,1,0,0,0,6025,6015, + 1,0,0,0,6025,6016,1,0,0,0,6025,6017,1,0,0,0,6025,6020,1,0,0,0,6025, + 6023,1,0,0,0,6026,533,1,0,0,0,6027,6044,5,850,0,0,6028,6029,5,850, + 0,0,6029,6030,5,865,0,0,6030,6044,5,850,0,0,6031,6032,3,722,361, + 0,6032,6033,5,865,0,0,6033,6034,5,850,0,0,6034,6044,1,0,0,0,6035, + 6036,3,722,361,0,6036,6037,5,865,0,0,6037,6038,3,722,361,0,6038, + 6044,1,0,0,0,6039,6040,3,722,361,0,6040,6041,3,726,363,0,6041,6044, + 1,0,0,0,6042,6044,3,722,361,0,6043,6027,1,0,0,0,6043,6028,1,0,0, + 0,6043,6031,1,0,0,0,6043,6035,1,0,0,0,6043,6039,1,0,0,0,6043,6042, + 1,0,0,0,6044,535,1,0,0,0,6045,6046,3,700,350,0,6046,6047,5,176,0, + 0,6047,6048,3,700,350,0,6048,537,1,0,0,0,6049,6051,5,10,0,0,6050, + 6052,3,548,274,0,6051,6050,1,0,0,0,6051,6052,1,0,0,0,6052,6053,1, + 0,0,0,6053,6054,5,173,0,0,6054,6098,3,660,330,0,6055,6057,5,10,0, + 0,6056,6058,3,548,274,0,6057,6056,1,0,0,0,6057,6058,1,0,0,0,6058, + 6059,1,0,0,0,6059,6060,5,173,0,0,6060,6061,3,662,331,0,6061,6062, + 5,185,0,0,6062,6063,5,77,0,0,6063,6064,5,119,0,0,6064,6069,3,670, + 335,0,6065,6066,5,194,0,0,6066,6067,3,728,364,0,6067,6068,5,19,0, + 0,6068,6070,1,0,0,0,6069,6065,1,0,0,0,6069,6070,1,0,0,0,6070,6098, + 1,0,0,0,6071,6073,5,10,0,0,6072,6074,3,548,274,0,6073,6072,1,0,0, + 0,6073,6074,1,0,0,0,6074,6075,1,0,0,0,6075,6076,5,173,0,0,6076,6077, + 3,662,331,0,6077,6078,5,185,0,0,6078,6079,5,77,0,0,6079,6080,5,119, + 0,0,6080,6084,3,674,337,0,6081,6082,5,188,0,0,6082,6083,5,360,0, + 0,6083,6085,5,882,0,0,6084,6081,1,0,0,0,6084,6085,1,0,0,0,6085,6098, + 1,0,0,0,6086,6088,5,10,0,0,6087,6089,3,548,274,0,6088,6087,1,0,0, + 0,6088,6089,1,0,0,0,6089,6090,1,0,0,0,6090,6091,5,173,0,0,6091,6092, + 3,662,331,0,6092,6093,5,51,0,0,6093,6094,5,77,0,0,6094,6095,5,119, + 0,0,6095,6096,3,670,335,0,6096,6098,1,0,0,0,6097,6049,1,0,0,0,6097, + 6055,1,0,0,0,6097,6071,1,0,0,0,6097,6086,1,0,0,0,6098,539,1,0,0, + 0,6099,6100,5,27,0,0,6100,6101,5,173,0,0,6101,6105,3,660,330,0,6102, + 6104,3,550,275,0,6103,6102,1,0,0,0,6104,6107,1,0,0,0,6105,6103,1, + 0,0,0,6105,6106,1,0,0,0,6106,541,1,0,0,0,6107,6105,1,0,0,0,6108, + 6109,5,329,0,0,6109,6110,5,173,0,0,6110,6112,3,660,330,0,6111,6113, + 7,90,0,0,6112,6111,1,0,0,0,6112,6113,1,0,0,0,6113,543,1,0,0,0,6114, + 6116,5,120,0,0,6115,6117,3,548,274,0,6116,6115,1,0,0,0,6116,6117, + 1,0,0,0,6117,6118,1,0,0,0,6118,6119,7,61,0,0,6119,6120,3,660,330, + 0,6120,545,1,0,0,0,6121,6123,5,562,0,0,6122,6124,3,548,274,0,6123, + 6122,1,0,0,0,6123,6124,1,0,0,0,6124,6125,1,0,0,0,6125,6126,5,173, + 0,0,6126,6128,3,660,330,0,6127,6129,5,549,0,0,6128,6127,1,0,0,0, + 6128,6129,1,0,0,0,6129,6131,1,0,0,0,6130,6132,5,392,0,0,6131,6130, + 1,0,0,0,6131,6132,1,0,0,0,6132,6134,1,0,0,0,6133,6135,5,679,0,0, + 6134,6133,1,0,0,0,6134,6135,1,0,0,0,6135,547,1,0,0,0,6136,6137,7, + 91,0,0,6137,549,1,0,0,0,6138,6139,5,65,0,0,6139,6146,5,677,0,0,6140, + 6146,5,549,0,0,6141,6146,5,396,0,0,6142,6146,5,484,0,0,6143,6146, + 5,392,0,0,6144,6146,5,327,0,0,6145,6138,1,0,0,0,6145,6140,1,0,0, + 0,6145,6141,1,0,0,0,6145,6142,1,0,0,0,6145,6143,1,0,0,0,6145,6144, + 1,0,0,0,6146,551,1,0,0,0,6147,6148,5,432,0,0,6148,6149,5,344,0,0, + 6149,6154,3,722,361,0,6150,6151,5,868,0,0,6151,6153,3,722,361,0, + 6152,6150,1,0,0,0,6153,6156,1,0,0,0,6154,6152,1,0,0,0,6154,6155, + 1,0,0,0,6155,6166,1,0,0,0,6156,6154,1,0,0,0,6157,6158,5,155,0,0, + 6158,6163,3,554,277,0,6159,6160,5,868,0,0,6160,6162,3,554,277,0, + 6161,6159,1,0,0,0,6162,6165,1,0,0,0,6163,6161,1,0,0,0,6163,6164, + 1,0,0,0,6164,6167,1,0,0,0,6165,6163,1,0,0,0,6166,6157,1,0,0,0,6166, + 6167,1,0,0,0,6167,553,1,0,0,0,6168,6169,7,92,0,0,6169,6170,3,718, + 359,0,6170,6171,5,857,0,0,6171,6172,3,820,410,0,6172,555,1,0,0,0, + 6173,6174,5,673,0,0,6174,6175,5,344,0,0,6175,6180,3,722,361,0,6176, + 6177,5,868,0,0,6177,6179,3,722,361,0,6178,6176,1,0,0,0,6179,6182, + 1,0,0,0,6180,6178,1,0,0,0,6180,6181,1,0,0,0,6181,557,1,0,0,0,6182, + 6180,1,0,0,0,6183,6184,5,432,0,0,6184,6185,5,534,0,0,6185,6186,3, + 722,361,0,6186,6187,5,603,0,0,6187,6188,5,882,0,0,6188,559,1,0,0, + 0,6189,6190,5,673,0,0,6190,6191,5,534,0,0,6191,6192,3,722,361,0, + 6192,561,1,0,0,0,6193,6194,5,713,0,0,6194,6195,5,450,0,0,6195,6196, + 5,360,0,0,6196,6198,5,367,0,0,6197,6199,5,857,0,0,6198,6197,1,0, + 0,0,6198,6199,1,0,0,0,6199,6200,1,0,0,0,6200,6224,5,882,0,0,6201, + 6202,5,713,0,0,6202,6203,5,433,0,0,6203,6204,5,68,0,0,6204,6205, + 3,692,346,0,6205,6206,5,423,0,0,6206,6207,5,20,0,0,6207,6214,5,882, + 0,0,6208,6209,5,360,0,0,6209,6211,5,367,0,0,6210,6212,5,857,0,0, + 6211,6210,1,0,0,0,6211,6212,1,0,0,0,6212,6213,1,0,0,0,6213,6215, + 5,882,0,0,6214,6208,1,0,0,0,6214,6215,1,0,0,0,6215,6221,1,0,0,0, + 6216,6218,5,144,0,0,6217,6219,5,502,0,0,6218,6217,1,0,0,0,6218,6219, + 1,0,0,0,6219,6220,1,0,0,0,6220,6222,5,169,0,0,6221,6216,1,0,0,0, + 6221,6222,1,0,0,0,6222,6224,1,0,0,0,6223,6193,1,0,0,0,6223,6201, + 1,0,0,0,6224,563,1,0,0,0,6225,6226,5,155,0,0,6226,6227,3,568,284, + 0,6227,6230,7,93,0,0,6228,6231,3,820,410,0,6229,6231,5,119,0,0,6230, + 6228,1,0,0,0,6230,6229,1,0,0,0,6231,6241,1,0,0,0,6232,6233,5,868, + 0,0,6233,6234,3,568,284,0,6234,6237,7,93,0,0,6235,6238,3,820,410, + 0,6236,6238,5,119,0,0,6237,6235,1,0,0,0,6237,6236,1,0,0,0,6238,6240, + 1,0,0,0,6239,6232,1,0,0,0,6240,6243,1,0,0,0,6241,6239,1,0,0,0,6241, + 6242,1,0,0,0,6242,6278,1,0,0,0,6243,6241,1,0,0,0,6244,6245,5,155, + 0,0,6245,6248,3,58,29,0,6246,6249,3,704,352,0,6247,6249,5,42,0,0, + 6248,6246,1,0,0,0,6248,6247,1,0,0,0,6249,6278,1,0,0,0,6250,6251, + 5,155,0,0,6251,6258,5,497,0,0,6252,6255,3,704,352,0,6253,6254,5, + 28,0,0,6254,6256,3,706,353,0,6255,6253,1,0,0,0,6255,6256,1,0,0,0, + 6256,6259,1,0,0,0,6257,6259,5,42,0,0,6258,6252,1,0,0,0,6258,6257, + 1,0,0,0,6259,6278,1,0,0,0,6260,6278,3,500,250,0,6261,6278,3,352, + 176,0,6262,6278,3,350,175,0,6263,6264,5,155,0,0,6264,6265,3,718, + 359,0,6265,6266,7,93,0,0,6266,6274,3,820,410,0,6267,6268,5,868,0, + 0,6268,6269,3,718,359,0,6269,6270,7,93,0,0,6270,6271,3,820,410,0, + 6271,6273,1,0,0,0,6272,6267,1,0,0,0,6273,6276,1,0,0,0,6274,6272, + 1,0,0,0,6274,6275,1,0,0,0,6275,6278,1,0,0,0,6276,6274,1,0,0,0,6277, + 6225,1,0,0,0,6277,6244,1,0,0,0,6277,6250,1,0,0,0,6277,6260,1,0,0, + 0,6277,6261,1,0,0,0,6277,6262,1,0,0,0,6277,6263,1,0,0,0,6278,565, + 1,0,0,0,6279,6280,5,157,0,0,6280,6281,7,63,0,0,6281,6464,5,452,0, + 0,6282,6283,5,157,0,0,6283,6284,7,94,0,0,6284,6287,5,386,0,0,6285, + 6286,5,80,0,0,6286,6288,5,882,0,0,6287,6285,1,0,0,0,6287,6288,1, + 0,0,0,6288,6291,1,0,0,0,6289,6290,5,68,0,0,6290,6292,3,728,364,0, + 6291,6289,1,0,0,0,6291,6292,1,0,0,0,6292,6300,1,0,0,0,6293,6297, + 5,100,0,0,6294,6295,3,728,364,0,6295,6296,5,868,0,0,6296,6298,1, + 0,0,0,6297,6294,1,0,0,0,6297,6298,1,0,0,0,6298,6299,1,0,0,0,6299, + 6301,3,728,364,0,6300,6293,1,0,0,0,6300,6301,1,0,0,0,6301,6303,1, + 0,0,0,6302,6304,3,400,200,0,6303,6302,1,0,0,0,6303,6304,1,0,0,0, + 6304,6464,1,0,0,0,6305,6306,5,157,0,0,6306,6308,3,570,285,0,6307, + 6309,3,572,286,0,6308,6307,1,0,0,0,6308,6309,1,0,0,0,6309,6464,1, + 0,0,0,6310,6312,5,157,0,0,6311,6313,5,392,0,0,6312,6311,1,0,0,0, + 6312,6313,1,0,0,0,6313,6315,1,0,0,0,6314,6316,5,408,0,0,6315,6314, + 1,0,0,0,6315,6316,1,0,0,0,6316,6317,1,0,0,0,6317,6318,7,47,0,0,6318, + 6319,7,95,0,0,6319,6322,3,662,331,0,6320,6321,7,95,0,0,6321,6323, + 3,638,319,0,6322,6320,1,0,0,0,6322,6323,1,0,0,0,6323,6325,1,0,0, + 0,6324,6326,3,572,286,0,6325,6324,1,0,0,0,6325,6326,1,0,0,0,6326, + 6464,1,0,0,0,6327,6328,5,157,0,0,6328,6329,5,34,0,0,6329,6331,7, + 0,0,0,6330,6332,3,776,388,0,6331,6330,1,0,0,0,6331,6332,1,0,0,0, + 6332,6333,1,0,0,0,6333,6464,3,638,319,0,6334,6335,5,157,0,0,6335, + 6336,5,34,0,0,6336,6337,7,96,0,0,6337,6464,3,718,359,0,6338,6339, + 5,157,0,0,6339,6340,5,34,0,0,6340,6341,5,409,0,0,6341,6464,3,642, + 321,0,6342,6343,5,157,0,0,6343,6344,5,34,0,0,6344,6345,5,684,0,0, + 6345,6464,3,646,323,0,6346,6347,5,157,0,0,6347,6348,5,34,0,0,6348, + 6349,5,173,0,0,6349,6464,3,662,331,0,6350,6351,5,157,0,0,6351,6352, + 5,34,0,0,6352,6353,5,678,0,0,6353,6464,3,700,350,0,6354,6355,5,157, + 0,0,6355,6356,5,380,0,0,6356,6357,3,708,354,0,6357,6358,7,97,0,0, + 6358,6464,1,0,0,0,6359,6360,5,157,0,0,6360,6464,3,574,287,0,6361, + 6362,5,157,0,0,6362,6370,7,98,0,0,6363,6367,5,100,0,0,6364,6365, + 3,728,364,0,6365,6366,5,868,0,0,6366,6368,1,0,0,0,6367,6364,1,0, + 0,0,6367,6368,1,0,0,0,6368,6369,1,0,0,0,6369,6371,3,728,364,0,6370, + 6363,1,0,0,0,6370,6371,1,0,0,0,6371,6464,1,0,0,0,6372,6373,5,157, + 0,0,6373,6374,5,262,0,0,6374,6375,5,866,0,0,6375,6376,5,850,0,0, + 6376,6377,5,867,0,0,6377,6464,7,98,0,0,6378,6379,5,157,0,0,6379, + 6382,3,576,288,0,6380,6381,7,95,0,0,6381,6383,3,638,319,0,6382,6380, + 1,0,0,0,6382,6383,1,0,0,0,6383,6385,1,0,0,0,6384,6386,3,572,286, + 0,6385,6384,1,0,0,0,6385,6386,1,0,0,0,6386,6464,1,0,0,0,6387,6388, + 5,157,0,0,6388,6389,5,132,0,0,6389,6390,5,336,0,0,6390,6464,3,718, + 359,0,6391,6392,5,157,0,0,6392,6393,5,409,0,0,6393,6394,5,336,0, + 0,6394,6464,3,642,321,0,6395,6396,5,157,0,0,6396,6403,5,414,0,0, + 6397,6398,5,65,0,0,6398,6401,3,666,333,0,6399,6400,5,188,0,0,6400, + 6402,3,664,332,0,6401,6399,1,0,0,0,6401,6402,1,0,0,0,6402,6404,1, + 0,0,0,6403,6397,1,0,0,0,6403,6404,1,0,0,0,6404,6464,1,0,0,0,6405, + 6407,5,157,0,0,6406,6408,5,392,0,0,6407,6406,1,0,0,0,6407,6408,1, + 0,0,0,6408,6409,1,0,0,0,6409,6410,7,99,0,0,6410,6411,7,95,0,0,6411, + 6414,3,662,331,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,6418,1,0,0,0,6416,6417,5,192,0,0, + 6417,6419,3,820,410,0,6418,6416,1,0,0,0,6418,6419,1,0,0,0,6419,6464, + 1,0,0,0,6420,6421,5,157,0,0,6421,6422,5,516,0,0,6422,6425,5,752, + 0,0,6423,6424,7,95,0,0,6424,6426,3,638,319,0,6425,6423,1,0,0,0,6425, + 6426,1,0,0,0,6426,6428,1,0,0,0,6427,6429,3,572,286,0,6428,6427,1, + 0,0,0,6428,6429,1,0,0,0,6429,6464,1,0,0,0,6430,6431,5,157,0,0,6431, + 6440,5,545,0,0,6432,6437,3,578,289,0,6433,6434,5,868,0,0,6434,6436, + 3,578,289,0,6435,6433,1,0,0,0,6436,6439,1,0,0,0,6437,6435,1,0,0, + 0,6437,6438,1,0,0,0,6438,6441,1,0,0,0,6439,6437,1,0,0,0,6440,6432, + 1,0,0,0,6440,6441,1,0,0,0,6441,6445,1,0,0,0,6442,6443,5,65,0,0,6443, + 6444,5,548,0,0,6444,6446,3,728,364,0,6445,6442,1,0,0,0,6445,6446, + 1,0,0,0,6446,6453,1,0,0,0,6447,6448,5,100,0,0,6448,6451,3,728,364, + 0,6449,6450,5,509,0,0,6450,6452,3,728,364,0,6451,6449,1,0,0,0,6451, + 6452,1,0,0,0,6452,6454,1,0,0,0,6453,6447,1,0,0,0,6453,6454,1,0,0, + 0,6454,6464,1,0,0,0,6455,6456,5,157,0,0,6456,6457,7,64,0,0,6457, + 6459,5,645,0,0,6458,6460,3,400,200,0,6459,6458,1,0,0,0,6459,6460, + 1,0,0,0,6460,6464,1,0,0,0,6461,6462,5,157,0,0,6462,6464,5,564,0, + 0,6463,6279,1,0,0,0,6463,6282,1,0,0,0,6463,6305,1,0,0,0,6463,6310, + 1,0,0,0,6463,6327,1,0,0,0,6463,6334,1,0,0,0,6463,6338,1,0,0,0,6463, + 6342,1,0,0,0,6463,6346,1,0,0,0,6463,6350,1,0,0,0,6463,6354,1,0,0, + 0,6463,6359,1,0,0,0,6463,6361,1,0,0,0,6463,6372,1,0,0,0,6463,6378, + 1,0,0,0,6463,6387,1,0,0,0,6463,6391,1,0,0,0,6463,6395,1,0,0,0,6463, + 6405,1,0,0,0,6463,6420,1,0,0,0,6463,6430,1,0,0,0,6463,6455,1,0,0, + 0,6463,6461,1,0,0,0,6464,567,1,0,0,0,6465,6476,5,892,0,0,6466,6476, + 5,893,0,0,6467,6468,5,870,0,0,6468,6470,5,870,0,0,6469,6467,1,0, + 0,0,6469,6470,1,0,0,0,6470,6471,1,0,0,0,6471,6473,7,100,0,0,6472, + 6469,1,0,0,0,6472,6473,1,0,0,0,6473,6474,1,0,0,0,6474,6476,3,722, + 361,0,6475,6465,1,0,0,0,6475,6466,1,0,0,0,6475,6472,1,0,0,0,6476, + 569,1,0,0,0,6477,6478,5,26,0,0,6478,6492,5,155,0,0,6479,6492,5,823, + 0,0,6480,6492,5,824,0,0,6481,6492,5,40,0,0,6482,6492,5,153,0,0,6483, + 6484,5,409,0,0,6484,6492,5,645,0,0,6485,6486,5,132,0,0,6486,6492, + 5,645,0,0,6487,6489,7,62,0,0,6488,6487,1,0,0,0,6488,6489,1,0,0,0, + 6489,6490,1,0,0,0,6490,6492,7,101,0,0,6491,6477,1,0,0,0,6491,6479, + 1,0,0,0,6491,6480,1,0,0,0,6491,6481,1,0,0,0,6491,6482,1,0,0,0,6491, + 6483,1,0,0,0,6491,6485,1,0,0,0,6491,6488,1,0,0,0,6492,571,1,0,0, + 0,6493,6494,5,99,0,0,6494,6498,5,882,0,0,6495,6496,5,192,0,0,6496, + 6498,3,820,410,0,6497,6493,1,0,0,0,6497,6495,1,0,0,0,6498,573,1, + 0,0,0,6499,6501,5,647,0,0,6500,6499,1,0,0,0,6500,6501,1,0,0,0,6501, + 6502,1,0,0,0,6502,6517,5,381,0,0,6503,6504,5,453,0,0,6504,6517,5, + 645,0,0,6505,6517,5,536,0,0,6506,6517,5,734,0,0,6507,6509,5,408, + 0,0,6508,6507,1,0,0,0,6508,6509,1,0,0,0,6509,6510,1,0,0,0,6510,6517, + 5,544,0,0,6511,6517,5,546,0,0,6512,6513,5,598,0,0,6513,6517,5,422, + 0,0,6514,6517,5,312,0,0,6515,6517,5,356,0,0,6516,6500,1,0,0,0,6516, + 6503,1,0,0,0,6516,6505,1,0,0,0,6516,6506,1,0,0,0,6516,6508,1,0,0, + 0,6516,6511,1,0,0,0,6516,6512,1,0,0,0,6516,6514,1,0,0,0,6516,6515, + 1,0,0,0,6517,575,1,0,0,0,6518,6530,5,386,0,0,6519,6520,5,173,0,0, + 6520,6530,5,645,0,0,6521,6523,5,392,0,0,6522,6521,1,0,0,0,6522,6523, + 1,0,0,0,6523,6525,1,0,0,0,6524,6526,5,408,0,0,6525,6524,1,0,0,0, + 6525,6526,1,0,0,0,6526,6527,1,0,0,0,6527,6530,5,752,0,0,6528,6530, + 5,667,0,0,6529,6518,1,0,0,0,6529,6519,1,0,0,0,6529,6522,1,0,0,0, + 6529,6528,1,0,0,0,6530,577,1,0,0,0,6531,6544,5,7,0,0,6532,6533,5, + 320,0,0,6533,6544,5,437,0,0,6534,6535,5,355,0,0,6535,6544,5,656, + 0,0,6536,6544,5,358,0,0,6537,6544,5,439,0,0,6538,6544,5,802,0,0, + 6539,6540,5,521,0,0,6540,6544,5,397,0,0,6541,6544,5,605,0,0,6542, + 6544,5,655,0,0,6543,6531,1,0,0,0,6543,6532,1,0,0,0,6543,6534,1,0, + 0,0,6543,6536,1,0,0,0,6543,6537,1,0,0,0,6543,6538,1,0,0,0,6543,6539, + 1,0,0,0,6543,6541,1,0,0,0,6543,6542,1,0,0,0,6544,579,1,0,0,0,6545, + 6546,5,318,0,0,6546,6547,5,882,0,0,6547,581,1,0,0,0,6548,6549,5, + 324,0,0,6549,6567,5,82,0,0,6550,6555,3,602,301,0,6551,6552,5,868, + 0,0,6552,6554,3,602,301,0,6553,6551,1,0,0,0,6554,6557,1,0,0,0,6555, + 6553,1,0,0,0,6555,6556,1,0,0,0,6556,6568,1,0,0,0,6557,6555,1,0,0, + 0,6558,6559,3,662,331,0,6559,6560,5,130,0,0,6560,6563,5,866,0,0, + 6561,6564,3,686,343,0,6562,6564,5,7,0,0,6563,6561,1,0,0,0,6563,6562, + 1,0,0,0,6564,6565,1,0,0,0,6565,6566,5,867,0,0,6566,6568,1,0,0,0, + 6567,6550,1,0,0,0,6567,6558,1,0,0,0,6568,6569,1,0,0,0,6569,6570, + 5,80,0,0,6570,6571,3,638,319,0,6571,583,1,0,0,0,6572,6574,5,404, + 0,0,6573,6575,3,548,274,0,6574,6573,1,0,0,0,6574,6575,1,0,0,0,6575, + 6576,1,0,0,0,6576,6581,3,604,302,0,6577,6578,5,868,0,0,6578,6580, + 3,604,302,0,6579,6577,1,0,0,0,6580,6583,1,0,0,0,6581,6579,1,0,0, + 0,6581,6582,1,0,0,0,6582,585,1,0,0,0,6583,6581,1,0,0,0,6584,6586, + 5,94,0,0,6585,6587,7,102,0,0,6586,6585,1,0,0,0,6586,6587,1,0,0,0, + 6587,6588,1,0,0,0,6588,6589,3,820,410,0,6589,587,1,0,0,0,6590,6591, + 5,103,0,0,6591,6592,5,82,0,0,6592,6593,5,88,0,0,6593,6594,5,324, + 0,0,6594,6599,3,608,304,0,6595,6596,5,868,0,0,6596,6598,3,608,304, + 0,6597,6595,1,0,0,0,6598,6601,1,0,0,0,6599,6597,1,0,0,0,6599,6600, + 1,0,0,0,6600,589,1,0,0,0,6601,6599,1,0,0,0,6602,6603,5,575,0,0,6603, + 6608,3,592,296,0,6604,6605,5,868,0,0,6605,6607,3,592,296,0,6606, + 6604,1,0,0,0,6607,6610,1,0,0,0,6608,6606,1,0,0,0,6608,6609,1,0,0, + 0,6609,591,1,0,0,0,6610,6608,1,0,0,0,6611,6617,5,453,0,0,6612,6617, + 5,563,0,0,6613,6614,5,548,0,0,6614,6617,5,324,0,0,6615,6617,5,598, + 0,0,6616,6611,1,0,0,0,6616,6612,1,0,0,0,6616,6613,1,0,0,0,6616,6615, + 1,0,0,0,6617,593,1,0,0,0,6618,6619,5,575,0,0,6619,6624,5,531,0,0, + 6620,6622,3,774,387,0,6621,6620,1,0,0,0,6621,6622,1,0,0,0,6622,6623, + 1,0,0,0,6623,6625,3,722,361,0,6624,6621,1,0,0,0,6624,6625,1,0,0, + 0,6625,595,1,0,0,0,6626,6627,5,575,0,0,6627,6629,7,64,0,0,6628,6630, + 5,7,0,0,6629,6628,1,0,0,0,6629,6630,1,0,0,0,6630,6632,1,0,0,0,6631, + 6633,3,400,200,0,6632,6631,1,0,0,0,6632,6633,1,0,0,0,6633,597,1, + 0,0,0,6634,6635,5,576,0,0,6635,599,1,0,0,0,6636,6637,5,749,0,0,6637, + 601,1,0,0,0,6638,6644,3,662,331,0,6639,6640,7,19,0,0,6640,6641,5, + 866,0,0,6641,6642,3,650,325,0,6642,6643,5,867,0,0,6643,6645,1,0, + 0,0,6644,6639,1,0,0,0,6644,6645,1,0,0,0,6645,603,1,0,0,0,6646,6665, + 5,366,0,0,6647,6665,5,422,0,0,6648,6650,7,103,0,0,6649,6648,1,0, + 0,0,6649,6650,1,0,0,0,6650,6651,1,0,0,0,6651,6665,5,452,0,0,6652, + 6665,5,517,0,0,6653,6665,5,734,0,0,6654,6655,5,548,0,0,6655,6665, + 5,324,0,0,6656,6665,5,645,0,0,6657,6665,5,680,0,0,6658,6662,5,752, + 0,0,6659,6660,5,194,0,0,6660,6661,5,135,0,0,6661,6663,5,104,0,0, + 6662,6659,1,0,0,0,6662,6663,1,0,0,0,6663,6665,1,0,0,0,6664,6646, + 1,0,0,0,6664,6647,1,0,0,0,6664,6649,1,0,0,0,6664,6652,1,0,0,0,6664, + 6653,1,0,0,0,6664,6654,1,0,0,0,6664,6656,1,0,0,0,6664,6657,1,0,0, + 0,6664,6658,1,0,0,0,6665,6679,1,0,0,0,6666,6667,5,556,0,0,6667,6669, + 5,452,0,0,6668,6670,3,400,200,0,6669,6668,1,0,0,0,6669,6670,1,0, + 0,0,6670,6679,1,0,0,0,6671,6673,7,61,0,0,6672,6674,3,660,330,0,6673, + 6672,1,0,0,0,6673,6674,1,0,0,0,6674,6676,1,0,0,0,6675,6677,3,606, + 303,0,6676,6675,1,0,0,0,6676,6677,1,0,0,0,6677,6679,1,0,0,0,6678, + 6664,1,0,0,0,6678,6666,1,0,0,0,6678,6671,1,0,0,0,6679,605,1,0,0, + 0,6680,6681,5,194,0,0,6681,6682,5,135,0,0,6682,6686,5,104,0,0,6683, + 6684,5,65,0,0,6684,6686,5,391,0,0,6685,6680,1,0,0,0,6685,6683,1, + 0,0,0,6686,607,1,0,0,0,6687,6695,3,662,331,0,6688,6689,5,130,0,0, + 6689,6692,5,866,0,0,6690,6693,3,686,343,0,6691,6693,5,7,0,0,6692, + 6690,1,0,0,0,6692,6691,1,0,0,0,6693,6694,1,0,0,0,6694,6696,5,867, + 0,0,6695,6688,1,0,0,0,6695,6696,1,0,0,0,6696,6704,1,0,0,0,6697,6699, + 7,19,0,0,6698,6697,1,0,0,0,6698,6699,1,0,0,0,6699,6700,1,0,0,0,6700, + 6701,5,866,0,0,6701,6702,3,650,325,0,6702,6703,5,867,0,0,6703,6705, + 1,0,0,0,6704,6698,1,0,0,0,6704,6705,1,0,0,0,6705,6708,1,0,0,0,6706, + 6707,5,79,0,0,6707,6709,5,446,0,0,6708,6706,1,0,0,0,6708,6709,1, + 0,0,0,6709,609,1,0,0,0,6710,6711,7,104,0,0,6711,6714,3,662,331,0, + 6712,6715,3,674,337,0,6713,6715,5,882,0,0,6714,6712,1,0,0,0,6714, + 6713,1,0,0,0,6714,6715,1,0,0,0,6715,611,1,0,0,0,6716,6722,7,104, + 0,0,6717,6723,5,392,0,0,6718,6723,5,528,0,0,6719,6720,5,826,0,0, + 6720,6721,5,857,0,0,6721,6723,7,105,0,0,6722,6717,1,0,0,0,6722,6718, + 1,0,0,0,6722,6719,1,0,0,0,6722,6723,1,0,0,0,6723,6724,1,0,0,0,6724, + 6725,3,634,317,0,6725,613,1,0,0,0,6726,6727,7,104,0,0,6727,6731, + 5,10,0,0,6728,6729,5,826,0,0,6729,6730,5,857,0,0,6730,6732,5,666, + 0,0,6731,6728,1,0,0,0,6731,6732,1,0,0,0,6732,6733,1,0,0,0,6733,6734, + 3,210,105,0,6734,615,1,0,0,0,6735,6736,5,419,0,0,6736,6737,5,882, + 0,0,6737,617,1,0,0,0,6738,6739,5,187,0,0,6739,6740,3,638,319,0,6740, + 619,1,0,0,0,6741,6749,5,158,0,0,6742,6744,5,164,0,0,6743,6745,5, + 682,0,0,6744,6743,1,0,0,0,6744,6745,1,0,0,0,6745,6746,1,0,0,0,6746, + 6750,3,732,366,0,6747,6750,5,889,0,0,6748,6750,5,890,0,0,6749,6742, + 1,0,0,0,6749,6747,1,0,0,0,6749,6748,1,0,0,0,6750,6760,1,0,0,0,6751, + 6752,5,155,0,0,6752,6757,3,624,312,0,6753,6754,5,868,0,0,6754,6756, + 3,624,312,0,6755,6753,1,0,0,0,6756,6759,1,0,0,0,6757,6755,1,0,0, + 0,6757,6758,1,0,0,0,6758,6761,1,0,0,0,6759,6757,1,0,0,0,6760,6751, + 1,0,0,0,6760,6761,1,0,0,0,6761,621,1,0,0,0,6762,6770,5,145,0,0,6763, + 6765,5,164,0,0,6764,6766,5,682,0,0,6765,6764,1,0,0,0,6765,6766,1, + 0,0,0,6766,6767,1,0,0,0,6767,6771,3,732,366,0,6768,6771,5,889,0, + 0,6769,6771,5,890,0,0,6770,6763,1,0,0,0,6770,6768,1,0,0,0,6770,6769, + 1,0,0,0,6770,6771,1,0,0,0,6771,6781,1,0,0,0,6772,6773,5,155,0,0, + 6773,6778,3,624,312,0,6774,6775,5,868,0,0,6775,6777,3,624,312,0, + 6776,6774,1,0,0,0,6777,6780,1,0,0,0,6778,6776,1,0,0,0,6778,6779, + 1,0,0,0,6779,6782,1,0,0,0,6780,6778,1,0,0,0,6781,6772,1,0,0,0,6781, + 6782,1,0,0,0,6782,623,1,0,0,0,6783,6784,7,106,0,0,6784,6789,5,857, + 0,0,6785,6790,3,732,366,0,6786,6790,5,883,0,0,6787,6790,3,702,351, + 0,6788,6790,3,724,362,0,6789,6785,1,0,0,0,6789,6786,1,0,0,0,6789, + 6787,1,0,0,0,6789,6788,1,0,0,0,6790,625,1,0,0,0,6791,6793,5,194, + 0,0,6792,6794,5,552,0,0,6793,6792,1,0,0,0,6793,6794,1,0,0,0,6794, + 6795,1,0,0,0,6795,6800,3,52,26,0,6796,6797,5,868,0,0,6797,6799,3, + 52,26,0,6798,6796,1,0,0,0,6799,6802,1,0,0,0,6800,6798,1,0,0,0,6800, + 6801,1,0,0,0,6801,627,1,0,0,0,6802,6800,1,0,0,0,6803,6804,5,173, + 0,0,6804,6806,3,662,331,0,6805,6807,3,258,129,0,6806,6805,1,0,0, + 0,6806,6807,1,0,0,0,6807,6809,1,0,0,0,6808,6810,3,328,164,0,6809, + 6808,1,0,0,0,6809,6810,1,0,0,0,6810,629,1,0,0,0,6811,6813,5,72,0, + 0,6812,6814,7,107,0,0,6813,6812,1,0,0,0,6813,6814,1,0,0,0,6814,6815, + 1,0,0,0,6815,6847,5,48,0,0,6816,6817,3,568,284,0,6817,6818,5,857, + 0,0,6818,6826,7,108,0,0,6819,6820,5,868,0,0,6820,6821,3,568,284, + 0,6821,6822,5,857,0,0,6822,6823,7,108,0,0,6823,6825,1,0,0,0,6824, + 6819,1,0,0,0,6825,6828,1,0,0,0,6826,6824,1,0,0,0,6826,6827,1,0,0, + 0,6827,6848,1,0,0,0,6828,6826,1,0,0,0,6829,6832,5,30,0,0,6830,6833, + 3,728,364,0,6831,6833,3,568,284,0,6832,6830,1,0,0,0,6832,6831,1, + 0,0,0,6833,6834,1,0,0,0,6834,6835,3,568,284,0,6835,6836,5,857,0, + 0,6836,6844,3,632,316,0,6837,6838,5,868,0,0,6838,6839,3,568,284, + 0,6839,6840,5,857,0,0,6840,6841,3,632,316,0,6841,6843,1,0,0,0,6842, + 6837,1,0,0,0,6843,6846,1,0,0,0,6844,6842,1,0,0,0,6844,6845,1,0,0, + 0,6845,6848,1,0,0,0,6846,6844,1,0,0,0,6847,6816,1,0,0,0,6847,6829, + 1,0,0,0,6848,631,1,0,0,0,6849,6850,7,109,0,0,6850,633,1,0,0,0,6851, + 6857,3,210,105,0,6852,6857,3,186,93,0,6853,6857,3,192,96,0,6854, + 6857,3,208,104,0,6855,6857,3,220,110,0,6856,6851,1,0,0,0,6856,6852, + 1,0,0,0,6856,6853,1,0,0,0,6856,6854,1,0,0,0,6856,6855,1,0,0,0,6857, + 6862,1,0,0,0,6858,6859,5,65,0,0,6859,6860,5,349,0,0,6860,6862,3, + 722,361,0,6861,6856,1,0,0,0,6861,6858,1,0,0,0,6862,635,1,0,0,0,6863, + 6864,3,718,359,0,6864,637,1,0,0,0,6865,6866,3,718,359,0,6866,639, + 1,0,0,0,6867,6868,3,718,359,0,6868,641,1,0,0,0,6869,6870,3,718,359, + 0,6870,643,1,0,0,0,6871,6872,3,718,359,0,6872,645,1,0,0,0,6873,6874, + 3,718,359,0,6874,647,1,0,0,0,6875,6876,3,722,361,0,6876,649,1,0, + 0,0,6877,6882,3,652,326,0,6878,6879,5,868,0,0,6879,6881,3,652,326, + 0,6880,6878,1,0,0,0,6881,6884,1,0,0,0,6882,6880,1,0,0,0,6882,6883, + 1,0,0,0,6883,651,1,0,0,0,6884,6882,1,0,0,0,6885,6886,3,722,361,0, + 6886,653,1,0,0,0,6887,6888,3,722,361,0,6888,655,1,0,0,0,6889,6890, + 3,722,361,0,6890,657,1,0,0,0,6891,6892,3,718,359,0,6892,659,1,0, + 0,0,6893,6898,3,662,331,0,6894,6895,5,868,0,0,6895,6897,3,662,331, + 0,6896,6894,1,0,0,0,6897,6900,1,0,0,0,6898,6896,1,0,0,0,6898,6899, + 1,0,0,0,6899,661,1,0,0,0,6900,6898,1,0,0,0,6901,6902,3,718,359,0, + 6902,663,1,0,0,0,6903,6908,3,666,333,0,6904,6905,5,868,0,0,6905, + 6907,3,666,333,0,6906,6904,1,0,0,0,6907,6910,1,0,0,0,6908,6906,1, + 0,0,0,6908,6909,1,0,0,0,6909,665,1,0,0,0,6910,6908,1,0,0,0,6911, + 6914,3,700,350,0,6912,6914,3,722,361,0,6913,6911,1,0,0,0,6913,6912, + 1,0,0,0,6914,667,1,0,0,0,6915,6920,3,722,361,0,6916,6918,3,726,363, + 0,6917,6919,3,726,363,0,6918,6917,1,0,0,0,6918,6919,1,0,0,0,6919, + 6921,1,0,0,0,6920,6916,1,0,0,0,6920,6921,1,0,0,0,6921,6930,1,0,0, + 0,6922,6924,9,0,0,0,6923,6922,1,0,0,0,6923,6924,1,0,0,0,6924,6925, + 1,0,0,0,6925,6927,3,726,363,0,6926,6928,3,726,363,0,6927,6926,1, + 0,0,0,6927,6928,1,0,0,0,6928,6930,1,0,0,0,6929,6915,1,0,0,0,6929, + 6923,1,0,0,0,6930,669,1,0,0,0,6931,6936,3,674,337,0,6932,6933,5, + 868,0,0,6933,6935,3,674,337,0,6934,6932,1,0,0,0,6935,6938,1,0,0, + 0,6936,6934,1,0,0,0,6936,6937,1,0,0,0,6937,671,1,0,0,0,6938,6936, + 1,0,0,0,6939,6940,1,0,0,0,6940,673,1,0,0,0,6941,6946,3,722,361,0, + 6942,6944,3,726,363,0,6943,6945,3,726,363,0,6944,6943,1,0,0,0,6944, + 6945,1,0,0,0,6945,6947,1,0,0,0,6946,6942,1,0,0,0,6946,6947,1,0,0, + 0,6947,6958,1,0,0,0,6948,6950,9,0,0,0,6949,6948,1,0,0,0,6949,6950, + 1,0,0,0,6950,6951,1,0,0,0,6951,6953,3,726,363,0,6952,6954,3,726, + 363,0,6953,6952,1,0,0,0,6953,6954,1,0,0,0,6954,6958,1,0,0,0,6955, + 6956,4,337,4,0,6956,6958,3,672,336,0,6957,6941,1,0,0,0,6957,6949, + 1,0,0,0,6957,6955,1,0,0,0,6958,675,1,0,0,0,6959,6964,3,722,361,0, + 6960,6962,3,726,363,0,6961,6963,3,726,363,0,6962,6961,1,0,0,0,6962, + 6963,1,0,0,0,6963,6965,1,0,0,0,6964,6960,1,0,0,0,6964,6965,1,0,0, + 0,6965,6979,1,0,0,0,6966,6968,9,0,0,0,6967,6966,1,0,0,0,6967,6968, + 1,0,0,0,6968,6969,1,0,0,0,6969,6971,3,726,363,0,6970,6972,3,726, + 363,0,6971,6970,1,0,0,0,6971,6972,1,0,0,0,6972,6979,1,0,0,0,6973, + 6974,3,722,361,0,6974,6975,5,865,0,0,6975,6976,4,338,5,0,6976,6977, + 3,672,336,0,6977,6979,1,0,0,0,6978,6959,1,0,0,0,6978,6967,1,0,0, + 0,6978,6973,1,0,0,0,6979,677,1,0,0,0,6980,6984,3,676,338,0,6981, + 6982,4,339,6,0,6982,6984,3,672,336,0,6983,6980,1,0,0,0,6983,6981, + 1,0,0,0,6984,679,1,0,0,0,6985,6986,3,722,361,0,6986,681,1,0,0,0, + 6987,6988,3,722,361,0,6988,683,1,0,0,0,6989,6990,3,722,361,0,6990, + 685,1,0,0,0,6991,6996,3,688,344,0,6992,6993,5,868,0,0,6993,6995, + 3,688,344,0,6994,6992,1,0,0,0,6995,6998,1,0,0,0,6996,6994,1,0,0, + 0,6996,6997,1,0,0,0,6997,687,1,0,0,0,6998,6996,1,0,0,0,6999,7000, + 3,722,361,0,7000,689,1,0,0,0,7001,7006,3,722,361,0,7002,7003,5,866, + 0,0,7003,7004,3,728,364,0,7004,7005,5,867,0,0,7005,7007,1,0,0,0, + 7006,7002,1,0,0,0,7006,7007,1,0,0,0,7007,7010,1,0,0,0,7008,7010, + 3,820,410,0,7009,7001,1,0,0,0,7009,7008,1,0,0,0,7010,7012,1,0,0, + 0,7011,7013,7,55,0,0,7012,7011,1,0,0,0,7012,7013,1,0,0,0,7013,691, + 1,0,0,0,7014,7015,3,694,347,0,7015,7016,5,878,0,0,7016,7017,3,728, + 364,0,7017,693,1,0,0,0,7018,7019,3,696,348,0,7019,7020,5,891,0,0, + 7020,695,1,0,0,0,7021,7026,5,882,0,0,7022,7026,5,889,0,0,7023,7026, + 5,704,0,0,7024,7026,3,850,425,0,7025,7021,1,0,0,0,7025,7022,1,0, + 0,0,7025,7023,1,0,0,0,7025,7024,1,0,0,0,7026,697,1,0,0,0,7027,7028, + 7,110,0,0,7028,699,1,0,0,0,7029,7031,3,696,348,0,7030,7032,3,698, + 349,0,7031,7030,1,0,0,0,7031,7032,1,0,0,0,7032,7035,1,0,0,0,7033, + 7035,3,60,30,0,7034,7029,1,0,0,0,7034,7033,1,0,0,0,7035,701,1,0, + 0,0,7036,7037,7,111,0,0,7037,703,1,0,0,0,7038,7043,5,228,0,0,7039, + 7043,3,840,420,0,7040,7043,5,882,0,0,7041,7043,5,879,0,0,7042,7038, + 1,0,0,0,7042,7039,1,0,0,0,7042,7040,1,0,0,0,7042,7041,1,0,0,0,7043, + 705,1,0,0,0,7044,7045,3,722,361,0,7045,707,1,0,0,0,7046,7050,3,710, + 355,0,7047,7050,5,889,0,0,7048,7050,5,882,0,0,7049,7046,1,0,0,0, + 7049,7047,1,0,0,0,7049,7048,1,0,0,0,7050,709,1,0,0,0,7051,7052,7, + 112,0,0,7052,711,1,0,0,0,7053,7054,3,728,364,0,7054,7055,5,854,0, + 0,7055,7056,3,728,364,0,7056,7057,5,854,0,0,7057,7058,3,728,364, + 0,7058,7059,5,854,0,0,7059,7060,3,728,364,0,7060,7061,5,854,0,0, + 7061,7067,3,728,364,0,7062,7063,5,878,0,0,7063,7064,3,728,364,0, + 7064,7065,5,854,0,0,7065,7066,3,728,364,0,7066,7068,1,0,0,0,7067, + 7062,1,0,0,0,7068,7069,1,0,0,0,7069,7067,1,0,0,0,7069,7070,1,0,0, + 0,7070,713,1,0,0,0,7071,7078,3,716,358,0,7072,7073,5,868,0,0,7073, + 7076,3,716,358,0,7074,7075,5,868,0,0,7075,7077,3,728,364,0,7076, + 7074,1,0,0,0,7076,7077,1,0,0,0,7077,7079,1,0,0,0,7078,7072,1,0,0, + 0,7078,7079,1,0,0,0,7079,715,1,0,0,0,7080,7088,5,882,0,0,7081,7088, + 5,887,0,0,7082,7084,5,884,0,0,7083,7082,1,0,0,0,7084,7085,1,0,0, + 0,7085,7083,1,0,0,0,7085,7086,1,0,0,0,7086,7088,1,0,0,0,7087,7080, + 1,0,0,0,7087,7081,1,0,0,0,7087,7083,1,0,0,0,7088,717,1,0,0,0,7089, + 7091,3,722,361,0,7090,7092,3,726,363,0,7091,7090,1,0,0,0,7091,7092, + 1,0,0,0,7092,719,1,0,0,0,7093,7098,3,722,361,0,7094,7095,5,868,0, + 0,7095,7097,3,722,361,0,7096,7094,1,0,0,0,7097,7100,1,0,0,0,7098, + 7096,1,0,0,0,7098,7099,1,0,0,0,7099,721,1,0,0,0,7100,7098,1,0,0, + 0,7101,7105,3,724,362,0,7102,7105,5,879,0,0,7103,7105,5,882,0,0, + 7104,7101,1,0,0,0,7104,7102,1,0,0,0,7104,7103,1,0,0,0,7105,723,1, + 0,0,0,7106,7116,5,889,0,0,7107,7116,3,840,420,0,7108,7116,3,842, + 421,0,7109,7116,3,710,355,0,7110,7116,3,844,422,0,7111,7116,3,846, + 423,0,7112,7116,3,848,424,0,7113,7116,3,850,425,0,7114,7116,3,812, + 406,0,7115,7106,1,0,0,0,7115,7107,1,0,0,0,7115,7108,1,0,0,0,7115, + 7109,1,0,0,0,7115,7110,1,0,0,0,7115,7111,1,0,0,0,7115,7112,1,0,0, + 0,7115,7113,1,0,0,0,7115,7114,1,0,0,0,7116,725,1,0,0,0,7117,7118, + 5,865,0,0,7118,7122,5,889,0,0,7119,7120,5,865,0,0,7120,7122,3,722, + 361,0,7121,7117,1,0,0,0,7121,7119,1,0,0,0,7122,727,1,0,0,0,7123, + 7124,7,113,0,0,7124,729,1,0,0,0,7125,7128,5,880,0,0,7126,7128,3, + 728,364,0,7127,7125,1,0,0,0,7127,7126,1,0,0,0,7128,731,1,0,0,0,7129, + 7131,5,888,0,0,7130,7129,1,0,0,0,7130,7131,1,0,0,0,7131,7132,1,0, + 0,0,7132,7135,5,882,0,0,7133,7135,5,881,0,0,7134,7130,1,0,0,0,7134, + 7133,1,0,0,0,7135,7137,1,0,0,0,7136,7138,5,882,0,0,7137,7136,1,0, + 0,0,7138,7139,1,0,0,0,7139,7137,1,0,0,0,7139,7140,1,0,0,0,7140,7153, + 1,0,0,0,7141,7143,5,888,0,0,7142,7141,1,0,0,0,7142,7143,1,0,0,0, + 7143,7144,1,0,0,0,7144,7147,5,882,0,0,7145,7147,5,881,0,0,7146,7142, + 1,0,0,0,7146,7145,1,0,0,0,7147,7150,1,0,0,0,7148,7149,5,28,0,0,7149, + 7151,3,706,353,0,7150,7148,1,0,0,0,7150,7151,1,0,0,0,7151,7153,1, + 0,0,0,7152,7134,1,0,0,0,7152,7146,1,0,0,0,7153,733,1,0,0,0,7154, + 7155,7,114,0,0,7155,735,1,0,0,0,7156,7158,5,888,0,0,7157,7156,1, + 0,0,0,7157,7158,1,0,0,0,7158,7159,1,0,0,0,7159,7160,5,884,0,0,7160, + 737,1,0,0,0,7161,7163,5,114,0,0,7162,7161,1,0,0,0,7162,7163,1,0, + 0,0,7163,7164,1,0,0,0,7164,7165,7,115,0,0,7165,739,1,0,0,0,7166, + 7179,3,732,366,0,7167,7179,3,728,364,0,7168,7169,5,854,0,0,7169, + 7179,3,728,364,0,7170,7179,3,736,368,0,7171,7179,3,734,367,0,7172, + 7179,5,885,0,0,7173,7179,5,887,0,0,7174,7176,5,114,0,0,7175,7174, + 1,0,0,0,7175,7176,1,0,0,0,7176,7177,1,0,0,0,7177,7179,7,115,0,0, + 7178,7166,1,0,0,0,7178,7167,1,0,0,0,7178,7168,1,0,0,0,7178,7170, + 1,0,0,0,7178,7171,1,0,0,0,7178,7172,1,0,0,0,7178,7173,1,0,0,0,7178, + 7175,1,0,0,0,7179,741,1,0,0,0,7180,7182,7,116,0,0,7181,7183,5,240, + 0,0,7182,7181,1,0,0,0,7182,7183,1,0,0,0,7183,7185,1,0,0,0,7184,7186, + 3,748,374,0,7185,7184,1,0,0,0,7185,7186,1,0,0,0,7186,7188,1,0,0, + 0,7187,7189,5,228,0,0,7188,7187,1,0,0,0,7188,7189,1,0,0,0,7189,7193, + 1,0,0,0,7190,7191,3,58,29,0,7191,7192,3,704,352,0,7192,7194,1,0, + 0,0,7193,7190,1,0,0,0,7193,7194,1,0,0,0,7194,7198,1,0,0,0,7195,7196, + 5,28,0,0,7196,7199,3,706,353,0,7197,7199,5,228,0,0,7198,7195,1,0, + 0,0,7198,7197,1,0,0,0,7198,7199,1,0,0,0,7199,7307,1,0,0,0,7200,7201, + 5,227,0,0,7201,7202,7,117,0,0,7202,7204,5,240,0,0,7203,7205,3,748, + 374,0,7204,7203,1,0,0,0,7204,7205,1,0,0,0,7205,7207,1,0,0,0,7206, + 7208,5,228,0,0,7207,7206,1,0,0,0,7207,7208,1,0,0,0,7208,7307,1,0, + 0,0,7209,7210,5,227,0,0,7210,7212,7,118,0,0,7211,7213,3,748,374, + 0,7212,7211,1,0,0,0,7212,7213,1,0,0,0,7213,7215,1,0,0,0,7214,7216, + 5,228,0,0,7215,7214,1,0,0,0,7215,7216,1,0,0,0,7216,7307,1,0,0,0, + 7217,7218,5,498,0,0,7218,7220,5,225,0,0,7219,7221,3,748,374,0,7220, + 7219,1,0,0,0,7220,7221,1,0,0,0,7221,7223,1,0,0,0,7222,7224,5,228, + 0,0,7223,7222,1,0,0,0,7223,7224,1,0,0,0,7224,7307,1,0,0,0,7225,7227, + 7,119,0,0,7226,7228,3,748,374,0,7227,7226,1,0,0,0,7227,7228,1,0, + 0,0,7228,7232,1,0,0,0,7229,7231,7,120,0,0,7230,7229,1,0,0,0,7231, + 7234,1,0,0,0,7232,7230,1,0,0,0,7232,7233,1,0,0,0,7233,7307,1,0,0, + 0,7234,7232,1,0,0,0,7235,7237,5,210,0,0,7236,7238,3,750,375,0,7237, + 7236,1,0,0,0,7237,7238,1,0,0,0,7238,7242,1,0,0,0,7239,7241,7,120, + 0,0,7240,7239,1,0,0,0,7241,7244,1,0,0,0,7242,7240,1,0,0,0,7242,7243, + 1,0,0,0,7243,7307,1,0,0,0,7244,7242,1,0,0,0,7245,7247,5,211,0,0, + 7246,7248,5,212,0,0,7247,7246,1,0,0,0,7247,7248,1,0,0,0,7248,7250, + 1,0,0,0,7249,7251,3,750,375,0,7250,7249,1,0,0,0,7250,7251,1,0,0, + 0,7251,7255,1,0,0,0,7252,7254,7,120,0,0,7253,7252,1,0,0,0,7254,7257, + 1,0,0,0,7255,7253,1,0,0,0,7255,7256,1,0,0,0,7256,7307,1,0,0,0,7257, + 7255,1,0,0,0,7258,7260,7,121,0,0,7259,7261,3,752,376,0,7260,7259, + 1,0,0,0,7260,7261,1,0,0,0,7261,7265,1,0,0,0,7262,7264,7,120,0,0, + 7263,7262,1,0,0,0,7264,7267,1,0,0,0,7265,7263,1,0,0,0,7265,7266, + 1,0,0,0,7266,7307,1,0,0,0,7267,7265,1,0,0,0,7268,7307,7,122,0,0, + 7269,7271,7,123,0,0,7270,7272,3,748,374,0,7271,7270,1,0,0,0,7271, + 7272,1,0,0,0,7272,7307,1,0,0,0,7273,7274,7,124,0,0,7274,7276,3,744, + 372,0,7275,7277,5,228,0,0,7276,7275,1,0,0,0,7276,7277,1,0,0,0,7277, + 7281,1,0,0,0,7278,7279,3,58,29,0,7279,7280,3,704,352,0,7280,7282, + 1,0,0,0,7281,7278,1,0,0,0,7281,7282,1,0,0,0,7282,7307,1,0,0,0,7283, + 7286,7,125,0,0,7284,7285,5,834,0,0,7285,7287,3,728,364,0,7286,7284, + 1,0,0,0,7286,7287,1,0,0,0,7287,7307,1,0,0,0,7288,7290,5,233,0,0, + 7289,7291,5,225,0,0,7290,7289,1,0,0,0,7290,7291,1,0,0,0,7291,7293, + 1,0,0,0,7292,7294,5,228,0,0,7293,7292,1,0,0,0,7293,7294,1,0,0,0, + 7294,7298,1,0,0,0,7295,7296,3,58,29,0,7296,7297,3,704,352,0,7297, + 7299,1,0,0,0,7298,7295,1,0,0,0,7298,7299,1,0,0,0,7299,7302,1,0,0, + 0,7300,7301,5,28,0,0,7301,7303,3,706,353,0,7302,7300,1,0,0,0,7302, + 7303,1,0,0,0,7303,7307,1,0,0,0,7304,7305,5,233,0,0,7305,7307,5,229, + 0,0,7306,7180,1,0,0,0,7306,7200,1,0,0,0,7306,7209,1,0,0,0,7306,7217, + 1,0,0,0,7306,7225,1,0,0,0,7306,7235,1,0,0,0,7306,7245,1,0,0,0,7306, + 7258,1,0,0,0,7306,7268,1,0,0,0,7306,7269,1,0,0,0,7306,7273,1,0,0, + 0,7306,7283,1,0,0,0,7306,7288,1,0,0,0,7306,7304,1,0,0,0,7307,743, + 1,0,0,0,7308,7309,5,866,0,0,7309,7314,5,882,0,0,7310,7311,5,868, + 0,0,7311,7313,5,882,0,0,7312,7310,1,0,0,0,7313,7316,1,0,0,0,7314, + 7312,1,0,0,0,7314,7315,1,0,0,0,7315,7317,1,0,0,0,7316,7314,1,0,0, + 0,7317,7318,5,867,0,0,7318,745,1,0,0,0,7319,7321,7,126,0,0,7320, + 7322,3,748,374,0,7321,7320,1,0,0,0,7321,7322,1,0,0,0,7322,7342,1, + 0,0,0,7323,7325,5,224,0,0,7324,7326,3,748,374,0,7325,7324,1,0,0, + 0,7325,7326,1,0,0,0,7326,7330,1,0,0,0,7327,7328,3,58,29,0,7328,7329, + 3,704,352,0,7329,7331,1,0,0,0,7330,7327,1,0,0,0,7330,7331,1,0,0, + 0,7331,7342,1,0,0,0,7332,7342,7,127,0,0,7333,7335,7,128,0,0,7334, + 7336,3,752,376,0,7335,7334,1,0,0,0,7335,7336,1,0,0,0,7336,7342,1, + 0,0,0,7337,7339,7,129,0,0,7338,7340,7,130,0,0,7339,7338,1,0,0,0, + 7339,7340,1,0,0,0,7340,7342,1,0,0,0,7341,7319,1,0,0,0,7341,7323, + 1,0,0,0,7341,7332,1,0,0,0,7341,7333,1,0,0,0,7341,7337,1,0,0,0,7342, + 7344,1,0,0,0,7343,7345,5,12,0,0,7344,7343,1,0,0,0,7344,7345,1,0, + 0,0,7345,747,1,0,0,0,7346,7347,5,866,0,0,7347,7348,3,728,364,0,7348, + 7349,5,867,0,0,7349,749,1,0,0,0,7350,7351,5,866,0,0,7351,7352,3, + 728,364,0,7352,7353,5,868,0,0,7353,7354,3,728,364,0,7354,7355,5, + 867,0,0,7355,751,1,0,0,0,7356,7357,5,866,0,0,7357,7360,3,728,364, + 0,7358,7359,5,868,0,0,7359,7361,3,728,364,0,7360,7358,1,0,0,0,7360, + 7361,1,0,0,0,7361,7362,1,0,0,0,7362,7363,5,867,0,0,7363,753,1,0, + 0,0,7364,7365,5,866,0,0,7365,7370,3,690,345,0,7366,7367,5,868,0, + 0,7367,7369,3,690,345,0,7368,7366,1,0,0,0,7369,7372,1,0,0,0,7370, + 7368,1,0,0,0,7370,7371,1,0,0,0,7371,7373,1,0,0,0,7372,7370,1,0,0, + 0,7373,7374,5,867,0,0,7374,755,1,0,0,0,7375,7380,3,820,410,0,7376, + 7377,5,868,0,0,7377,7379,3,820,410,0,7378,7376,1,0,0,0,7379,7382, + 1,0,0,0,7380,7378,1,0,0,0,7380,7381,1,0,0,0,7381,757,1,0,0,0,7382, + 7380,1,0,0,0,7383,7384,7,131,0,0,7384,7389,3,760,380,0,7385,7386, + 5,868,0,0,7386,7388,3,760,380,0,7387,7385,1,0,0,0,7388,7391,1,0, + 0,0,7389,7387,1,0,0,0,7389,7390,1,0,0,0,7390,759,1,0,0,0,7391,7389, + 1,0,0,0,7392,7393,5,866,0,0,7393,7398,3,762,381,0,7394,7395,5,868, + 0,0,7395,7397,3,762,381,0,7396,7394,1,0,0,0,7397,7400,1,0,0,0,7398, + 7396,1,0,0,0,7398,7399,1,0,0,0,7399,7401,1,0,0,0,7400,7398,1,0,0, + 0,7401,7402,5,867,0,0,7402,761,1,0,0,0,7403,7406,3,820,410,0,7404, + 7406,5,42,0,0,7405,7403,1,0,0,0,7405,7404,1,0,0,0,7406,763,1,0,0, + 0,7407,7412,3,740,370,0,7408,7409,5,868,0,0,7409,7411,3,740,370, + 0,7410,7408,1,0,0,0,7411,7414,1,0,0,0,7412,7410,1,0,0,0,7412,7413, + 1,0,0,0,7413,765,1,0,0,0,7414,7412,1,0,0,0,7415,7420,5,882,0,0,7416, + 7417,5,868,0,0,7417,7419,5,882,0,0,7418,7416,1,0,0,0,7419,7422,1, + 0,0,0,7420,7418,1,0,0,0,7420,7421,1,0,0,0,7421,767,1,0,0,0,7422, + 7420,1,0,0,0,7423,7428,5,892,0,0,7424,7425,5,868,0,0,7425,7427,5, + 892,0,0,7426,7424,1,0,0,0,7427,7430,1,0,0,0,7428,7426,1,0,0,0,7428, + 7429,1,0,0,0,7429,769,1,0,0,0,7430,7428,1,0,0,0,7431,7458,5,116, + 0,0,7432,7433,5,24,0,0,7433,7434,5,866,0,0,7434,7435,3,820,410,0, + 7435,7436,5,13,0,0,7436,7437,3,746,373,0,7437,7438,5,867,0,0,7438, + 7458,1,0,0,0,7439,7441,3,826,413,0,7440,7439,1,0,0,0,7440,7441,1, + 0,0,0,7441,7442,1,0,0,0,7442,7458,3,740,370,0,7443,7447,3,772,386, + 0,7444,7445,5,119,0,0,7445,7446,5,185,0,0,7446,7448,3,772,386,0, + 7447,7444,1,0,0,0,7447,7448,1,0,0,0,7448,7458,1,0,0,0,7449,7450, + 5,866,0,0,7450,7451,3,820,410,0,7451,7452,5,867,0,0,7452,7458,1, + 0,0,0,7453,7454,5,866,0,0,7454,7455,3,718,359,0,7455,7456,5,867, + 0,0,7456,7458,1,0,0,0,7457,7431,1,0,0,0,7457,7432,1,0,0,0,7457,7440, + 1,0,0,0,7457,7443,1,0,0,0,7457,7449,1,0,0,0,7457,7453,1,0,0,0,7458, + 771,1,0,0,0,7459,7465,7,132,0,0,7460,7462,5,866,0,0,7461,7463,3, + 728,364,0,7462,7461,1,0,0,0,7462,7463,1,0,0,0,7463,7464,1,0,0,0, + 7464,7466,5,867,0,0,7465,7460,1,0,0,0,7465,7466,1,0,0,0,7466,7474, + 1,0,0,0,7467,7468,5,295,0,0,7468,7470,5,866,0,0,7469,7471,3,728, + 364,0,7470,7469,1,0,0,0,7470,7471,1,0,0,0,7471,7472,1,0,0,0,7472, + 7474,5,867,0,0,7473,7459,1,0,0,0,7473,7467,1,0,0,0,7474,773,1,0, + 0,0,7475,7476,5,78,0,0,7476,7477,5,60,0,0,7477,775,1,0,0,0,7478, + 7479,5,78,0,0,7479,7480,5,114,0,0,7480,7481,5,60,0,0,7481,777,1, + 0,0,0,7482,7483,5,124,0,0,7483,7484,5,143,0,0,7484,779,1,0,0,0,7485, + 7508,3,782,391,0,7486,7508,3,790,395,0,7487,7508,3,792,396,0,7488, + 7495,3,812,406,0,7489,7490,5,866,0,0,7490,7496,5,867,0,0,7491,7492, + 5,866,0,0,7492,7493,3,816,408,0,7493,7494,5,867,0,0,7494,7496,1, + 0,0,0,7495,7489,1,0,0,0,7495,7491,1,0,0,0,7496,7508,1,0,0,0,7497, + 7504,3,642,321,0,7498,7499,5,866,0,0,7499,7505,5,867,0,0,7500,7501, + 5,866,0,0,7501,7502,3,816,408,0,7502,7503,5,867,0,0,7503,7505,1, + 0,0,0,7504,7498,1,0,0,0,7504,7500,1,0,0,0,7505,7508,1,0,0,0,7506, + 7508,3,814,407,0,7507,7485,1,0,0,0,7507,7486,1,0,0,0,7507,7487,1, + 0,0,0,7507,7488,1,0,0,0,7507,7497,1,0,0,0,7507,7506,1,0,0,0,7508, + 781,1,0,0,0,7509,7512,7,133,0,0,7510,7511,5,866,0,0,7511,7513,5, + 867,0,0,7512,7510,1,0,0,0,7512,7513,1,0,0,0,7513,7689,1,0,0,0,7514, + 7689,3,60,30,0,7515,7516,5,33,0,0,7516,7517,5,866,0,0,7517,7518, + 3,820,410,0,7518,7519,5,868,0,0,7519,7520,3,746,373,0,7520,7521, + 5,867,0,0,7521,7689,1,0,0,0,7522,7523,5,33,0,0,7523,7524,5,866,0, + 0,7524,7525,3,820,410,0,7525,7526,5,188,0,0,7526,7527,3,704,352, + 0,7527,7528,5,867,0,0,7528,7689,1,0,0,0,7529,7530,5,24,0,0,7530, + 7531,5,866,0,0,7531,7532,3,820,410,0,7532,7533,5,13,0,0,7533,7534, + 3,746,373,0,7534,7535,5,867,0,0,7535,7689,1,0,0,0,7536,7537,5,189, + 0,0,7537,7538,5,866,0,0,7538,7539,3,674,337,0,7539,7540,5,867,0, + 0,7540,7689,1,0,0,0,7541,7543,5,23,0,0,7542,7544,3,784,392,0,7543, + 7542,1,0,0,0,7544,7545,1,0,0,0,7545,7543,1,0,0,0,7545,7546,1,0,0, + 0,7546,7549,1,0,0,0,7547,7548,5,53,0,0,7548,7550,3,818,409,0,7549, + 7547,1,0,0,0,7549,7550,1,0,0,0,7550,7551,1,0,0,0,7551,7552,5,378, + 0,0,7552,7689,1,0,0,0,7553,7554,5,23,0,0,7554,7556,3,820,410,0,7555, + 7557,3,784,392,0,7556,7555,1,0,0,0,7557,7558,1,0,0,0,7558,7556,1, + 0,0,0,7558,7559,1,0,0,0,7559,7562,1,0,0,0,7560,7561,5,53,0,0,7561, + 7563,3,818,409,0,7562,7560,1,0,0,0,7562,7563,1,0,0,0,7563,7564,1, + 0,0,0,7564,7565,5,378,0,0,7565,7689,1,0,0,0,7566,7567,5,224,0,0, + 7567,7568,5,866,0,0,7568,7571,3,816,408,0,7569,7570,5,188,0,0,7570, + 7572,3,704,352,0,7571,7569,1,0,0,0,7571,7572,1,0,0,0,7572,7573,1, + 0,0,0,7573,7574,5,867,0,0,7574,7689,1,0,0,0,7575,7576,5,296,0,0, + 7576,7579,5,866,0,0,7577,7580,3,732,366,0,7578,7580,3,820,410,0, + 7579,7577,1,0,0,0,7579,7578,1,0,0,0,7580,7581,1,0,0,0,7581,7584, + 5,80,0,0,7582,7585,3,732,366,0,7583,7585,3,820,410,0,7584,7582,1, + 0,0,0,7584,7583,1,0,0,0,7585,7586,1,0,0,0,7586,7587,5,867,0,0,7587, + 7689,1,0,0,0,7588,7589,7,134,0,0,7589,7592,5,866,0,0,7590,7593,3, + 732,366,0,7591,7593,3,820,410,0,7592,7590,1,0,0,0,7592,7591,1,0, + 0,0,7593,7594,1,0,0,0,7594,7597,5,68,0,0,7595,7598,3,728,364,0,7596, + 7598,3,820,410,0,7597,7595,1,0,0,0,7597,7596,1,0,0,0,7598,7604,1, + 0,0,0,7599,7602,5,65,0,0,7600,7603,3,728,364,0,7601,7603,3,820,410, + 0,7602,7600,1,0,0,0,7602,7601,1,0,0,0,7603,7605,1,0,0,0,7604,7599, + 1,0,0,0,7604,7605,1,0,0,0,7605,7606,1,0,0,0,7606,7607,5,867,0,0, + 7607,7689,1,0,0,0,7608,7609,5,300,0,0,7609,7610,5,866,0,0,7610,7613, + 7,135,0,0,7611,7614,3,732,366,0,7612,7614,3,820,410,0,7613,7611, + 1,0,0,0,7613,7612,1,0,0,0,7613,7614,1,0,0,0,7614,7615,1,0,0,0,7615, + 7618,5,68,0,0,7616,7619,3,732,366,0,7617,7619,3,820,410,0,7618,7616, + 1,0,0,0,7618,7617,1,0,0,0,7619,7620,1,0,0,0,7620,7621,5,867,0,0, + 7621,7689,1,0,0,0,7622,7623,5,300,0,0,7623,7626,5,866,0,0,7624,7627, + 3,732,366,0,7625,7627,3,820,410,0,7626,7624,1,0,0,0,7626,7625,1, + 0,0,0,7627,7628,1,0,0,0,7628,7631,5,68,0,0,7629,7632,3,732,366,0, + 7630,7632,3,820,410,0,7631,7629,1,0,0,0,7631,7630,1,0,0,0,7632,7633, + 1,0,0,0,7633,7634,5,867,0,0,7634,7689,1,0,0,0,7635,7636,5,840,0, + 0,7636,7639,5,866,0,0,7637,7640,3,732,366,0,7638,7640,3,820,410, + 0,7639,7637,1,0,0,0,7639,7638,1,0,0,0,7640,7647,1,0,0,0,7641,7642, + 5,13,0,0,7642,7643,7,136,0,0,7643,7644,5,866,0,0,7644,7645,3,728, + 364,0,7645,7646,5,867,0,0,7646,7648,1,0,0,0,7647,7641,1,0,0,0,7647, + 7648,1,0,0,0,7648,7650,1,0,0,0,7649,7651,3,786,393,0,7650,7649,1, + 0,0,0,7650,7651,1,0,0,0,7651,7652,1,0,0,0,7652,7653,5,867,0,0,7653, + 7689,1,0,0,0,7654,7655,5,293,0,0,7655,7656,5,866,0,0,7656,7657,3, + 70,35,0,7657,7660,5,68,0,0,7658,7661,3,732,366,0,7659,7661,3,820, + 410,0,7660,7658,1,0,0,0,7660,7659,1,0,0,0,7661,7662,1,0,0,0,7662, + 7663,5,867,0,0,7663,7689,1,0,0,0,7664,7665,5,827,0,0,7665,7666,5, + 866,0,0,7666,7667,7,137,0,0,7667,7668,5,868,0,0,7668,7669,3,732, + 366,0,7669,7670,5,867,0,0,7670,7689,1,0,0,0,7671,7672,5,254,0,0, + 7672,7673,5,866,0,0,7673,7674,3,820,410,0,7674,7675,5,868,0,0,7675, + 7678,3,820,410,0,7676,7677,5,579,0,0,7677,7679,3,746,373,0,7678, + 7676,1,0,0,0,7678,7679,1,0,0,0,7679,7681,1,0,0,0,7680,7682,3,294, + 147,0,7681,7680,1,0,0,0,7681,7682,1,0,0,0,7682,7684,1,0,0,0,7683, + 7685,3,296,148,0,7684,7683,1,0,0,0,7684,7685,1,0,0,0,7685,7686,1, + 0,0,0,7686,7687,5,867,0,0,7687,7689,1,0,0,0,7688,7509,1,0,0,0,7688, + 7514,1,0,0,0,7688,7515,1,0,0,0,7688,7522,1,0,0,0,7688,7529,1,0,0, + 0,7688,7536,1,0,0,0,7688,7541,1,0,0,0,7688,7553,1,0,0,0,7688,7566, + 1,0,0,0,7688,7575,1,0,0,0,7688,7588,1,0,0,0,7688,7608,1,0,0,0,7688, + 7622,1,0,0,0,7688,7635,1,0,0,0,7688,7654,1,0,0,0,7688,7664,1,0,0, + 0,7688,7671,1,0,0,0,7689,783,1,0,0,0,7690,7691,5,191,0,0,7691,7692, + 3,818,409,0,7692,7693,5,175,0,0,7693,7694,3,818,409,0,7694,785,1, + 0,0,0,7695,7696,5,448,0,0,7696,7701,3,788,394,0,7697,7698,5,868, + 0,0,7698,7700,3,788,394,0,7699,7697,1,0,0,0,7700,7703,1,0,0,0,7701, + 7699,1,0,0,0,7701,7702,1,0,0,0,7702,7710,1,0,0,0,7703,7701,1,0,0, + 0,7704,7705,5,448,0,0,7705,7706,3,728,364,0,7706,7707,5,854,0,0, + 7707,7708,3,728,364,0,7708,7710,1,0,0,0,7709,7695,1,0,0,0,7709,7704, + 1,0,0,0,7710,787,1,0,0,0,7711,7713,3,728,364,0,7712,7714,7,138,0, + 0,7713,7712,1,0,0,0,7713,7714,1,0,0,0,7714,789,1,0,0,0,7715,7716, + 7,139,0,0,7716,7718,5,866,0,0,7717,7719,7,45,0,0,7718,7717,1,0,0, + 0,7718,7719,1,0,0,0,7719,7720,1,0,0,0,7720,7721,3,818,409,0,7721, + 7723,5,867,0,0,7722,7724,3,794,397,0,7723,7722,1,0,0,0,7723,7724, + 1,0,0,0,7724,7775,1,0,0,0,7725,7726,5,262,0,0,7726,7734,5,866,0, + 0,7727,7735,5,850,0,0,7728,7730,5,7,0,0,7729,7728,1,0,0,0,7729,7730, + 1,0,0,0,7730,7731,1,0,0,0,7731,7735,3,818,409,0,7732,7733,5,49,0, + 0,7733,7735,3,816,408,0,7734,7727,1,0,0,0,7734,7729,1,0,0,0,7734, + 7732,1,0,0,0,7735,7736,1,0,0,0,7736,7738,5,867,0,0,7737,7739,3,794, + 397,0,7738,7737,1,0,0,0,7738,7739,1,0,0,0,7739,7775,1,0,0,0,7740, + 7741,7,140,0,0,7741,7743,5,866,0,0,7742,7744,5,7,0,0,7743,7742,1, + 0,0,0,7743,7744,1,0,0,0,7744,7745,1,0,0,0,7745,7746,3,818,409,0, + 7746,7748,5,867,0,0,7747,7749,3,794,397,0,7748,7747,1,0,0,0,7748, + 7749,1,0,0,0,7749,7775,1,0,0,0,7750,7751,5,266,0,0,7751,7753,5,866, + 0,0,7752,7754,5,49,0,0,7753,7752,1,0,0,0,7753,7754,1,0,0,0,7754, + 7755,1,0,0,0,7755,7766,3,816,408,0,7756,7757,5,125,0,0,7757,7758, + 5,20,0,0,7758,7763,3,260,130,0,7759,7760,5,868,0,0,7760,7762,3,260, + 130,0,7761,7759,1,0,0,0,7762,7765,1,0,0,0,7763,7761,1,0,0,0,7763, + 7764,1,0,0,0,7764,7767,1,0,0,0,7765,7763,1,0,0,0,7766,7756,1,0,0, + 0,7766,7767,1,0,0,0,7767,7770,1,0,0,0,7768,7769,5,156,0,0,7769,7771, + 5,882,0,0,7770,7768,1,0,0,0,7770,7771,1,0,0,0,7771,7772,1,0,0,0, + 7772,7773,5,867,0,0,7773,7775,1,0,0,0,7774,7715,1,0,0,0,7774,7725, + 1,0,0,0,7774,7740,1,0,0,0,7774,7750,1,0,0,0,7775,791,1,0,0,0,7776, + 7777,7,141,0,0,7777,7778,5,866,0,0,7778,7781,3,820,410,0,7779,7780, + 5,868,0,0,7780,7782,3,728,364,0,7781,7779,1,0,0,0,7781,7782,1,0, + 0,0,7782,7785,1,0,0,0,7783,7784,5,868,0,0,7784,7786,3,728,364,0, + 7785,7783,1,0,0,0,7785,7786,1,0,0,0,7786,7787,1,0,0,0,7787,7788, + 5,867,0,0,7788,7789,3,794,397,0,7789,7815,1,0,0,0,7790,7791,7,142, + 0,0,7791,7792,5,866,0,0,7792,7793,3,820,410,0,7793,7794,5,867,0, + 0,7794,7795,3,794,397,0,7795,7815,1,0,0,0,7796,7797,7,143,0,0,7797, + 7798,5,866,0,0,7798,7799,5,867,0,0,7799,7815,3,794,397,0,7800,7801, + 5,273,0,0,7801,7802,5,866,0,0,7802,7803,3,820,410,0,7803,7804,5, + 868,0,0,7804,7805,3,728,364,0,7805,7806,5,867,0,0,7806,7807,3,794, + 397,0,7807,7815,1,0,0,0,7808,7809,5,272,0,0,7809,7810,5,866,0,0, + 7810,7811,3,728,364,0,7811,7812,5,867,0,0,7812,7813,3,794,397,0, + 7813,7815,1,0,0,0,7814,7776,1,0,0,0,7814,7790,1,0,0,0,7814,7796, + 1,0,0,0,7814,7800,1,0,0,0,7814,7808,1,0,0,0,7815,793,1,0,0,0,7816, + 7822,5,129,0,0,7817,7818,5,866,0,0,7818,7819,3,796,398,0,7819,7820, + 5,867,0,0,7820,7823,1,0,0,0,7821,7823,3,798,399,0,7822,7817,1,0, + 0,0,7822,7821,1,0,0,0,7823,795,1,0,0,0,7824,7826,3,798,399,0,7825, + 7824,1,0,0,0,7825,7826,1,0,0,0,7826,7828,1,0,0,0,7827,7829,3,810, + 405,0,7828,7827,1,0,0,0,7828,7829,1,0,0,0,7829,7831,1,0,0,0,7830, + 7832,3,258,129,0,7831,7830,1,0,0,0,7831,7832,1,0,0,0,7832,7834,1, + 0,0,0,7833,7835,3,800,400,0,7834,7833,1,0,0,0,7834,7835,1,0,0,0, + 7835,797,1,0,0,0,7836,7837,3,722,361,0,7837,799,1,0,0,0,7838,7839, + 3,802,401,0,7839,7840,3,804,402,0,7840,801,1,0,0,0,7841,7842,7,144, + 0,0,7842,803,1,0,0,0,7843,7846,3,808,404,0,7844,7846,3,806,403,0, + 7845,7843,1,0,0,0,7845,7844,1,0,0,0,7846,805,1,0,0,0,7847,7848,5, + 17,0,0,7848,7849,3,808,404,0,7849,7850,5,11,0,0,7850,7851,3,808, + 404,0,7851,807,1,0,0,0,7852,7853,5,36,0,0,7853,7860,5,586,0,0,7854, + 7855,5,669,0,0,7855,7860,7,145,0,0,7856,7857,3,820,410,0,7857,7858, + 7,145,0,0,7858,7860,1,0,0,0,7859,7852,1,0,0,0,7859,7854,1,0,0,0, + 7859,7856,1,0,0,0,7860,809,1,0,0,0,7861,7862,5,130,0,0,7862,7863, + 5,20,0,0,7863,7868,3,820,410,0,7864,7865,5,868,0,0,7865,7867,3,820, + 410,0,7866,7864,1,0,0,0,7867,7870,1,0,0,0,7868,7866,1,0,0,0,7868, + 7869,1,0,0,0,7869,811,1,0,0,0,7870,7868,1,0,0,0,7871,7896,3,852, + 426,0,7872,7896,5,757,0,0,7873,7896,5,289,0,0,7874,7896,5,285,0, + 0,7875,7896,5,286,0,0,7876,7896,5,287,0,0,7877,7896,5,290,0,0,7878, + 7896,5,291,0,0,7879,7896,5,292,0,0,7880,7896,5,78,0,0,7881,7896, + 5,86,0,0,7882,7896,5,288,0,0,7883,7896,5,294,0,0,7884,7896,5,488, + 0,0,7885,7896,5,295,0,0,7886,7896,5,142,0,0,7887,7896,5,143,0,0, + 7888,7896,5,297,0,0,7889,7896,5,298,0,0,7890,7896,5,299,0,0,7891, + 7896,5,300,0,0,7892,7896,5,301,0,0,7893,7896,5,302,0,0,7894,7896, + 5,303,0,0,7895,7871,1,0,0,0,7895,7872,1,0,0,0,7895,7873,1,0,0,0, + 7895,7874,1,0,0,0,7895,7875,1,0,0,0,7895,7876,1,0,0,0,7895,7877, + 1,0,0,0,7895,7878,1,0,0,0,7895,7879,1,0,0,0,7895,7880,1,0,0,0,7895, + 7881,1,0,0,0,7895,7882,1,0,0,0,7895,7883,1,0,0,0,7895,7884,1,0,0, + 0,7895,7885,1,0,0,0,7895,7886,1,0,0,0,7895,7887,1,0,0,0,7895,7888, + 1,0,0,0,7895,7889,1,0,0,0,7895,7890,1,0,0,0,7895,7891,1,0,0,0,7895, + 7892,1,0,0,0,7895,7893,1,0,0,0,7895,7894,1,0,0,0,7896,813,1,0,0, + 0,7897,7898,7,146,0,0,7898,7899,5,866,0,0,7899,7900,3,818,409,0, + 7900,7901,5,867,0,0,7901,815,1,0,0,0,7902,7907,3,818,409,0,7903, + 7904,5,868,0,0,7904,7906,3,818,409,0,7905,7903,1,0,0,0,7906,7909, + 1,0,0,0,7907,7905,1,0,0,0,7907,7908,1,0,0,0,7908,817,1,0,0,0,7909, + 7907,1,0,0,0,7910,7914,3,740,370,0,7911,7914,3,780,390,0,7912,7914, + 3,820,410,0,7913,7910,1,0,0,0,7913,7911,1,0,0,0,7913,7912,1,0,0, + 0,7914,819,1,0,0,0,7915,7916,6,410,-1,0,7916,7917,7,147,0,0,7917, + 7927,3,820,410,4,7918,7919,3,822,411,0,7919,7921,5,89,0,0,7920,7922, + 5,114,0,0,7921,7920,1,0,0,0,7921,7922,1,0,0,0,7922,7923,1,0,0,0, + 7923,7924,7,148,0,0,7924,7927,1,0,0,0,7925,7927,3,822,411,0,7926, + 7915,1,0,0,0,7926,7918,1,0,0,0,7926,7925,1,0,0,0,7927,7934,1,0,0, + 0,7928,7929,10,3,0,0,7929,7930,3,832,416,0,7930,7931,3,820,410,4, + 7931,7933,1,0,0,0,7932,7928,1,0,0,0,7933,7936,1,0,0,0,7934,7932, + 1,0,0,0,7934,7935,1,0,0,0,7935,821,1,0,0,0,7936,7934,1,0,0,0,7937, + 7938,6,411,-1,0,7938,7939,3,824,412,0,7939,8003,1,0,0,0,7940,7942, + 10,6,0,0,7941,7943,5,114,0,0,7942,7941,1,0,0,0,7942,7943,1,0,0,0, + 7943,7944,1,0,0,0,7944,7945,5,17,0,0,7945,7946,3,822,411,0,7946, + 7947,5,11,0,0,7947,7948,3,822,411,7,7948,8002,1,0,0,0,7949,7950, + 10,5,0,0,7950,7951,5,604,0,0,7951,7952,5,99,0,0,7952,8002,3,822, + 411,6,7953,7955,10,3,0,0,7954,7956,5,114,0,0,7955,7954,1,0,0,0,7955, + 7956,1,0,0,0,7956,7957,1,0,0,0,7957,7958,7,149,0,0,7958,8002,3,822, + 411,4,7959,7961,10,9,0,0,7960,7962,5,114,0,0,7961,7960,1,0,0,0,7961, + 7962,1,0,0,0,7962,7963,1,0,0,0,7963,7964,5,80,0,0,7964,7967,5,866, + 0,0,7965,7968,3,210,105,0,7966,7968,3,756,378,0,7967,7965,1,0,0, + 0,7967,7966,1,0,0,0,7968,7969,1,0,0,0,7969,7970,5,867,0,0,7970,8002, + 1,0,0,0,7971,7972,10,8,0,0,7972,7973,5,89,0,0,7973,8002,3,738,369, + 0,7974,7975,10,7,0,0,7975,7982,3,828,414,0,7976,7977,7,150,0,0,7977, + 7978,5,866,0,0,7978,7979,3,210,105,0,7979,7980,5,867,0,0,7980,7983, + 1,0,0,0,7981,7983,3,822,411,0,7982,7976,1,0,0,0,7982,7981,1,0,0, + 0,7983,8002,1,0,0,0,7984,7986,10,4,0,0,7985,7987,5,114,0,0,7986, + 7985,1,0,0,0,7986,7987,1,0,0,0,7987,7988,1,0,0,0,7988,7989,5,99, + 0,0,7989,7992,3,822,411,0,7990,7991,5,384,0,0,7991,7993,5,882,0, + 0,7992,7990,1,0,0,0,7992,7993,1,0,0,0,7993,8002,1,0,0,0,7994,7995, + 10,2,0,0,7995,7996,5,485,0,0,7996,7997,5,510,0,0,7997,7998,5,866, + 0,0,7998,7999,3,822,411,0,7999,8000,5,867,0,0,8000,8002,1,0,0,0, + 8001,7940,1,0,0,0,8001,7949,1,0,0,0,8001,7953,1,0,0,0,8001,7959, + 1,0,0,0,8001,7971,1,0,0,0,8001,7974,1,0,0,0,8001,7984,1,0,0,0,8001, + 7994,1,0,0,0,8002,8005,1,0,0,0,8003,8001,1,0,0,0,8003,8004,1,0,0, + 0,8004,823,1,0,0,0,8005,8003,1,0,0,0,8006,8007,6,412,-1,0,8007,8055, + 3,740,370,0,8008,8055,3,780,390,0,8009,8055,3,702,351,0,8010,8011, + 3,826,413,0,8011,8012,3,824,412,12,8012,8055,1,0,0,0,8013,8014,5, + 228,0,0,8014,8055,3,824,412,11,8015,8016,5,892,0,0,8016,8017,5,841, + 0,0,8017,8055,3,824,412,10,8018,8019,5,866,0,0,8019,8024,3,820,410, + 0,8020,8021,5,868,0,0,8021,8023,3,820,410,0,8022,8020,1,0,0,0,8023, + 8026,1,0,0,0,8024,8022,1,0,0,0,8024,8025,1,0,0,0,8025,8027,1,0,0, + 0,8026,8024,1,0,0,0,8027,8028,5,867,0,0,8028,8055,1,0,0,0,8029,8030, + 5,586,0,0,8030,8031,5,866,0,0,8031,8034,3,820,410,0,8032,8033,5, + 868,0,0,8033,8035,3,820,410,0,8034,8032,1,0,0,0,8035,8036,1,0,0, + 0,8036,8034,1,0,0,0,8036,8037,1,0,0,0,8037,8038,1,0,0,0,8038,8039, + 5,867,0,0,8039,8055,1,0,0,0,8040,8041,5,60,0,0,8041,8042,5,866,0, + 0,8042,8043,3,210,105,0,8043,8044,5,867,0,0,8044,8055,1,0,0,0,8045, + 8046,5,866,0,0,8046,8047,3,210,105,0,8047,8048,5,867,0,0,8048,8055, + 1,0,0,0,8049,8050,5,87,0,0,8050,8051,3,820,410,0,8051,8052,3,70, + 35,0,8052,8055,1,0,0,0,8053,8055,3,676,338,0,8054,8006,1,0,0,0,8054, + 8008,1,0,0,0,8054,8009,1,0,0,0,8054,8010,1,0,0,0,8054,8013,1,0,0, + 0,8054,8015,1,0,0,0,8054,8018,1,0,0,0,8054,8029,1,0,0,0,8054,8040, + 1,0,0,0,8054,8045,1,0,0,0,8054,8049,1,0,0,0,8054,8053,1,0,0,0,8055, + 8073,1,0,0,0,8056,8057,10,4,0,0,8057,8058,3,838,419,0,8058,8059, + 3,824,412,5,8059,8072,1,0,0,0,8060,8061,10,3,0,0,8061,8062,3,834, + 417,0,8062,8063,3,824,412,4,8063,8072,1,0,0,0,8064,8065,10,2,0,0, + 8065,8066,3,836,418,0,8066,8067,3,824,412,3,8067,8072,1,0,0,0,8068, + 8069,10,14,0,0,8069,8070,5,28,0,0,8070,8072,3,706,353,0,8071,8056, + 1,0,0,0,8071,8060,1,0,0,0,8071,8064,1,0,0,0,8071,8068,1,0,0,0,8072, + 8075,1,0,0,0,8073,8071,1,0,0,0,8073,8074,1,0,0,0,8074,825,1,0,0, + 0,8075,8073,1,0,0,0,8076,8077,7,151,0,0,8077,827,1,0,0,0,8078,8079, + 5,859,0,0,8079,8087,5,858,0,0,8080,8081,5,860,0,0,8081,8087,5,857, + 0,0,8082,8083,5,859,0,0,8083,8084,5,857,0,0,8084,8087,5,858,0,0, + 8085,8087,3,830,415,0,8086,8078,1,0,0,0,8086,8080,1,0,0,0,8086,8082, + 1,0,0,0,8086,8085,1,0,0,0,8087,829,1,0,0,0,8088,8089,5,859,0,0,8089, + 8096,5,857,0,0,8090,8091,5,858,0,0,8091,8096,5,857,0,0,8092,8096, + 5,857,0,0,8093,8096,5,858,0,0,8094,8096,5,859,0,0,8095,8088,1,0, + 0,0,8095,8090,1,0,0,0,8095,8092,1,0,0,0,8095,8093,1,0,0,0,8095,8094, + 1,0,0,0,8096,831,1,0,0,0,8097,8105,5,11,0,0,8098,8099,5,863,0,0, + 8099,8105,5,863,0,0,8100,8105,5,196,0,0,8101,8105,5,124,0,0,8102, + 8103,5,862,0,0,8103,8105,5,862,0,0,8104,8097,1,0,0,0,8104,8098,1, + 0,0,0,8104,8100,1,0,0,0,8104,8101,1,0,0,0,8104,8102,1,0,0,0,8105, + 833,1,0,0,0,8106,8107,5,859,0,0,8107,8114,5,859,0,0,8108,8109,5, + 858,0,0,8109,8114,5,858,0,0,8110,8114,5,863,0,0,8111,8114,5,864, + 0,0,8112,8114,5,862,0,0,8113,8106,1,0,0,0,8113,8108,1,0,0,0,8113, + 8110,1,0,0,0,8113,8111,1,0,0,0,8113,8112,1,0,0,0,8114,835,1,0,0, + 0,8115,8116,7,152,0,0,8116,837,1,0,0,0,8117,8118,5,854,0,0,8118, + 8123,5,858,0,0,8119,8120,5,854,0,0,8120,8121,5,858,0,0,8121,8123, + 5,858,0,0,8122,8117,1,0,0,0,8122,8119,1,0,0,0,8123,839,1,0,0,0,8124, + 8125,7,153,0,0,8125,841,1,0,0,0,8126,8127,7,154,0,0,8127,843,1,0, + 0,0,8128,8129,7,155,0,0,8129,845,1,0,0,0,8130,8131,7,156,0,0,8131, + 847,1,0,0,0,8132,8133,7,157,0,0,8133,849,1,0,0,0,8134,8135,7,158, + 0,0,8135,851,1,0,0,0,8136,8137,7,159,0,0,8137,853,1,0,0,0,1173,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,3954,3961,3968,3976, + 3982,3990,3993,3996,4003,4006,4009,4013,4017,4023,4030,4040,4044, + 4053,4056,4060,4066,4074,4079,4083,4089,4095,4098,4100,4104,4109, + 4116,4126,4132,4137,4141,4144,4147,4150,4153,4156,4159,4163,4167, + 4175,4179,4182,4184,4197,4200,4207,4217,4220,4225,4227,4231,4239, + 4245,4254,4267,4271,4277,4283,4286,4290,4293,4300,4312,4316,4324, + 4336,4342,4344,4350,4352,4354,4360,4368,4376,4380,4385,4387,4396, + 4401,4406,4423,4428,4431,4437,4444,4449,4458,4461,4465,4469,4473, + 4476,4479,4482,4486,4490,4493,4496,4499,4506,4510,4525,4538,4546, + 4556,4560,4563,4569,4572,4575,4584,4593,4603,4607,4617,4621,4632, + 4636,4645,4654,4657,4661,4666,4670,4679,4682,4685,4692,4698,4704, + 4730,4733,4736,4755,4757,4780,4783,4786,4805,4807,4821,4834,4871, + 4876,4911,4925,4932,4936,4942,4950,4952,4963,4973,4980,4986,4994, + 4999,5007,5015,5023,5031,5037,5042,5047,5052,5058,5060,5071,5076, + 5083,5085,5099,5105,5110,5115,5121,5128,5136,5144,5149,5155,5158, + 5166,5173,5182,5185,5202,5210,5218,5222,5229,5235,5243,5248,5255, + 5263,5270,5275,5278,5280,5286,5288,5292,5294,5299,5306,5311,5315, + 5320,5324,5330,5336,5341,5344,5346,5352,5354,5358,5360,5365,5370, + 5377,5386,5391,5400,5404,5410,5415,5418,5420,5426,5428,5431,5438, + 5440,5445,5452,5461,5467,5469,5476,5479,5491,5497,5505,5508,5512, + 5515,5519,5521,5532,5535,5539,5542,5545,5552,5564,5567,5574,5580, + 5590,5595,5602,5607,5613,5617,5621,5629,5633,5637,5643,5645,5657, + 5662,5668,5674,5678,5683,5685,5709,5713,5716,5725,5729,5738,5742, + 5746,5752,5754,5763,5773,5800,5804,5809,5816,5819,5825,5835,5845, + 5855,5861,5870,5876,5883,5885,5893,5899,5903,5920,5930,5934,5938, + 5948,5953,6025,6043,6051,6057,6069,6073,6084,6088,6097,6105,6112, + 6116,6123,6128,6131,6134,6145,6154,6163,6166,6180,6198,6211,6214, + 6218,6221,6223,6230,6237,6241,6248,6255,6258,6274,6277,6287,6291, + 6297,6300,6303,6308,6312,6315,6322,6325,6331,6367,6370,6382,6385, + 6401,6403,6407,6414,6418,6425,6428,6437,6440,6445,6451,6453,6459, + 6463,6469,6472,6475,6488,6491,6497,6500,6508,6516,6522,6525,6529, + 6543,6555,6563,6567,6574,6581,6586,6599,6608,6616,6621,6624,6629, + 6632,6644,6649,6662,6664,6669,6673,6676,6678,6685,6692,6695,6698, + 6704,6708,6714,6722,6731,6744,6749,6757,6760,6765,6770,6778,6781, + 6789,6793,6800,6806,6809,6813,6826,6832,6844,6847,6856,6861,6882, + 6898,6908,6913,6918,6920,6923,6927,6929,6936,6944,6946,6949,6953, + 6957,6962,6964,6967,6971,6978,6983,6996,7006,7009,7012,7025,7031, + 7034,7042,7049,7069,7076,7078,7085,7087,7091,7098,7104,7115,7121, + 7127,7130,7134,7139,7142,7146,7150,7152,7157,7162,7175,7178,7182, + 7185,7188,7193,7198,7204,7207,7212,7215,7220,7223,7227,7232,7237, + 7242,7247,7250,7255,7260,7265,7271,7276,7281,7286,7290,7293,7298, + 7302,7306,7314,7321,7325,7330,7335,7339,7341,7344,7360,7370,7380, + 7389,7398,7405,7412,7420,7428,7440,7447,7457,7462,7465,7470,7473, + 7495,7504,7507,7512,7545,7549,7558,7562,7571,7579,7584,7592,7597, + 7602,7604,7613,7618,7626,7631,7639,7647,7650,7660,7678,7681,7684, + 7688,7701,7709,7713,7718,7723,7729,7734,7738,7743,7748,7753,7763, + 7766,7770,7774,7781,7785,7814,7822,7825,7828,7831,7834,7845,7859, + 7868,7895,7907,7913,7921,7926,7934,7942,7955,7961,7967,7982,7986, + 7992,8001,8003,8024,8036,8054,8071,8073,8086,8095,8104,8113,8122 ]; private static __ATN: antlr.ATN; @@ -64797,8 +64849,11 @@ export class OrderByExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext)!; + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); + } + public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext | null { + return this.getRuleContext(0, ColumnNamePathAllowEmptyContext); } public KW_ASC(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_ASC, 0); @@ -66799,8 +66854,11 @@ export class HavingClauseContext extends antlr.ParserRuleContext { public KW_HAVING(): antlr.TerminalNode { return this.getToken(MySqlParser.KW_HAVING, 0)!; } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext)!; + public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext | null { + return this.getRuleContext(0, ColumnNamePathAllowEmptyContext); + } + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); } public override get ruleIndex(): number { return MySqlParser.RULE_havingClause; @@ -66914,8 +66972,11 @@ export class GroupByItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public expression(): ExpressionContext { - return this.getRuleContext(0, ExpressionContext)!; + public expression(): ExpressionContext | null { + return this.getRuleContext(0, ExpressionContext); + } + public columnNamePathAllowEmpty(): ColumnNamePathAllowEmptyContext | null { + return this.getRuleContext(0, ColumnNamePathAllowEmptyContext); } public KW_ASC(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_ASC, 0); @@ -78873,8 +78934,17 @@ export class ColumnNamePathContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public uid(): UidContext | null { - return this.getRuleContext(0, UidContext); + public override get ruleIndex(): number { + return MySqlParser.RULE_columnNamePath; + } + public override copyFrom(ctx: ColumnNamePathContext): void { + super.copyFrom(ctx); + } +} +export class ColumnNamePath_dottedContext extends ColumnNamePathContext { + public constructor(ctx: ColumnNamePathContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); } public dottedId(): DottedIdContext[]; public dottedId(i: number): DottedIdContext | null; @@ -78885,38 +78955,31 @@ export class ColumnNamePathContext extends antlr.ParserRuleContext { return this.getRuleContext(i, DottedIdContext); } - public override get ruleIndex(): number { - return MySqlParser.RULE_columnNamePath; - } public override enterRule(listener: MySqlParserListener): void { - if(listener.enterColumnNamePath) { - listener.enterColumnNamePath(this); + if(listener.enterColumnNamePath_dotted) { + listener.enterColumnNamePath_dotted(this); } } public override exitRule(listener: MySqlParserListener): void { - if(listener.exitColumnNamePath) { - listener.exitColumnNamePath(this); + if(listener.exitColumnNamePath_dotted) { + listener.exitColumnNamePath_dotted(this); } } public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitColumnNamePath) { - return visitor.visitColumnNamePath(this); + if (visitor.visitColumnNamePath_dotted) { + return visitor.visitColumnNamePath_dotted(this); } else { return visitor.visitChildren(this); } } } - - -export class ColumnNamePathAllowEmptyContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public emptyColumn(): EmptyColumnContext | null { - return this.getRuleContext(0, EmptyColumnContext); +export class ColumnNamePath_defaultContext extends ColumnNamePathContext { + public constructor(ctx: ColumnNamePathContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); } - public uid(): UidContext | null { - return this.getRuleContext(0, UidContext); + public uid(): UidContext { + return this.getRuleContext(0, UidContext)!; } public dottedId(): DottedIdContext[]; public dottedId(i: number): DottedIdContext | null; @@ -78927,6 +78990,68 @@ export class ColumnNamePathAllowEmptyContext extends antlr.ParserRuleContext { return this.getRuleContext(i, DottedIdContext); } + public override enterRule(listener: MySqlParserListener): void { + if(listener.enterColumnNamePath_default) { + listener.enterColumnNamePath_default(this); + } + } + public override exitRule(listener: MySqlParserListener): void { + if(listener.exitColumnNamePath_default) { + listener.exitColumnNamePath_default(this); + } + } + public override accept(visitor: MySqlParserVisitor): Result | null { + if (visitor.visitColumnNamePath_default) { + return visitor.visitColumnNamePath_default(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ColumnNamePath_dot_emptyContext extends ColumnNamePathContext { + public constructor(ctx: ColumnNamePathContext) { + 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.enterColumnNamePath_dot_empty) { + listener.enterColumnNamePath_dot_empty(this); + } + } + public override exitRule(listener: MySqlParserListener): void { + if(listener.exitColumnNamePath_dot_empty) { + listener.exitColumnNamePath_dot_empty(this); + } + } + public override accept(visitor: MySqlParserVisitor): Result | null { + if (visitor.visitColumnNamePath_dot_empty) { + return visitor.visitColumnNamePath_dot_empty(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ColumnNamePathAllowEmptyContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public columnNamePath(): ColumnNamePathContext | null { + return this.getRuleContext(0, ColumnNamePathContext); + } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } public override get ruleIndex(): number { return MySqlParser.RULE_columnNamePathAllowEmpty; } diff --git a/src/lib/mysql/MySqlParserListener.ts b/src/lib/mysql/MySqlParserListener.ts index 3367fd2b..fb5eff15 100644 --- a/src/lib/mysql/MySqlParserListener.ts +++ b/src/lib/mysql/MySqlParserListener.ts @@ -546,7 +546,9 @@ import { ColumnNameCreateContext } from "./MySqlParser.js"; import { ColumnNamesContext } from "./MySqlParser.js"; import { EmptyColumnContext } from "./MySqlParser.js"; import { ColumnNameContext } from "./MySqlParser.js"; -import { ColumnNamePathContext } from "./MySqlParser.js"; +import { ColumnNamePath_defaultContext } from "./MySqlParser.js"; +import { ColumnNamePath_dottedContext } from "./MySqlParser.js"; +import { ColumnNamePath_dot_emptyContext } from "./MySqlParser.js"; import { ColumnNamePathAllowEmptyContext } from "./MySqlParser.js"; import { TableSpaceNameCreateContext } from "./MySqlParser.js"; import { TableSpaceNameContext } from "./MySqlParser.js"; @@ -6546,15 +6548,41 @@ export class MySqlParserListener implements ParseTreeListener { */ exitColumnName?: (ctx: ColumnNameContext) => void; /** - * Enter a parse tree produced by `MySqlParser.columnNamePath`. + * Enter a parse tree produced by the `columnNamePath_default` + * labeled alternative in `MySqlParser.columnNamePath`. * @param ctx the parse tree */ - enterColumnNamePath?: (ctx: ColumnNamePathContext) => void; + enterColumnNamePath_default?: (ctx: ColumnNamePath_defaultContext) => void; /** - * Exit a parse tree produced by `MySqlParser.columnNamePath`. + * Exit a parse tree produced by the `columnNamePath_default` + * labeled alternative in `MySqlParser.columnNamePath`. * @param ctx the parse tree */ - exitColumnNamePath?: (ctx: ColumnNamePathContext) => void; + exitColumnNamePath_default?: (ctx: ColumnNamePath_defaultContext) => void; + /** + * Enter a parse tree produced by the `columnNamePath_dotted` + * labeled alternative in `MySqlParser.columnNamePath`. + * @param ctx the parse tree + */ + enterColumnNamePath_dotted?: (ctx: ColumnNamePath_dottedContext) => void; + /** + * Exit a parse tree produced by the `columnNamePath_dotted` + * labeled alternative in `MySqlParser.columnNamePath`. + * @param ctx the parse tree + */ + exitColumnNamePath_dotted?: (ctx: ColumnNamePath_dottedContext) => void; + /** + * Enter a parse tree produced by the `columnNamePath_dot_empty` + * labeled alternative in `MySqlParser.columnNamePath`. + * @param ctx the parse tree + */ + enterColumnNamePath_dot_empty?: (ctx: ColumnNamePath_dot_emptyContext) => void; + /** + * Exit a parse tree produced by the `columnNamePath_dot_empty` + * labeled alternative in `MySqlParser.columnNamePath`. + * @param ctx the parse tree + */ + exitColumnNamePath_dot_empty?: (ctx: ColumnNamePath_dot_emptyContext) => void; /** * Enter a parse tree produced by `MySqlParser.columnNamePathAllowEmpty`. * @param ctx the parse tree diff --git a/src/lib/mysql/MySqlParserVisitor.ts b/src/lib/mysql/MySqlParserVisitor.ts index 8a06e45c..c57c7867 100644 --- a/src/lib/mysql/MySqlParserVisitor.ts +++ b/src/lib/mysql/MySqlParserVisitor.ts @@ -546,7 +546,9 @@ import { ColumnNameCreateContext } from "./MySqlParser.js"; import { ColumnNamesContext } from "./MySqlParser.js"; import { EmptyColumnContext } from "./MySqlParser.js"; import { ColumnNameContext } from "./MySqlParser.js"; -import { ColumnNamePathContext } from "./MySqlParser.js"; +import { ColumnNamePath_defaultContext } from "./MySqlParser.js"; +import { ColumnNamePath_dottedContext } from "./MySqlParser.js"; +import { ColumnNamePath_dot_emptyContext } from "./MySqlParser.js"; import { ColumnNamePathAllowEmptyContext } from "./MySqlParser.js"; import { TableSpaceNameCreateContext } from "./MySqlParser.js"; import { TableSpaceNameContext } from "./MySqlParser.js"; @@ -4162,11 +4164,26 @@ export class MySqlParserVisitor extends AbstractParseTreeVisitor */ visitColumnName?: (ctx: ColumnNameContext) => Result; /** - * Visit a parse tree produced by `MySqlParser.columnNamePath`. + * Visit a parse tree produced by the `columnNamePath_default` + * labeled alternative in `MySqlParser.columnNamePath`. * @param ctx the parse tree * @return the visitor result */ - visitColumnNamePath?: (ctx: ColumnNamePathContext) => Result; + visitColumnNamePath_default?: (ctx: ColumnNamePath_defaultContext) => Result; + /** + * Visit a parse tree produced by the `columnNamePath_dotted` + * labeled alternative in `MySqlParser.columnNamePath`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnNamePath_dotted?: (ctx: ColumnNamePath_dottedContext) => Result; + /** + * Visit a parse tree produced by the `columnNamePath_dot_empty` + * labeled alternative in `MySqlParser.columnNamePath`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnNamePath_dot_empty?: (ctx: ColumnNamePath_dot_emptyContext) => Result; /** * Visit a parse tree produced by `MySqlParser.columnNamePathAllowEmpty`. * @param ctx the parse tree diff --git a/src/lib/postgresql/PostgreSqlParser.interp b/src/lib/postgresql/PostgreSqlParser.interp index a8af8f73..e8c4c5b8 100644 --- a/src/lib/postgresql/PostgreSqlParser.interp +++ b/src/lib/postgresql/PostgreSqlParser.interp @@ -1663,4 +1663,4 @@ sqlExpression atn: -[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 +[4, 1, 592, 8533, 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, 1, 379, 5, 379, 7544, 8, 379, 10, 379, 12, 379, 7547, 9, 379, 3, 379, 7549, 8, 379, 1, 380, 1, 380, 1, 380, 3, 380, 7554, 8, 380, 1, 380, 3, 380, 7557, 8, 380, 1, 380, 1, 380, 3, 380, 7561, 8, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 3, 380, 7570, 8, 380, 1, 381, 1, 381, 1, 381, 5, 381, 7575, 8, 381, 10, 381, 12, 381, 7578, 9, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 5, 382, 7585, 8, 382, 10, 382, 12, 382, 7588, 9, 382, 1, 383, 1, 383, 1, 383, 5, 383, 7593, 8, 383, 10, 383, 12, 383, 7596, 9, 383, 1, 384, 1, 384, 1, 384, 5, 384, 7601, 8, 384, 10, 384, 12, 384, 7604, 9, 384, 1, 385, 1, 385, 1, 385, 5, 385, 7609, 8, 385, 10, 385, 12, 385, 7612, 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, 7628, 8, 392, 1, 393, 1, 393, 1, 393, 5, 393, 7633, 8, 393, 10, 393, 12, 393, 7636, 9, 393, 1, 394, 1, 394, 1, 394, 5, 394, 7641, 8, 394, 10, 394, 12, 394, 7644, 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, 7660, 8, 400, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7666, 8, 401, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7681, 8, 404, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 7689, 8, 406, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7695, 8, 407, 1, 408, 1, 408, 1, 408, 3, 408, 7700, 8, 408, 1, 409, 1, 409, 1, 409, 1, 409, 5, 409, 7706, 8, 409, 10, 409, 12, 409, 7709, 9, 409, 1, 409, 1, 409, 3, 409, 7713, 8, 409, 1, 410, 3, 410, 7716, 8, 410, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7725, 8, 411, 1, 412, 1, 412, 1, 412, 5, 412, 7730, 8, 412, 10, 412, 12, 412, 7733, 9, 412, 1, 413, 1, 413, 3, 413, 7737, 8, 413, 1, 414, 1, 414, 3, 414, 7741, 8, 414, 1, 415, 1, 415, 1, 415, 3, 415, 7746, 8, 415, 1, 416, 1, 416, 1, 416, 1, 416, 3, 416, 7752, 8, 416, 1, 417, 1, 417, 1, 417, 3, 417, 7757, 8, 417, 1, 418, 1, 418, 1, 418, 3, 418, 7762, 8, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 3, 418, 7770, 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, 7825, 8, 420, 1, 421, 1, 421, 1, 422, 1, 422, 1, 423, 3, 423, 7832, 8, 423, 1, 423, 1, 423, 1, 423, 1, 423, 4, 423, 7838, 8, 423, 11, 423, 12, 423, 7839, 3, 423, 7842, 8, 423, 3, 423, 7844, 8, 423, 1, 423, 1, 423, 5, 423, 7848, 8, 423, 10, 423, 12, 423, 7851, 9, 423, 1, 423, 3, 423, 7854, 8, 423, 1, 423, 1, 423, 3, 423, 7858, 8, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 3, 425, 7869, 8, 425, 1, 425, 3, 425, 7872, 8, 425, 1, 425, 1, 425, 3, 425, 7876, 8, 425, 1, 425, 1, 425, 3, 425, 7880, 8, 425, 1, 425, 1, 425, 3, 425, 7884, 8, 425, 1, 425, 3, 425, 7887, 8, 425, 1, 425, 3, 425, 7890, 8, 425, 1, 425, 3, 425, 7893, 8, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 5, 425, 7900, 8, 425, 10, 425, 12, 425, 7903, 9, 425, 1, 425, 1, 425, 3, 425, 7907, 8, 425, 1, 425, 1, 425, 3, 425, 7911, 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, 7944, 8, 428, 1, 429, 1, 429, 1, 429, 1, 429, 1, 430, 1, 430, 1, 430, 1, 430, 3, 430, 7954, 8, 430, 1, 430, 1, 430, 3, 430, 7958, 8, 430, 1, 430, 1, 430, 1, 430, 1, 430, 3, 430, 7964, 8, 430, 1, 430, 1, 430, 1, 430, 3, 430, 7969, 8, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 1, 432, 3, 432, 7978, 8, 432, 1, 432, 1, 432, 1, 432, 1, 432, 5, 432, 7984, 8, 432, 10, 432, 12, 432, 7987, 9, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 3, 434, 7997, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 5, 434, 8003, 8, 434, 10, 434, 12, 434, 8006, 9, 434, 1, 435, 1, 435, 1, 435, 1, 435, 5, 435, 8012, 8, 435, 10, 435, 12, 435, 8015, 9, 435, 1, 435, 1, 435, 1, 435, 1, 435, 5, 435, 8021, 8, 435, 10, 435, 12, 435, 8024, 9, 435, 5, 435, 8026, 8, 435, 10, 435, 12, 435, 8029, 9, 435, 1, 435, 3, 435, 8032, 8, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 436, 1, 436, 5, 436, 8040, 8, 436, 10, 436, 12, 436, 8043, 9, 436, 1, 437, 1, 437, 3, 437, 8047, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 5, 437, 8053, 8, 437, 10, 437, 12, 437, 8056, 9, 437, 4, 437, 8058, 8, 437, 11, 437, 12, 437, 8059, 1, 437, 3, 437, 8063, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 438, 3, 438, 8070, 8, 438, 1, 438, 1, 438, 1, 438, 1, 438, 3, 438, 8076, 8, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 3, 439, 8084, 8, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 3, 439, 8092, 8, 439, 1, 439, 3, 439, 8095, 8, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 3, 439, 8102, 8, 439, 3, 439, 8104, 8, 439, 1, 440, 3, 440, 8107, 8, 440, 1, 440, 1, 440, 1, 440, 1, 440, 3, 440, 8113, 8, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 441, 1, 441, 3, 441, 8122, 8, 441, 1, 441, 1, 441, 3, 441, 8126, 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, 8140, 8, 442, 1, 442, 3, 442, 8143, 8, 442, 3, 442, 8145, 8, 442, 1, 442, 1, 442, 1, 443, 1, 443, 3, 443, 8151, 8, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 4, 443, 8159, 8, 443, 11, 443, 12, 443, 8160, 3, 443, 8163, 8, 443, 3, 443, 8165, 8, 443, 1, 443, 1, 443, 1, 443, 1, 443, 5, 443, 8171, 8, 443, 10, 443, 12, 443, 8174, 9, 443, 3, 443, 8176, 8, 443, 1, 443, 3, 443, 8179, 8, 443, 1, 444, 1, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 1, 445, 3, 445, 8189, 8, 445, 1, 445, 1, 445, 1, 446, 1, 446, 5, 446, 8195, 8, 446, 10, 446, 12, 446, 8198, 9, 446, 1, 446, 1, 446, 1, 446, 3, 446, 8203, 8, 446, 1, 446, 1, 446, 1, 447, 1, 447, 3, 447, 8209, 8, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 3, 448, 8216, 8, 448, 1, 448, 1, 448, 3, 448, 8220, 8, 448, 1, 448, 1, 448, 3, 448, 8224, 8, 448, 1, 448, 3, 448, 8227, 8, 448, 1, 448, 3, 448, 8230, 8, 448, 1, 448, 1, 448, 1, 449, 1, 449, 3, 449, 8236, 8, 449, 1, 449, 1, 449, 1, 450, 1, 450, 1, 450, 3, 450, 8243, 8, 450, 1, 450, 3, 450, 8246, 8, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 3, 450, 8254, 8, 450, 3, 450, 8256, 8, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 5, 450, 8263, 8, 450, 10, 450, 12, 450, 8266, 9, 450, 1, 450, 1, 450, 3, 450, 8270, 8, 450, 3, 450, 8272, 8, 450, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 3, 451, 8279, 8, 451, 1, 451, 1, 451, 1, 452, 1, 452, 3, 452, 8285, 8, 452, 1, 452, 3, 452, 8288, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 3, 453, 8300, 8, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 3, 453, 8307, 8, 453, 3, 453, 8309, 8, 453, 1, 454, 1, 454, 3, 454, 8313, 8, 454, 1, 454, 1, 454, 1, 454, 1, 455, 3, 455, 8319, 8, 455, 1, 455, 1, 455, 1, 455, 3, 455, 8324, 8, 455, 1, 455, 1, 455, 3, 455, 8328, 8, 455, 1, 455, 3, 455, 8331, 8, 455, 1, 455, 3, 455, 8334, 8, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 4, 455, 8341, 8, 455, 11, 455, 12, 455, 8342, 1, 455, 3, 455, 8346, 8, 455, 1, 456, 3, 456, 8349, 8, 456, 1, 456, 1, 456, 3, 456, 8353, 8, 456, 1, 456, 1, 456, 3, 456, 8357, 8, 456, 3, 456, 8359, 8, 456, 1, 456, 3, 456, 8362, 8, 456, 1, 456, 3, 456, 8365, 8, 456, 1, 457, 1, 457, 1, 457, 1, 457, 3, 457, 8371, 8, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 3, 457, 8378, 8, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 3, 457, 8385, 8, 457, 1, 457, 1, 457, 1, 457, 1, 457, 3, 457, 8391, 8, 457, 3, 457, 8393, 8, 457, 1, 458, 1, 458, 3, 458, 8397, 8, 458, 1, 458, 1, 458, 1, 458, 3, 458, 8402, 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, 8418, 8, 459, 10, 459, 12, 459, 8421, 9, 459, 1, 459, 1, 459, 4, 459, 8425, 8, 459, 11, 459, 12, 459, 8426, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 5, 460, 8434, 8, 460, 10, 460, 12, 460, 8437, 9, 460, 1, 460, 1, 460, 1, 460, 1, 460, 3, 460, 8443, 8, 460, 1, 461, 1, 461, 3, 461, 8447, 8, 461, 1, 462, 1, 462, 1, 462, 1, 462, 1, 463, 1, 463, 1, 463, 1, 464, 1, 464, 1, 464, 3, 464, 8459, 8, 464, 1, 464, 3, 464, 8462, 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, 8475, 8, 465, 1, 465, 3, 465, 8478, 8, 465, 1, 466, 1, 466, 3, 466, 8482, 8, 466, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 5, 467, 8489, 8, 467, 10, 467, 12, 467, 8492, 9, 467, 1, 467, 1, 467, 5, 467, 8496, 8, 467, 10, 467, 12, 467, 8499, 9, 467, 4, 467, 8501, 8, 467, 11, 467, 12, 467, 8502, 1, 468, 1, 468, 1, 468, 3, 468, 8508, 8, 468, 1, 469, 1, 469, 3, 469, 8512, 8, 469, 1, 470, 1, 470, 3, 470, 8516, 8, 470, 1, 470, 3, 470, 8519, 8, 470, 1, 470, 3, 470, 8522, 8, 470, 1, 470, 3, 470, 8525, 8, 470, 1, 470, 3, 470, 8528, 8, 470, 1, 470, 3, 470, 8531, 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, 9971, 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, 7548, 1, 0, 0, 0, 760, 7569, 1, 0, 0, 0, 762, 7576, 1, 0, 0, 0, 764, 7581, 1, 0, 0, 0, 766, 7589, 1, 0, 0, 0, 768, 7597, 1, 0, 0, 0, 770, 7605, 1, 0, 0, 0, 772, 7613, 1, 0, 0, 0, 774, 7615, 1, 0, 0, 0, 776, 7617, 1, 0, 0, 0, 778, 7619, 1, 0, 0, 0, 780, 7621, 1, 0, 0, 0, 782, 7623, 1, 0, 0, 0, 784, 7625, 1, 0, 0, 0, 786, 7629, 1, 0, 0, 0, 788, 7637, 1, 0, 0, 0, 790, 7645, 1, 0, 0, 0, 792, 7647, 1, 0, 0, 0, 794, 7649, 1, 0, 0, 0, 796, 7651, 1, 0, 0, 0, 798, 7653, 1, 0, 0, 0, 800, 7659, 1, 0, 0, 0, 802, 7665, 1, 0, 0, 0, 804, 7667, 1, 0, 0, 0, 806, 7669, 1, 0, 0, 0, 808, 7680, 1, 0, 0, 0, 810, 7682, 1, 0, 0, 0, 812, 7688, 1, 0, 0, 0, 814, 7694, 1, 0, 0, 0, 816, 7696, 1, 0, 0, 0, 818, 7712, 1, 0, 0, 0, 820, 7715, 1, 0, 0, 0, 822, 7724, 1, 0, 0, 0, 824, 7726, 1, 0, 0, 0, 826, 7736, 1, 0, 0, 0, 828, 7740, 1, 0, 0, 0, 830, 7745, 1, 0, 0, 0, 832, 7751, 1, 0, 0, 0, 834, 7756, 1, 0, 0, 0, 836, 7769, 1, 0, 0, 0, 838, 7771, 1, 0, 0, 0, 840, 7824, 1, 0, 0, 0, 842, 7826, 1, 0, 0, 0, 844, 7828, 1, 0, 0, 0, 846, 7831, 1, 0, 0, 0, 848, 7859, 1, 0, 0, 0, 850, 7863, 1, 0, 0, 0, 852, 7914, 1, 0, 0, 0, 854, 7917, 1, 0, 0, 0, 856, 7943, 1, 0, 0, 0, 858, 7945, 1, 0, 0, 0, 860, 7968, 1, 0, 0, 0, 862, 7970, 1, 0, 0, 0, 864, 7975, 1, 0, 0, 0, 866, 7990, 1, 0, 0, 0, 868, 7996, 1, 0, 0, 0, 870, 8007, 1, 0, 0, 0, 872, 8037, 1, 0, 0, 0, 874, 8044, 1, 0, 0, 0, 876, 8069, 1, 0, 0, 0, 878, 8079, 1, 0, 0, 0, 880, 8106, 1, 0, 0, 0, 882, 8119, 1, 0, 0, 0, 884, 8129, 1, 0, 0, 0, 886, 8148, 1, 0, 0, 0, 888, 8180, 1, 0, 0, 0, 890, 8184, 1, 0, 0, 0, 892, 8192, 1, 0, 0, 0, 894, 8206, 1, 0, 0, 0, 896, 8212, 1, 0, 0, 0, 898, 8233, 1, 0, 0, 0, 900, 8239, 1, 0, 0, 0, 902, 8278, 1, 0, 0, 0, 904, 8282, 1, 0, 0, 0, 906, 8308, 1, 0, 0, 0, 908, 8310, 1, 0, 0, 0, 910, 8318, 1, 0, 0, 0, 912, 8358, 1, 0, 0, 0, 914, 8392, 1, 0, 0, 0, 916, 8394, 1, 0, 0, 0, 918, 8405, 1, 0, 0, 0, 920, 8442, 1, 0, 0, 0, 922, 8446, 1, 0, 0, 0, 924, 8448, 1, 0, 0, 0, 926, 8452, 1, 0, 0, 0, 928, 8455, 1, 0, 0, 0, 930, 8477, 1, 0, 0, 0, 932, 8481, 1, 0, 0, 0, 934, 8483, 1, 0, 0, 0, 936, 8507, 1, 0, 0, 0, 938, 8511, 1, 0, 0, 0, 940, 8513, 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, 7549, 4, 379, 10, 0, 7540, 7545, 3, 760, 380, 0, 7541, 7542, 5, 6, 0, 0, 7542, 7544, 3, 760, 380, 0, 7543, 7541, 1, 0, 0, 0, 7544, 7547, 1, 0, 0, 0, 7545, 7543, 1, 0, 0, 0, 7545, 7546, 1, 0, 0, 0, 7546, 7549, 1, 0, 0, 0, 7547, 7545, 1, 0, 0, 0, 7548, 7539, 1, 0, 0, 0, 7548, 7540, 1, 0, 0, 0, 7549, 759, 1, 0, 0, 0, 7550, 7570, 3, 762, 381, 0, 7551, 7554, 3, 732, 366, 0, 7552, 7554, 3, 730, 365, 0, 7553, 7551, 1, 0, 0, 0, 7553, 7552, 1, 0, 0, 0, 7554, 7560, 1, 0, 0, 0, 7555, 7557, 5, 36, 0, 0, 7556, 7555, 1, 0, 0, 0, 7556, 7557, 1, 0, 0, 0, 7557, 7558, 1, 0, 0, 0, 7558, 7561, 3, 836, 418, 0, 7559, 7561, 1, 0, 0, 0, 7560, 7556, 1, 0, 0, 0, 7560, 7559, 1, 0, 0, 0, 7561, 7570, 1, 0, 0, 0, 7562, 7563, 3, 826, 413, 0, 7563, 7564, 5, 11, 0, 0, 7564, 7565, 4, 380, 11, 0, 7565, 7566, 3, 804, 402, 0, 7566, 7570, 1, 0, 0, 0, 7567, 7568, 4, 380, 12, 0, 7568, 7570, 3, 804, 402, 0, 7569, 7550, 1, 0, 0, 0, 7569, 7553, 1, 0, 0, 0, 7569, 7562, 1, 0, 0, 0, 7569, 7567, 1, 0, 0, 0, 7570, 761, 1, 0, 0, 0, 7571, 7572, 3, 826, 413, 0, 7572, 7573, 5, 11, 0, 0, 7573, 7575, 1, 0, 0, 0, 7574, 7571, 1, 0, 0, 0, 7575, 7578, 1, 0, 0, 0, 7576, 7574, 1, 0, 0, 0, 7576, 7577, 1, 0, 0, 0, 7577, 7579, 1, 0, 0, 0, 7578, 7576, 1, 0, 0, 0, 7579, 7580, 5, 9, 0, 0, 7580, 763, 1, 0, 0, 0, 7581, 7586, 3, 784, 392, 0, 7582, 7583, 5, 6, 0, 0, 7583, 7585, 3, 784, 392, 0, 7584, 7582, 1, 0, 0, 0, 7585, 7588, 1, 0, 0, 0, 7586, 7584, 1, 0, 0, 0, 7586, 7587, 1, 0, 0, 0, 7587, 765, 1, 0, 0, 0, 7588, 7586, 1, 0, 0, 0, 7589, 7594, 3, 778, 389, 0, 7590, 7591, 5, 6, 0, 0, 7591, 7593, 3, 778, 389, 0, 7592, 7590, 1, 0, 0, 0, 7593, 7596, 1, 0, 0, 0, 7594, 7592, 1, 0, 0, 0, 7594, 7595, 1, 0, 0, 0, 7595, 767, 1, 0, 0, 0, 7596, 7594, 1, 0, 0, 0, 7597, 7602, 3, 794, 397, 0, 7598, 7599, 5, 6, 0, 0, 7599, 7601, 3, 794, 397, 0, 7600, 7598, 1, 0, 0, 0, 7601, 7604, 1, 0, 0, 0, 7602, 7600, 1, 0, 0, 0, 7602, 7603, 1, 0, 0, 0, 7603, 769, 1, 0, 0, 0, 7604, 7602, 1, 0, 0, 0, 7605, 7610, 3, 792, 396, 0, 7606, 7607, 5, 6, 0, 0, 7607, 7609, 3, 792, 396, 0, 7608, 7606, 1, 0, 0, 0, 7609, 7612, 1, 0, 0, 0, 7610, 7608, 1, 0, 0, 0, 7610, 7611, 1, 0, 0, 0, 7611, 771, 1, 0, 0, 0, 7612, 7610, 1, 0, 0, 0, 7613, 7614, 3, 784, 392, 0, 7614, 773, 1, 0, 0, 0, 7615, 7616, 3, 784, 392, 0, 7616, 775, 1, 0, 0, 0, 7617, 7618, 3, 784, 392, 0, 7618, 777, 1, 0, 0, 0, 7619, 7620, 3, 784, 392, 0, 7620, 779, 1, 0, 0, 0, 7621, 7622, 3, 784, 392, 0, 7622, 781, 1, 0, 0, 0, 7623, 7624, 3, 310, 155, 0, 7624, 783, 1, 0, 0, 0, 7625, 7627, 3, 826, 413, 0, 7626, 7628, 3, 754, 377, 0, 7627, 7626, 1, 0, 0, 0, 7627, 7628, 1, 0, 0, 0, 7628, 785, 1, 0, 0, 0, 7629, 7634, 3, 774, 387, 0, 7630, 7631, 5, 6, 0, 0, 7631, 7633, 3, 774, 387, 0, 7632, 7630, 1, 0, 0, 0, 7633, 7636, 1, 0, 0, 0, 7634, 7632, 1, 0, 0, 0, 7634, 7635, 1, 0, 0, 0, 7635, 787, 1, 0, 0, 0, 7636, 7634, 1, 0, 0, 0, 7637, 7642, 3, 826, 413, 0, 7638, 7639, 5, 6, 0, 0, 7639, 7641, 3, 826, 413, 0, 7640, 7638, 1, 0, 0, 0, 7641, 7644, 1, 0, 0, 0, 7642, 7640, 1, 0, 0, 0, 7642, 7643, 1, 0, 0, 0, 7643, 789, 1, 0, 0, 0, 7644, 7642, 1, 0, 0, 0, 7645, 7646, 3, 310, 155, 0, 7646, 791, 1, 0, 0, 0, 7647, 7648, 3, 310, 155, 0, 7648, 793, 1, 0, 0, 0, 7649, 7650, 3, 310, 155, 0, 7650, 795, 1, 0, 0, 0, 7651, 7652, 3, 826, 413, 0, 7652, 797, 1, 0, 0, 0, 7653, 7654, 3, 826, 413, 0, 7654, 799, 1, 0, 0, 0, 7655, 7660, 3, 828, 414, 0, 7656, 7657, 3, 826, 413, 0, 7657, 7658, 3, 754, 377, 0, 7658, 7660, 1, 0, 0, 0, 7659, 7655, 1, 0, 0, 0, 7659, 7656, 1, 0, 0, 0, 7660, 801, 1, 0, 0, 0, 7661, 7666, 3, 828, 414, 0, 7662, 7663, 3, 826, 413, 0, 7663, 7664, 3, 754, 377, 0, 7664, 7666, 1, 0, 0, 0, 7665, 7661, 1, 0, 0, 0, 7665, 7662, 1, 0, 0, 0, 7666, 803, 1, 0, 0, 0, 7667, 7668, 1, 0, 0, 0, 7668, 805, 1, 0, 0, 0, 7669, 7670, 3, 826, 413, 0, 7670, 7671, 3, 756, 378, 0, 7671, 807, 1, 0, 0, 0, 7672, 7673, 3, 826, 413, 0, 7673, 7674, 3, 756, 378, 0, 7674, 7681, 1, 0, 0, 0, 7675, 7676, 3, 826, 413, 0, 7676, 7677, 5, 11, 0, 0, 7677, 7678, 4, 404, 13, 0, 7678, 7679, 3, 804, 402, 0, 7679, 7681, 1, 0, 0, 0, 7680, 7672, 1, 0, 0, 0, 7680, 7675, 1, 0, 0, 0, 7681, 809, 1, 0, 0, 0, 7682, 7683, 3, 826, 413, 0, 7683, 811, 1, 0, 0, 0, 7684, 7689, 3, 828, 414, 0, 7685, 7686, 3, 826, 413, 0, 7686, 7687, 3, 754, 377, 0, 7687, 7689, 1, 0, 0, 0, 7688, 7684, 1, 0, 0, 0, 7688, 7685, 1, 0, 0, 0, 7689, 813, 1, 0, 0, 0, 7690, 7695, 3, 828, 414, 0, 7691, 7692, 3, 826, 413, 0, 7692, 7693, 3, 754, 377, 0, 7693, 7695, 1, 0, 0, 0, 7694, 7690, 1, 0, 0, 0, 7694, 7691, 1, 0, 0, 0, 7695, 815, 1, 0, 0, 0, 7696, 7699, 3, 818, 409, 0, 7697, 7698, 5, 487, 0, 0, 7698, 7700, 3, 818, 409, 0, 7699, 7697, 1, 0, 0, 0, 7699, 7700, 1, 0, 0, 0, 7700, 817, 1, 0, 0, 0, 7701, 7713, 5, 561, 0, 0, 7702, 7713, 5, 563, 0, 0, 7703, 7707, 5, 565, 0, 0, 7704, 7706, 5, 590, 0, 0, 7705, 7704, 1, 0, 0, 0, 7706, 7709, 1, 0, 0, 0, 7707, 7705, 1, 0, 0, 0, 7707, 7708, 1, 0, 0, 0, 7708, 7710, 1, 0, 0, 0, 7709, 7707, 1, 0, 0, 0, 7710, 7713, 5, 591, 0, 0, 7711, 7713, 5, 586, 0, 0, 7712, 7701, 1, 0, 0, 0, 7712, 7702, 1, 0, 0, 0, 7712, 7703, 1, 0, 0, 0, 7712, 7711, 1, 0, 0, 0, 7713, 819, 1, 0, 0, 0, 7714, 7716, 7, 30, 0, 0, 7715, 7714, 1, 0, 0, 0, 7715, 7716, 1, 0, 0, 0, 7716, 7717, 1, 0, 0, 0, 7717, 7718, 5, 574, 0, 0, 7718, 821, 1, 0, 0, 0, 7719, 7725, 3, 830, 415, 0, 7720, 7725, 5, 52, 0, 0, 7721, 7725, 5, 49, 0, 0, 7722, 7725, 5, 89, 0, 0, 7723, 7725, 5, 524, 0, 0, 7724, 7719, 1, 0, 0, 0, 7724, 7720, 1, 0, 0, 0, 7724, 7721, 1, 0, 0, 0, 7724, 7722, 1, 0, 0, 0, 7724, 7723, 1, 0, 0, 0, 7725, 823, 1, 0, 0, 0, 7726, 7731, 3, 822, 411, 0, 7727, 7728, 5, 6, 0, 0, 7728, 7730, 3, 822, 411, 0, 7729, 7727, 1, 0, 0, 0, 7730, 7733, 1, 0, 0, 0, 7731, 7729, 1, 0, 0, 0, 7731, 7732, 1, 0, 0, 0, 7732, 825, 1, 0, 0, 0, 7733, 7731, 1, 0, 0, 0, 7734, 7737, 3, 836, 418, 0, 7735, 7737, 3, 840, 420, 0, 7736, 7734, 1, 0, 0, 0, 7736, 7735, 1, 0, 0, 0, 7737, 827, 1, 0, 0, 0, 7738, 7741, 3, 836, 418, 0, 7739, 7741, 3, 842, 421, 0, 7740, 7738, 1, 0, 0, 0, 7740, 7739, 1, 0, 0, 0, 7741, 829, 1, 0, 0, 0, 7742, 7746, 3, 836, 418, 0, 7743, 7746, 3, 840, 420, 0, 7744, 7746, 3, 842, 421, 0, 7745, 7742, 1, 0, 0, 0, 7745, 7743, 1, 0, 0, 0, 7745, 7744, 1, 0, 0, 0, 7746, 831, 1, 0, 0, 0, 7747, 7752, 3, 836, 418, 0, 7748, 7752, 3, 840, 420, 0, 7749, 7752, 3, 842, 421, 0, 7750, 7752, 3, 844, 422, 0, 7751, 7747, 1, 0, 0, 0, 7751, 7748, 1, 0, 0, 0, 7751, 7749, 1, 0, 0, 0, 7751, 7750, 1, 0, 0, 0, 7752, 833, 1, 0, 0, 0, 7753, 7757, 3, 836, 418, 0, 7754, 7757, 3, 840, 420, 0, 7755, 7757, 3, 842, 421, 0, 7756, 7753, 1, 0, 0, 0, 7756, 7754, 1, 0, 0, 0, 7756, 7755, 1, 0, 0, 0, 7757, 835, 1, 0, 0, 0, 7758, 7761, 5, 552, 0, 0, 7759, 7760, 5, 487, 0, 0, 7760, 7762, 3, 818, 409, 0, 7761, 7759, 1, 0, 0, 0, 7761, 7762, 1, 0, 0, 0, 7762, 7770, 1, 0, 0, 0, 7763, 7770, 3, 816, 408, 0, 7764, 7770, 5, 553, 0, 0, 7765, 7770, 5, 557, 0, 0, 7766, 7770, 5, 577, 0, 0, 7767, 7770, 5, 578, 0, 0, 7768, 7770, 3, 838, 419, 0, 7769, 7758, 1, 0, 0, 0, 7769, 7763, 1, 0, 0, 0, 7769, 7764, 1, 0, 0, 0, 7769, 7765, 1, 0, 0, 0, 7769, 7766, 1, 0, 0, 0, 7769, 7767, 1, 0, 0, 0, 7769, 7768, 1, 0, 0, 0, 7770, 837, 1, 0, 0, 0, 7771, 7772, 7, 110, 0, 0, 7772, 839, 1, 0, 0, 0, 7773, 7825, 5, 387, 0, 0, 7774, 7825, 5, 388, 0, 0, 7775, 7825, 3, 658, 329, 0, 7776, 7825, 5, 390, 0, 0, 7777, 7825, 5, 391, 0, 0, 7778, 7825, 3, 660, 330, 0, 7779, 7825, 5, 393, 0, 0, 7780, 7825, 5, 394, 0, 0, 7781, 7825, 5, 395, 0, 0, 7782, 7825, 5, 396, 0, 0, 7783, 7825, 5, 397, 0, 0, 7784, 7825, 5, 398, 0, 0, 7785, 7825, 5, 399, 0, 0, 7786, 7825, 5, 470, 0, 0, 7787, 7825, 5, 400, 0, 0, 7788, 7825, 5, 401, 0, 0, 7789, 7825, 5, 402, 0, 0, 7790, 7825, 5, 403, 0, 0, 7791, 7825, 5, 404, 0, 0, 7792, 7825, 5, 405, 0, 0, 7793, 7825, 5, 406, 0, 0, 7794, 7825, 5, 407, 0, 0, 7795, 7825, 5, 489, 0, 0, 7796, 7825, 5, 408, 0, 0, 7797, 7825, 3, 654, 327, 0, 7798, 7825, 5, 453, 0, 0, 7799, 7825, 5, 410, 0, 0, 7800, 7825, 5, 411, 0, 0, 7801, 7825, 5, 412, 0, 0, 7802, 7825, 5, 413, 0, 0, 7803, 7825, 5, 414, 0, 0, 7804, 7825, 5, 415, 0, 0, 7805, 7825, 5, 416, 0, 0, 7806, 7825, 5, 417, 0, 0, 7807, 7825, 5, 418, 0, 0, 7808, 7825, 5, 419, 0, 0, 7809, 7825, 5, 420, 0, 0, 7810, 7825, 5, 421, 0, 0, 7811, 7825, 5, 422, 0, 0, 7812, 7825, 5, 423, 0, 0, 7813, 7825, 5, 424, 0, 0, 7814, 7825, 5, 425, 0, 0, 7815, 7825, 5, 426, 0, 0, 7816, 7825, 5, 427, 0, 0, 7817, 7825, 5, 428, 0, 0, 7818, 7825, 5, 476, 0, 0, 7819, 7825, 5, 429, 0, 0, 7820, 7825, 5, 430, 0, 0, 7821, 7825, 5, 431, 0, 0, 7822, 7825, 5, 432, 0, 0, 7823, 7825, 5, 474, 0, 0, 7824, 7773, 1, 0, 0, 0, 7824, 7774, 1, 0, 0, 0, 7824, 7775, 1, 0, 0, 0, 7824, 7776, 1, 0, 0, 0, 7824, 7777, 1, 0, 0, 0, 7824, 7778, 1, 0, 0, 0, 7824, 7779, 1, 0, 0, 0, 7824, 7780, 1, 0, 0, 0, 7824, 7781, 1, 0, 0, 0, 7824, 7782, 1, 0, 0, 0, 7824, 7783, 1, 0, 0, 0, 7824, 7784, 1, 0, 0, 0, 7824, 7785, 1, 0, 0, 0, 7824, 7786, 1, 0, 0, 0, 7824, 7787, 1, 0, 0, 0, 7824, 7788, 1, 0, 0, 0, 7824, 7789, 1, 0, 0, 0, 7824, 7790, 1, 0, 0, 0, 7824, 7791, 1, 0, 0, 0, 7824, 7792, 1, 0, 0, 0, 7824, 7793, 1, 0, 0, 0, 7824, 7794, 1, 0, 0, 0, 7824, 7795, 1, 0, 0, 0, 7824, 7796, 1, 0, 0, 0, 7824, 7797, 1, 0, 0, 0, 7824, 7798, 1, 0, 0, 0, 7824, 7799, 1, 0, 0, 0, 7824, 7800, 1, 0, 0, 0, 7824, 7801, 1, 0, 0, 0, 7824, 7802, 1, 0, 0, 0, 7824, 7803, 1, 0, 0, 0, 7824, 7804, 1, 0, 0, 0, 7824, 7805, 1, 0, 0, 0, 7824, 7806, 1, 0, 0, 0, 7824, 7807, 1, 0, 0, 0, 7824, 7808, 1, 0, 0, 0, 7824, 7809, 1, 0, 0, 0, 7824, 7810, 1, 0, 0, 0, 7824, 7811, 1, 0, 0, 0, 7824, 7812, 1, 0, 0, 0, 7824, 7813, 1, 0, 0, 0, 7824, 7814, 1, 0, 0, 0, 7824, 7815, 1, 0, 0, 0, 7824, 7816, 1, 0, 0, 0, 7824, 7817, 1, 0, 0, 0, 7824, 7818, 1, 0, 0, 0, 7824, 7819, 1, 0, 0, 0, 7824, 7820, 1, 0, 0, 0, 7824, 7821, 1, 0, 0, 0, 7824, 7822, 1, 0, 0, 0, 7824, 7823, 1, 0, 0, 0, 7825, 841, 1, 0, 0, 0, 7826, 7827, 7, 111, 0, 0, 7827, 843, 1, 0, 0, 0, 7828, 7829, 7, 112, 0, 0, 7829, 845, 1, 0, 0, 0, 7830, 7832, 3, 848, 424, 0, 7831, 7830, 1, 0, 0, 0, 7831, 7832, 1, 0, 0, 0, 7832, 7843, 1, 0, 0, 0, 7833, 7841, 5, 178, 0, 0, 7834, 7838, 3, 850, 425, 0, 7835, 7838, 5, 178, 0, 0, 7836, 7838, 3, 848, 424, 0, 7837, 7834, 1, 0, 0, 0, 7837, 7835, 1, 0, 0, 0, 7837, 7836, 1, 0, 0, 0, 7838, 7839, 1, 0, 0, 0, 7839, 7837, 1, 0, 0, 0, 7839, 7840, 1, 0, 0, 0, 7840, 7842, 1, 0, 0, 0, 7841, 7837, 1, 0, 0, 0, 7841, 7842, 1, 0, 0, 0, 7842, 7844, 1, 0, 0, 0, 7843, 7833, 1, 0, 0, 0, 7843, 7844, 1, 0, 0, 0, 7844, 7845, 1, 0, 0, 0, 7845, 7849, 5, 146, 0, 0, 7846, 7848, 3, 856, 428, 0, 7847, 7846, 1, 0, 0, 0, 7848, 7851, 1, 0, 0, 0, 7849, 7847, 1, 0, 0, 0, 7849, 7850, 1, 0, 0, 0, 7850, 7853, 1, 0, 0, 0, 7851, 7849, 1, 0, 0, 0, 7852, 7854, 3, 934, 467, 0, 7853, 7852, 1, 0, 0, 0, 7853, 7854, 1, 0, 0, 0, 7854, 7855, 1, 0, 0, 0, 7855, 7857, 5, 454, 0, 0, 7856, 7858, 3, 938, 469, 0, 7857, 7856, 1, 0, 0, 0, 7857, 7858, 1, 0, 0, 0, 7858, 847, 1, 0, 0, 0, 7859, 7860, 5, 18, 0, 0, 7860, 7861, 3, 938, 469, 0, 7861, 7862, 5, 19, 0, 0, 7862, 849, 1, 0, 0, 0, 7863, 7910, 3, 938, 469, 0, 7864, 7865, 5, 496, 0, 0, 7865, 7868, 5, 62, 0, 0, 7866, 7869, 5, 28, 0, 0, 7867, 7869, 3, 826, 413, 0, 7868, 7866, 1, 0, 0, 0, 7868, 7867, 1, 0, 0, 0, 7869, 7911, 1, 0, 0, 0, 7870, 7872, 5, 497, 0, 0, 7871, 7870, 1, 0, 0, 0, 7871, 7872, 1, 0, 0, 0, 7872, 7873, 1, 0, 0, 0, 7873, 7875, 3, 648, 324, 0, 7874, 7876, 3, 90, 45, 0, 7875, 7874, 1, 0, 0, 0, 7875, 7876, 1, 0, 0, 0, 7876, 7879, 1, 0, 0, 0, 7877, 7878, 5, 77, 0, 0, 7878, 7880, 5, 78, 0, 0, 7879, 7877, 1, 0, 0, 0, 7879, 7880, 1, 0, 0, 0, 7880, 7886, 1, 0, 0, 0, 7881, 7884, 3, 854, 427, 0, 7882, 7884, 5, 53, 0, 0, 7883, 7881, 1, 0, 0, 0, 7883, 7882, 1, 0, 0, 0, 7884, 7885, 1, 0, 0, 0, 7885, 7887, 3, 940, 470, 0, 7886, 7883, 1, 0, 0, 0, 7886, 7887, 1, 0, 0, 0, 7887, 7911, 1, 0, 0, 0, 7888, 7890, 5, 269, 0, 0, 7889, 7888, 1, 0, 0, 0, 7889, 7890, 1, 0, 0, 0, 7890, 7891, 1, 0, 0, 0, 7891, 7893, 5, 324, 0, 0, 7892, 7889, 1, 0, 0, 0, 7892, 7893, 1, 0, 0, 0, 7893, 7894, 1, 0, 0, 0, 7894, 7906, 5, 172, 0, 0, 7895, 7896, 5, 2, 0, 0, 7896, 7901, 3, 852, 426, 0, 7897, 7898, 5, 6, 0, 0, 7898, 7900, 3, 852, 426, 0, 7899, 7897, 1, 0, 0, 0, 7900, 7903, 1, 0, 0, 0, 7901, 7899, 1, 0, 0, 0, 7901, 7902, 1, 0, 0, 0, 7902, 7904, 1, 0, 0, 0, 7903, 7901, 1, 0, 0, 0, 7904, 7905, 5, 3, 0, 0, 7905, 7907, 1, 0, 0, 0, 7906, 7895, 1, 0, 0, 0, 7906, 7907, 1, 0, 0, 0, 7907, 7908, 1, 0, 0, 0, 7908, 7909, 7, 113, 0, 0, 7909, 7911, 3, 554, 277, 0, 7910, 7864, 1, 0, 0, 0, 7910, 7871, 1, 0, 0, 0, 7910, 7892, 1, 0, 0, 0, 7911, 7912, 1, 0, 0, 0, 7912, 7913, 5, 7, 0, 0, 7913, 851, 1, 0, 0, 0, 7914, 7915, 3, 938, 469, 0, 7915, 7916, 3, 648, 324, 0, 7916, 853, 1, 0, 0, 0, 7917, 7918, 7, 114, 0, 0, 7918, 855, 1, 0, 0, 0, 7919, 7920, 3, 846, 423, 0, 7920, 7921, 5, 7, 0, 0, 7921, 7944, 1, 0, 0, 0, 7922, 7944, 3, 884, 442, 0, 7923, 7944, 3, 886, 443, 0, 7924, 7944, 3, 862, 431, 0, 7925, 7944, 3, 870, 435, 0, 7926, 7944, 3, 874, 437, 0, 7927, 7944, 3, 876, 438, 0, 7928, 7944, 3, 880, 440, 0, 7929, 7944, 3, 882, 441, 0, 7930, 7944, 3, 890, 445, 0, 7931, 7944, 3, 894, 447, 0, 7932, 7944, 3, 896, 448, 0, 7933, 7944, 3, 858, 429, 0, 7934, 7944, 3, 860, 430, 0, 7935, 7944, 3, 864, 432, 0, 7936, 7944, 3, 900, 450, 0, 7937, 7944, 3, 904, 452, 0, 7938, 7944, 3, 908, 454, 0, 7939, 7944, 3, 924, 462, 0, 7940, 7944, 3, 926, 463, 0, 7941, 7944, 3, 928, 464, 0, 7942, 7944, 3, 930, 465, 0, 7943, 7919, 1, 0, 0, 0, 7943, 7922, 1, 0, 0, 0, 7943, 7923, 1, 0, 0, 0, 7943, 7924, 1, 0, 0, 0, 7943, 7925, 1, 0, 0, 0, 7943, 7926, 1, 0, 0, 0, 7943, 7927, 1, 0, 0, 0, 7943, 7928, 1, 0, 0, 0, 7943, 7929, 1, 0, 0, 0, 7943, 7930, 1, 0, 0, 0, 7943, 7931, 1, 0, 0, 0, 7943, 7932, 1, 0, 0, 0, 7943, 7933, 1, 0, 0, 0, 7943, 7934, 1, 0, 0, 0, 7943, 7935, 1, 0, 0, 0, 7943, 7936, 1, 0, 0, 0, 7943, 7937, 1, 0, 0, 0, 7943, 7938, 1, 0, 0, 0, 7943, 7939, 1, 0, 0, 0, 7943, 7940, 1, 0, 0, 0, 7943, 7941, 1, 0, 0, 0, 7943, 7942, 1, 0, 0, 0, 7944, 857, 1, 0, 0, 0, 7945, 7946, 5, 498, 0, 0, 7946, 7947, 3, 940, 470, 0, 7947, 7948, 5, 7, 0, 0, 7948, 859, 1, 0, 0, 0, 7949, 7950, 5, 433, 0, 0, 7950, 7957, 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, 7958, 5, 7, 0, 0, 7957, 7951, 1, 0, 0, 0, 7957, 7958, 1, 0, 0, 0, 7958, 7969, 1, 0, 0, 0, 7959, 7960, 5, 57, 0, 0, 7960, 7961, 3, 938, 469, 0, 7961, 7963, 5, 2, 0, 0, 7962, 7964, 3, 728, 364, 0, 7963, 7962, 1, 0, 0, 0, 7963, 7964, 1, 0, 0, 0, 7964, 7965, 1, 0, 0, 0, 7965, 7966, 5, 3, 0, 0, 7966, 7967, 5, 7, 0, 0, 7967, 7969, 1, 0, 0, 0, 7968, 7949, 1, 0, 0, 0, 7968, 7959, 1, 0, 0, 0, 7969, 861, 1, 0, 0, 0, 7970, 7971, 3, 868, 434, 0, 7971, 7972, 3, 854, 427, 0, 7972, 7973, 3, 940, 470, 0, 7973, 7974, 5, 7, 0, 0, 7974, 863, 1, 0, 0, 0, 7975, 7977, 5, 499, 0, 0, 7976, 7978, 7, 115, 0, 0, 7977, 7976, 1, 0, 0, 0, 7977, 7978, 1, 0, 0, 0, 7978, 7979, 1, 0, 0, 0, 7979, 7980, 5, 500, 0, 0, 7980, 7985, 3, 866, 433, 0, 7981, 7982, 5, 6, 0, 0, 7982, 7984, 3, 866, 433, 0, 7983, 7981, 1, 0, 0, 0, 7984, 7987, 1, 0, 0, 0, 7985, 7983, 1, 0, 0, 0, 7985, 7986, 1, 0, 0, 0, 7986, 7988, 1, 0, 0, 0, 7987, 7985, 1, 0, 0, 0, 7988, 7989, 5, 7, 0, 0, 7989, 865, 1, 0, 0, 0, 7990, 7991, 3, 868, 434, 0, 7991, 7992, 3, 854, 427, 0, 7992, 7993, 3, 826, 413, 0, 7993, 867, 1, 0, 0, 0, 7994, 7997, 3, 310, 155, 0, 7995, 7997, 5, 28, 0, 0, 7996, 7994, 1, 0, 0, 0, 7996, 7995, 1, 0, 0, 0, 7997, 8004, 1, 0, 0, 0, 7998, 7999, 5, 4, 0, 0, 7999, 8000, 3, 670, 335, 0, 8000, 8001, 5, 5, 0, 0, 8001, 8003, 1, 0, 0, 0, 8002, 7998, 1, 0, 0, 0, 8003, 8006, 1, 0, 0, 0, 8004, 8002, 1, 0, 0, 0, 8004, 8005, 1, 0, 0, 0, 8005, 869, 1, 0, 0, 0, 8006, 8004, 1, 0, 0, 0, 8007, 8008, 5, 220, 0, 0, 8008, 8009, 3, 940, 470, 0, 8009, 8013, 5, 93, 0, 0, 8010, 8012, 3, 856, 428, 0, 8011, 8010, 1, 0, 0, 0, 8012, 8015, 1, 0, 0, 0, 8013, 8011, 1, 0, 0, 0, 8013, 8014, 1, 0, 0, 0, 8014, 8027, 1, 0, 0, 0, 8015, 8013, 1, 0, 0, 0, 8016, 8017, 5, 502, 0, 0, 8017, 8018, 3, 670, 335, 0, 8018, 8022, 5, 93, 0, 0, 8019, 8021, 3, 856, 428, 0, 8020, 8019, 1, 0, 0, 0, 8021, 8024, 1, 0, 0, 0, 8022, 8020, 1, 0, 0, 0, 8022, 8023, 1, 0, 0, 0, 8023, 8026, 1, 0, 0, 0, 8024, 8022, 1, 0, 0, 0, 8025, 8016, 1, 0, 0, 0, 8026, 8029, 1, 0, 0, 0, 8027, 8025, 1, 0, 0, 0, 8027, 8028, 1, 0, 0, 0, 8028, 8031, 1, 0, 0, 0, 8029, 8027, 1, 0, 0, 0, 8030, 8032, 3, 872, 436, 0, 8031, 8030, 1, 0, 0, 0, 8031, 8032, 1, 0, 0, 0, 8032, 8033, 1, 0, 0, 0, 8033, 8034, 5, 454, 0, 0, 8034, 8035, 5, 220, 0, 0, 8035, 8036, 5, 7, 0, 0, 8036, 871, 1, 0, 0, 0, 8037, 8041, 5, 58, 0, 0, 8038, 8040, 3, 856, 428, 0, 8039, 8038, 1, 0, 0, 0, 8040, 8043, 1, 0, 0, 0, 8041, 8039, 1, 0, 0, 0, 8041, 8042, 1, 0, 0, 0, 8042, 873, 1, 0, 0, 0, 8043, 8041, 1, 0, 0, 0, 8044, 8046, 5, 40, 0, 0, 8045, 8047, 3, 940, 470, 0, 8046, 8045, 1, 0, 0, 0, 8046, 8047, 1, 0, 0, 0, 8047, 8057, 1, 0, 0, 0, 8048, 8049, 5, 102, 0, 0, 8049, 8050, 3, 728, 364, 0, 8050, 8054, 5, 93, 0, 0, 8051, 8053, 3, 856, 428, 0, 8052, 8051, 1, 0, 0, 0, 8053, 8056, 1, 0, 0, 0, 8054, 8052, 1, 0, 0, 0, 8054, 8055, 1, 0, 0, 0, 8055, 8058, 1, 0, 0, 0, 8056, 8054, 1, 0, 0, 0, 8057, 8048, 1, 0, 0, 0, 8058, 8059, 1, 0, 0, 0, 8059, 8057, 1, 0, 0, 0, 8059, 8060, 1, 0, 0, 0, 8060, 8062, 1, 0, 0, 0, 8061, 8063, 3, 872, 436, 0, 8062, 8061, 1, 0, 0, 0, 8062, 8063, 1, 0, 0, 0, 8063, 8064, 1, 0, 0, 0, 8064, 8065, 5, 454, 0, 0, 8065, 8066, 5, 40, 0, 0, 8066, 8067, 5, 7, 0, 0, 8067, 875, 1, 0, 0, 0, 8068, 8070, 3, 848, 424, 0, 8069, 8068, 1, 0, 0, 0, 8069, 8070, 1, 0, 0, 0, 8070, 8075, 1, 0, 0, 0, 8071, 8072, 5, 503, 0, 0, 8072, 8076, 3, 670, 335, 0, 8073, 8074, 5, 62, 0, 0, 8074, 8076, 3, 878, 439, 0, 8075, 8071, 1, 0, 0, 0, 8075, 8073, 1, 0, 0, 0, 8075, 8076, 1, 0, 0, 0, 8076, 8077, 1, 0, 0, 0, 8077, 8078, 3, 892, 446, 0, 8078, 877, 1, 0, 0, 0, 8079, 8080, 3, 308, 154, 0, 8080, 8103, 5, 68, 0, 0, 8081, 8083, 3, 826, 413, 0, 8082, 8084, 3, 528, 264, 0, 8083, 8082, 1, 0, 0, 0, 8083, 8084, 1, 0, 0, 0, 8084, 8104, 1, 0, 0, 0, 8085, 8104, 3, 554, 277, 0, 8086, 8104, 3, 514, 257, 0, 8087, 8088, 5, 202, 0, 0, 8088, 8091, 3, 670, 335, 0, 8089, 8090, 5, 100, 0, 0, 8090, 8092, 3, 728, 364, 0, 8091, 8089, 1, 0, 0, 0, 8091, 8092, 1, 0, 0, 0, 8092, 8104, 1, 0, 0, 0, 8093, 8095, 5, 504, 0, 0, 8094, 8093, 1, 0, 0, 0, 8094, 8095, 1, 0, 0, 0, 8095, 8096, 1, 0, 0, 0, 8096, 8097, 3, 670, 335, 0, 8097, 8098, 5, 24, 0, 0, 8098, 8101, 3, 670, 335, 0, 8099, 8100, 5, 147, 0, 0, 8100, 8102, 3, 670, 335, 0, 8101, 8099, 1, 0, 0, 0, 8101, 8102, 1, 0, 0, 0, 8102, 8104, 1, 0, 0, 0, 8103, 8081, 1, 0, 0, 0, 8103, 8085, 1, 0, 0, 0, 8103, 8086, 1, 0, 0, 0, 8103, 8087, 1, 0, 0, 0, 8103, 8094, 1, 0, 0, 0, 8104, 879, 1, 0, 0, 0, 8105, 8107, 3, 848, 424, 0, 8106, 8105, 1, 0, 0, 0, 8106, 8107, 1, 0, 0, 0, 8107, 8108, 1, 0, 0, 0, 8108, 8109, 5, 505, 0, 0, 8109, 8112, 3, 308, 154, 0, 8110, 8111, 5, 506, 0, 0, 8111, 8113, 5, 574, 0, 0, 8112, 8110, 1, 0, 0, 0, 8112, 8113, 1, 0, 0, 0, 8113, 8114, 1, 0, 0, 0, 8114, 8115, 5, 68, 0, 0, 8115, 8116, 5, 35, 0, 0, 8116, 8117, 3, 670, 335, 0, 8117, 8118, 3, 892, 446, 0, 8118, 881, 1, 0, 0, 0, 8119, 8121, 7, 116, 0, 0, 8120, 8122, 3, 938, 469, 0, 8121, 8120, 1, 0, 0, 0, 8121, 8122, 1, 0, 0, 0, 8122, 8125, 1, 0, 0, 0, 8123, 8124, 5, 102, 0, 0, 8124, 8126, 3, 940, 470, 0, 8125, 8123, 1, 0, 0, 0, 8125, 8126, 1, 0, 0, 0, 8126, 8127, 1, 0, 0, 0, 8127, 8128, 5, 7, 0, 0, 8128, 883, 1, 0, 0, 0, 8129, 8144, 5, 508, 0, 0, 8130, 8131, 5, 268, 0, 0, 8131, 8145, 3, 940, 470, 0, 8132, 8139, 5, 509, 0, 0, 8133, 8134, 5, 202, 0, 0, 8134, 8135, 3, 670, 335, 0, 8135, 8136, 5, 100, 0, 0, 8136, 8137, 3, 728, 364, 0, 8137, 8140, 1, 0, 0, 0, 8138, 8140, 3, 554, 277, 0, 8139, 8133, 1, 0, 0, 0, 8139, 8138, 1, 0, 0, 0, 8140, 8145, 1, 0, 0, 0, 8141, 8143, 3, 940, 470, 0, 8142, 8141, 1, 0, 0, 0, 8142, 8143, 1, 0, 0, 0, 8143, 8145, 1, 0, 0, 0, 8144, 8130, 1, 0, 0, 0, 8144, 8132, 1, 0, 0, 0, 8144, 8142, 1, 0, 0, 0, 8145, 8146, 1, 0, 0, 0, 8146, 8147, 5, 7, 0, 0, 8147, 885, 1, 0, 0, 0, 8148, 8178, 5, 510, 0, 0, 8149, 8151, 7, 117, 0, 0, 8150, 8149, 1, 0, 0, 0, 8150, 8151, 1, 0, 0, 0, 8151, 8164, 1, 0, 0, 0, 8152, 8165, 3, 836, 418, 0, 8153, 8154, 5, 511, 0, 0, 8154, 8165, 3, 816, 408, 0, 8155, 8162, 3, 816, 408, 0, 8156, 8157, 5, 6, 0, 0, 8157, 8159, 3, 670, 335, 0, 8158, 8156, 1, 0, 0, 0, 8159, 8160, 1, 0, 0, 0, 8160, 8158, 1, 0, 0, 0, 8160, 8161, 1, 0, 0, 0, 8161, 8163, 1, 0, 0, 0, 8162, 8158, 1, 0, 0, 0, 8162, 8163, 1, 0, 0, 0, 8163, 8165, 1, 0, 0, 0, 8164, 8152, 1, 0, 0, 0, 8164, 8153, 1, 0, 0, 0, 8164, 8155, 1, 0, 0, 0, 8164, 8165, 1, 0, 0, 0, 8165, 8175, 1, 0, 0, 0, 8166, 8167, 5, 100, 0, 0, 8167, 8172, 3, 888, 444, 0, 8168, 8169, 5, 6, 0, 0, 8169, 8171, 3, 888, 444, 0, 8170, 8168, 1, 0, 0, 0, 8171, 8174, 1, 0, 0, 0, 8172, 8170, 1, 0, 0, 0, 8172, 8173, 1, 0, 0, 0, 8173, 8176, 1, 0, 0, 0, 8174, 8172, 1, 0, 0, 0, 8175, 8166, 1, 0, 0, 0, 8175, 8176, 1, 0, 0, 0, 8176, 8177, 1, 0, 0, 0, 8177, 8179, 5, 7, 0, 0, 8178, 8150, 1, 0, 0, 0, 8178, 8179, 1, 0, 0, 0, 8179, 887, 1, 0, 0, 0, 8180, 8181, 3, 836, 418, 0, 8181, 8182, 5, 10, 0, 0, 8182, 8183, 3, 670, 335, 0, 8183, 889, 1, 0, 0, 0, 8184, 8185, 5, 518, 0, 0, 8185, 8188, 3, 940, 470, 0, 8186, 8187, 5, 6, 0, 0, 8187, 8189, 3, 940, 470, 0, 8188, 8186, 1, 0, 0, 0, 8188, 8189, 1, 0, 0, 0, 8189, 8190, 1, 0, 0, 0, 8190, 8191, 5, 7, 0, 0, 8191, 891, 1, 0, 0, 0, 8192, 8196, 5, 519, 0, 0, 8193, 8195, 3, 856, 428, 0, 8194, 8193, 1, 0, 0, 0, 8195, 8198, 1, 0, 0, 0, 8196, 8194, 1, 0, 0, 0, 8196, 8197, 1, 0, 0, 0, 8197, 8199, 1, 0, 0, 0, 8198, 8196, 1, 0, 0, 0, 8199, 8200, 5, 454, 0, 0, 8200, 8202, 5, 519, 0, 0, 8201, 8203, 3, 938, 469, 0, 8202, 8201, 1, 0, 0, 0, 8202, 8203, 1, 0, 0, 0, 8203, 8204, 1, 0, 0, 0, 8204, 8205, 5, 7, 0, 0, 8205, 893, 1, 0, 0, 0, 8206, 8208, 3, 4, 2, 0, 8207, 8209, 3, 898, 449, 0, 8208, 8207, 1, 0, 0, 0, 8208, 8209, 1, 0, 0, 0, 8209, 8210, 1, 0, 0, 0, 8210, 8211, 5, 7, 0, 0, 8211, 895, 1, 0, 0, 0, 8212, 8213, 5, 202, 0, 0, 8213, 8229, 3, 670, 335, 0, 8214, 8216, 3, 898, 449, 0, 8215, 8214, 1, 0, 0, 0, 8215, 8216, 1, 0, 0, 0, 8216, 8219, 1, 0, 0, 0, 8217, 8218, 5, 100, 0, 0, 8218, 8220, 3, 728, 364, 0, 8219, 8217, 1, 0, 0, 0, 8219, 8220, 1, 0, 0, 0, 8220, 8230, 1, 0, 0, 0, 8221, 8222, 5, 100, 0, 0, 8222, 8224, 3, 728, 364, 0, 8223, 8221, 1, 0, 0, 0, 8223, 8224, 1, 0, 0, 0, 8224, 8226, 1, 0, 0, 0, 8225, 8227, 3, 898, 449, 0, 8226, 8225, 1, 0, 0, 0, 8226, 8227, 1, 0, 0, 0, 8227, 8230, 1, 0, 0, 0, 8228, 8230, 1, 0, 0, 0, 8229, 8215, 1, 0, 0, 0, 8229, 8223, 1, 0, 0, 0, 8229, 8228, 1, 0, 0, 0, 8230, 8231, 1, 0, 0, 0, 8231, 8232, 5, 7, 0, 0, 8232, 897, 1, 0, 0, 0, 8233, 8235, 5, 71, 0, 0, 8234, 8236, 5, 346, 0, 0, 8235, 8234, 1, 0, 0, 0, 8235, 8236, 1, 0, 0, 0, 8236, 8237, 1, 0, 0, 0, 8237, 8238, 3, 728, 364, 0, 8238, 899, 1, 0, 0, 0, 8239, 8271, 5, 520, 0, 0, 8240, 8245, 3, 932, 466, 0, 8241, 8243, 5, 269, 0, 0, 8242, 8241, 1, 0, 0, 0, 8242, 8243, 1, 0, 0, 0, 8243, 8244, 1, 0, 0, 0, 8244, 8246, 5, 324, 0, 0, 8245, 8242, 1, 0, 0, 0, 8245, 8246, 1, 0, 0, 0, 8246, 8247, 1, 0, 0, 0, 8247, 8255, 5, 62, 0, 0, 8248, 8256, 3, 554, 277, 0, 8249, 8250, 5, 202, 0, 0, 8250, 8253, 3, 940, 470, 0, 8251, 8252, 5, 100, 0, 0, 8252, 8254, 3, 728, 364, 0, 8253, 8251, 1, 0, 0, 0, 8253, 8254, 1, 0, 0, 0, 8254, 8256, 1, 0, 0, 0, 8255, 8248, 1, 0, 0, 0, 8255, 8249, 1, 0, 0, 0, 8256, 8272, 1, 0, 0, 0, 8257, 8269, 3, 826, 413, 0, 8258, 8259, 5, 2, 0, 0, 8259, 8264, 3, 902, 451, 0, 8260, 8261, 5, 6, 0, 0, 8261, 8263, 3, 902, 451, 0, 8262, 8260, 1, 0, 0, 0, 8263, 8266, 1, 0, 0, 0, 8264, 8262, 1, 0, 0, 0, 8264, 8265, 1, 0, 0, 0, 8265, 8267, 1, 0, 0, 0, 8266, 8264, 1, 0, 0, 0, 8267, 8268, 5, 3, 0, 0, 8268, 8270, 1, 0, 0, 0, 8269, 8258, 1, 0, 0, 0, 8269, 8270, 1, 0, 0, 0, 8270, 8272, 1, 0, 0, 0, 8271, 8240, 1, 0, 0, 0, 8271, 8257, 1, 0, 0, 0, 8272, 8273, 1, 0, 0, 0, 8273, 8274, 5, 7, 0, 0, 8274, 901, 1, 0, 0, 0, 8275, 8276, 3, 826, 413, 0, 8276, 8277, 5, 20, 0, 0, 8277, 8279, 1, 0, 0, 0, 8278, 8275, 1, 0, 0, 0, 8278, 8279, 1, 0, 0, 0, 8279, 8280, 1, 0, 0, 0, 8280, 8281, 3, 670, 335, 0, 8281, 903, 1, 0, 0, 0, 8282, 8284, 5, 61, 0, 0, 8283, 8285, 3, 906, 453, 0, 8284, 8283, 1, 0, 0, 0, 8284, 8285, 1, 0, 0, 0, 8285, 8287, 1, 0, 0, 0, 8286, 8288, 3, 326, 163, 0, 8287, 8286, 1, 0, 0, 0, 8287, 8288, 1, 0, 0, 0, 8288, 8289, 1, 0, 0, 0, 8289, 8290, 3, 932, 466, 0, 8290, 8291, 5, 71, 0, 0, 8291, 8292, 3, 728, 364, 0, 8292, 8293, 5, 7, 0, 0, 8293, 905, 1, 0, 0, 0, 8294, 8309, 5, 268, 0, 0, 8295, 8309, 5, 293, 0, 0, 8296, 8309, 5, 207, 0, 0, 8297, 8309, 5, 249, 0, 0, 8298, 8300, 7, 51, 0, 0, 8299, 8298, 1, 0, 0, 0, 8299, 8300, 1, 0, 0, 0, 8300, 8301, 1, 0, 0, 0, 8301, 8309, 3, 670, 335, 0, 8302, 8309, 5, 30, 0, 0, 8303, 8306, 7, 118, 0, 0, 8304, 8307, 3, 670, 335, 0, 8305, 8307, 5, 30, 0, 0, 8306, 8304, 1, 0, 0, 0, 8306, 8305, 1, 0, 0, 0, 8306, 8307, 1, 0, 0, 0, 8307, 8309, 1, 0, 0, 0, 8308, 8294, 1, 0, 0, 0, 8308, 8295, 1, 0, 0, 0, 8308, 8296, 1, 0, 0, 0, 8308, 8297, 1, 0, 0, 0, 8308, 8299, 1, 0, 0, 0, 8308, 8302, 1, 0, 0, 0, 8308, 8303, 1, 0, 0, 0, 8309, 907, 1, 0, 0, 0, 8310, 8312, 5, 265, 0, 0, 8311, 8313, 3, 906, 453, 0, 8312, 8311, 1, 0, 0, 0, 8312, 8313, 1, 0, 0, 0, 8313, 8314, 1, 0, 0, 0, 8314, 8315, 3, 932, 466, 0, 8315, 8316, 5, 7, 0, 0, 8316, 909, 1, 0, 0, 0, 8317, 8319, 3, 566, 283, 0, 8318, 8317, 1, 0, 0, 0, 8318, 8319, 1, 0, 0, 0, 8319, 8320, 1, 0, 0, 0, 8320, 8321, 5, 525, 0, 0, 8321, 8323, 5, 71, 0, 0, 8322, 8324, 5, 81, 0, 0, 8323, 8322, 1, 0, 0, 0, 8323, 8324, 1, 0, 0, 0, 8324, 8325, 1, 0, 0, 0, 8325, 8327, 3, 778, 389, 0, 8326, 8328, 5, 9, 0, 0, 8327, 8326, 1, 0, 0, 0, 8327, 8328, 1, 0, 0, 0, 8328, 8333, 1, 0, 0, 0, 8329, 8331, 5, 36, 0, 0, 8330, 8329, 1, 0, 0, 0, 8330, 8331, 1, 0, 0, 0, 8331, 8332, 1, 0, 0, 0, 8332, 8334, 3, 826, 413, 0, 8333, 8330, 1, 0, 0, 0, 8333, 8334, 1, 0, 0, 0, 8334, 8335, 1, 0, 0, 0, 8335, 8336, 5, 100, 0, 0, 8336, 8337, 3, 912, 456, 0, 8337, 8338, 5, 80, 0, 0, 8338, 8340, 3, 670, 335, 0, 8339, 8341, 3, 914, 457, 0, 8340, 8339, 1, 0, 0, 0, 8341, 8342, 1, 0, 0, 0, 8342, 8340, 1, 0, 0, 0, 8342, 8343, 1, 0, 0, 0, 8343, 8345, 1, 0, 0, 0, 8344, 8346, 3, 540, 270, 0, 8345, 8344, 1, 0, 0, 0, 8345, 8346, 1, 0, 0, 0, 8346, 911, 1, 0, 0, 0, 8347, 8349, 5, 81, 0, 0, 8348, 8347, 1, 0, 0, 0, 8348, 8349, 1, 0, 0, 0, 8349, 8350, 1, 0, 0, 0, 8350, 8352, 3, 778, 389, 0, 8351, 8353, 5, 9, 0, 0, 8352, 8351, 1, 0, 0, 0, 8352, 8353, 1, 0, 0, 0, 8353, 8359, 1, 0, 0, 0, 8354, 8357, 3, 558, 279, 0, 8355, 8357, 3, 602, 301, 0, 8356, 8354, 1, 0, 0, 0, 8356, 8355, 1, 0, 0, 0, 8357, 8359, 1, 0, 0, 0, 8358, 8348, 1, 0, 0, 0, 8358, 8356, 1, 0, 0, 0, 8359, 8364, 1, 0, 0, 0, 8360, 8362, 5, 36, 0, 0, 8361, 8360, 1, 0, 0, 0, 8361, 8362, 1, 0, 0, 0, 8362, 8363, 1, 0, 0, 0, 8363, 8365, 3, 826, 413, 0, 8364, 8361, 1, 0, 0, 0, 8364, 8365, 1, 0, 0, 0, 8365, 913, 1, 0, 0, 0, 8366, 8367, 5, 102, 0, 0, 8367, 8370, 5, 526, 0, 0, 8368, 8369, 5, 33, 0, 0, 8369, 8371, 3, 670, 335, 0, 8370, 8368, 1, 0, 0, 0, 8370, 8371, 1, 0, 0, 0, 8371, 8372, 1, 0, 0, 0, 8372, 8377, 5, 93, 0, 0, 8373, 8378, 3, 918, 459, 0, 8374, 8378, 5, 182, 0, 0, 8375, 8376, 5, 57, 0, 0, 8376, 8378, 5, 270, 0, 0, 8377, 8373, 1, 0, 0, 0, 8377, 8374, 1, 0, 0, 0, 8377, 8375, 1, 0, 0, 0, 8378, 8393, 1, 0, 0, 0, 8379, 8380, 5, 102, 0, 0, 8380, 8381, 5, 77, 0, 0, 8381, 8384, 5, 526, 0, 0, 8382, 8383, 5, 33, 0, 0, 8383, 8385, 3, 670, 335, 0, 8384, 8382, 1, 0, 0, 0, 8384, 8385, 1, 0, 0, 0, 8385, 8386, 1, 0, 0, 0, 8386, 8390, 5, 93, 0, 0, 8387, 8391, 3, 916, 458, 0, 8388, 8389, 5, 57, 0, 0, 8389, 8391, 5, 270, 0, 0, 8390, 8387, 1, 0, 0, 0, 8390, 8388, 1, 0, 0, 0, 8391, 8393, 1, 0, 0, 0, 8392, 8366, 1, 0, 0, 0, 8392, 8379, 1, 0, 0, 0, 8393, 915, 1, 0, 0, 0, 8394, 8396, 5, 241, 0, 0, 8395, 8397, 3, 138, 69, 0, 8396, 8395, 1, 0, 0, 0, 8396, 8397, 1, 0, 0, 0, 8397, 8401, 1, 0, 0, 0, 8398, 8399, 5, 463, 0, 0, 8399, 8400, 7, 77, 0, 0, 8400, 8402, 5, 450, 0, 0, 8401, 8398, 1, 0, 0, 0, 8401, 8402, 1, 0, 0, 0, 8402, 8403, 1, 0, 0, 0, 8403, 8404, 3, 920, 460, 0, 8404, 917, 1, 0, 0, 0, 8405, 8406, 5, 369, 0, 0, 8406, 8424, 5, 333, 0, 0, 8407, 8408, 3, 806, 403, 0, 8408, 8409, 5, 10, 0, 0, 8409, 8410, 3, 922, 461, 0, 8410, 8425, 1, 0, 0, 0, 8411, 8412, 3, 138, 69, 0, 8412, 8413, 5, 10, 0, 0, 8413, 8414, 5, 2, 0, 0, 8414, 8419, 3, 922, 461, 0, 8415, 8416, 5, 6, 0, 0, 8416, 8418, 3, 922, 461, 0, 8417, 8415, 1, 0, 0, 0, 8418, 8421, 1, 0, 0, 0, 8419, 8417, 1, 0, 0, 0, 8419, 8420, 1, 0, 0, 0, 8420, 8422, 1, 0, 0, 0, 8421, 8419, 1, 0, 0, 0, 8422, 8423, 5, 3, 0, 0, 8423, 8425, 1, 0, 0, 0, 8424, 8407, 1, 0, 0, 0, 8424, 8411, 1, 0, 0, 0, 8425, 8426, 1, 0, 0, 0, 8426, 8424, 1, 0, 0, 0, 8426, 8427, 1, 0, 0, 0, 8427, 919, 1, 0, 0, 0, 8428, 8429, 5, 422, 0, 0, 8429, 8430, 5, 2, 0, 0, 8430, 8435, 3, 922, 461, 0, 8431, 8432, 5, 6, 0, 0, 8432, 8434, 3, 922, 461, 0, 8433, 8431, 1, 0, 0, 0, 8434, 8437, 1, 0, 0, 0, 8435, 8433, 1, 0, 0, 0, 8435, 8436, 1, 0, 0, 0, 8436, 8438, 1, 0, 0, 0, 8437, 8435, 1, 0, 0, 0, 8438, 8439, 5, 3, 0, 0, 8439, 8443, 1, 0, 0, 0, 8440, 8441, 5, 53, 0, 0, 8441, 8443, 5, 422, 0, 0, 8442, 8428, 1, 0, 0, 0, 8442, 8440, 1, 0, 0, 0, 8443, 921, 1, 0, 0, 0, 8444, 8447, 3, 582, 291, 0, 8445, 8447, 5, 53, 0, 0, 8446, 8444, 1, 0, 0, 0, 8446, 8445, 1, 0, 0, 0, 8447, 923, 1, 0, 0, 0, 8448, 8449, 5, 157, 0, 0, 8449, 8450, 3, 932, 466, 0, 8450, 8451, 5, 7, 0, 0, 8451, 925, 1, 0, 0, 0, 8452, 8453, 5, 78, 0, 0, 8453, 8454, 5, 7, 0, 0, 8454, 927, 1, 0, 0, 0, 8455, 8461, 7, 68, 0, 0, 8456, 8458, 5, 33, 0, 0, 8457, 8459, 5, 269, 0, 0, 8458, 8457, 1, 0, 0, 0, 8458, 8459, 1, 0, 0, 0, 8459, 8460, 1, 0, 0, 0, 8460, 8462, 5, 153, 0, 0, 8461, 8456, 1, 0, 0, 0, 8461, 8462, 1, 0, 0, 0, 8462, 8463, 1, 0, 0, 0, 8463, 8464, 5, 7, 0, 0, 8464, 929, 1, 0, 0, 0, 8465, 8466, 5, 333, 0, 0, 8466, 8467, 3, 310, 155, 0, 8467, 8468, 5, 94, 0, 0, 8468, 8469, 5, 53, 0, 0, 8469, 8470, 5, 7, 0, 0, 8470, 8478, 1, 0, 0, 0, 8471, 8474, 5, 313, 0, 0, 8472, 8475, 3, 310, 155, 0, 8473, 8475, 5, 30, 0, 0, 8474, 8472, 1, 0, 0, 0, 8474, 8473, 1, 0, 0, 0, 8475, 8476, 1, 0, 0, 0, 8476, 8478, 5, 7, 0, 0, 8477, 8465, 1, 0, 0, 0, 8477, 8471, 1, 0, 0, 0, 8478, 931, 1, 0, 0, 0, 8479, 8482, 3, 826, 413, 0, 8480, 8482, 5, 28, 0, 0, 8481, 8479, 1, 0, 0, 0, 8481, 8480, 1, 0, 0, 0, 8482, 933, 1, 0, 0, 0, 8483, 8500, 5, 517, 0, 0, 8484, 8485, 5, 102, 0, 0, 8485, 8490, 3, 936, 468, 0, 8486, 8487, 5, 82, 0, 0, 8487, 8489, 3, 936, 468, 0, 8488, 8486, 1, 0, 0, 0, 8489, 8492, 1, 0, 0, 0, 8490, 8488, 1, 0, 0, 0, 8490, 8491, 1, 0, 0, 0, 8491, 8493, 1, 0, 0, 0, 8492, 8490, 1, 0, 0, 0, 8493, 8497, 5, 93, 0, 0, 8494, 8496, 3, 856, 428, 0, 8495, 8494, 1, 0, 0, 0, 8496, 8499, 1, 0, 0, 0, 8497, 8495, 1, 0, 0, 0, 8497, 8498, 1, 0, 0, 0, 8498, 8501, 1, 0, 0, 0, 8499, 8497, 1, 0, 0, 0, 8500, 8484, 1, 0, 0, 0, 8501, 8502, 1, 0, 0, 0, 8502, 8500, 1, 0, 0, 0, 8502, 8503, 1, 0, 0, 0, 8503, 935, 1, 0, 0, 0, 8504, 8508, 3, 938, 469, 0, 8505, 8506, 5, 511, 0, 0, 8506, 8508, 3, 816, 408, 0, 8507, 8504, 1, 0, 0, 0, 8507, 8505, 1, 0, 0, 0, 8508, 937, 1, 0, 0, 0, 8509, 8512, 3, 826, 413, 0, 8510, 8512, 3, 838, 419, 0, 8511, 8509, 1, 0, 0, 0, 8511, 8510, 1, 0, 0, 0, 8512, 939, 1, 0, 0, 0, 8513, 8515, 3, 758, 379, 0, 8514, 8516, 3, 574, 287, 0, 8515, 8514, 1, 0, 0, 0, 8515, 8516, 1, 0, 0, 0, 8516, 8518, 1, 0, 0, 0, 8517, 8519, 3, 604, 302, 0, 8518, 8517, 1, 0, 0, 0, 8518, 8519, 1, 0, 0, 0, 8519, 8521, 1, 0, 0, 0, 8520, 8522, 3, 634, 317, 0, 8521, 8520, 1, 0, 0, 0, 8521, 8522, 1, 0, 0, 0, 8522, 8524, 1, 0, 0, 0, 8523, 8525, 3, 594, 297, 0, 8524, 8523, 1, 0, 0, 0, 8524, 8525, 1, 0, 0, 0, 8525, 8527, 1, 0, 0, 0, 8526, 8528, 3, 700, 350, 0, 8527, 8526, 1, 0, 0, 0, 8527, 8528, 1, 0, 0, 0, 8528, 8530, 1, 0, 0, 0, 8529, 8531, 3, 698, 349, 0, 8530, 8529, 1, 0, 0, 0, 8530, 8531, 1, 0, 0, 0, 8531, 941, 1, 0, 0, 0, 1193, 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, 7545, 7548, 7553, 7556, 7560, 7569, 7576, 7586, 7594, 7602, 7610, 7627, 7634, 7642, 7659, 7665, 7680, 7688, 7694, 7699, 7707, 7712, 7715, 7724, 7731, 7736, 7740, 7745, 7751, 7756, 7761, 7769, 7824, 7831, 7837, 7839, 7841, 7843, 7849, 7853, 7857, 7868, 7871, 7875, 7879, 7883, 7886, 7889, 7892, 7901, 7906, 7910, 7943, 7953, 7957, 7963, 7968, 7977, 7985, 7996, 8004, 8013, 8022, 8027, 8031, 8041, 8046, 8054, 8059, 8062, 8069, 8075, 8083, 8091, 8094, 8101, 8103, 8106, 8112, 8121, 8125, 8139, 8142, 8144, 8150, 8160, 8162, 8164, 8172, 8175, 8178, 8188, 8196, 8202, 8208, 8215, 8219, 8223, 8226, 8229, 8235, 8242, 8245, 8253, 8255, 8264, 8269, 8271, 8278, 8284, 8287, 8299, 8306, 8308, 8312, 8318, 8323, 8327, 8330, 8333, 8342, 8345, 8348, 8352, 8356, 8358, 8361, 8364, 8370, 8377, 8384, 8390, 8392, 8396, 8401, 8419, 8424, 8426, 8435, 8442, 8446, 8458, 8461, 8474, 8477, 8481, 8490, 8497, 8502, 8507, 8511, 8515, 8518, 8521, 8524, 8527, 8530] \ No newline at end of file diff --git a/src/lib/postgresql/PostgreSqlParser.ts b/src/lib/postgresql/PostgreSqlParser.ts index d4bccae8..5e702ef6 100644 --- a/src/lib/postgresql/PostgreSqlParser.ts +++ b/src/lib/postgresql/PostgreSqlParser.ts @@ -1439,6 +1439,16 @@ export class PostgreSqlParser extends SQLParserBase { return new antlr.FailedPredicateException(this, predicate, message); } + + isFollowedByInto(): boolean { + return this.tokenStream.LA(1) === PostgreSqlParser.KW_INTO; + } + + isFollowedByEnd(): boolean { + const la = this.tokenStream.LA(1); + return la === PostgreSqlParser.SEMI || la === PostgreSqlParser.EOF; + } + public constructor(input: antlr.TokenStream) { super(input); this.interpreter = new antlr.ParserATNSimulator(this, PostgreSqlParser._ATN, PostgreSqlParser.decisionsToDFA, new antlr.PredictionContextCache()); @@ -49522,28 +49532,43 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 758, PostgreSqlParser.RULE_targetList); try { let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 7539; - this.targetEl(); - this.state = 7544; + this.state = 7548; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 7540; - this.match(PostgreSqlParser.COMMA); - this.state = 7541; - this.targetEl(); - } - } + switch (this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 7539; + if (!(this.isFollowedByInto() || this.isFollowedByEnd())) { + throw this.createFailedPredicateException("this.isFollowedByInto() || this.isFollowedByEnd()"); } - this.state = 7546; + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 7540; + this.targetEl(); + this.state = 7545; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); - } + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 7541; + this.match(PostgreSqlParser.COMMA); + this.state = 7542; + this.targetEl(); + } + } + } + this.state = 7547; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); + } + } + break; } } catch (re) { @@ -49565,14 +49590,14 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 760, PostgreSqlParser.RULE_targetEl); let _la: number; try { - this.state = 7566; + this.state = 7569; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1041, this.context) ) { case 1: localContext = new Target_starContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7547; + this.state = 7550; this.tableAllColumns(); } break; @@ -49580,38 +49605,38 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new Target_labelContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7550; + this.state = 7553; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1038, this.context) ) { case 1: { - this.state = 7548; + this.state = 7551; this.selectLiteralColumnName(); } break; case 2: { - this.state = 7549; + this.state = 7552; this.selectExpressionColumnName(); } break; } - this.state = 7557; + this.state = 7560; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1039, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { case 1: { - this.state = 7553; + this.state = 7556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 7552; + this.state = 7555; this.match(PostgreSqlParser.KW_AS); } } - this.state = 7555; + this.state = 7558; (localContext as Target_labelContext)._alias = this.identifier(); } break; @@ -49627,15 +49652,15 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new Target_dot_emptyContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7559; + this.state = 7562; this.colId(); - this.state = 7560; + this.state = 7563; this.match(PostgreSqlParser.DOT); - this.state = 7561; + this.state = 7564; if (!(this.entityCollecting)) { throw this.createFailedPredicateException("this.entityCollecting"); } - this.state = 7562; + this.state = 7565; this.emptyColumn(); } break; @@ -49643,11 +49668,11 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new Target_emptyContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7564; + this.state = 7567; if (!(this.entityCollecting)) { throw this.createFailedPredicateException("this.entityCollecting"); } - this.state = 7565; + this.state = 7568; this.emptyColumn(); } break; @@ -49674,23 +49699,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7573; + this.state = 7576; 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 = 7568; + this.state = 7571; this.colId(); - this.state = 7569; + this.state = 7572; this.match(PostgreSqlParser.DOT); } } - this.state = 7575; + this.state = 7578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7576; + this.state = 7579; this.match(PostgreSqlParser.STAR); } } @@ -49715,21 +49740,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7578; + this.state = 7581; this.qualifiedName(); - this.state = 7583; + this.state = 7586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7579; + this.state = 7582; this.match(PostgreSqlParser.COMMA); - this.state = 7580; + this.state = 7583; this.qualifiedName(); } } - this.state = 7585; + this.state = 7588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -49756,21 +49781,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7586; + this.state = 7589; this.tableName(); - this.state = 7591; + this.state = 7594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7587; + this.state = 7590; this.match(PostgreSqlParser.COMMA); - this.state = 7588; + this.state = 7591; this.tableName(); } } - this.state = 7593; + this.state = 7596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -49797,21 +49822,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7594; + this.state = 7597; this.schemaName(); - this.state = 7599; + this.state = 7602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7595; + this.state = 7598; this.match(PostgreSqlParser.COMMA); - this.state = 7596; + this.state = 7599; this.schemaName(); } } - this.state = 7601; + this.state = 7604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -49838,21 +49863,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7602; + this.state = 7605; this.databaseName(); - this.state = 7607; + this.state = 7610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7603; + this.state = 7606; this.match(PostgreSqlParser.COMMA); - this.state = 7604; + this.state = 7607; this.databaseName(); } } - this.state = 7609; + this.state = 7612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -49878,7 +49903,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7610; + this.state = 7613; this.qualifiedName(); } } @@ -49902,7 +49927,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7612; + this.state = 7615; this.qualifiedName(); } } @@ -49926,7 +49951,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7614; + this.state = 7617; this.qualifiedName(); } } @@ -49950,7 +49975,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7616; + this.state = 7619; this.qualifiedName(); } } @@ -49974,7 +49999,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7618; + this.state = 7621; this.qualifiedName(); } } @@ -49998,7 +50023,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7620; + this.state = 7623; this.anyName(); } } @@ -50022,14 +50047,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7622; + this.state = 7625; this.colId(); - this.state = 7624; + this.state = 7627; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { case 1: { - this.state = 7623; + this.state = 7626; this.indirection(); } break; @@ -50057,21 +50082,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7626; + this.state = 7629; this.tableSpaceName(); - this.state = 7631; + this.state = 7634; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7627; + this.state = 7630; this.match(PostgreSqlParser.COMMA); - this.state = 7628; + this.state = 7631; this.tableSpaceName(); } } - this.state = 7633; + this.state = 7636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -50098,21 +50123,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7634; + this.state = 7637; this.colId(); - this.state = 7639; + this.state = 7642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7635; + this.state = 7638; this.match(PostgreSqlParser.COMMA); - this.state = 7636; + this.state = 7639; this.colId(); } } - this.state = 7641; + this.state = 7644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -50138,7 +50163,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7642; + this.state = 7645; this.anyName(); } } @@ -50162,7 +50187,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7644; + this.state = 7647; this.anyName(); } } @@ -50186,7 +50211,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7646; + this.state = 7649; this.anyName(); } } @@ -50210,7 +50235,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7648; + this.state = 7651; this.colId(); } } @@ -50234,7 +50259,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7650; + this.state = 7653; this.colId(); } } @@ -50256,22 +50281,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ProcedureNameContext(this.context, this.state); this.enterRule(localContext, 800, PostgreSqlParser.RULE_procedureName); try { - this.state = 7656; + this.state = 7659; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7652; + this.state = 7655; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7653; + this.state = 7656; this.colId(); - this.state = 7654; + this.state = 7657; this.indirection(); } break; @@ -50295,22 +50320,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ProcedureNameCreateContext(this.context, this.state); this.enterRule(localContext, 802, PostgreSqlParser.RULE_procedureNameCreate); try { - this.state = 7662; + this.state = 7665; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7658; + this.state = 7661; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7659; + this.state = 7662; this.colId(); - this.state = 7660; + this.state = 7663; this.indirection(); } break; @@ -50359,9 +50384,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7666; + this.state = 7669; this.colId(); - this.state = 7667; + this.state = 7670; this.optIndirection(); } } @@ -50383,12 +50408,35 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColumnNamePathContext(this.context, this.state); this.enterRule(localContext, 808, PostgreSqlParser.RULE_columnNamePath); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7669; - this.colId(); - this.state = 7670; - this.optIndirection(); + this.state = 7680; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { + case 1: + localContext = new ColumnNamePath_defaultContext(localContext); + this.enterOuterAlt(localContext, 1); + { + this.state = 7672; + this.colId(); + this.state = 7673; + this.optIndirection(); + } + break; + case 2: + localContext = new ColumnNamePath_dot_emptyContext(localContext); + this.enterOuterAlt(localContext, 2); + { + this.state = 7675; + this.colId(); + this.state = 7676; + this.match(PostgreSqlParser.DOT); + this.state = 7677; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 7678; + this.emptyColumn(); + } + break; } } catch (re) { @@ -50411,7 +50459,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7672; + this.state = 7682; this.colId(); } } @@ -50433,22 +50481,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FunctionNameCreateContext(this.context, this.state); this.enterRule(localContext, 812, PostgreSqlParser.RULE_functionNameCreate); try { - this.state = 7678; + this.state = 7688; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7674; + this.state = 7684; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7675; + this.state = 7685; this.colId(); - this.state = 7676; + this.state = 7686; this.indirection(); } break; @@ -50472,22 +50520,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FunctionNameContext(this.context, this.state); this.enterRule(localContext, 814, PostgreSqlParser.RULE_functionName); try { - this.state = 7684; + this.state = 7694; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7680; + this.state = 7690; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7681; + this.state = 7691; this.colId(); - this.state = 7682; + this.state = 7692; this.indirection(); } break; @@ -50513,16 +50561,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7686; + this.state = 7696; this.anysconst(); - this.state = 7689; + this.state = 7699; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1055, this.context) ) { case 1: { - this.state = 7687; + this.state = 7697; this.match(PostgreSqlParser.KW_UESCAPE); - this.state = 7688; + this.state = 7698; this.anysconst(); } break; @@ -50548,50 +50596,50 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 818, PostgreSqlParser.RULE_anysconst); let _la: number; try { - this.state = 7702; + this.state = 7712; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 7691; + this.state = 7701; this.match(PostgreSqlParser.StringConstant); } break; case PostgreSqlParser.UnicodeEscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 7692; + this.state = 7702; this.match(PostgreSqlParser.UnicodeEscapeStringConstant); } break; case PostgreSqlParser.BeginDollarStringConstant: this.enterOuterAlt(localContext, 3); { - this.state = 7693; + this.state = 7703; this.match(PostgreSqlParser.BeginDollarStringConstant); - this.state = 7697; + this.state = 7707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 590) { { { - this.state = 7694; + this.state = 7704; this.match(PostgreSqlParser.DollarText); } } - this.state = 7699; + this.state = 7709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7700; + this.state = 7710; this.match(PostgreSqlParser.EndDollarStringConstant); } break; case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 7701; + this.state = 7711; this.match(PostgreSqlParser.EscapeStringConstant); } break; @@ -50620,12 +50668,12 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7705; + this.state = 7715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13) { { - this.state = 7704; + this.state = 7714; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -50637,7 +50685,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7707; + this.state = 7717; this.match(PostgreSqlParser.Integral); } } @@ -50659,41 +50707,41 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RoleSpecContext(this.context, this.state); this.enterRule(localContext, 822, PostgreSqlParser.RULE_roleSpec); try { - this.state = 7714; + this.state = 7724; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1057, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7709; + this.state = 7719; this.nonReservedWord(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7710; + this.state = 7720; this.match(PostgreSqlParser.KW_CURRENT_USER); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7711; + this.state = 7721; this.match(PostgreSqlParser.KW_CURRENT_ROLE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7712; + this.state = 7722; this.match(PostgreSqlParser.KW_SESSION_USER); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7713; + this.state = 7723; this.match(PostgreSqlParser.KW_PUBLIC); } break; @@ -50720,21 +50768,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7716; + this.state = 7726; this.roleSpec(); - this.state = 7721; + this.state = 7731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7717; + this.state = 7727; this.match(PostgreSqlParser.COMMA); - this.state = 7718; + this.state = 7728; this.roleSpec(); } } - this.state = 7723; + this.state = 7733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -50758,20 +50806,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColIdContext(this.context, this.state); this.enterRule(localContext, 826, PostgreSqlParser.RULE_colId); try { - this.state = 7726; + this.state = 7736; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7724; + this.state = 7734; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7725; + this.state = 7735; this.colNameKeyword(); } break; @@ -50795,20 +50843,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new TypeFunctionNameContext(this.context, this.state); this.enterRule(localContext, 828, PostgreSqlParser.RULE_typeFunctionName); try { - this.state = 7730; + this.state = 7740; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7728; + this.state = 7738; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7729; + this.state = 7739; this.typeFuncNameKeyword(); } break; @@ -50832,27 +50880,27 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new NonReservedWordContext(this.context, this.state); this.enterRule(localContext, 830, PostgreSqlParser.RULE_nonReservedWord); try { - this.state = 7735; + this.state = 7745; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1063, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7732; + this.state = 7742; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7733; + this.state = 7743; this.colNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7734; + this.state = 7744; this.typeFuncNameKeyword(); } break; @@ -50876,34 +50924,34 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColLabelContext(this.context, this.state); this.enterRule(localContext, 832, PostgreSqlParser.RULE_colLabel); try { - this.state = 7741; + this.state = 7751; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7737; + this.state = 7747; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7738; + this.state = 7748; this.colNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7739; + this.state = 7749; this.typeFuncNameKeyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7740; + this.state = 7750; this.reservedKeyword(); } break; @@ -50927,27 +50975,27 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new IndirectionLabelContext(this.context, this.state); this.enterRule(localContext, 834, PostgreSqlParser.RULE_indirectionLabel); try { - this.state = 7746; + this.state = 7756; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1063, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1065, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7743; + this.state = 7753; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7744; + this.state = 7754; this.colNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7745; + this.state = 7755; this.typeFuncNameKeyword(); } break; @@ -50971,22 +51019,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new IdentifierContext(this.context, this.state); this.enterRule(localContext, 836, PostgreSqlParser.RULE_identifier); try { - this.state = 7759; + this.state = 7769; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 7748; + this.state = 7758; this.match(PostgreSqlParser.Identifier); - this.state = 7751; + this.state = 7761; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1066, this.context) ) { case 1: { - this.state = 7749; + this.state = 7759; this.match(PostgreSqlParser.KW_UESCAPE); - this.state = 7750; + this.state = 7760; this.anysconst(); } break; @@ -50999,35 +51047,35 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 7753; + this.state = 7763; this.stringConst(); } break; case PostgreSqlParser.QuotedIdentifier: this.enterOuterAlt(localContext, 3); { - this.state = 7754; + this.state = 7764; this.match(PostgreSqlParser.QuotedIdentifier); } break; case PostgreSqlParser.UnicodeQuotedIdentifier: this.enterOuterAlt(localContext, 4); { - this.state = 7755; + this.state = 7765; this.match(PostgreSqlParser.UnicodeQuotedIdentifier); } break; case PostgreSqlParser.PLSQLVARIABLENAME: this.enterOuterAlt(localContext, 5); { - this.state = 7756; + this.state = 7766; this.match(PostgreSqlParser.PLSQLVARIABLENAME); } break; case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 6); { - this.state = 7757; + this.state = 7767; this.match(PostgreSqlParser.PLSQLIDENTIFIER); } break; @@ -51367,7 +51415,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: this.enterOuterAlt(localContext, 7); { - this.state = 7758; + this.state = 7768; this.unreservedKeyword(); } break; @@ -51396,7 +51444,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7761; + this.state = 7771; _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); @@ -51425,363 +51473,363 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColNameKeywordContext(this.context, this.state); this.enterRule(localContext, 840, PostgreSqlParser.RULE_colNameKeyword); try { - this.state = 7814; + this.state = 7824; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1066, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7763; + this.state = 7773; this.match(PostgreSqlParser.KW_BETWEEN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7764; + this.state = 7774; this.match(PostgreSqlParser.KW_BIGINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7765; + this.state = 7775; this.bit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7766; + this.state = 7776; this.match(PostgreSqlParser.KW_BOOLEAN); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7767; + this.state = 7777; this.match(PostgreSqlParser.KW_CHAR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7768; + this.state = 7778; this.character(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7769; + this.state = 7779; this.match(PostgreSqlParser.KW_COALESCE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7770; + this.state = 7780; this.match(PostgreSqlParser.KW_DEC); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7771; + this.state = 7781; this.match(PostgreSqlParser.KW_DECIMAL); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7772; + this.state = 7782; this.match(PostgreSqlParser.KW_EXISTS); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7773; + this.state = 7783; this.match(PostgreSqlParser.KW_EXTRACT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7774; + this.state = 7784; this.match(PostgreSqlParser.KW_FLOAT); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7775; + this.state = 7785; this.match(PostgreSqlParser.KW_GREATEST); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7776; + this.state = 7786; this.match(PostgreSqlParser.KW_GROUPING); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 7777; + this.state = 7787; this.match(PostgreSqlParser.KW_INOUT); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 7778; + this.state = 7788; this.match(PostgreSqlParser.KW_INT); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 7779; + this.state = 7789; this.match(PostgreSqlParser.KW_INTEGER); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 7780; + this.state = 7790; this.match(PostgreSqlParser.KW_INTERVAL); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7781; + this.state = 7791; this.match(PostgreSqlParser.KW_LEAST); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7782; + this.state = 7792; this.match(PostgreSqlParser.KW_NATIONAL); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7783; + this.state = 7793; this.match(PostgreSqlParser.KW_NCHAR); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7784; + this.state = 7794; this.match(PostgreSqlParser.KW_NONE); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 7785; + this.state = 7795; this.match(PostgreSqlParser.KW_NORMALIZE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 7786; + this.state = 7796; this.match(PostgreSqlParser.KW_NULLIF); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 7787; + this.state = 7797; this.numeric(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 7788; + this.state = 7798; this.match(PostgreSqlParser.KW_OUT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 7789; + this.state = 7799; this.match(PostgreSqlParser.KW_OVERLAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 7790; + this.state = 7800; this.match(PostgreSqlParser.KW_POSITION); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 7791; + this.state = 7801; this.match(PostgreSqlParser.KW_PRECISION); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 7792; + this.state = 7802; this.match(PostgreSqlParser.KW_REAL); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 7793; + this.state = 7803; this.match(PostgreSqlParser.KW_ROW); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 7794; + this.state = 7804; this.match(PostgreSqlParser.KW_SETOF); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 7795; + this.state = 7805; this.match(PostgreSqlParser.KW_SMALLINT); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 7796; + this.state = 7806; this.match(PostgreSqlParser.KW_SUBSTRING); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 7797; + this.state = 7807; this.match(PostgreSqlParser.KW_TIME); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 7798; + this.state = 7808; this.match(PostgreSqlParser.KW_TIMESTAMP); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 7799; + this.state = 7809; this.match(PostgreSqlParser.KW_TREAT); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 7800; + this.state = 7810; this.match(PostgreSqlParser.KW_TRIM); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 7801; + this.state = 7811; this.match(PostgreSqlParser.KW_VALUES); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 7802; + this.state = 7812; this.match(PostgreSqlParser.KW_VARCHAR); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 7803; + this.state = 7813; this.match(PostgreSqlParser.KW_XMLATTRIBUTES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 7804; + this.state = 7814; this.match(PostgreSqlParser.KW_XMLCONCAT); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 7805; + this.state = 7815; this.match(PostgreSqlParser.KW_XMLELEMENT); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 7806; + this.state = 7816; this.match(PostgreSqlParser.KW_XMLEXISTS); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 7807; + this.state = 7817; this.match(PostgreSqlParser.KW_XMLFOREST); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 7808; + this.state = 7818; this.match(PostgreSqlParser.KW_XMLNAMESPACES); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 7809; + this.state = 7819; this.match(PostgreSqlParser.KW_XMLPARSE); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 7810; + this.state = 7820; this.match(PostgreSqlParser.KW_XMLPI); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 7811; + this.state = 7821; this.match(PostgreSqlParser.KW_XMLROOT); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 7812; + this.state = 7822; this.match(PostgreSqlParser.KW_XMLSERIALIZE); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 7813; + this.state = 7823; this.match(PostgreSqlParser.KW_XMLTABLE); } break; @@ -51808,7 +51856,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7816; + this.state = 7826; _la = this.tokenStream.LA(1); if(!(((((_la - 106)) & ~0x1F) === 0 && ((1 << (_la - 106)) & 8126463) !== 0) || _la === 472)) { this.errorHandler.recoverInline(this); @@ -51840,7 +51888,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7818; + this.state = 7828; _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); @@ -51874,53 +51922,53 @@ export class PostgreSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 7821; + this.state = 7831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 7820; + this.state = 7830; this.labelDecl(); } } - this.state = 7833; + this.state = 7843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178) { { - this.state = 7823; + this.state = 7833; this.match(PostgreSqlParser.KW_DECLARE); - this.state = 7831; + this.state = 7841; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1072, this.context) ) { case 1: { - this.state = 7827; + this.state = 7837; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 7827; + this.state = 7837; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context) ) { case 1: { - this.state = 7824; + this.state = 7834; this.declStatement(); } break; case 2: { - this.state = 7825; + this.state = 7835; this.match(PostgreSqlParser.KW_DECLARE); } break; case 3: { - this.state = 7826; + this.state = 7836; this.labelDecl(); } break; @@ -51930,9 +51978,9 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7829; + this.state = 7839; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1071, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -51941,42 +51989,42 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7835; + this.state = 7845; this.match(PostgreSqlParser.KW_BEGIN); - this.state = 7839; + this.state = 7849; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1072, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1074, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7836; + this.state = 7846; this.procStmt(); } } } - this.state = 7841; + this.state = 7851; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1072, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1074, this.context); } - this.state = 7843; + this.state = 7853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 7842; + this.state = 7852; this.exceptionSect(); } } - this.state = 7845; + this.state = 7855; this.match(PostgreSqlParser.KW_END); - this.state = 7847; + this.state = 7857; 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 = 7846; + this.state = 7856; this.anyIdentifier(); } } @@ -52003,11 +52051,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7849; + this.state = 7859; this.match(PostgreSqlParser.LESS_LESS); - this.state = 7850; + this.state = 7860; this.anyIdentifier(); - this.state = 7851; + this.state = 7861; this.match(PostgreSqlParser.GREATER_GREATER); } } @@ -52032,23 +52080,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7853; + this.state = 7863; this.anyIdentifier(); - this.state = 7900; + this.state = 7910; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1085, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context) ) { case 1: { - this.state = 7854; + this.state = 7864; this.match(PostgreSqlParser.KW_ALIAS); - this.state = 7855; + this.state = 7865; this.match(PostgreSqlParser.KW_FOR); - this.state = 7858; + this.state = 7868; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.PARAM: { - this.state = 7856; + this.state = 7866; this.match(PostgreSqlParser.PARAM); } break; @@ -52447,7 +52495,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7857; + this.state = 7867; this.colId(); } break; @@ -52458,65 +52506,65 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 7861; + this.state = 7871; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1076, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1078, this.context) ) { case 1: { - this.state = 7860; + this.state = 7870; this.match(PostgreSqlParser.KW_CONSTANT); } break; } - this.state = 7863; + this.state = 7873; this.typename(); - this.state = 7865; + this.state = 7875; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 7864; + this.state = 7874; this.collateClause(); } } - this.state = 7869; + this.state = 7879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7867; + this.state = 7877; this.match(PostgreSqlParser.KW_NOT); - this.state = 7868; + this.state = 7878; this.match(PostgreSqlParser.KW_NULL); } } - this.state = 7876; + this.state = 7886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 20 || _la === 53) { { - this.state = 7873; + this.state = 7883; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EQUAL: case PostgreSqlParser.COLON_EQUALS: { - this.state = 7871; + this.state = 7881; this.assignOperator(); } break; case PostgreSqlParser.KW_DEFAULT: { - this.state = 7872; + this.state = 7882; this.match(PostgreSqlParser.KW_DEFAULT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7875; + this.state = 7885; this.sqlExpression(); } } @@ -52525,59 +52573,59 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 7882; + this.state = 7892; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269 || _la === 324) { { - this.state = 7879; + this.state = 7889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7878; + this.state = 7888; this.match(PostgreSqlParser.KW_NO); } } - this.state = 7881; + this.state = 7891; this.match(PostgreSqlParser.KW_SCROLL); } } - this.state = 7884; + this.state = 7894; this.match(PostgreSqlParser.KW_CURSOR); - this.state = 7896; + this.state = 7906; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 7885; + this.state = 7895; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7886; + this.state = 7896; this.declCursorArg(); - this.state = 7891; + this.state = 7901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7887; + this.state = 7897; this.match(PostgreSqlParser.COMMA); - this.state = 7888; + this.state = 7898; this.declCursorArg(); } } - this.state = 7893; + this.state = 7903; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7894; + this.state = 7904; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 7898; + this.state = 7908; _la = this.tokenStream.LA(1); if(!(_la === 62 || _la === 116)) { this.errorHandler.recoverInline(this); @@ -52586,12 +52634,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7899; + this.state = 7909; this.selectStmt(); } break; } - this.state = 7902; + this.state = 7912; this.match(PostgreSqlParser.SEMI); } } @@ -52615,9 +52663,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7904; + this.state = 7914; this.anyIdentifier(); - this.state = 7905; + this.state = 7915; this.typename(); } } @@ -52642,7 +52690,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7907; + this.state = 7917; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 20)) { this.errorHandler.recoverInline(this); @@ -52671,162 +52719,162 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ProcStmtContext(this.context, this.state); this.enterRule(localContext, 856, PostgreSqlParser.RULE_procStmt); try { - this.state = 7933; + this.state = 7943; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1088, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7909; + this.state = 7919; this.plBlock(); - this.state = 7910; + this.state = 7920; this.match(PostgreSqlParser.SEMI); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7912; + this.state = 7922; this.stmtReturn(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7913; + this.state = 7923; this.stmtRaise(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7914; + this.state = 7924; this.stmtAssign(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7915; + this.state = 7925; this.stmtIf(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7916; + this.state = 7926; this.stmtCase(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7917; + this.state = 7927; this.stmtLoopWhileFor(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7918; + this.state = 7928; this.stmtForeach(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7919; + this.state = 7929; this.stmtExit(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7920; + this.state = 7930; this.stmtAssert(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7921; + this.state = 7931; this.stmtExecsql(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7922; + this.state = 7932; this.stmtDynexecute(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7923; + this.state = 7933; this.stmtPerform(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7924; + this.state = 7934; this.stmtCall(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 7925; + this.state = 7935; this.stmtGetdiag(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 7926; + this.state = 7936; this.stmtOpen(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 7927; + this.state = 7937; this.stmtFetch(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 7928; + this.state = 7938; this.stmtMove(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7929; + this.state = 7939; this.stmtClose(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7930; + this.state = 7940; this.stmtNull(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7931; + this.state = 7941; this.stmtCommitOrRollback(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7932; + this.state = 7942; this.stmtSet(); } break; @@ -52852,11 +52900,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7935; + this.state = 7945; this.match(PostgreSqlParser.KW_PERFORM); - this.state = 7936; + this.state = 7946; this.sqlExpression(); - this.state = 7937; + this.state = 7947; this.match(PostgreSqlParser.SEMI); } } @@ -52879,36 +52927,36 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 860, PostgreSqlParser.RULE_stmtCall); let _la: number; try { - this.state = 7958; + this.state = 7968; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CALL: this.enterOuterAlt(localContext, 1); { - this.state = 7939; + this.state = 7949; this.match(PostgreSqlParser.KW_CALL); - this.state = 7940; + this.state = 7950; this.anyIdentifier(); - this.state = 7947; + this.state = 7957; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1088, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1090, this.context) ) { case 1: { - this.state = 7941; + this.state = 7951; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7943; + this.state = 7953; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7942; + this.state = 7952; this.exprList(); } } - this.state = 7945; + this.state = 7955; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7946; + this.state = 7956; this.match(PostgreSqlParser.SEMI); } break; @@ -52918,25 +52966,25 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DO: this.enterOuterAlt(localContext, 2); { - this.state = 7949; + this.state = 7959; this.match(PostgreSqlParser.KW_DO); - this.state = 7950; + this.state = 7960; this.anyIdentifier(); - this.state = 7951; + this.state = 7961; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7953; + this.state = 7963; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805318660) !== 0) || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 34074721) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 2174763023) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 4294967295) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 4294967295) !== 0) || ((((_la - 171)) & ~0x1F) === 0 && ((1 << (_la - 171)) & 4294967295) !== 0) || ((((_la - 203)) & ~0x1F) === 0 && ((1 << (_la - 203)) & 67108863) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7952; + this.state = 7962; this.exprList(); } } - this.state = 7955; + this.state = 7965; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7956; + this.state = 7966; this.match(PostgreSqlParser.SEMI); } break; @@ -52964,13 +53012,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7960; + this.state = 7970; this.assignVar(); - this.state = 7961; + this.state = 7971; this.assignOperator(); - this.state = 7962; + this.state = 7972; this.sqlExpression(); - this.state = 7963; + this.state = 7973; this.match(PostgreSqlParser.SEMI); } } @@ -52995,14 +53043,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7965; + this.state = 7975; this.match(PostgreSqlParser.KW_GET); - this.state = 7967; + this.state = 7977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 434 || _la === 501) { { - this.state = 7966; + this.state = 7976; _la = this.tokenStream.LA(1); if(!(_la === 434 || _la === 501)) { this.errorHandler.recoverInline(this); @@ -53014,29 +53062,29 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7969; + this.state = 7979; this.match(PostgreSqlParser.KW_DIAGNOSTICS); { - this.state = 7970; + this.state = 7980; this.getdiagListItem(); - this.state = 7975; + this.state = 7985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7971; + this.state = 7981; this.match(PostgreSqlParser.COMMA); - this.state = 7972; + this.state = 7982; this.getdiagListItem(); } } - this.state = 7977; + this.state = 7987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 7978; + this.state = 7988; this.match(PostgreSqlParser.SEMI); } } @@ -53060,11 +53108,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7980; + this.state = 7990; this.assignVar(); - this.state = 7981; + this.state = 7991; this.assignOperator(); - this.state = 7982; + this.state = 7992; this.colId(); } } @@ -53089,7 +53137,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7986; + this.state = 7996; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -53487,34 +53535,34 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7984; + this.state = 7994; this.anyName(); } break; case PostgreSqlParser.PARAM: { - this.state = 7985; + this.state = 7995; this.match(PostgreSqlParser.PARAM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7994; + this.state = 8004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 7988; + this.state = 7998; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7989; + this.state = 7999; this.expression(); - this.state = 7990; + this.state = 8000; this.match(PostgreSqlParser.CLOSE_BRACKET); } } - this.state = 7996; + this.state = 8006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -53542,79 +53590,79 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7997; + this.state = 8007; this.match(PostgreSqlParser.KW_IF); - this.state = 7998; + this.state = 8008; this.sqlExpression(); - this.state = 7999; + this.state = 8009; this.match(PostgreSqlParser.KW_THEN); - this.state = 8003; + this.state = 8013; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8000; + this.state = 8010; this.procStmt(); } } } - this.state = 8005; + this.state = 8015; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context); } { - this.state = 8017; + this.state = 8027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 502) { { { - this.state = 8006; + this.state = 8016; this.match(PostgreSqlParser.KW_ELSIF); - this.state = 8007; + this.state = 8017; this.expression(); - this.state = 8008; + this.state = 8018; this.match(PostgreSqlParser.KW_THEN); - this.state = 8012; + this.state = 8022; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1098, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8009; + this.state = 8019; this.procStmt(); } } } - this.state = 8014; + this.state = 8024; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1098, this.context); } } } - this.state = 8019; + this.state = 8029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8021; + this.state = 8031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 8020; + this.state = 8030; this.stmtElse(); } } - this.state = 8023; + this.state = 8033; this.match(PostgreSqlParser.KW_END); - this.state = 8024; + this.state = 8034; this.match(PostgreSqlParser.KW_IF); - this.state = 8025; + this.state = 8035; this.match(PostgreSqlParser.SEMI); } } @@ -53639,23 +53687,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8027; + this.state = 8037; this.match(PostgreSqlParser.KW_ELSE); - this.state = 8031; + this.state = 8041; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1099, 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 = 8028; + this.state = 8038; this.procStmt(); } } } - this.state = 8033; + this.state = 8043; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context); } } } @@ -53681,67 +53729,67 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8034; + this.state = 8044; this.match(PostgreSqlParser.KW_CASE); - this.state = 8036; + this.state = 8046; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1102, this.context) ) { case 1: { - this.state = 8035; + this.state = 8045; this.sqlExpression(); } break; } - this.state = 8047; + this.state = 8057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8038; + this.state = 8048; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8039; + this.state = 8049; this.exprList(); - this.state = 8040; + this.state = 8050; this.match(PostgreSqlParser.KW_THEN); - this.state = 8044; + this.state = 8054; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1103, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8041; + this.state = 8051; this.procStmt(); } } } - this.state = 8046; + this.state = 8056; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1103, this.context); } } } - this.state = 8049; + this.state = 8059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 8052; + this.state = 8062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 8051; + this.state = 8061; this.stmtElse(); } } - this.state = 8054; + this.state = 8064; this.match(PostgreSqlParser.KW_END); - this.state = 8055; + this.state = 8065; this.match(PostgreSqlParser.KW_CASE); - this.state = 8056; + this.state = 8066; this.match(PostgreSqlParser.SEMI); } } @@ -53766,25 +53814,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8059; + this.state = 8069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 8058; + this.state = 8068; this.labelDecl(); } } - this.state = 8065; + this.state = 8075; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_WHILE: { { - this.state = 8061; + this.state = 8071; this.match(PostgreSqlParser.KW_WHILE); - this.state = 8062; + this.state = 8072; this.expression(); } } @@ -53792,9 +53840,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FOR: { { - this.state = 8063; + this.state = 8073; this.match(PostgreSqlParser.KW_FOR); - this.state = 8064; + this.state = 8074; this.forControl(); } } @@ -53804,7 +53852,7 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 8067; + this.state = 8077; this.loopBody(); } } @@ -53829,23 +53877,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8069; + this.state = 8079; this.anyNameList(); - this.state = 8070; + this.state = 8080; this.match(PostgreSqlParser.KW_IN); - this.state = 8093; + this.state = 8103; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1110, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context) ) { case 1: { - this.state = 8071; + this.state = 8081; this.colId(); - this.state = 8073; + this.state = 8083; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8072; + this.state = 8082; this.executeParamClause(); } } @@ -53854,30 +53902,30 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8075; + this.state = 8085; this.selectStmt(); } break; case 3: { - this.state = 8076; + this.state = 8086; this.explainStmt(); } break; case 4: { - this.state = 8077; + this.state = 8087; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8078; + this.state = 8088; this.expression(); - this.state = 8081; + this.state = 8091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8079; + this.state = 8089; this.match(PostgreSqlParser.KW_USING); - this.state = 8080; + this.state = 8090; this.exprList(); } } @@ -53886,30 +53934,30 @@ export class PostgreSqlParser extends SQLParserBase { break; case 5: { - this.state = 8084; + this.state = 8094; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1108, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1110, this.context) ) { case 1: { - this.state = 8083; + this.state = 8093; this.match(PostgreSqlParser.KW_REVERSE); } break; } - this.state = 8086; + this.state = 8096; this.expression(); - this.state = 8087; + this.state = 8097; this.match(PostgreSqlParser.DOT_DOT); - this.state = 8088; + this.state = 8098; this.expression(); - this.state = 8091; + this.state = 8101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 8089; + this.state = 8099; this.match(PostgreSqlParser.KW_BY); - this.state = 8090; + this.state = 8100; this.expression(); } } @@ -53940,39 +53988,39 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8096; + this.state = 8106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 8095; + this.state = 8105; this.labelDecl(); } } - this.state = 8098; + this.state = 8108; this.match(PostgreSqlParser.KW_FOREACH); - this.state = 8099; + this.state = 8109; this.anyNameList(); - this.state = 8102; + this.state = 8112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 506) { { - this.state = 8100; + this.state = 8110; this.match(PostgreSqlParser.KW_SLICE); - this.state = 8101; + this.state = 8111; this.match(PostgreSqlParser.Integral); } } - this.state = 8104; + this.state = 8114; this.match(PostgreSqlParser.KW_IN); - this.state = 8105; + this.state = 8115; this.match(PostgreSqlParser.KW_ARRAY); - this.state = 8106; + this.state = 8116; this.expression(); - this.state = 8107; + this.state = 8117; this.loopBody(); } } @@ -53997,7 +54045,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8109; + this.state = 8119; _la = this.tokenStream.LA(1); if(!(_la === 167 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -54006,29 +54054,29 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8111; + this.state = 8121; 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 = 8110; + this.state = 8120; this.anyIdentifier(); } } - this.state = 8115; + this.state = 8125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 8113; + this.state = 8123; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8114; + this.state = 8124; this.sqlExpression(); } } - this.state = 8117; + this.state = 8127; this.match(PostgreSqlParser.SEMI); } } @@ -54052,35 +54100,35 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8119; + this.state = 8129; this.match(PostgreSqlParser.KW_RETURN); - this.state = 8134; + this.state = 8144; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1117, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1119, this.context) ) { case 1: { - this.state = 8120; + this.state = 8130; this.match(PostgreSqlParser.KW_NEXT); - this.state = 8121; + this.state = 8131; this.sqlExpression(); } break; case 2: { - this.state = 8122; + this.state = 8132; this.match(PostgreSqlParser.KW_QUERY); - this.state = 8129; + this.state = 8139; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EXECUTE: { - this.state = 8123; + this.state = 8133; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8124; + this.state = 8134; this.expression(); - this.state = 8125; + this.state = 8135; this.match(PostgreSqlParser.KW_USING); - this.state = 8126; + this.state = 8136; this.exprList(); } break; @@ -54090,7 +54138,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: case PostgreSqlParser.KW_VALUES: { - this.state = 8128; + this.state = 8138; this.selectStmt(); } break; @@ -54101,12 +54149,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 8132; + this.state = 8142; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1116, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1118, this.context) ) { case 1: { - this.state = 8131; + this.state = 8141; this.sqlExpression(); } break; @@ -54114,7 +54162,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8136; + this.state = 8146; this.match(PostgreSqlParser.SEMI); } } @@ -54139,19 +54187,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8138; + this.state = 8148; this.match(PostgreSqlParser.KW_RAISE); - this.state = 8168; + this.state = 8178; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1124, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context) ) { case 1: { - this.state = 8140; + this.state = 8150; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1118, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1120, this.context) ) { case 1: { - this.state = 8139; + this.state = 8149; _la = this.tokenStream.LA(1); if(!(((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -54163,21 +54211,21 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8154; + this.state = 8164; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1121, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1123, this.context) ) { case 1: { - this.state = 8142; + this.state = 8152; this.identifier(); } break; case 2: { { - this.state = 8143; + this.state = 8153; this.match(PostgreSqlParser.KW_SQLSTATE); - this.state = 8144; + this.state = 8154; this.stringConst(); } } @@ -54185,26 +54233,26 @@ export class PostgreSqlParser extends SQLParserBase { case 3: { { - this.state = 8145; + this.state = 8155; this.stringConst(); - this.state = 8152; + this.state = 8162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8148; + this.state = 8158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8146; + this.state = 8156; this.match(PostgreSqlParser.COMMA); - this.state = 8147; + this.state = 8157; this.expression(); } } - this.state = 8150; + this.state = 8160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 6); @@ -54215,29 +54263,29 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8165; + this.state = 8175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8156; + this.state = 8166; this.match(PostgreSqlParser.KW_USING); { - this.state = 8157; + this.state = 8167; this.optRaiseUsingElem(); - this.state = 8162; + this.state = 8172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8158; + this.state = 8168; this.match(PostgreSqlParser.COMMA); - this.state = 8159; + this.state = 8169; this.optRaiseUsingElem(); } } - this.state = 8164; + this.state = 8174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -54245,7 +54293,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 8167; + this.state = 8177; this.match(PostgreSqlParser.SEMI); } break; @@ -54272,11 +54320,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8170; + this.state = 8180; this.identifier(); - this.state = 8171; + this.state = 8181; this.match(PostgreSqlParser.EQUAL); - this.state = 8172; + this.state = 8182; this.expression(); } } @@ -54301,23 +54349,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8174; + this.state = 8184; this.match(PostgreSqlParser.KW_ASSERT); - this.state = 8175; + this.state = 8185; this.sqlExpression(); - this.state = 8178; + this.state = 8188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8176; + this.state = 8186; this.match(PostgreSqlParser.COMMA); - this.state = 8177; + this.state = 8187; this.sqlExpression(); } } - this.state = 8180; + this.state = 8190; this.match(PostgreSqlParser.SEMI); } } @@ -54343,39 +54391,39 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8182; + this.state = 8192; this.match(PostgreSqlParser.KW_LOOP); - this.state = 8186; + this.state = 8196; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1128, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8183; + this.state = 8193; this.procStmt(); } } } - this.state = 8188; + this.state = 8198; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1128, this.context); } - this.state = 8189; + this.state = 8199; this.match(PostgreSqlParser.KW_END); - this.state = 8190; + this.state = 8200; this.match(PostgreSqlParser.KW_LOOP); - this.state = 8192; + this.state = 8202; 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 = 8191; + this.state = 8201; this.anyIdentifier(); } } - this.state = 8194; + this.state = 8204; this.match(PostgreSqlParser.SEMI); } } @@ -54400,19 +54448,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8196; + this.state = 8206; this.stmt(); - this.state = 8198; + this.state = 8208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8197; + this.state = 8207; this.optExecuteInto(); } } - this.state = 8200; + this.state = 8210; this.match(PostgreSqlParser.SEMI); } } @@ -54437,33 +54485,33 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8202; + this.state = 8212; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8203; + this.state = 8213; this.expression(); - this.state = 8219; + this.state = 8229; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1133, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1135, this.context) ) { case 1: { - this.state = 8205; + this.state = 8215; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8204; + this.state = 8214; this.optExecuteInto(); } } - this.state = 8209; + this.state = 8219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8207; + this.state = 8217; this.match(PostgreSqlParser.KW_USING); - this.state = 8208; + this.state = 8218; this.exprList(); } } @@ -54472,24 +54520,24 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8213; + this.state = 8223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8211; + this.state = 8221; this.match(PostgreSqlParser.KW_USING); - this.state = 8212; + this.state = 8222; this.exprList(); } } - this.state = 8216; + this.state = 8226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8215; + this.state = 8225; this.optExecuteInto(); } } @@ -54502,7 +54550,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8221; + this.state = 8231; this.match(PostgreSqlParser.SEMI); } } @@ -54526,19 +54574,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8223; + this.state = 8233; this.match(PostgreSqlParser.KW_INTO); - this.state = 8225; + this.state = 8235; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1134, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1136, this.context) ) { case 1: { - this.state = 8224; + this.state = 8234; this.match(PostgreSqlParser.KW_STRICT); } break; } - this.state = 8227; + this.state = 8237; this.exprList(); } } @@ -54563,38 +54611,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8229; + this.state = 8239; this.match(PostgreSqlParser.KW_OPEN); - this.state = 8261; + this.state = 8271; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context) ) { case 1: { - this.state = 8230; + this.state = 8240; this.cursorVariable(); - this.state = 8235; + this.state = 8245; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269 || _la === 324) { { - this.state = 8232; + this.state = 8242; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 8231; + this.state = 8241; this.match(PostgreSqlParser.KW_NO); } } - this.state = 8234; + this.state = 8244; this.match(PostgreSqlParser.KW_SCROLL); } } - this.state = 8237; + this.state = 8247; this.match(PostgreSqlParser.KW_FOR); - this.state = 8245; + this.state = 8255; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -54603,24 +54651,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: case PostgreSqlParser.KW_VALUES: { - this.state = 8238; + this.state = 8248; this.selectStmt(); } break; case PostgreSqlParser.KW_EXECUTE: { - this.state = 8239; + this.state = 8249; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8240; + this.state = 8250; this.sqlExpression(); - this.state = 8243; + this.state = 8253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8241; + this.state = 8251; this.match(PostgreSqlParser.KW_USING); - this.state = 8242; + this.state = 8252; this.exprList(); } } @@ -54634,36 +54682,36 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8247; + this.state = 8257; this.colId(); - this.state = 8259; + this.state = 8269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8248; + this.state = 8258; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 8249; + this.state = 8259; this.optOpenBoundListItem(); - this.state = 8254; + this.state = 8264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8250; + this.state = 8260; this.match(PostgreSqlParser.COMMA); - this.state = 8251; + this.state = 8261; this.optOpenBoundListItem(); } } - this.state = 8256; + this.state = 8266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8257; + this.state = 8267; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -54671,7 +54719,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8263; + this.state = 8273; this.match(PostgreSqlParser.SEMI); } } @@ -54695,19 +54743,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8268; + this.state = 8278; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1142, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1144, this.context) ) { case 1: { - this.state = 8265; + this.state = 8275; this.colId(); - this.state = 8266; + this.state = 8276; this.match(PostgreSqlParser.COLON_EQUALS); } break; } - this.state = 8270; + this.state = 8280; this.expression(); } } @@ -54732,35 +54780,35 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8272; + this.state = 8282; this.match(PostgreSqlParser.KW_FETCH); - this.state = 8274; + this.state = 8284; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { case 1: { - this.state = 8273; + this.state = 8283; localContext._direction = this.optFetchFirection(); } break; } - this.state = 8277; + this.state = 8287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 8276; + this.state = 8286; this.fromIn(); } } - this.state = 8279; + this.state = 8289; this.cursorVariable(); - this.state = 8280; + this.state = 8290; this.match(PostgreSqlParser.KW_INTO); - this.state = 8281; + this.state = 8291; this.exprList(); - this.state = 8282; + this.state = 8292; this.match(PostgreSqlParser.SEMI); } } @@ -54783,46 +54831,46 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 906, PostgreSqlParser.RULE_optFetchFirection); let _la: number; try { - this.state = 8298; + this.state = 8308; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1147, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1149, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8284; + this.state = 8294; this.match(PostgreSqlParser.KW_NEXT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8285; + this.state = 8295; this.match(PostgreSqlParser.KW_PRIOR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8286; + this.state = 8296; this.match(PostgreSqlParser.KW_FIRST); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8287; + this.state = 8297; this.match(PostgreSqlParser.KW_LAST); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8289; + this.state = 8299; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1147, this.context) ) { case 1: { - this.state = 8288; + this.state = 8298; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -54834,21 +54882,21 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8291; + this.state = 8301; this.expression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 8292; + this.state = 8302; this.match(PostgreSqlParser.KW_ALL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 8293; + this.state = 8303; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 210)) { this.errorHandler.recoverInline(this); @@ -54857,18 +54905,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8296; + this.state = 8306; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1148, this.context) ) { case 1: { - this.state = 8294; + this.state = 8304; this.expression(); } break; case 2: { - this.state = 8295; + this.state = 8305; this.match(PostgreSqlParser.KW_ALL); } break; @@ -54897,21 +54945,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8300; + this.state = 8310; this.match(PostgreSqlParser.KW_MOVE); - this.state = 8302; + this.state = 8312; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1148, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1150, this.context) ) { case 1: { - this.state = 8301; + this.state = 8311; this.optFetchFirection(); } break; } - this.state = 8304; + this.state = 8314; this.cursorVariable(); - this.state = 8305; + this.state = 8315; this.match(PostgreSqlParser.SEMI); } } @@ -54936,90 +54984,90 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8308; + this.state = 8318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 8307; + this.state = 8317; this.withClause(); } } - this.state = 8310; + this.state = 8320; this.match(PostgreSqlParser.KW_MERGE); - this.state = 8311; + this.state = 8321; this.match(PostgreSqlParser.KW_INTO); - this.state = 8313; + this.state = 8323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 8312; + this.state = 8322; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 8315; + this.state = 8325; this.tableName(); - this.state = 8317; + this.state = 8327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 8316; + this.state = 8326; this.match(PostgreSqlParser.STAR); } } - this.state = 8323; + this.state = 8333; 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 = 8320; + this.state = 8330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8319; + this.state = 8329; this.match(PostgreSqlParser.KW_AS); } } - this.state = 8322; + this.state = 8332; this.colId(); } } - this.state = 8325; + this.state = 8335; this.match(PostgreSqlParser.KW_USING); - this.state = 8326; + this.state = 8336; this.dataSource(); - this.state = 8327; + this.state = 8337; this.match(PostgreSqlParser.KW_ON); - this.state = 8328; + this.state = 8338; this.expression(); - this.state = 8330; + this.state = 8340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8329; + this.state = 8339; this.mergeWhenClause(); } } - this.state = 8332; + this.state = 8342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 8335; + this.state = 8345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 8334; + this.state = 8344; this.returningClause(); } } @@ -55047,29 +55095,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8348; + this.state = 8358; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1159, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1161, this.context) ) { case 1: { - this.state = 8338; + this.state = 8348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 8337; + this.state = 8347; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 8340; + this.state = 8350; this.tableName(); - this.state = 8342; + this.state = 8352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 8341; + this.state = 8351; this.match(PostgreSqlParser.STAR); } } @@ -55078,18 +55126,18 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8346; + this.state = 8356; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1158, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1160, this.context) ) { case 1: { - this.state = 8344; + this.state = 8354; this.selectNoParens(); } break; case 2: { - this.state = 8345; + this.state = 8355; this.valuesClause(); } break; @@ -55097,22 +55145,22 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8354; + this.state = 8364; 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 = 8351; + this.state = 8361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8350; + this.state = 8360; this.match(PostgreSqlParser.KW_AS); } } - this.state = 8353; + this.state = 8363; this.colId(); } } @@ -55138,50 +55186,50 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 914, PostgreSqlParser.RULE_mergeWhenClause); let _la: number; try { - this.state = 8382; + this.state = 8392; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1166, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1168, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8356; + this.state = 8366; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8357; + this.state = 8367; this.match(PostgreSqlParser.KW_MATCHED); - this.state = 8360; + this.state = 8370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8358; + this.state = 8368; this.match(PostgreSqlParser.KW_AND); - this.state = 8359; + this.state = 8369; this.expression(); } } - this.state = 8362; + this.state = 8372; this.match(PostgreSqlParser.KW_THEN); - this.state = 8367; + this.state = 8377; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UPDATE: { - this.state = 8363; + this.state = 8373; this.mergeUpdate(); } break; case PostgreSqlParser.KW_DELETE: { - this.state = 8364; + this.state = 8374; this.match(PostgreSqlParser.KW_DELETE); } break; case PostgreSqlParser.KW_DO: { - this.state = 8365; + this.state = 8375; this.match(PostgreSqlParser.KW_DO); - this.state = 8366; + this.state = 8376; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -55193,40 +55241,40 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8369; + this.state = 8379; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8370; + this.state = 8380; this.match(PostgreSqlParser.KW_NOT); - this.state = 8371; + this.state = 8381; this.match(PostgreSqlParser.KW_MATCHED); - this.state = 8374; + this.state = 8384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8372; + this.state = 8382; this.match(PostgreSqlParser.KW_AND); - this.state = 8373; + this.state = 8383; this.expression(); } } - this.state = 8376; + this.state = 8386; this.match(PostgreSqlParser.KW_THEN); - this.state = 8380; + this.state = 8390; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INSERT: { - this.state = 8377; + this.state = 8387; this.mergeInsert(); } break; case PostgreSqlParser.KW_DO: { - this.state = 8378; + this.state = 8388; this.match(PostgreSqlParser.KW_DO); - this.state = 8379; + this.state = 8389; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -55258,26 +55306,26 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8384; + this.state = 8394; this.match(PostgreSqlParser.KW_INSERT); - this.state = 8386; + this.state = 8396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8385; + this.state = 8395; this.optColumnList(); } } - this.state = 8391; + this.state = 8401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 463) { { - this.state = 8388; + this.state = 8398; this.match(PostgreSqlParser.KW_OVERRIDING); - this.state = 8389; + this.state = 8399; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 349)) { this.errorHandler.recoverInline(this); @@ -55286,12 +55334,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8390; + this.state = 8400; this.match(PostgreSqlParser.KW_VALUE); } } - this.state = 8393; + this.state = 8403; this.defaultValuesOrValues(); } } @@ -55317,18 +55365,18 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8395; + this.state = 8405; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 8396; + this.state = 8406; this.match(PostgreSqlParser.KW_SET); - this.state = 8414; + this.state = 8424; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 8414; + this.state = 8424; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -55726,41 +55774,41 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 8397; + this.state = 8407; this.columnName(); - this.state = 8398; + this.state = 8408; this.match(PostgreSqlParser.EQUAL); - this.state = 8399; + this.state = 8409; this.exprofdefault(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 8401; + this.state = 8411; this.optColumnList(); - this.state = 8402; + this.state = 8412; this.match(PostgreSqlParser.EQUAL); - this.state = 8403; + this.state = 8413; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8404; + this.state = 8414; this.exprofdefault(); - this.state = 8409; + this.state = 8419; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8405; + this.state = 8415; this.match(PostgreSqlParser.COMMA); - this.state = 8406; + this.state = 8416; this.exprofdefault(); } } - this.state = 8411; + this.state = 8421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8412; + this.state = 8422; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -55772,9 +55820,9 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 8416; + this.state = 8426; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1171, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1173, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -55797,44 +55845,44 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 920, PostgreSqlParser.RULE_defaultValuesOrValues); let _la: number; try { - this.state = 8432; + this.state = 8442; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 1); { - this.state = 8418; + this.state = 8428; this.match(PostgreSqlParser.KW_VALUES); - this.state = 8419; + this.state = 8429; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8420; + this.state = 8430; this.exprofdefault(); - this.state = 8425; + this.state = 8435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8421; + this.state = 8431; this.match(PostgreSqlParser.COMMA); - this.state = 8422; + this.state = 8432; this.exprofdefault(); } } - this.state = 8427; + this.state = 8437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8428; + this.state = 8438; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 8430; + this.state = 8440; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 8431; + this.state = 8441; this.match(PostgreSqlParser.KW_VALUES); } break; @@ -55860,20 +55908,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ExprofdefaultContext(this.context, this.state); this.enterRule(localContext, 922, PostgreSqlParser.RULE_exprofdefault); try { - this.state = 8436; + this.state = 8446; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1174, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1176, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8434; + this.state = 8444; this.sortBy(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8435; + this.state = 8445; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -55899,11 +55947,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8438; + this.state = 8448; this.match(PostgreSqlParser.KW_CLOSE); - this.state = 8439; + this.state = 8449; this.cursorVariable(); - this.state = 8440; + this.state = 8450; this.match(PostgreSqlParser.SEMI); } } @@ -55927,9 +55975,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8442; + this.state = 8452; this.match(PostgreSqlParser.KW_NULL); - this.state = 8443; + this.state = 8453; this.match(PostgreSqlParser.SEMI); } } @@ -55954,7 +56002,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8445; + this.state = 8455; _la = this.tokenStream.LA(1); if(!(_la === 161 || _la === 319)) { this.errorHandler.recoverInline(this); @@ -55963,29 +56011,29 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8451; + this.state = 8461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8446; + this.state = 8456; this.match(PostgreSqlParser.KW_AND); - this.state = 8448; + this.state = 8458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 8447; + this.state = 8457; this.match(PostgreSqlParser.KW_NO); } } - this.state = 8450; + this.state = 8460; this.match(PostgreSqlParser.KW_CHAIN); } } - this.state = 8453; + this.state = 8463; this.match(PostgreSqlParser.SEMI); } } @@ -56007,30 +56055,30 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new StmtSetContext(this.context, this.state); this.enterRule(localContext, 930, PostgreSqlParser.RULE_stmtSet); try { - this.state = 8467; + this.state = 8477; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 8455; + this.state = 8465; this.match(PostgreSqlParser.KW_SET); - this.state = 8456; + this.state = 8466; this.anyName(); - this.state = 8457; + this.state = 8467; this.match(PostgreSqlParser.KW_TO); - this.state = 8458; + this.state = 8468; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 8459; + this.state = 8469; this.match(PostgreSqlParser.SEMI); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 8461; + this.state = 8471; this.match(PostgreSqlParser.KW_RESET); - this.state = 8464; + this.state = 8474; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -56428,20 +56476,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 8462; + this.state = 8472; this.anyName(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 8463; + this.state = 8473; this.match(PostgreSqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 8466; + this.state = 8476; this.match(PostgreSqlParser.SEMI); } break; @@ -56467,7 +56515,7 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new CursorVariableContext(this.context, this.state); this.enterRule(localContext, 932, PostgreSqlParser.RULE_cursorVariable); try { - this.state = 8471; + this.state = 8481; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -56866,14 +56914,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8469; + this.state = 8479; this.colId(); } break; case PostgreSqlParser.PARAM: this.enterOuterAlt(localContext, 2); { - this.state = 8470; + this.state = 8480; this.match(PostgreSqlParser.PARAM); } break; @@ -56903,57 +56951,57 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8473; + this.state = 8483; this.match(PostgreSqlParser.KW_EXCEPTION); - this.state = 8490; + this.state = 8500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8474; + this.state = 8484; this.match(PostgreSqlParser.KW_WHEN); { - this.state = 8475; + this.state = 8485; this.procCondition(); - this.state = 8480; + this.state = 8490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 8476; + this.state = 8486; this.match(PostgreSqlParser.KW_OR); - this.state = 8477; + this.state = 8487; this.procCondition(); } } - this.state = 8482; + this.state = 8492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8483; + this.state = 8493; this.match(PostgreSqlParser.KW_THEN); - this.state = 8487; + this.state = 8497; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1181, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1183, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8484; + this.state = 8494; this.procStmt(); } } } - this.state = 8489; + this.state = 8499; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1181, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1183, this.context); } } } - this.state = 8492; + this.state = 8502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -56977,22 +57025,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ProcConditionContext(this.context, this.state); this.enterRule(localContext, 936, PostgreSqlParser.RULE_procCondition); try { - this.state = 8497; + this.state = 8507; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1183, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1185, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8494; + this.state = 8504; this.anyIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8495; + this.state = 8505; this.match(PostgreSqlParser.KW_SQLSTATE); - this.state = 8496; + this.state = 8506; this.stringConst(); } break; @@ -57016,20 +57064,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new AnyIdentifierContext(this.context, this.state); this.enterRule(localContext, 938, PostgreSqlParser.RULE_anyIdentifier); try { - this.state = 8501; + this.state = 8511; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1184, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1186, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8499; + this.state = 8509; this.colId(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8500; + this.state = 8510; this.unreservedKeyword(); } break; @@ -57056,72 +57104,64 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 8504; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1185, this.context) ) { - case 1: - { - this.state = 8503; - this.targetList(); - } - break; - } - this.state = 8507; + this.state = 8513; + this.targetList(); + this.state = 8515; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1186, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1187, this.context) ) { case 1: { - this.state = 8506; + this.state = 8514; this.intoClause(); } break; } - this.state = 8510; + this.state = 8518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 8509; + this.state = 8517; this.fromClause(); } } - this.state = 8513; + this.state = 8521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8512; + this.state = 8520; this.whereClause(); } } - this.state = 8516; + this.state = 8524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 8515; + this.state = 8523; this.groupClause(); } } - this.state = 8519; + this.state = 8527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 67) { { - this.state = 8518; + this.state = 8526; this.havingClause(); } } - this.state = 8522; + this.state = 8530; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1191, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1192, this.context) ) { case 1: { - this.state = 8521; + this.state = 8529; this.windowClause(); } break; @@ -57151,8 +57191,12 @@ export class PostgreSqlParser extends SQLParserBase { return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); case 339: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); + case 379: + return this.targetList_sempred(localContext as TargetListContext, predIndex); case 380: return this.targetEl_sempred(localContext as TargetElContext, predIndex); + case 404: + return this.columnNamePath_sempred(localContext as ColumnNamePathContext, predIndex); } return true; } @@ -57191,18 +57235,32 @@ export class PostgreSqlParser extends SQLParserBase { } return true; } - private targetEl_sempred(localContext: TargetElContext | null, predIndex: number): boolean { + private targetList_sempred(localContext: TargetListContext | null, predIndex: number): boolean { switch (predIndex) { case 10: - return this.entityCollecting; + return this.isFollowedByInto() || this.isFollowedByEnd(); + } + return true; + } + private targetEl_sempred(localContext: TargetElContext | null, predIndex: number): boolean { + switch (predIndex) { case 11: return this.entityCollecting; + case 12: + return this.entityCollecting; + } + return true; + } + private columnNamePath_sempred(localContext: ColumnNamePathContext | null, predIndex: number): boolean { + switch (predIndex) { + case 13: + return this.shouldMatchEmpty(); } return true; } public static readonly _serializedATN: number[] = [ - 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, + 4,1,592,8533,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, @@ -57955,508 +58013,509 @@ export class PostgreSqlParser extends SQLParserBase { 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, + 378,12,378,7538,9,378,1,379,1,379,1,379,1,379,5,379,7544,8,379,10, + 379,12,379,7547,9,379,3,379,7549,8,379,1,380,1,380,1,380,3,380,7554, + 8,380,1,380,3,380,7557,8,380,1,380,1,380,3,380,7561,8,380,1,380, + 1,380,1,380,1,380,1,380,1,380,1,380,3,380,7570,8,380,1,381,1,381, + 1,381,5,381,7575,8,381,10,381,12,381,7578,9,381,1,381,1,381,1,382, + 1,382,1,382,5,382,7585,8,382,10,382,12,382,7588,9,382,1,383,1,383, + 1,383,5,383,7593,8,383,10,383,12,383,7596,9,383,1,384,1,384,1,384, + 5,384,7601,8,384,10,384,12,384,7604,9,384,1,385,1,385,1,385,5,385, + 7609,8,385,10,385,12,385,7612,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,7628, + 8,392,1,393,1,393,1,393,5,393,7633,8,393,10,393,12,393,7636,9,393, + 1,394,1,394,1,394,5,394,7641,8,394,10,394,12,394,7644,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,7660,8,400,1,401,1,401,1,401,1,401,3,401,7666, + 8,401,1,402,1,402,1,403,1,403,1,403,1,404,1,404,1,404,1,404,1,404, + 1,404,1,404,1,404,3,404,7681,8,404,1,405,1,405,1,406,1,406,1,406, + 1,406,3,406,7689,8,406,1,407,1,407,1,407,1,407,3,407,7695,8,407, + 1,408,1,408,1,408,3,408,7700,8,408,1,409,1,409,1,409,1,409,5,409, + 7706,8,409,10,409,12,409,7709,9,409,1,409,1,409,3,409,7713,8,409, + 1,410,3,410,7716,8,410,1,410,1,410,1,411,1,411,1,411,1,411,1,411, + 3,411,7725,8,411,1,412,1,412,1,412,5,412,7730,8,412,10,412,12,412, + 7733,9,412,1,413,1,413,3,413,7737,8,413,1,414,1,414,3,414,7741,8, + 414,1,415,1,415,1,415,3,415,7746,8,415,1,416,1,416,1,416,1,416,3, + 416,7752,8,416,1,417,1,417,1,417,3,417,7757,8,417,1,418,1,418,1, + 418,3,418,7762,8,418,1,418,1,418,1,418,1,418,1,418,1,418,3,418,7770, 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, + 7825,8,420,1,421,1,421,1,422,1,422,1,423,3,423,7832,8,423,1,423, + 1,423,1,423,1,423,4,423,7838,8,423,11,423,12,423,7839,3,423,7842, + 8,423,3,423,7844,8,423,1,423,1,423,5,423,7848,8,423,10,423,12,423, + 7851,9,423,1,423,3,423,7854,8,423,1,423,1,423,3,423,7858,8,423,1, + 424,1,424,1,424,1,424,1,425,1,425,1,425,1,425,1,425,3,425,7869,8, + 425,1,425,3,425,7872,8,425,1,425,1,425,3,425,7876,8,425,1,425,1, + 425,3,425,7880,8,425,1,425,1,425,3,425,7884,8,425,1,425,3,425,7887, + 8,425,1,425,3,425,7890,8,425,1,425,3,425,7893,8,425,1,425,1,425, + 1,425,1,425,1,425,5,425,7900,8,425,10,425,12,425,7903,9,425,1,425, + 1,425,3,425,7907,8,425,1,425,1,425,3,425,7911,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, + 1,428,1,428,1,428,1,428,1,428,1,428,1,428,3,428,7944,8,428,1,429, + 1,429,1,429,1,429,1,430,1,430,1,430,1,430,3,430,7954,8,430,1,430, + 1,430,3,430,7958,8,430,1,430,1,430,1,430,1,430,3,430,7964,8,430, + 1,430,1,430,1,430,3,430,7969,8,430,1,431,1,431,1,431,1,431,1,431, + 1,432,1,432,3,432,7978,8,432,1,432,1,432,1,432,1,432,5,432,7984, + 8,432,10,432,12,432,7987,9,432,1,432,1,432,1,433,1,433,1,433,1,433, + 1,434,1,434,3,434,7997,8,434,1,434,1,434,1,434,1,434,5,434,8003, + 8,434,10,434,12,434,8006,9,434,1,435,1,435,1,435,1,435,5,435,8012, + 8,435,10,435,12,435,8015,9,435,1,435,1,435,1,435,1,435,5,435,8021, + 8,435,10,435,12,435,8024,9,435,5,435,8026,8,435,10,435,12,435,8029, + 9,435,1,435,3,435,8032,8,435,1,435,1,435,1,435,1,435,1,436,1,436, + 5,436,8040,8,436,10,436,12,436,8043,9,436,1,437,1,437,3,437,8047, + 8,437,1,437,1,437,1,437,1,437,5,437,8053,8,437,10,437,12,437,8056, + 9,437,4,437,8058,8,437,11,437,12,437,8059,1,437,3,437,8063,8,437, + 1,437,1,437,1,437,1,437,1,438,3,438,8070,8,438,1,438,1,438,1,438, + 1,438,3,438,8076,8,438,1,438,1,438,1,439,1,439,1,439,1,439,3,439, + 8084,8,439,1,439,1,439,1,439,1,439,1,439,1,439,3,439,8092,8,439, + 1,439,3,439,8095,8,439,1,439,1,439,1,439,1,439,1,439,3,439,8102, + 8,439,3,439,8104,8,439,1,440,3,440,8107,8,440,1,440,1,440,1,440, + 1,440,3,440,8113,8,440,1,440,1,440,1,440,1,440,1,440,1,441,1,441, + 3,441,8122,8,441,1,441,1,441,3,441,8126,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,8140, + 8,442,1,442,3,442,8143,8,442,3,442,8145,8,442,1,442,1,442,1,443, + 1,443,3,443,8151,8,443,1,443,1,443,1,443,1,443,1,443,1,443,4,443, + 8159,8,443,11,443,12,443,8160,3,443,8163,8,443,3,443,8165,8,443, + 1,443,1,443,1,443,1,443,5,443,8171,8,443,10,443,12,443,8174,9,443, + 3,443,8176,8,443,1,443,3,443,8179,8,443,1,444,1,444,1,444,1,444, + 1,445,1,445,1,445,1,445,3,445,8189,8,445,1,445,1,445,1,446,1,446, + 5,446,8195,8,446,10,446,12,446,8198,9,446,1,446,1,446,1,446,3,446, + 8203,8,446,1,446,1,446,1,447,1,447,3,447,8209,8,447,1,447,1,447, + 1,448,1,448,1,448,3,448,8216,8,448,1,448,1,448,3,448,8220,8,448, + 1,448,1,448,3,448,8224,8,448,1,448,3,448,8227,8,448,1,448,3,448, + 8230,8,448,1,448,1,448,1,449,1,449,3,449,8236,8,449,1,449,1,449, + 1,450,1,450,1,450,3,450,8243,8,450,1,450,3,450,8246,8,450,1,450, + 1,450,1,450,1,450,1,450,1,450,3,450,8254,8,450,3,450,8256,8,450, + 1,450,1,450,1,450,1,450,1,450,5,450,8263,8,450,10,450,12,450,8266, + 9,450,1,450,1,450,3,450,8270,8,450,3,450,8272,8,450,1,450,1,450, + 1,451,1,451,1,451,3,451,8279,8,451,1,451,1,451,1,452,1,452,3,452, + 8285,8,452,1,452,3,452,8288,8,452,1,452,1,452,1,452,1,452,1,452, + 1,453,1,453,1,453,1,453,1,453,3,453,8300,8,453,1,453,1,453,1,453, + 1,453,1,453,3,453,8307,8,453,3,453,8309,8,453,1,454,1,454,3,454, + 8313,8,454,1,454,1,454,1,454,1,455,3,455,8319,8,455,1,455,1,455, + 1,455,3,455,8324,8,455,1,455,1,455,3,455,8328,8,455,1,455,3,455, + 8331,8,455,1,455,3,455,8334,8,455,1,455,1,455,1,455,1,455,1,455, + 4,455,8341,8,455,11,455,12,455,8342,1,455,3,455,8346,8,455,1,456, + 3,456,8349,8,456,1,456,1,456,3,456,8353,8,456,1,456,1,456,3,456, + 8357,8,456,3,456,8359,8,456,1,456,3,456,8362,8,456,1,456,3,456,8365, + 8,456,1,457,1,457,1,457,1,457,3,457,8371,8,457,1,457,1,457,1,457, + 1,457,1,457,3,457,8378,8,457,1,457,1,457,1,457,1,457,1,457,3,457, + 8385,8,457,1,457,1,457,1,457,1,457,3,457,8391,8,457,3,457,8393,8, + 457,1,458,1,458,3,458,8397,8,458,1,458,1,458,1,458,3,458,8402,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, + 1,459,1,459,1,459,1,459,5,459,8418,8,459,10,459,12,459,8421,9,459, + 1,459,1,459,4,459,8425,8,459,11,459,12,459,8426,1,460,1,460,1,460, + 1,460,1,460,5,460,8434,8,460,10,460,12,460,8437,9,460,1,460,1,460, + 1,460,1,460,3,460,8443,8,460,1,461,1,461,3,461,8447,8,461,1,462, + 1,462,1,462,1,462,1,463,1,463,1,463,1,464,1,464,1,464,3,464,8459, + 8,464,1,464,3,464,8462,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,8475,8,465,1,465,3,465,8478, + 8,465,1,466,1,466,3,466,8482,8,466,1,467,1,467,1,467,1,467,1,467, + 5,467,8489,8,467,10,467,12,467,8492,9,467,1,467,1,467,5,467,8496, + 8,467,10,467,12,467,8499,9,467,4,467,8501,8,467,11,467,12,467,8502, + 1,468,1,468,1,468,3,468,8508,8,468,1,469,1,469,3,469,8512,8,469, + 1,470,1,470,3,470,8516,8,470,1,470,3,470,8519,8,470,1,470,3,470, + 8522,8,470,1,470,3,470,8525,8,470,1,470,3,470,8528,8,470,1,470,3, + 470,8531,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,9971,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,7548,1,0,0,0,760,7569,1,0,0,0,762,7576,1,0,0,0,764,7581, + 1,0,0,0,766,7589,1,0,0,0,768,7597,1,0,0,0,770,7605,1,0,0,0,772,7613, + 1,0,0,0,774,7615,1,0,0,0,776,7617,1,0,0,0,778,7619,1,0,0,0,780,7621, + 1,0,0,0,782,7623,1,0,0,0,784,7625,1,0,0,0,786,7629,1,0,0,0,788,7637, + 1,0,0,0,790,7645,1,0,0,0,792,7647,1,0,0,0,794,7649,1,0,0,0,796,7651, + 1,0,0,0,798,7653,1,0,0,0,800,7659,1,0,0,0,802,7665,1,0,0,0,804,7667, + 1,0,0,0,806,7669,1,0,0,0,808,7680,1,0,0,0,810,7682,1,0,0,0,812,7688, + 1,0,0,0,814,7694,1,0,0,0,816,7696,1,0,0,0,818,7712,1,0,0,0,820,7715, + 1,0,0,0,822,7724,1,0,0,0,824,7726,1,0,0,0,826,7736,1,0,0,0,828,7740, + 1,0,0,0,830,7745,1,0,0,0,832,7751,1,0,0,0,834,7756,1,0,0,0,836,7769, + 1,0,0,0,838,7771,1,0,0,0,840,7824,1,0,0,0,842,7826,1,0,0,0,844,7828, + 1,0,0,0,846,7831,1,0,0,0,848,7859,1,0,0,0,850,7863,1,0,0,0,852,7914, + 1,0,0,0,854,7917,1,0,0,0,856,7943,1,0,0,0,858,7945,1,0,0,0,860,7968, + 1,0,0,0,862,7970,1,0,0,0,864,7975,1,0,0,0,866,7990,1,0,0,0,868,7996, + 1,0,0,0,870,8007,1,0,0,0,872,8037,1,0,0,0,874,8044,1,0,0,0,876,8069, + 1,0,0,0,878,8079,1,0,0,0,880,8106,1,0,0,0,882,8119,1,0,0,0,884,8129, + 1,0,0,0,886,8148,1,0,0,0,888,8180,1,0,0,0,890,8184,1,0,0,0,892,8192, + 1,0,0,0,894,8206,1,0,0,0,896,8212,1,0,0,0,898,8233,1,0,0,0,900,8239, + 1,0,0,0,902,8278,1,0,0,0,904,8282,1,0,0,0,906,8308,1,0,0,0,908,8310, + 1,0,0,0,910,8318,1,0,0,0,912,8358,1,0,0,0,914,8392,1,0,0,0,916,8394, + 1,0,0,0,918,8405,1,0,0,0,920,8442,1,0,0,0,922,8446,1,0,0,0,924,8448, + 1,0,0,0,926,8452,1,0,0,0,928,8455,1,0,0,0,930,8477,1,0,0,0,932,8481, + 1,0,0,0,934,8483,1,0,0,0,936,8507,1,0,0,0,938,8511,1,0,0,0,940,8513, + 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, @@ -60657,460 +60716,463 @@ export class PostgreSqlParser extends SQLParserBase { 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 + 7536,1,0,0,0,7539,7549,4,379,10,0,7540,7545,3,760,380,0,7541,7542, + 5,6,0,0,7542,7544,3,760,380,0,7543,7541,1,0,0,0,7544,7547,1,0,0, + 0,7545,7543,1,0,0,0,7545,7546,1,0,0,0,7546,7549,1,0,0,0,7547,7545, + 1,0,0,0,7548,7539,1,0,0,0,7548,7540,1,0,0,0,7549,759,1,0,0,0,7550, + 7570,3,762,381,0,7551,7554,3,732,366,0,7552,7554,3,730,365,0,7553, + 7551,1,0,0,0,7553,7552,1,0,0,0,7554,7560,1,0,0,0,7555,7557,5,36, + 0,0,7556,7555,1,0,0,0,7556,7557,1,0,0,0,7557,7558,1,0,0,0,7558,7561, + 3,836,418,0,7559,7561,1,0,0,0,7560,7556,1,0,0,0,7560,7559,1,0,0, + 0,7561,7570,1,0,0,0,7562,7563,3,826,413,0,7563,7564,5,11,0,0,7564, + 7565,4,380,11,0,7565,7566,3,804,402,0,7566,7570,1,0,0,0,7567,7568, + 4,380,12,0,7568,7570,3,804,402,0,7569,7550,1,0,0,0,7569,7553,1,0, + 0,0,7569,7562,1,0,0,0,7569,7567,1,0,0,0,7570,761,1,0,0,0,7571,7572, + 3,826,413,0,7572,7573,5,11,0,0,7573,7575,1,0,0,0,7574,7571,1,0,0, + 0,7575,7578,1,0,0,0,7576,7574,1,0,0,0,7576,7577,1,0,0,0,7577,7579, + 1,0,0,0,7578,7576,1,0,0,0,7579,7580,5,9,0,0,7580,763,1,0,0,0,7581, + 7586,3,784,392,0,7582,7583,5,6,0,0,7583,7585,3,784,392,0,7584,7582, + 1,0,0,0,7585,7588,1,0,0,0,7586,7584,1,0,0,0,7586,7587,1,0,0,0,7587, + 765,1,0,0,0,7588,7586,1,0,0,0,7589,7594,3,778,389,0,7590,7591,5, + 6,0,0,7591,7593,3,778,389,0,7592,7590,1,0,0,0,7593,7596,1,0,0,0, + 7594,7592,1,0,0,0,7594,7595,1,0,0,0,7595,767,1,0,0,0,7596,7594,1, + 0,0,0,7597,7602,3,794,397,0,7598,7599,5,6,0,0,7599,7601,3,794,397, + 0,7600,7598,1,0,0,0,7601,7604,1,0,0,0,7602,7600,1,0,0,0,7602,7603, + 1,0,0,0,7603,769,1,0,0,0,7604,7602,1,0,0,0,7605,7610,3,792,396,0, + 7606,7607,5,6,0,0,7607,7609,3,792,396,0,7608,7606,1,0,0,0,7609,7612, + 1,0,0,0,7610,7608,1,0,0,0,7610,7611,1,0,0,0,7611,771,1,0,0,0,7612, + 7610,1,0,0,0,7613,7614,3,784,392,0,7614,773,1,0,0,0,7615,7616,3, + 784,392,0,7616,775,1,0,0,0,7617,7618,3,784,392,0,7618,777,1,0,0, + 0,7619,7620,3,784,392,0,7620,779,1,0,0,0,7621,7622,3,784,392,0,7622, + 781,1,0,0,0,7623,7624,3,310,155,0,7624,783,1,0,0,0,7625,7627,3,826, + 413,0,7626,7628,3,754,377,0,7627,7626,1,0,0,0,7627,7628,1,0,0,0, + 7628,785,1,0,0,0,7629,7634,3,774,387,0,7630,7631,5,6,0,0,7631,7633, + 3,774,387,0,7632,7630,1,0,0,0,7633,7636,1,0,0,0,7634,7632,1,0,0, + 0,7634,7635,1,0,0,0,7635,787,1,0,0,0,7636,7634,1,0,0,0,7637,7642, + 3,826,413,0,7638,7639,5,6,0,0,7639,7641,3,826,413,0,7640,7638,1, + 0,0,0,7641,7644,1,0,0,0,7642,7640,1,0,0,0,7642,7643,1,0,0,0,7643, + 789,1,0,0,0,7644,7642,1,0,0,0,7645,7646,3,310,155,0,7646,791,1,0, + 0,0,7647,7648,3,310,155,0,7648,793,1,0,0,0,7649,7650,3,310,155,0, + 7650,795,1,0,0,0,7651,7652,3,826,413,0,7652,797,1,0,0,0,7653,7654, + 3,826,413,0,7654,799,1,0,0,0,7655,7660,3,828,414,0,7656,7657,3,826, + 413,0,7657,7658,3,754,377,0,7658,7660,1,0,0,0,7659,7655,1,0,0,0, + 7659,7656,1,0,0,0,7660,801,1,0,0,0,7661,7666,3,828,414,0,7662,7663, + 3,826,413,0,7663,7664,3,754,377,0,7664,7666,1,0,0,0,7665,7661,1, + 0,0,0,7665,7662,1,0,0,0,7666,803,1,0,0,0,7667,7668,1,0,0,0,7668, + 805,1,0,0,0,7669,7670,3,826,413,0,7670,7671,3,756,378,0,7671,807, + 1,0,0,0,7672,7673,3,826,413,0,7673,7674,3,756,378,0,7674,7681,1, + 0,0,0,7675,7676,3,826,413,0,7676,7677,5,11,0,0,7677,7678,4,404,13, + 0,7678,7679,3,804,402,0,7679,7681,1,0,0,0,7680,7672,1,0,0,0,7680, + 7675,1,0,0,0,7681,809,1,0,0,0,7682,7683,3,826,413,0,7683,811,1,0, + 0,0,7684,7689,3,828,414,0,7685,7686,3,826,413,0,7686,7687,3,754, + 377,0,7687,7689,1,0,0,0,7688,7684,1,0,0,0,7688,7685,1,0,0,0,7689, + 813,1,0,0,0,7690,7695,3,828,414,0,7691,7692,3,826,413,0,7692,7693, + 3,754,377,0,7693,7695,1,0,0,0,7694,7690,1,0,0,0,7694,7691,1,0,0, + 0,7695,815,1,0,0,0,7696,7699,3,818,409,0,7697,7698,5,487,0,0,7698, + 7700,3,818,409,0,7699,7697,1,0,0,0,7699,7700,1,0,0,0,7700,817,1, + 0,0,0,7701,7713,5,561,0,0,7702,7713,5,563,0,0,7703,7707,5,565,0, + 0,7704,7706,5,590,0,0,7705,7704,1,0,0,0,7706,7709,1,0,0,0,7707,7705, + 1,0,0,0,7707,7708,1,0,0,0,7708,7710,1,0,0,0,7709,7707,1,0,0,0,7710, + 7713,5,591,0,0,7711,7713,5,586,0,0,7712,7701,1,0,0,0,7712,7702,1, + 0,0,0,7712,7703,1,0,0,0,7712,7711,1,0,0,0,7713,819,1,0,0,0,7714, + 7716,7,30,0,0,7715,7714,1,0,0,0,7715,7716,1,0,0,0,7716,7717,1,0, + 0,0,7717,7718,5,574,0,0,7718,821,1,0,0,0,7719,7725,3,830,415,0,7720, + 7725,5,52,0,0,7721,7725,5,49,0,0,7722,7725,5,89,0,0,7723,7725,5, + 524,0,0,7724,7719,1,0,0,0,7724,7720,1,0,0,0,7724,7721,1,0,0,0,7724, + 7722,1,0,0,0,7724,7723,1,0,0,0,7725,823,1,0,0,0,7726,7731,3,822, + 411,0,7727,7728,5,6,0,0,7728,7730,3,822,411,0,7729,7727,1,0,0,0, + 7730,7733,1,0,0,0,7731,7729,1,0,0,0,7731,7732,1,0,0,0,7732,825,1, + 0,0,0,7733,7731,1,0,0,0,7734,7737,3,836,418,0,7735,7737,3,840,420, + 0,7736,7734,1,0,0,0,7736,7735,1,0,0,0,7737,827,1,0,0,0,7738,7741, + 3,836,418,0,7739,7741,3,842,421,0,7740,7738,1,0,0,0,7740,7739,1, + 0,0,0,7741,829,1,0,0,0,7742,7746,3,836,418,0,7743,7746,3,840,420, + 0,7744,7746,3,842,421,0,7745,7742,1,0,0,0,7745,7743,1,0,0,0,7745, + 7744,1,0,0,0,7746,831,1,0,0,0,7747,7752,3,836,418,0,7748,7752,3, + 840,420,0,7749,7752,3,842,421,0,7750,7752,3,844,422,0,7751,7747, + 1,0,0,0,7751,7748,1,0,0,0,7751,7749,1,0,0,0,7751,7750,1,0,0,0,7752, + 833,1,0,0,0,7753,7757,3,836,418,0,7754,7757,3,840,420,0,7755,7757, + 3,842,421,0,7756,7753,1,0,0,0,7756,7754,1,0,0,0,7756,7755,1,0,0, + 0,7757,835,1,0,0,0,7758,7761,5,552,0,0,7759,7760,5,487,0,0,7760, + 7762,3,818,409,0,7761,7759,1,0,0,0,7761,7762,1,0,0,0,7762,7770,1, + 0,0,0,7763,7770,3,816,408,0,7764,7770,5,553,0,0,7765,7770,5,557, + 0,0,7766,7770,5,577,0,0,7767,7770,5,578,0,0,7768,7770,3,838,419, + 0,7769,7758,1,0,0,0,7769,7763,1,0,0,0,7769,7764,1,0,0,0,7769,7765, + 1,0,0,0,7769,7766,1,0,0,0,7769,7767,1,0,0,0,7769,7768,1,0,0,0,7770, + 837,1,0,0,0,7771,7772,7,110,0,0,7772,839,1,0,0,0,7773,7825,5,387, + 0,0,7774,7825,5,388,0,0,7775,7825,3,658,329,0,7776,7825,5,390,0, + 0,7777,7825,5,391,0,0,7778,7825,3,660,330,0,7779,7825,5,393,0,0, + 7780,7825,5,394,0,0,7781,7825,5,395,0,0,7782,7825,5,396,0,0,7783, + 7825,5,397,0,0,7784,7825,5,398,0,0,7785,7825,5,399,0,0,7786,7825, + 5,470,0,0,7787,7825,5,400,0,0,7788,7825,5,401,0,0,7789,7825,5,402, + 0,0,7790,7825,5,403,0,0,7791,7825,5,404,0,0,7792,7825,5,405,0,0, + 7793,7825,5,406,0,0,7794,7825,5,407,0,0,7795,7825,5,489,0,0,7796, + 7825,5,408,0,0,7797,7825,3,654,327,0,7798,7825,5,453,0,0,7799,7825, + 5,410,0,0,7800,7825,5,411,0,0,7801,7825,5,412,0,0,7802,7825,5,413, + 0,0,7803,7825,5,414,0,0,7804,7825,5,415,0,0,7805,7825,5,416,0,0, + 7806,7825,5,417,0,0,7807,7825,5,418,0,0,7808,7825,5,419,0,0,7809, + 7825,5,420,0,0,7810,7825,5,421,0,0,7811,7825,5,422,0,0,7812,7825, + 5,423,0,0,7813,7825,5,424,0,0,7814,7825,5,425,0,0,7815,7825,5,426, + 0,0,7816,7825,5,427,0,0,7817,7825,5,428,0,0,7818,7825,5,476,0,0, + 7819,7825,5,429,0,0,7820,7825,5,430,0,0,7821,7825,5,431,0,0,7822, + 7825,5,432,0,0,7823,7825,5,474,0,0,7824,7773,1,0,0,0,7824,7774,1, + 0,0,0,7824,7775,1,0,0,0,7824,7776,1,0,0,0,7824,7777,1,0,0,0,7824, + 7778,1,0,0,0,7824,7779,1,0,0,0,7824,7780,1,0,0,0,7824,7781,1,0,0, + 0,7824,7782,1,0,0,0,7824,7783,1,0,0,0,7824,7784,1,0,0,0,7824,7785, + 1,0,0,0,7824,7786,1,0,0,0,7824,7787,1,0,0,0,7824,7788,1,0,0,0,7824, + 7789,1,0,0,0,7824,7790,1,0,0,0,7824,7791,1,0,0,0,7824,7792,1,0,0, + 0,7824,7793,1,0,0,0,7824,7794,1,0,0,0,7824,7795,1,0,0,0,7824,7796, + 1,0,0,0,7824,7797,1,0,0,0,7824,7798,1,0,0,0,7824,7799,1,0,0,0,7824, + 7800,1,0,0,0,7824,7801,1,0,0,0,7824,7802,1,0,0,0,7824,7803,1,0,0, + 0,7824,7804,1,0,0,0,7824,7805,1,0,0,0,7824,7806,1,0,0,0,7824,7807, + 1,0,0,0,7824,7808,1,0,0,0,7824,7809,1,0,0,0,7824,7810,1,0,0,0,7824, + 7811,1,0,0,0,7824,7812,1,0,0,0,7824,7813,1,0,0,0,7824,7814,1,0,0, + 0,7824,7815,1,0,0,0,7824,7816,1,0,0,0,7824,7817,1,0,0,0,7824,7818, + 1,0,0,0,7824,7819,1,0,0,0,7824,7820,1,0,0,0,7824,7821,1,0,0,0,7824, + 7822,1,0,0,0,7824,7823,1,0,0,0,7825,841,1,0,0,0,7826,7827,7,111, + 0,0,7827,843,1,0,0,0,7828,7829,7,112,0,0,7829,845,1,0,0,0,7830,7832, + 3,848,424,0,7831,7830,1,0,0,0,7831,7832,1,0,0,0,7832,7843,1,0,0, + 0,7833,7841,5,178,0,0,7834,7838,3,850,425,0,7835,7838,5,178,0,0, + 7836,7838,3,848,424,0,7837,7834,1,0,0,0,7837,7835,1,0,0,0,7837,7836, + 1,0,0,0,7838,7839,1,0,0,0,7839,7837,1,0,0,0,7839,7840,1,0,0,0,7840, + 7842,1,0,0,0,7841,7837,1,0,0,0,7841,7842,1,0,0,0,7842,7844,1,0,0, + 0,7843,7833,1,0,0,0,7843,7844,1,0,0,0,7844,7845,1,0,0,0,7845,7849, + 5,146,0,0,7846,7848,3,856,428,0,7847,7846,1,0,0,0,7848,7851,1,0, + 0,0,7849,7847,1,0,0,0,7849,7850,1,0,0,0,7850,7853,1,0,0,0,7851,7849, + 1,0,0,0,7852,7854,3,934,467,0,7853,7852,1,0,0,0,7853,7854,1,0,0, + 0,7854,7855,1,0,0,0,7855,7857,5,454,0,0,7856,7858,3,938,469,0,7857, + 7856,1,0,0,0,7857,7858,1,0,0,0,7858,847,1,0,0,0,7859,7860,5,18,0, + 0,7860,7861,3,938,469,0,7861,7862,5,19,0,0,7862,849,1,0,0,0,7863, + 7910,3,938,469,0,7864,7865,5,496,0,0,7865,7868,5,62,0,0,7866,7869, + 5,28,0,0,7867,7869,3,826,413,0,7868,7866,1,0,0,0,7868,7867,1,0,0, + 0,7869,7911,1,0,0,0,7870,7872,5,497,0,0,7871,7870,1,0,0,0,7871,7872, + 1,0,0,0,7872,7873,1,0,0,0,7873,7875,3,648,324,0,7874,7876,3,90,45, + 0,7875,7874,1,0,0,0,7875,7876,1,0,0,0,7876,7879,1,0,0,0,7877,7878, + 5,77,0,0,7878,7880,5,78,0,0,7879,7877,1,0,0,0,7879,7880,1,0,0,0, + 7880,7886,1,0,0,0,7881,7884,3,854,427,0,7882,7884,5,53,0,0,7883, + 7881,1,0,0,0,7883,7882,1,0,0,0,7884,7885,1,0,0,0,7885,7887,3,940, + 470,0,7886,7883,1,0,0,0,7886,7887,1,0,0,0,7887,7911,1,0,0,0,7888, + 7890,5,269,0,0,7889,7888,1,0,0,0,7889,7890,1,0,0,0,7890,7891,1,0, + 0,0,7891,7893,5,324,0,0,7892,7889,1,0,0,0,7892,7893,1,0,0,0,7893, + 7894,1,0,0,0,7894,7906,5,172,0,0,7895,7896,5,2,0,0,7896,7901,3,852, + 426,0,7897,7898,5,6,0,0,7898,7900,3,852,426,0,7899,7897,1,0,0,0, + 7900,7903,1,0,0,0,7901,7899,1,0,0,0,7901,7902,1,0,0,0,7902,7904, + 1,0,0,0,7903,7901,1,0,0,0,7904,7905,5,3,0,0,7905,7907,1,0,0,0,7906, + 7895,1,0,0,0,7906,7907,1,0,0,0,7907,7908,1,0,0,0,7908,7909,7,113, + 0,0,7909,7911,3,554,277,0,7910,7864,1,0,0,0,7910,7871,1,0,0,0,7910, + 7892,1,0,0,0,7911,7912,1,0,0,0,7912,7913,5,7,0,0,7913,851,1,0,0, + 0,7914,7915,3,938,469,0,7915,7916,3,648,324,0,7916,853,1,0,0,0,7917, + 7918,7,114,0,0,7918,855,1,0,0,0,7919,7920,3,846,423,0,7920,7921, + 5,7,0,0,7921,7944,1,0,0,0,7922,7944,3,884,442,0,7923,7944,3,886, + 443,0,7924,7944,3,862,431,0,7925,7944,3,870,435,0,7926,7944,3,874, + 437,0,7927,7944,3,876,438,0,7928,7944,3,880,440,0,7929,7944,3,882, + 441,0,7930,7944,3,890,445,0,7931,7944,3,894,447,0,7932,7944,3,896, + 448,0,7933,7944,3,858,429,0,7934,7944,3,860,430,0,7935,7944,3,864, + 432,0,7936,7944,3,900,450,0,7937,7944,3,904,452,0,7938,7944,3,908, + 454,0,7939,7944,3,924,462,0,7940,7944,3,926,463,0,7941,7944,3,928, + 464,0,7942,7944,3,930,465,0,7943,7919,1,0,0,0,7943,7922,1,0,0,0, + 7943,7923,1,0,0,0,7943,7924,1,0,0,0,7943,7925,1,0,0,0,7943,7926, + 1,0,0,0,7943,7927,1,0,0,0,7943,7928,1,0,0,0,7943,7929,1,0,0,0,7943, + 7930,1,0,0,0,7943,7931,1,0,0,0,7943,7932,1,0,0,0,7943,7933,1,0,0, + 0,7943,7934,1,0,0,0,7943,7935,1,0,0,0,7943,7936,1,0,0,0,7943,7937, + 1,0,0,0,7943,7938,1,0,0,0,7943,7939,1,0,0,0,7943,7940,1,0,0,0,7943, + 7941,1,0,0,0,7943,7942,1,0,0,0,7944,857,1,0,0,0,7945,7946,5,498, + 0,0,7946,7947,3,940,470,0,7947,7948,5,7,0,0,7948,859,1,0,0,0,7949, + 7950,5,433,0,0,7950,7957,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,7958,5,7,0,0,7957,7951,1,0,0,0,7957,7958, + 1,0,0,0,7958,7969,1,0,0,0,7959,7960,5,57,0,0,7960,7961,3,938,469, + 0,7961,7963,5,2,0,0,7962,7964,3,728,364,0,7963,7962,1,0,0,0,7963, + 7964,1,0,0,0,7964,7965,1,0,0,0,7965,7966,5,3,0,0,7966,7967,5,7,0, + 0,7967,7969,1,0,0,0,7968,7949,1,0,0,0,7968,7959,1,0,0,0,7969,861, + 1,0,0,0,7970,7971,3,868,434,0,7971,7972,3,854,427,0,7972,7973,3, + 940,470,0,7973,7974,5,7,0,0,7974,863,1,0,0,0,7975,7977,5,499,0,0, + 7976,7978,7,115,0,0,7977,7976,1,0,0,0,7977,7978,1,0,0,0,7978,7979, + 1,0,0,0,7979,7980,5,500,0,0,7980,7985,3,866,433,0,7981,7982,5,6, + 0,0,7982,7984,3,866,433,0,7983,7981,1,0,0,0,7984,7987,1,0,0,0,7985, + 7983,1,0,0,0,7985,7986,1,0,0,0,7986,7988,1,0,0,0,7987,7985,1,0,0, + 0,7988,7989,5,7,0,0,7989,865,1,0,0,0,7990,7991,3,868,434,0,7991, + 7992,3,854,427,0,7992,7993,3,826,413,0,7993,867,1,0,0,0,7994,7997, + 3,310,155,0,7995,7997,5,28,0,0,7996,7994,1,0,0,0,7996,7995,1,0,0, + 0,7997,8004,1,0,0,0,7998,7999,5,4,0,0,7999,8000,3,670,335,0,8000, + 8001,5,5,0,0,8001,8003,1,0,0,0,8002,7998,1,0,0,0,8003,8006,1,0,0, + 0,8004,8002,1,0,0,0,8004,8005,1,0,0,0,8005,869,1,0,0,0,8006,8004, + 1,0,0,0,8007,8008,5,220,0,0,8008,8009,3,940,470,0,8009,8013,5,93, + 0,0,8010,8012,3,856,428,0,8011,8010,1,0,0,0,8012,8015,1,0,0,0,8013, + 8011,1,0,0,0,8013,8014,1,0,0,0,8014,8027,1,0,0,0,8015,8013,1,0,0, + 0,8016,8017,5,502,0,0,8017,8018,3,670,335,0,8018,8022,5,93,0,0,8019, + 8021,3,856,428,0,8020,8019,1,0,0,0,8021,8024,1,0,0,0,8022,8020,1, + 0,0,0,8022,8023,1,0,0,0,8023,8026,1,0,0,0,8024,8022,1,0,0,0,8025, + 8016,1,0,0,0,8026,8029,1,0,0,0,8027,8025,1,0,0,0,8027,8028,1,0,0, + 0,8028,8031,1,0,0,0,8029,8027,1,0,0,0,8030,8032,3,872,436,0,8031, + 8030,1,0,0,0,8031,8032,1,0,0,0,8032,8033,1,0,0,0,8033,8034,5,454, + 0,0,8034,8035,5,220,0,0,8035,8036,5,7,0,0,8036,871,1,0,0,0,8037, + 8041,5,58,0,0,8038,8040,3,856,428,0,8039,8038,1,0,0,0,8040,8043, + 1,0,0,0,8041,8039,1,0,0,0,8041,8042,1,0,0,0,8042,873,1,0,0,0,8043, + 8041,1,0,0,0,8044,8046,5,40,0,0,8045,8047,3,940,470,0,8046,8045, + 1,0,0,0,8046,8047,1,0,0,0,8047,8057,1,0,0,0,8048,8049,5,102,0,0, + 8049,8050,3,728,364,0,8050,8054,5,93,0,0,8051,8053,3,856,428,0,8052, + 8051,1,0,0,0,8053,8056,1,0,0,0,8054,8052,1,0,0,0,8054,8055,1,0,0, + 0,8055,8058,1,0,0,0,8056,8054,1,0,0,0,8057,8048,1,0,0,0,8058,8059, + 1,0,0,0,8059,8057,1,0,0,0,8059,8060,1,0,0,0,8060,8062,1,0,0,0,8061, + 8063,3,872,436,0,8062,8061,1,0,0,0,8062,8063,1,0,0,0,8063,8064,1, + 0,0,0,8064,8065,5,454,0,0,8065,8066,5,40,0,0,8066,8067,5,7,0,0,8067, + 875,1,0,0,0,8068,8070,3,848,424,0,8069,8068,1,0,0,0,8069,8070,1, + 0,0,0,8070,8075,1,0,0,0,8071,8072,5,503,0,0,8072,8076,3,670,335, + 0,8073,8074,5,62,0,0,8074,8076,3,878,439,0,8075,8071,1,0,0,0,8075, + 8073,1,0,0,0,8075,8076,1,0,0,0,8076,8077,1,0,0,0,8077,8078,3,892, + 446,0,8078,877,1,0,0,0,8079,8080,3,308,154,0,8080,8103,5,68,0,0, + 8081,8083,3,826,413,0,8082,8084,3,528,264,0,8083,8082,1,0,0,0,8083, + 8084,1,0,0,0,8084,8104,1,0,0,0,8085,8104,3,554,277,0,8086,8104,3, + 514,257,0,8087,8088,5,202,0,0,8088,8091,3,670,335,0,8089,8090,5, + 100,0,0,8090,8092,3,728,364,0,8091,8089,1,0,0,0,8091,8092,1,0,0, + 0,8092,8104,1,0,0,0,8093,8095,5,504,0,0,8094,8093,1,0,0,0,8094,8095, + 1,0,0,0,8095,8096,1,0,0,0,8096,8097,3,670,335,0,8097,8098,5,24,0, + 0,8098,8101,3,670,335,0,8099,8100,5,147,0,0,8100,8102,3,670,335, + 0,8101,8099,1,0,0,0,8101,8102,1,0,0,0,8102,8104,1,0,0,0,8103,8081, + 1,0,0,0,8103,8085,1,0,0,0,8103,8086,1,0,0,0,8103,8087,1,0,0,0,8103, + 8094,1,0,0,0,8104,879,1,0,0,0,8105,8107,3,848,424,0,8106,8105,1, + 0,0,0,8106,8107,1,0,0,0,8107,8108,1,0,0,0,8108,8109,5,505,0,0,8109, + 8112,3,308,154,0,8110,8111,5,506,0,0,8111,8113,5,574,0,0,8112,8110, + 1,0,0,0,8112,8113,1,0,0,0,8113,8114,1,0,0,0,8114,8115,5,68,0,0,8115, + 8116,5,35,0,0,8116,8117,3,670,335,0,8117,8118,3,892,446,0,8118,881, + 1,0,0,0,8119,8121,7,116,0,0,8120,8122,3,938,469,0,8121,8120,1,0, + 0,0,8121,8122,1,0,0,0,8122,8125,1,0,0,0,8123,8124,5,102,0,0,8124, + 8126,3,940,470,0,8125,8123,1,0,0,0,8125,8126,1,0,0,0,8126,8127,1, + 0,0,0,8127,8128,5,7,0,0,8128,883,1,0,0,0,8129,8144,5,508,0,0,8130, + 8131,5,268,0,0,8131,8145,3,940,470,0,8132,8139,5,509,0,0,8133,8134, + 5,202,0,0,8134,8135,3,670,335,0,8135,8136,5,100,0,0,8136,8137,3, + 728,364,0,8137,8140,1,0,0,0,8138,8140,3,554,277,0,8139,8133,1,0, + 0,0,8139,8138,1,0,0,0,8140,8145,1,0,0,0,8141,8143,3,940,470,0,8142, + 8141,1,0,0,0,8142,8143,1,0,0,0,8143,8145,1,0,0,0,8144,8130,1,0,0, + 0,8144,8132,1,0,0,0,8144,8142,1,0,0,0,8145,8146,1,0,0,0,8146,8147, + 5,7,0,0,8147,885,1,0,0,0,8148,8178,5,510,0,0,8149,8151,7,117,0,0, + 8150,8149,1,0,0,0,8150,8151,1,0,0,0,8151,8164,1,0,0,0,8152,8165, + 3,836,418,0,8153,8154,5,511,0,0,8154,8165,3,816,408,0,8155,8162, + 3,816,408,0,8156,8157,5,6,0,0,8157,8159,3,670,335,0,8158,8156,1, + 0,0,0,8159,8160,1,0,0,0,8160,8158,1,0,0,0,8160,8161,1,0,0,0,8161, + 8163,1,0,0,0,8162,8158,1,0,0,0,8162,8163,1,0,0,0,8163,8165,1,0,0, + 0,8164,8152,1,0,0,0,8164,8153,1,0,0,0,8164,8155,1,0,0,0,8164,8165, + 1,0,0,0,8165,8175,1,0,0,0,8166,8167,5,100,0,0,8167,8172,3,888,444, + 0,8168,8169,5,6,0,0,8169,8171,3,888,444,0,8170,8168,1,0,0,0,8171, + 8174,1,0,0,0,8172,8170,1,0,0,0,8172,8173,1,0,0,0,8173,8176,1,0,0, + 0,8174,8172,1,0,0,0,8175,8166,1,0,0,0,8175,8176,1,0,0,0,8176,8177, + 1,0,0,0,8177,8179,5,7,0,0,8178,8150,1,0,0,0,8178,8179,1,0,0,0,8179, + 887,1,0,0,0,8180,8181,3,836,418,0,8181,8182,5,10,0,0,8182,8183,3, + 670,335,0,8183,889,1,0,0,0,8184,8185,5,518,0,0,8185,8188,3,940,470, + 0,8186,8187,5,6,0,0,8187,8189,3,940,470,0,8188,8186,1,0,0,0,8188, + 8189,1,0,0,0,8189,8190,1,0,0,0,8190,8191,5,7,0,0,8191,891,1,0,0, + 0,8192,8196,5,519,0,0,8193,8195,3,856,428,0,8194,8193,1,0,0,0,8195, + 8198,1,0,0,0,8196,8194,1,0,0,0,8196,8197,1,0,0,0,8197,8199,1,0,0, + 0,8198,8196,1,0,0,0,8199,8200,5,454,0,0,8200,8202,5,519,0,0,8201, + 8203,3,938,469,0,8202,8201,1,0,0,0,8202,8203,1,0,0,0,8203,8204,1, + 0,0,0,8204,8205,5,7,0,0,8205,893,1,0,0,0,8206,8208,3,4,2,0,8207, + 8209,3,898,449,0,8208,8207,1,0,0,0,8208,8209,1,0,0,0,8209,8210,1, + 0,0,0,8210,8211,5,7,0,0,8211,895,1,0,0,0,8212,8213,5,202,0,0,8213, + 8229,3,670,335,0,8214,8216,3,898,449,0,8215,8214,1,0,0,0,8215,8216, + 1,0,0,0,8216,8219,1,0,0,0,8217,8218,5,100,0,0,8218,8220,3,728,364, + 0,8219,8217,1,0,0,0,8219,8220,1,0,0,0,8220,8230,1,0,0,0,8221,8222, + 5,100,0,0,8222,8224,3,728,364,0,8223,8221,1,0,0,0,8223,8224,1,0, + 0,0,8224,8226,1,0,0,0,8225,8227,3,898,449,0,8226,8225,1,0,0,0,8226, + 8227,1,0,0,0,8227,8230,1,0,0,0,8228,8230,1,0,0,0,8229,8215,1,0,0, + 0,8229,8223,1,0,0,0,8229,8228,1,0,0,0,8230,8231,1,0,0,0,8231,8232, + 5,7,0,0,8232,897,1,0,0,0,8233,8235,5,71,0,0,8234,8236,5,346,0,0, + 8235,8234,1,0,0,0,8235,8236,1,0,0,0,8236,8237,1,0,0,0,8237,8238, + 3,728,364,0,8238,899,1,0,0,0,8239,8271,5,520,0,0,8240,8245,3,932, + 466,0,8241,8243,5,269,0,0,8242,8241,1,0,0,0,8242,8243,1,0,0,0,8243, + 8244,1,0,0,0,8244,8246,5,324,0,0,8245,8242,1,0,0,0,8245,8246,1,0, + 0,0,8246,8247,1,0,0,0,8247,8255,5,62,0,0,8248,8256,3,554,277,0,8249, + 8250,5,202,0,0,8250,8253,3,940,470,0,8251,8252,5,100,0,0,8252,8254, + 3,728,364,0,8253,8251,1,0,0,0,8253,8254,1,0,0,0,8254,8256,1,0,0, + 0,8255,8248,1,0,0,0,8255,8249,1,0,0,0,8256,8272,1,0,0,0,8257,8269, + 3,826,413,0,8258,8259,5,2,0,0,8259,8264,3,902,451,0,8260,8261,5, + 6,0,0,8261,8263,3,902,451,0,8262,8260,1,0,0,0,8263,8266,1,0,0,0, + 8264,8262,1,0,0,0,8264,8265,1,0,0,0,8265,8267,1,0,0,0,8266,8264, + 1,0,0,0,8267,8268,5,3,0,0,8268,8270,1,0,0,0,8269,8258,1,0,0,0,8269, + 8270,1,0,0,0,8270,8272,1,0,0,0,8271,8240,1,0,0,0,8271,8257,1,0,0, + 0,8272,8273,1,0,0,0,8273,8274,5,7,0,0,8274,901,1,0,0,0,8275,8276, + 3,826,413,0,8276,8277,5,20,0,0,8277,8279,1,0,0,0,8278,8275,1,0,0, + 0,8278,8279,1,0,0,0,8279,8280,1,0,0,0,8280,8281,3,670,335,0,8281, + 903,1,0,0,0,8282,8284,5,61,0,0,8283,8285,3,906,453,0,8284,8283,1, + 0,0,0,8284,8285,1,0,0,0,8285,8287,1,0,0,0,8286,8288,3,326,163,0, + 8287,8286,1,0,0,0,8287,8288,1,0,0,0,8288,8289,1,0,0,0,8289,8290, + 3,932,466,0,8290,8291,5,71,0,0,8291,8292,3,728,364,0,8292,8293,5, + 7,0,0,8293,905,1,0,0,0,8294,8309,5,268,0,0,8295,8309,5,293,0,0,8296, + 8309,5,207,0,0,8297,8309,5,249,0,0,8298,8300,7,51,0,0,8299,8298, + 1,0,0,0,8299,8300,1,0,0,0,8300,8301,1,0,0,0,8301,8309,3,670,335, + 0,8302,8309,5,30,0,0,8303,8306,7,118,0,0,8304,8307,3,670,335,0,8305, + 8307,5,30,0,0,8306,8304,1,0,0,0,8306,8305,1,0,0,0,8306,8307,1,0, + 0,0,8307,8309,1,0,0,0,8308,8294,1,0,0,0,8308,8295,1,0,0,0,8308,8296, + 1,0,0,0,8308,8297,1,0,0,0,8308,8299,1,0,0,0,8308,8302,1,0,0,0,8308, + 8303,1,0,0,0,8309,907,1,0,0,0,8310,8312,5,265,0,0,8311,8313,3,906, + 453,0,8312,8311,1,0,0,0,8312,8313,1,0,0,0,8313,8314,1,0,0,0,8314, + 8315,3,932,466,0,8315,8316,5,7,0,0,8316,909,1,0,0,0,8317,8319,3, + 566,283,0,8318,8317,1,0,0,0,8318,8319,1,0,0,0,8319,8320,1,0,0,0, + 8320,8321,5,525,0,0,8321,8323,5,71,0,0,8322,8324,5,81,0,0,8323,8322, + 1,0,0,0,8323,8324,1,0,0,0,8324,8325,1,0,0,0,8325,8327,3,778,389, + 0,8326,8328,5,9,0,0,8327,8326,1,0,0,0,8327,8328,1,0,0,0,8328,8333, + 1,0,0,0,8329,8331,5,36,0,0,8330,8329,1,0,0,0,8330,8331,1,0,0,0,8331, + 8332,1,0,0,0,8332,8334,3,826,413,0,8333,8330,1,0,0,0,8333,8334,1, + 0,0,0,8334,8335,1,0,0,0,8335,8336,5,100,0,0,8336,8337,3,912,456, + 0,8337,8338,5,80,0,0,8338,8340,3,670,335,0,8339,8341,3,914,457,0, + 8340,8339,1,0,0,0,8341,8342,1,0,0,0,8342,8340,1,0,0,0,8342,8343, + 1,0,0,0,8343,8345,1,0,0,0,8344,8346,3,540,270,0,8345,8344,1,0,0, + 0,8345,8346,1,0,0,0,8346,911,1,0,0,0,8347,8349,5,81,0,0,8348,8347, + 1,0,0,0,8348,8349,1,0,0,0,8349,8350,1,0,0,0,8350,8352,3,778,389, + 0,8351,8353,5,9,0,0,8352,8351,1,0,0,0,8352,8353,1,0,0,0,8353,8359, + 1,0,0,0,8354,8357,3,558,279,0,8355,8357,3,602,301,0,8356,8354,1, + 0,0,0,8356,8355,1,0,0,0,8357,8359,1,0,0,0,8358,8348,1,0,0,0,8358, + 8356,1,0,0,0,8359,8364,1,0,0,0,8360,8362,5,36,0,0,8361,8360,1,0, + 0,0,8361,8362,1,0,0,0,8362,8363,1,0,0,0,8363,8365,3,826,413,0,8364, + 8361,1,0,0,0,8364,8365,1,0,0,0,8365,913,1,0,0,0,8366,8367,5,102, + 0,0,8367,8370,5,526,0,0,8368,8369,5,33,0,0,8369,8371,3,670,335,0, + 8370,8368,1,0,0,0,8370,8371,1,0,0,0,8371,8372,1,0,0,0,8372,8377, + 5,93,0,0,8373,8378,3,918,459,0,8374,8378,5,182,0,0,8375,8376,5,57, + 0,0,8376,8378,5,270,0,0,8377,8373,1,0,0,0,8377,8374,1,0,0,0,8377, + 8375,1,0,0,0,8378,8393,1,0,0,0,8379,8380,5,102,0,0,8380,8381,5,77, + 0,0,8381,8384,5,526,0,0,8382,8383,5,33,0,0,8383,8385,3,670,335,0, + 8384,8382,1,0,0,0,8384,8385,1,0,0,0,8385,8386,1,0,0,0,8386,8390, + 5,93,0,0,8387,8391,3,916,458,0,8388,8389,5,57,0,0,8389,8391,5,270, + 0,0,8390,8387,1,0,0,0,8390,8388,1,0,0,0,8391,8393,1,0,0,0,8392,8366, + 1,0,0,0,8392,8379,1,0,0,0,8393,915,1,0,0,0,8394,8396,5,241,0,0,8395, + 8397,3,138,69,0,8396,8395,1,0,0,0,8396,8397,1,0,0,0,8397,8401,1, + 0,0,0,8398,8399,5,463,0,0,8399,8400,7,77,0,0,8400,8402,5,450,0,0, + 8401,8398,1,0,0,0,8401,8402,1,0,0,0,8402,8403,1,0,0,0,8403,8404, + 3,920,460,0,8404,917,1,0,0,0,8405,8406,5,369,0,0,8406,8424,5,333, + 0,0,8407,8408,3,806,403,0,8408,8409,5,10,0,0,8409,8410,3,922,461, + 0,8410,8425,1,0,0,0,8411,8412,3,138,69,0,8412,8413,5,10,0,0,8413, + 8414,5,2,0,0,8414,8419,3,922,461,0,8415,8416,5,6,0,0,8416,8418,3, + 922,461,0,8417,8415,1,0,0,0,8418,8421,1,0,0,0,8419,8417,1,0,0,0, + 8419,8420,1,0,0,0,8420,8422,1,0,0,0,8421,8419,1,0,0,0,8422,8423, + 5,3,0,0,8423,8425,1,0,0,0,8424,8407,1,0,0,0,8424,8411,1,0,0,0,8425, + 8426,1,0,0,0,8426,8424,1,0,0,0,8426,8427,1,0,0,0,8427,919,1,0,0, + 0,8428,8429,5,422,0,0,8429,8430,5,2,0,0,8430,8435,3,922,461,0,8431, + 8432,5,6,0,0,8432,8434,3,922,461,0,8433,8431,1,0,0,0,8434,8437,1, + 0,0,0,8435,8433,1,0,0,0,8435,8436,1,0,0,0,8436,8438,1,0,0,0,8437, + 8435,1,0,0,0,8438,8439,5,3,0,0,8439,8443,1,0,0,0,8440,8441,5,53, + 0,0,8441,8443,5,422,0,0,8442,8428,1,0,0,0,8442,8440,1,0,0,0,8443, + 921,1,0,0,0,8444,8447,3,582,291,0,8445,8447,5,53,0,0,8446,8444,1, + 0,0,0,8446,8445,1,0,0,0,8447,923,1,0,0,0,8448,8449,5,157,0,0,8449, + 8450,3,932,466,0,8450,8451,5,7,0,0,8451,925,1,0,0,0,8452,8453,5, + 78,0,0,8453,8454,5,7,0,0,8454,927,1,0,0,0,8455,8461,7,68,0,0,8456, + 8458,5,33,0,0,8457,8459,5,269,0,0,8458,8457,1,0,0,0,8458,8459,1, + 0,0,0,8459,8460,1,0,0,0,8460,8462,5,153,0,0,8461,8456,1,0,0,0,8461, + 8462,1,0,0,0,8462,8463,1,0,0,0,8463,8464,5,7,0,0,8464,929,1,0,0, + 0,8465,8466,5,333,0,0,8466,8467,3,310,155,0,8467,8468,5,94,0,0,8468, + 8469,5,53,0,0,8469,8470,5,7,0,0,8470,8478,1,0,0,0,8471,8474,5,313, + 0,0,8472,8475,3,310,155,0,8473,8475,5,30,0,0,8474,8472,1,0,0,0,8474, + 8473,1,0,0,0,8475,8476,1,0,0,0,8476,8478,5,7,0,0,8477,8465,1,0,0, + 0,8477,8471,1,0,0,0,8478,931,1,0,0,0,8479,8482,3,826,413,0,8480, + 8482,5,28,0,0,8481,8479,1,0,0,0,8481,8480,1,0,0,0,8482,933,1,0,0, + 0,8483,8500,5,517,0,0,8484,8485,5,102,0,0,8485,8490,3,936,468,0, + 8486,8487,5,82,0,0,8487,8489,3,936,468,0,8488,8486,1,0,0,0,8489, + 8492,1,0,0,0,8490,8488,1,0,0,0,8490,8491,1,0,0,0,8491,8493,1,0,0, + 0,8492,8490,1,0,0,0,8493,8497,5,93,0,0,8494,8496,3,856,428,0,8495, + 8494,1,0,0,0,8496,8499,1,0,0,0,8497,8495,1,0,0,0,8497,8498,1,0,0, + 0,8498,8501,1,0,0,0,8499,8497,1,0,0,0,8500,8484,1,0,0,0,8501,8502, + 1,0,0,0,8502,8500,1,0,0,0,8502,8503,1,0,0,0,8503,935,1,0,0,0,8504, + 8508,3,938,469,0,8505,8506,5,511,0,0,8506,8508,3,816,408,0,8507, + 8504,1,0,0,0,8507,8505,1,0,0,0,8508,937,1,0,0,0,8509,8512,3,826, + 413,0,8510,8512,3,838,419,0,8511,8509,1,0,0,0,8511,8510,1,0,0,0, + 8512,939,1,0,0,0,8513,8515,3,758,379,0,8514,8516,3,574,287,0,8515, + 8514,1,0,0,0,8515,8516,1,0,0,0,8516,8518,1,0,0,0,8517,8519,3,604, + 302,0,8518,8517,1,0,0,0,8518,8519,1,0,0,0,8519,8521,1,0,0,0,8520, + 8522,3,634,317,0,8521,8520,1,0,0,0,8521,8522,1,0,0,0,8522,8524,1, + 0,0,0,8523,8525,3,594,297,0,8524,8523,1,0,0,0,8524,8525,1,0,0,0, + 8525,8527,1,0,0,0,8526,8528,3,700,350,0,8527,8526,1,0,0,0,8527,8528, + 1,0,0,0,8528,8530,1,0,0,0,8529,8531,3,698,349,0,8530,8529,1,0,0, + 0,8530,8531,1,0,0,0,8531,941,1,0,0,0,1193,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,7545,7548,7553,7556,7560,7569,7576,7586,7594, + 7602,7610,7627,7634,7642,7659,7665,7680,7688,7694,7699,7707,7712, + 7715,7724,7731,7736,7740,7745,7751,7756,7761,7769,7824,7831,7837, + 7839,7841,7843,7849,7853,7857,7868,7871,7875,7879,7883,7886,7889, + 7892,7901,7906,7910,7943,7953,7957,7963,7968,7977,7985,7996,8004, + 8013,8022,8027,8031,8041,8046,8054,8059,8062,8069,8075,8083,8091, + 8094,8101,8103,8106,8112,8121,8125,8139,8142,8144,8150,8160,8162, + 8164,8172,8175,8178,8188,8196,8202,8208,8215,8219,8223,8226,8229, + 8235,8242,8245,8253,8255,8264,8269,8271,8278,8284,8287,8299,8306, + 8308,8312,8318,8323,8327,8330,8333,8342,8345,8348,8352,8356,8358, + 8361,8364,8370,8377,8384,8390,8392,8396,8401,8419,8424,8426,8435, + 8442,8446,8458,8461,8474,8477,8481,8490,8497,8502,8507,8511,8515, + 8518,8521,8524,8527,8530 ]; private static __ATN: antlr.ATN; @@ -84594,28 +84656,69 @@ export class ColumnNamePathContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } + public override get ruleIndex(): number { + return PostgreSqlParser.RULE_columnNamePath; + } + public override copyFrom(ctx: ColumnNamePathContext): void { + super.copyFrom(ctx); + } +} +export class ColumnNamePath_defaultContext extends ColumnNamePathContext { + public constructor(ctx: ColumnNamePathContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } public colId(): ColIdContext { return this.getRuleContext(0, ColIdContext)!; } public optIndirection(): OptIndirectionContext { return this.getRuleContext(0, OptIndirectionContext)!; } - public override get ruleIndex(): number { - return PostgreSqlParser.RULE_columnNamePath; + public override enterRule(listener: PostgreSqlParserListener): void { + if(listener.enterColumnNamePath_default) { + listener.enterColumnNamePath_default(this); + } + } + public override exitRule(listener: PostgreSqlParserListener): void { + if(listener.exitColumnNamePath_default) { + listener.exitColumnNamePath_default(this); + } + } + public override accept(visitor: PostgreSqlParserVisitor): Result | null { + if (visitor.visitColumnNamePath_default) { + return visitor.visitColumnNamePath_default(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class ColumnNamePath_dot_emptyContext extends ColumnNamePathContext { + public constructor(ctx: ColumnNamePathContext) { + 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.enterColumnNamePath) { - listener.enterColumnNamePath(this); + if(listener.enterColumnNamePath_dot_empty) { + listener.enterColumnNamePath_dot_empty(this); } } public override exitRule(listener: PostgreSqlParserListener): void { - if(listener.exitColumnNamePath) { - listener.exitColumnNamePath(this); + if(listener.exitColumnNamePath_dot_empty) { + listener.exitColumnNamePath_dot_empty(this); } } public override accept(visitor: PostgreSqlParserVisitor): Result | null { - if (visitor.visitColumnNamePath) { - return visitor.visitColumnNamePath(this); + if (visitor.visitColumnNamePath_dot_empty) { + return visitor.visitColumnNamePath_dot_empty(this); } else { return visitor.visitChildren(this); } @@ -89236,8 +89339,8 @@ export class SqlExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public targetList(): TargetListContext | null { - return this.getRuleContext(0, TargetListContext); + public targetList(): TargetListContext { + return this.getRuleContext(0, TargetListContext)!; } public intoClause(): IntoClauseContext | null { return this.getRuleContext(0, IntoClauseContext); diff --git a/src/lib/postgresql/PostgreSqlParserListener.ts b/src/lib/postgresql/PostgreSqlParserListener.ts index 3d665090..11d3d2f9 100644 --- a/src/lib/postgresql/PostgreSqlParserListener.ts +++ b/src/lib/postgresql/PostgreSqlParserListener.ts @@ -429,7 +429,8 @@ import { ProcedureNameContext } from "./PostgreSqlParser.js"; import { ProcedureNameCreateContext } from "./PostgreSqlParser.js"; import { EmptyColumnContext } from "./PostgreSqlParser.js"; import { ColumnNameContext } from "./PostgreSqlParser.js"; -import { ColumnNamePathContext } from "./PostgreSqlParser.js"; +import { ColumnNamePath_defaultContext } from "./PostgreSqlParser.js"; +import { ColumnNamePath_dot_emptyContext } from "./PostgreSqlParser.js"; import { ColumnNameCreateContext } from "./PostgreSqlParser.js"; import { FunctionNameCreateContext } from "./PostgreSqlParser.js"; import { FunctionNameContext } from "./PostgreSqlParser.js"; @@ -4772,15 +4773,29 @@ export class PostgreSqlParserListener implements ParseTreeListener { */ exitColumnName?: (ctx: ColumnNameContext) => void; /** - * Enter a parse tree produced by `PostgreSqlParser.columnNamePath`. + * Enter a parse tree produced by the `columnNamePath_default` + * labeled alternative in `PostgreSqlParser.columnNamePath`. * @param ctx the parse tree */ - enterColumnNamePath?: (ctx: ColumnNamePathContext) => void; + enterColumnNamePath_default?: (ctx: ColumnNamePath_defaultContext) => void; /** - * Exit a parse tree produced by `PostgreSqlParser.columnNamePath`. + * Exit a parse tree produced by the `columnNamePath_default` + * labeled alternative in `PostgreSqlParser.columnNamePath`. * @param ctx the parse tree */ - exitColumnNamePath?: (ctx: ColumnNamePathContext) => void; + exitColumnNamePath_default?: (ctx: ColumnNamePath_defaultContext) => void; + /** + * Enter a parse tree produced by the `columnNamePath_dot_empty` + * labeled alternative in `PostgreSqlParser.columnNamePath`. + * @param ctx the parse tree + */ + enterColumnNamePath_dot_empty?: (ctx: ColumnNamePath_dot_emptyContext) => void; + /** + * Exit a parse tree produced by the `columnNamePath_dot_empty` + * labeled alternative in `PostgreSqlParser.columnNamePath`. + * @param ctx the parse tree + */ + exitColumnNamePath_dot_empty?: (ctx: ColumnNamePath_dot_emptyContext) => void; /** * Enter a parse tree produced by `PostgreSqlParser.columnNameCreate`. * @param ctx the parse tree diff --git a/src/lib/postgresql/PostgreSqlParserVisitor.ts b/src/lib/postgresql/PostgreSqlParserVisitor.ts index 88cfc12d..a478243d 100644 --- a/src/lib/postgresql/PostgreSqlParserVisitor.ts +++ b/src/lib/postgresql/PostgreSqlParserVisitor.ts @@ -429,7 +429,8 @@ import { ProcedureNameContext } from "./PostgreSqlParser.js"; import { ProcedureNameCreateContext } from "./PostgreSqlParser.js"; import { EmptyColumnContext } from "./PostgreSqlParser.js"; import { ColumnNameContext } from "./PostgreSqlParser.js"; -import { ColumnNamePathContext } from "./PostgreSqlParser.js"; +import { ColumnNamePath_defaultContext } from "./PostgreSqlParser.js"; +import { ColumnNamePath_dot_emptyContext } from "./PostgreSqlParser.js"; import { ColumnNameCreateContext } from "./PostgreSqlParser.js"; import { FunctionNameCreateContext } from "./PostgreSqlParser.js"; import { FunctionNameContext } from "./PostgreSqlParser.js"; @@ -3062,11 +3063,19 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; /** - * Visit a parse tree produced by `PostgreSqlParser.columnNamePath`. + * Visit a parse tree produced by the `columnNamePath_default` + * labeled alternative in `PostgreSqlParser.columnNamePath`. * @param ctx the parse tree * @return the visitor result */ - visitColumnNamePath?: (ctx: ColumnNamePathContext) => Result; + visitColumnNamePath_default?: (ctx: ColumnNamePath_defaultContext) => Result; + /** + * Visit a parse tree produced by the `columnNamePath_dot_empty` + * labeled alternative in `PostgreSqlParser.columnNamePath`. + * @param ctx the parse tree + * @return the visitor result + */ + visitColumnNamePath_dot_empty?: (ctx: ColumnNamePath_dot_emptyContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.columnNameCreate`. * @param ctx the parse tree diff --git a/src/lib/trino/TrinoSql.interp b/src/lib/trino/TrinoSql.interp index 1895b664..6a846227 100644 --- a/src/lib/trino/TrinoSql.interp +++ b/src/lib/trino/TrinoSql.interp @@ -341,6 +341,7 @@ null null null null +null token symbolic names: null @@ -685,6 +686,7 @@ BRACKETED_COMMENT WHITE_SPACE UNRECOGNIZED DELIMITER +DOT rule names: program @@ -734,6 +736,8 @@ selectExpressionColumnName relation joinType joinCriteria +joinColumnEquality +joinColumnReference sampledRelation sampleType trimsSpecification @@ -835,6 +839,7 @@ catalogNameCreate functionName functionNameCreate columnRef +emptyColumn columnName columnNameCreate qualifiedName @@ -851,4 +856,4 @@ nonReserved atn: -[4, 1, 341, 3703, 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, 1, 0, 5, 0, 324, 8, 0, 10, 0, 12, 0, 327, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 335, 8, 2, 1, 3, 1, 3, 3, 3, 339, 8, 3, 1, 4, 1, 4, 3, 4, 343, 8, 4, 1, 5, 1, 5, 3, 5, 347, 8, 5, 1, 6, 1, 6, 3, 6, 351, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 364, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 371, 8, 8, 1, 8, 1, 8, 3, 8, 375, 8, 8, 1, 8, 1, 8, 3, 8, 379, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 385, 8, 8, 1, 8, 1, 8, 3, 8, 389, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 396, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 401, 8, 8, 1, 8, 1, 8, 3, 8, 405, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 411, 8, 8, 1, 8, 1, 8, 3, 8, 415, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 434, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 440, 8, 8, 1, 8, 1, 8, 3, 8, 444, 8, 8, 1, 8, 1, 8, 3, 8, 448, 8, 8, 1, 8, 1, 8, 3, 8, 452, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 460, 8, 8, 1, 8, 1, 8, 3, 8, 464, 8, 8, 1, 8, 3, 8, 467, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 472, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 478, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 485, 8, 8, 10, 8, 12, 8, 488, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 493, 8, 8, 1, 8, 1, 8, 3, 8, 497, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 503, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 510, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 518, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 530, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 539, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 548, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 554, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 565, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 573, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 581, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 588, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 598, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 605, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 613, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 628, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 661, 8, 8, 10, 8, 12, 8, 664, 9, 8, 3, 8, 666, 8, 8, 1, 8, 3, 8, 669, 8, 8, 1, 8, 3, 8, 672, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 678, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 683, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 690, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 696, 8, 8, 1, 8, 1, 8, 3, 8, 700, 8, 8, 1, 8, 1, 8, 3, 8, 704, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 712, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 718, 8, 8, 1, 8, 1, 8, 3, 8, 722, 8, 8, 1, 8, 1, 8, 3, 8, 726, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 740, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 748, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 767, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 790, 8, 8, 10, 8, 12, 8, 793, 9, 8, 3, 8, 795, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 802, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 809, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 818, 8, 8, 1, 8, 1, 8, 3, 8, 822, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 829, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 835, 8, 8, 10, 8, 12, 8, 838, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 844, 8, 8, 10, 8, 12, 8, 847, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 852, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 857, 8, 8, 1, 8, 1, 8, 3, 8, 861, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 867, 8, 8, 10, 8, 12, 8, 870, 9, 8, 1, 8, 1, 8, 3, 8, 874, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 883, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 889, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 894, 8, 8, 10, 8, 12, 8, 897, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 903, 8, 8, 10, 8, 12, 8, 906, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 911, 8, 8, 1, 8, 1, 8, 3, 8, 915, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 921, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 926, 8, 8, 10, 8, 12, 8, 929, 9, 8, 1, 8, 1, 8, 3, 8, 933, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 944, 8, 8, 10, 8, 12, 8, 947, 9, 8, 1, 8, 1, 8, 3, 8, 951, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 963, 8, 8, 1, 8, 1, 8, 3, 8, 967, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 973, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 980, 8, 8, 10, 8, 12, 8, 983, 9, 8, 1, 8, 1, 8, 3, 8, 987, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 993, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1021, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1027, 8, 8, 3, 8, 1029, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1035, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1041, 8, 8, 3, 8, 1043, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1051, 8, 8, 3, 8, 1053, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1063, 8, 8, 3, 8, 1065, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1080, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1085, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1092, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1102, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1108, 8, 8, 3, 8, 1110, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1118, 8, 8, 3, 8, 1120, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1143, 8, 8, 10, 8, 12, 8, 1146, 9, 8, 3, 8, 1148, 8, 8, 1, 8, 1, 8, 3, 8, 1152, 8, 8, 1, 8, 1, 8, 3, 8, 1156, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1172, 8, 8, 10, 8, 12, 8, 1175, 9, 8, 3, 8, 1177, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1186, 8, 8, 10, 8, 12, 8, 1189, 9, 8, 3, 8, 1191, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1207, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1215, 8, 8, 10, 8, 12, 8, 1218, 9, 8, 1, 8, 3, 8, 1221, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1227, 8, 8, 1, 8, 3, 8, 1230, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1237, 8, 8, 11, 8, 12, 8, 1238, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1251, 8, 8, 1, 9, 3, 9, 1254, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 5, 10, 1262, 8, 10, 10, 10, 12, 10, 1265, 9, 10, 1, 11, 3, 11, 1268, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 3, 12, 1274, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 1279, 8, 12, 10, 12, 12, 12, 1282, 9, 12, 1, 13, 1, 13, 3, 13, 1286, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1292, 8, 14, 1, 14, 1, 14, 3, 14, 1296, 8, 14, 1, 14, 1, 14, 3, 14, 1300, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1306, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 1315, 8, 17, 10, 17, 12, 17, 1318, 9, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1326, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1334, 8, 20, 10, 20, 12, 20, 1337, 9, 20, 3, 20, 1339, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1344, 8, 20, 3, 20, 1346, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1353, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1359, 8, 20, 3, 20, 1361, 8, 20, 1, 21, 1, 21, 3, 21, 1365, 8, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1375, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1381, 8, 23, 1, 23, 5, 23, 1384, 8, 23, 10, 23, 12, 23, 1387, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1396, 8, 24, 10, 24, 12, 24, 1399, 9, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1405, 8, 24, 1, 25, 1, 25, 3, 25, 1409, 8, 25, 1, 25, 3, 25, 1412, 8, 25, 1, 25, 1, 25, 3, 25, 1416, 8, 25, 1, 26, 1, 26, 3, 26, 1420, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1427, 8, 26, 10, 26, 12, 26, 1430, 9, 26, 3, 26, 1432, 8, 26, 1, 26, 3, 26, 1435, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1440, 8, 26, 1, 26, 3, 26, 1443, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1449, 8, 26, 10, 26, 12, 26, 1452, 9, 26, 3, 26, 1454, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 5, 29, 1465, 8, 29, 10, 29, 12, 29, 1468, 9, 29, 1, 30, 3, 30, 1471, 8, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1476, 8, 30, 10, 30, 12, 30, 1479, 9, 30, 1, 31, 1, 31, 1, 31, 5, 31, 1484, 8, 31, 10, 31, 12, 31, 1487, 9, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1495, 8, 32, 10, 32, 12, 32, 1498, 9, 32, 3, 32, 1500, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1508, 8, 32, 10, 32, 12, 32, 1511, 9, 32, 3, 32, 1513, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1522, 8, 32, 10, 32, 12, 32, 1525, 9, 32, 1, 32, 1, 32, 3, 32, 1529, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1535, 8, 33, 10, 33, 12, 33, 1538, 9, 33, 3, 33, 1540, 8, 33, 1, 33, 1, 33, 3, 33, 1544, 8, 33, 1, 34, 1, 34, 3, 34, 1548, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 3, 36, 1557, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1562, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1569, 8, 36, 10, 36, 12, 36, 1572, 9, 36, 3, 36, 1574, 8, 36, 1, 36, 3, 36, 1577, 8, 36, 1, 37, 1, 37, 3, 37, 1581, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 39, 1, 39, 3, 39, 1592, 8, 39, 1, 39, 3, 39, 1595, 8, 39, 1, 39, 3, 39, 1598, 8, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1603, 8, 39, 1, 39, 3, 39, 1606, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1635, 8, 44, 5, 44, 1637, 8, 44, 10, 44, 12, 44, 1640, 9, 44, 1, 45, 3, 45, 1643, 8, 45, 1, 45, 1, 45, 3, 45, 1647, 8, 45, 1, 45, 1, 45, 3, 45, 1651, 8, 45, 1, 45, 1, 45, 3, 45, 1655, 8, 45, 3, 45, 1657, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 1666, 8, 46, 10, 46, 12, 46, 1669, 9, 46, 1, 46, 1, 46, 3, 46, 1673, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1682, 8, 47, 1, 48, 1, 48, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 3, 50, 1691, 8, 50, 1, 50, 3, 50, 1694, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1700, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1708, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1715, 8, 52, 10, 52, 12, 52, 1718, 9, 52, 3, 52, 1720, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1726, 8, 52, 10, 52, 12, 52, 1729, 9, 52, 3, 52, 1731, 8, 52, 1, 52, 3, 52, 1734, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1739, 8, 52, 1, 52, 3, 52, 1742, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1752, 8, 52, 10, 52, 12, 52, 1755, 9, 52, 3, 52, 1757, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 5, 52, 1763, 8, 52, 10, 52, 12, 52, 1766, 9, 52, 1, 52, 1, 52, 3, 52, 1770, 8, 52, 1, 52, 1, 52, 3, 52, 1774, 8, 52, 3, 52, 1776, 8, 52, 3, 52, 1778, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1793, 8, 54, 3, 54, 1795, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1806, 8, 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, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1827, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1835, 8, 57, 10, 57, 12, 57, 1838, 9, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 3, 59, 1848, 8, 59, 1, 59, 1, 59, 3, 59, 1852, 8, 59, 3, 59, 1854, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1860, 8, 60, 10, 60, 12, 60, 1863, 9, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 1871, 8, 61, 10, 61, 12, 61, 1874, 9, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 1882, 8, 62, 10, 62, 12, 62, 1885, 9, 62, 1, 62, 1, 62, 1, 63, 1, 63, 3, 63, 1891, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1898, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 1909, 8, 64, 10, 64, 12, 64, 1912, 9, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1917, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 1937, 8, 64, 10, 64, 12, 64, 1940, 9, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1954, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1959, 8, 64, 1, 64, 1, 64, 3, 64, 1963, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1973, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1979, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1985, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1993, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1998, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2005, 8, 65, 3, 65, 2007, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2013, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2019, 8, 65, 1, 65, 1, 65, 3, 65, 2023, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2028, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2035, 8, 65, 10, 65, 12, 65, 2038, 9, 65, 1, 65, 1, 65, 3, 65, 2042, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2054, 8, 66, 10, 66, 12, 66, 2057, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 2064, 8, 66, 10, 66, 12, 66, 2067, 9, 66, 3, 66, 2069, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2078, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 2083, 8, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2088, 8, 69, 3, 69, 2090, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2097, 8, 70, 10, 70, 12, 70, 2100, 9, 70, 3, 70, 2102, 8, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2108, 8, 70, 10, 70, 12, 70, 2111, 9, 70, 3, 70, 2113, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 3, 71, 2120, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2125, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2132, 8, 72, 1, 72, 1, 72, 3, 72, 2136, 8, 72, 3, 72, 2138, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2146, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2154, 8, 72, 10, 72, 12, 72, 2157, 9, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2162, 8, 72, 3, 72, 2164, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2171, 8, 73, 1, 73, 1, 73, 3, 73, 2175, 8, 73, 3, 73, 2177, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2184, 8, 73, 1, 73, 1, 73, 3, 73, 2188, 8, 73, 3, 73, 2190, 8, 73, 3, 73, 2192, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2199, 8, 74, 10, 74, 12, 74, 2202, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2212, 8, 74, 1, 75, 1, 75, 3, 75, 2216, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2224, 8, 76, 10, 76, 12, 76, 2227, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 3, 78, 2236, 8, 78, 1, 78, 1, 78, 3, 78, 2240, 8, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2248, 8, 78, 10, 78, 12, 78, 2251, 9, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2263, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2271, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 2278, 8, 79, 10, 79, 12, 79, 2281, 9, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2286, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2294, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2300, 8, 79, 1, 79, 1, 79, 3, 79, 2304, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2309, 8, 79, 1, 79, 1, 79, 1, 79, 3, 79, 2314, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2320, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2334, 8, 80, 10, 80, 12, 80, 2337, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 4, 81, 2364, 8, 81, 11, 81, 12, 81, 2365, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2375, 8, 81, 10, 81, 12, 81, 2378, 9, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2385, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2390, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2395, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2406, 8, 81, 10, 81, 12, 81, 2409, 9, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2414, 8, 81, 1, 81, 3, 81, 2417, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2424, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2429, 8, 81, 1, 81, 3, 81, 2432, 8, 81, 1, 81, 3, 81, 2435, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2440, 8, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2445, 8, 81, 10, 81, 12, 81, 2448, 9, 81, 3, 81, 2450, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2457, 8, 81, 10, 81, 12, 81, 2460, 9, 81, 3, 81, 2462, 8, 81, 1, 81, 1, 81, 3, 81, 2466, 8, 81, 1, 81, 3, 81, 2469, 8, 81, 1, 81, 3, 81, 2472, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2485, 8, 81, 10, 81, 12, 81, 2488, 9, 81, 3, 81, 2490, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 4, 81, 2507, 8, 81, 11, 81, 12, 81, 2508, 1, 81, 1, 81, 3, 81, 2513, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 4, 81, 2519, 8, 81, 11, 81, 12, 81, 2520, 1, 81, 1, 81, 3, 81, 2525, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2548, 8, 81, 10, 81, 12, 81, 2551, 9, 81, 3, 81, 2553, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2562, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2568, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2574, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2580, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2589, 8, 81, 1, 81, 3, 81, 2592, 8, 81, 1, 81, 3, 81, 2595, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2614, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2623, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2639, 8, 81, 10, 81, 12, 81, 2642, 9, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2655, 8, 81, 10, 81, 12, 81, 2658, 9, 81, 3, 81, 2660, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2670, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2679, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2685, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2691, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2702, 8, 81, 3, 81, 2704, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2709, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2716, 8, 81, 3, 81, 2718, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2724, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2730, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2739, 8, 81, 10, 81, 12, 81, 2742, 9, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2750, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2755, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2760, 8, 81, 3, 81, 2762, 8, 81, 3, 81, 2764, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2770, 8, 81, 3, 81, 2772, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2780, 8, 81, 10, 81, 12, 81, 2783, 9, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2791, 8, 81, 3, 81, 2793, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2799, 8, 81, 3, 81, 2801, 8, 81, 1, 81, 3, 81, 2804, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2814, 8, 81, 10, 81, 12, 81, 2817, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 2824, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2830, 8, 82, 10, 82, 12, 82, 2833, 9, 82, 3, 82, 2835, 8, 82, 1, 83, 1, 83, 1, 83, 3, 83, 2840, 8, 83, 1, 84, 1, 84, 1, 84, 3, 84, 2845, 8, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2857, 8, 87, 1, 88, 1, 88, 3, 88, 2861, 8, 88, 1, 88, 1, 88, 3, 88, 2865, 8, 88, 1, 88, 3, 88, 2868, 8, 88, 3, 88, 2870, 8, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 2878, 8, 89, 1, 90, 3, 90, 2881, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2891, 8, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2899, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2905, 8, 93, 3, 93, 2907, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 2915, 8, 94, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 3, 98, 2925, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2931, 8, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 2943, 8, 101, 10, 101, 12, 101, 2946, 9, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2954, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2961, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2966, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2973, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2978, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 2999, 8, 101, 10, 101, 12, 101, 3002, 9, 101, 1, 101, 1, 101, 3, 101, 3006, 8, 101, 3, 101, 3008, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3015, 8, 101, 5, 101, 3017, 8, 101, 10, 101, 12, 101, 3020, 9, 101, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3026, 8, 102, 1, 103, 1, 103, 3, 103, 3030, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3046, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 3059, 8, 106, 10, 106, 12, 106, 3062, 9, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3068, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3077, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 3085, 8, 106, 10, 106, 12, 106, 3088, 9, 106, 1, 106, 1, 106, 3, 106, 3092, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 5, 106, 3099, 8, 106, 10, 106, 12, 106, 3102, 9, 106, 1, 106, 1, 106, 3, 106, 3106, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3114, 8, 107, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 3120, 8, 108, 10, 108, 12, 108, 3123, 9, 108, 3, 108, 3125, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3131, 8, 108, 1, 108, 3, 108, 3134, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3141, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 3147, 8, 108, 10, 108, 12, 108, 3150, 9, 108, 3, 108, 3152, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 3158, 8, 108, 10, 108, 12, 108, 3161, 9, 108, 3, 108, 3163, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3189, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3200, 8, 110, 1, 111, 1, 111, 1, 111, 3, 111, 3205, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 5, 111, 3212, 8, 111, 10, 111, 12, 111, 3215, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 3225, 8, 112, 10, 112, 12, 112, 3228, 9, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 3242, 8, 112, 1, 113, 1, 113, 3, 113, 3246, 8, 113, 1, 113, 1, 113, 3, 113, 3250, 8, 113, 1, 113, 1, 113, 3, 113, 3254, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 3260, 8, 113, 1, 113, 1, 113, 3, 113, 3264, 8, 113, 1, 113, 1, 113, 3, 113, 3268, 8, 113, 1, 113, 1, 113, 3, 113, 3272, 8, 113, 3, 113, 3274, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3284, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3291, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3300, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3307, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3314, 8, 119, 1, 120, 1, 120, 1, 120, 5, 120, 3319, 8, 120, 10, 120, 12, 120, 3322, 9, 120, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 3328, 8, 121, 10, 121, 12, 121, 3331, 9, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 5, 122, 3340, 8, 122, 10, 122, 12, 122, 3343, 9, 122, 3, 122, 3345, 8, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 3354, 8, 123, 10, 123, 12, 123, 3357, 9, 123, 3, 123, 3359, 8, 123, 1, 123, 1, 123, 1, 124, 3, 124, 3364, 8, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 3, 126, 3374, 8, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3390, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 4, 127, 3402, 8, 127, 11, 127, 12, 127, 3403, 1, 127, 3, 127, 3407, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 4, 127, 3414, 8, 127, 11, 127, 12, 127, 3415, 1, 127, 3, 127, 3419, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 3429, 8, 127, 10, 127, 12, 127, 3432, 9, 127, 1, 127, 3, 127, 3435, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 3448, 8, 127, 10, 127, 12, 127, 3451, 9, 127, 1, 127, 3, 127, 3454, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 3460, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 3470, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 3482, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 3491, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 3510, 8, 131, 10, 131, 12, 131, 3513, 9, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3518, 8, 131, 1, 132, 1, 132, 1, 132, 4, 132, 3523, 8, 132, 11, 132, 12, 132, 3524, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3533, 8, 133, 1, 134, 1, 134, 1, 134, 3, 134, 3538, 8, 134, 1, 135, 3, 135, 3541, 8, 135, 1, 135, 1, 135, 1, 136, 1, 136, 3, 136, 3547, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 3560, 8, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3573, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3586, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 3599, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3606, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3613, 8, 142, 1, 143, 1, 143, 1, 144, 1, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 3, 147, 3625, 8, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 5, 150, 3634, 8, 150, 10, 150, 12, 150, 3637, 9, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 3, 153, 3650, 8, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 3657, 8, 154, 1, 155, 1, 155, 1, 155, 5, 155, 3662, 8, 155, 10, 155, 12, 155, 3665, 9, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 3674, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 3681, 8, 157, 1, 158, 3, 158, 3684, 8, 158, 1, 158, 1, 158, 3, 158, 3688, 8, 158, 1, 158, 1, 158, 3, 158, 3692, 8, 158, 1, 158, 3, 158, 3695, 8, 158, 1, 159, 1, 159, 3, 159, 3699, 8, 159, 1, 160, 1, 160, 1, 160, 0, 7, 46, 88, 156, 160, 162, 202, 222, 161, 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, 0, 36, 2, 0, 39, 39, 230, 230, 2, 0, 73, 73, 132, 132, 2, 0, 106, 106, 123, 123, 2, 0, 93, 93, 124, 124, 1, 0, 240, 241, 2, 0, 102, 102, 175, 175, 2, 0, 325, 325, 330, 330, 2, 0, 92, 92, 282, 282, 2, 0, 29, 29, 76, 76, 2, 0, 102, 102, 149, 149, 2, 0, 22, 22, 80, 80, 2, 0, 33, 33, 260, 260, 3, 0, 35, 35, 151, 151, 271, 271, 2, 0, 125, 125, 248, 248, 2, 0, 86, 86, 90, 90, 2, 0, 145, 145, 190, 190, 2, 0, 126, 126, 198, 198, 2, 0, 55, 55, 282, 282, 1, 0, 319, 320, 1, 0, 321, 323, 1, 0, 292, 294, 4, 0, 90, 90, 98, 98, 274, 274, 284, 284, 2, 0, 50, 50, 281, 281, 2, 0, 101, 101, 242, 242, 1, 0, 313, 318, 3, 0, 22, 22, 26, 26, 255, 255, 2, 0, 98, 98, 274, 274, 5, 0, 68, 68, 119, 119, 171, 172, 246, 246, 311, 311, 1, 0, 176, 179, 2, 0, 305, 305, 307, 307, 2, 0, 103, 103, 213, 213, 3, 0, 114, 114, 138, 138, 264, 264, 4, 0, 81, 81, 133, 133, 161, 161, 295, 295, 2, 0, 193, 193, 310, 310, 2, 0, 269, 269, 299, 299, 54, 0, 18, 22, 24, 24, 26, 27, 29, 33, 35, 35, 37, 39, 42, 50, 52, 53, 57, 57, 66, 68, 70, 73, 75, 76, 78, 79, 81, 83, 86, 88, 90, 90, 93, 93, 96, 96, 99, 103, 105, 105, 108, 114, 117, 117, 119, 122, 124, 125, 127, 127, 130, 130, 132, 133, 135, 136, 138, 138, 145, 152, 154, 154, 156, 156, 158, 158, 161, 172, 174, 181, 185, 190, 192, 194, 197, 197, 199, 214, 216, 221, 223, 234, 236, 238, 240, 248, 250, 260, 262, 265, 267, 272, 275, 277, 279, 281, 283, 285, 287, 290, 292, 296, 298, 300, 303, 304, 306, 312, 4244, 0, 325, 1, 0, 0, 0, 2, 330, 1, 0, 0, 0, 4, 332, 1, 0, 0, 0, 6, 336, 1, 0, 0, 0, 8, 340, 1, 0, 0, 0, 10, 344, 1, 0, 0, 0, 12, 348, 1, 0, 0, 0, 14, 352, 1, 0, 0, 0, 16, 1250, 1, 0, 0, 0, 18, 1253, 1, 0, 0, 0, 20, 1257, 1, 0, 0, 0, 22, 1267, 1, 0, 0, 0, 24, 1271, 1, 0, 0, 0, 26, 1285, 1, 0, 0, 0, 28, 1287, 1, 0, 0, 0, 30, 1301, 1, 0, 0, 0, 32, 1307, 1, 0, 0, 0, 34, 1311, 1, 0, 0, 0, 36, 1319, 1, 0, 0, 0, 38, 1325, 1, 0, 0, 0, 40, 1327, 1, 0, 0, 0, 42, 1364, 1, 0, 0, 0, 44, 1366, 1, 0, 0, 0, 46, 1368, 1, 0, 0, 0, 48, 1404, 1, 0, 0, 0, 50, 1408, 1, 0, 0, 0, 52, 1417, 1, 0, 0, 0, 54, 1455, 1, 0, 0, 0, 56, 1458, 1, 0, 0, 0, 58, 1461, 1, 0, 0, 0, 60, 1470, 1, 0, 0, 0, 62, 1480, 1, 0, 0, 0, 64, 1528, 1, 0, 0, 0, 66, 1543, 1, 0, 0, 0, 68, 1547, 1, 0, 0, 0, 70, 1549, 1, 0, 0, 0, 72, 1556, 1, 0, 0, 0, 74, 1578, 1, 0, 0, 0, 76, 1587, 1, 0, 0, 0, 78, 1605, 1, 0, 0, 0, 80, 1607, 1, 0, 0, 0, 82, 1609, 1, 0, 0, 0, 84, 1613, 1, 0, 0, 0, 86, 1615, 1, 0, 0, 0, 88, 1617, 1, 0, 0, 0, 90, 1656, 1, 0, 0, 0, 92, 1672, 1, 0, 0, 0, 94, 1674, 1, 0, 0, 0, 96, 1683, 1, 0, 0, 0, 98, 1685, 1, 0, 0, 0, 100, 1693, 1, 0, 0, 0, 102, 1699, 1, 0, 0, 0, 104, 1701, 1, 0, 0, 0, 106, 1779, 1, 0, 0, 0, 108, 1794, 1, 0, 0, 0, 110, 1805, 1, 0, 0, 0, 112, 1826, 1, 0, 0, 0, 114, 1828, 1, 0, 0, 0, 116, 1841, 1, 0, 0, 0, 118, 1845, 1, 0, 0, 0, 120, 1855, 1, 0, 0, 0, 122, 1866, 1, 0, 0, 0, 124, 1877, 1, 0, 0, 0, 126, 1897, 1, 0, 0, 0, 128, 1962, 1, 0, 0, 0, 130, 2041, 1, 0, 0, 0, 132, 2068, 1, 0, 0, 0, 134, 2070, 1, 0, 0, 0, 136, 2077, 1, 0, 0, 0, 138, 2089, 1, 0, 0, 0, 140, 2091, 1, 0, 0, 0, 142, 2119, 1, 0, 0, 0, 144, 2126, 1, 0, 0, 0, 146, 2191, 1, 0, 0, 0, 148, 2211, 1, 0, 0, 0, 150, 2213, 1, 0, 0, 0, 152, 2217, 1, 0, 0, 0, 154, 2230, 1, 0, 0, 0, 156, 2239, 1, 0, 0, 0, 158, 2313, 1, 0, 0, 0, 160, 2319, 1, 0, 0, 0, 162, 2803, 1, 0, 0, 0, 164, 2818, 1, 0, 0, 0, 166, 2836, 1, 0, 0, 0, 168, 2841, 1, 0, 0, 0, 170, 2846, 1, 0, 0, 0, 172, 2850, 1, 0, 0, 0, 174, 2856, 1, 0, 0, 0, 176, 2869, 1, 0, 0, 0, 178, 2877, 1, 0, 0, 0, 180, 2890, 1, 0, 0, 0, 182, 2892, 1, 0, 0, 0, 184, 2898, 1, 0, 0, 0, 186, 2906, 1, 0, 0, 0, 188, 2914, 1, 0, 0, 0, 190, 2916, 1, 0, 0, 0, 192, 2918, 1, 0, 0, 0, 194, 2920, 1, 0, 0, 0, 196, 2922, 1, 0, 0, 0, 198, 2932, 1, 0, 0, 0, 200, 2934, 1, 0, 0, 0, 202, 3007, 1, 0, 0, 0, 204, 3025, 1, 0, 0, 0, 206, 3029, 1, 0, 0, 0, 208, 3031, 1, 0, 0, 0, 210, 3036, 1, 0, 0, 0, 212, 3105, 1, 0, 0, 0, 214, 3107, 1, 0, 0, 0, 216, 3124, 1, 0, 0, 0, 218, 3188, 1, 0, 0, 0, 220, 3199, 1, 0, 0, 0, 222, 3201, 1, 0, 0, 0, 224, 3241, 1, 0, 0, 0, 226, 3273, 1, 0, 0, 0, 228, 3275, 1, 0, 0, 0, 230, 3283, 1, 0, 0, 0, 232, 3290, 1, 0, 0, 0, 234, 3299, 1, 0, 0, 0, 236, 3306, 1, 0, 0, 0, 238, 3313, 1, 0, 0, 0, 240, 3315, 1, 0, 0, 0, 242, 3323, 1, 0, 0, 0, 244, 3334, 1, 0, 0, 0, 246, 3348, 1, 0, 0, 0, 248, 3363, 1, 0, 0, 0, 250, 3367, 1, 0, 0, 0, 252, 3389, 1, 0, 0, 0, 254, 3490, 1, 0, 0, 0, 256, 3492, 1, 0, 0, 0, 258, 3497, 1, 0, 0, 0, 260, 3502, 1, 0, 0, 0, 262, 3505, 1, 0, 0, 0, 264, 3522, 1, 0, 0, 0, 266, 3532, 1, 0, 0, 0, 268, 3537, 1, 0, 0, 0, 270, 3540, 1, 0, 0, 0, 272, 3546, 1, 0, 0, 0, 274, 3559, 1, 0, 0, 0, 276, 3572, 1, 0, 0, 0, 278, 3585, 1, 0, 0, 0, 280, 3598, 1, 0, 0, 0, 282, 3605, 1, 0, 0, 0, 284, 3612, 1, 0, 0, 0, 286, 3614, 1, 0, 0, 0, 288, 3616, 1, 0, 0, 0, 290, 3618, 1, 0, 0, 0, 292, 3620, 1, 0, 0, 0, 294, 3624, 1, 0, 0, 0, 296, 3626, 1, 0, 0, 0, 298, 3628, 1, 0, 0, 0, 300, 3630, 1, 0, 0, 0, 302, 3638, 1, 0, 0, 0, 304, 3644, 1, 0, 0, 0, 306, 3649, 1, 0, 0, 0, 308, 3656, 1, 0, 0, 0, 310, 3658, 1, 0, 0, 0, 312, 3673, 1, 0, 0, 0, 314, 3680, 1, 0, 0, 0, 316, 3694, 1, 0, 0, 0, 318, 3698, 1, 0, 0, 0, 320, 3700, 1, 0, 0, 0, 322, 324, 3, 2, 1, 0, 323, 322, 1, 0, 0, 0, 324, 327, 1, 0, 0, 0, 325, 323, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 328, 1, 0, 0, 0, 327, 325, 1, 0, 0, 0, 328, 329, 5, 0, 0, 1, 329, 1, 1, 0, 0, 0, 330, 331, 3, 4, 2, 0, 331, 3, 1, 0, 0, 0, 332, 334, 3, 16, 8, 0, 333, 335, 5, 326, 0, 0, 334, 333, 1, 0, 0, 0, 334, 335, 1, 0, 0, 0, 335, 5, 1, 0, 0, 0, 336, 338, 3, 154, 77, 0, 337, 339, 5, 326, 0, 0, 338, 337, 1, 0, 0, 0, 338, 339, 1, 0, 0, 0, 339, 7, 1, 0, 0, 0, 340, 342, 3, 240, 120, 0, 341, 343, 5, 326, 0, 0, 342, 341, 1, 0, 0, 0, 342, 343, 1, 0, 0, 0, 343, 9, 1, 0, 0, 0, 344, 346, 3, 202, 101, 0, 345, 347, 5, 326, 0, 0, 346, 345, 1, 0, 0, 0, 346, 347, 1, 0, 0, 0, 347, 11, 1, 0, 0, 0, 348, 350, 3, 222, 111, 0, 349, 351, 5, 326, 0, 0, 350, 349, 1, 0, 0, 0, 350, 351, 1, 0, 0, 0, 351, 13, 1, 0, 0, 0, 352, 353, 3, 242, 121, 0, 353, 354, 5, 0, 0, 1, 354, 15, 1, 0, 0, 0, 355, 1251, 3, 18, 9, 0, 356, 357, 5, 289, 0, 0, 357, 1251, 3, 282, 141, 0, 358, 359, 5, 54, 0, 0, 359, 363, 5, 42, 0, 0, 360, 361, 5, 120, 0, 0, 361, 362, 5, 183, 0, 0, 362, 364, 5, 95, 0, 0, 363, 360, 1, 0, 0, 0, 363, 364, 1, 0, 0, 0, 364, 365, 1, 0, 0, 0, 365, 366, 3, 288, 144, 0, 366, 367, 5, 291, 0, 0, 367, 370, 3, 314, 157, 0, 368, 369, 5, 47, 0, 0, 369, 371, 3, 186, 93, 0, 370, 368, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 374, 1, 0, 0, 0, 372, 373, 5, 31, 0, 0, 373, 375, 3, 308, 154, 0, 374, 372, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 378, 1, 0, 0, 0, 376, 377, 5, 305, 0, 0, 377, 379, 3, 32, 16, 0, 378, 376, 1, 0, 0, 0, 378, 379, 1, 0, 0, 0, 379, 1251, 1, 0, 0, 0, 380, 381, 5, 84, 0, 0, 381, 384, 5, 42, 0, 0, 382, 383, 5, 120, 0, 0, 383, 385, 5, 95, 0, 0, 384, 382, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 388, 3, 286, 143, 0, 387, 389, 7, 0, 0, 0, 388, 387, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 1251, 1, 0, 0, 0, 390, 391, 5, 54, 0, 0, 391, 395, 5, 244, 0, 0, 392, 393, 5, 120, 0, 0, 393, 394, 5, 183, 0, 0, 394, 396, 5, 95, 0, 0, 395, 392, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 400, 3, 284, 142, 0, 398, 399, 5, 31, 0, 0, 399, 401, 3, 308, 154, 0, 400, 398, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 404, 1, 0, 0, 0, 402, 403, 5, 305, 0, 0, 403, 405, 3, 32, 16, 0, 404, 402, 1, 0, 0, 0, 404, 405, 1, 0, 0, 0, 405, 1251, 1, 0, 0, 0, 406, 407, 5, 84, 0, 0, 407, 410, 5, 244, 0, 0, 408, 409, 5, 120, 0, 0, 409, 411, 5, 95, 0, 0, 410, 408, 1, 0, 0, 0, 410, 411, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 3, 282, 141, 0, 413, 415, 7, 0, 0, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 1251, 1, 0, 0, 0, 416, 417, 5, 23, 0, 0, 417, 418, 5, 244, 0, 0, 418, 419, 3, 282, 141, 0, 419, 420, 5, 224, 0, 0, 420, 421, 5, 270, 0, 0, 421, 422, 3, 284, 142, 0, 422, 1251, 1, 0, 0, 0, 423, 424, 5, 23, 0, 0, 424, 425, 5, 244, 0, 0, 425, 426, 3, 282, 141, 0, 426, 427, 5, 252, 0, 0, 427, 428, 5, 31, 0, 0, 428, 429, 3, 308, 154, 0, 429, 1251, 1, 0, 0, 0, 430, 433, 5, 54, 0, 0, 431, 432, 5, 195, 0, 0, 432, 434, 5, 227, 0, 0, 433, 431, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 439, 5, 261, 0, 0, 436, 437, 5, 120, 0, 0, 437, 438, 5, 183, 0, 0, 438, 440, 5, 95, 0, 0, 439, 436, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 443, 3, 276, 138, 0, 442, 444, 3, 120, 60, 0, 443, 442, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 447, 1, 0, 0, 0, 445, 446, 5, 47, 0, 0, 446, 448, 3, 186, 93, 0, 447, 445, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 451, 1, 0, 0, 0, 449, 450, 5, 305, 0, 0, 450, 452, 3, 32, 16, 0, 451, 449, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 459, 5, 28, 0, 0, 454, 460, 3, 18, 9, 0, 455, 456, 5, 1, 0, 0, 456, 457, 3, 18, 9, 0, 457, 458, 5, 2, 0, 0, 458, 460, 1, 0, 0, 0, 459, 454, 1, 0, 0, 0, 459, 455, 1, 0, 0, 0, 460, 466, 1, 0, 0, 0, 461, 463, 5, 305, 0, 0, 462, 464, 5, 180, 0, 0, 463, 462, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 467, 5, 66, 0, 0, 466, 461, 1, 0, 0, 0, 466, 467, 1, 0, 0, 0, 467, 1251, 1, 0, 0, 0, 468, 471, 5, 54, 0, 0, 469, 470, 5, 195, 0, 0, 470, 472, 5, 227, 0, 0, 471, 469, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 477, 5, 261, 0, 0, 474, 475, 5, 120, 0, 0, 475, 476, 5, 183, 0, 0, 476, 478, 5, 95, 0, 0, 477, 474, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 480, 3, 276, 138, 0, 480, 481, 5, 1, 0, 0, 481, 486, 3, 26, 13, 0, 482, 483, 5, 3, 0, 0, 483, 485, 3, 26, 13, 0, 484, 482, 1, 0, 0, 0, 485, 488, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 489, 1, 0, 0, 0, 488, 486, 1, 0, 0, 0, 489, 492, 5, 2, 0, 0, 490, 491, 5, 47, 0, 0, 491, 493, 3, 186, 93, 0, 492, 490, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 496, 1, 0, 0, 0, 494, 495, 5, 305, 0, 0, 495, 497, 3, 32, 16, 0, 496, 494, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 1251, 1, 0, 0, 0, 498, 499, 5, 84, 0, 0, 499, 502, 5, 261, 0, 0, 500, 501, 5, 120, 0, 0, 501, 503, 5, 95, 0, 0, 502, 500, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 1251, 3, 274, 137, 0, 505, 506, 5, 128, 0, 0, 506, 507, 5, 131, 0, 0, 507, 509, 3, 274, 137, 0, 508, 510, 3, 122, 61, 0, 509, 508, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 3, 18, 9, 0, 512, 1251, 1, 0, 0, 0, 513, 514, 5, 74, 0, 0, 514, 515, 5, 106, 0, 0, 515, 517, 3, 274, 137, 0, 516, 518, 3, 54, 27, 0, 517, 516, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 1251, 1, 0, 0, 0, 519, 520, 5, 275, 0, 0, 520, 521, 5, 261, 0, 0, 521, 1251, 3, 274, 137, 0, 522, 523, 5, 47, 0, 0, 523, 524, 5, 191, 0, 0, 524, 525, 5, 261, 0, 0, 525, 526, 3, 274, 137, 0, 526, 529, 5, 134, 0, 0, 527, 530, 3, 186, 93, 0, 528, 530, 5, 184, 0, 0, 529, 527, 1, 0, 0, 0, 529, 528, 1, 0, 0, 0, 530, 1251, 1, 0, 0, 0, 531, 532, 5, 47, 0, 0, 532, 533, 5, 191, 0, 0, 533, 534, 5, 300, 0, 0, 534, 535, 3, 278, 139, 0, 535, 538, 5, 134, 0, 0, 536, 539, 3, 186, 93, 0, 537, 539, 5, 184, 0, 0, 538, 536, 1, 0, 0, 0, 538, 537, 1, 0, 0, 0, 539, 1251, 1, 0, 0, 0, 540, 541, 5, 47, 0, 0, 541, 542, 5, 191, 0, 0, 542, 543, 5, 45, 0, 0, 543, 544, 3, 294, 147, 0, 544, 547, 5, 134, 0, 0, 545, 548, 3, 186, 93, 0, 546, 548, 5, 184, 0, 0, 547, 545, 1, 0, 0, 0, 547, 546, 1, 0, 0, 0, 548, 1251, 1, 0, 0, 0, 549, 550, 5, 23, 0, 0, 550, 553, 5, 261, 0, 0, 551, 552, 5, 120, 0, 0, 552, 554, 5, 95, 0, 0, 553, 551, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 3, 274, 137, 0, 556, 557, 5, 224, 0, 0, 557, 558, 5, 270, 0, 0, 558, 559, 3, 276, 138, 0, 559, 1251, 1, 0, 0, 0, 560, 561, 5, 23, 0, 0, 561, 564, 5, 261, 0, 0, 562, 563, 5, 120, 0, 0, 563, 565, 5, 95, 0, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 3, 274, 137, 0, 567, 568, 5, 19, 0, 0, 568, 572, 5, 45, 0, 0, 569, 570, 5, 120, 0, 0, 570, 571, 5, 183, 0, 0, 571, 573, 5, 95, 0, 0, 572, 569, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 3, 28, 14, 0, 575, 1251, 1, 0, 0, 0, 576, 577, 5, 23, 0, 0, 577, 580, 5, 261, 0, 0, 578, 579, 5, 120, 0, 0, 579, 581, 5, 95, 0, 0, 580, 578, 1, 0, 0, 0, 580, 581, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 583, 3, 274, 137, 0, 583, 584, 5, 224, 0, 0, 584, 587, 5, 45, 0, 0, 585, 586, 5, 120, 0, 0, 586, 588, 5, 95, 0, 0, 587, 585, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 3, 294, 147, 0, 590, 591, 5, 270, 0, 0, 591, 592, 3, 298, 149, 0, 592, 1251, 1, 0, 0, 0, 593, 594, 5, 23, 0, 0, 594, 597, 5, 261, 0, 0, 595, 596, 5, 120, 0, 0, 596, 598, 5, 95, 0, 0, 597, 595, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 600, 3, 274, 137, 0, 600, 601, 5, 84, 0, 0, 601, 604, 5, 45, 0, 0, 602, 603, 5, 120, 0, 0, 603, 605, 5, 95, 0, 0, 604, 602, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 3, 294, 147, 0, 607, 1251, 1, 0, 0, 0, 608, 609, 5, 23, 0, 0, 609, 612, 5, 261, 0, 0, 610, 611, 5, 120, 0, 0, 611, 613, 5, 95, 0, 0, 612, 610, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 615, 3, 274, 137, 0, 615, 616, 5, 23, 0, 0, 616, 617, 5, 45, 0, 0, 617, 618, 3, 294, 147, 0, 618, 619, 5, 252, 0, 0, 619, 620, 5, 66, 0, 0, 620, 621, 5, 277, 0, 0, 621, 622, 3, 202, 101, 0, 622, 1251, 1, 0, 0, 0, 623, 624, 5, 23, 0, 0, 624, 627, 5, 261, 0, 0, 625, 626, 5, 120, 0, 0, 626, 628, 5, 95, 0, 0, 627, 625, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 630, 3, 274, 137, 0, 630, 631, 5, 23, 0, 0, 631, 632, 5, 45, 0, 0, 632, 633, 3, 294, 147, 0, 633, 634, 5, 84, 0, 0, 634, 635, 5, 183, 0, 0, 635, 636, 5, 184, 0, 0, 636, 1251, 1, 0, 0, 0, 637, 638, 5, 23, 0, 0, 638, 639, 5, 261, 0, 0, 639, 640, 3, 274, 137, 0, 640, 641, 5, 252, 0, 0, 641, 642, 5, 31, 0, 0, 642, 643, 3, 308, 154, 0, 643, 1251, 1, 0, 0, 0, 644, 645, 5, 23, 0, 0, 645, 646, 5, 261, 0, 0, 646, 647, 3, 274, 137, 0, 647, 648, 5, 252, 0, 0, 648, 649, 5, 217, 0, 0, 649, 650, 3, 34, 17, 0, 650, 1251, 1, 0, 0, 0, 651, 652, 5, 23, 0, 0, 652, 653, 5, 261, 0, 0, 653, 654, 3, 274, 137, 0, 654, 655, 5, 94, 0, 0, 655, 668, 3, 290, 145, 0, 656, 665, 5, 1, 0, 0, 657, 662, 3, 236, 118, 0, 658, 659, 5, 3, 0, 0, 659, 661, 3, 236, 118, 0, 660, 658, 1, 0, 0, 0, 661, 664, 1, 0, 0, 0, 662, 660, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 666, 1, 0, 0, 0, 664, 662, 1, 0, 0, 0, 665, 657, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 669, 5, 2, 0, 0, 668, 656, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 671, 1, 0, 0, 0, 670, 672, 3, 54, 27, 0, 671, 670, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 1251, 1, 0, 0, 0, 673, 674, 5, 24, 0, 0, 674, 677, 3, 274, 137, 0, 675, 676, 5, 305, 0, 0, 676, 678, 3, 32, 16, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 1251, 1, 0, 0, 0, 679, 682, 5, 54, 0, 0, 680, 681, 5, 195, 0, 0, 681, 683, 5, 227, 0, 0, 682, 680, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 685, 5, 168, 0, 0, 685, 689, 5, 300, 0, 0, 686, 687, 5, 120, 0, 0, 687, 688, 5, 183, 0, 0, 688, 690, 5, 95, 0, 0, 689, 686, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 691, 1, 0, 0, 0, 691, 695, 3, 280, 140, 0, 692, 693, 5, 110, 0, 0, 693, 694, 5, 209, 0, 0, 694, 696, 3, 196, 98, 0, 695, 692, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 699, 1, 0, 0, 0, 697, 698, 5, 47, 0, 0, 698, 700, 3, 186, 93, 0, 699, 697, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 703, 1, 0, 0, 0, 701, 702, 5, 305, 0, 0, 702, 704, 3, 32, 16, 0, 703, 701, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 706, 5, 28, 0, 0, 706, 707, 3, 18, 9, 0, 707, 1251, 1, 0, 0, 0, 708, 711, 5, 54, 0, 0, 709, 710, 5, 195, 0, 0, 710, 712, 5, 227, 0, 0, 711, 709, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 5, 300, 0, 0, 714, 717, 3, 280, 140, 0, 715, 716, 5, 47, 0, 0, 716, 718, 3, 186, 93, 0, 717, 715, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 721, 1, 0, 0, 0, 719, 720, 5, 247, 0, 0, 720, 722, 7, 1, 0, 0, 721, 719, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 725, 1, 0, 0, 0, 723, 724, 5, 305, 0, 0, 724, 726, 3, 32, 16, 0, 725, 723, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 728, 5, 28, 0, 0, 728, 729, 3, 18, 9, 0, 729, 1251, 1, 0, 0, 0, 730, 731, 5, 223, 0, 0, 731, 732, 5, 168, 0, 0, 732, 733, 5, 300, 0, 0, 733, 1251, 3, 278, 139, 0, 734, 735, 5, 84, 0, 0, 735, 736, 5, 168, 0, 0, 736, 739, 5, 300, 0, 0, 737, 738, 5, 120, 0, 0, 738, 740, 5, 95, 0, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 1251, 3, 278, 139, 0, 742, 743, 5, 23, 0, 0, 743, 744, 5, 168, 0, 0, 744, 747, 5, 300, 0, 0, 745, 746, 5, 120, 0, 0, 746, 748, 5, 95, 0, 0, 747, 745, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 3, 278, 139, 0, 750, 751, 5, 224, 0, 0, 751, 752, 5, 270, 0, 0, 752, 753, 3, 280, 140, 0, 753, 1251, 1, 0, 0, 0, 754, 755, 5, 23, 0, 0, 755, 756, 5, 168, 0, 0, 756, 757, 5, 300, 0, 0, 757, 758, 3, 278, 139, 0, 758, 759, 5, 252, 0, 0, 759, 760, 5, 217, 0, 0, 760, 761, 3, 34, 17, 0, 761, 1251, 1, 0, 0, 0, 762, 763, 5, 84, 0, 0, 763, 766, 5, 300, 0, 0, 764, 765, 5, 120, 0, 0, 765, 767, 5, 95, 0, 0, 766, 764, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 1251, 3, 278, 139, 0, 769, 770, 5, 23, 0, 0, 770, 771, 5, 300, 0, 0, 771, 772, 3, 278, 139, 0, 772, 773, 5, 224, 0, 0, 773, 774, 5, 270, 0, 0, 774, 775, 3, 280, 140, 0, 775, 1251, 1, 0, 0, 0, 776, 777, 5, 23, 0, 0, 777, 778, 5, 300, 0, 0, 778, 779, 3, 278, 139, 0, 779, 780, 5, 252, 0, 0, 780, 781, 5, 31, 0, 0, 781, 782, 3, 308, 154, 0, 782, 1251, 1, 0, 0, 0, 783, 784, 5, 37, 0, 0, 784, 785, 3, 290, 145, 0, 785, 794, 5, 1, 0, 0, 786, 791, 3, 236, 118, 0, 787, 788, 5, 3, 0, 0, 788, 790, 3, 236, 118, 0, 789, 787, 1, 0, 0, 0, 790, 793, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 795, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 794, 786, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 797, 5, 2, 0, 0, 797, 1251, 1, 0, 0, 0, 798, 801, 5, 54, 0, 0, 799, 800, 5, 195, 0, 0, 800, 802, 5, 227, 0, 0, 801, 799, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 1251, 3, 242, 121, 0, 804, 805, 5, 84, 0, 0, 805, 808, 5, 108, 0, 0, 806, 807, 5, 120, 0, 0, 807, 809, 5, 95, 0, 0, 808, 806, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 1251, 3, 246, 123, 0, 811, 812, 5, 54, 0, 0, 812, 813, 5, 236, 0, 0, 813, 817, 3, 314, 157, 0, 814, 815, 5, 305, 0, 0, 815, 816, 5, 20, 0, 0, 816, 818, 3, 306, 153, 0, 817, 814, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 821, 1, 0, 0, 0, 819, 820, 5, 123, 0, 0, 820, 822, 3, 286, 143, 0, 821, 819, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 1251, 1, 0, 0, 0, 823, 824, 5, 84, 0, 0, 824, 825, 5, 236, 0, 0, 825, 828, 3, 314, 157, 0, 826, 827, 5, 123, 0, 0, 827, 829, 3, 286, 143, 0, 828, 826, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 1251, 1, 0, 0, 0, 830, 831, 5, 111, 0, 0, 831, 836, 3, 312, 156, 0, 832, 833, 5, 3, 0, 0, 833, 835, 3, 312, 156, 0, 834, 832, 1, 0, 0, 0, 835, 838, 1, 0, 0, 0, 836, 834, 1, 0, 0, 0, 836, 837, 1, 0, 0, 0, 837, 839, 1, 0, 0, 0, 838, 836, 1, 0, 0, 0, 839, 840, 5, 270, 0, 0, 840, 845, 3, 308, 154, 0, 841, 842, 5, 3, 0, 0, 842, 844, 3, 308, 154, 0, 843, 841, 1, 0, 0, 0, 844, 847, 1, 0, 0, 0, 845, 843, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 851, 1, 0, 0, 0, 847, 845, 1, 0, 0, 0, 848, 849, 5, 305, 0, 0, 849, 850, 5, 20, 0, 0, 850, 852, 5, 194, 0, 0, 851, 848, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 856, 1, 0, 0, 0, 853, 854, 5, 112, 0, 0, 854, 855, 5, 36, 0, 0, 855, 857, 3, 306, 153, 0, 856, 853, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 860, 1, 0, 0, 0, 858, 859, 5, 123, 0, 0, 859, 861, 3, 286, 143, 0, 860, 858, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 1251, 1, 0, 0, 0, 862, 873, 5, 111, 0, 0, 863, 868, 3, 312, 156, 0, 864, 865, 5, 3, 0, 0, 865, 867, 3, 312, 156, 0, 866, 864, 1, 0, 0, 0, 867, 870, 1, 0, 0, 0, 868, 866, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 874, 1, 0, 0, 0, 870, 868, 1, 0, 0, 0, 871, 872, 5, 22, 0, 0, 872, 874, 5, 216, 0, 0, 873, 863, 1, 0, 0, 0, 873, 871, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 191, 0, 0, 876, 877, 3, 270, 135, 0, 877, 878, 5, 270, 0, 0, 878, 882, 3, 308, 154, 0, 879, 880, 5, 305, 0, 0, 880, 881, 5, 111, 0, 0, 881, 883, 5, 194, 0, 0, 882, 879, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 1251, 1, 0, 0, 0, 884, 888, 5, 234, 0, 0, 885, 886, 5, 20, 0, 0, 886, 887, 5, 194, 0, 0, 887, 889, 5, 104, 0, 0, 888, 885, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 895, 3, 312, 156, 0, 891, 892, 5, 3, 0, 0, 892, 894, 3, 312, 156, 0, 893, 891, 1, 0, 0, 0, 894, 897, 1, 0, 0, 0, 895, 893, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 898, 1, 0, 0, 0, 897, 895, 1, 0, 0, 0, 898, 899, 5, 106, 0, 0, 899, 904, 3, 308, 154, 0, 900, 901, 5, 3, 0, 0, 901, 903, 3, 308, 154, 0, 902, 900, 1, 0, 0, 0, 903, 906, 1, 0, 0, 0, 904, 902, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 910, 1, 0, 0, 0, 906, 904, 1, 0, 0, 0, 907, 908, 5, 112, 0, 0, 908, 909, 5, 36, 0, 0, 909, 911, 3, 306, 153, 0, 910, 907, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 914, 1, 0, 0, 0, 912, 913, 5, 123, 0, 0, 913, 915, 3, 286, 143, 0, 914, 912, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 1251, 1, 0, 0, 0, 916, 920, 5, 234, 0, 0, 917, 918, 5, 111, 0, 0, 918, 919, 5, 194, 0, 0, 919, 921, 5, 104, 0, 0, 920, 917, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 932, 1, 0, 0, 0, 922, 927, 3, 312, 156, 0, 923, 924, 5, 3, 0, 0, 924, 926, 3, 312, 156, 0, 925, 923, 1, 0, 0, 0, 926, 929, 1, 0, 0, 0, 927, 925, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 933, 1, 0, 0, 0, 929, 927, 1, 0, 0, 0, 930, 931, 5, 22, 0, 0, 931, 933, 5, 216, 0, 0, 932, 922, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 5, 191, 0, 0, 935, 936, 3, 270, 135, 0, 936, 937, 5, 106, 0, 0, 937, 938, 3, 308, 154, 0, 938, 1251, 1, 0, 0, 0, 939, 950, 5, 75, 0, 0, 940, 945, 3, 266, 133, 0, 941, 942, 5, 3, 0, 0, 942, 944, 3, 266, 133, 0, 943, 941, 1, 0, 0, 0, 944, 947, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 951, 1, 0, 0, 0, 947, 945, 1, 0, 0, 0, 948, 949, 5, 22, 0, 0, 949, 951, 5, 216, 0, 0, 950, 940, 1, 0, 0, 0, 950, 948, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 953, 5, 191, 0, 0, 953, 954, 3, 270, 135, 0, 954, 955, 5, 270, 0, 0, 955, 956, 3, 308, 154, 0, 956, 1251, 1, 0, 0, 0, 957, 958, 5, 252, 0, 0, 958, 962, 5, 236, 0, 0, 959, 963, 5, 22, 0, 0, 960, 963, 5, 181, 0, 0, 961, 963, 3, 314, 157, 0, 962, 959, 1, 0, 0, 0, 962, 960, 1, 0, 0, 0, 962, 961, 1, 0, 0, 0, 963, 966, 1, 0, 0, 0, 964, 965, 5, 123, 0, 0, 965, 967, 3, 286, 143, 0, 966, 964, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 1251, 1, 0, 0, 0, 968, 969, 5, 254, 0, 0, 969, 972, 5, 113, 0, 0, 970, 971, 5, 191, 0, 0, 971, 973, 3, 270, 135, 0, 972, 970, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 1251, 1, 0, 0, 0, 974, 986, 5, 96, 0, 0, 975, 976, 5, 1, 0, 0, 976, 981, 3, 230, 115, 0, 977, 978, 5, 3, 0, 0, 978, 980, 3, 230, 115, 0, 979, 977, 1, 0, 0, 0, 980, 983, 1, 0, 0, 0, 981, 979, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 984, 1, 0, 0, 0, 983, 981, 1, 0, 0, 0, 984, 985, 5, 2, 0, 0, 985, 987, 1, 0, 0, 0, 986, 975, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 1251, 3, 16, 8, 0, 989, 990, 5, 96, 0, 0, 990, 992, 5, 24, 0, 0, 991, 993, 5, 298, 0, 0, 992, 991, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 1251, 3, 16, 8, 0, 995, 996, 5, 254, 0, 0, 996, 997, 5, 54, 0, 0, 997, 998, 5, 261, 0, 0, 998, 1251, 3, 274, 137, 0, 999, 1000, 5, 254, 0, 0, 1000, 1001, 5, 54, 0, 0, 1001, 1002, 5, 244, 0, 0, 1002, 1251, 3, 282, 141, 0, 1003, 1004, 5, 254, 0, 0, 1004, 1005, 5, 54, 0, 0, 1005, 1006, 5, 300, 0, 0, 1006, 1251, 3, 278, 139, 0, 1007, 1008, 5, 254, 0, 0, 1008, 1009, 5, 54, 0, 0, 1009, 1010, 5, 168, 0, 0, 1010, 1011, 5, 300, 0, 0, 1011, 1251, 3, 278, 139, 0, 1012, 1013, 5, 254, 0, 0, 1013, 1014, 5, 54, 0, 0, 1014, 1015, 5, 108, 0, 0, 1015, 1251, 3, 290, 145, 0, 1016, 1017, 5, 254, 0, 0, 1017, 1020, 5, 262, 0, 0, 1018, 1019, 7, 2, 0, 0, 1019, 1021, 3, 282, 141, 0, 1020, 1018, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1028, 1, 0, 0, 0, 1022, 1023, 5, 155, 0, 0, 1023, 1026, 3, 186, 93, 0, 1024, 1025, 5, 91, 0, 0, 1025, 1027, 3, 186, 93, 0, 1026, 1024, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1029, 1, 0, 0, 0, 1028, 1022, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1251, 1, 0, 0, 0, 1030, 1031, 5, 254, 0, 0, 1031, 1034, 5, 245, 0, 0, 1032, 1033, 7, 2, 0, 0, 1033, 1035, 3, 286, 143, 0, 1034, 1032, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1042, 1, 0, 0, 0, 1036, 1037, 5, 155, 0, 0, 1037, 1040, 3, 186, 93, 0, 1038, 1039, 5, 91, 0, 0, 1039, 1041, 3, 186, 93, 0, 1040, 1038, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1043, 1, 0, 0, 0, 1042, 1036, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1251, 1, 0, 0, 0, 1044, 1045, 5, 254, 0, 0, 1045, 1052, 5, 43, 0, 0, 1046, 1047, 5, 155, 0, 0, 1047, 1050, 3, 186, 93, 0, 1048, 1049, 5, 91, 0, 0, 1049, 1051, 3, 186, 93, 0, 1050, 1048, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1053, 1, 0, 0, 0, 1052, 1046, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1251, 1, 0, 0, 0, 1054, 1055, 5, 254, 0, 0, 1055, 1056, 5, 46, 0, 0, 1056, 1057, 7, 2, 0, 0, 1057, 1064, 3, 272, 136, 0, 1058, 1059, 5, 155, 0, 0, 1059, 1062, 3, 186, 93, 0, 1060, 1061, 5, 91, 0, 0, 1061, 1063, 3, 186, 93, 0, 1062, 1060, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1065, 1, 0, 0, 0, 1064, 1058, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1251, 1, 0, 0, 0, 1066, 1067, 5, 254, 0, 0, 1067, 1068, 5, 257, 0, 0, 1068, 1069, 5, 104, 0, 0, 1069, 1251, 3, 272, 136, 0, 1070, 1071, 5, 254, 0, 0, 1071, 1072, 5, 257, 0, 0, 1072, 1073, 5, 104, 0, 0, 1073, 1074, 5, 1, 0, 0, 1074, 1075, 3, 18, 9, 0, 1075, 1076, 5, 2, 0, 0, 1076, 1251, 1, 0, 0, 0, 1077, 1079, 5, 254, 0, 0, 1078, 1080, 5, 57, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1084, 5, 237, 0, 0, 1082, 1083, 7, 2, 0, 0, 1083, 1085, 3, 286, 143, 0, 1084, 1082, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1251, 1, 0, 0, 0, 1086, 1087, 5, 254, 0, 0, 1087, 1088, 5, 236, 0, 0, 1088, 1091, 5, 113, 0, 0, 1089, 1090, 7, 2, 0, 0, 1090, 1092, 3, 286, 143, 0, 1091, 1089, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1251, 1, 0, 0, 0, 1093, 1094, 5, 77, 0, 0, 1094, 1251, 3, 272, 136, 0, 1095, 1096, 5, 76, 0, 0, 1096, 1251, 3, 272, 136, 0, 1097, 1098, 5, 254, 0, 0, 1098, 1101, 5, 109, 0, 0, 1099, 1100, 7, 2, 0, 0, 1100, 1102, 3, 282, 141, 0, 1101, 1099, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1109, 1, 0, 0, 0, 1103, 1104, 5, 155, 0, 0, 1104, 1107, 3, 186, 93, 0, 1105, 1106, 5, 91, 0, 0, 1106, 1108, 3, 186, 93, 0, 1107, 1105, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1110, 1, 0, 0, 0, 1109, 1103, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1251, 1, 0, 0, 0, 1111, 1112, 5, 254, 0, 0, 1112, 1119, 5, 251, 0, 0, 1113, 1114, 5, 155, 0, 0, 1114, 1117, 3, 186, 93, 0, 1115, 1116, 5, 91, 0, 0, 1116, 1118, 3, 186, 93, 0, 1117, 1115, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1120, 1, 0, 0, 0, 1119, 1113, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1251, 1, 0, 0, 0, 1121, 1122, 5, 252, 0, 0, 1122, 1123, 5, 251, 0, 0, 1123, 1124, 5, 31, 0, 0, 1124, 1251, 3, 318, 159, 0, 1125, 1126, 5, 228, 0, 0, 1126, 1127, 5, 251, 0, 0, 1127, 1251, 5, 31, 0, 0, 1128, 1129, 5, 252, 0, 0, 1129, 1130, 5, 251, 0, 0, 1130, 1131, 3, 300, 150, 0, 1131, 1132, 5, 313, 0, 0, 1132, 1133, 3, 154, 77, 0, 1133, 1251, 1, 0, 0, 0, 1134, 1135, 5, 228, 0, 0, 1135, 1136, 5, 251, 0, 0, 1136, 1251, 3, 300, 150, 0, 1137, 1138, 5, 256, 0, 0, 1138, 1147, 5, 272, 0, 0, 1139, 1144, 3, 232, 116, 0, 1140, 1141, 5, 3, 0, 0, 1141, 1143, 3, 232, 116, 0, 1142, 1140, 1, 0, 0, 0, 1143, 1146, 1, 0, 0, 0, 1144, 1142, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1148, 1, 0, 0, 0, 1146, 1144, 1, 0, 0, 0, 1147, 1139, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1251, 1, 0, 0, 0, 1149, 1151, 5, 48, 0, 0, 1150, 1152, 5, 308, 0, 0, 1151, 1150, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1251, 1, 0, 0, 0, 1153, 1155, 5, 238, 0, 0, 1154, 1156, 5, 308, 0, 0, 1155, 1154, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1251, 1, 0, 0, 0, 1157, 1158, 5, 215, 0, 0, 1158, 1159, 3, 314, 157, 0, 1159, 1160, 5, 106, 0, 0, 1160, 1161, 3, 16, 8, 0, 1161, 1251, 1, 0, 0, 0, 1162, 1163, 5, 69, 0, 0, 1163, 1164, 5, 215, 0, 0, 1164, 1251, 3, 314, 157, 0, 1165, 1166, 5, 94, 0, 0, 1166, 1176, 3, 314, 157, 0, 1167, 1168, 5, 291, 0, 0, 1168, 1173, 3, 154, 77, 0, 1169, 1170, 5, 3, 0, 0, 1170, 1172, 3, 154, 77, 0, 1171, 1169, 1, 0, 0, 0, 1172, 1175, 1, 0, 0, 0, 1173, 1171, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1177, 1, 0, 0, 0, 1175, 1173, 1, 0, 0, 0, 1176, 1167, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1251, 1, 0, 0, 0, 1178, 1179, 5, 94, 0, 0, 1179, 1180, 5, 122, 0, 0, 1180, 1190, 3, 186, 93, 0, 1181, 1182, 5, 291, 0, 0, 1182, 1187, 3, 154, 77, 0, 1183, 1184, 5, 3, 0, 0, 1184, 1186, 3, 154, 77, 0, 1185, 1183, 1, 0, 0, 0, 1186, 1189, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1191, 1, 0, 0, 0, 1189, 1187, 1, 0, 0, 0, 1190, 1181, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1251, 1, 0, 0, 0, 1192, 1193, 5, 77, 0, 0, 1193, 1194, 5, 127, 0, 0, 1194, 1251, 3, 314, 157, 0, 1195, 1196, 5, 77, 0, 0, 1196, 1197, 5, 199, 0, 0, 1197, 1251, 3, 314, 157, 0, 1198, 1199, 5, 252, 0, 0, 1199, 1200, 5, 206, 0, 0, 1200, 1251, 3, 240, 120, 0, 1201, 1202, 5, 252, 0, 0, 1202, 1203, 5, 268, 0, 0, 1203, 1206, 5, 312, 0, 0, 1204, 1207, 5, 158, 0, 0, 1205, 1207, 3, 154, 77, 0, 1206, 1204, 1, 0, 0, 0, 1206, 1205, 1, 0, 0, 0, 1207, 1251, 1, 0, 0, 0, 1208, 1209, 5, 288, 0, 0, 1209, 1210, 3, 274, 137, 0, 1210, 1211, 5, 252, 0, 0, 1211, 1216, 3, 228, 114, 0, 1212, 1213, 5, 3, 0, 0, 1213, 1215, 3, 228, 114, 0, 1214, 1212, 1, 0, 0, 0, 1215, 1218, 1, 0, 0, 0, 1216, 1214, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1220, 1, 0, 0, 0, 1218, 1216, 1, 0, 0, 0, 1219, 1221, 3, 54, 27, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1251, 1, 0, 0, 0, 1222, 1223, 5, 170, 0, 0, 1223, 1224, 5, 131, 0, 0, 1224, 1229, 3, 274, 137, 0, 1225, 1227, 5, 28, 0, 0, 1226, 1225, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1230, 3, 314, 157, 0, 1229, 1226, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1232, 5, 291, 0, 0, 1232, 1233, 3, 88, 44, 0, 1233, 1234, 5, 191, 0, 0, 1234, 1236, 3, 154, 77, 0, 1235, 1237, 3, 212, 106, 0, 1236, 1235, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1236, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1251, 1, 0, 0, 0, 1240, 1241, 5, 254, 0, 0, 1241, 1242, 5, 47, 0, 0, 1242, 1243, 5, 191, 0, 0, 1243, 1244, 5, 261, 0, 0, 1244, 1251, 3, 274, 137, 0, 1245, 1246, 5, 254, 0, 0, 1246, 1247, 5, 47, 0, 0, 1247, 1248, 5, 191, 0, 0, 1248, 1249, 5, 45, 0, 0, 1249, 1251, 3, 294, 147, 0, 1250, 355, 1, 0, 0, 0, 1250, 356, 1, 0, 0, 0, 1250, 358, 1, 0, 0, 0, 1250, 380, 1, 0, 0, 0, 1250, 390, 1, 0, 0, 0, 1250, 406, 1, 0, 0, 0, 1250, 416, 1, 0, 0, 0, 1250, 423, 1, 0, 0, 0, 1250, 430, 1, 0, 0, 0, 1250, 468, 1, 0, 0, 0, 1250, 498, 1, 0, 0, 0, 1250, 505, 1, 0, 0, 0, 1250, 513, 1, 0, 0, 0, 1250, 519, 1, 0, 0, 0, 1250, 522, 1, 0, 0, 0, 1250, 531, 1, 0, 0, 0, 1250, 540, 1, 0, 0, 0, 1250, 549, 1, 0, 0, 0, 1250, 560, 1, 0, 0, 0, 1250, 576, 1, 0, 0, 0, 1250, 593, 1, 0, 0, 0, 1250, 608, 1, 0, 0, 0, 1250, 623, 1, 0, 0, 0, 1250, 637, 1, 0, 0, 0, 1250, 644, 1, 0, 0, 0, 1250, 651, 1, 0, 0, 0, 1250, 673, 1, 0, 0, 0, 1250, 679, 1, 0, 0, 0, 1250, 708, 1, 0, 0, 0, 1250, 730, 1, 0, 0, 0, 1250, 734, 1, 0, 0, 0, 1250, 742, 1, 0, 0, 0, 1250, 754, 1, 0, 0, 0, 1250, 762, 1, 0, 0, 0, 1250, 769, 1, 0, 0, 0, 1250, 776, 1, 0, 0, 0, 1250, 783, 1, 0, 0, 0, 1250, 798, 1, 0, 0, 0, 1250, 804, 1, 0, 0, 0, 1250, 811, 1, 0, 0, 0, 1250, 823, 1, 0, 0, 0, 1250, 830, 1, 0, 0, 0, 1250, 862, 1, 0, 0, 0, 1250, 884, 1, 0, 0, 0, 1250, 916, 1, 0, 0, 0, 1250, 939, 1, 0, 0, 0, 1250, 957, 1, 0, 0, 0, 1250, 968, 1, 0, 0, 0, 1250, 974, 1, 0, 0, 0, 1250, 989, 1, 0, 0, 0, 1250, 995, 1, 0, 0, 0, 1250, 999, 1, 0, 0, 0, 1250, 1003, 1, 0, 0, 0, 1250, 1007, 1, 0, 0, 0, 1250, 1012, 1, 0, 0, 0, 1250, 1016, 1, 0, 0, 0, 1250, 1030, 1, 0, 0, 0, 1250, 1044, 1, 0, 0, 0, 1250, 1054, 1, 0, 0, 0, 1250, 1066, 1, 0, 0, 0, 1250, 1070, 1, 0, 0, 0, 1250, 1077, 1, 0, 0, 0, 1250, 1086, 1, 0, 0, 0, 1250, 1093, 1, 0, 0, 0, 1250, 1095, 1, 0, 0, 0, 1250, 1097, 1, 0, 0, 0, 1250, 1111, 1, 0, 0, 0, 1250, 1121, 1, 0, 0, 0, 1250, 1125, 1, 0, 0, 0, 1250, 1128, 1, 0, 0, 0, 1250, 1134, 1, 0, 0, 0, 1250, 1137, 1, 0, 0, 0, 1250, 1149, 1, 0, 0, 0, 1250, 1153, 1, 0, 0, 0, 1250, 1157, 1, 0, 0, 0, 1250, 1162, 1, 0, 0, 0, 1250, 1165, 1, 0, 0, 0, 1250, 1178, 1, 0, 0, 0, 1250, 1192, 1, 0, 0, 0, 1250, 1195, 1, 0, 0, 0, 1250, 1198, 1, 0, 0, 0, 1250, 1201, 1, 0, 0, 0, 1250, 1208, 1, 0, 0, 0, 1250, 1222, 1, 0, 0, 0, 1250, 1240, 1, 0, 0, 0, 1250, 1245, 1, 0, 0, 0, 1251, 17, 1, 0, 0, 0, 1252, 1254, 3, 20, 10, 0, 1253, 1252, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 1256, 3, 22, 11, 0, 1256, 19, 1, 0, 0, 0, 1257, 1258, 5, 305, 0, 0, 1258, 1263, 3, 242, 121, 0, 1259, 1260, 5, 3, 0, 0, 1260, 1262, 3, 242, 121, 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, 21, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1268, 3, 24, 12, 0, 1267, 1266, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1270, 3, 40, 20, 0, 1270, 23, 1, 0, 0, 0, 1271, 1273, 5, 305, 0, 0, 1272, 1274, 5, 222, 0, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1280, 3, 74, 37, 0, 1276, 1277, 5, 3, 0, 0, 1277, 1279, 3, 74, 37, 0, 1278, 1276, 1, 0, 0, 0, 1279, 1282, 1, 0, 0, 0, 1280, 1278, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 25, 1, 0, 0, 0, 1282, 1280, 1, 0, 0, 0, 1283, 1286, 3, 28, 14, 0, 1284, 1286, 3, 30, 15, 0, 1285, 1283, 1, 0, 0, 0, 1285, 1284, 1, 0, 0, 0, 1286, 27, 1, 0, 0, 0, 1287, 1288, 3, 298, 149, 0, 1288, 1291, 3, 202, 101, 0, 1289, 1290, 5, 183, 0, 0, 1290, 1292, 5, 184, 0, 0, 1291, 1289, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1295, 1, 0, 0, 0, 1293, 1294, 5, 47, 0, 0, 1294, 1296, 3, 186, 93, 0, 1295, 1293, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1299, 1, 0, 0, 0, 1297, 1298, 5, 305, 0, 0, 1298, 1300, 3, 32, 16, 0, 1299, 1297, 1, 0, 0, 0, 1299, 1300, 1, 0, 0, 0, 1300, 29, 1, 0, 0, 0, 1301, 1302, 5, 155, 0, 0, 1302, 1305, 3, 274, 137, 0, 1303, 1304, 7, 3, 0, 0, 1304, 1306, 5, 217, 0, 0, 1305, 1303, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 31, 1, 0, 0, 0, 1307, 1308, 5, 1, 0, 0, 1308, 1309, 3, 34, 17, 0, 1309, 1310, 5, 2, 0, 0, 1310, 33, 1, 0, 0, 0, 1311, 1316, 3, 36, 18, 0, 1312, 1313, 5, 3, 0, 0, 1313, 1315, 3, 36, 18, 0, 1314, 1312, 1, 0, 0, 0, 1315, 1318, 1, 0, 0, 0, 1316, 1314, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1317, 35, 1, 0, 0, 0, 1318, 1316, 1, 0, 0, 0, 1319, 1320, 3, 314, 157, 0, 1320, 1321, 5, 313, 0, 0, 1321, 1322, 3, 38, 19, 0, 1322, 37, 1, 0, 0, 0, 1323, 1326, 5, 71, 0, 0, 1324, 1326, 3, 154, 77, 0, 1325, 1323, 1, 0, 0, 0, 1325, 1324, 1, 0, 0, 0, 1326, 39, 1, 0, 0, 0, 1327, 1338, 3, 46, 23, 0, 1328, 1329, 5, 196, 0, 0, 1329, 1330, 5, 36, 0, 0, 1330, 1335, 3, 50, 25, 0, 1331, 1332, 5, 3, 0, 0, 1332, 1334, 3, 50, 25, 0, 1333, 1331, 1, 0, 0, 0, 1334, 1337, 1, 0, 0, 0, 1335, 1333, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1339, 1, 0, 0, 0, 1337, 1335, 1, 0, 0, 0, 1338, 1328, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1345, 1, 0, 0, 0, 1340, 1341, 5, 189, 0, 0, 1341, 1343, 3, 44, 22, 0, 1342, 1344, 7, 4, 0, 0, 1343, 1342, 1, 0, 0, 0, 1343, 1344, 1, 0, 0, 0, 1344, 1346, 1, 0, 0, 0, 1345, 1340, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1360, 1, 0, 0, 0, 1347, 1348, 5, 156, 0, 0, 1348, 1361, 3, 42, 21, 0, 1349, 1350, 5, 99, 0, 0, 1350, 1352, 7, 5, 0, 0, 1351, 1353, 3, 44, 22, 0, 1352, 1351, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1358, 7, 4, 0, 0, 1355, 1359, 5, 193, 0, 0, 1356, 1357, 5, 305, 0, 0, 1357, 1359, 5, 267, 0, 0, 1358, 1355, 1, 0, 0, 0, 1358, 1356, 1, 0, 0, 0, 1359, 1361, 1, 0, 0, 0, 1360, 1347, 1, 0, 0, 0, 1360, 1349, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 41, 1, 0, 0, 0, 1362, 1365, 5, 22, 0, 0, 1363, 1365, 3, 44, 22, 0, 1364, 1362, 1, 0, 0, 0, 1364, 1363, 1, 0, 0, 0, 1365, 43, 1, 0, 0, 0, 1366, 1367, 7, 6, 0, 0, 1367, 45, 1, 0, 0, 0, 1368, 1369, 6, 23, -1, 0, 1369, 1370, 3, 48, 24, 0, 1370, 1385, 1, 0, 0, 0, 1371, 1372, 10, 2, 0, 0, 1372, 1374, 5, 129, 0, 0, 1373, 1375, 3, 76, 38, 0, 1374, 1373, 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 1384, 3, 46, 23, 3, 1377, 1378, 10, 1, 0, 0, 1378, 1380, 7, 7, 0, 0, 1379, 1381, 3, 76, 38, 0, 1380, 1379, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1384, 3, 46, 23, 2, 1383, 1371, 1, 0, 0, 0, 1383, 1377, 1, 0, 0, 0, 1384, 1387, 1, 0, 0, 0, 1385, 1383, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 47, 1, 0, 0, 0, 1387, 1385, 1, 0, 0, 0, 1388, 1405, 3, 52, 26, 0, 1389, 1390, 5, 261, 0, 0, 1390, 1405, 3, 274, 137, 0, 1391, 1392, 5, 297, 0, 0, 1392, 1397, 3, 154, 77, 0, 1393, 1394, 5, 3, 0, 0, 1394, 1396, 3, 154, 77, 0, 1395, 1393, 1, 0, 0, 0, 1396, 1399, 1, 0, 0, 0, 1397, 1395, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1405, 1, 0, 0, 0, 1399, 1397, 1, 0, 0, 0, 1400, 1401, 5, 1, 0, 0, 1401, 1402, 3, 40, 20, 0, 1402, 1403, 5, 2, 0, 0, 1403, 1405, 1, 0, 0, 0, 1404, 1388, 1, 0, 0, 0, 1404, 1389, 1, 0, 0, 0, 1404, 1391, 1, 0, 0, 0, 1404, 1400, 1, 0, 0, 0, 1405, 49, 1, 0, 0, 0, 1406, 1409, 3, 294, 147, 0, 1407, 1409, 3, 154, 77, 0, 1408, 1406, 1, 0, 0, 0, 1408, 1407, 1, 0, 0, 0, 1409, 1411, 1, 0, 0, 0, 1410, 1412, 7, 8, 0, 0, 1411, 1410, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1415, 1, 0, 0, 0, 1413, 1414, 5, 186, 0, 0, 1414, 1416, 7, 9, 0, 0, 1415, 1413, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 51, 1, 0, 0, 0, 1417, 1419, 5, 249, 0, 0, 1418, 1420, 3, 76, 38, 0, 1419, 1418, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1431, 3, 58, 29, 0, 1422, 1423, 5, 106, 0, 0, 1423, 1428, 3, 88, 44, 0, 1424, 1425, 5, 3, 0, 0, 1425, 1427, 3, 88, 44, 0, 1426, 1424, 1, 0, 0, 0, 1427, 1430, 1, 0, 0, 0, 1428, 1426, 1, 0, 0, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1432, 1, 0, 0, 0, 1430, 1428, 1, 0, 0, 0, 1431, 1422, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1434, 1, 0, 0, 0, 1433, 1435, 3, 54, 27, 0, 1434, 1433, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1439, 1, 0, 0, 0, 1436, 1437, 5, 115, 0, 0, 1437, 1438, 5, 36, 0, 0, 1438, 1440, 3, 60, 30, 0, 1439, 1436, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1442, 1, 0, 0, 0, 1441, 1443, 3, 56, 28, 0, 1442, 1441, 1, 0, 0, 0, 1442, 1443, 1, 0, 0, 0, 1443, 1453, 1, 0, 0, 0, 1444, 1445, 5, 304, 0, 0, 1445, 1450, 3, 70, 35, 0, 1446, 1447, 5, 3, 0, 0, 1447, 1449, 3, 70, 35, 0, 1448, 1446, 1, 0, 0, 0, 1449, 1452, 1, 0, 0, 0, 1450, 1448, 1, 0, 0, 0, 1450, 1451, 1, 0, 0, 0, 1451, 1454, 1, 0, 0, 0, 1452, 1450, 1, 0, 0, 0, 1453, 1444, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 53, 1, 0, 0, 0, 1455, 1456, 5, 302, 0, 0, 1456, 1457, 3, 156, 78, 0, 1457, 55, 1, 0, 0, 0, 1458, 1459, 5, 118, 0, 0, 1459, 1460, 3, 156, 78, 0, 1460, 57, 1, 0, 0, 0, 1461, 1466, 3, 78, 39, 0, 1462, 1463, 5, 3, 0, 0, 1463, 1465, 3, 78, 39, 0, 1464, 1462, 1, 0, 0, 0, 1465, 1468, 1, 0, 0, 0, 1466, 1464, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 59, 1, 0, 0, 0, 1468, 1466, 1, 0, 0, 0, 1469, 1471, 3, 76, 38, 0, 1470, 1469, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 1477, 3, 64, 32, 0, 1473, 1474, 5, 3, 0, 0, 1474, 1476, 3, 64, 32, 0, 1475, 1473, 1, 0, 0, 0, 1476, 1479, 1, 0, 0, 0, 1477, 1475, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 61, 1, 0, 0, 0, 1479, 1477, 1, 0, 0, 0, 1480, 1485, 3, 154, 77, 0, 1481, 1482, 5, 3, 0, 0, 1482, 1484, 3, 154, 77, 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, 63, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1488, 1529, 3, 66, 33, 0, 1489, 1490, 5, 239, 0, 0, 1490, 1499, 5, 1, 0, 0, 1491, 1496, 3, 66, 33, 0, 1492, 1493, 5, 3, 0, 0, 1493, 1495, 3, 66, 33, 0, 1494, 1492, 1, 0, 0, 0, 1495, 1498, 1, 0, 0, 0, 1496, 1494, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1500, 1, 0, 0, 0, 1498, 1496, 1, 0, 0, 0, 1499, 1491, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1529, 5, 2, 0, 0, 1502, 1503, 5, 56, 0, 0, 1503, 1512, 5, 1, 0, 0, 1504, 1509, 3, 66, 33, 0, 1505, 1506, 5, 3, 0, 0, 1506, 1508, 3, 66, 33, 0, 1507, 1505, 1, 0, 0, 0, 1508, 1511, 1, 0, 0, 0, 1509, 1507, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1513, 1, 0, 0, 0, 1511, 1509, 1, 0, 0, 0, 1512, 1504, 1, 0, 0, 0, 1512, 1513, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1529, 5, 2, 0, 0, 1515, 1516, 5, 116, 0, 0, 1516, 1517, 5, 253, 0, 0, 1517, 1518, 5, 1, 0, 0, 1518, 1523, 3, 66, 33, 0, 1519, 1520, 5, 3, 0, 0, 1520, 1522, 3, 66, 33, 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, 2, 0, 0, 1527, 1529, 1, 0, 0, 0, 1528, 1488, 1, 0, 0, 0, 1528, 1489, 1, 0, 0, 0, 1528, 1502, 1, 0, 0, 0, 1528, 1515, 1, 0, 0, 0, 1529, 65, 1, 0, 0, 0, 1530, 1539, 5, 1, 0, 0, 1531, 1536, 3, 68, 34, 0, 1532, 1533, 5, 3, 0, 0, 1533, 1535, 3, 68, 34, 0, 1534, 1532, 1, 0, 0, 0, 1535, 1538, 1, 0, 0, 0, 1536, 1534, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1540, 1, 0, 0, 0, 1538, 1536, 1, 0, 0, 0, 1539, 1531, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1544, 5, 2, 0, 0, 1542, 1544, 3, 68, 34, 0, 1543, 1530, 1, 0, 0, 0, 1543, 1542, 1, 0, 0, 0, 1544, 67, 1, 0, 0, 0, 1545, 1548, 3, 294, 147, 0, 1546, 1548, 3, 154, 77, 0, 1547, 1545, 1, 0, 0, 0, 1547, 1546, 1, 0, 0, 0, 1548, 69, 1, 0, 0, 0, 1549, 1550, 3, 314, 157, 0, 1550, 1551, 5, 28, 0, 0, 1551, 1552, 5, 1, 0, 0, 1552, 1553, 3, 72, 36, 0, 1553, 1554, 5, 2, 0, 0, 1554, 71, 1, 0, 0, 0, 1555, 1557, 3, 314, 157, 0, 1556, 1555, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1561, 1, 0, 0, 0, 1558, 1559, 5, 202, 0, 0, 1559, 1560, 5, 36, 0, 0, 1560, 1562, 3, 62, 31, 0, 1561, 1558, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 1573, 1, 0, 0, 0, 1563, 1564, 5, 196, 0, 0, 1564, 1565, 5, 36, 0, 0, 1565, 1570, 3, 50, 25, 0, 1566, 1567, 5, 3, 0, 0, 1567, 1569, 3, 50, 25, 0, 1568, 1566, 1, 0, 0, 0, 1569, 1572, 1, 0, 0, 0, 1570, 1568, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1574, 1, 0, 0, 0, 1572, 1570, 1, 0, 0, 0, 1573, 1563, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1576, 1, 0, 0, 0, 1575, 1577, 3, 216, 108, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 73, 1, 0, 0, 0, 1578, 1580, 3, 314, 157, 0, 1579, 1581, 3, 124, 62, 0, 1580, 1579, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1583, 5, 28, 0, 0, 1583, 1584, 5, 1, 0, 0, 1584, 1585, 3, 22, 11, 0, 1585, 1586, 5, 2, 0, 0, 1586, 75, 1, 0, 0, 0, 1587, 1588, 7, 10, 0, 0, 1588, 77, 1, 0, 0, 0, 1589, 1592, 3, 84, 42, 0, 1590, 1592, 3, 86, 43, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1590, 1, 0, 0, 0, 1592, 1597, 1, 0, 0, 0, 1593, 1595, 5, 28, 0, 0, 1594, 1593, 1, 0, 0, 0, 1594, 1595, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1598, 3, 314, 157, 0, 1597, 1594, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 1606, 1, 0, 0, 0, 1599, 1602, 3, 82, 41, 0, 1600, 1601, 5, 28, 0, 0, 1601, 1603, 3, 124, 62, 0, 1602, 1600, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1606, 1, 0, 0, 0, 1604, 1606, 3, 80, 40, 0, 1605, 1591, 1, 0, 0, 0, 1605, 1599, 1, 0, 0, 0, 1605, 1604, 1, 0, 0, 0, 1606, 79, 1, 0, 0, 0, 1607, 1608, 5, 321, 0, 0, 1608, 81, 1, 0, 0, 0, 1609, 1610, 3, 162, 81, 0, 1610, 1611, 5, 4, 0, 0, 1611, 1612, 5, 321, 0, 0, 1612, 83, 1, 0, 0, 0, 1613, 1614, 3, 294, 147, 0, 1614, 85, 1, 0, 0, 0, 1615, 1616, 3, 154, 77, 0, 1616, 87, 1, 0, 0, 0, 1617, 1618, 6, 44, -1, 0, 1618, 1619, 3, 94, 47, 0, 1619, 1638, 1, 0, 0, 0, 1620, 1634, 10, 2, 0, 0, 1621, 1622, 5, 55, 0, 0, 1622, 1623, 5, 137, 0, 0, 1623, 1635, 3, 94, 47, 0, 1624, 1625, 3, 90, 45, 0, 1625, 1626, 5, 137, 0, 0, 1626, 1627, 3, 88, 44, 0, 1627, 1628, 3, 92, 46, 0, 1628, 1635, 1, 0, 0, 0, 1629, 1630, 5, 173, 0, 0, 1630, 1631, 3, 90, 45, 0, 1631, 1632, 5, 137, 0, 0, 1632, 1633, 3, 94, 47, 0, 1633, 1635, 1, 0, 0, 0, 1634, 1621, 1, 0, 0, 0, 1634, 1624, 1, 0, 0, 0, 1634, 1629, 1, 0, 0, 0, 1635, 1637, 1, 0, 0, 0, 1636, 1620, 1, 0, 0, 0, 1637, 1640, 1, 0, 0, 0, 1638, 1636, 1, 0, 0, 0, 1638, 1639, 1, 0, 0, 0, 1639, 89, 1, 0, 0, 0, 1640, 1638, 1, 0, 0, 0, 1641, 1643, 5, 126, 0, 0, 1642, 1641, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1657, 1, 0, 0, 0, 1644, 1646, 5, 153, 0, 0, 1645, 1647, 5, 198, 0, 0, 1646, 1645, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1657, 1, 0, 0, 0, 1648, 1650, 5, 235, 0, 0, 1649, 1651, 5, 198, 0, 0, 1650, 1649, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1657, 1, 0, 0, 0, 1652, 1654, 5, 107, 0, 0, 1653, 1655, 5, 198, 0, 0, 1654, 1653, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1657, 1, 0, 0, 0, 1656, 1642, 1, 0, 0, 0, 1656, 1644, 1, 0, 0, 0, 1656, 1648, 1, 0, 0, 0, 1656, 1652, 1, 0, 0, 0, 1657, 91, 1, 0, 0, 0, 1658, 1659, 5, 191, 0, 0, 1659, 1673, 3, 156, 78, 0, 1660, 1661, 5, 291, 0, 0, 1661, 1662, 5, 1, 0, 0, 1662, 1667, 3, 314, 157, 0, 1663, 1664, 5, 3, 0, 0, 1664, 1666, 3, 314, 157, 0, 1665, 1663, 1, 0, 0, 0, 1666, 1669, 1, 0, 0, 0, 1667, 1665, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 1670, 1, 0, 0, 0, 1669, 1667, 1, 0, 0, 0, 1670, 1671, 5, 2, 0, 0, 1671, 1673, 1, 0, 0, 0, 1672, 1658, 1, 0, 0, 0, 1672, 1660, 1, 0, 0, 0, 1673, 93, 1, 0, 0, 0, 1674, 1681, 3, 104, 52, 0, 1675, 1676, 5, 263, 0, 0, 1676, 1677, 3, 96, 48, 0, 1677, 1678, 5, 1, 0, 0, 1678, 1679, 3, 154, 77, 0, 1679, 1680, 5, 2, 0, 0, 1680, 1682, 1, 0, 0, 0, 1681, 1675, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 95, 1, 0, 0, 0, 1683, 1684, 7, 11, 0, 0, 1684, 97, 1, 0, 0, 0, 1685, 1686, 7, 12, 0, 0, 1686, 99, 1, 0, 0, 0, 1687, 1694, 5, 90, 0, 0, 1688, 1690, 5, 275, 0, 0, 1689, 1691, 3, 186, 93, 0, 1690, 1689, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1694, 3, 102, 51, 0, 1693, 1687, 1, 0, 0, 0, 1693, 1688, 1, 0, 0, 0, 1694, 101, 1, 0, 0, 0, 1695, 1696, 5, 305, 0, 0, 1696, 1700, 5, 52, 0, 0, 1697, 1698, 5, 307, 0, 0, 1698, 1700, 5, 52, 0, 0, 1699, 1695, 1, 0, 0, 0, 1699, 1697, 1, 0, 0, 0, 1700, 103, 1, 0, 0, 0, 1701, 1777, 3, 118, 59, 0, 1702, 1703, 5, 167, 0, 0, 1703, 1707, 5, 1, 0, 0, 1704, 1705, 5, 202, 0, 0, 1705, 1706, 5, 36, 0, 0, 1706, 1708, 3, 62, 31, 0, 1707, 1704, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1719, 1, 0, 0, 0, 1709, 1710, 5, 196, 0, 0, 1710, 1711, 5, 36, 0, 0, 1711, 1716, 3, 50, 25, 0, 1712, 1713, 5, 3, 0, 0, 1713, 1715, 3, 50, 25, 0, 1714, 1712, 1, 0, 0, 0, 1715, 1718, 1, 0, 0, 0, 1716, 1714, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1720, 1, 0, 0, 0, 1718, 1716, 1, 0, 0, 0, 1719, 1709, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1730, 1, 0, 0, 0, 1721, 1722, 5, 169, 0, 0, 1722, 1727, 3, 106, 53, 0, 1723, 1724, 5, 3, 0, 0, 1724, 1726, 3, 106, 53, 0, 1725, 1723, 1, 0, 0, 0, 1726, 1729, 1, 0, 0, 0, 1727, 1725, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1731, 1, 0, 0, 0, 1729, 1727, 1, 0, 0, 0, 1730, 1721, 1, 0, 0, 0, 1730, 1731, 1, 0, 0, 0, 1731, 1733, 1, 0, 0, 0, 1732, 1734, 3, 108, 54, 0, 1733, 1732, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 1738, 1, 0, 0, 0, 1735, 1736, 5, 21, 0, 0, 1736, 1737, 5, 164, 0, 0, 1737, 1739, 3, 112, 56, 0, 1738, 1735, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1741, 1, 0, 0, 0, 1740, 1742, 7, 13, 0, 0, 1741, 1740, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1744, 5, 207, 0, 0, 1744, 1745, 5, 1, 0, 0, 1745, 1746, 3, 222, 111, 0, 1746, 1756, 5, 2, 0, 0, 1747, 1748, 5, 258, 0, 0, 1748, 1753, 3, 114, 57, 0, 1749, 1750, 5, 3, 0, 0, 1750, 1752, 3, 114, 57, 0, 1751, 1749, 1, 0, 0, 0, 1752, 1755, 1, 0, 0, 0, 1753, 1751, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1757, 1, 0, 0, 0, 1755, 1753, 1, 0, 0, 0, 1756, 1747, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 5, 72, 0, 0, 1759, 1764, 3, 116, 58, 0, 1760, 1761, 5, 3, 0, 0, 1761, 1763, 3, 116, 58, 0, 1762, 1760, 1, 0, 0, 0, 1763, 1766, 1, 0, 0, 0, 1764, 1762, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1767, 1, 0, 0, 0, 1766, 1764, 1, 0, 0, 0, 1767, 1775, 5, 2, 0, 0, 1768, 1770, 5, 28, 0, 0, 1769, 1768, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1773, 3, 314, 157, 0, 1772, 1774, 3, 124, 62, 0, 1773, 1772, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1776, 1, 0, 0, 0, 1775, 1769, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1778, 1, 0, 0, 0, 1777, 1702, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 105, 1, 0, 0, 0, 1779, 1780, 3, 154, 77, 0, 1780, 1781, 5, 28, 0, 0, 1781, 1782, 3, 314, 157, 0, 1782, 107, 1, 0, 0, 0, 1783, 1784, 5, 192, 0, 0, 1784, 1785, 5, 240, 0, 0, 1785, 1786, 5, 208, 0, 0, 1786, 1795, 5, 164, 0, 0, 1787, 1788, 5, 22, 0, 0, 1788, 1789, 5, 241, 0, 0, 1789, 1790, 5, 208, 0, 0, 1790, 1792, 5, 164, 0, 0, 1791, 1793, 3, 110, 55, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1795, 1, 0, 0, 0, 1794, 1783, 1, 0, 0, 0, 1794, 1787, 1, 0, 0, 0, 1795, 109, 1, 0, 0, 0, 1796, 1797, 5, 254, 0, 0, 1797, 1798, 5, 86, 0, 0, 1798, 1806, 5, 166, 0, 0, 1799, 1800, 5, 190, 0, 0, 1800, 1801, 5, 86, 0, 0, 1801, 1806, 5, 166, 0, 0, 1802, 1803, 5, 305, 0, 0, 1803, 1804, 5, 285, 0, 0, 1804, 1806, 5, 241, 0, 0, 1805, 1796, 1, 0, 0, 0, 1805, 1799, 1, 0, 0, 0, 1805, 1802, 1, 0, 0, 0, 1806, 111, 1, 0, 0, 0, 1807, 1808, 5, 5, 0, 0, 1808, 1809, 5, 270, 0, 0, 1809, 1810, 5, 175, 0, 0, 1810, 1827, 5, 240, 0, 0, 1811, 1812, 5, 5, 0, 0, 1812, 1813, 5, 205, 0, 0, 1813, 1814, 5, 149, 0, 0, 1814, 1827, 5, 240, 0, 0, 1815, 1816, 5, 5, 0, 0, 1816, 1817, 5, 270, 0, 0, 1817, 1818, 5, 102, 0, 0, 1818, 1827, 3, 314, 157, 0, 1819, 1820, 5, 5, 0, 0, 1820, 1821, 5, 270, 0, 0, 1821, 1822, 5, 149, 0, 0, 1822, 1827, 3, 314, 157, 0, 1823, 1824, 5, 5, 0, 0, 1824, 1825, 5, 270, 0, 0, 1825, 1827, 3, 314, 157, 0, 1826, 1807, 1, 0, 0, 0, 1826, 1811, 1, 0, 0, 0, 1826, 1815, 1, 0, 0, 0, 1826, 1819, 1, 0, 0, 0, 1826, 1823, 1, 0, 0, 0, 1827, 113, 1, 0, 0, 0, 1828, 1829, 3, 314, 157, 0, 1829, 1830, 5, 313, 0, 0, 1830, 1831, 5, 1, 0, 0, 1831, 1836, 3, 314, 157, 0, 1832, 1833, 5, 3, 0, 0, 1833, 1835, 3, 314, 157, 0, 1834, 1832, 1, 0, 0, 0, 1835, 1838, 1, 0, 0, 0, 1836, 1834, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1839, 1, 0, 0, 0, 1838, 1836, 1, 0, 0, 0, 1839, 1840, 5, 2, 0, 0, 1840, 115, 1, 0, 0, 0, 1841, 1842, 3, 314, 157, 0, 1842, 1843, 5, 28, 0, 0, 1843, 1844, 3, 154, 77, 0, 1844, 117, 1, 0, 0, 0, 1845, 1853, 3, 126, 63, 0, 1846, 1848, 5, 28, 0, 0, 1847, 1846, 1, 0, 0, 0, 1847, 1848, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1851, 3, 314, 157, 0, 1850, 1852, 3, 124, 62, 0, 1851, 1850, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1854, 1, 0, 0, 0, 1853, 1847, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 119, 1, 0, 0, 0, 1855, 1856, 5, 1, 0, 0, 1856, 1861, 3, 298, 149, 0, 1857, 1858, 5, 3, 0, 0, 1858, 1860, 3, 298, 149, 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, 2, 0, 0, 1865, 121, 1, 0, 0, 0, 1866, 1867, 5, 1, 0, 0, 1867, 1872, 3, 294, 147, 0, 1868, 1869, 5, 3, 0, 0, 1869, 1871, 3, 294, 147, 0, 1870, 1868, 1, 0, 0, 0, 1871, 1874, 1, 0, 0, 0, 1872, 1870, 1, 0, 0, 0, 1872, 1873, 1, 0, 0, 0, 1873, 1875, 1, 0, 0, 0, 1874, 1872, 1, 0, 0, 0, 1875, 1876, 5, 2, 0, 0, 1876, 123, 1, 0, 0, 0, 1877, 1878, 5, 1, 0, 0, 1878, 1883, 3, 314, 157, 0, 1879, 1880, 5, 3, 0, 0, 1880, 1882, 3, 314, 157, 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, 2, 0, 0, 1887, 125, 1, 0, 0, 0, 1888, 1890, 3, 272, 136, 0, 1889, 1891, 3, 302, 151, 0, 1890, 1889, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1898, 1, 0, 0, 0, 1892, 1898, 3, 128, 64, 0, 1893, 1894, 5, 1, 0, 0, 1894, 1895, 3, 88, 44, 0, 1895, 1896, 5, 2, 0, 0, 1896, 1898, 1, 0, 0, 0, 1897, 1888, 1, 0, 0, 0, 1897, 1892, 1, 0, 0, 0, 1897, 1893, 1, 0, 0, 0, 1898, 127, 1, 0, 0, 0, 1899, 1900, 5, 1, 0, 0, 1900, 1901, 3, 22, 11, 0, 1901, 1902, 5, 2, 0, 0, 1902, 1963, 1, 0, 0, 0, 1903, 1904, 5, 286, 0, 0, 1904, 1905, 5, 1, 0, 0, 1905, 1910, 3, 154, 77, 0, 1906, 1907, 5, 3, 0, 0, 1907, 1909, 3, 154, 77, 0, 1908, 1906, 1, 0, 0, 0, 1909, 1912, 1, 0, 0, 0, 1910, 1908, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1913, 1, 0, 0, 0, 1912, 1910, 1, 0, 0, 0, 1913, 1916, 5, 2, 0, 0, 1914, 1915, 5, 305, 0, 0, 1915, 1917, 5, 197, 0, 0, 1916, 1914, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1963, 1, 0, 0, 0, 1918, 1919, 5, 150, 0, 0, 1919, 1920, 5, 1, 0, 0, 1920, 1921, 3, 22, 11, 0, 1921, 1922, 5, 2, 0, 0, 1922, 1963, 1, 0, 0, 0, 1923, 1924, 5, 261, 0, 0, 1924, 1925, 5, 1, 0, 0, 1925, 1926, 3, 140, 70, 0, 1926, 1927, 5, 2, 0, 0, 1927, 1963, 1, 0, 0, 0, 1928, 1929, 5, 143, 0, 0, 1929, 1930, 5, 1, 0, 0, 1930, 1931, 3, 164, 82, 0, 1931, 1932, 5, 46, 0, 0, 1932, 1933, 5, 1, 0, 0, 1933, 1938, 3, 130, 65, 0, 1934, 1935, 5, 3, 0, 0, 1935, 1937, 3, 130, 65, 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, 1953, 5, 2, 0, 0, 1942, 1943, 5, 211, 0, 0, 1943, 1944, 5, 1, 0, 0, 1944, 1945, 3, 132, 66, 0, 1945, 1946, 5, 2, 0, 0, 1946, 1954, 1, 0, 0, 0, 1947, 1948, 5, 211, 0, 0, 1948, 1949, 5, 71, 0, 0, 1949, 1950, 5, 1, 0, 0, 1950, 1951, 3, 138, 69, 0, 1951, 1952, 5, 2, 0, 0, 1952, 1954, 1, 0, 0, 0, 1953, 1942, 1, 0, 0, 0, 1953, 1947, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1958, 1, 0, 0, 0, 1955, 1956, 7, 14, 0, 0, 1956, 1957, 5, 191, 0, 0, 1957, 1959, 5, 90, 0, 0, 1958, 1955, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1961, 5, 2, 0, 0, 1961, 1963, 1, 0, 0, 0, 1962, 1899, 1, 0, 0, 0, 1962, 1903, 1, 0, 0, 0, 1962, 1918, 1, 0, 0, 0, 1962, 1923, 1, 0, 0, 0, 1962, 1928, 1, 0, 0, 0, 1963, 129, 1, 0, 0, 0, 1964, 1965, 3, 314, 157, 0, 1965, 1966, 5, 104, 0, 0, 1966, 1967, 5, 197, 0, 0, 1967, 2042, 1, 0, 0, 0, 1968, 1969, 3, 314, 157, 0, 1969, 1972, 3, 202, 101, 0, 1970, 1971, 5, 206, 0, 0, 1971, 1973, 3, 186, 93, 0, 1972, 1970, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1978, 1, 0, 0, 0, 1974, 1975, 3, 174, 87, 0, 1975, 1976, 5, 191, 0, 0, 1976, 1977, 5, 86, 0, 0, 1977, 1979, 1, 0, 0, 0, 1978, 1974, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1984, 1, 0, 0, 0, 1980, 1981, 3, 174, 87, 0, 1981, 1982, 5, 191, 0, 0, 1982, 1983, 5, 90, 0, 0, 1983, 1985, 1, 0, 0, 0, 1984, 1980, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 2042, 1, 0, 0, 0, 1986, 1987, 3, 314, 157, 0, 1987, 1988, 3, 202, 101, 0, 1988, 1989, 5, 105, 0, 0, 1989, 1992, 3, 168, 84, 0, 1990, 1991, 5, 206, 0, 0, 1991, 1993, 3, 186, 93, 0, 1992, 1990, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1997, 1, 0, 0, 0, 1994, 1995, 3, 176, 88, 0, 1995, 1996, 5, 309, 0, 0, 1996, 1998, 1, 0, 0, 0, 1997, 1994, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 2006, 1, 0, 0, 0, 1999, 2000, 7, 15, 0, 0, 2000, 2004, 5, 219, 0, 0, 2001, 2002, 5, 191, 0, 0, 2002, 2003, 5, 243, 0, 0, 2003, 2005, 5, 265, 0, 0, 2004, 2001, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2007, 1, 0, 0, 0, 2006, 1999, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2012, 1, 0, 0, 0, 2008, 2009, 3, 178, 89, 0, 2009, 2010, 5, 191, 0, 0, 2010, 2011, 5, 86, 0, 0, 2011, 2013, 1, 0, 0, 0, 2012, 2008, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2018, 1, 0, 0, 0, 2014, 2015, 3, 178, 89, 0, 2015, 2016, 5, 191, 0, 0, 2016, 2017, 5, 90, 0, 0, 2017, 2019, 1, 0, 0, 0, 2018, 2014, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2042, 1, 0, 0, 0, 2020, 2022, 5, 174, 0, 0, 2021, 2023, 5, 206, 0, 0, 2022, 2021, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2027, 3, 186, 93, 0, 2025, 2026, 5, 28, 0, 0, 2026, 2028, 3, 314, 157, 0, 2027, 2025, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2030, 5, 46, 0, 0, 2030, 2031, 5, 1, 0, 0, 2031, 2036, 3, 130, 65, 0, 2032, 2033, 5, 3, 0, 0, 2033, 2035, 3, 130, 65, 0, 2034, 2032, 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, 2040, 5, 2, 0, 0, 2040, 2042, 1, 0, 0, 0, 2041, 1964, 1, 0, 0, 0, 2041, 1968, 1, 0, 0, 0, 2041, 1986, 1, 0, 0, 0, 2041, 2020, 1, 0, 0, 0, 2042, 131, 1, 0, 0, 0, 2043, 2069, 3, 134, 67, 0, 2044, 2045, 3, 134, 67, 0, 2045, 2046, 7, 16, 0, 0, 2046, 2047, 3, 136, 68, 0, 2047, 2069, 1, 0, 0, 0, 2048, 2049, 3, 136, 68, 0, 2049, 2050, 5, 282, 0, 0, 2050, 2055, 3, 136, 68, 0, 2051, 2052, 5, 282, 0, 0, 2052, 2054, 3, 136, 68, 0, 2053, 2051, 1, 0, 0, 0, 2054, 2057, 1, 0, 0, 0, 2055, 2053, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2069, 1, 0, 0, 0, 2057, 2055, 1, 0, 0, 0, 2058, 2059, 3, 136, 68, 0, 2059, 2060, 5, 55, 0, 0, 2060, 2065, 3, 136, 68, 0, 2061, 2062, 5, 55, 0, 0, 2062, 2064, 3, 136, 68, 0, 2063, 2061, 1, 0, 0, 0, 2064, 2067, 1, 0, 0, 0, 2065, 2063, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2069, 1, 0, 0, 0, 2067, 2065, 1, 0, 0, 0, 2068, 2043, 1, 0, 0, 0, 2068, 2044, 1, 0, 0, 0, 2068, 2048, 1, 0, 0, 0, 2068, 2058, 1, 0, 0, 0, 2069, 133, 1, 0, 0, 0, 2070, 2071, 3, 314, 157, 0, 2071, 135, 1, 0, 0, 0, 2072, 2078, 3, 134, 67, 0, 2073, 2074, 5, 1, 0, 0, 2074, 2075, 3, 132, 66, 0, 2075, 2076, 5, 2, 0, 0, 2076, 2078, 1, 0, 0, 0, 2077, 2072, 1, 0, 0, 0, 2077, 2073, 1, 0, 0, 0, 2078, 137, 1, 0, 0, 0, 2079, 2082, 7, 16, 0, 0, 2080, 2081, 5, 3, 0, 0, 2081, 2083, 7, 17, 0, 0, 2082, 2080, 1, 0, 0, 0, 2082, 2083, 1, 0, 0, 0, 2083, 2090, 1, 0, 0, 0, 2084, 2087, 7, 17, 0, 0, 2085, 2086, 5, 3, 0, 0, 2086, 2088, 7, 16, 0, 0, 2087, 2085, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2090, 1, 0, 0, 0, 2089, 2079, 1, 0, 0, 0, 2089, 2084, 1, 0, 0, 0, 2090, 139, 1, 0, 0, 0, 2091, 2092, 3, 290, 145, 0, 2092, 2101, 5, 1, 0, 0, 2093, 2098, 3, 142, 71, 0, 2094, 2095, 5, 3, 0, 0, 2095, 2097, 3, 142, 71, 0, 2096, 2094, 1, 0, 0, 0, 2097, 2100, 1, 0, 0, 0, 2098, 2096, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2102, 1, 0, 0, 0, 2100, 2098, 1, 0, 0, 0, 2101, 2093, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2112, 1, 0, 0, 0, 2103, 2104, 5, 53, 0, 0, 2104, 2109, 3, 152, 76, 0, 2105, 2106, 5, 3, 0, 0, 2106, 2108, 3, 152, 76, 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, 2113, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2112, 2103, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2115, 5, 2, 0, 0, 2115, 141, 1, 0, 0, 0, 2116, 2117, 3, 314, 157, 0, 2117, 2118, 5, 6, 0, 0, 2118, 2120, 1, 0, 0, 0, 2119, 2116, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2124, 1, 0, 0, 0, 2121, 2125, 3, 144, 72, 0, 2122, 2125, 3, 148, 74, 0, 2123, 2125, 3, 154, 77, 0, 2124, 2121, 1, 0, 0, 0, 2124, 2122, 1, 0, 0, 0, 2124, 2123, 1, 0, 0, 0, 2125, 143, 1, 0, 0, 0, 2126, 2137, 3, 146, 73, 0, 2127, 2128, 5, 202, 0, 0, 2128, 2135, 5, 36, 0, 0, 2129, 2131, 5, 1, 0, 0, 2130, 2132, 3, 62, 31, 0, 2131, 2130, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 2136, 5, 2, 0, 0, 2134, 2136, 3, 154, 77, 0, 2135, 2129, 1, 0, 0, 0, 2135, 2134, 1, 0, 0, 0, 2136, 2138, 1, 0, 0, 0, 2137, 2127, 1, 0, 0, 0, 2137, 2138, 1, 0, 0, 0, 2138, 2145, 1, 0, 0, 0, 2139, 2140, 5, 218, 0, 0, 2140, 2141, 5, 301, 0, 0, 2141, 2146, 5, 86, 0, 0, 2142, 2143, 5, 145, 0, 0, 2143, 2144, 5, 301, 0, 0, 2144, 2146, 5, 86, 0, 0, 2145, 2139, 1, 0, 0, 0, 2145, 2142, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2163, 1, 0, 0, 0, 2147, 2148, 5, 196, 0, 0, 2148, 2161, 5, 36, 0, 0, 2149, 2150, 5, 1, 0, 0, 2150, 2155, 3, 50, 25, 0, 2151, 2152, 5, 3, 0, 0, 2152, 2154, 3, 50, 25, 0, 2153, 2151, 1, 0, 0, 0, 2154, 2157, 1, 0, 0, 0, 2155, 2153, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2156, 2158, 1, 0, 0, 0, 2157, 2155, 1, 0, 0, 0, 2158, 2159, 5, 2, 0, 0, 2159, 2162, 1, 0, 0, 0, 2160, 2162, 3, 50, 25, 0, 2161, 2149, 1, 0, 0, 0, 2161, 2160, 1, 0, 0, 0, 2162, 2164, 1, 0, 0, 0, 2163, 2147, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 145, 1, 0, 0, 0, 2165, 2166, 5, 261, 0, 0, 2166, 2167, 5, 1, 0, 0, 2167, 2168, 3, 274, 137, 0, 2168, 2176, 5, 2, 0, 0, 2169, 2171, 5, 28, 0, 0, 2170, 2169, 1, 0, 0, 0, 2170, 2171, 1, 0, 0, 0, 2171, 2172, 1, 0, 0, 0, 2172, 2174, 3, 314, 157, 0, 2173, 2175, 3, 124, 62, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2177, 1, 0, 0, 0, 2176, 2170, 1, 0, 0, 0, 2176, 2177, 1, 0, 0, 0, 2177, 2192, 1, 0, 0, 0, 2178, 2179, 5, 261, 0, 0, 2179, 2180, 5, 1, 0, 0, 2180, 2181, 3, 22, 11, 0, 2181, 2189, 5, 2, 0, 0, 2182, 2184, 5, 28, 0, 0, 2183, 2182, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2187, 3, 314, 157, 0, 2186, 2188, 3, 124, 62, 0, 2187, 2186, 1, 0, 0, 0, 2187, 2188, 1, 0, 0, 0, 2188, 2190, 1, 0, 0, 0, 2189, 2183, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2192, 1, 0, 0, 0, 2191, 2165, 1, 0, 0, 0, 2191, 2178, 1, 0, 0, 0, 2192, 147, 1, 0, 0, 0, 2193, 2194, 5, 78, 0, 0, 2194, 2195, 5, 1, 0, 0, 2195, 2200, 3, 150, 75, 0, 2196, 2197, 5, 3, 0, 0, 2197, 2199, 3, 150, 75, 0, 2198, 2196, 1, 0, 0, 0, 2199, 2202, 1, 0, 0, 0, 2200, 2198, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 2203, 1, 0, 0, 0, 2202, 2200, 1, 0, 0, 0, 2203, 2204, 5, 2, 0, 0, 2204, 2212, 1, 0, 0, 0, 2205, 2206, 5, 41, 0, 0, 2206, 2207, 5, 1, 0, 0, 2207, 2208, 5, 184, 0, 0, 2208, 2209, 5, 28, 0, 0, 2209, 2210, 5, 78, 0, 0, 2210, 2212, 5, 2, 0, 0, 2211, 2193, 1, 0, 0, 0, 2211, 2205, 1, 0, 0, 0, 2212, 149, 1, 0, 0, 0, 2213, 2215, 3, 314, 157, 0, 2214, 2216, 3, 202, 101, 0, 2215, 2214, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 151, 1, 0, 0, 0, 2217, 2218, 5, 1, 0, 0, 2218, 2219, 3, 300, 150, 0, 2219, 2220, 5, 3, 0, 0, 2220, 2225, 3, 300, 150, 0, 2221, 2222, 5, 3, 0, 0, 2222, 2224, 3, 300, 150, 0, 2223, 2221, 1, 0, 0, 0, 2224, 2227, 1, 0, 0, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2228, 1, 0, 0, 0, 2227, 2225, 1, 0, 0, 0, 2228, 2229, 5, 2, 0, 0, 2229, 153, 1, 0, 0, 0, 2230, 2231, 3, 156, 78, 0, 2231, 155, 1, 0, 0, 0, 2232, 2233, 6, 78, -1, 0, 2233, 2235, 3, 160, 80, 0, 2234, 2236, 3, 158, 79, 0, 2235, 2234, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2240, 1, 0, 0, 0, 2237, 2238, 5, 183, 0, 0, 2238, 2240, 3, 156, 78, 3, 2239, 2232, 1, 0, 0, 0, 2239, 2237, 1, 0, 0, 0, 2240, 2249, 1, 0, 0, 0, 2241, 2242, 10, 2, 0, 0, 2242, 2243, 5, 25, 0, 0, 2243, 2248, 3, 156, 78, 3, 2244, 2245, 10, 1, 0, 0, 2245, 2246, 5, 195, 0, 0, 2246, 2248, 3, 156, 78, 2, 2247, 2241, 1, 0, 0, 0, 2247, 2244, 1, 0, 0, 0, 2248, 2251, 1, 0, 0, 0, 2249, 2247, 1, 0, 0, 0, 2249, 2250, 1, 0, 0, 0, 2250, 157, 1, 0, 0, 0, 2251, 2249, 1, 0, 0, 0, 2252, 2253, 3, 190, 95, 0, 2253, 2254, 3, 160, 80, 0, 2254, 2314, 1, 0, 0, 0, 2255, 2256, 3, 190, 95, 0, 2256, 2257, 3, 192, 96, 0, 2257, 2258, 5, 1, 0, 0, 2258, 2259, 3, 22, 11, 0, 2259, 2260, 5, 2, 0, 0, 2260, 2314, 1, 0, 0, 0, 2261, 2263, 5, 183, 0, 0, 2262, 2261, 1, 0, 0, 0, 2262, 2263, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 2265, 5, 34, 0, 0, 2265, 2266, 3, 160, 80, 0, 2266, 2267, 5, 25, 0, 0, 2267, 2268, 3, 160, 80, 0, 2268, 2314, 1, 0, 0, 0, 2269, 2271, 5, 183, 0, 0, 2270, 2269, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2273, 5, 123, 0, 0, 2273, 2274, 5, 1, 0, 0, 2274, 2279, 3, 154, 77, 0, 2275, 2276, 5, 3, 0, 0, 2276, 2278, 3, 154, 77, 0, 2277, 2275, 1, 0, 0, 0, 2278, 2281, 1, 0, 0, 0, 2279, 2277, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 2282, 1, 0, 0, 0, 2281, 2279, 1, 0, 0, 0, 2282, 2283, 5, 2, 0, 0, 2283, 2314, 1, 0, 0, 0, 2284, 2286, 5, 183, 0, 0, 2285, 2284, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2288, 5, 123, 0, 0, 2288, 2289, 5, 1, 0, 0, 2289, 2290, 3, 22, 11, 0, 2290, 2291, 5, 2, 0, 0, 2291, 2314, 1, 0, 0, 0, 2292, 2294, 5, 183, 0, 0, 2293, 2292, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2296, 5, 155, 0, 0, 2296, 2299, 3, 160, 80, 0, 2297, 2298, 5, 91, 0, 0, 2298, 2300, 3, 160, 80, 0, 2299, 2297, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 2314, 1, 0, 0, 0, 2301, 2303, 5, 134, 0, 0, 2302, 2304, 5, 183, 0, 0, 2303, 2302, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2314, 5, 184, 0, 0, 2306, 2308, 5, 134, 0, 0, 2307, 2309, 5, 183, 0, 0, 2308, 2307, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 2310, 1, 0, 0, 0, 2310, 2311, 5, 80, 0, 0, 2311, 2312, 5, 106, 0, 0, 2312, 2314, 3, 160, 80, 0, 2313, 2252, 1, 0, 0, 0, 2313, 2255, 1, 0, 0, 0, 2313, 2262, 1, 0, 0, 0, 2313, 2270, 1, 0, 0, 0, 2313, 2285, 1, 0, 0, 0, 2313, 2293, 1, 0, 0, 0, 2313, 2301, 1, 0, 0, 0, 2313, 2306, 1, 0, 0, 0, 2314, 159, 1, 0, 0, 0, 2315, 2316, 6, 80, -1, 0, 2316, 2320, 3, 162, 81, 0, 2317, 2318, 7, 18, 0, 0, 2318, 2320, 3, 160, 80, 4, 2319, 2315, 1, 0, 0, 0, 2319, 2317, 1, 0, 0, 0, 2320, 2335, 1, 0, 0, 0, 2321, 2322, 10, 3, 0, 0, 2322, 2323, 7, 19, 0, 0, 2323, 2334, 3, 160, 80, 4, 2324, 2325, 10, 2, 0, 0, 2325, 2326, 7, 18, 0, 0, 2326, 2334, 3, 160, 80, 3, 2327, 2328, 10, 1, 0, 0, 2328, 2329, 5, 324, 0, 0, 2329, 2334, 3, 160, 80, 2, 2330, 2331, 10, 5, 0, 0, 2331, 2332, 5, 30, 0, 0, 2332, 2334, 3, 188, 94, 0, 2333, 2321, 1, 0, 0, 0, 2333, 2324, 1, 0, 0, 0, 2333, 2327, 1, 0, 0, 0, 2333, 2330, 1, 0, 0, 0, 2334, 2337, 1, 0, 0, 0, 2335, 2333, 1, 0, 0, 0, 2335, 2336, 1, 0, 0, 0, 2336, 161, 1, 0, 0, 0, 2337, 2335, 1, 0, 0, 0, 2338, 2339, 6, 81, -1, 0, 2339, 2804, 5, 184, 0, 0, 2340, 2804, 3, 196, 98, 0, 2341, 2342, 3, 314, 157, 0, 2342, 2343, 3, 186, 93, 0, 2343, 2804, 1, 0, 0, 0, 2344, 2345, 5, 83, 0, 0, 2345, 2346, 5, 214, 0, 0, 2346, 2804, 3, 186, 93, 0, 2347, 2804, 3, 316, 158, 0, 2348, 2804, 3, 194, 97, 0, 2349, 2804, 3, 186, 93, 0, 2350, 2804, 5, 329, 0, 0, 2351, 2804, 5, 325, 0, 0, 2352, 2353, 5, 212, 0, 0, 2353, 2354, 5, 1, 0, 0, 2354, 2355, 3, 160, 80, 0, 2355, 2356, 5, 123, 0, 0, 2356, 2357, 3, 160, 80, 0, 2357, 2358, 5, 2, 0, 0, 2358, 2804, 1, 0, 0, 0, 2359, 2360, 5, 1, 0, 0, 2360, 2363, 3, 154, 77, 0, 2361, 2362, 5, 3, 0, 0, 2362, 2364, 3, 154, 77, 0, 2363, 2361, 1, 0, 0, 0, 2364, 2365, 1, 0, 0, 0, 2365, 2363, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, 2368, 5, 2, 0, 0, 2368, 2804, 1, 0, 0, 0, 2369, 2370, 5, 240, 0, 0, 2370, 2371, 5, 1, 0, 0, 2371, 2376, 3, 154, 77, 0, 2372, 2373, 5, 3, 0, 0, 2373, 2375, 3, 154, 77, 0, 2374, 2372, 1, 0, 0, 0, 2375, 2378, 1, 0, 0, 0, 2376, 2374, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2379, 1, 0, 0, 0, 2378, 2376, 1, 0, 0, 0, 2379, 2380, 5, 2, 0, 0, 2380, 2804, 1, 0, 0, 0, 2381, 2382, 5, 157, 0, 0, 2382, 2384, 5, 1, 0, 0, 2383, 2385, 3, 76, 38, 0, 2384, 2383, 1, 0, 0, 0, 2384, 2385, 1, 0, 0, 0, 2385, 2386, 1, 0, 0, 0, 2386, 2389, 3, 154, 77, 0, 2387, 2388, 5, 3, 0, 0, 2388, 2390, 3, 186, 93, 0, 2389, 2387, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2394, 1, 0, 0, 0, 2391, 2392, 5, 191, 0, 0, 2392, 2393, 5, 201, 0, 0, 2393, 2395, 3, 100, 50, 0, 2394, 2391, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 2397, 5, 2, 0, 0, 2397, 2398, 5, 306, 0, 0, 2398, 2399, 5, 115, 0, 0, 2399, 2400, 5, 1, 0, 0, 2400, 2401, 5, 196, 0, 0, 2401, 2402, 5, 36, 0, 0, 2402, 2407, 3, 50, 25, 0, 2403, 2404, 5, 3, 0, 0, 2404, 2406, 3, 50, 25, 0, 2405, 2403, 1, 0, 0, 0, 2406, 2409, 1, 0, 0, 0, 2407, 2405, 1, 0, 0, 0, 2407, 2408, 1, 0, 0, 0, 2408, 2410, 1, 0, 0, 0, 2409, 2407, 1, 0, 0, 0, 2410, 2411, 5, 2, 0, 0, 2411, 2413, 1, 0, 0, 0, 2412, 2414, 3, 210, 105, 0, 2413, 2412, 1, 0, 0, 0, 2413, 2414, 1, 0, 0, 0, 2414, 2804, 1, 0, 0, 0, 2415, 2417, 3, 182, 91, 0, 2416, 2415, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2419, 3, 290, 145, 0, 2419, 2423, 5, 1, 0, 0, 2420, 2421, 3, 314, 157, 0, 2421, 2422, 5, 4, 0, 0, 2422, 2424, 1, 0, 0, 0, 2423, 2420, 1, 0, 0, 0, 2423, 2424, 1, 0, 0, 0, 2424, 2425, 1, 0, 0, 0, 2425, 2426, 5, 321, 0, 0, 2426, 2428, 5, 2, 0, 0, 2427, 2429, 3, 210, 105, 0, 2428, 2427, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2431, 1, 0, 0, 0, 2430, 2432, 3, 214, 107, 0, 2431, 2430, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2804, 1, 0, 0, 0, 2433, 2435, 3, 182, 91, 0, 2434, 2433, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2437, 3, 290, 145, 0, 2437, 2449, 5, 1, 0, 0, 2438, 2440, 3, 76, 38, 0, 2439, 2438, 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 2441, 1, 0, 0, 0, 2441, 2446, 3, 154, 77, 0, 2442, 2443, 5, 3, 0, 0, 2443, 2445, 3, 154, 77, 0, 2444, 2442, 1, 0, 0, 0, 2445, 2448, 1, 0, 0, 0, 2446, 2444, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2450, 1, 0, 0, 0, 2448, 2446, 1, 0, 0, 0, 2449, 2439, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 2461, 1, 0, 0, 0, 2451, 2452, 5, 196, 0, 0, 2452, 2453, 5, 36, 0, 0, 2453, 2458, 3, 50, 25, 0, 2454, 2455, 5, 3, 0, 0, 2455, 2457, 3, 50, 25, 0, 2456, 2454, 1, 0, 0, 0, 2457, 2460, 1, 0, 0, 0, 2458, 2456, 1, 0, 0, 0, 2458, 2459, 1, 0, 0, 0, 2459, 2462, 1, 0, 0, 0, 2460, 2458, 1, 0, 0, 0, 2461, 2451, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2465, 5, 2, 0, 0, 2464, 2466, 3, 210, 105, 0, 2465, 2464, 1, 0, 0, 0, 2465, 2466, 1, 0, 0, 0, 2466, 2471, 1, 0, 0, 0, 2467, 2469, 3, 184, 92, 0, 2468, 2467, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2472, 3, 214, 107, 0, 2471, 2468, 1, 0, 0, 0, 2471, 2472, 1, 0, 0, 0, 2472, 2804, 1, 0, 0, 0, 2473, 2474, 3, 314, 157, 0, 2474, 2475, 3, 214, 107, 0, 2475, 2804, 1, 0, 0, 0, 2476, 2477, 3, 314, 157, 0, 2477, 2478, 5, 7, 0, 0, 2478, 2479, 3, 154, 77, 0, 2479, 2804, 1, 0, 0, 0, 2480, 2489, 5, 1, 0, 0, 2481, 2486, 3, 314, 157, 0, 2482, 2483, 5, 3, 0, 0, 2483, 2485, 3, 314, 157, 0, 2484, 2482, 1, 0, 0, 0, 2485, 2488, 1, 0, 0, 0, 2486, 2484, 1, 0, 0, 0, 2486, 2487, 1, 0, 0, 0, 2487, 2490, 1, 0, 0, 0, 2488, 2486, 1, 0, 0, 0, 2489, 2481, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2492, 5, 2, 0, 0, 2492, 2493, 5, 7, 0, 0, 2493, 2804, 3, 154, 77, 0, 2494, 2495, 5, 1, 0, 0, 2495, 2496, 3, 22, 11, 0, 2496, 2497, 5, 2, 0, 0, 2497, 2804, 1, 0, 0, 0, 2498, 2499, 5, 95, 0, 0, 2499, 2500, 5, 1, 0, 0, 2500, 2501, 3, 22, 11, 0, 2501, 2502, 5, 2, 0, 0, 2502, 2804, 1, 0, 0, 0, 2503, 2504, 5, 40, 0, 0, 2504, 2506, 3, 154, 77, 0, 2505, 2507, 3, 208, 104, 0, 2506, 2505, 1, 0, 0, 0, 2507, 2508, 1, 0, 0, 0, 2508, 2506, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2512, 1, 0, 0, 0, 2510, 2511, 5, 85, 0, 0, 2511, 2513, 3, 154, 77, 0, 2512, 2510, 1, 0, 0, 0, 2512, 2513, 1, 0, 0, 0, 2513, 2514, 1, 0, 0, 0, 2514, 2515, 5, 89, 0, 0, 2515, 2804, 1, 0, 0, 0, 2516, 2518, 5, 40, 0, 0, 2517, 2519, 3, 208, 104, 0, 2518, 2517, 1, 0, 0, 0, 2519, 2520, 1, 0, 0, 0, 2520, 2518, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 2524, 1, 0, 0, 0, 2522, 2523, 5, 85, 0, 0, 2523, 2525, 3, 154, 77, 0, 2524, 2522, 1, 0, 0, 0, 2524, 2525, 1, 0, 0, 0, 2525, 2526, 1, 0, 0, 0, 2526, 2527, 5, 89, 0, 0, 2527, 2804, 1, 0, 0, 0, 2528, 2529, 5, 41, 0, 0, 2529, 2530, 5, 1, 0, 0, 2530, 2531, 3, 154, 77, 0, 2531, 2532, 5, 28, 0, 0, 2532, 2533, 3, 202, 101, 0, 2533, 2534, 5, 2, 0, 0, 2534, 2804, 1, 0, 0, 0, 2535, 2536, 5, 276, 0, 0, 2536, 2537, 5, 1, 0, 0, 2537, 2538, 3, 154, 77, 0, 2538, 2539, 5, 28, 0, 0, 2539, 2540, 3, 202, 101, 0, 2540, 2541, 5, 2, 0, 0, 2541, 2804, 1, 0, 0, 0, 2542, 2543, 5, 27, 0, 0, 2543, 2552, 5, 8, 0, 0, 2544, 2549, 3, 154, 77, 0, 2545, 2546, 5, 3, 0, 0, 2546, 2548, 3, 154, 77, 0, 2547, 2545, 1, 0, 0, 0, 2548, 2551, 1, 0, 0, 0, 2549, 2547, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2553, 1, 0, 0, 0, 2551, 2549, 1, 0, 0, 0, 2552, 2544, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2804, 5, 9, 0, 0, 2555, 2804, 3, 296, 148, 0, 2556, 2804, 5, 59, 0, 0, 2557, 2561, 5, 63, 0, 0, 2558, 2559, 5, 1, 0, 0, 2559, 2560, 5, 330, 0, 0, 2560, 2562, 5, 2, 0, 0, 2561, 2558, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2804, 1, 0, 0, 0, 2563, 2567, 5, 64, 0, 0, 2564, 2565, 5, 1, 0, 0, 2565, 2566, 5, 330, 0, 0, 2566, 2568, 5, 2, 0, 0, 2567, 2564, 1, 0, 0, 0, 2567, 2568, 1, 0, 0, 0, 2568, 2804, 1, 0, 0, 0, 2569, 2573, 5, 159, 0, 0, 2570, 2571, 5, 1, 0, 0, 2571, 2572, 5, 330, 0, 0, 2572, 2574, 5, 2, 0, 0, 2573, 2570, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2804, 1, 0, 0, 0, 2575, 2579, 5, 160, 0, 0, 2576, 2577, 5, 1, 0, 0, 2577, 2578, 5, 330, 0, 0, 2578, 2580, 5, 2, 0, 0, 2579, 2576, 1, 0, 0, 0, 2579, 2580, 1, 0, 0, 0, 2580, 2804, 1, 0, 0, 0, 2581, 2804, 5, 65, 0, 0, 2582, 2804, 5, 58, 0, 0, 2583, 2804, 5, 62, 0, 0, 2584, 2804, 5, 60, 0, 0, 2585, 2586, 5, 273, 0, 0, 2586, 2594, 5, 1, 0, 0, 2587, 2589, 3, 98, 49, 0, 2588, 2587, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 2591, 1, 0, 0, 0, 2590, 2592, 3, 160, 80, 0, 2591, 2590, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2595, 5, 106, 0, 0, 2594, 2588, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2597, 3, 160, 80, 0, 2597, 2598, 5, 2, 0, 0, 2598, 2804, 1, 0, 0, 0, 2599, 2600, 5, 273, 0, 0, 2600, 2601, 5, 1, 0, 0, 2601, 2602, 3, 160, 80, 0, 2602, 2603, 5, 3, 0, 0, 2603, 2604, 3, 160, 80, 0, 2604, 2605, 5, 2, 0, 0, 2605, 2804, 1, 0, 0, 0, 2606, 2607, 5, 259, 0, 0, 2607, 2608, 5, 1, 0, 0, 2608, 2609, 3, 160, 80, 0, 2609, 2610, 5, 106, 0, 0, 2610, 2613, 3, 160, 80, 0, 2611, 2612, 5, 104, 0, 0, 2612, 2614, 3, 160, 80, 0, 2613, 2611, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2616, 5, 2, 0, 0, 2616, 2804, 1, 0, 0, 0, 2617, 2618, 5, 182, 0, 0, 2618, 2619, 5, 1, 0, 0, 2619, 2622, 3, 160, 80, 0, 2620, 2621, 5, 3, 0, 0, 2621, 2623, 3, 200, 100, 0, 2622, 2620, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2625, 5, 2, 0, 0, 2625, 2804, 1, 0, 0, 0, 2626, 2627, 5, 97, 0, 0, 2627, 2628, 5, 1, 0, 0, 2628, 2629, 3, 314, 157, 0, 2629, 2630, 5, 106, 0, 0, 2630, 2631, 3, 160, 80, 0, 2631, 2632, 5, 2, 0, 0, 2632, 2804, 1, 0, 0, 0, 2633, 2634, 5, 44, 0, 0, 2634, 2635, 5, 1, 0, 0, 2635, 2640, 3, 154, 77, 0, 2636, 2637, 5, 3, 0, 0, 2637, 2639, 3, 154, 77, 0, 2638, 2636, 1, 0, 0, 0, 2639, 2642, 1, 0, 0, 0, 2640, 2638, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2643, 1, 0, 0, 0, 2642, 2640, 1, 0, 0, 0, 2643, 2644, 5, 2, 0, 0, 2644, 2804, 1, 0, 0, 0, 2645, 2646, 5, 1, 0, 0, 2646, 2647, 3, 154, 77, 0, 2647, 2648, 5, 2, 0, 0, 2648, 2804, 1, 0, 0, 0, 2649, 2650, 5, 116, 0, 0, 2650, 2659, 5, 1, 0, 0, 2651, 2656, 3, 300, 150, 0, 2652, 2653, 5, 3, 0, 0, 2653, 2655, 3, 300, 150, 0, 2654, 2652, 1, 0, 0, 0, 2655, 2658, 1, 0, 0, 0, 2656, 2654, 1, 0, 0, 0, 2656, 2657, 1, 0, 0, 0, 2657, 2660, 1, 0, 0, 0, 2658, 2656, 1, 0, 0, 0, 2659, 2651, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2804, 5, 2, 0, 0, 2662, 2663, 5, 140, 0, 0, 2663, 2664, 5, 1, 0, 0, 2664, 2669, 3, 164, 82, 0, 2665, 2666, 3, 172, 86, 0, 2666, 2667, 5, 191, 0, 0, 2667, 2668, 5, 90, 0, 0, 2668, 2670, 1, 0, 0, 0, 2669, 2665, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2671, 1, 0, 0, 0, 2671, 2672, 5, 2, 0, 0, 2672, 2804, 1, 0, 0, 0, 2673, 2674, 5, 144, 0, 0, 2674, 2675, 5, 1, 0, 0, 2675, 2678, 3, 164, 82, 0, 2676, 2677, 5, 232, 0, 0, 2677, 2679, 3, 202, 101, 0, 2678, 2676, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2684, 1, 0, 0, 0, 2680, 2681, 3, 174, 87, 0, 2681, 2682, 5, 191, 0, 0, 2682, 2683, 5, 86, 0, 0, 2683, 2685, 1, 0, 0, 0, 2684, 2680, 1, 0, 0, 0, 2684, 2685, 1, 0, 0, 0, 2685, 2690, 1, 0, 0, 0, 2686, 2687, 3, 174, 87, 0, 2687, 2688, 5, 191, 0, 0, 2688, 2689, 5, 90, 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, 2, 0, 0, 2693, 2804, 1, 0, 0, 0, 2694, 2695, 5, 142, 0, 0, 2695, 2696, 5, 1, 0, 0, 2696, 2703, 3, 164, 82, 0, 2697, 2698, 5, 232, 0, 0, 2698, 2701, 3, 202, 101, 0, 2699, 2700, 5, 105, 0, 0, 2700, 2702, 3, 168, 84, 0, 2701, 2699, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2704, 1, 0, 0, 0, 2703, 2697, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2708, 1, 0, 0, 0, 2705, 2706, 3, 176, 88, 0, 2706, 2707, 5, 309, 0, 0, 2707, 2709, 1, 0, 0, 0, 2708, 2705, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2717, 1, 0, 0, 0, 2710, 2711, 7, 15, 0, 0, 2711, 2715, 5, 219, 0, 0, 2712, 2713, 5, 191, 0, 0, 2713, 2714, 5, 243, 0, 0, 2714, 2716, 5, 265, 0, 0, 2715, 2712, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2718, 1, 0, 0, 0, 2717, 2710, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 2723, 1, 0, 0, 0, 2719, 2720, 3, 178, 89, 0, 2720, 2721, 5, 191, 0, 0, 2721, 2722, 5, 86, 0, 0, 2722, 2724, 1, 0, 0, 0, 2723, 2719, 1, 0, 0, 0, 2723, 2724, 1, 0, 0, 0, 2724, 2729, 1, 0, 0, 0, 2725, 2726, 3, 178, 89, 0, 2726, 2727, 5, 191, 0, 0, 2727, 2728, 5, 90, 0, 0, 2728, 2730, 1, 0, 0, 0, 2729, 2725, 1, 0, 0, 0, 2729, 2730, 1, 0, 0, 0, 2730, 2731, 1, 0, 0, 0, 2731, 2732, 5, 2, 0, 0, 2732, 2804, 1, 0, 0, 0, 2733, 2734, 5, 141, 0, 0, 2734, 2763, 5, 1, 0, 0, 2735, 2740, 3, 180, 90, 0, 2736, 2737, 5, 3, 0, 0, 2737, 2739, 3, 180, 90, 0, 2738, 2736, 1, 0, 0, 0, 2739, 2742, 1, 0, 0, 0, 2740, 2738, 1, 0, 0, 0, 2740, 2741, 1, 0, 0, 0, 2741, 2749, 1, 0, 0, 0, 2742, 2740, 1, 0, 0, 0, 2743, 2744, 5, 184, 0, 0, 2744, 2745, 5, 191, 0, 0, 2745, 2750, 5, 184, 0, 0, 2746, 2747, 5, 18, 0, 0, 2747, 2748, 5, 191, 0, 0, 2748, 2750, 5, 184, 0, 0, 2749, 2743, 1, 0, 0, 0, 2749, 2746, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 2761, 1, 0, 0, 0, 2751, 2752, 5, 305, 0, 0, 2752, 2754, 5, 283, 0, 0, 2753, 2755, 5, 147, 0, 0, 2754, 2753, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 2762, 1, 0, 0, 0, 2756, 2757, 5, 307, 0, 0, 2757, 2759, 5, 283, 0, 0, 2758, 2760, 5, 147, 0, 0, 2759, 2758, 1, 0, 0, 0, 2759, 2760, 1, 0, 0, 0, 2760, 2762, 1, 0, 0, 0, 2761, 2751, 1, 0, 0, 0, 2761, 2756, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2764, 1, 0, 0, 0, 2763, 2735, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2771, 1, 0, 0, 0, 2765, 2766, 5, 232, 0, 0, 2766, 2769, 3, 202, 101, 0, 2767, 2768, 5, 105, 0, 0, 2768, 2770, 3, 168, 84, 0, 2769, 2767, 1, 0, 0, 0, 2769, 2770, 1, 0, 0, 0, 2770, 2772, 1, 0, 0, 0, 2771, 2765, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2804, 5, 2, 0, 0, 2774, 2775, 5, 139, 0, 0, 2775, 2792, 5, 1, 0, 0, 2776, 2781, 3, 166, 83, 0, 2777, 2778, 5, 3, 0, 0, 2778, 2780, 3, 166, 83, 0, 2779, 2777, 1, 0, 0, 0, 2780, 2783, 1, 0, 0, 0, 2781, 2779, 1, 0, 0, 0, 2781, 2782, 1, 0, 0, 0, 2782, 2790, 1, 0, 0, 0, 2783, 2781, 1, 0, 0, 0, 2784, 2785, 5, 184, 0, 0, 2785, 2786, 5, 191, 0, 0, 2786, 2791, 5, 184, 0, 0, 2787, 2788, 5, 18, 0, 0, 2788, 2789, 5, 191, 0, 0, 2789, 2791, 5, 184, 0, 0, 2790, 2784, 1, 0, 0, 0, 2790, 2787, 1, 0, 0, 0, 2790, 2791, 1, 0, 0, 0, 2791, 2793, 1, 0, 0, 0, 2792, 2776, 1, 0, 0, 0, 2792, 2793, 1, 0, 0, 0, 2793, 2800, 1, 0, 0, 0, 2794, 2795, 5, 232, 0, 0, 2795, 2798, 3, 202, 101, 0, 2796, 2797, 5, 105, 0, 0, 2797, 2799, 3, 168, 84, 0, 2798, 2796, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 2801, 1, 0, 0, 0, 2800, 2794, 1, 0, 0, 0, 2800, 2801, 1, 0, 0, 0, 2801, 2802, 1, 0, 0, 0, 2802, 2804, 5, 2, 0, 0, 2803, 2338, 1, 0, 0, 0, 2803, 2340, 1, 0, 0, 0, 2803, 2341, 1, 0, 0, 0, 2803, 2344, 1, 0, 0, 0, 2803, 2347, 1, 0, 0, 0, 2803, 2348, 1, 0, 0, 0, 2803, 2349, 1, 0, 0, 0, 2803, 2350, 1, 0, 0, 0, 2803, 2351, 1, 0, 0, 0, 2803, 2352, 1, 0, 0, 0, 2803, 2359, 1, 0, 0, 0, 2803, 2369, 1, 0, 0, 0, 2803, 2381, 1, 0, 0, 0, 2803, 2416, 1, 0, 0, 0, 2803, 2434, 1, 0, 0, 0, 2803, 2473, 1, 0, 0, 0, 2803, 2476, 1, 0, 0, 0, 2803, 2480, 1, 0, 0, 0, 2803, 2494, 1, 0, 0, 0, 2803, 2498, 1, 0, 0, 0, 2803, 2503, 1, 0, 0, 0, 2803, 2516, 1, 0, 0, 0, 2803, 2528, 1, 0, 0, 0, 2803, 2535, 1, 0, 0, 0, 2803, 2542, 1, 0, 0, 0, 2803, 2555, 1, 0, 0, 0, 2803, 2556, 1, 0, 0, 0, 2803, 2557, 1, 0, 0, 0, 2803, 2563, 1, 0, 0, 0, 2803, 2569, 1, 0, 0, 0, 2803, 2575, 1, 0, 0, 0, 2803, 2581, 1, 0, 0, 0, 2803, 2582, 1, 0, 0, 0, 2803, 2583, 1, 0, 0, 0, 2803, 2584, 1, 0, 0, 0, 2803, 2585, 1, 0, 0, 0, 2803, 2599, 1, 0, 0, 0, 2803, 2606, 1, 0, 0, 0, 2803, 2617, 1, 0, 0, 0, 2803, 2626, 1, 0, 0, 0, 2803, 2633, 1, 0, 0, 0, 2803, 2645, 1, 0, 0, 0, 2803, 2649, 1, 0, 0, 0, 2803, 2662, 1, 0, 0, 0, 2803, 2673, 1, 0, 0, 0, 2803, 2694, 1, 0, 0, 0, 2803, 2733, 1, 0, 0, 0, 2803, 2774, 1, 0, 0, 0, 2804, 2815, 1, 0, 0, 0, 2805, 2806, 10, 25, 0, 0, 2806, 2807, 5, 8, 0, 0, 2807, 2808, 3, 160, 80, 0, 2808, 2809, 5, 9, 0, 0, 2809, 2814, 1, 0, 0, 0, 2810, 2811, 10, 23, 0, 0, 2811, 2812, 5, 4, 0, 0, 2812, 2814, 3, 314, 157, 0, 2813, 2805, 1, 0, 0, 0, 2813, 2810, 1, 0, 0, 0, 2814, 2817, 1, 0, 0, 0, 2815, 2813, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 163, 1, 0, 0, 0, 2817, 2815, 1, 0, 0, 0, 2818, 2819, 3, 166, 83, 0, 2819, 2820, 5, 3, 0, 0, 2820, 2823, 3, 186, 93, 0, 2821, 2822, 5, 28, 0, 0, 2822, 2824, 3, 314, 157, 0, 2823, 2821, 1, 0, 0, 0, 2823, 2824, 1, 0, 0, 0, 2824, 2834, 1, 0, 0, 0, 2825, 2826, 5, 204, 0, 0, 2826, 2831, 3, 170, 85, 0, 2827, 2828, 5, 3, 0, 0, 2828, 2830, 3, 170, 85, 0, 2829, 2827, 1, 0, 0, 0, 2830, 2833, 1, 0, 0, 0, 2831, 2829, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 2835, 1, 0, 0, 0, 2833, 2831, 1, 0, 0, 0, 2834, 2825, 1, 0, 0, 0, 2834, 2835, 1, 0, 0, 0, 2835, 165, 1, 0, 0, 0, 2836, 2839, 3, 154, 77, 0, 2837, 2838, 5, 105, 0, 0, 2838, 2840, 3, 168, 84, 0, 2839, 2837, 1, 0, 0, 0, 2839, 2840, 1, 0, 0, 0, 2840, 167, 1, 0, 0, 0, 2841, 2844, 5, 138, 0, 0, 2842, 2843, 5, 88, 0, 0, 2843, 2845, 7, 20, 0, 0, 2844, 2842, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 169, 1, 0, 0, 0, 2846, 2847, 3, 166, 83, 0, 2847, 2848, 5, 28, 0, 0, 2848, 2849, 3, 314, 157, 0, 2849, 171, 1, 0, 0, 0, 2850, 2851, 7, 21, 0, 0, 2851, 173, 1, 0, 0, 0, 2852, 2857, 5, 90, 0, 0, 2853, 2857, 5, 184, 0, 0, 2854, 2855, 5, 71, 0, 0, 2855, 2857, 3, 154, 77, 0, 2856, 2852, 1, 0, 0, 0, 2856, 2853, 1, 0, 0, 0, 2856, 2854, 1, 0, 0, 0, 2857, 175, 1, 0, 0, 0, 2858, 2860, 5, 307, 0, 0, 2859, 2861, 5, 27, 0, 0, 2860, 2859, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, 0, 2861, 2870, 1, 0, 0, 0, 2862, 2864, 5, 305, 0, 0, 2863, 2865, 7, 22, 0, 0, 2864, 2863, 1, 0, 0, 0, 2864, 2865, 1, 0, 0, 0, 2865, 2867, 1, 0, 0, 0, 2866, 2868, 5, 27, 0, 0, 2867, 2866, 1, 0, 0, 0, 2867, 2868, 1, 0, 0, 0, 2868, 2870, 1, 0, 0, 0, 2869, 2858, 1, 0, 0, 0, 2869, 2862, 1, 0, 0, 0, 2870, 177, 1, 0, 0, 0, 2871, 2878, 5, 90, 0, 0, 2872, 2878, 5, 184, 0, 0, 2873, 2874, 5, 86, 0, 0, 2874, 2878, 5, 27, 0, 0, 2875, 2876, 5, 86, 0, 0, 2876, 2878, 5, 187, 0, 0, 2877, 2871, 1, 0, 0, 0, 2877, 2872, 1, 0, 0, 0, 2877, 2873, 1, 0, 0, 0, 2877, 2875, 1, 0, 0, 0, 2878, 179, 1, 0, 0, 0, 2879, 2881, 5, 146, 0, 0, 2880, 2879, 1, 0, 0, 0, 2880, 2881, 1, 0, 0, 0, 2881, 2882, 1, 0, 0, 0, 2882, 2883, 3, 154, 77, 0, 2883, 2884, 5, 296, 0, 0, 2884, 2885, 3, 166, 83, 0, 2885, 2891, 1, 0, 0, 0, 2886, 2887, 3, 154, 77, 0, 2887, 2888, 5, 10, 0, 0, 2888, 2889, 3, 166, 83, 0, 2889, 2891, 1, 0, 0, 0, 2890, 2880, 1, 0, 0, 0, 2890, 2886, 1, 0, 0, 0, 2891, 181, 1, 0, 0, 0, 2892, 2893, 7, 23, 0, 0, 2893, 183, 1, 0, 0, 0, 2894, 2895, 5, 121, 0, 0, 2895, 2899, 5, 186, 0, 0, 2896, 2897, 5, 229, 0, 0, 2897, 2899, 5, 186, 0, 0, 2898, 2894, 1, 0, 0, 0, 2898, 2896, 1, 0, 0, 0, 2899, 185, 1, 0, 0, 0, 2900, 2907, 5, 327, 0, 0, 2901, 2904, 5, 328, 0, 0, 2902, 2903, 5, 278, 0, 0, 2903, 2905, 5, 327, 0, 0, 2904, 2902, 1, 0, 0, 0, 2904, 2905, 1, 0, 0, 0, 2905, 2907, 1, 0, 0, 0, 2906, 2900, 1, 0, 0, 0, 2906, 2901, 1, 0, 0, 0, 2907, 187, 1, 0, 0, 0, 2908, 2909, 5, 268, 0, 0, 2909, 2910, 5, 312, 0, 0, 2910, 2915, 3, 196, 98, 0, 2911, 2912, 5, 268, 0, 0, 2912, 2913, 5, 312, 0, 0, 2913, 2915, 3, 186, 93, 0, 2914, 2908, 1, 0, 0, 0, 2914, 2911, 1, 0, 0, 0, 2915, 189, 1, 0, 0, 0, 2916, 2917, 7, 24, 0, 0, 2917, 191, 1, 0, 0, 0, 2918, 2919, 7, 25, 0, 0, 2919, 193, 1, 0, 0, 0, 2920, 2921, 7, 26, 0, 0, 2921, 195, 1, 0, 0, 0, 2922, 2924, 5, 130, 0, 0, 2923, 2925, 7, 18, 0, 0, 2924, 2923, 1, 0, 0, 0, 2924, 2925, 1, 0, 0, 0, 2925, 2926, 1, 0, 0, 0, 2926, 2927, 3, 186, 93, 0, 2927, 2930, 3, 198, 99, 0, 2928, 2929, 5, 270, 0, 0, 2929, 2931, 3, 198, 99, 0, 2930, 2928, 1, 0, 0, 0, 2930, 2931, 1, 0, 0, 0, 2931, 197, 1, 0, 0, 0, 2932, 2933, 7, 27, 0, 0, 2933, 199, 1, 0, 0, 0, 2934, 2935, 7, 28, 0, 0, 2935, 201, 1, 0, 0, 0, 2936, 2937, 6, 101, -1, 0, 2937, 2938, 5, 240, 0, 0, 2938, 2939, 5, 1, 0, 0, 2939, 2944, 3, 204, 102, 0, 2940, 2941, 5, 3, 0, 0, 2941, 2943, 3, 204, 102, 0, 2942, 2940, 1, 0, 0, 0, 2943, 2946, 1, 0, 0, 0, 2944, 2942, 1, 0, 0, 0, 2944, 2945, 1, 0, 0, 0, 2945, 2947, 1, 0, 0, 0, 2946, 2944, 1, 0, 0, 0, 2947, 2948, 5, 2, 0, 0, 2948, 3008, 1, 0, 0, 0, 2949, 2950, 5, 130, 0, 0, 2950, 2953, 3, 198, 99, 0, 2951, 2952, 5, 270, 0, 0, 2952, 2954, 3, 198, 99, 0, 2953, 2951, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 3008, 1, 0, 0, 0, 2955, 2960, 5, 269, 0, 0, 2956, 2957, 5, 1, 0, 0, 2957, 2958, 3, 206, 103, 0, 2958, 2959, 5, 2, 0, 0, 2959, 2961, 1, 0, 0, 0, 2960, 2956, 1, 0, 0, 0, 2960, 2961, 1, 0, 0, 0, 2961, 2965, 1, 0, 0, 0, 2962, 2963, 7, 29, 0, 0, 2963, 2964, 5, 268, 0, 0, 2964, 2966, 5, 312, 0, 0, 2965, 2962, 1, 0, 0, 0, 2965, 2966, 1, 0, 0, 0, 2966, 3008, 1, 0, 0, 0, 2967, 2972, 5, 268, 0, 0, 2968, 2969, 5, 1, 0, 0, 2969, 2970, 3, 206, 103, 0, 2970, 2971, 5, 2, 0, 0, 2971, 2973, 1, 0, 0, 0, 2972, 2968, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 2977, 1, 0, 0, 0, 2974, 2975, 7, 29, 0, 0, 2975, 2976, 5, 268, 0, 0, 2976, 2978, 5, 312, 0, 0, 2977, 2974, 1, 0, 0, 0, 2977, 2978, 1, 0, 0, 0, 2978, 3008, 1, 0, 0, 0, 2979, 2980, 5, 83, 0, 0, 2980, 3008, 5, 214, 0, 0, 2981, 2982, 5, 27, 0, 0, 2982, 2983, 5, 315, 0, 0, 2983, 2984, 3, 202, 101, 0, 2984, 2985, 5, 317, 0, 0, 2985, 3008, 1, 0, 0, 0, 2986, 2987, 5, 163, 0, 0, 2987, 2988, 5, 315, 0, 0, 2988, 2989, 3, 202, 101, 0, 2989, 2990, 5, 3, 0, 0, 2990, 2991, 3, 202, 101, 0, 2991, 2992, 5, 317, 0, 0, 2992, 3008, 1, 0, 0, 0, 2993, 3005, 3, 314, 157, 0, 2994, 2995, 5, 1, 0, 0, 2995, 3000, 3, 206, 103, 0, 2996, 2997, 5, 3, 0, 0, 2997, 2999, 3, 206, 103, 0, 2998, 2996, 1, 0, 0, 0, 2999, 3002, 1, 0, 0, 0, 3000, 2998, 1, 0, 0, 0, 3000, 3001, 1, 0, 0, 0, 3001, 3003, 1, 0, 0, 0, 3002, 3000, 1, 0, 0, 0, 3003, 3004, 5, 2, 0, 0, 3004, 3006, 1, 0, 0, 0, 3005, 2994, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3008, 1, 0, 0, 0, 3007, 2936, 1, 0, 0, 0, 3007, 2949, 1, 0, 0, 0, 3007, 2955, 1, 0, 0, 0, 3007, 2967, 1, 0, 0, 0, 3007, 2979, 1, 0, 0, 0, 3007, 2981, 1, 0, 0, 0, 3007, 2986, 1, 0, 0, 0, 3007, 2993, 1, 0, 0, 0, 3008, 3018, 1, 0, 0, 0, 3009, 3010, 10, 2, 0, 0, 3010, 3014, 5, 27, 0, 0, 3011, 3012, 5, 8, 0, 0, 3012, 3013, 5, 330, 0, 0, 3013, 3015, 5, 9, 0, 0, 3014, 3011, 1, 0, 0, 0, 3014, 3015, 1, 0, 0, 0, 3015, 3017, 1, 0, 0, 0, 3016, 3009, 1, 0, 0, 0, 3017, 3020, 1, 0, 0, 0, 3018, 3016, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 203, 1, 0, 0, 0, 3020, 3018, 1, 0, 0, 0, 3021, 3026, 3, 202, 101, 0, 3022, 3023, 3, 314, 157, 0, 3023, 3024, 3, 202, 101, 0, 3024, 3026, 1, 0, 0, 0, 3025, 3021, 1, 0, 0, 0, 3025, 3022, 1, 0, 0, 0, 3026, 205, 1, 0, 0, 0, 3027, 3030, 5, 330, 0, 0, 3028, 3030, 3, 202, 101, 0, 3029, 3027, 1, 0, 0, 0, 3029, 3028, 1, 0, 0, 0, 3030, 207, 1, 0, 0, 0, 3031, 3032, 5, 301, 0, 0, 3032, 3033, 3, 154, 77, 0, 3033, 3034, 5, 266, 0, 0, 3034, 3035, 3, 154, 77, 0, 3035, 209, 1, 0, 0, 0, 3036, 3037, 5, 100, 0, 0, 3037, 3038, 5, 1, 0, 0, 3038, 3039, 3, 54, 27, 0, 3039, 3040, 5, 2, 0, 0, 3040, 211, 1, 0, 0, 0, 3041, 3042, 5, 301, 0, 0, 3042, 3045, 5, 165, 0, 0, 3043, 3044, 5, 25, 0, 0, 3044, 3046, 3, 154, 77, 0, 3045, 3043, 1, 0, 0, 0, 3045, 3046, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3048, 5, 266, 0, 0, 3048, 3049, 5, 288, 0, 0, 3049, 3050, 5, 252, 0, 0, 3050, 3051, 3, 314, 157, 0, 3051, 3052, 5, 313, 0, 0, 3052, 3060, 3, 154, 77, 0, 3053, 3054, 5, 3, 0, 0, 3054, 3055, 3, 314, 157, 0, 3055, 3056, 5, 313, 0, 0, 3056, 3057, 3, 154, 77, 0, 3057, 3059, 1, 0, 0, 0, 3058, 3053, 1, 0, 0, 0, 3059, 3062, 1, 0, 0, 0, 3060, 3058, 1, 0, 0, 0, 3060, 3061, 1, 0, 0, 0, 3061, 3106, 1, 0, 0, 0, 3062, 3060, 1, 0, 0, 0, 3063, 3064, 5, 301, 0, 0, 3064, 3067, 5, 165, 0, 0, 3065, 3066, 5, 25, 0, 0, 3066, 3068, 3, 154, 77, 0, 3067, 3065, 1, 0, 0, 0, 3067, 3068, 1, 0, 0, 0, 3068, 3069, 1, 0, 0, 0, 3069, 3070, 5, 266, 0, 0, 3070, 3106, 5, 74, 0, 0, 3071, 3072, 5, 301, 0, 0, 3072, 3073, 5, 183, 0, 0, 3073, 3076, 5, 165, 0, 0, 3074, 3075, 5, 25, 0, 0, 3075, 3077, 3, 154, 77, 0, 3076, 3074, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 3078, 1, 0, 0, 0, 3078, 3079, 5, 266, 0, 0, 3079, 3091, 5, 128, 0, 0, 3080, 3081, 5, 1, 0, 0, 3081, 3086, 3, 314, 157, 0, 3082, 3083, 5, 3, 0, 0, 3083, 3085, 3, 314, 157, 0, 3084, 3082, 1, 0, 0, 0, 3085, 3088, 1, 0, 0, 0, 3086, 3084, 1, 0, 0, 0, 3086, 3087, 1, 0, 0, 0, 3087, 3089, 1, 0, 0, 0, 3088, 3086, 1, 0, 0, 0, 3089, 3090, 5, 2, 0, 0, 3090, 3092, 1, 0, 0, 0, 3091, 3080, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3093, 1, 0, 0, 0, 3093, 3094, 5, 297, 0, 0, 3094, 3095, 5, 1, 0, 0, 3095, 3100, 3, 154, 77, 0, 3096, 3097, 5, 3, 0, 0, 3097, 3099, 3, 154, 77, 0, 3098, 3096, 1, 0, 0, 0, 3099, 3102, 1, 0, 0, 0, 3100, 3098, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 3103, 1, 0, 0, 0, 3102, 3100, 1, 0, 0, 0, 3103, 3104, 5, 2, 0, 0, 3104, 3106, 1, 0, 0, 0, 3105, 3041, 1, 0, 0, 0, 3105, 3063, 1, 0, 0, 0, 3105, 3071, 1, 0, 0, 0, 3106, 213, 1, 0, 0, 0, 3107, 3113, 5, 200, 0, 0, 3108, 3114, 3, 314, 157, 0, 3109, 3110, 5, 1, 0, 0, 3110, 3111, 3, 72, 36, 0, 3111, 3112, 5, 2, 0, 0, 3112, 3114, 1, 0, 0, 0, 3113, 3108, 1, 0, 0, 0, 3113, 3109, 1, 0, 0, 0, 3114, 215, 1, 0, 0, 0, 3115, 3116, 5, 169, 0, 0, 3116, 3121, 3, 106, 53, 0, 3117, 3118, 5, 3, 0, 0, 3118, 3120, 3, 106, 53, 0, 3119, 3117, 1, 0, 0, 0, 3120, 3123, 1, 0, 0, 0, 3121, 3119, 1, 0, 0, 0, 3121, 3122, 1, 0, 0, 0, 3122, 3125, 1, 0, 0, 0, 3123, 3121, 1, 0, 0, 0, 3124, 3115, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3126, 1, 0, 0, 0, 3126, 3130, 3, 218, 109, 0, 3127, 3128, 5, 21, 0, 0, 3128, 3129, 5, 164, 0, 0, 3129, 3131, 3, 112, 56, 0, 3130, 3127, 1, 0, 0, 0, 3130, 3131, 1, 0, 0, 0, 3131, 3133, 1, 0, 0, 0, 3132, 3134, 7, 13, 0, 0, 3133, 3132, 1, 0, 0, 0, 3133, 3134, 1, 0, 0, 0, 3134, 3140, 1, 0, 0, 0, 3135, 3136, 5, 207, 0, 0, 3136, 3137, 5, 1, 0, 0, 3137, 3138, 3, 222, 111, 0, 3138, 3139, 5, 2, 0, 0, 3139, 3141, 1, 0, 0, 0, 3140, 3135, 1, 0, 0, 0, 3140, 3141, 1, 0, 0, 0, 3141, 3151, 1, 0, 0, 0, 3142, 3143, 5, 258, 0, 0, 3143, 3148, 3, 114, 57, 0, 3144, 3145, 5, 3, 0, 0, 3145, 3147, 3, 114, 57, 0, 3146, 3144, 1, 0, 0, 0, 3147, 3150, 1, 0, 0, 0, 3148, 3146, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3152, 1, 0, 0, 0, 3150, 3148, 1, 0, 0, 0, 3151, 3142, 1, 0, 0, 0, 3151, 3152, 1, 0, 0, 0, 3152, 3162, 1, 0, 0, 0, 3153, 3154, 5, 72, 0, 0, 3154, 3159, 3, 116, 58, 0, 3155, 3156, 5, 3, 0, 0, 3156, 3158, 3, 116, 58, 0, 3157, 3155, 1, 0, 0, 0, 3158, 3161, 1, 0, 0, 0, 3159, 3157, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3163, 1, 0, 0, 0, 3161, 3159, 1, 0, 0, 0, 3162, 3153, 1, 0, 0, 0, 3162, 3163, 1, 0, 0, 0, 3163, 217, 1, 0, 0, 0, 3164, 3165, 5, 220, 0, 0, 3165, 3189, 3, 220, 110, 0, 3166, 3167, 5, 241, 0, 0, 3167, 3189, 3, 220, 110, 0, 3168, 3169, 5, 117, 0, 0, 3169, 3189, 3, 220, 110, 0, 3170, 3171, 5, 220, 0, 0, 3171, 3172, 5, 34, 0, 0, 3172, 3173, 3, 220, 110, 0, 3173, 3174, 5, 25, 0, 0, 3174, 3175, 3, 220, 110, 0, 3175, 3189, 1, 0, 0, 0, 3176, 3177, 5, 241, 0, 0, 3177, 3178, 5, 34, 0, 0, 3178, 3179, 3, 220, 110, 0, 3179, 3180, 5, 25, 0, 0, 3180, 3181, 3, 220, 110, 0, 3181, 3189, 1, 0, 0, 0, 3182, 3183, 5, 117, 0, 0, 3183, 3184, 5, 34, 0, 0, 3184, 3185, 3, 220, 110, 0, 3185, 3186, 5, 25, 0, 0, 3186, 3187, 3, 220, 110, 0, 3187, 3189, 1, 0, 0, 0, 3188, 3164, 1, 0, 0, 0, 3188, 3166, 1, 0, 0, 0, 3188, 3168, 1, 0, 0, 0, 3188, 3170, 1, 0, 0, 0, 3188, 3176, 1, 0, 0, 0, 3188, 3182, 1, 0, 0, 0, 3189, 219, 1, 0, 0, 0, 3190, 3191, 5, 279, 0, 0, 3191, 3200, 5, 213, 0, 0, 3192, 3193, 5, 279, 0, 0, 3193, 3200, 5, 103, 0, 0, 3194, 3195, 5, 57, 0, 0, 3195, 3200, 5, 240, 0, 0, 3196, 3197, 3, 154, 77, 0, 3197, 3198, 7, 30, 0, 0, 3198, 3200, 1, 0, 0, 0, 3199, 3190, 1, 0, 0, 0, 3199, 3192, 1, 0, 0, 0, 3199, 3194, 1, 0, 0, 0, 3199, 3196, 1, 0, 0, 0, 3200, 221, 1, 0, 0, 0, 3201, 3202, 6, 111, -1, 0, 3202, 3204, 3, 224, 112, 0, 3203, 3205, 3, 226, 113, 0, 3204, 3203, 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 3213, 1, 0, 0, 0, 3206, 3207, 10, 2, 0, 0, 3207, 3212, 3, 222, 111, 3, 3208, 3209, 10, 1, 0, 0, 3209, 3210, 5, 11, 0, 0, 3210, 3212, 3, 222, 111, 2, 3211, 3206, 1, 0, 0, 0, 3211, 3208, 1, 0, 0, 0, 3212, 3215, 1, 0, 0, 0, 3213, 3211, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 223, 1, 0, 0, 0, 3215, 3213, 1, 0, 0, 0, 3216, 3242, 3, 314, 157, 0, 3217, 3218, 5, 1, 0, 0, 3218, 3242, 5, 2, 0, 0, 3219, 3220, 5, 210, 0, 0, 3220, 3221, 5, 1, 0, 0, 3221, 3226, 3, 222, 111, 0, 3222, 3223, 5, 3, 0, 0, 3223, 3225, 3, 222, 111, 0, 3224, 3222, 1, 0, 0, 0, 3225, 3228, 1, 0, 0, 0, 3226, 3224, 1, 0, 0, 0, 3226, 3227, 1, 0, 0, 0, 3227, 3229, 1, 0, 0, 0, 3228, 3226, 1, 0, 0, 0, 3229, 3230, 5, 2, 0, 0, 3230, 3242, 1, 0, 0, 0, 3231, 3232, 5, 1, 0, 0, 3232, 3233, 3, 222, 111, 0, 3233, 3234, 5, 2, 0, 0, 3234, 3242, 1, 0, 0, 0, 3235, 3242, 5, 12, 0, 0, 3236, 3242, 5, 13, 0, 0, 3237, 3238, 5, 14, 0, 0, 3238, 3239, 3, 222, 111, 0, 3239, 3240, 5, 15, 0, 0, 3240, 3242, 1, 0, 0, 0, 3241, 3216, 1, 0, 0, 0, 3241, 3217, 1, 0, 0, 0, 3241, 3219, 1, 0, 0, 0, 3241, 3231, 1, 0, 0, 0, 3241, 3235, 1, 0, 0, 0, 3241, 3236, 1, 0, 0, 0, 3241, 3237, 1, 0, 0, 0, 3242, 225, 1, 0, 0, 0, 3243, 3245, 5, 321, 0, 0, 3244, 3246, 5, 325, 0, 0, 3245, 3244, 1, 0, 0, 0, 3245, 3246, 1, 0, 0, 0, 3246, 3274, 1, 0, 0, 0, 3247, 3249, 5, 319, 0, 0, 3248, 3250, 5, 325, 0, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3274, 1, 0, 0, 0, 3251, 3253, 5, 325, 0, 0, 3252, 3254, 5, 325, 0, 0, 3253, 3252, 1, 0, 0, 0, 3253, 3254, 1, 0, 0, 0, 3254, 3274, 1, 0, 0, 0, 3255, 3256, 5, 16, 0, 0, 3256, 3257, 5, 330, 0, 0, 3257, 3259, 5, 17, 0, 0, 3258, 3260, 5, 325, 0, 0, 3259, 3258, 1, 0, 0, 0, 3259, 3260, 1, 0, 0, 0, 3260, 3274, 1, 0, 0, 0, 3261, 3263, 5, 16, 0, 0, 3262, 3264, 5, 330, 0, 0, 3263, 3262, 1, 0, 0, 0, 3263, 3264, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3267, 5, 3, 0, 0, 3266, 3268, 5, 330, 0, 0, 3267, 3266, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3269, 1, 0, 0, 0, 3269, 3271, 5, 17, 0, 0, 3270, 3272, 5, 325, 0, 0, 3271, 3270, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3274, 1, 0, 0, 0, 3273, 3243, 1, 0, 0, 0, 3273, 3247, 1, 0, 0, 0, 3273, 3251, 1, 0, 0, 0, 3273, 3255, 1, 0, 0, 0, 3273, 3261, 1, 0, 0, 0, 3274, 227, 1, 0, 0, 0, 3275, 3276, 3, 314, 157, 0, 3276, 3277, 5, 313, 0, 0, 3277, 3278, 3, 154, 77, 0, 3278, 229, 1, 0, 0, 0, 3279, 3280, 5, 105, 0, 0, 3280, 3284, 7, 31, 0, 0, 3281, 3282, 5, 277, 0, 0, 3282, 3284, 7, 32, 0, 0, 3283, 3279, 1, 0, 0, 0, 3283, 3281, 1, 0, 0, 0, 3284, 231, 1, 0, 0, 0, 3285, 3286, 5, 135, 0, 0, 3286, 3287, 5, 154, 0, 0, 3287, 3291, 3, 234, 117, 0, 3288, 3289, 5, 221, 0, 0, 3289, 3291, 7, 33, 0, 0, 3290, 3285, 1, 0, 0, 0, 3290, 3288, 1, 0, 0, 0, 3291, 233, 1, 0, 0, 0, 3292, 3293, 5, 221, 0, 0, 3293, 3300, 5, 280, 0, 0, 3294, 3295, 5, 221, 0, 0, 3295, 3300, 5, 49, 0, 0, 3296, 3297, 5, 226, 0, 0, 3297, 3300, 5, 221, 0, 0, 3298, 3300, 5, 250, 0, 0, 3299, 3292, 1, 0, 0, 0, 3299, 3294, 1, 0, 0, 0, 3299, 3296, 1, 0, 0, 0, 3299, 3298, 1, 0, 0, 0, 3300, 235, 1, 0, 0, 0, 3301, 3307, 3, 154, 77, 0, 3302, 3303, 3, 314, 157, 0, 3303, 3304, 5, 6, 0, 0, 3304, 3305, 3, 154, 77, 0, 3305, 3307, 1, 0, 0, 0, 3306, 3301, 1, 0, 0, 0, 3306, 3302, 1, 0, 0, 0, 3307, 237, 1, 0, 0, 0, 3308, 3309, 3, 314, 157, 0, 3309, 3310, 5, 4, 0, 0, 3310, 3311, 3, 314, 157, 0, 3311, 3314, 1, 0, 0, 0, 3312, 3314, 3, 314, 157, 0, 3313, 3308, 1, 0, 0, 0, 3313, 3312, 1, 0, 0, 0, 3314, 239, 1, 0, 0, 0, 3315, 3320, 3, 238, 119, 0, 3316, 3317, 5, 3, 0, 0, 3317, 3319, 3, 238, 119, 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, 241, 1, 0, 0, 0, 3322, 3320, 1, 0, 0, 0, 3323, 3324, 5, 108, 0, 0, 3324, 3325, 3, 244, 122, 0, 3325, 3329, 3, 250, 125, 0, 3326, 3328, 3, 252, 126, 0, 3327, 3326, 1, 0, 0, 0, 3328, 3331, 1, 0, 0, 0, 3329, 3327, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3332, 1, 0, 0, 0, 3331, 3329, 1, 0, 0, 0, 3332, 3333, 3, 254, 127, 0, 3333, 243, 1, 0, 0, 0, 3334, 3335, 3, 292, 146, 0, 3335, 3344, 5, 1, 0, 0, 3336, 3341, 3, 248, 124, 0, 3337, 3338, 5, 3, 0, 0, 3338, 3340, 3, 248, 124, 0, 3339, 3337, 1, 0, 0, 0, 3340, 3343, 1, 0, 0, 0, 3341, 3339, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 3345, 1, 0, 0, 0, 3343, 3341, 1, 0, 0, 0, 3344, 3336, 1, 0, 0, 0, 3344, 3345, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 5, 2, 0, 0, 3347, 245, 1, 0, 0, 0, 3348, 3349, 3, 290, 145, 0, 3349, 3358, 5, 1, 0, 0, 3350, 3355, 3, 248, 124, 0, 3351, 3352, 5, 3, 0, 0, 3352, 3354, 3, 248, 124, 0, 3353, 3351, 1, 0, 0, 0, 3354, 3357, 1, 0, 0, 0, 3355, 3353, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3359, 1, 0, 0, 0, 3357, 3355, 1, 0, 0, 0, 3358, 3350, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3360, 1, 0, 0, 0, 3360, 3361, 5, 2, 0, 0, 3361, 247, 1, 0, 0, 0, 3362, 3364, 3, 314, 157, 0, 3363, 3362, 1, 0, 0, 0, 3363, 3364, 1, 0, 0, 0, 3364, 3365, 1, 0, 0, 0, 3365, 3366, 3, 202, 101, 0, 3366, 249, 1, 0, 0, 0, 3367, 3368, 5, 233, 0, 0, 3368, 3369, 3, 202, 101, 0, 3369, 251, 1, 0, 0, 0, 3370, 3371, 5, 148, 0, 0, 3371, 3390, 3, 314, 157, 0, 3372, 3374, 5, 183, 0, 0, 3373, 3372, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3390, 5, 79, 0, 0, 3376, 3377, 5, 233, 0, 0, 3377, 3378, 5, 184, 0, 0, 3378, 3379, 5, 191, 0, 0, 3379, 3380, 5, 184, 0, 0, 3380, 3390, 5, 127, 0, 0, 3381, 3382, 5, 38, 0, 0, 3382, 3383, 5, 191, 0, 0, 3383, 3384, 5, 184, 0, 0, 3384, 3390, 5, 127, 0, 0, 3385, 3386, 5, 247, 0, 0, 3386, 3390, 7, 1, 0, 0, 3387, 3388, 5, 47, 0, 0, 3388, 3390, 3, 186, 93, 0, 3389, 3370, 1, 0, 0, 0, 3389, 3373, 1, 0, 0, 0, 3389, 3376, 1, 0, 0, 0, 3389, 3381, 1, 0, 0, 0, 3389, 3385, 1, 0, 0, 0, 3389, 3387, 1, 0, 0, 0, 3390, 253, 1, 0, 0, 0, 3391, 3392, 5, 231, 0, 0, 3392, 3491, 3, 160, 80, 0, 3393, 3394, 5, 252, 0, 0, 3394, 3395, 3, 314, 157, 0, 3395, 3396, 5, 313, 0, 0, 3396, 3397, 3, 154, 77, 0, 3397, 3491, 1, 0, 0, 0, 3398, 3399, 5, 40, 0, 0, 3399, 3401, 3, 154, 77, 0, 3400, 3402, 3, 256, 128, 0, 3401, 3400, 1, 0, 0, 0, 3402, 3403, 1, 0, 0, 0, 3403, 3401, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3406, 1, 0, 0, 0, 3405, 3407, 3, 260, 130, 0, 3406, 3405, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3408, 1, 0, 0, 0, 3408, 3409, 5, 89, 0, 0, 3409, 3410, 5, 40, 0, 0, 3410, 3491, 1, 0, 0, 0, 3411, 3413, 5, 40, 0, 0, 3412, 3414, 3, 256, 128, 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, 3419, 3, 260, 130, 0, 3418, 3417, 1, 0, 0, 0, 3418, 3419, 1, 0, 0, 0, 3419, 3420, 1, 0, 0, 0, 3420, 3421, 5, 89, 0, 0, 3421, 3422, 5, 40, 0, 0, 3422, 3491, 1, 0, 0, 0, 3423, 3424, 5, 120, 0, 0, 3424, 3425, 3, 154, 77, 0, 3425, 3426, 5, 266, 0, 0, 3426, 3430, 3, 264, 132, 0, 3427, 3429, 3, 258, 129, 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, 3434, 1, 0, 0, 0, 3432, 3430, 1, 0, 0, 0, 3433, 3435, 3, 260, 130, 0, 3434, 3433, 1, 0, 0, 0, 3434, 3435, 1, 0, 0, 0, 3435, 3436, 1, 0, 0, 0, 3436, 3437, 5, 89, 0, 0, 3437, 3438, 5, 120, 0, 0, 3438, 3491, 1, 0, 0, 0, 3439, 3440, 5, 136, 0, 0, 3440, 3491, 3, 314, 157, 0, 3441, 3442, 5, 152, 0, 0, 3442, 3491, 3, 314, 157, 0, 3443, 3449, 5, 32, 0, 0, 3444, 3445, 3, 262, 131, 0, 3445, 3446, 5, 326, 0, 0, 3446, 3448, 1, 0, 0, 0, 3447, 3444, 1, 0, 0, 0, 3448, 3451, 1, 0, 0, 0, 3449, 3447, 1, 0, 0, 0, 3449, 3450, 1, 0, 0, 0, 3450, 3453, 1, 0, 0, 0, 3451, 3449, 1, 0, 0, 0, 3452, 3454, 3, 264, 132, 0, 3453, 3452, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3491, 5, 89, 0, 0, 3456, 3457, 3, 314, 157, 0, 3457, 3458, 5, 10, 0, 0, 3458, 3460, 1, 0, 0, 0, 3459, 3456, 1, 0, 0, 0, 3459, 3460, 1, 0, 0, 0, 3460, 3461, 1, 0, 0, 0, 3461, 3462, 5, 162, 0, 0, 3462, 3463, 3, 264, 132, 0, 3463, 3464, 5, 89, 0, 0, 3464, 3465, 5, 162, 0, 0, 3465, 3491, 1, 0, 0, 0, 3466, 3467, 3, 314, 157, 0, 3467, 3468, 5, 10, 0, 0, 3468, 3470, 1, 0, 0, 0, 3469, 3466, 1, 0, 0, 0, 3469, 3470, 1, 0, 0, 0, 3470, 3471, 1, 0, 0, 0, 3471, 3472, 5, 303, 0, 0, 3472, 3473, 3, 154, 77, 0, 3473, 3474, 5, 82, 0, 0, 3474, 3475, 3, 264, 132, 0, 3475, 3476, 5, 89, 0, 0, 3476, 3477, 5, 303, 0, 0, 3477, 3491, 1, 0, 0, 0, 3478, 3479, 3, 314, 157, 0, 3479, 3480, 5, 10, 0, 0, 3480, 3482, 1, 0, 0, 0, 3481, 3478, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3483, 1, 0, 0, 0, 3483, 3484, 5, 225, 0, 0, 3484, 3485, 3, 264, 132, 0, 3485, 3486, 5, 287, 0, 0, 3486, 3487, 3, 154, 77, 0, 3487, 3488, 5, 89, 0, 0, 3488, 3489, 5, 225, 0, 0, 3489, 3491, 1, 0, 0, 0, 3490, 3391, 1, 0, 0, 0, 3490, 3393, 1, 0, 0, 0, 3490, 3398, 1, 0, 0, 0, 3490, 3411, 1, 0, 0, 0, 3490, 3423, 1, 0, 0, 0, 3490, 3439, 1, 0, 0, 0, 3490, 3441, 1, 0, 0, 0, 3490, 3443, 1, 0, 0, 0, 3490, 3459, 1, 0, 0, 0, 3490, 3469, 1, 0, 0, 0, 3490, 3481, 1, 0, 0, 0, 3491, 255, 1, 0, 0, 0, 3492, 3493, 5, 301, 0, 0, 3493, 3494, 3, 154, 77, 0, 3494, 3495, 5, 266, 0, 0, 3495, 3496, 3, 264, 132, 0, 3496, 257, 1, 0, 0, 0, 3497, 3498, 5, 87, 0, 0, 3498, 3499, 3, 154, 77, 0, 3499, 3500, 5, 266, 0, 0, 3500, 3501, 3, 264, 132, 0, 3501, 259, 1, 0, 0, 0, 3502, 3503, 5, 85, 0, 0, 3503, 3504, 3, 264, 132, 0, 3504, 261, 1, 0, 0, 0, 3505, 3506, 5, 70, 0, 0, 3506, 3511, 3, 314, 157, 0, 3507, 3508, 5, 3, 0, 0, 3508, 3510, 3, 314, 157, 0, 3509, 3507, 1, 0, 0, 0, 3510, 3513, 1, 0, 0, 0, 3511, 3509, 1, 0, 0, 0, 3511, 3512, 1, 0, 0, 0, 3512, 3514, 1, 0, 0, 0, 3513, 3511, 1, 0, 0, 0, 3514, 3517, 3, 202, 101, 0, 3515, 3516, 5, 71, 0, 0, 3516, 3518, 3, 160, 80, 0, 3517, 3515, 1, 0, 0, 0, 3517, 3518, 1, 0, 0, 0, 3518, 263, 1, 0, 0, 0, 3519, 3520, 3, 254, 127, 0, 3520, 3521, 5, 326, 0, 0, 3521, 3523, 1, 0, 0, 0, 3522, 3519, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3522, 1, 0, 0, 0, 3524, 3525, 1, 0, 0, 0, 3525, 265, 1, 0, 0, 0, 3526, 3533, 5, 54, 0, 0, 3527, 3533, 5, 249, 0, 0, 3528, 3533, 5, 74, 0, 0, 3529, 3533, 5, 128, 0, 0, 3530, 3533, 5, 288, 0, 0, 3531, 3533, 3, 314, 157, 0, 3532, 3526, 1, 0, 0, 0, 3532, 3527, 1, 0, 0, 0, 3532, 3528, 1, 0, 0, 0, 3532, 3529, 1, 0, 0, 0, 3532, 3530, 1, 0, 0, 0, 3532, 3531, 1, 0, 0, 0, 3533, 267, 1, 0, 0, 0, 3534, 3538, 5, 261, 0, 0, 3535, 3538, 5, 244, 0, 0, 3536, 3538, 3, 314, 157, 0, 3537, 3534, 1, 0, 0, 0, 3537, 3535, 1, 0, 0, 0, 3537, 3536, 1, 0, 0, 0, 3538, 269, 1, 0, 0, 0, 3539, 3541, 3, 268, 134, 0, 3540, 3539, 1, 0, 0, 0, 3540, 3541, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 3543, 3, 300, 150, 0, 3543, 271, 1, 0, 0, 0, 3544, 3547, 3, 274, 137, 0, 3545, 3547, 3, 278, 139, 0, 3546, 3544, 1, 0, 0, 0, 3546, 3545, 1, 0, 0, 0, 3547, 273, 1, 0, 0, 0, 3548, 3560, 3, 314, 157, 0, 3549, 3550, 3, 314, 157, 0, 3550, 3551, 5, 4, 0, 0, 3551, 3552, 3, 314, 157, 0, 3552, 3560, 1, 0, 0, 0, 3553, 3554, 3, 314, 157, 0, 3554, 3555, 5, 4, 0, 0, 3555, 3556, 3, 314, 157, 0, 3556, 3557, 5, 4, 0, 0, 3557, 3558, 3, 314, 157, 0, 3558, 3560, 1, 0, 0, 0, 3559, 3548, 1, 0, 0, 0, 3559, 3549, 1, 0, 0, 0, 3559, 3553, 1, 0, 0, 0, 3560, 275, 1, 0, 0, 0, 3561, 3573, 3, 314, 157, 0, 3562, 3563, 3, 314, 157, 0, 3563, 3564, 5, 4, 0, 0, 3564, 3565, 3, 314, 157, 0, 3565, 3573, 1, 0, 0, 0, 3566, 3567, 3, 314, 157, 0, 3567, 3568, 5, 4, 0, 0, 3568, 3569, 3, 314, 157, 0, 3569, 3570, 5, 4, 0, 0, 3570, 3571, 3, 314, 157, 0, 3571, 3573, 1, 0, 0, 0, 3572, 3561, 1, 0, 0, 0, 3572, 3562, 1, 0, 0, 0, 3572, 3566, 1, 0, 0, 0, 3573, 277, 1, 0, 0, 0, 3574, 3586, 3, 314, 157, 0, 3575, 3576, 3, 314, 157, 0, 3576, 3577, 5, 4, 0, 0, 3577, 3578, 3, 314, 157, 0, 3578, 3586, 1, 0, 0, 0, 3579, 3580, 3, 314, 157, 0, 3580, 3581, 5, 4, 0, 0, 3581, 3582, 3, 314, 157, 0, 3582, 3583, 5, 4, 0, 0, 3583, 3584, 3, 314, 157, 0, 3584, 3586, 1, 0, 0, 0, 3585, 3574, 1, 0, 0, 0, 3585, 3575, 1, 0, 0, 0, 3585, 3579, 1, 0, 0, 0, 3586, 279, 1, 0, 0, 0, 3587, 3599, 3, 314, 157, 0, 3588, 3589, 3, 314, 157, 0, 3589, 3590, 5, 4, 0, 0, 3590, 3591, 3, 314, 157, 0, 3591, 3599, 1, 0, 0, 0, 3592, 3593, 3, 314, 157, 0, 3593, 3594, 5, 4, 0, 0, 3594, 3595, 3, 314, 157, 0, 3595, 3596, 5, 4, 0, 0, 3596, 3597, 3, 314, 157, 0, 3597, 3599, 1, 0, 0, 0, 3598, 3587, 1, 0, 0, 0, 3598, 3588, 1, 0, 0, 0, 3598, 3592, 1, 0, 0, 0, 3599, 281, 1, 0, 0, 0, 3600, 3606, 3, 314, 157, 0, 3601, 3602, 3, 314, 157, 0, 3602, 3603, 5, 4, 0, 0, 3603, 3604, 3, 314, 157, 0, 3604, 3606, 1, 0, 0, 0, 3605, 3600, 1, 0, 0, 0, 3605, 3601, 1, 0, 0, 0, 3606, 283, 1, 0, 0, 0, 3607, 3613, 3, 314, 157, 0, 3608, 3609, 3, 314, 157, 0, 3609, 3610, 5, 4, 0, 0, 3610, 3611, 3, 314, 157, 0, 3611, 3613, 1, 0, 0, 0, 3612, 3607, 1, 0, 0, 0, 3612, 3608, 1, 0, 0, 0, 3613, 285, 1, 0, 0, 0, 3614, 3615, 3, 314, 157, 0, 3615, 287, 1, 0, 0, 0, 3616, 3617, 3, 314, 157, 0, 3617, 289, 1, 0, 0, 0, 3618, 3619, 3, 300, 150, 0, 3619, 291, 1, 0, 0, 0, 3620, 3621, 3, 300, 150, 0, 3621, 293, 1, 0, 0, 0, 3622, 3625, 3, 300, 150, 0, 3623, 3625, 4, 147, 14, 0, 3624, 3622, 1, 0, 0, 0, 3624, 3623, 1, 0, 0, 0, 3625, 295, 1, 0, 0, 0, 3626, 3627, 3, 300, 150, 0, 3627, 297, 1, 0, 0, 0, 3628, 3629, 3, 314, 157, 0, 3629, 299, 1, 0, 0, 0, 3630, 3635, 3, 314, 157, 0, 3631, 3632, 5, 4, 0, 0, 3632, 3634, 3, 314, 157, 0, 3633, 3631, 1, 0, 0, 0, 3634, 3637, 1, 0, 0, 0, 3635, 3633, 1, 0, 0, 0, 3635, 3636, 1, 0, 0, 0, 3636, 301, 1, 0, 0, 0, 3637, 3635, 1, 0, 0, 0, 3638, 3639, 5, 104, 0, 0, 3639, 3640, 3, 304, 152, 0, 3640, 3641, 5, 28, 0, 0, 3641, 3642, 5, 188, 0, 0, 3642, 3643, 3, 160, 80, 0, 3643, 303, 1, 0, 0, 0, 3644, 3645, 7, 34, 0, 0, 3645, 305, 1, 0, 0, 0, 3646, 3650, 3, 308, 154, 0, 3647, 3650, 5, 65, 0, 0, 3648, 3650, 5, 61, 0, 0, 3649, 3646, 1, 0, 0, 0, 3649, 3647, 1, 0, 0, 0, 3649, 3648, 1, 0, 0, 0, 3650, 307, 1, 0, 0, 0, 3651, 3657, 3, 314, 157, 0, 3652, 3653, 5, 290, 0, 0, 3653, 3657, 3, 314, 157, 0, 3654, 3655, 5, 236, 0, 0, 3655, 3657, 3, 314, 157, 0, 3656, 3651, 1, 0, 0, 0, 3656, 3652, 1, 0, 0, 0, 3656, 3654, 1, 0, 0, 0, 3657, 309, 1, 0, 0, 0, 3658, 3663, 3, 314, 157, 0, 3659, 3660, 5, 3, 0, 0, 3660, 3662, 3, 314, 157, 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, 311, 1, 0, 0, 0, 3665, 3663, 1, 0, 0, 0, 3666, 3674, 5, 54, 0, 0, 3667, 3674, 5, 249, 0, 0, 3668, 3674, 5, 74, 0, 0, 3669, 3674, 5, 128, 0, 0, 3670, 3674, 5, 288, 0, 0, 3671, 3674, 5, 94, 0, 0, 3672, 3674, 3, 314, 157, 0, 3673, 3666, 1, 0, 0, 0, 3673, 3667, 1, 0, 0, 0, 3673, 3668, 1, 0, 0, 0, 3673, 3669, 1, 0, 0, 0, 3673, 3670, 1, 0, 0, 0, 3673, 3671, 1, 0, 0, 0, 3673, 3672, 1, 0, 0, 0, 3674, 313, 1, 0, 0, 0, 3675, 3681, 5, 333, 0, 0, 3676, 3681, 5, 335, 0, 0, 3677, 3681, 3, 320, 160, 0, 3678, 3681, 5, 336, 0, 0, 3679, 3681, 5, 334, 0, 0, 3680, 3675, 1, 0, 0, 0, 3680, 3676, 1, 0, 0, 0, 3680, 3677, 1, 0, 0, 0, 3680, 3678, 1, 0, 0, 0, 3680, 3679, 1, 0, 0, 0, 3681, 315, 1, 0, 0, 0, 3682, 3684, 5, 320, 0, 0, 3683, 3682, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3695, 5, 331, 0, 0, 3686, 3688, 5, 320, 0, 0, 3687, 3686, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3695, 5, 332, 0, 0, 3690, 3692, 5, 320, 0, 0, 3691, 3690, 1, 0, 0, 0, 3691, 3692, 1, 0, 0, 0, 3692, 3693, 1, 0, 0, 0, 3693, 3695, 5, 330, 0, 0, 3694, 3683, 1, 0, 0, 0, 3694, 3687, 1, 0, 0, 0, 3694, 3691, 1, 0, 0, 0, 3695, 317, 1, 0, 0, 0, 3696, 3699, 3, 314, 157, 0, 3697, 3699, 3, 186, 93, 0, 3698, 3696, 1, 0, 0, 0, 3698, 3697, 1, 0, 0, 0, 3699, 319, 1, 0, 0, 0, 3700, 3701, 7, 35, 0, 0, 3701, 321, 1, 0, 0, 0, 478, 325, 334, 338, 342, 346, 350, 363, 370, 374, 378, 384, 388, 395, 400, 404, 410, 414, 433, 439, 443, 447, 451, 459, 463, 466, 471, 477, 486, 492, 496, 502, 509, 517, 529, 538, 547, 553, 564, 572, 580, 587, 597, 604, 612, 627, 662, 665, 668, 671, 677, 682, 689, 695, 699, 703, 711, 717, 721, 725, 739, 747, 766, 791, 794, 801, 808, 817, 821, 828, 836, 845, 851, 856, 860, 868, 873, 882, 888, 895, 904, 910, 914, 920, 927, 932, 945, 950, 962, 966, 972, 981, 986, 992, 1020, 1026, 1028, 1034, 1040, 1042, 1050, 1052, 1062, 1064, 1079, 1084, 1091, 1101, 1107, 1109, 1117, 1119, 1144, 1147, 1151, 1155, 1173, 1176, 1187, 1190, 1206, 1216, 1220, 1226, 1229, 1238, 1250, 1253, 1263, 1267, 1273, 1280, 1285, 1291, 1295, 1299, 1305, 1316, 1325, 1335, 1338, 1343, 1345, 1352, 1358, 1360, 1364, 1374, 1380, 1383, 1385, 1397, 1404, 1408, 1411, 1415, 1419, 1428, 1431, 1434, 1439, 1442, 1450, 1453, 1466, 1470, 1477, 1485, 1496, 1499, 1509, 1512, 1523, 1528, 1536, 1539, 1543, 1547, 1556, 1561, 1570, 1573, 1576, 1580, 1591, 1594, 1597, 1602, 1605, 1634, 1638, 1642, 1646, 1650, 1654, 1656, 1667, 1672, 1681, 1690, 1693, 1699, 1707, 1716, 1719, 1727, 1730, 1733, 1738, 1741, 1753, 1756, 1764, 1769, 1773, 1775, 1777, 1792, 1794, 1805, 1826, 1836, 1847, 1851, 1853, 1861, 1872, 1883, 1890, 1897, 1910, 1916, 1938, 1953, 1958, 1962, 1972, 1978, 1984, 1992, 1997, 2004, 2006, 2012, 2018, 2022, 2027, 2036, 2041, 2055, 2065, 2068, 2077, 2082, 2087, 2089, 2098, 2101, 2109, 2112, 2119, 2124, 2131, 2135, 2137, 2145, 2155, 2161, 2163, 2170, 2174, 2176, 2183, 2187, 2189, 2191, 2200, 2211, 2215, 2225, 2235, 2239, 2247, 2249, 2262, 2270, 2279, 2285, 2293, 2299, 2303, 2308, 2313, 2319, 2333, 2335, 2365, 2376, 2384, 2389, 2394, 2407, 2413, 2416, 2423, 2428, 2431, 2434, 2439, 2446, 2449, 2458, 2461, 2465, 2468, 2471, 2486, 2489, 2508, 2512, 2520, 2524, 2549, 2552, 2561, 2567, 2573, 2579, 2588, 2591, 2594, 2613, 2622, 2640, 2656, 2659, 2669, 2678, 2684, 2690, 2701, 2703, 2708, 2715, 2717, 2723, 2729, 2740, 2749, 2754, 2759, 2761, 2763, 2769, 2771, 2781, 2790, 2792, 2798, 2800, 2803, 2813, 2815, 2823, 2831, 2834, 2839, 2844, 2856, 2860, 2864, 2867, 2869, 2877, 2880, 2890, 2898, 2904, 2906, 2914, 2924, 2930, 2944, 2953, 2960, 2965, 2972, 2977, 3000, 3005, 3007, 3014, 3018, 3025, 3029, 3045, 3060, 3067, 3076, 3086, 3091, 3100, 3105, 3113, 3121, 3124, 3130, 3133, 3140, 3148, 3151, 3159, 3162, 3188, 3199, 3204, 3211, 3213, 3226, 3241, 3245, 3249, 3253, 3259, 3263, 3267, 3271, 3273, 3283, 3290, 3299, 3306, 3313, 3320, 3329, 3341, 3344, 3355, 3358, 3363, 3373, 3389, 3403, 3406, 3415, 3418, 3430, 3434, 3449, 3453, 3459, 3469, 3481, 3490, 3511, 3517, 3524, 3532, 3537, 3540, 3546, 3559, 3572, 3585, 3598, 3605, 3612, 3624, 3635, 3649, 3656, 3663, 3673, 3680, 3683, 3687, 3691, 3694, 3698] \ No newline at end of file +[4, 1, 342, 3727, 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, 1, 0, 5, 0, 330, 8, 0, 10, 0, 12, 0, 333, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 3, 2, 341, 8, 2, 1, 3, 1, 3, 3, 3, 345, 8, 3, 1, 4, 1, 4, 3, 4, 349, 8, 4, 1, 5, 1, 5, 3, 5, 353, 8, 5, 1, 6, 1, 6, 3, 6, 357, 8, 6, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 370, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 377, 8, 8, 1, 8, 1, 8, 3, 8, 381, 8, 8, 1, 8, 1, 8, 3, 8, 385, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 391, 8, 8, 1, 8, 1, 8, 3, 8, 395, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 402, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 407, 8, 8, 1, 8, 1, 8, 3, 8, 411, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 417, 8, 8, 1, 8, 1, 8, 3, 8, 421, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 440, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 446, 8, 8, 1, 8, 1, 8, 3, 8, 450, 8, 8, 1, 8, 1, 8, 3, 8, 454, 8, 8, 1, 8, 1, 8, 3, 8, 458, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 466, 8, 8, 1, 8, 1, 8, 3, 8, 470, 8, 8, 1, 8, 3, 8, 473, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 478, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 484, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 491, 8, 8, 10, 8, 12, 8, 494, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 499, 8, 8, 1, 8, 1, 8, 3, 8, 503, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 509, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 516, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 524, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 536, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 545, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 554, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 560, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 571, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 579, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 587, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 594, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 604, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 611, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 619, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 634, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 667, 8, 8, 10, 8, 12, 8, 670, 9, 8, 3, 8, 672, 8, 8, 1, 8, 3, 8, 675, 8, 8, 1, 8, 3, 8, 678, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 684, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 689, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 696, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 702, 8, 8, 1, 8, 1, 8, 3, 8, 706, 8, 8, 1, 8, 1, 8, 3, 8, 710, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 718, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 724, 8, 8, 1, 8, 1, 8, 3, 8, 728, 8, 8, 1, 8, 1, 8, 3, 8, 732, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 746, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 754, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 773, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 796, 8, 8, 10, 8, 12, 8, 799, 9, 8, 3, 8, 801, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 808, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 815, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 824, 8, 8, 1, 8, 1, 8, 3, 8, 828, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 835, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 841, 8, 8, 10, 8, 12, 8, 844, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 850, 8, 8, 10, 8, 12, 8, 853, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 858, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 863, 8, 8, 1, 8, 1, 8, 3, 8, 867, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 873, 8, 8, 10, 8, 12, 8, 876, 9, 8, 1, 8, 1, 8, 3, 8, 880, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 889, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 895, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 900, 8, 8, 10, 8, 12, 8, 903, 9, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 909, 8, 8, 10, 8, 12, 8, 912, 9, 8, 1, 8, 1, 8, 1, 8, 3, 8, 917, 8, 8, 1, 8, 1, 8, 3, 8, 921, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 927, 8, 8, 1, 8, 1, 8, 1, 8, 5, 8, 932, 8, 8, 10, 8, 12, 8, 935, 9, 8, 1, 8, 1, 8, 3, 8, 939, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 950, 8, 8, 10, 8, 12, 8, 953, 9, 8, 1, 8, 1, 8, 3, 8, 957, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 969, 8, 8, 1, 8, 1, 8, 3, 8, 973, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 979, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 986, 8, 8, 10, 8, 12, 8, 989, 9, 8, 1, 8, 1, 8, 3, 8, 993, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 999, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1027, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1033, 8, 8, 3, 8, 1035, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1041, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1047, 8, 8, 3, 8, 1049, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1057, 8, 8, 3, 8, 1059, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1069, 8, 8, 3, 8, 1071, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1086, 8, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1091, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1098, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1108, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1114, 8, 8, 3, 8, 1116, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1124, 8, 8, 3, 8, 1126, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1149, 8, 8, 10, 8, 12, 8, 1152, 9, 8, 3, 8, 1154, 8, 8, 1, 8, 1, 8, 3, 8, 1158, 8, 8, 1, 8, 1, 8, 3, 8, 1162, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1178, 8, 8, 10, 8, 12, 8, 1181, 9, 8, 3, 8, 1183, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1192, 8, 8, 10, 8, 12, 8, 1195, 9, 8, 3, 8, 1197, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1213, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 1221, 8, 8, 10, 8, 12, 8, 1224, 9, 8, 1, 8, 3, 8, 1227, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1233, 8, 8, 1, 8, 3, 8, 1236, 8, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 4, 8, 1243, 8, 8, 11, 8, 12, 8, 1244, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1257, 8, 8, 1, 9, 3, 9, 1260, 8, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 5, 10, 1268, 8, 10, 10, 10, 12, 10, 1271, 9, 10, 1, 11, 3, 11, 1274, 8, 11, 1, 11, 1, 11, 1, 12, 1, 12, 3, 12, 1280, 8, 12, 1, 12, 1, 12, 1, 12, 5, 12, 1285, 8, 12, 10, 12, 12, 12, 1288, 9, 12, 1, 13, 1, 13, 3, 13, 1292, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1298, 8, 14, 1, 14, 1, 14, 3, 14, 1302, 8, 14, 1, 14, 1, 14, 3, 14, 1306, 8, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1312, 8, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 5, 17, 1321, 8, 17, 10, 17, 12, 17, 1324, 9, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 1332, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1340, 8, 20, 10, 20, 12, 20, 1343, 9, 20, 3, 20, 1345, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1350, 8, 20, 3, 20, 1352, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1359, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 1365, 8, 20, 3, 20, 1367, 8, 20, 1, 21, 1, 21, 3, 21, 1371, 8, 21, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1381, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1387, 8, 23, 1, 23, 5, 23, 1390, 8, 23, 10, 23, 12, 23, 1393, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 1402, 8, 24, 10, 24, 12, 24, 1405, 9, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1411, 8, 24, 1, 25, 1, 25, 3, 25, 1415, 8, 25, 1, 25, 3, 25, 1418, 8, 25, 1, 25, 1, 25, 3, 25, 1422, 8, 25, 1, 26, 1, 26, 3, 26, 1426, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1433, 8, 26, 10, 26, 12, 26, 1436, 9, 26, 3, 26, 1438, 8, 26, 1, 26, 3, 26, 1441, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1446, 8, 26, 1, 26, 3, 26, 1449, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1455, 8, 26, 10, 26, 12, 26, 1458, 9, 26, 3, 26, 1460, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 5, 29, 1471, 8, 29, 10, 29, 12, 29, 1474, 9, 29, 1, 30, 3, 30, 1477, 8, 30, 1, 30, 1, 30, 1, 30, 5, 30, 1482, 8, 30, 10, 30, 12, 30, 1485, 9, 30, 1, 31, 1, 31, 1, 31, 5, 31, 1490, 8, 31, 10, 31, 12, 31, 1493, 9, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1501, 8, 32, 10, 32, 12, 32, 1504, 9, 32, 3, 32, 1506, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1514, 8, 32, 10, 32, 12, 32, 1517, 9, 32, 3, 32, 1519, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1528, 8, 32, 10, 32, 12, 32, 1531, 9, 32, 1, 32, 1, 32, 3, 32, 1535, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 5, 33, 1541, 8, 33, 10, 33, 12, 33, 1544, 9, 33, 3, 33, 1546, 8, 33, 1, 33, 1, 33, 3, 33, 1550, 8, 33, 1, 34, 1, 34, 3, 34, 1554, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 3, 36, 1563, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1568, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 5, 36, 1575, 8, 36, 10, 36, 12, 36, 1578, 9, 36, 3, 36, 1580, 8, 36, 1, 36, 3, 36, 1583, 8, 36, 1, 37, 1, 37, 3, 37, 1587, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 39, 1, 39, 3, 39, 1598, 8, 39, 1, 39, 3, 39, 1601, 8, 39, 1, 39, 3, 39, 1604, 8, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1609, 8, 39, 1, 39, 3, 39, 1612, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1641, 8, 44, 5, 44, 1643, 8, 44, 10, 44, 12, 44, 1646, 9, 44, 1, 45, 3, 45, 1649, 8, 45, 1, 45, 1, 45, 3, 45, 1653, 8, 45, 1, 45, 1, 45, 3, 45, 1657, 8, 45, 1, 45, 1, 45, 3, 45, 1661, 8, 45, 3, 45, 1663, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1669, 8, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 1676, 8, 46, 10, 46, 12, 46, 1679, 9, 46, 1, 46, 1, 46, 3, 46, 1683, 8, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1695, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1704, 8, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 1713, 8, 52, 1, 52, 3, 52, 1716, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1722, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1730, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1737, 8, 54, 10, 54, 12, 54, 1740, 9, 54, 3, 54, 1742, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1748, 8, 54, 10, 54, 12, 54, 1751, 9, 54, 3, 54, 1753, 8, 54, 1, 54, 3, 54, 1756, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 1761, 8, 54, 1, 54, 3, 54, 1764, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1774, 8, 54, 10, 54, 12, 54, 1777, 9, 54, 3, 54, 1779, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1785, 8, 54, 10, 54, 12, 54, 1788, 9, 54, 1, 54, 1, 54, 3, 54, 1792, 8, 54, 1, 54, 1, 54, 3, 54, 1796, 8, 54, 3, 54, 1798, 8, 54, 3, 54, 1800, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1815, 8, 56, 3, 56, 1817, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1828, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1849, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1857, 8, 59, 10, 59, 12, 59, 1860, 9, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 3, 61, 1870, 8, 61, 1, 61, 1, 61, 3, 61, 1874, 8, 61, 3, 61, 1876, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 5, 62, 1882, 8, 62, 10, 62, 12, 62, 1885, 9, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 5, 63, 1893, 8, 63, 10, 63, 12, 63, 1896, 9, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 5, 64, 1904, 8, 64, 10, 64, 12, 64, 1907, 9, 64, 1, 64, 1, 64, 1, 65, 1, 65, 3, 65, 1913, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1920, 8, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 1931, 8, 66, 10, 66, 12, 66, 1934, 9, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1939, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 5, 66, 1959, 8, 66, 10, 66, 12, 66, 1962, 9, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1976, 8, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1981, 8, 66, 1, 66, 1, 66, 3, 66, 1985, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 1995, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2001, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2007, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2015, 8, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2020, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2027, 8, 67, 3, 67, 2029, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2035, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2041, 8, 67, 1, 67, 1, 67, 3, 67, 2045, 8, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2050, 8, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 2057, 8, 67, 10, 67, 12, 67, 2060, 9, 67, 1, 67, 1, 67, 3, 67, 2064, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2076, 8, 68, 10, 68, 12, 68, 2079, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2086, 8, 68, 10, 68, 12, 68, 2089, 9, 68, 3, 68, 2091, 8, 68, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 2100, 8, 70, 1, 71, 1, 71, 1, 71, 3, 71, 2105, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2110, 8, 71, 3, 71, 2112, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2119, 8, 72, 10, 72, 12, 72, 2122, 9, 72, 3, 72, 2124, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2130, 8, 72, 10, 72, 12, 72, 2133, 9, 72, 3, 72, 2135, 8, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 3, 73, 2142, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2147, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2154, 8, 74, 1, 74, 1, 74, 3, 74, 2158, 8, 74, 3, 74, 2160, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2168, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2176, 8, 74, 10, 74, 12, 74, 2179, 9, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2184, 8, 74, 3, 74, 2186, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2193, 8, 75, 1, 75, 1, 75, 3, 75, 2197, 8, 75, 3, 75, 2199, 8, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2206, 8, 75, 1, 75, 1, 75, 3, 75, 2210, 8, 75, 3, 75, 2212, 8, 75, 3, 75, 2214, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 2221, 8, 76, 10, 76, 12, 76, 2224, 9, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 2234, 8, 76, 1, 77, 1, 77, 3, 77, 2238, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2246, 8, 78, 10, 78, 12, 78, 2249, 9, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 2258, 8, 80, 1, 80, 1, 80, 3, 80, 2262, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2270, 8, 80, 10, 80, 12, 80, 2273, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2285, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2293, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 2300, 8, 81, 10, 81, 12, 81, 2303, 9, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2308, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2316, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2322, 8, 81, 1, 81, 1, 81, 3, 81, 2326, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2331, 8, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2336, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 2342, 8, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 2356, 8, 82, 10, 82, 12, 82, 2359, 9, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 4, 83, 2386, 8, 83, 11, 83, 12, 83, 2387, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 2397, 8, 83, 10, 83, 12, 83, 2400, 9, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2407, 8, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2412, 8, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2417, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 2428, 8, 83, 10, 83, 12, 83, 2431, 9, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2436, 8, 83, 1, 83, 3, 83, 2439, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2446, 8, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2451, 8, 83, 1, 83, 3, 83, 2454, 8, 83, 1, 83, 3, 83, 2457, 8, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2462, 8, 83, 1, 83, 1, 83, 1, 83, 5, 83, 2467, 8, 83, 10, 83, 12, 83, 2470, 9, 83, 3, 83, 2472, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 2479, 8, 83, 10, 83, 12, 83, 2482, 9, 83, 3, 83, 2484, 8, 83, 1, 83, 1, 83, 3, 83, 2488, 8, 83, 1, 83, 3, 83, 2491, 8, 83, 1, 83, 3, 83, 2494, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 2507, 8, 83, 10, 83, 12, 83, 2510, 9, 83, 3, 83, 2512, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 4, 83, 2529, 8, 83, 11, 83, 12, 83, 2530, 1, 83, 1, 83, 3, 83, 2535, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 4, 83, 2541, 8, 83, 11, 83, 12, 83, 2542, 1, 83, 1, 83, 3, 83, 2547, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 2570, 8, 83, 10, 83, 12, 83, 2573, 9, 83, 3, 83, 2575, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2584, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2590, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2596, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2602, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2611, 8, 83, 1, 83, 3, 83, 2614, 8, 83, 1, 83, 3, 83, 2617, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2636, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2645, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 2661, 8, 83, 10, 83, 12, 83, 2664, 9, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 2677, 8, 83, 10, 83, 12, 83, 2680, 9, 83, 3, 83, 2682, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2692, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2701, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2707, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2713, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2724, 8, 83, 3, 83, 2726, 8, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2731, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2738, 8, 83, 3, 83, 2740, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2746, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2752, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 2761, 8, 83, 10, 83, 12, 83, 2764, 9, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2772, 8, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2777, 8, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2782, 8, 83, 3, 83, 2784, 8, 83, 3, 83, 2786, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2792, 8, 83, 3, 83, 2794, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 2802, 8, 83, 10, 83, 12, 83, 2805, 9, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2813, 8, 83, 3, 83, 2815, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2821, 8, 83, 3, 83, 2823, 8, 83, 1, 83, 3, 83, 2826, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 2836, 8, 83, 10, 83, 12, 83, 2839, 9, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2846, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 2852, 8, 84, 10, 84, 12, 84, 2855, 9, 84, 3, 84, 2857, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 2862, 8, 85, 1, 86, 1, 86, 1, 86, 3, 86, 2867, 8, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 2879, 8, 89, 1, 90, 1, 90, 3, 90, 2883, 8, 90, 1, 90, 1, 90, 3, 90, 2887, 8, 90, 1, 90, 3, 90, 2890, 8, 90, 3, 90, 2892, 8, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2900, 8, 91, 1, 92, 3, 92, 2903, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2913, 8, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 2921, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 2927, 8, 95, 3, 95, 2929, 8, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 2937, 8, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 3, 100, 2947, 8, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2953, 8, 100, 1, 101, 1, 101, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 2965, 8, 103, 10, 103, 12, 103, 2968, 9, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2976, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2983, 8, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2988, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2995, 8, 103, 1, 103, 1, 103, 1, 103, 3, 103, 3000, 8, 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, 5, 103, 3021, 8, 103, 10, 103, 12, 103, 3024, 9, 103, 1, 103, 1, 103, 3, 103, 3028, 8, 103, 3, 103, 3030, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 3037, 8, 103, 5, 103, 3039, 8, 103, 10, 103, 12, 103, 3042, 9, 103, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3048, 8, 104, 1, 105, 1, 105, 3, 105, 3052, 8, 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, 3, 108, 3068, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 3081, 8, 108, 10, 108, 12, 108, 3084, 9, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3090, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3099, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 3107, 8, 108, 10, 108, 12, 108, 3110, 9, 108, 1, 108, 1, 108, 3, 108, 3114, 8, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 3121, 8, 108, 10, 108, 12, 108, 3124, 9, 108, 1, 108, 1, 108, 3, 108, 3128, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3136, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 3142, 8, 110, 10, 110, 12, 110, 3145, 9, 110, 3, 110, 3147, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3153, 8, 110, 1, 110, 3, 110, 3156, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 3163, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 3169, 8, 110, 10, 110, 12, 110, 3172, 9, 110, 3, 110, 3174, 8, 110, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 3180, 8, 110, 10, 110, 12, 110, 3183, 9, 110, 3, 110, 3185, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3211, 8, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 3222, 8, 112, 1, 113, 1, 113, 1, 113, 3, 113, 3227, 8, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 3234, 8, 113, 10, 113, 12, 113, 3237, 9, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 3247, 8, 114, 10, 114, 12, 114, 3250, 9, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3264, 8, 114, 1, 115, 1, 115, 3, 115, 3268, 8, 115, 1, 115, 1, 115, 3, 115, 3272, 8, 115, 1, 115, 1, 115, 3, 115, 3276, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3282, 8, 115, 1, 115, 1, 115, 3, 115, 3286, 8, 115, 1, 115, 1, 115, 3, 115, 3290, 8, 115, 1, 115, 1, 115, 3, 115, 3294, 8, 115, 3, 115, 3296, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3306, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3313, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3322, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3329, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3336, 8, 121, 1, 122, 1, 122, 1, 122, 5, 122, 3341, 8, 122, 10, 122, 12, 122, 3344, 9, 122, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 3350, 8, 123, 10, 123, 12, 123, 3353, 9, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 3362, 8, 124, 10, 124, 12, 124, 3365, 9, 124, 3, 124, 3367, 8, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 3376, 8, 125, 10, 125, 12, 125, 3379, 9, 125, 3, 125, 3381, 8, 125, 1, 125, 1, 125, 1, 126, 3, 126, 3386, 8, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 3, 128, 3396, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3412, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 4, 129, 3424, 8, 129, 11, 129, 12, 129, 3425, 1, 129, 3, 129, 3429, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 4, 129, 3436, 8, 129, 11, 129, 12, 129, 3437, 1, 129, 3, 129, 3441, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3451, 8, 129, 10, 129, 12, 129, 3454, 9, 129, 1, 129, 3, 129, 3457, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3470, 8, 129, 10, 129, 12, 129, 3473, 9, 129, 1, 129, 3, 129, 3476, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3482, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3492, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3504, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 3513, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 3532, 8, 133, 10, 133, 12, 133, 3535, 9, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3540, 8, 133, 1, 134, 1, 134, 1, 134, 4, 134, 3545, 8, 134, 11, 134, 12, 134, 3546, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3555, 8, 135, 1, 136, 1, 136, 1, 136, 3, 136, 3560, 8, 136, 1, 137, 3, 137, 3563, 8, 137, 1, 137, 1, 137, 1, 138, 1, 138, 3, 138, 3569, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 3582, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 3595, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3608, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 3621, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3628, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 3635, 8, 144, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 149, 1, 149, 3, 149, 3647, 8, 149, 1, 150, 1, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 5, 153, 3658, 8, 153, 10, 153, 12, 153, 3661, 9, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 3, 156, 3674, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 3681, 8, 157, 1, 158, 1, 158, 1, 158, 5, 158, 3686, 8, 158, 10, 158, 12, 158, 3689, 9, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3698, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3705, 8, 160, 1, 161, 3, 161, 3708, 8, 161, 1, 161, 1, 161, 3, 161, 3712, 8, 161, 1, 161, 1, 161, 3, 161, 3716, 8, 161, 1, 161, 3, 161, 3719, 8, 161, 1, 162, 1, 162, 3, 162, 3723, 8, 162, 1, 163, 1, 163, 1, 163, 0, 7, 46, 88, 160, 164, 166, 206, 226, 164, 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, 0, 36, 2, 0, 39, 39, 230, 230, 2, 0, 73, 73, 132, 132, 2, 0, 106, 106, 123, 123, 2, 0, 93, 93, 124, 124, 1, 0, 240, 241, 2, 0, 102, 102, 175, 175, 2, 0, 325, 325, 330, 330, 2, 0, 92, 92, 282, 282, 2, 0, 29, 29, 76, 76, 2, 0, 102, 102, 149, 149, 2, 0, 22, 22, 80, 80, 2, 0, 33, 33, 260, 260, 3, 0, 35, 35, 151, 151, 271, 271, 2, 0, 125, 125, 248, 248, 2, 0, 86, 86, 90, 90, 2, 0, 145, 145, 190, 190, 2, 0, 126, 126, 198, 198, 2, 0, 55, 55, 282, 282, 1, 0, 319, 320, 1, 0, 321, 323, 1, 0, 292, 294, 4, 0, 90, 90, 98, 98, 274, 274, 284, 284, 2, 0, 50, 50, 281, 281, 2, 0, 101, 101, 242, 242, 1, 0, 313, 318, 3, 0, 22, 22, 26, 26, 255, 255, 2, 0, 98, 98, 274, 274, 5, 0, 68, 68, 119, 119, 171, 172, 246, 246, 311, 311, 1, 0, 176, 179, 2, 0, 305, 305, 307, 307, 2, 0, 103, 103, 213, 213, 3, 0, 114, 114, 138, 138, 264, 264, 4, 0, 81, 81, 133, 133, 161, 161, 295, 295, 2, 0, 193, 193, 310, 310, 2, 0, 269, 269, 299, 299, 54, 0, 18, 22, 24, 24, 26, 27, 29, 33, 35, 35, 37, 39, 42, 50, 52, 53, 57, 57, 66, 68, 70, 73, 75, 76, 78, 79, 81, 83, 86, 88, 90, 90, 93, 93, 96, 96, 99, 103, 105, 105, 108, 114, 117, 117, 119, 122, 124, 125, 127, 127, 130, 130, 132, 133, 135, 136, 138, 138, 145, 152, 154, 154, 156, 156, 158, 158, 161, 172, 174, 181, 185, 190, 192, 194, 197, 197, 199, 214, 216, 221, 223, 234, 236, 238, 240, 248, 250, 260, 262, 265, 267, 272, 275, 277, 279, 281, 283, 285, 287, 290, 292, 296, 298, 300, 303, 304, 306, 312, 4267, 0, 331, 1, 0, 0, 0, 2, 336, 1, 0, 0, 0, 4, 338, 1, 0, 0, 0, 6, 342, 1, 0, 0, 0, 8, 346, 1, 0, 0, 0, 10, 350, 1, 0, 0, 0, 12, 354, 1, 0, 0, 0, 14, 358, 1, 0, 0, 0, 16, 1256, 1, 0, 0, 0, 18, 1259, 1, 0, 0, 0, 20, 1263, 1, 0, 0, 0, 22, 1273, 1, 0, 0, 0, 24, 1277, 1, 0, 0, 0, 26, 1291, 1, 0, 0, 0, 28, 1293, 1, 0, 0, 0, 30, 1307, 1, 0, 0, 0, 32, 1313, 1, 0, 0, 0, 34, 1317, 1, 0, 0, 0, 36, 1325, 1, 0, 0, 0, 38, 1331, 1, 0, 0, 0, 40, 1333, 1, 0, 0, 0, 42, 1370, 1, 0, 0, 0, 44, 1372, 1, 0, 0, 0, 46, 1374, 1, 0, 0, 0, 48, 1410, 1, 0, 0, 0, 50, 1414, 1, 0, 0, 0, 52, 1423, 1, 0, 0, 0, 54, 1461, 1, 0, 0, 0, 56, 1464, 1, 0, 0, 0, 58, 1467, 1, 0, 0, 0, 60, 1476, 1, 0, 0, 0, 62, 1486, 1, 0, 0, 0, 64, 1534, 1, 0, 0, 0, 66, 1549, 1, 0, 0, 0, 68, 1553, 1, 0, 0, 0, 70, 1555, 1, 0, 0, 0, 72, 1562, 1, 0, 0, 0, 74, 1584, 1, 0, 0, 0, 76, 1593, 1, 0, 0, 0, 78, 1611, 1, 0, 0, 0, 80, 1613, 1, 0, 0, 0, 82, 1615, 1, 0, 0, 0, 84, 1619, 1, 0, 0, 0, 86, 1621, 1, 0, 0, 0, 88, 1623, 1, 0, 0, 0, 90, 1662, 1, 0, 0, 0, 92, 1682, 1, 0, 0, 0, 94, 1684, 1, 0, 0, 0, 96, 1694, 1, 0, 0, 0, 98, 1696, 1, 0, 0, 0, 100, 1705, 1, 0, 0, 0, 102, 1707, 1, 0, 0, 0, 104, 1715, 1, 0, 0, 0, 106, 1721, 1, 0, 0, 0, 108, 1723, 1, 0, 0, 0, 110, 1801, 1, 0, 0, 0, 112, 1816, 1, 0, 0, 0, 114, 1827, 1, 0, 0, 0, 116, 1848, 1, 0, 0, 0, 118, 1850, 1, 0, 0, 0, 120, 1863, 1, 0, 0, 0, 122, 1867, 1, 0, 0, 0, 124, 1877, 1, 0, 0, 0, 126, 1888, 1, 0, 0, 0, 128, 1899, 1, 0, 0, 0, 130, 1919, 1, 0, 0, 0, 132, 1984, 1, 0, 0, 0, 134, 2063, 1, 0, 0, 0, 136, 2090, 1, 0, 0, 0, 138, 2092, 1, 0, 0, 0, 140, 2099, 1, 0, 0, 0, 142, 2111, 1, 0, 0, 0, 144, 2113, 1, 0, 0, 0, 146, 2141, 1, 0, 0, 0, 148, 2148, 1, 0, 0, 0, 150, 2213, 1, 0, 0, 0, 152, 2233, 1, 0, 0, 0, 154, 2235, 1, 0, 0, 0, 156, 2239, 1, 0, 0, 0, 158, 2252, 1, 0, 0, 0, 160, 2261, 1, 0, 0, 0, 162, 2335, 1, 0, 0, 0, 164, 2341, 1, 0, 0, 0, 166, 2825, 1, 0, 0, 0, 168, 2840, 1, 0, 0, 0, 170, 2858, 1, 0, 0, 0, 172, 2863, 1, 0, 0, 0, 174, 2868, 1, 0, 0, 0, 176, 2872, 1, 0, 0, 0, 178, 2878, 1, 0, 0, 0, 180, 2891, 1, 0, 0, 0, 182, 2899, 1, 0, 0, 0, 184, 2912, 1, 0, 0, 0, 186, 2914, 1, 0, 0, 0, 188, 2920, 1, 0, 0, 0, 190, 2928, 1, 0, 0, 0, 192, 2936, 1, 0, 0, 0, 194, 2938, 1, 0, 0, 0, 196, 2940, 1, 0, 0, 0, 198, 2942, 1, 0, 0, 0, 200, 2944, 1, 0, 0, 0, 202, 2954, 1, 0, 0, 0, 204, 2956, 1, 0, 0, 0, 206, 3029, 1, 0, 0, 0, 208, 3047, 1, 0, 0, 0, 210, 3051, 1, 0, 0, 0, 212, 3053, 1, 0, 0, 0, 214, 3058, 1, 0, 0, 0, 216, 3127, 1, 0, 0, 0, 218, 3129, 1, 0, 0, 0, 220, 3146, 1, 0, 0, 0, 222, 3210, 1, 0, 0, 0, 224, 3221, 1, 0, 0, 0, 226, 3223, 1, 0, 0, 0, 228, 3263, 1, 0, 0, 0, 230, 3295, 1, 0, 0, 0, 232, 3297, 1, 0, 0, 0, 234, 3305, 1, 0, 0, 0, 236, 3312, 1, 0, 0, 0, 238, 3321, 1, 0, 0, 0, 240, 3328, 1, 0, 0, 0, 242, 3335, 1, 0, 0, 0, 244, 3337, 1, 0, 0, 0, 246, 3345, 1, 0, 0, 0, 248, 3356, 1, 0, 0, 0, 250, 3370, 1, 0, 0, 0, 252, 3385, 1, 0, 0, 0, 254, 3389, 1, 0, 0, 0, 256, 3411, 1, 0, 0, 0, 258, 3512, 1, 0, 0, 0, 260, 3514, 1, 0, 0, 0, 262, 3519, 1, 0, 0, 0, 264, 3524, 1, 0, 0, 0, 266, 3527, 1, 0, 0, 0, 268, 3544, 1, 0, 0, 0, 270, 3554, 1, 0, 0, 0, 272, 3559, 1, 0, 0, 0, 274, 3562, 1, 0, 0, 0, 276, 3568, 1, 0, 0, 0, 278, 3581, 1, 0, 0, 0, 280, 3594, 1, 0, 0, 0, 282, 3607, 1, 0, 0, 0, 284, 3620, 1, 0, 0, 0, 286, 3627, 1, 0, 0, 0, 288, 3634, 1, 0, 0, 0, 290, 3636, 1, 0, 0, 0, 292, 3638, 1, 0, 0, 0, 294, 3640, 1, 0, 0, 0, 296, 3642, 1, 0, 0, 0, 298, 3646, 1, 0, 0, 0, 300, 3648, 1, 0, 0, 0, 302, 3650, 1, 0, 0, 0, 304, 3652, 1, 0, 0, 0, 306, 3654, 1, 0, 0, 0, 308, 3662, 1, 0, 0, 0, 310, 3668, 1, 0, 0, 0, 312, 3673, 1, 0, 0, 0, 314, 3680, 1, 0, 0, 0, 316, 3682, 1, 0, 0, 0, 318, 3697, 1, 0, 0, 0, 320, 3704, 1, 0, 0, 0, 322, 3718, 1, 0, 0, 0, 324, 3722, 1, 0, 0, 0, 326, 3724, 1, 0, 0, 0, 328, 330, 3, 2, 1, 0, 329, 328, 1, 0, 0, 0, 330, 333, 1, 0, 0, 0, 331, 329, 1, 0, 0, 0, 331, 332, 1, 0, 0, 0, 332, 334, 1, 0, 0, 0, 333, 331, 1, 0, 0, 0, 334, 335, 5, 0, 0, 1, 335, 1, 1, 0, 0, 0, 336, 337, 3, 4, 2, 0, 337, 3, 1, 0, 0, 0, 338, 340, 3, 16, 8, 0, 339, 341, 5, 326, 0, 0, 340, 339, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 5, 1, 0, 0, 0, 342, 344, 3, 158, 79, 0, 343, 345, 5, 326, 0, 0, 344, 343, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 7, 1, 0, 0, 0, 346, 348, 3, 244, 122, 0, 347, 349, 5, 326, 0, 0, 348, 347, 1, 0, 0, 0, 348, 349, 1, 0, 0, 0, 349, 9, 1, 0, 0, 0, 350, 352, 3, 206, 103, 0, 351, 353, 5, 326, 0, 0, 352, 351, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 11, 1, 0, 0, 0, 354, 356, 3, 226, 113, 0, 355, 357, 5, 326, 0, 0, 356, 355, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 13, 1, 0, 0, 0, 358, 359, 3, 246, 123, 0, 359, 360, 5, 0, 0, 1, 360, 15, 1, 0, 0, 0, 361, 1257, 3, 18, 9, 0, 362, 363, 5, 289, 0, 0, 363, 1257, 3, 286, 143, 0, 364, 365, 5, 54, 0, 0, 365, 369, 5, 42, 0, 0, 366, 367, 5, 120, 0, 0, 367, 368, 5, 183, 0, 0, 368, 370, 5, 95, 0, 0, 369, 366, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 371, 1, 0, 0, 0, 371, 372, 3, 292, 146, 0, 372, 373, 5, 291, 0, 0, 373, 376, 3, 320, 160, 0, 374, 375, 5, 47, 0, 0, 375, 377, 3, 190, 95, 0, 376, 374, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 380, 1, 0, 0, 0, 378, 379, 5, 31, 0, 0, 379, 381, 3, 314, 157, 0, 380, 378, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 384, 1, 0, 0, 0, 382, 383, 5, 305, 0, 0, 383, 385, 3, 32, 16, 0, 384, 382, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 1257, 1, 0, 0, 0, 386, 387, 5, 84, 0, 0, 387, 390, 5, 42, 0, 0, 388, 389, 5, 120, 0, 0, 389, 391, 5, 95, 0, 0, 390, 388, 1, 0, 0, 0, 390, 391, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 3, 290, 145, 0, 393, 395, 7, 0, 0, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 1257, 1, 0, 0, 0, 396, 397, 5, 54, 0, 0, 397, 401, 5, 244, 0, 0, 398, 399, 5, 120, 0, 0, 399, 400, 5, 183, 0, 0, 400, 402, 5, 95, 0, 0, 401, 398, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 403, 1, 0, 0, 0, 403, 406, 3, 288, 144, 0, 404, 405, 5, 31, 0, 0, 405, 407, 3, 314, 157, 0, 406, 404, 1, 0, 0, 0, 406, 407, 1, 0, 0, 0, 407, 410, 1, 0, 0, 0, 408, 409, 5, 305, 0, 0, 409, 411, 3, 32, 16, 0, 410, 408, 1, 0, 0, 0, 410, 411, 1, 0, 0, 0, 411, 1257, 1, 0, 0, 0, 412, 413, 5, 84, 0, 0, 413, 416, 5, 244, 0, 0, 414, 415, 5, 120, 0, 0, 415, 417, 5, 95, 0, 0, 416, 414, 1, 0, 0, 0, 416, 417, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 420, 3, 286, 143, 0, 419, 421, 7, 0, 0, 0, 420, 419, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 1257, 1, 0, 0, 0, 422, 423, 5, 23, 0, 0, 423, 424, 5, 244, 0, 0, 424, 425, 3, 286, 143, 0, 425, 426, 5, 224, 0, 0, 426, 427, 5, 270, 0, 0, 427, 428, 3, 288, 144, 0, 428, 1257, 1, 0, 0, 0, 429, 430, 5, 23, 0, 0, 430, 431, 5, 244, 0, 0, 431, 432, 3, 286, 143, 0, 432, 433, 5, 252, 0, 0, 433, 434, 5, 31, 0, 0, 434, 435, 3, 314, 157, 0, 435, 1257, 1, 0, 0, 0, 436, 439, 5, 54, 0, 0, 437, 438, 5, 195, 0, 0, 438, 440, 5, 227, 0, 0, 439, 437, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 445, 5, 261, 0, 0, 442, 443, 5, 120, 0, 0, 443, 444, 5, 183, 0, 0, 444, 446, 5, 95, 0, 0, 445, 442, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 449, 3, 280, 140, 0, 448, 450, 3, 124, 62, 0, 449, 448, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 453, 1, 0, 0, 0, 451, 452, 5, 47, 0, 0, 452, 454, 3, 190, 95, 0, 453, 451, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 457, 1, 0, 0, 0, 455, 456, 5, 305, 0, 0, 456, 458, 3, 32, 16, 0, 457, 455, 1, 0, 0, 0, 457, 458, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 465, 5, 28, 0, 0, 460, 466, 3, 18, 9, 0, 461, 462, 5, 1, 0, 0, 462, 463, 3, 18, 9, 0, 463, 464, 5, 2, 0, 0, 464, 466, 1, 0, 0, 0, 465, 460, 1, 0, 0, 0, 465, 461, 1, 0, 0, 0, 466, 472, 1, 0, 0, 0, 467, 469, 5, 305, 0, 0, 468, 470, 5, 180, 0, 0, 469, 468, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 473, 5, 66, 0, 0, 472, 467, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 1257, 1, 0, 0, 0, 474, 477, 5, 54, 0, 0, 475, 476, 5, 195, 0, 0, 476, 478, 5, 227, 0, 0, 477, 475, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 483, 5, 261, 0, 0, 480, 481, 5, 120, 0, 0, 481, 482, 5, 183, 0, 0, 482, 484, 5, 95, 0, 0, 483, 480, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 486, 3, 280, 140, 0, 486, 487, 5, 1, 0, 0, 487, 492, 3, 26, 13, 0, 488, 489, 5, 3, 0, 0, 489, 491, 3, 26, 13, 0, 490, 488, 1, 0, 0, 0, 491, 494, 1, 0, 0, 0, 492, 490, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 495, 1, 0, 0, 0, 494, 492, 1, 0, 0, 0, 495, 498, 5, 2, 0, 0, 496, 497, 5, 47, 0, 0, 497, 499, 3, 190, 95, 0, 498, 496, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 502, 1, 0, 0, 0, 500, 501, 5, 305, 0, 0, 501, 503, 3, 32, 16, 0, 502, 500, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 1257, 1, 0, 0, 0, 504, 505, 5, 84, 0, 0, 505, 508, 5, 261, 0, 0, 506, 507, 5, 120, 0, 0, 507, 509, 5, 95, 0, 0, 508, 506, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 1257, 3, 278, 139, 0, 511, 512, 5, 128, 0, 0, 512, 513, 5, 131, 0, 0, 513, 515, 3, 278, 139, 0, 514, 516, 3, 126, 63, 0, 515, 514, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 518, 3, 18, 9, 0, 518, 1257, 1, 0, 0, 0, 519, 520, 5, 74, 0, 0, 520, 521, 5, 106, 0, 0, 521, 523, 3, 278, 139, 0, 522, 524, 3, 54, 27, 0, 523, 522, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 1257, 1, 0, 0, 0, 525, 526, 5, 275, 0, 0, 526, 527, 5, 261, 0, 0, 527, 1257, 3, 278, 139, 0, 528, 529, 5, 47, 0, 0, 529, 530, 5, 191, 0, 0, 530, 531, 5, 261, 0, 0, 531, 532, 3, 278, 139, 0, 532, 535, 5, 134, 0, 0, 533, 536, 3, 190, 95, 0, 534, 536, 5, 184, 0, 0, 535, 533, 1, 0, 0, 0, 535, 534, 1, 0, 0, 0, 536, 1257, 1, 0, 0, 0, 537, 538, 5, 47, 0, 0, 538, 539, 5, 191, 0, 0, 539, 540, 5, 300, 0, 0, 540, 541, 3, 282, 141, 0, 541, 544, 5, 134, 0, 0, 542, 545, 3, 190, 95, 0, 543, 545, 5, 184, 0, 0, 544, 542, 1, 0, 0, 0, 544, 543, 1, 0, 0, 0, 545, 1257, 1, 0, 0, 0, 546, 547, 5, 47, 0, 0, 547, 548, 5, 191, 0, 0, 548, 549, 5, 45, 0, 0, 549, 550, 3, 298, 149, 0, 550, 553, 5, 134, 0, 0, 551, 554, 3, 190, 95, 0, 552, 554, 5, 184, 0, 0, 553, 551, 1, 0, 0, 0, 553, 552, 1, 0, 0, 0, 554, 1257, 1, 0, 0, 0, 555, 556, 5, 23, 0, 0, 556, 559, 5, 261, 0, 0, 557, 558, 5, 120, 0, 0, 558, 560, 5, 95, 0, 0, 559, 557, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 3, 278, 139, 0, 562, 563, 5, 224, 0, 0, 563, 564, 5, 270, 0, 0, 564, 565, 3, 280, 140, 0, 565, 1257, 1, 0, 0, 0, 566, 567, 5, 23, 0, 0, 567, 570, 5, 261, 0, 0, 568, 569, 5, 120, 0, 0, 569, 571, 5, 95, 0, 0, 570, 568, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 572, 1, 0, 0, 0, 572, 573, 3, 278, 139, 0, 573, 574, 5, 19, 0, 0, 574, 578, 5, 45, 0, 0, 575, 576, 5, 120, 0, 0, 576, 577, 5, 183, 0, 0, 577, 579, 5, 95, 0, 0, 578, 575, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 1, 0, 0, 0, 580, 581, 3, 28, 14, 0, 581, 1257, 1, 0, 0, 0, 582, 583, 5, 23, 0, 0, 583, 586, 5, 261, 0, 0, 584, 585, 5, 120, 0, 0, 585, 587, 5, 95, 0, 0, 586, 584, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 589, 3, 278, 139, 0, 589, 590, 5, 224, 0, 0, 590, 593, 5, 45, 0, 0, 591, 592, 5, 120, 0, 0, 592, 594, 5, 95, 0, 0, 593, 591, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 3, 298, 149, 0, 596, 597, 5, 270, 0, 0, 597, 598, 3, 304, 152, 0, 598, 1257, 1, 0, 0, 0, 599, 600, 5, 23, 0, 0, 600, 603, 5, 261, 0, 0, 601, 602, 5, 120, 0, 0, 602, 604, 5, 95, 0, 0, 603, 601, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 3, 278, 139, 0, 606, 607, 5, 84, 0, 0, 607, 610, 5, 45, 0, 0, 608, 609, 5, 120, 0, 0, 609, 611, 5, 95, 0, 0, 610, 608, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 3, 298, 149, 0, 613, 1257, 1, 0, 0, 0, 614, 615, 5, 23, 0, 0, 615, 618, 5, 261, 0, 0, 616, 617, 5, 120, 0, 0, 617, 619, 5, 95, 0, 0, 618, 616, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 3, 278, 139, 0, 621, 622, 5, 23, 0, 0, 622, 623, 5, 45, 0, 0, 623, 624, 3, 298, 149, 0, 624, 625, 5, 252, 0, 0, 625, 626, 5, 66, 0, 0, 626, 627, 5, 277, 0, 0, 627, 628, 3, 206, 103, 0, 628, 1257, 1, 0, 0, 0, 629, 630, 5, 23, 0, 0, 630, 633, 5, 261, 0, 0, 631, 632, 5, 120, 0, 0, 632, 634, 5, 95, 0, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 636, 3, 278, 139, 0, 636, 637, 5, 23, 0, 0, 637, 638, 5, 45, 0, 0, 638, 639, 3, 298, 149, 0, 639, 640, 5, 84, 0, 0, 640, 641, 5, 183, 0, 0, 641, 642, 5, 184, 0, 0, 642, 1257, 1, 0, 0, 0, 643, 644, 5, 23, 0, 0, 644, 645, 5, 261, 0, 0, 645, 646, 3, 278, 139, 0, 646, 647, 5, 252, 0, 0, 647, 648, 5, 31, 0, 0, 648, 649, 3, 314, 157, 0, 649, 1257, 1, 0, 0, 0, 650, 651, 5, 23, 0, 0, 651, 652, 5, 261, 0, 0, 652, 653, 3, 278, 139, 0, 653, 654, 5, 252, 0, 0, 654, 655, 5, 217, 0, 0, 655, 656, 3, 34, 17, 0, 656, 1257, 1, 0, 0, 0, 657, 658, 5, 23, 0, 0, 658, 659, 5, 261, 0, 0, 659, 660, 3, 278, 139, 0, 660, 661, 5, 94, 0, 0, 661, 674, 3, 294, 147, 0, 662, 671, 5, 1, 0, 0, 663, 668, 3, 240, 120, 0, 664, 665, 5, 3, 0, 0, 665, 667, 3, 240, 120, 0, 666, 664, 1, 0, 0, 0, 667, 670, 1, 0, 0, 0, 668, 666, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 672, 1, 0, 0, 0, 670, 668, 1, 0, 0, 0, 671, 663, 1, 0, 0, 0, 671, 672, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 675, 5, 2, 0, 0, 674, 662, 1, 0, 0, 0, 674, 675, 1, 0, 0, 0, 675, 677, 1, 0, 0, 0, 676, 678, 3, 54, 27, 0, 677, 676, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 1257, 1, 0, 0, 0, 679, 680, 5, 24, 0, 0, 680, 683, 3, 278, 139, 0, 681, 682, 5, 305, 0, 0, 682, 684, 3, 32, 16, 0, 683, 681, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 1257, 1, 0, 0, 0, 685, 688, 5, 54, 0, 0, 686, 687, 5, 195, 0, 0, 687, 689, 5, 227, 0, 0, 688, 686, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 691, 5, 168, 0, 0, 691, 695, 5, 300, 0, 0, 692, 693, 5, 120, 0, 0, 693, 694, 5, 183, 0, 0, 694, 696, 5, 95, 0, 0, 695, 692, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 701, 3, 284, 142, 0, 698, 699, 5, 110, 0, 0, 699, 700, 5, 209, 0, 0, 700, 702, 3, 200, 100, 0, 701, 698, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 705, 1, 0, 0, 0, 703, 704, 5, 47, 0, 0, 704, 706, 3, 190, 95, 0, 705, 703, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 709, 1, 0, 0, 0, 707, 708, 5, 305, 0, 0, 708, 710, 3, 32, 16, 0, 709, 707, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 1, 0, 0, 0, 711, 712, 5, 28, 0, 0, 712, 713, 3, 18, 9, 0, 713, 1257, 1, 0, 0, 0, 714, 717, 5, 54, 0, 0, 715, 716, 5, 195, 0, 0, 716, 718, 5, 227, 0, 0, 717, 715, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 719, 1, 0, 0, 0, 719, 720, 5, 300, 0, 0, 720, 723, 3, 284, 142, 0, 721, 722, 5, 47, 0, 0, 722, 724, 3, 190, 95, 0, 723, 721, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 727, 1, 0, 0, 0, 725, 726, 5, 247, 0, 0, 726, 728, 7, 1, 0, 0, 727, 725, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 731, 1, 0, 0, 0, 729, 730, 5, 305, 0, 0, 730, 732, 3, 32, 16, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 734, 5, 28, 0, 0, 734, 735, 3, 18, 9, 0, 735, 1257, 1, 0, 0, 0, 736, 737, 5, 223, 0, 0, 737, 738, 5, 168, 0, 0, 738, 739, 5, 300, 0, 0, 739, 1257, 3, 282, 141, 0, 740, 741, 5, 84, 0, 0, 741, 742, 5, 168, 0, 0, 742, 745, 5, 300, 0, 0, 743, 744, 5, 120, 0, 0, 744, 746, 5, 95, 0, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 747, 1, 0, 0, 0, 747, 1257, 3, 282, 141, 0, 748, 749, 5, 23, 0, 0, 749, 750, 5, 168, 0, 0, 750, 753, 5, 300, 0, 0, 751, 752, 5, 120, 0, 0, 752, 754, 5, 95, 0, 0, 753, 751, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 756, 3, 282, 141, 0, 756, 757, 5, 224, 0, 0, 757, 758, 5, 270, 0, 0, 758, 759, 3, 284, 142, 0, 759, 1257, 1, 0, 0, 0, 760, 761, 5, 23, 0, 0, 761, 762, 5, 168, 0, 0, 762, 763, 5, 300, 0, 0, 763, 764, 3, 282, 141, 0, 764, 765, 5, 252, 0, 0, 765, 766, 5, 217, 0, 0, 766, 767, 3, 34, 17, 0, 767, 1257, 1, 0, 0, 0, 768, 769, 5, 84, 0, 0, 769, 772, 5, 300, 0, 0, 770, 771, 5, 120, 0, 0, 771, 773, 5, 95, 0, 0, 772, 770, 1, 0, 0, 0, 772, 773, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 1257, 3, 282, 141, 0, 775, 776, 5, 23, 0, 0, 776, 777, 5, 300, 0, 0, 777, 778, 3, 282, 141, 0, 778, 779, 5, 224, 0, 0, 779, 780, 5, 270, 0, 0, 780, 781, 3, 284, 142, 0, 781, 1257, 1, 0, 0, 0, 782, 783, 5, 23, 0, 0, 783, 784, 5, 300, 0, 0, 784, 785, 3, 282, 141, 0, 785, 786, 5, 252, 0, 0, 786, 787, 5, 31, 0, 0, 787, 788, 3, 314, 157, 0, 788, 1257, 1, 0, 0, 0, 789, 790, 5, 37, 0, 0, 790, 791, 3, 294, 147, 0, 791, 800, 5, 1, 0, 0, 792, 797, 3, 240, 120, 0, 793, 794, 5, 3, 0, 0, 794, 796, 3, 240, 120, 0, 795, 793, 1, 0, 0, 0, 796, 799, 1, 0, 0, 0, 797, 795, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 801, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 800, 792, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 803, 5, 2, 0, 0, 803, 1257, 1, 0, 0, 0, 804, 807, 5, 54, 0, 0, 805, 806, 5, 195, 0, 0, 806, 808, 5, 227, 0, 0, 807, 805, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 1257, 3, 246, 123, 0, 810, 811, 5, 84, 0, 0, 811, 814, 5, 108, 0, 0, 812, 813, 5, 120, 0, 0, 813, 815, 5, 95, 0, 0, 814, 812, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 1257, 3, 250, 125, 0, 817, 818, 5, 54, 0, 0, 818, 819, 5, 236, 0, 0, 819, 823, 3, 320, 160, 0, 820, 821, 5, 305, 0, 0, 821, 822, 5, 20, 0, 0, 822, 824, 3, 312, 156, 0, 823, 820, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 827, 1, 0, 0, 0, 825, 826, 5, 123, 0, 0, 826, 828, 3, 290, 145, 0, 827, 825, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 1257, 1, 0, 0, 0, 829, 830, 5, 84, 0, 0, 830, 831, 5, 236, 0, 0, 831, 834, 3, 320, 160, 0, 832, 833, 5, 123, 0, 0, 833, 835, 3, 290, 145, 0, 834, 832, 1, 0, 0, 0, 834, 835, 1, 0, 0, 0, 835, 1257, 1, 0, 0, 0, 836, 837, 5, 111, 0, 0, 837, 842, 3, 318, 159, 0, 838, 839, 5, 3, 0, 0, 839, 841, 3, 318, 159, 0, 840, 838, 1, 0, 0, 0, 841, 844, 1, 0, 0, 0, 842, 840, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 845, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 845, 846, 5, 270, 0, 0, 846, 851, 3, 314, 157, 0, 847, 848, 5, 3, 0, 0, 848, 850, 3, 314, 157, 0, 849, 847, 1, 0, 0, 0, 850, 853, 1, 0, 0, 0, 851, 849, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 857, 1, 0, 0, 0, 853, 851, 1, 0, 0, 0, 854, 855, 5, 305, 0, 0, 855, 856, 5, 20, 0, 0, 856, 858, 5, 194, 0, 0, 857, 854, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 862, 1, 0, 0, 0, 859, 860, 5, 112, 0, 0, 860, 861, 5, 36, 0, 0, 861, 863, 3, 312, 156, 0, 862, 859, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 866, 1, 0, 0, 0, 864, 865, 5, 123, 0, 0, 865, 867, 3, 290, 145, 0, 866, 864, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 1257, 1, 0, 0, 0, 868, 879, 5, 111, 0, 0, 869, 874, 3, 318, 159, 0, 870, 871, 5, 3, 0, 0, 871, 873, 3, 318, 159, 0, 872, 870, 1, 0, 0, 0, 873, 876, 1, 0, 0, 0, 874, 872, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 880, 1, 0, 0, 0, 876, 874, 1, 0, 0, 0, 877, 878, 5, 22, 0, 0, 878, 880, 5, 216, 0, 0, 879, 869, 1, 0, 0, 0, 879, 877, 1, 0, 0, 0, 880, 881, 1, 0, 0, 0, 881, 882, 5, 191, 0, 0, 882, 883, 3, 274, 137, 0, 883, 884, 5, 270, 0, 0, 884, 888, 3, 314, 157, 0, 885, 886, 5, 305, 0, 0, 886, 887, 5, 111, 0, 0, 887, 889, 5, 194, 0, 0, 888, 885, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 1257, 1, 0, 0, 0, 890, 894, 5, 234, 0, 0, 891, 892, 5, 20, 0, 0, 892, 893, 5, 194, 0, 0, 893, 895, 5, 104, 0, 0, 894, 891, 1, 0, 0, 0, 894, 895, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 901, 3, 318, 159, 0, 897, 898, 5, 3, 0, 0, 898, 900, 3, 318, 159, 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, 106, 0, 0, 905, 910, 3, 314, 157, 0, 906, 907, 5, 3, 0, 0, 907, 909, 3, 314, 157, 0, 908, 906, 1, 0, 0, 0, 909, 912, 1, 0, 0, 0, 910, 908, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 916, 1, 0, 0, 0, 912, 910, 1, 0, 0, 0, 913, 914, 5, 112, 0, 0, 914, 915, 5, 36, 0, 0, 915, 917, 3, 312, 156, 0, 916, 913, 1, 0, 0, 0, 916, 917, 1, 0, 0, 0, 917, 920, 1, 0, 0, 0, 918, 919, 5, 123, 0, 0, 919, 921, 3, 290, 145, 0, 920, 918, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 1257, 1, 0, 0, 0, 922, 926, 5, 234, 0, 0, 923, 924, 5, 111, 0, 0, 924, 925, 5, 194, 0, 0, 925, 927, 5, 104, 0, 0, 926, 923, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 938, 1, 0, 0, 0, 928, 933, 3, 318, 159, 0, 929, 930, 5, 3, 0, 0, 930, 932, 3, 318, 159, 0, 931, 929, 1, 0, 0, 0, 932, 935, 1, 0, 0, 0, 933, 931, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 939, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 936, 937, 5, 22, 0, 0, 937, 939, 5, 216, 0, 0, 938, 928, 1, 0, 0, 0, 938, 936, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 5, 191, 0, 0, 941, 942, 3, 274, 137, 0, 942, 943, 5, 106, 0, 0, 943, 944, 3, 314, 157, 0, 944, 1257, 1, 0, 0, 0, 945, 956, 5, 75, 0, 0, 946, 951, 3, 270, 135, 0, 947, 948, 5, 3, 0, 0, 948, 950, 3, 270, 135, 0, 949, 947, 1, 0, 0, 0, 950, 953, 1, 0, 0, 0, 951, 949, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 957, 1, 0, 0, 0, 953, 951, 1, 0, 0, 0, 954, 955, 5, 22, 0, 0, 955, 957, 5, 216, 0, 0, 956, 946, 1, 0, 0, 0, 956, 954, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 959, 5, 191, 0, 0, 959, 960, 3, 274, 137, 0, 960, 961, 5, 270, 0, 0, 961, 962, 3, 314, 157, 0, 962, 1257, 1, 0, 0, 0, 963, 964, 5, 252, 0, 0, 964, 968, 5, 236, 0, 0, 965, 969, 5, 22, 0, 0, 966, 969, 5, 181, 0, 0, 967, 969, 3, 320, 160, 0, 968, 965, 1, 0, 0, 0, 968, 966, 1, 0, 0, 0, 968, 967, 1, 0, 0, 0, 969, 972, 1, 0, 0, 0, 970, 971, 5, 123, 0, 0, 971, 973, 3, 290, 145, 0, 972, 970, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 1257, 1, 0, 0, 0, 974, 975, 5, 254, 0, 0, 975, 978, 5, 113, 0, 0, 976, 977, 5, 191, 0, 0, 977, 979, 3, 274, 137, 0, 978, 976, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 1257, 1, 0, 0, 0, 980, 992, 5, 96, 0, 0, 981, 982, 5, 1, 0, 0, 982, 987, 3, 234, 117, 0, 983, 984, 5, 3, 0, 0, 984, 986, 3, 234, 117, 0, 985, 983, 1, 0, 0, 0, 986, 989, 1, 0, 0, 0, 987, 985, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 990, 1, 0, 0, 0, 989, 987, 1, 0, 0, 0, 990, 991, 5, 2, 0, 0, 991, 993, 1, 0, 0, 0, 992, 981, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 1257, 3, 16, 8, 0, 995, 996, 5, 96, 0, 0, 996, 998, 5, 24, 0, 0, 997, 999, 5, 298, 0, 0, 998, 997, 1, 0, 0, 0, 998, 999, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1257, 3, 16, 8, 0, 1001, 1002, 5, 254, 0, 0, 1002, 1003, 5, 54, 0, 0, 1003, 1004, 5, 261, 0, 0, 1004, 1257, 3, 278, 139, 0, 1005, 1006, 5, 254, 0, 0, 1006, 1007, 5, 54, 0, 0, 1007, 1008, 5, 244, 0, 0, 1008, 1257, 3, 286, 143, 0, 1009, 1010, 5, 254, 0, 0, 1010, 1011, 5, 54, 0, 0, 1011, 1012, 5, 300, 0, 0, 1012, 1257, 3, 282, 141, 0, 1013, 1014, 5, 254, 0, 0, 1014, 1015, 5, 54, 0, 0, 1015, 1016, 5, 168, 0, 0, 1016, 1017, 5, 300, 0, 0, 1017, 1257, 3, 282, 141, 0, 1018, 1019, 5, 254, 0, 0, 1019, 1020, 5, 54, 0, 0, 1020, 1021, 5, 108, 0, 0, 1021, 1257, 3, 294, 147, 0, 1022, 1023, 5, 254, 0, 0, 1023, 1026, 5, 262, 0, 0, 1024, 1025, 7, 2, 0, 0, 1025, 1027, 3, 286, 143, 0, 1026, 1024, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1034, 1, 0, 0, 0, 1028, 1029, 5, 155, 0, 0, 1029, 1032, 3, 190, 95, 0, 1030, 1031, 5, 91, 0, 0, 1031, 1033, 3, 190, 95, 0, 1032, 1030, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1035, 1, 0, 0, 0, 1034, 1028, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1257, 1, 0, 0, 0, 1036, 1037, 5, 254, 0, 0, 1037, 1040, 5, 245, 0, 0, 1038, 1039, 7, 2, 0, 0, 1039, 1041, 3, 290, 145, 0, 1040, 1038, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1048, 1, 0, 0, 0, 1042, 1043, 5, 155, 0, 0, 1043, 1046, 3, 190, 95, 0, 1044, 1045, 5, 91, 0, 0, 1045, 1047, 3, 190, 95, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1049, 1, 0, 0, 0, 1048, 1042, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 1257, 1, 0, 0, 0, 1050, 1051, 5, 254, 0, 0, 1051, 1058, 5, 43, 0, 0, 1052, 1053, 5, 155, 0, 0, 1053, 1056, 3, 190, 95, 0, 1054, 1055, 5, 91, 0, 0, 1055, 1057, 3, 190, 95, 0, 1056, 1054, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1059, 1, 0, 0, 0, 1058, 1052, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1257, 1, 0, 0, 0, 1060, 1061, 5, 254, 0, 0, 1061, 1062, 5, 46, 0, 0, 1062, 1063, 7, 2, 0, 0, 1063, 1070, 3, 276, 138, 0, 1064, 1065, 5, 155, 0, 0, 1065, 1068, 3, 190, 95, 0, 1066, 1067, 5, 91, 0, 0, 1067, 1069, 3, 190, 95, 0, 1068, 1066, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1071, 1, 0, 0, 0, 1070, 1064, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1257, 1, 0, 0, 0, 1072, 1073, 5, 254, 0, 0, 1073, 1074, 5, 257, 0, 0, 1074, 1075, 5, 104, 0, 0, 1075, 1257, 3, 276, 138, 0, 1076, 1077, 5, 254, 0, 0, 1077, 1078, 5, 257, 0, 0, 1078, 1079, 5, 104, 0, 0, 1079, 1080, 5, 1, 0, 0, 1080, 1081, 3, 18, 9, 0, 1081, 1082, 5, 2, 0, 0, 1082, 1257, 1, 0, 0, 0, 1083, 1085, 5, 254, 0, 0, 1084, 1086, 5, 57, 0, 0, 1085, 1084, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1090, 5, 237, 0, 0, 1088, 1089, 7, 2, 0, 0, 1089, 1091, 3, 290, 145, 0, 1090, 1088, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1257, 1, 0, 0, 0, 1092, 1093, 5, 254, 0, 0, 1093, 1094, 5, 236, 0, 0, 1094, 1097, 5, 113, 0, 0, 1095, 1096, 7, 2, 0, 0, 1096, 1098, 3, 290, 145, 0, 1097, 1095, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1257, 1, 0, 0, 0, 1099, 1100, 5, 77, 0, 0, 1100, 1257, 3, 276, 138, 0, 1101, 1102, 5, 76, 0, 0, 1102, 1257, 3, 276, 138, 0, 1103, 1104, 5, 254, 0, 0, 1104, 1107, 5, 109, 0, 0, 1105, 1106, 7, 2, 0, 0, 1106, 1108, 3, 286, 143, 0, 1107, 1105, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1115, 1, 0, 0, 0, 1109, 1110, 5, 155, 0, 0, 1110, 1113, 3, 190, 95, 0, 1111, 1112, 5, 91, 0, 0, 1112, 1114, 3, 190, 95, 0, 1113, 1111, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1116, 1, 0, 0, 0, 1115, 1109, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1257, 1, 0, 0, 0, 1117, 1118, 5, 254, 0, 0, 1118, 1125, 5, 251, 0, 0, 1119, 1120, 5, 155, 0, 0, 1120, 1123, 3, 190, 95, 0, 1121, 1122, 5, 91, 0, 0, 1122, 1124, 3, 190, 95, 0, 1123, 1121, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1126, 1, 0, 0, 0, 1125, 1119, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1257, 1, 0, 0, 0, 1127, 1128, 5, 252, 0, 0, 1128, 1129, 5, 251, 0, 0, 1129, 1130, 5, 31, 0, 0, 1130, 1257, 3, 324, 162, 0, 1131, 1132, 5, 228, 0, 0, 1132, 1133, 5, 251, 0, 0, 1133, 1257, 5, 31, 0, 0, 1134, 1135, 5, 252, 0, 0, 1135, 1136, 5, 251, 0, 0, 1136, 1137, 3, 306, 153, 0, 1137, 1138, 5, 313, 0, 0, 1138, 1139, 3, 158, 79, 0, 1139, 1257, 1, 0, 0, 0, 1140, 1141, 5, 228, 0, 0, 1141, 1142, 5, 251, 0, 0, 1142, 1257, 3, 306, 153, 0, 1143, 1144, 5, 256, 0, 0, 1144, 1153, 5, 272, 0, 0, 1145, 1150, 3, 236, 118, 0, 1146, 1147, 5, 3, 0, 0, 1147, 1149, 3, 236, 118, 0, 1148, 1146, 1, 0, 0, 0, 1149, 1152, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1154, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1153, 1145, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1257, 1, 0, 0, 0, 1155, 1157, 5, 48, 0, 0, 1156, 1158, 5, 308, 0, 0, 1157, 1156, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1257, 1, 0, 0, 0, 1159, 1161, 5, 238, 0, 0, 1160, 1162, 5, 308, 0, 0, 1161, 1160, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1257, 1, 0, 0, 0, 1163, 1164, 5, 215, 0, 0, 1164, 1165, 3, 320, 160, 0, 1165, 1166, 5, 106, 0, 0, 1166, 1167, 3, 16, 8, 0, 1167, 1257, 1, 0, 0, 0, 1168, 1169, 5, 69, 0, 0, 1169, 1170, 5, 215, 0, 0, 1170, 1257, 3, 320, 160, 0, 1171, 1172, 5, 94, 0, 0, 1172, 1182, 3, 320, 160, 0, 1173, 1174, 5, 291, 0, 0, 1174, 1179, 3, 158, 79, 0, 1175, 1176, 5, 3, 0, 0, 1176, 1178, 3, 158, 79, 0, 1177, 1175, 1, 0, 0, 0, 1178, 1181, 1, 0, 0, 0, 1179, 1177, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1183, 1, 0, 0, 0, 1181, 1179, 1, 0, 0, 0, 1182, 1173, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1257, 1, 0, 0, 0, 1184, 1185, 5, 94, 0, 0, 1185, 1186, 5, 122, 0, 0, 1186, 1196, 3, 190, 95, 0, 1187, 1188, 5, 291, 0, 0, 1188, 1193, 3, 158, 79, 0, 1189, 1190, 5, 3, 0, 0, 1190, 1192, 3, 158, 79, 0, 1191, 1189, 1, 0, 0, 0, 1192, 1195, 1, 0, 0, 0, 1193, 1191, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1197, 1, 0, 0, 0, 1195, 1193, 1, 0, 0, 0, 1196, 1187, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1257, 1, 0, 0, 0, 1198, 1199, 5, 77, 0, 0, 1199, 1200, 5, 127, 0, 0, 1200, 1257, 3, 320, 160, 0, 1201, 1202, 5, 77, 0, 0, 1202, 1203, 5, 199, 0, 0, 1203, 1257, 3, 320, 160, 0, 1204, 1205, 5, 252, 0, 0, 1205, 1206, 5, 206, 0, 0, 1206, 1257, 3, 244, 122, 0, 1207, 1208, 5, 252, 0, 0, 1208, 1209, 5, 268, 0, 0, 1209, 1212, 5, 312, 0, 0, 1210, 1213, 5, 158, 0, 0, 1211, 1213, 3, 158, 79, 0, 1212, 1210, 1, 0, 0, 0, 1212, 1211, 1, 0, 0, 0, 1213, 1257, 1, 0, 0, 0, 1214, 1215, 5, 288, 0, 0, 1215, 1216, 3, 278, 139, 0, 1216, 1217, 5, 252, 0, 0, 1217, 1222, 3, 232, 116, 0, 1218, 1219, 5, 3, 0, 0, 1219, 1221, 3, 232, 116, 0, 1220, 1218, 1, 0, 0, 0, 1221, 1224, 1, 0, 0, 0, 1222, 1220, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 1226, 1, 0, 0, 0, 1224, 1222, 1, 0, 0, 0, 1225, 1227, 3, 54, 27, 0, 1226, 1225, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1257, 1, 0, 0, 0, 1228, 1229, 5, 170, 0, 0, 1229, 1230, 5, 131, 0, 0, 1230, 1235, 3, 278, 139, 0, 1231, 1233, 5, 28, 0, 0, 1232, 1231, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1236, 3, 320, 160, 0, 1235, 1232, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1238, 5, 291, 0, 0, 1238, 1239, 3, 88, 44, 0, 1239, 1240, 5, 191, 0, 0, 1240, 1242, 3, 158, 79, 0, 1241, 1243, 3, 216, 108, 0, 1242, 1241, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1242, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1257, 1, 0, 0, 0, 1246, 1247, 5, 254, 0, 0, 1247, 1248, 5, 47, 0, 0, 1248, 1249, 5, 191, 0, 0, 1249, 1250, 5, 261, 0, 0, 1250, 1257, 3, 278, 139, 0, 1251, 1252, 5, 254, 0, 0, 1252, 1253, 5, 47, 0, 0, 1253, 1254, 5, 191, 0, 0, 1254, 1255, 5, 45, 0, 0, 1255, 1257, 3, 298, 149, 0, 1256, 361, 1, 0, 0, 0, 1256, 362, 1, 0, 0, 0, 1256, 364, 1, 0, 0, 0, 1256, 386, 1, 0, 0, 0, 1256, 396, 1, 0, 0, 0, 1256, 412, 1, 0, 0, 0, 1256, 422, 1, 0, 0, 0, 1256, 429, 1, 0, 0, 0, 1256, 436, 1, 0, 0, 0, 1256, 474, 1, 0, 0, 0, 1256, 504, 1, 0, 0, 0, 1256, 511, 1, 0, 0, 0, 1256, 519, 1, 0, 0, 0, 1256, 525, 1, 0, 0, 0, 1256, 528, 1, 0, 0, 0, 1256, 537, 1, 0, 0, 0, 1256, 546, 1, 0, 0, 0, 1256, 555, 1, 0, 0, 0, 1256, 566, 1, 0, 0, 0, 1256, 582, 1, 0, 0, 0, 1256, 599, 1, 0, 0, 0, 1256, 614, 1, 0, 0, 0, 1256, 629, 1, 0, 0, 0, 1256, 643, 1, 0, 0, 0, 1256, 650, 1, 0, 0, 0, 1256, 657, 1, 0, 0, 0, 1256, 679, 1, 0, 0, 0, 1256, 685, 1, 0, 0, 0, 1256, 714, 1, 0, 0, 0, 1256, 736, 1, 0, 0, 0, 1256, 740, 1, 0, 0, 0, 1256, 748, 1, 0, 0, 0, 1256, 760, 1, 0, 0, 0, 1256, 768, 1, 0, 0, 0, 1256, 775, 1, 0, 0, 0, 1256, 782, 1, 0, 0, 0, 1256, 789, 1, 0, 0, 0, 1256, 804, 1, 0, 0, 0, 1256, 810, 1, 0, 0, 0, 1256, 817, 1, 0, 0, 0, 1256, 829, 1, 0, 0, 0, 1256, 836, 1, 0, 0, 0, 1256, 868, 1, 0, 0, 0, 1256, 890, 1, 0, 0, 0, 1256, 922, 1, 0, 0, 0, 1256, 945, 1, 0, 0, 0, 1256, 963, 1, 0, 0, 0, 1256, 974, 1, 0, 0, 0, 1256, 980, 1, 0, 0, 0, 1256, 995, 1, 0, 0, 0, 1256, 1001, 1, 0, 0, 0, 1256, 1005, 1, 0, 0, 0, 1256, 1009, 1, 0, 0, 0, 1256, 1013, 1, 0, 0, 0, 1256, 1018, 1, 0, 0, 0, 1256, 1022, 1, 0, 0, 0, 1256, 1036, 1, 0, 0, 0, 1256, 1050, 1, 0, 0, 0, 1256, 1060, 1, 0, 0, 0, 1256, 1072, 1, 0, 0, 0, 1256, 1076, 1, 0, 0, 0, 1256, 1083, 1, 0, 0, 0, 1256, 1092, 1, 0, 0, 0, 1256, 1099, 1, 0, 0, 0, 1256, 1101, 1, 0, 0, 0, 1256, 1103, 1, 0, 0, 0, 1256, 1117, 1, 0, 0, 0, 1256, 1127, 1, 0, 0, 0, 1256, 1131, 1, 0, 0, 0, 1256, 1134, 1, 0, 0, 0, 1256, 1140, 1, 0, 0, 0, 1256, 1143, 1, 0, 0, 0, 1256, 1155, 1, 0, 0, 0, 1256, 1159, 1, 0, 0, 0, 1256, 1163, 1, 0, 0, 0, 1256, 1168, 1, 0, 0, 0, 1256, 1171, 1, 0, 0, 0, 1256, 1184, 1, 0, 0, 0, 1256, 1198, 1, 0, 0, 0, 1256, 1201, 1, 0, 0, 0, 1256, 1204, 1, 0, 0, 0, 1256, 1207, 1, 0, 0, 0, 1256, 1214, 1, 0, 0, 0, 1256, 1228, 1, 0, 0, 0, 1256, 1246, 1, 0, 0, 0, 1256, 1251, 1, 0, 0, 0, 1257, 17, 1, 0, 0, 0, 1258, 1260, 3, 20, 10, 0, 1259, 1258, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1262, 3, 22, 11, 0, 1262, 19, 1, 0, 0, 0, 1263, 1264, 5, 305, 0, 0, 1264, 1269, 3, 246, 123, 0, 1265, 1266, 5, 3, 0, 0, 1266, 1268, 3, 246, 123, 0, 1267, 1265, 1, 0, 0, 0, 1268, 1271, 1, 0, 0, 0, 1269, 1267, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 21, 1, 0, 0, 0, 1271, 1269, 1, 0, 0, 0, 1272, 1274, 3, 24, 12, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1276, 3, 40, 20, 0, 1276, 23, 1, 0, 0, 0, 1277, 1279, 5, 305, 0, 0, 1278, 1280, 5, 222, 0, 0, 1279, 1278, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1286, 3, 74, 37, 0, 1282, 1283, 5, 3, 0, 0, 1283, 1285, 3, 74, 37, 0, 1284, 1282, 1, 0, 0, 0, 1285, 1288, 1, 0, 0, 0, 1286, 1284, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 25, 1, 0, 0, 0, 1288, 1286, 1, 0, 0, 0, 1289, 1292, 3, 28, 14, 0, 1290, 1292, 3, 30, 15, 0, 1291, 1289, 1, 0, 0, 0, 1291, 1290, 1, 0, 0, 0, 1292, 27, 1, 0, 0, 0, 1293, 1294, 3, 304, 152, 0, 1294, 1297, 3, 206, 103, 0, 1295, 1296, 5, 183, 0, 0, 1296, 1298, 5, 184, 0, 0, 1297, 1295, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1301, 1, 0, 0, 0, 1299, 1300, 5, 47, 0, 0, 1300, 1302, 3, 190, 95, 0, 1301, 1299, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1305, 1, 0, 0, 0, 1303, 1304, 5, 305, 0, 0, 1304, 1306, 3, 32, 16, 0, 1305, 1303, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 29, 1, 0, 0, 0, 1307, 1308, 5, 155, 0, 0, 1308, 1311, 3, 278, 139, 0, 1309, 1310, 7, 3, 0, 0, 1310, 1312, 5, 217, 0, 0, 1311, 1309, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 31, 1, 0, 0, 0, 1313, 1314, 5, 1, 0, 0, 1314, 1315, 3, 34, 17, 0, 1315, 1316, 5, 2, 0, 0, 1316, 33, 1, 0, 0, 0, 1317, 1322, 3, 36, 18, 0, 1318, 1319, 5, 3, 0, 0, 1319, 1321, 3, 36, 18, 0, 1320, 1318, 1, 0, 0, 0, 1321, 1324, 1, 0, 0, 0, 1322, 1320, 1, 0, 0, 0, 1322, 1323, 1, 0, 0, 0, 1323, 35, 1, 0, 0, 0, 1324, 1322, 1, 0, 0, 0, 1325, 1326, 3, 320, 160, 0, 1326, 1327, 5, 313, 0, 0, 1327, 1328, 3, 38, 19, 0, 1328, 37, 1, 0, 0, 0, 1329, 1332, 5, 71, 0, 0, 1330, 1332, 3, 158, 79, 0, 1331, 1329, 1, 0, 0, 0, 1331, 1330, 1, 0, 0, 0, 1332, 39, 1, 0, 0, 0, 1333, 1344, 3, 46, 23, 0, 1334, 1335, 5, 196, 0, 0, 1335, 1336, 5, 36, 0, 0, 1336, 1341, 3, 50, 25, 0, 1337, 1338, 5, 3, 0, 0, 1338, 1340, 3, 50, 25, 0, 1339, 1337, 1, 0, 0, 0, 1340, 1343, 1, 0, 0, 0, 1341, 1339, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1345, 1, 0, 0, 0, 1343, 1341, 1, 0, 0, 0, 1344, 1334, 1, 0, 0, 0, 1344, 1345, 1, 0, 0, 0, 1345, 1351, 1, 0, 0, 0, 1346, 1347, 5, 189, 0, 0, 1347, 1349, 3, 44, 22, 0, 1348, 1350, 7, 4, 0, 0, 1349, 1348, 1, 0, 0, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1352, 1, 0, 0, 0, 1351, 1346, 1, 0, 0, 0, 1351, 1352, 1, 0, 0, 0, 1352, 1366, 1, 0, 0, 0, 1353, 1354, 5, 156, 0, 0, 1354, 1367, 3, 42, 21, 0, 1355, 1356, 5, 99, 0, 0, 1356, 1358, 7, 5, 0, 0, 1357, 1359, 3, 44, 22, 0, 1358, 1357, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1364, 7, 4, 0, 0, 1361, 1365, 5, 193, 0, 0, 1362, 1363, 5, 305, 0, 0, 1363, 1365, 5, 267, 0, 0, 1364, 1361, 1, 0, 0, 0, 1364, 1362, 1, 0, 0, 0, 1365, 1367, 1, 0, 0, 0, 1366, 1353, 1, 0, 0, 0, 1366, 1355, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 41, 1, 0, 0, 0, 1368, 1371, 5, 22, 0, 0, 1369, 1371, 3, 44, 22, 0, 1370, 1368, 1, 0, 0, 0, 1370, 1369, 1, 0, 0, 0, 1371, 43, 1, 0, 0, 0, 1372, 1373, 7, 6, 0, 0, 1373, 45, 1, 0, 0, 0, 1374, 1375, 6, 23, -1, 0, 1375, 1376, 3, 48, 24, 0, 1376, 1391, 1, 0, 0, 0, 1377, 1378, 10, 2, 0, 0, 1378, 1380, 5, 129, 0, 0, 1379, 1381, 3, 76, 38, 0, 1380, 1379, 1, 0, 0, 0, 1380, 1381, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1390, 3, 46, 23, 3, 1383, 1384, 10, 1, 0, 0, 1384, 1386, 7, 7, 0, 0, 1385, 1387, 3, 76, 38, 0, 1386, 1385, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1390, 3, 46, 23, 2, 1389, 1377, 1, 0, 0, 0, 1389, 1383, 1, 0, 0, 0, 1390, 1393, 1, 0, 0, 0, 1391, 1389, 1, 0, 0, 0, 1391, 1392, 1, 0, 0, 0, 1392, 47, 1, 0, 0, 0, 1393, 1391, 1, 0, 0, 0, 1394, 1411, 3, 52, 26, 0, 1395, 1396, 5, 261, 0, 0, 1396, 1411, 3, 278, 139, 0, 1397, 1398, 5, 297, 0, 0, 1398, 1403, 3, 158, 79, 0, 1399, 1400, 5, 3, 0, 0, 1400, 1402, 3, 158, 79, 0, 1401, 1399, 1, 0, 0, 0, 1402, 1405, 1, 0, 0, 0, 1403, 1401, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 1411, 1, 0, 0, 0, 1405, 1403, 1, 0, 0, 0, 1406, 1407, 5, 1, 0, 0, 1407, 1408, 3, 40, 20, 0, 1408, 1409, 5, 2, 0, 0, 1409, 1411, 1, 0, 0, 0, 1410, 1394, 1, 0, 0, 0, 1410, 1395, 1, 0, 0, 0, 1410, 1397, 1, 0, 0, 0, 1410, 1406, 1, 0, 0, 0, 1411, 49, 1, 0, 0, 0, 1412, 1415, 3, 298, 149, 0, 1413, 1415, 3, 158, 79, 0, 1414, 1412, 1, 0, 0, 0, 1414, 1413, 1, 0, 0, 0, 1415, 1417, 1, 0, 0, 0, 1416, 1418, 7, 8, 0, 0, 1417, 1416, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1421, 1, 0, 0, 0, 1419, 1420, 5, 186, 0, 0, 1420, 1422, 7, 9, 0, 0, 1421, 1419, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 51, 1, 0, 0, 0, 1423, 1425, 5, 249, 0, 0, 1424, 1426, 3, 76, 38, 0, 1425, 1424, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1437, 3, 58, 29, 0, 1428, 1429, 5, 106, 0, 0, 1429, 1434, 3, 88, 44, 0, 1430, 1431, 5, 3, 0, 0, 1431, 1433, 3, 88, 44, 0, 1432, 1430, 1, 0, 0, 0, 1433, 1436, 1, 0, 0, 0, 1434, 1432, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1438, 1, 0, 0, 0, 1436, 1434, 1, 0, 0, 0, 1437, 1428, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1440, 1, 0, 0, 0, 1439, 1441, 3, 54, 27, 0, 1440, 1439, 1, 0, 0, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1445, 1, 0, 0, 0, 1442, 1443, 5, 115, 0, 0, 1443, 1444, 5, 36, 0, 0, 1444, 1446, 3, 60, 30, 0, 1445, 1442, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1448, 1, 0, 0, 0, 1447, 1449, 3, 56, 28, 0, 1448, 1447, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1459, 1, 0, 0, 0, 1450, 1451, 5, 304, 0, 0, 1451, 1456, 3, 70, 35, 0, 1452, 1453, 5, 3, 0, 0, 1453, 1455, 3, 70, 35, 0, 1454, 1452, 1, 0, 0, 0, 1455, 1458, 1, 0, 0, 0, 1456, 1454, 1, 0, 0, 0, 1456, 1457, 1, 0, 0, 0, 1457, 1460, 1, 0, 0, 0, 1458, 1456, 1, 0, 0, 0, 1459, 1450, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 53, 1, 0, 0, 0, 1461, 1462, 5, 302, 0, 0, 1462, 1463, 3, 160, 80, 0, 1463, 55, 1, 0, 0, 0, 1464, 1465, 5, 118, 0, 0, 1465, 1466, 3, 160, 80, 0, 1466, 57, 1, 0, 0, 0, 1467, 1472, 3, 78, 39, 0, 1468, 1469, 5, 3, 0, 0, 1469, 1471, 3, 78, 39, 0, 1470, 1468, 1, 0, 0, 0, 1471, 1474, 1, 0, 0, 0, 1472, 1470, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 59, 1, 0, 0, 0, 1474, 1472, 1, 0, 0, 0, 1475, 1477, 3, 76, 38, 0, 1476, 1475, 1, 0, 0, 0, 1476, 1477, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 1483, 3, 64, 32, 0, 1479, 1480, 5, 3, 0, 0, 1480, 1482, 3, 64, 32, 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, 61, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1486, 1491, 3, 158, 79, 0, 1487, 1488, 5, 3, 0, 0, 1488, 1490, 3, 158, 79, 0, 1489, 1487, 1, 0, 0, 0, 1490, 1493, 1, 0, 0, 0, 1491, 1489, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 63, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1494, 1535, 3, 66, 33, 0, 1495, 1496, 5, 239, 0, 0, 1496, 1505, 5, 1, 0, 0, 1497, 1502, 3, 66, 33, 0, 1498, 1499, 5, 3, 0, 0, 1499, 1501, 3, 66, 33, 0, 1500, 1498, 1, 0, 0, 0, 1501, 1504, 1, 0, 0, 0, 1502, 1500, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1506, 1, 0, 0, 0, 1504, 1502, 1, 0, 0, 0, 1505, 1497, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1535, 5, 2, 0, 0, 1508, 1509, 5, 56, 0, 0, 1509, 1518, 5, 1, 0, 0, 1510, 1515, 3, 66, 33, 0, 1511, 1512, 5, 3, 0, 0, 1512, 1514, 3, 66, 33, 0, 1513, 1511, 1, 0, 0, 0, 1514, 1517, 1, 0, 0, 0, 1515, 1513, 1, 0, 0, 0, 1515, 1516, 1, 0, 0, 0, 1516, 1519, 1, 0, 0, 0, 1517, 1515, 1, 0, 0, 0, 1518, 1510, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1535, 5, 2, 0, 0, 1521, 1522, 5, 116, 0, 0, 1522, 1523, 5, 253, 0, 0, 1523, 1524, 5, 1, 0, 0, 1524, 1529, 3, 66, 33, 0, 1525, 1526, 5, 3, 0, 0, 1526, 1528, 3, 66, 33, 0, 1527, 1525, 1, 0, 0, 0, 1528, 1531, 1, 0, 0, 0, 1529, 1527, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1532, 1, 0, 0, 0, 1531, 1529, 1, 0, 0, 0, 1532, 1533, 5, 2, 0, 0, 1533, 1535, 1, 0, 0, 0, 1534, 1494, 1, 0, 0, 0, 1534, 1495, 1, 0, 0, 0, 1534, 1508, 1, 0, 0, 0, 1534, 1521, 1, 0, 0, 0, 1535, 65, 1, 0, 0, 0, 1536, 1545, 5, 1, 0, 0, 1537, 1542, 3, 68, 34, 0, 1538, 1539, 5, 3, 0, 0, 1539, 1541, 3, 68, 34, 0, 1540, 1538, 1, 0, 0, 0, 1541, 1544, 1, 0, 0, 0, 1542, 1540, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1546, 1, 0, 0, 0, 1544, 1542, 1, 0, 0, 0, 1545, 1537, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1550, 5, 2, 0, 0, 1548, 1550, 3, 68, 34, 0, 1549, 1536, 1, 0, 0, 0, 1549, 1548, 1, 0, 0, 0, 1550, 67, 1, 0, 0, 0, 1551, 1554, 3, 298, 149, 0, 1552, 1554, 3, 158, 79, 0, 1553, 1551, 1, 0, 0, 0, 1553, 1552, 1, 0, 0, 0, 1554, 69, 1, 0, 0, 0, 1555, 1556, 3, 320, 160, 0, 1556, 1557, 5, 28, 0, 0, 1557, 1558, 5, 1, 0, 0, 1558, 1559, 3, 72, 36, 0, 1559, 1560, 5, 2, 0, 0, 1560, 71, 1, 0, 0, 0, 1561, 1563, 3, 320, 160, 0, 1562, 1561, 1, 0, 0, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1567, 1, 0, 0, 0, 1564, 1565, 5, 202, 0, 0, 1565, 1566, 5, 36, 0, 0, 1566, 1568, 3, 62, 31, 0, 1567, 1564, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1579, 1, 0, 0, 0, 1569, 1570, 5, 196, 0, 0, 1570, 1571, 5, 36, 0, 0, 1571, 1576, 3, 50, 25, 0, 1572, 1573, 5, 3, 0, 0, 1573, 1575, 3, 50, 25, 0, 1574, 1572, 1, 0, 0, 0, 1575, 1578, 1, 0, 0, 0, 1576, 1574, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1580, 1, 0, 0, 0, 1578, 1576, 1, 0, 0, 0, 1579, 1569, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1582, 1, 0, 0, 0, 1581, 1583, 3, 220, 110, 0, 1582, 1581, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 73, 1, 0, 0, 0, 1584, 1586, 3, 320, 160, 0, 1585, 1587, 3, 128, 64, 0, 1586, 1585, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1589, 5, 28, 0, 0, 1589, 1590, 5, 1, 0, 0, 1590, 1591, 3, 22, 11, 0, 1591, 1592, 5, 2, 0, 0, 1592, 75, 1, 0, 0, 0, 1593, 1594, 7, 10, 0, 0, 1594, 77, 1, 0, 0, 0, 1595, 1598, 3, 84, 42, 0, 1596, 1598, 3, 86, 43, 0, 1597, 1595, 1, 0, 0, 0, 1597, 1596, 1, 0, 0, 0, 1598, 1603, 1, 0, 0, 0, 1599, 1601, 5, 28, 0, 0, 1600, 1599, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1604, 3, 320, 160, 0, 1603, 1600, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1612, 1, 0, 0, 0, 1605, 1608, 3, 82, 41, 0, 1606, 1607, 5, 28, 0, 0, 1607, 1609, 3, 128, 64, 0, 1608, 1606, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1612, 1, 0, 0, 0, 1610, 1612, 3, 80, 40, 0, 1611, 1597, 1, 0, 0, 0, 1611, 1605, 1, 0, 0, 0, 1611, 1610, 1, 0, 0, 0, 1612, 79, 1, 0, 0, 0, 1613, 1614, 5, 321, 0, 0, 1614, 81, 1, 0, 0, 0, 1615, 1616, 3, 166, 83, 0, 1616, 1617, 5, 4, 0, 0, 1617, 1618, 5, 321, 0, 0, 1618, 83, 1, 0, 0, 0, 1619, 1620, 3, 298, 149, 0, 1620, 85, 1, 0, 0, 0, 1621, 1622, 3, 158, 79, 0, 1622, 87, 1, 0, 0, 0, 1623, 1624, 6, 44, -1, 0, 1624, 1625, 3, 98, 49, 0, 1625, 1644, 1, 0, 0, 0, 1626, 1640, 10, 2, 0, 0, 1627, 1628, 5, 55, 0, 0, 1628, 1629, 5, 137, 0, 0, 1629, 1641, 3, 98, 49, 0, 1630, 1631, 3, 90, 45, 0, 1631, 1632, 5, 137, 0, 0, 1632, 1633, 3, 88, 44, 0, 1633, 1634, 3, 92, 46, 0, 1634, 1641, 1, 0, 0, 0, 1635, 1636, 5, 173, 0, 0, 1636, 1637, 3, 90, 45, 0, 1637, 1638, 5, 137, 0, 0, 1638, 1639, 3, 98, 49, 0, 1639, 1641, 1, 0, 0, 0, 1640, 1627, 1, 0, 0, 0, 1640, 1630, 1, 0, 0, 0, 1640, 1635, 1, 0, 0, 0, 1641, 1643, 1, 0, 0, 0, 1642, 1626, 1, 0, 0, 0, 1643, 1646, 1, 0, 0, 0, 1644, 1642, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 89, 1, 0, 0, 0, 1646, 1644, 1, 0, 0, 0, 1647, 1649, 5, 126, 0, 0, 1648, 1647, 1, 0, 0, 0, 1648, 1649, 1, 0, 0, 0, 1649, 1663, 1, 0, 0, 0, 1650, 1652, 5, 153, 0, 0, 1651, 1653, 5, 198, 0, 0, 1652, 1651, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1663, 1, 0, 0, 0, 1654, 1656, 5, 235, 0, 0, 1655, 1657, 5, 198, 0, 0, 1656, 1655, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1663, 1, 0, 0, 0, 1658, 1660, 5, 107, 0, 0, 1659, 1661, 5, 198, 0, 0, 1660, 1659, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1663, 1, 0, 0, 0, 1662, 1648, 1, 0, 0, 0, 1662, 1650, 1, 0, 0, 0, 1662, 1654, 1, 0, 0, 0, 1662, 1658, 1, 0, 0, 0, 1663, 91, 1, 0, 0, 0, 1664, 1668, 5, 191, 0, 0, 1665, 1669, 3, 94, 47, 0, 1666, 1667, 4, 46, 3, 0, 1667, 1669, 3, 160, 80, 0, 1668, 1665, 1, 0, 0, 0, 1668, 1666, 1, 0, 0, 0, 1669, 1683, 1, 0, 0, 0, 1670, 1671, 5, 291, 0, 0, 1671, 1672, 5, 1, 0, 0, 1672, 1677, 3, 320, 160, 0, 1673, 1674, 5, 3, 0, 0, 1674, 1676, 3, 320, 160, 0, 1675, 1673, 1, 0, 0, 0, 1676, 1679, 1, 0, 0, 0, 1677, 1675, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 1680, 1, 0, 0, 0, 1679, 1677, 1, 0, 0, 0, 1680, 1681, 5, 2, 0, 0, 1681, 1683, 1, 0, 0, 0, 1682, 1664, 1, 0, 0, 0, 1682, 1670, 1, 0, 0, 0, 1683, 93, 1, 0, 0, 0, 1684, 1685, 3, 96, 48, 0, 1685, 1686, 5, 313, 0, 0, 1686, 1687, 3, 96, 48, 0, 1687, 95, 1, 0, 0, 0, 1688, 1689, 3, 320, 160, 0, 1689, 1690, 5, 342, 0, 0, 1690, 1691, 4, 48, 4, 0, 1691, 1692, 3, 300, 150, 0, 1692, 1695, 1, 0, 0, 0, 1693, 1695, 3, 302, 151, 0, 1694, 1688, 1, 0, 0, 0, 1694, 1693, 1, 0, 0, 0, 1695, 97, 1, 0, 0, 0, 1696, 1703, 3, 108, 54, 0, 1697, 1698, 5, 263, 0, 0, 1698, 1699, 3, 100, 50, 0, 1699, 1700, 5, 1, 0, 0, 1700, 1701, 3, 158, 79, 0, 1701, 1702, 5, 2, 0, 0, 1702, 1704, 1, 0, 0, 0, 1703, 1697, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 99, 1, 0, 0, 0, 1705, 1706, 7, 11, 0, 0, 1706, 101, 1, 0, 0, 0, 1707, 1708, 7, 12, 0, 0, 1708, 103, 1, 0, 0, 0, 1709, 1716, 5, 90, 0, 0, 1710, 1712, 5, 275, 0, 0, 1711, 1713, 3, 190, 95, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1716, 3, 106, 53, 0, 1715, 1709, 1, 0, 0, 0, 1715, 1710, 1, 0, 0, 0, 1716, 105, 1, 0, 0, 0, 1717, 1718, 5, 305, 0, 0, 1718, 1722, 5, 52, 0, 0, 1719, 1720, 5, 307, 0, 0, 1720, 1722, 5, 52, 0, 0, 1721, 1717, 1, 0, 0, 0, 1721, 1719, 1, 0, 0, 0, 1722, 107, 1, 0, 0, 0, 1723, 1799, 3, 122, 61, 0, 1724, 1725, 5, 167, 0, 0, 1725, 1729, 5, 1, 0, 0, 1726, 1727, 5, 202, 0, 0, 1727, 1728, 5, 36, 0, 0, 1728, 1730, 3, 62, 31, 0, 1729, 1726, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1741, 1, 0, 0, 0, 1731, 1732, 5, 196, 0, 0, 1732, 1733, 5, 36, 0, 0, 1733, 1738, 3, 50, 25, 0, 1734, 1735, 5, 3, 0, 0, 1735, 1737, 3, 50, 25, 0, 1736, 1734, 1, 0, 0, 0, 1737, 1740, 1, 0, 0, 0, 1738, 1736, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1742, 1, 0, 0, 0, 1740, 1738, 1, 0, 0, 0, 1741, 1731, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1752, 1, 0, 0, 0, 1743, 1744, 5, 169, 0, 0, 1744, 1749, 3, 110, 55, 0, 1745, 1746, 5, 3, 0, 0, 1746, 1748, 3, 110, 55, 0, 1747, 1745, 1, 0, 0, 0, 1748, 1751, 1, 0, 0, 0, 1749, 1747, 1, 0, 0, 0, 1749, 1750, 1, 0, 0, 0, 1750, 1753, 1, 0, 0, 0, 1751, 1749, 1, 0, 0, 0, 1752, 1743, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1755, 1, 0, 0, 0, 1754, 1756, 3, 112, 56, 0, 1755, 1754, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 1760, 1, 0, 0, 0, 1757, 1758, 5, 21, 0, 0, 1758, 1759, 5, 164, 0, 0, 1759, 1761, 3, 116, 58, 0, 1760, 1757, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1763, 1, 0, 0, 0, 1762, 1764, 7, 13, 0, 0, 1763, 1762, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 5, 207, 0, 0, 1766, 1767, 5, 1, 0, 0, 1767, 1768, 3, 226, 113, 0, 1768, 1778, 5, 2, 0, 0, 1769, 1770, 5, 258, 0, 0, 1770, 1775, 3, 118, 59, 0, 1771, 1772, 5, 3, 0, 0, 1772, 1774, 3, 118, 59, 0, 1773, 1771, 1, 0, 0, 0, 1774, 1777, 1, 0, 0, 0, 1775, 1773, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1779, 1, 0, 0, 0, 1777, 1775, 1, 0, 0, 0, 1778, 1769, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1781, 5, 72, 0, 0, 1781, 1786, 3, 120, 60, 0, 1782, 1783, 5, 3, 0, 0, 1783, 1785, 3, 120, 60, 0, 1784, 1782, 1, 0, 0, 0, 1785, 1788, 1, 0, 0, 0, 1786, 1784, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 1, 0, 0, 0, 1788, 1786, 1, 0, 0, 0, 1789, 1797, 5, 2, 0, 0, 1790, 1792, 5, 28, 0, 0, 1791, 1790, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1795, 3, 320, 160, 0, 1794, 1796, 3, 128, 64, 0, 1795, 1794, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1798, 1, 0, 0, 0, 1797, 1791, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1800, 1, 0, 0, 0, 1799, 1724, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 109, 1, 0, 0, 0, 1801, 1802, 3, 158, 79, 0, 1802, 1803, 5, 28, 0, 0, 1803, 1804, 3, 320, 160, 0, 1804, 111, 1, 0, 0, 0, 1805, 1806, 5, 192, 0, 0, 1806, 1807, 5, 240, 0, 0, 1807, 1808, 5, 208, 0, 0, 1808, 1817, 5, 164, 0, 0, 1809, 1810, 5, 22, 0, 0, 1810, 1811, 5, 241, 0, 0, 1811, 1812, 5, 208, 0, 0, 1812, 1814, 5, 164, 0, 0, 1813, 1815, 3, 114, 57, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1817, 1, 0, 0, 0, 1816, 1805, 1, 0, 0, 0, 1816, 1809, 1, 0, 0, 0, 1817, 113, 1, 0, 0, 0, 1818, 1819, 5, 254, 0, 0, 1819, 1820, 5, 86, 0, 0, 1820, 1828, 5, 166, 0, 0, 1821, 1822, 5, 190, 0, 0, 1822, 1823, 5, 86, 0, 0, 1823, 1828, 5, 166, 0, 0, 1824, 1825, 5, 305, 0, 0, 1825, 1826, 5, 285, 0, 0, 1826, 1828, 5, 241, 0, 0, 1827, 1818, 1, 0, 0, 0, 1827, 1821, 1, 0, 0, 0, 1827, 1824, 1, 0, 0, 0, 1828, 115, 1, 0, 0, 0, 1829, 1830, 5, 5, 0, 0, 1830, 1831, 5, 270, 0, 0, 1831, 1832, 5, 175, 0, 0, 1832, 1849, 5, 240, 0, 0, 1833, 1834, 5, 5, 0, 0, 1834, 1835, 5, 205, 0, 0, 1835, 1836, 5, 149, 0, 0, 1836, 1849, 5, 240, 0, 0, 1837, 1838, 5, 5, 0, 0, 1838, 1839, 5, 270, 0, 0, 1839, 1840, 5, 102, 0, 0, 1840, 1849, 3, 320, 160, 0, 1841, 1842, 5, 5, 0, 0, 1842, 1843, 5, 270, 0, 0, 1843, 1844, 5, 149, 0, 0, 1844, 1849, 3, 320, 160, 0, 1845, 1846, 5, 5, 0, 0, 1846, 1847, 5, 270, 0, 0, 1847, 1849, 3, 320, 160, 0, 1848, 1829, 1, 0, 0, 0, 1848, 1833, 1, 0, 0, 0, 1848, 1837, 1, 0, 0, 0, 1848, 1841, 1, 0, 0, 0, 1848, 1845, 1, 0, 0, 0, 1849, 117, 1, 0, 0, 0, 1850, 1851, 3, 320, 160, 0, 1851, 1852, 5, 313, 0, 0, 1852, 1853, 5, 1, 0, 0, 1853, 1858, 3, 320, 160, 0, 1854, 1855, 5, 3, 0, 0, 1855, 1857, 3, 320, 160, 0, 1856, 1854, 1, 0, 0, 0, 1857, 1860, 1, 0, 0, 0, 1858, 1856, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1861, 1, 0, 0, 0, 1860, 1858, 1, 0, 0, 0, 1861, 1862, 5, 2, 0, 0, 1862, 119, 1, 0, 0, 0, 1863, 1864, 3, 320, 160, 0, 1864, 1865, 5, 28, 0, 0, 1865, 1866, 3, 158, 79, 0, 1866, 121, 1, 0, 0, 0, 1867, 1875, 3, 130, 65, 0, 1868, 1870, 5, 28, 0, 0, 1869, 1868, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1873, 3, 320, 160, 0, 1872, 1874, 3, 128, 64, 0, 1873, 1872, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 1876, 1, 0, 0, 0, 1875, 1869, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 123, 1, 0, 0, 0, 1877, 1878, 5, 1, 0, 0, 1878, 1883, 3, 304, 152, 0, 1879, 1880, 5, 3, 0, 0, 1880, 1882, 3, 304, 152, 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, 2, 0, 0, 1887, 125, 1, 0, 0, 0, 1888, 1889, 5, 1, 0, 0, 1889, 1894, 3, 298, 149, 0, 1890, 1891, 5, 3, 0, 0, 1891, 1893, 3, 298, 149, 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, 1897, 1, 0, 0, 0, 1896, 1894, 1, 0, 0, 0, 1897, 1898, 5, 2, 0, 0, 1898, 127, 1, 0, 0, 0, 1899, 1900, 5, 1, 0, 0, 1900, 1905, 3, 320, 160, 0, 1901, 1902, 5, 3, 0, 0, 1902, 1904, 3, 320, 160, 0, 1903, 1901, 1, 0, 0, 0, 1904, 1907, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1908, 1, 0, 0, 0, 1907, 1905, 1, 0, 0, 0, 1908, 1909, 5, 2, 0, 0, 1909, 129, 1, 0, 0, 0, 1910, 1912, 3, 276, 138, 0, 1911, 1913, 3, 308, 154, 0, 1912, 1911, 1, 0, 0, 0, 1912, 1913, 1, 0, 0, 0, 1913, 1920, 1, 0, 0, 0, 1914, 1920, 3, 132, 66, 0, 1915, 1916, 5, 1, 0, 0, 1916, 1917, 3, 88, 44, 0, 1917, 1918, 5, 2, 0, 0, 1918, 1920, 1, 0, 0, 0, 1919, 1910, 1, 0, 0, 0, 1919, 1914, 1, 0, 0, 0, 1919, 1915, 1, 0, 0, 0, 1920, 131, 1, 0, 0, 0, 1921, 1922, 5, 1, 0, 0, 1922, 1923, 3, 22, 11, 0, 1923, 1924, 5, 2, 0, 0, 1924, 1985, 1, 0, 0, 0, 1925, 1926, 5, 286, 0, 0, 1926, 1927, 5, 1, 0, 0, 1927, 1932, 3, 158, 79, 0, 1928, 1929, 5, 3, 0, 0, 1929, 1931, 3, 158, 79, 0, 1930, 1928, 1, 0, 0, 0, 1931, 1934, 1, 0, 0, 0, 1932, 1930, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1935, 1, 0, 0, 0, 1934, 1932, 1, 0, 0, 0, 1935, 1938, 5, 2, 0, 0, 1936, 1937, 5, 305, 0, 0, 1937, 1939, 5, 197, 0, 0, 1938, 1936, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1985, 1, 0, 0, 0, 1940, 1941, 5, 150, 0, 0, 1941, 1942, 5, 1, 0, 0, 1942, 1943, 3, 22, 11, 0, 1943, 1944, 5, 2, 0, 0, 1944, 1985, 1, 0, 0, 0, 1945, 1946, 5, 261, 0, 0, 1946, 1947, 5, 1, 0, 0, 1947, 1948, 3, 144, 72, 0, 1948, 1949, 5, 2, 0, 0, 1949, 1985, 1, 0, 0, 0, 1950, 1951, 5, 143, 0, 0, 1951, 1952, 5, 1, 0, 0, 1952, 1953, 3, 168, 84, 0, 1953, 1954, 5, 46, 0, 0, 1954, 1955, 5, 1, 0, 0, 1955, 1960, 3, 134, 67, 0, 1956, 1957, 5, 3, 0, 0, 1957, 1959, 3, 134, 67, 0, 1958, 1956, 1, 0, 0, 0, 1959, 1962, 1, 0, 0, 0, 1960, 1958, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1963, 1, 0, 0, 0, 1962, 1960, 1, 0, 0, 0, 1963, 1975, 5, 2, 0, 0, 1964, 1965, 5, 211, 0, 0, 1965, 1966, 5, 1, 0, 0, 1966, 1967, 3, 136, 68, 0, 1967, 1968, 5, 2, 0, 0, 1968, 1976, 1, 0, 0, 0, 1969, 1970, 5, 211, 0, 0, 1970, 1971, 5, 71, 0, 0, 1971, 1972, 5, 1, 0, 0, 1972, 1973, 3, 142, 71, 0, 1973, 1974, 5, 2, 0, 0, 1974, 1976, 1, 0, 0, 0, 1975, 1964, 1, 0, 0, 0, 1975, 1969, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1980, 1, 0, 0, 0, 1977, 1978, 7, 14, 0, 0, 1978, 1979, 5, 191, 0, 0, 1979, 1981, 5, 90, 0, 0, 1980, 1977, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1983, 5, 2, 0, 0, 1983, 1985, 1, 0, 0, 0, 1984, 1921, 1, 0, 0, 0, 1984, 1925, 1, 0, 0, 0, 1984, 1940, 1, 0, 0, 0, 1984, 1945, 1, 0, 0, 0, 1984, 1950, 1, 0, 0, 0, 1985, 133, 1, 0, 0, 0, 1986, 1987, 3, 320, 160, 0, 1987, 1988, 5, 104, 0, 0, 1988, 1989, 5, 197, 0, 0, 1989, 2064, 1, 0, 0, 0, 1990, 1991, 3, 320, 160, 0, 1991, 1994, 3, 206, 103, 0, 1992, 1993, 5, 206, 0, 0, 1993, 1995, 3, 190, 95, 0, 1994, 1992, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 2000, 1, 0, 0, 0, 1996, 1997, 3, 178, 89, 0, 1997, 1998, 5, 191, 0, 0, 1998, 1999, 5, 86, 0, 0, 1999, 2001, 1, 0, 0, 0, 2000, 1996, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2006, 1, 0, 0, 0, 2002, 2003, 3, 178, 89, 0, 2003, 2004, 5, 191, 0, 0, 2004, 2005, 5, 90, 0, 0, 2005, 2007, 1, 0, 0, 0, 2006, 2002, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2064, 1, 0, 0, 0, 2008, 2009, 3, 320, 160, 0, 2009, 2010, 3, 206, 103, 0, 2010, 2011, 5, 105, 0, 0, 2011, 2014, 3, 172, 86, 0, 2012, 2013, 5, 206, 0, 0, 2013, 2015, 3, 190, 95, 0, 2014, 2012, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2019, 1, 0, 0, 0, 2016, 2017, 3, 180, 90, 0, 2017, 2018, 5, 309, 0, 0, 2018, 2020, 1, 0, 0, 0, 2019, 2016, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2028, 1, 0, 0, 0, 2021, 2022, 7, 15, 0, 0, 2022, 2026, 5, 219, 0, 0, 2023, 2024, 5, 191, 0, 0, 2024, 2025, 5, 243, 0, 0, 2025, 2027, 5, 265, 0, 0, 2026, 2023, 1, 0, 0, 0, 2026, 2027, 1, 0, 0, 0, 2027, 2029, 1, 0, 0, 0, 2028, 2021, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2034, 1, 0, 0, 0, 2030, 2031, 3, 182, 91, 0, 2031, 2032, 5, 191, 0, 0, 2032, 2033, 5, 86, 0, 0, 2033, 2035, 1, 0, 0, 0, 2034, 2030, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2040, 1, 0, 0, 0, 2036, 2037, 3, 182, 91, 0, 2037, 2038, 5, 191, 0, 0, 2038, 2039, 5, 90, 0, 0, 2039, 2041, 1, 0, 0, 0, 2040, 2036, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2064, 1, 0, 0, 0, 2042, 2044, 5, 174, 0, 0, 2043, 2045, 5, 206, 0, 0, 2044, 2043, 1, 0, 0, 0, 2044, 2045, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 2049, 3, 190, 95, 0, 2047, 2048, 5, 28, 0, 0, 2048, 2050, 3, 320, 160, 0, 2049, 2047, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2052, 5, 46, 0, 0, 2052, 2053, 5, 1, 0, 0, 2053, 2058, 3, 134, 67, 0, 2054, 2055, 5, 3, 0, 0, 2055, 2057, 3, 134, 67, 0, 2056, 2054, 1, 0, 0, 0, 2057, 2060, 1, 0, 0, 0, 2058, 2056, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2061, 1, 0, 0, 0, 2060, 2058, 1, 0, 0, 0, 2061, 2062, 5, 2, 0, 0, 2062, 2064, 1, 0, 0, 0, 2063, 1986, 1, 0, 0, 0, 2063, 1990, 1, 0, 0, 0, 2063, 2008, 1, 0, 0, 0, 2063, 2042, 1, 0, 0, 0, 2064, 135, 1, 0, 0, 0, 2065, 2091, 3, 138, 69, 0, 2066, 2067, 3, 138, 69, 0, 2067, 2068, 7, 16, 0, 0, 2068, 2069, 3, 140, 70, 0, 2069, 2091, 1, 0, 0, 0, 2070, 2071, 3, 140, 70, 0, 2071, 2072, 5, 282, 0, 0, 2072, 2077, 3, 140, 70, 0, 2073, 2074, 5, 282, 0, 0, 2074, 2076, 3, 140, 70, 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, 2091, 1, 0, 0, 0, 2079, 2077, 1, 0, 0, 0, 2080, 2081, 3, 140, 70, 0, 2081, 2082, 5, 55, 0, 0, 2082, 2087, 3, 140, 70, 0, 2083, 2084, 5, 55, 0, 0, 2084, 2086, 3, 140, 70, 0, 2085, 2083, 1, 0, 0, 0, 2086, 2089, 1, 0, 0, 0, 2087, 2085, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2091, 1, 0, 0, 0, 2089, 2087, 1, 0, 0, 0, 2090, 2065, 1, 0, 0, 0, 2090, 2066, 1, 0, 0, 0, 2090, 2070, 1, 0, 0, 0, 2090, 2080, 1, 0, 0, 0, 2091, 137, 1, 0, 0, 0, 2092, 2093, 3, 320, 160, 0, 2093, 139, 1, 0, 0, 0, 2094, 2100, 3, 138, 69, 0, 2095, 2096, 5, 1, 0, 0, 2096, 2097, 3, 136, 68, 0, 2097, 2098, 5, 2, 0, 0, 2098, 2100, 1, 0, 0, 0, 2099, 2094, 1, 0, 0, 0, 2099, 2095, 1, 0, 0, 0, 2100, 141, 1, 0, 0, 0, 2101, 2104, 7, 16, 0, 0, 2102, 2103, 5, 3, 0, 0, 2103, 2105, 7, 17, 0, 0, 2104, 2102, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2112, 1, 0, 0, 0, 2106, 2109, 7, 17, 0, 0, 2107, 2108, 5, 3, 0, 0, 2108, 2110, 7, 16, 0, 0, 2109, 2107, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2112, 1, 0, 0, 0, 2111, 2101, 1, 0, 0, 0, 2111, 2106, 1, 0, 0, 0, 2112, 143, 1, 0, 0, 0, 2113, 2114, 3, 294, 147, 0, 2114, 2123, 5, 1, 0, 0, 2115, 2120, 3, 146, 73, 0, 2116, 2117, 5, 3, 0, 0, 2117, 2119, 3, 146, 73, 0, 2118, 2116, 1, 0, 0, 0, 2119, 2122, 1, 0, 0, 0, 2120, 2118, 1, 0, 0, 0, 2120, 2121, 1, 0, 0, 0, 2121, 2124, 1, 0, 0, 0, 2122, 2120, 1, 0, 0, 0, 2123, 2115, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2134, 1, 0, 0, 0, 2125, 2126, 5, 53, 0, 0, 2126, 2131, 3, 156, 78, 0, 2127, 2128, 5, 3, 0, 0, 2128, 2130, 3, 156, 78, 0, 2129, 2127, 1, 0, 0, 0, 2130, 2133, 1, 0, 0, 0, 2131, 2129, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2135, 1, 0, 0, 0, 2133, 2131, 1, 0, 0, 0, 2134, 2125, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2137, 5, 2, 0, 0, 2137, 145, 1, 0, 0, 0, 2138, 2139, 3, 320, 160, 0, 2139, 2140, 5, 6, 0, 0, 2140, 2142, 1, 0, 0, 0, 2141, 2138, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2146, 1, 0, 0, 0, 2143, 2147, 3, 148, 74, 0, 2144, 2147, 3, 152, 76, 0, 2145, 2147, 3, 158, 79, 0, 2146, 2143, 1, 0, 0, 0, 2146, 2144, 1, 0, 0, 0, 2146, 2145, 1, 0, 0, 0, 2147, 147, 1, 0, 0, 0, 2148, 2159, 3, 150, 75, 0, 2149, 2150, 5, 202, 0, 0, 2150, 2157, 5, 36, 0, 0, 2151, 2153, 5, 1, 0, 0, 2152, 2154, 3, 62, 31, 0, 2153, 2152, 1, 0, 0, 0, 2153, 2154, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2158, 5, 2, 0, 0, 2156, 2158, 3, 158, 79, 0, 2157, 2151, 1, 0, 0, 0, 2157, 2156, 1, 0, 0, 0, 2158, 2160, 1, 0, 0, 0, 2159, 2149, 1, 0, 0, 0, 2159, 2160, 1, 0, 0, 0, 2160, 2167, 1, 0, 0, 0, 2161, 2162, 5, 218, 0, 0, 2162, 2163, 5, 301, 0, 0, 2163, 2168, 5, 86, 0, 0, 2164, 2165, 5, 145, 0, 0, 2165, 2166, 5, 301, 0, 0, 2166, 2168, 5, 86, 0, 0, 2167, 2161, 1, 0, 0, 0, 2167, 2164, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2185, 1, 0, 0, 0, 2169, 2170, 5, 196, 0, 0, 2170, 2183, 5, 36, 0, 0, 2171, 2172, 5, 1, 0, 0, 2172, 2177, 3, 50, 25, 0, 2173, 2174, 5, 3, 0, 0, 2174, 2176, 3, 50, 25, 0, 2175, 2173, 1, 0, 0, 0, 2176, 2179, 1, 0, 0, 0, 2177, 2175, 1, 0, 0, 0, 2177, 2178, 1, 0, 0, 0, 2178, 2180, 1, 0, 0, 0, 2179, 2177, 1, 0, 0, 0, 2180, 2181, 5, 2, 0, 0, 2181, 2184, 1, 0, 0, 0, 2182, 2184, 3, 50, 25, 0, 2183, 2171, 1, 0, 0, 0, 2183, 2182, 1, 0, 0, 0, 2184, 2186, 1, 0, 0, 0, 2185, 2169, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 149, 1, 0, 0, 0, 2187, 2188, 5, 261, 0, 0, 2188, 2189, 5, 1, 0, 0, 2189, 2190, 3, 278, 139, 0, 2190, 2198, 5, 2, 0, 0, 2191, 2193, 5, 28, 0, 0, 2192, 2191, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2196, 3, 320, 160, 0, 2195, 2197, 3, 128, 64, 0, 2196, 2195, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 2199, 1, 0, 0, 0, 2198, 2192, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 2214, 1, 0, 0, 0, 2200, 2201, 5, 261, 0, 0, 2201, 2202, 5, 1, 0, 0, 2202, 2203, 3, 22, 11, 0, 2203, 2211, 5, 2, 0, 0, 2204, 2206, 5, 28, 0, 0, 2205, 2204, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2209, 3, 320, 160, 0, 2208, 2210, 3, 128, 64, 0, 2209, 2208, 1, 0, 0, 0, 2209, 2210, 1, 0, 0, 0, 2210, 2212, 1, 0, 0, 0, 2211, 2205, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2214, 1, 0, 0, 0, 2213, 2187, 1, 0, 0, 0, 2213, 2200, 1, 0, 0, 0, 2214, 151, 1, 0, 0, 0, 2215, 2216, 5, 78, 0, 0, 2216, 2217, 5, 1, 0, 0, 2217, 2222, 3, 154, 77, 0, 2218, 2219, 5, 3, 0, 0, 2219, 2221, 3, 154, 77, 0, 2220, 2218, 1, 0, 0, 0, 2221, 2224, 1, 0, 0, 0, 2222, 2220, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 2225, 1, 0, 0, 0, 2224, 2222, 1, 0, 0, 0, 2225, 2226, 5, 2, 0, 0, 2226, 2234, 1, 0, 0, 0, 2227, 2228, 5, 41, 0, 0, 2228, 2229, 5, 1, 0, 0, 2229, 2230, 5, 184, 0, 0, 2230, 2231, 5, 28, 0, 0, 2231, 2232, 5, 78, 0, 0, 2232, 2234, 5, 2, 0, 0, 2233, 2215, 1, 0, 0, 0, 2233, 2227, 1, 0, 0, 0, 2234, 153, 1, 0, 0, 0, 2235, 2237, 3, 320, 160, 0, 2236, 2238, 3, 206, 103, 0, 2237, 2236, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 155, 1, 0, 0, 0, 2239, 2240, 5, 1, 0, 0, 2240, 2241, 3, 306, 153, 0, 2241, 2242, 5, 3, 0, 0, 2242, 2247, 3, 306, 153, 0, 2243, 2244, 5, 3, 0, 0, 2244, 2246, 3, 306, 153, 0, 2245, 2243, 1, 0, 0, 0, 2246, 2249, 1, 0, 0, 0, 2247, 2245, 1, 0, 0, 0, 2247, 2248, 1, 0, 0, 0, 2248, 2250, 1, 0, 0, 0, 2249, 2247, 1, 0, 0, 0, 2250, 2251, 5, 2, 0, 0, 2251, 157, 1, 0, 0, 0, 2252, 2253, 3, 160, 80, 0, 2253, 159, 1, 0, 0, 0, 2254, 2255, 6, 80, -1, 0, 2255, 2257, 3, 164, 82, 0, 2256, 2258, 3, 162, 81, 0, 2257, 2256, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 2262, 1, 0, 0, 0, 2259, 2260, 5, 183, 0, 0, 2260, 2262, 3, 160, 80, 3, 2261, 2254, 1, 0, 0, 0, 2261, 2259, 1, 0, 0, 0, 2262, 2271, 1, 0, 0, 0, 2263, 2264, 10, 2, 0, 0, 2264, 2265, 5, 25, 0, 0, 2265, 2270, 3, 160, 80, 3, 2266, 2267, 10, 1, 0, 0, 2267, 2268, 5, 195, 0, 0, 2268, 2270, 3, 160, 80, 2, 2269, 2263, 1, 0, 0, 0, 2269, 2266, 1, 0, 0, 0, 2270, 2273, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 161, 1, 0, 0, 0, 2273, 2271, 1, 0, 0, 0, 2274, 2275, 3, 194, 97, 0, 2275, 2276, 3, 164, 82, 0, 2276, 2336, 1, 0, 0, 0, 2277, 2278, 3, 194, 97, 0, 2278, 2279, 3, 196, 98, 0, 2279, 2280, 5, 1, 0, 0, 2280, 2281, 3, 22, 11, 0, 2281, 2282, 5, 2, 0, 0, 2282, 2336, 1, 0, 0, 0, 2283, 2285, 5, 183, 0, 0, 2284, 2283, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2287, 5, 34, 0, 0, 2287, 2288, 3, 164, 82, 0, 2288, 2289, 5, 25, 0, 0, 2289, 2290, 3, 164, 82, 0, 2290, 2336, 1, 0, 0, 0, 2291, 2293, 5, 183, 0, 0, 2292, 2291, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 2295, 5, 123, 0, 0, 2295, 2296, 5, 1, 0, 0, 2296, 2301, 3, 158, 79, 0, 2297, 2298, 5, 3, 0, 0, 2298, 2300, 3, 158, 79, 0, 2299, 2297, 1, 0, 0, 0, 2300, 2303, 1, 0, 0, 0, 2301, 2299, 1, 0, 0, 0, 2301, 2302, 1, 0, 0, 0, 2302, 2304, 1, 0, 0, 0, 2303, 2301, 1, 0, 0, 0, 2304, 2305, 5, 2, 0, 0, 2305, 2336, 1, 0, 0, 0, 2306, 2308, 5, 183, 0, 0, 2307, 2306, 1, 0, 0, 0, 2307, 2308, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 2310, 5, 123, 0, 0, 2310, 2311, 5, 1, 0, 0, 2311, 2312, 3, 22, 11, 0, 2312, 2313, 5, 2, 0, 0, 2313, 2336, 1, 0, 0, 0, 2314, 2316, 5, 183, 0, 0, 2315, 2314, 1, 0, 0, 0, 2315, 2316, 1, 0, 0, 0, 2316, 2317, 1, 0, 0, 0, 2317, 2318, 5, 155, 0, 0, 2318, 2321, 3, 164, 82, 0, 2319, 2320, 5, 91, 0, 0, 2320, 2322, 3, 164, 82, 0, 2321, 2319, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2336, 1, 0, 0, 0, 2323, 2325, 5, 134, 0, 0, 2324, 2326, 5, 183, 0, 0, 2325, 2324, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2327, 1, 0, 0, 0, 2327, 2336, 5, 184, 0, 0, 2328, 2330, 5, 134, 0, 0, 2329, 2331, 5, 183, 0, 0, 2330, 2329, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2333, 5, 80, 0, 0, 2333, 2334, 5, 106, 0, 0, 2334, 2336, 3, 164, 82, 0, 2335, 2274, 1, 0, 0, 0, 2335, 2277, 1, 0, 0, 0, 2335, 2284, 1, 0, 0, 0, 2335, 2292, 1, 0, 0, 0, 2335, 2307, 1, 0, 0, 0, 2335, 2315, 1, 0, 0, 0, 2335, 2323, 1, 0, 0, 0, 2335, 2328, 1, 0, 0, 0, 2336, 163, 1, 0, 0, 0, 2337, 2338, 6, 82, -1, 0, 2338, 2342, 3, 166, 83, 0, 2339, 2340, 7, 18, 0, 0, 2340, 2342, 3, 164, 82, 4, 2341, 2337, 1, 0, 0, 0, 2341, 2339, 1, 0, 0, 0, 2342, 2357, 1, 0, 0, 0, 2343, 2344, 10, 3, 0, 0, 2344, 2345, 7, 19, 0, 0, 2345, 2356, 3, 164, 82, 4, 2346, 2347, 10, 2, 0, 0, 2347, 2348, 7, 18, 0, 0, 2348, 2356, 3, 164, 82, 3, 2349, 2350, 10, 1, 0, 0, 2350, 2351, 5, 324, 0, 0, 2351, 2356, 3, 164, 82, 2, 2352, 2353, 10, 5, 0, 0, 2353, 2354, 5, 30, 0, 0, 2354, 2356, 3, 192, 96, 0, 2355, 2343, 1, 0, 0, 0, 2355, 2346, 1, 0, 0, 0, 2355, 2349, 1, 0, 0, 0, 2355, 2352, 1, 0, 0, 0, 2356, 2359, 1, 0, 0, 0, 2357, 2355, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 165, 1, 0, 0, 0, 2359, 2357, 1, 0, 0, 0, 2360, 2361, 6, 83, -1, 0, 2361, 2826, 5, 184, 0, 0, 2362, 2826, 3, 200, 100, 0, 2363, 2364, 3, 320, 160, 0, 2364, 2365, 3, 190, 95, 0, 2365, 2826, 1, 0, 0, 0, 2366, 2367, 5, 83, 0, 0, 2367, 2368, 5, 214, 0, 0, 2368, 2826, 3, 190, 95, 0, 2369, 2826, 3, 322, 161, 0, 2370, 2826, 3, 198, 99, 0, 2371, 2826, 3, 190, 95, 0, 2372, 2826, 5, 329, 0, 0, 2373, 2826, 5, 325, 0, 0, 2374, 2375, 5, 212, 0, 0, 2375, 2376, 5, 1, 0, 0, 2376, 2377, 3, 164, 82, 0, 2377, 2378, 5, 123, 0, 0, 2378, 2379, 3, 164, 82, 0, 2379, 2380, 5, 2, 0, 0, 2380, 2826, 1, 0, 0, 0, 2381, 2382, 5, 1, 0, 0, 2382, 2385, 3, 158, 79, 0, 2383, 2384, 5, 3, 0, 0, 2384, 2386, 3, 158, 79, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, 2385, 1, 0, 0, 0, 2387, 2388, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2390, 5, 2, 0, 0, 2390, 2826, 1, 0, 0, 0, 2391, 2392, 5, 240, 0, 0, 2392, 2393, 5, 1, 0, 0, 2393, 2398, 3, 158, 79, 0, 2394, 2395, 5, 3, 0, 0, 2395, 2397, 3, 158, 79, 0, 2396, 2394, 1, 0, 0, 0, 2397, 2400, 1, 0, 0, 0, 2398, 2396, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2399, 2401, 1, 0, 0, 0, 2400, 2398, 1, 0, 0, 0, 2401, 2402, 5, 2, 0, 0, 2402, 2826, 1, 0, 0, 0, 2403, 2404, 5, 157, 0, 0, 2404, 2406, 5, 1, 0, 0, 2405, 2407, 3, 76, 38, 0, 2406, 2405, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2408, 1, 0, 0, 0, 2408, 2411, 3, 158, 79, 0, 2409, 2410, 5, 3, 0, 0, 2410, 2412, 3, 190, 95, 0, 2411, 2409, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2416, 1, 0, 0, 0, 2413, 2414, 5, 191, 0, 0, 2414, 2415, 5, 201, 0, 0, 2415, 2417, 3, 104, 52, 0, 2416, 2413, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2418, 1, 0, 0, 0, 2418, 2419, 5, 2, 0, 0, 2419, 2420, 5, 306, 0, 0, 2420, 2421, 5, 115, 0, 0, 2421, 2422, 5, 1, 0, 0, 2422, 2423, 5, 196, 0, 0, 2423, 2424, 5, 36, 0, 0, 2424, 2429, 3, 50, 25, 0, 2425, 2426, 5, 3, 0, 0, 2426, 2428, 3, 50, 25, 0, 2427, 2425, 1, 0, 0, 0, 2428, 2431, 1, 0, 0, 0, 2429, 2427, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2432, 1, 0, 0, 0, 2431, 2429, 1, 0, 0, 0, 2432, 2433, 5, 2, 0, 0, 2433, 2435, 1, 0, 0, 0, 2434, 2436, 3, 214, 107, 0, 2435, 2434, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2826, 1, 0, 0, 0, 2437, 2439, 3, 186, 93, 0, 2438, 2437, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 2441, 3, 294, 147, 0, 2441, 2445, 5, 1, 0, 0, 2442, 2443, 3, 320, 160, 0, 2443, 2444, 5, 4, 0, 0, 2444, 2446, 1, 0, 0, 0, 2445, 2442, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2448, 5, 321, 0, 0, 2448, 2450, 5, 2, 0, 0, 2449, 2451, 3, 214, 107, 0, 2450, 2449, 1, 0, 0, 0, 2450, 2451, 1, 0, 0, 0, 2451, 2453, 1, 0, 0, 0, 2452, 2454, 3, 218, 109, 0, 2453, 2452, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2826, 1, 0, 0, 0, 2455, 2457, 3, 186, 93, 0, 2456, 2455, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 2458, 1, 0, 0, 0, 2458, 2459, 3, 294, 147, 0, 2459, 2471, 5, 1, 0, 0, 2460, 2462, 3, 76, 38, 0, 2461, 2460, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2468, 3, 158, 79, 0, 2464, 2465, 5, 3, 0, 0, 2465, 2467, 3, 158, 79, 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, 2472, 1, 0, 0, 0, 2470, 2468, 1, 0, 0, 0, 2471, 2461, 1, 0, 0, 0, 2471, 2472, 1, 0, 0, 0, 2472, 2483, 1, 0, 0, 0, 2473, 2474, 5, 196, 0, 0, 2474, 2475, 5, 36, 0, 0, 2475, 2480, 3, 50, 25, 0, 2476, 2477, 5, 3, 0, 0, 2477, 2479, 3, 50, 25, 0, 2478, 2476, 1, 0, 0, 0, 2479, 2482, 1, 0, 0, 0, 2480, 2478, 1, 0, 0, 0, 2480, 2481, 1, 0, 0, 0, 2481, 2484, 1, 0, 0, 0, 2482, 2480, 1, 0, 0, 0, 2483, 2473, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2487, 5, 2, 0, 0, 2486, 2488, 3, 214, 107, 0, 2487, 2486, 1, 0, 0, 0, 2487, 2488, 1, 0, 0, 0, 2488, 2493, 1, 0, 0, 0, 2489, 2491, 3, 188, 94, 0, 2490, 2489, 1, 0, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2494, 3, 218, 109, 0, 2493, 2490, 1, 0, 0, 0, 2493, 2494, 1, 0, 0, 0, 2494, 2826, 1, 0, 0, 0, 2495, 2496, 3, 320, 160, 0, 2496, 2497, 3, 218, 109, 0, 2497, 2826, 1, 0, 0, 0, 2498, 2499, 3, 320, 160, 0, 2499, 2500, 5, 7, 0, 0, 2500, 2501, 3, 158, 79, 0, 2501, 2826, 1, 0, 0, 0, 2502, 2511, 5, 1, 0, 0, 2503, 2508, 3, 320, 160, 0, 2504, 2505, 5, 3, 0, 0, 2505, 2507, 3, 320, 160, 0, 2506, 2504, 1, 0, 0, 0, 2507, 2510, 1, 0, 0, 0, 2508, 2506, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2512, 1, 0, 0, 0, 2510, 2508, 1, 0, 0, 0, 2511, 2503, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2513, 1, 0, 0, 0, 2513, 2514, 5, 2, 0, 0, 2514, 2515, 5, 7, 0, 0, 2515, 2826, 3, 158, 79, 0, 2516, 2517, 5, 1, 0, 0, 2517, 2518, 3, 22, 11, 0, 2518, 2519, 5, 2, 0, 0, 2519, 2826, 1, 0, 0, 0, 2520, 2521, 5, 95, 0, 0, 2521, 2522, 5, 1, 0, 0, 2522, 2523, 3, 22, 11, 0, 2523, 2524, 5, 2, 0, 0, 2524, 2826, 1, 0, 0, 0, 2525, 2526, 5, 40, 0, 0, 2526, 2528, 3, 158, 79, 0, 2527, 2529, 3, 212, 106, 0, 2528, 2527, 1, 0, 0, 0, 2529, 2530, 1, 0, 0, 0, 2530, 2528, 1, 0, 0, 0, 2530, 2531, 1, 0, 0, 0, 2531, 2534, 1, 0, 0, 0, 2532, 2533, 5, 85, 0, 0, 2533, 2535, 3, 158, 79, 0, 2534, 2532, 1, 0, 0, 0, 2534, 2535, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 2537, 5, 89, 0, 0, 2537, 2826, 1, 0, 0, 0, 2538, 2540, 5, 40, 0, 0, 2539, 2541, 3, 212, 106, 0, 2540, 2539, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 2540, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2546, 1, 0, 0, 0, 2544, 2545, 5, 85, 0, 0, 2545, 2547, 3, 158, 79, 0, 2546, 2544, 1, 0, 0, 0, 2546, 2547, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2549, 5, 89, 0, 0, 2549, 2826, 1, 0, 0, 0, 2550, 2551, 5, 41, 0, 0, 2551, 2552, 5, 1, 0, 0, 2552, 2553, 3, 158, 79, 0, 2553, 2554, 5, 28, 0, 0, 2554, 2555, 3, 206, 103, 0, 2555, 2556, 5, 2, 0, 0, 2556, 2826, 1, 0, 0, 0, 2557, 2558, 5, 276, 0, 0, 2558, 2559, 5, 1, 0, 0, 2559, 2560, 3, 158, 79, 0, 2560, 2561, 5, 28, 0, 0, 2561, 2562, 3, 206, 103, 0, 2562, 2563, 5, 2, 0, 0, 2563, 2826, 1, 0, 0, 0, 2564, 2565, 5, 27, 0, 0, 2565, 2574, 5, 8, 0, 0, 2566, 2571, 3, 158, 79, 0, 2567, 2568, 5, 3, 0, 0, 2568, 2570, 3, 158, 79, 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, 2826, 5, 9, 0, 0, 2577, 2826, 3, 302, 151, 0, 2578, 2826, 5, 59, 0, 0, 2579, 2583, 5, 63, 0, 0, 2580, 2581, 5, 1, 0, 0, 2581, 2582, 5, 330, 0, 0, 2582, 2584, 5, 2, 0, 0, 2583, 2580, 1, 0, 0, 0, 2583, 2584, 1, 0, 0, 0, 2584, 2826, 1, 0, 0, 0, 2585, 2589, 5, 64, 0, 0, 2586, 2587, 5, 1, 0, 0, 2587, 2588, 5, 330, 0, 0, 2588, 2590, 5, 2, 0, 0, 2589, 2586, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 2826, 1, 0, 0, 0, 2591, 2595, 5, 159, 0, 0, 2592, 2593, 5, 1, 0, 0, 2593, 2594, 5, 330, 0, 0, 2594, 2596, 5, 2, 0, 0, 2595, 2592, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2826, 1, 0, 0, 0, 2597, 2601, 5, 160, 0, 0, 2598, 2599, 5, 1, 0, 0, 2599, 2600, 5, 330, 0, 0, 2600, 2602, 5, 2, 0, 0, 2601, 2598, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2826, 1, 0, 0, 0, 2603, 2826, 5, 65, 0, 0, 2604, 2826, 5, 58, 0, 0, 2605, 2826, 5, 62, 0, 0, 2606, 2826, 5, 60, 0, 0, 2607, 2608, 5, 273, 0, 0, 2608, 2616, 5, 1, 0, 0, 2609, 2611, 3, 102, 51, 0, 2610, 2609, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2613, 1, 0, 0, 0, 2612, 2614, 3, 164, 82, 0, 2613, 2612, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2617, 5, 106, 0, 0, 2616, 2610, 1, 0, 0, 0, 2616, 2617, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2619, 3, 164, 82, 0, 2619, 2620, 5, 2, 0, 0, 2620, 2826, 1, 0, 0, 0, 2621, 2622, 5, 273, 0, 0, 2622, 2623, 5, 1, 0, 0, 2623, 2624, 3, 164, 82, 0, 2624, 2625, 5, 3, 0, 0, 2625, 2626, 3, 164, 82, 0, 2626, 2627, 5, 2, 0, 0, 2627, 2826, 1, 0, 0, 0, 2628, 2629, 5, 259, 0, 0, 2629, 2630, 5, 1, 0, 0, 2630, 2631, 3, 164, 82, 0, 2631, 2632, 5, 106, 0, 0, 2632, 2635, 3, 164, 82, 0, 2633, 2634, 5, 104, 0, 0, 2634, 2636, 3, 164, 82, 0, 2635, 2633, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2638, 5, 2, 0, 0, 2638, 2826, 1, 0, 0, 0, 2639, 2640, 5, 182, 0, 0, 2640, 2641, 5, 1, 0, 0, 2641, 2644, 3, 164, 82, 0, 2642, 2643, 5, 3, 0, 0, 2643, 2645, 3, 204, 102, 0, 2644, 2642, 1, 0, 0, 0, 2644, 2645, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2647, 5, 2, 0, 0, 2647, 2826, 1, 0, 0, 0, 2648, 2649, 5, 97, 0, 0, 2649, 2650, 5, 1, 0, 0, 2650, 2651, 3, 320, 160, 0, 2651, 2652, 5, 106, 0, 0, 2652, 2653, 3, 164, 82, 0, 2653, 2654, 5, 2, 0, 0, 2654, 2826, 1, 0, 0, 0, 2655, 2656, 5, 44, 0, 0, 2656, 2657, 5, 1, 0, 0, 2657, 2662, 3, 158, 79, 0, 2658, 2659, 5, 3, 0, 0, 2659, 2661, 3, 158, 79, 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, 2, 0, 0, 2666, 2826, 1, 0, 0, 0, 2667, 2668, 5, 1, 0, 0, 2668, 2669, 3, 158, 79, 0, 2669, 2670, 5, 2, 0, 0, 2670, 2826, 1, 0, 0, 0, 2671, 2672, 5, 116, 0, 0, 2672, 2681, 5, 1, 0, 0, 2673, 2678, 3, 306, 153, 0, 2674, 2675, 5, 3, 0, 0, 2675, 2677, 3, 306, 153, 0, 2676, 2674, 1, 0, 0, 0, 2677, 2680, 1, 0, 0, 0, 2678, 2676, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2682, 1, 0, 0, 0, 2680, 2678, 1, 0, 0, 0, 2681, 2673, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2826, 5, 2, 0, 0, 2684, 2685, 5, 140, 0, 0, 2685, 2686, 5, 1, 0, 0, 2686, 2691, 3, 168, 84, 0, 2687, 2688, 3, 176, 88, 0, 2688, 2689, 5, 191, 0, 0, 2689, 2690, 5, 90, 0, 0, 2690, 2692, 1, 0, 0, 0, 2691, 2687, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 2694, 5, 2, 0, 0, 2694, 2826, 1, 0, 0, 0, 2695, 2696, 5, 144, 0, 0, 2696, 2697, 5, 1, 0, 0, 2697, 2700, 3, 168, 84, 0, 2698, 2699, 5, 232, 0, 0, 2699, 2701, 3, 206, 103, 0, 2700, 2698, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2706, 1, 0, 0, 0, 2702, 2703, 3, 178, 89, 0, 2703, 2704, 5, 191, 0, 0, 2704, 2705, 5, 86, 0, 0, 2705, 2707, 1, 0, 0, 0, 2706, 2702, 1, 0, 0, 0, 2706, 2707, 1, 0, 0, 0, 2707, 2712, 1, 0, 0, 0, 2708, 2709, 3, 178, 89, 0, 2709, 2710, 5, 191, 0, 0, 2710, 2711, 5, 90, 0, 0, 2711, 2713, 1, 0, 0, 0, 2712, 2708, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2715, 5, 2, 0, 0, 2715, 2826, 1, 0, 0, 0, 2716, 2717, 5, 142, 0, 0, 2717, 2718, 5, 1, 0, 0, 2718, 2725, 3, 168, 84, 0, 2719, 2720, 5, 232, 0, 0, 2720, 2723, 3, 206, 103, 0, 2721, 2722, 5, 105, 0, 0, 2722, 2724, 3, 172, 86, 0, 2723, 2721, 1, 0, 0, 0, 2723, 2724, 1, 0, 0, 0, 2724, 2726, 1, 0, 0, 0, 2725, 2719, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2730, 1, 0, 0, 0, 2727, 2728, 3, 180, 90, 0, 2728, 2729, 5, 309, 0, 0, 2729, 2731, 1, 0, 0, 0, 2730, 2727, 1, 0, 0, 0, 2730, 2731, 1, 0, 0, 0, 2731, 2739, 1, 0, 0, 0, 2732, 2733, 7, 15, 0, 0, 2733, 2737, 5, 219, 0, 0, 2734, 2735, 5, 191, 0, 0, 2735, 2736, 5, 243, 0, 0, 2736, 2738, 5, 265, 0, 0, 2737, 2734, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2740, 1, 0, 0, 0, 2739, 2732, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 2745, 1, 0, 0, 0, 2741, 2742, 3, 182, 91, 0, 2742, 2743, 5, 191, 0, 0, 2743, 2744, 5, 86, 0, 0, 2744, 2746, 1, 0, 0, 0, 2745, 2741, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2751, 1, 0, 0, 0, 2747, 2748, 3, 182, 91, 0, 2748, 2749, 5, 191, 0, 0, 2749, 2750, 5, 90, 0, 0, 2750, 2752, 1, 0, 0, 0, 2751, 2747, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 2753, 1, 0, 0, 0, 2753, 2754, 5, 2, 0, 0, 2754, 2826, 1, 0, 0, 0, 2755, 2756, 5, 141, 0, 0, 2756, 2785, 5, 1, 0, 0, 2757, 2762, 3, 184, 92, 0, 2758, 2759, 5, 3, 0, 0, 2759, 2761, 3, 184, 92, 0, 2760, 2758, 1, 0, 0, 0, 2761, 2764, 1, 0, 0, 0, 2762, 2760, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2771, 1, 0, 0, 0, 2764, 2762, 1, 0, 0, 0, 2765, 2766, 5, 184, 0, 0, 2766, 2767, 5, 191, 0, 0, 2767, 2772, 5, 184, 0, 0, 2768, 2769, 5, 18, 0, 0, 2769, 2770, 5, 191, 0, 0, 2770, 2772, 5, 184, 0, 0, 2771, 2765, 1, 0, 0, 0, 2771, 2768, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2783, 1, 0, 0, 0, 2773, 2774, 5, 305, 0, 0, 2774, 2776, 5, 283, 0, 0, 2775, 2777, 5, 147, 0, 0, 2776, 2775, 1, 0, 0, 0, 2776, 2777, 1, 0, 0, 0, 2777, 2784, 1, 0, 0, 0, 2778, 2779, 5, 307, 0, 0, 2779, 2781, 5, 283, 0, 0, 2780, 2782, 5, 147, 0, 0, 2781, 2780, 1, 0, 0, 0, 2781, 2782, 1, 0, 0, 0, 2782, 2784, 1, 0, 0, 0, 2783, 2773, 1, 0, 0, 0, 2783, 2778, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2786, 1, 0, 0, 0, 2785, 2757, 1, 0, 0, 0, 2785, 2786, 1, 0, 0, 0, 2786, 2793, 1, 0, 0, 0, 2787, 2788, 5, 232, 0, 0, 2788, 2791, 3, 206, 103, 0, 2789, 2790, 5, 105, 0, 0, 2790, 2792, 3, 172, 86, 0, 2791, 2789, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2794, 1, 0, 0, 0, 2793, 2787, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2826, 5, 2, 0, 0, 2796, 2797, 5, 139, 0, 0, 2797, 2814, 5, 1, 0, 0, 2798, 2803, 3, 170, 85, 0, 2799, 2800, 5, 3, 0, 0, 2800, 2802, 3, 170, 85, 0, 2801, 2799, 1, 0, 0, 0, 2802, 2805, 1, 0, 0, 0, 2803, 2801, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 2812, 1, 0, 0, 0, 2805, 2803, 1, 0, 0, 0, 2806, 2807, 5, 184, 0, 0, 2807, 2808, 5, 191, 0, 0, 2808, 2813, 5, 184, 0, 0, 2809, 2810, 5, 18, 0, 0, 2810, 2811, 5, 191, 0, 0, 2811, 2813, 5, 184, 0, 0, 2812, 2806, 1, 0, 0, 0, 2812, 2809, 1, 0, 0, 0, 2812, 2813, 1, 0, 0, 0, 2813, 2815, 1, 0, 0, 0, 2814, 2798, 1, 0, 0, 0, 2814, 2815, 1, 0, 0, 0, 2815, 2822, 1, 0, 0, 0, 2816, 2817, 5, 232, 0, 0, 2817, 2820, 3, 206, 103, 0, 2818, 2819, 5, 105, 0, 0, 2819, 2821, 3, 172, 86, 0, 2820, 2818, 1, 0, 0, 0, 2820, 2821, 1, 0, 0, 0, 2821, 2823, 1, 0, 0, 0, 2822, 2816, 1, 0, 0, 0, 2822, 2823, 1, 0, 0, 0, 2823, 2824, 1, 0, 0, 0, 2824, 2826, 5, 2, 0, 0, 2825, 2360, 1, 0, 0, 0, 2825, 2362, 1, 0, 0, 0, 2825, 2363, 1, 0, 0, 0, 2825, 2366, 1, 0, 0, 0, 2825, 2369, 1, 0, 0, 0, 2825, 2370, 1, 0, 0, 0, 2825, 2371, 1, 0, 0, 0, 2825, 2372, 1, 0, 0, 0, 2825, 2373, 1, 0, 0, 0, 2825, 2374, 1, 0, 0, 0, 2825, 2381, 1, 0, 0, 0, 2825, 2391, 1, 0, 0, 0, 2825, 2403, 1, 0, 0, 0, 2825, 2438, 1, 0, 0, 0, 2825, 2456, 1, 0, 0, 0, 2825, 2495, 1, 0, 0, 0, 2825, 2498, 1, 0, 0, 0, 2825, 2502, 1, 0, 0, 0, 2825, 2516, 1, 0, 0, 0, 2825, 2520, 1, 0, 0, 0, 2825, 2525, 1, 0, 0, 0, 2825, 2538, 1, 0, 0, 0, 2825, 2550, 1, 0, 0, 0, 2825, 2557, 1, 0, 0, 0, 2825, 2564, 1, 0, 0, 0, 2825, 2577, 1, 0, 0, 0, 2825, 2578, 1, 0, 0, 0, 2825, 2579, 1, 0, 0, 0, 2825, 2585, 1, 0, 0, 0, 2825, 2591, 1, 0, 0, 0, 2825, 2597, 1, 0, 0, 0, 2825, 2603, 1, 0, 0, 0, 2825, 2604, 1, 0, 0, 0, 2825, 2605, 1, 0, 0, 0, 2825, 2606, 1, 0, 0, 0, 2825, 2607, 1, 0, 0, 0, 2825, 2621, 1, 0, 0, 0, 2825, 2628, 1, 0, 0, 0, 2825, 2639, 1, 0, 0, 0, 2825, 2648, 1, 0, 0, 0, 2825, 2655, 1, 0, 0, 0, 2825, 2667, 1, 0, 0, 0, 2825, 2671, 1, 0, 0, 0, 2825, 2684, 1, 0, 0, 0, 2825, 2695, 1, 0, 0, 0, 2825, 2716, 1, 0, 0, 0, 2825, 2755, 1, 0, 0, 0, 2825, 2796, 1, 0, 0, 0, 2826, 2837, 1, 0, 0, 0, 2827, 2828, 10, 25, 0, 0, 2828, 2829, 5, 8, 0, 0, 2829, 2830, 3, 164, 82, 0, 2830, 2831, 5, 9, 0, 0, 2831, 2836, 1, 0, 0, 0, 2832, 2833, 10, 23, 0, 0, 2833, 2834, 5, 4, 0, 0, 2834, 2836, 3, 320, 160, 0, 2835, 2827, 1, 0, 0, 0, 2835, 2832, 1, 0, 0, 0, 2836, 2839, 1, 0, 0, 0, 2837, 2835, 1, 0, 0, 0, 2837, 2838, 1, 0, 0, 0, 2838, 167, 1, 0, 0, 0, 2839, 2837, 1, 0, 0, 0, 2840, 2841, 3, 170, 85, 0, 2841, 2842, 5, 3, 0, 0, 2842, 2845, 3, 190, 95, 0, 2843, 2844, 5, 28, 0, 0, 2844, 2846, 3, 320, 160, 0, 2845, 2843, 1, 0, 0, 0, 2845, 2846, 1, 0, 0, 0, 2846, 2856, 1, 0, 0, 0, 2847, 2848, 5, 204, 0, 0, 2848, 2853, 3, 174, 87, 0, 2849, 2850, 5, 3, 0, 0, 2850, 2852, 3, 174, 87, 0, 2851, 2849, 1, 0, 0, 0, 2852, 2855, 1, 0, 0, 0, 2853, 2851, 1, 0, 0, 0, 2853, 2854, 1, 0, 0, 0, 2854, 2857, 1, 0, 0, 0, 2855, 2853, 1, 0, 0, 0, 2856, 2847, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 169, 1, 0, 0, 0, 2858, 2861, 3, 158, 79, 0, 2859, 2860, 5, 105, 0, 0, 2860, 2862, 3, 172, 86, 0, 2861, 2859, 1, 0, 0, 0, 2861, 2862, 1, 0, 0, 0, 2862, 171, 1, 0, 0, 0, 2863, 2866, 5, 138, 0, 0, 2864, 2865, 5, 88, 0, 0, 2865, 2867, 7, 20, 0, 0, 2866, 2864, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 173, 1, 0, 0, 0, 2868, 2869, 3, 170, 85, 0, 2869, 2870, 5, 28, 0, 0, 2870, 2871, 3, 320, 160, 0, 2871, 175, 1, 0, 0, 0, 2872, 2873, 7, 21, 0, 0, 2873, 177, 1, 0, 0, 0, 2874, 2879, 5, 90, 0, 0, 2875, 2879, 5, 184, 0, 0, 2876, 2877, 5, 71, 0, 0, 2877, 2879, 3, 158, 79, 0, 2878, 2874, 1, 0, 0, 0, 2878, 2875, 1, 0, 0, 0, 2878, 2876, 1, 0, 0, 0, 2879, 179, 1, 0, 0, 0, 2880, 2882, 5, 307, 0, 0, 2881, 2883, 5, 27, 0, 0, 2882, 2881, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2892, 1, 0, 0, 0, 2884, 2886, 5, 305, 0, 0, 2885, 2887, 7, 22, 0, 0, 2886, 2885, 1, 0, 0, 0, 2886, 2887, 1, 0, 0, 0, 2887, 2889, 1, 0, 0, 0, 2888, 2890, 5, 27, 0, 0, 2889, 2888, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2892, 1, 0, 0, 0, 2891, 2880, 1, 0, 0, 0, 2891, 2884, 1, 0, 0, 0, 2892, 181, 1, 0, 0, 0, 2893, 2900, 5, 90, 0, 0, 2894, 2900, 5, 184, 0, 0, 2895, 2896, 5, 86, 0, 0, 2896, 2900, 5, 27, 0, 0, 2897, 2898, 5, 86, 0, 0, 2898, 2900, 5, 187, 0, 0, 2899, 2893, 1, 0, 0, 0, 2899, 2894, 1, 0, 0, 0, 2899, 2895, 1, 0, 0, 0, 2899, 2897, 1, 0, 0, 0, 2900, 183, 1, 0, 0, 0, 2901, 2903, 5, 146, 0, 0, 2902, 2901, 1, 0, 0, 0, 2902, 2903, 1, 0, 0, 0, 2903, 2904, 1, 0, 0, 0, 2904, 2905, 3, 158, 79, 0, 2905, 2906, 5, 296, 0, 0, 2906, 2907, 3, 170, 85, 0, 2907, 2913, 1, 0, 0, 0, 2908, 2909, 3, 158, 79, 0, 2909, 2910, 5, 10, 0, 0, 2910, 2911, 3, 170, 85, 0, 2911, 2913, 1, 0, 0, 0, 2912, 2902, 1, 0, 0, 0, 2912, 2908, 1, 0, 0, 0, 2913, 185, 1, 0, 0, 0, 2914, 2915, 7, 23, 0, 0, 2915, 187, 1, 0, 0, 0, 2916, 2917, 5, 121, 0, 0, 2917, 2921, 5, 186, 0, 0, 2918, 2919, 5, 229, 0, 0, 2919, 2921, 5, 186, 0, 0, 2920, 2916, 1, 0, 0, 0, 2920, 2918, 1, 0, 0, 0, 2921, 189, 1, 0, 0, 0, 2922, 2929, 5, 327, 0, 0, 2923, 2926, 5, 328, 0, 0, 2924, 2925, 5, 278, 0, 0, 2925, 2927, 5, 327, 0, 0, 2926, 2924, 1, 0, 0, 0, 2926, 2927, 1, 0, 0, 0, 2927, 2929, 1, 0, 0, 0, 2928, 2922, 1, 0, 0, 0, 2928, 2923, 1, 0, 0, 0, 2929, 191, 1, 0, 0, 0, 2930, 2931, 5, 268, 0, 0, 2931, 2932, 5, 312, 0, 0, 2932, 2937, 3, 200, 100, 0, 2933, 2934, 5, 268, 0, 0, 2934, 2935, 5, 312, 0, 0, 2935, 2937, 3, 190, 95, 0, 2936, 2930, 1, 0, 0, 0, 2936, 2933, 1, 0, 0, 0, 2937, 193, 1, 0, 0, 0, 2938, 2939, 7, 24, 0, 0, 2939, 195, 1, 0, 0, 0, 2940, 2941, 7, 25, 0, 0, 2941, 197, 1, 0, 0, 0, 2942, 2943, 7, 26, 0, 0, 2943, 199, 1, 0, 0, 0, 2944, 2946, 5, 130, 0, 0, 2945, 2947, 7, 18, 0, 0, 2946, 2945, 1, 0, 0, 0, 2946, 2947, 1, 0, 0, 0, 2947, 2948, 1, 0, 0, 0, 2948, 2949, 3, 190, 95, 0, 2949, 2952, 3, 202, 101, 0, 2950, 2951, 5, 270, 0, 0, 2951, 2953, 3, 202, 101, 0, 2952, 2950, 1, 0, 0, 0, 2952, 2953, 1, 0, 0, 0, 2953, 201, 1, 0, 0, 0, 2954, 2955, 7, 27, 0, 0, 2955, 203, 1, 0, 0, 0, 2956, 2957, 7, 28, 0, 0, 2957, 205, 1, 0, 0, 0, 2958, 2959, 6, 103, -1, 0, 2959, 2960, 5, 240, 0, 0, 2960, 2961, 5, 1, 0, 0, 2961, 2966, 3, 208, 104, 0, 2962, 2963, 5, 3, 0, 0, 2963, 2965, 3, 208, 104, 0, 2964, 2962, 1, 0, 0, 0, 2965, 2968, 1, 0, 0, 0, 2966, 2964, 1, 0, 0, 0, 2966, 2967, 1, 0, 0, 0, 2967, 2969, 1, 0, 0, 0, 2968, 2966, 1, 0, 0, 0, 2969, 2970, 5, 2, 0, 0, 2970, 3030, 1, 0, 0, 0, 2971, 2972, 5, 130, 0, 0, 2972, 2975, 3, 202, 101, 0, 2973, 2974, 5, 270, 0, 0, 2974, 2976, 3, 202, 101, 0, 2975, 2973, 1, 0, 0, 0, 2975, 2976, 1, 0, 0, 0, 2976, 3030, 1, 0, 0, 0, 2977, 2982, 5, 269, 0, 0, 2978, 2979, 5, 1, 0, 0, 2979, 2980, 3, 210, 105, 0, 2980, 2981, 5, 2, 0, 0, 2981, 2983, 1, 0, 0, 0, 2982, 2978, 1, 0, 0, 0, 2982, 2983, 1, 0, 0, 0, 2983, 2987, 1, 0, 0, 0, 2984, 2985, 7, 29, 0, 0, 2985, 2986, 5, 268, 0, 0, 2986, 2988, 5, 312, 0, 0, 2987, 2984, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 3030, 1, 0, 0, 0, 2989, 2994, 5, 268, 0, 0, 2990, 2991, 5, 1, 0, 0, 2991, 2992, 3, 210, 105, 0, 2992, 2993, 5, 2, 0, 0, 2993, 2995, 1, 0, 0, 0, 2994, 2990, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 2999, 1, 0, 0, 0, 2996, 2997, 7, 29, 0, 0, 2997, 2998, 5, 268, 0, 0, 2998, 3000, 5, 312, 0, 0, 2999, 2996, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 3030, 1, 0, 0, 0, 3001, 3002, 5, 83, 0, 0, 3002, 3030, 5, 214, 0, 0, 3003, 3004, 5, 27, 0, 0, 3004, 3005, 5, 315, 0, 0, 3005, 3006, 3, 206, 103, 0, 3006, 3007, 5, 317, 0, 0, 3007, 3030, 1, 0, 0, 0, 3008, 3009, 5, 163, 0, 0, 3009, 3010, 5, 315, 0, 0, 3010, 3011, 3, 206, 103, 0, 3011, 3012, 5, 3, 0, 0, 3012, 3013, 3, 206, 103, 0, 3013, 3014, 5, 317, 0, 0, 3014, 3030, 1, 0, 0, 0, 3015, 3027, 3, 320, 160, 0, 3016, 3017, 5, 1, 0, 0, 3017, 3022, 3, 210, 105, 0, 3018, 3019, 5, 3, 0, 0, 3019, 3021, 3, 210, 105, 0, 3020, 3018, 1, 0, 0, 0, 3021, 3024, 1, 0, 0, 0, 3022, 3020, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3025, 1, 0, 0, 0, 3024, 3022, 1, 0, 0, 0, 3025, 3026, 5, 2, 0, 0, 3026, 3028, 1, 0, 0, 0, 3027, 3016, 1, 0, 0, 0, 3027, 3028, 1, 0, 0, 0, 3028, 3030, 1, 0, 0, 0, 3029, 2958, 1, 0, 0, 0, 3029, 2971, 1, 0, 0, 0, 3029, 2977, 1, 0, 0, 0, 3029, 2989, 1, 0, 0, 0, 3029, 3001, 1, 0, 0, 0, 3029, 3003, 1, 0, 0, 0, 3029, 3008, 1, 0, 0, 0, 3029, 3015, 1, 0, 0, 0, 3030, 3040, 1, 0, 0, 0, 3031, 3032, 10, 2, 0, 0, 3032, 3036, 5, 27, 0, 0, 3033, 3034, 5, 8, 0, 0, 3034, 3035, 5, 330, 0, 0, 3035, 3037, 5, 9, 0, 0, 3036, 3033, 1, 0, 0, 0, 3036, 3037, 1, 0, 0, 0, 3037, 3039, 1, 0, 0, 0, 3038, 3031, 1, 0, 0, 0, 3039, 3042, 1, 0, 0, 0, 3040, 3038, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 207, 1, 0, 0, 0, 3042, 3040, 1, 0, 0, 0, 3043, 3048, 3, 206, 103, 0, 3044, 3045, 3, 320, 160, 0, 3045, 3046, 3, 206, 103, 0, 3046, 3048, 1, 0, 0, 0, 3047, 3043, 1, 0, 0, 0, 3047, 3044, 1, 0, 0, 0, 3048, 209, 1, 0, 0, 0, 3049, 3052, 5, 330, 0, 0, 3050, 3052, 3, 206, 103, 0, 3051, 3049, 1, 0, 0, 0, 3051, 3050, 1, 0, 0, 0, 3052, 211, 1, 0, 0, 0, 3053, 3054, 5, 301, 0, 0, 3054, 3055, 3, 158, 79, 0, 3055, 3056, 5, 266, 0, 0, 3056, 3057, 3, 158, 79, 0, 3057, 213, 1, 0, 0, 0, 3058, 3059, 5, 100, 0, 0, 3059, 3060, 5, 1, 0, 0, 3060, 3061, 3, 54, 27, 0, 3061, 3062, 5, 2, 0, 0, 3062, 215, 1, 0, 0, 0, 3063, 3064, 5, 301, 0, 0, 3064, 3067, 5, 165, 0, 0, 3065, 3066, 5, 25, 0, 0, 3066, 3068, 3, 158, 79, 0, 3067, 3065, 1, 0, 0, 0, 3067, 3068, 1, 0, 0, 0, 3068, 3069, 1, 0, 0, 0, 3069, 3070, 5, 266, 0, 0, 3070, 3071, 5, 288, 0, 0, 3071, 3072, 5, 252, 0, 0, 3072, 3073, 3, 320, 160, 0, 3073, 3074, 5, 313, 0, 0, 3074, 3082, 3, 158, 79, 0, 3075, 3076, 5, 3, 0, 0, 3076, 3077, 3, 320, 160, 0, 3077, 3078, 5, 313, 0, 0, 3078, 3079, 3, 158, 79, 0, 3079, 3081, 1, 0, 0, 0, 3080, 3075, 1, 0, 0, 0, 3081, 3084, 1, 0, 0, 0, 3082, 3080, 1, 0, 0, 0, 3082, 3083, 1, 0, 0, 0, 3083, 3128, 1, 0, 0, 0, 3084, 3082, 1, 0, 0, 0, 3085, 3086, 5, 301, 0, 0, 3086, 3089, 5, 165, 0, 0, 3087, 3088, 5, 25, 0, 0, 3088, 3090, 3, 158, 79, 0, 3089, 3087, 1, 0, 0, 0, 3089, 3090, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3092, 5, 266, 0, 0, 3092, 3128, 5, 74, 0, 0, 3093, 3094, 5, 301, 0, 0, 3094, 3095, 5, 183, 0, 0, 3095, 3098, 5, 165, 0, 0, 3096, 3097, 5, 25, 0, 0, 3097, 3099, 3, 158, 79, 0, 3098, 3096, 1, 0, 0, 0, 3098, 3099, 1, 0, 0, 0, 3099, 3100, 1, 0, 0, 0, 3100, 3101, 5, 266, 0, 0, 3101, 3113, 5, 128, 0, 0, 3102, 3103, 5, 1, 0, 0, 3103, 3108, 3, 320, 160, 0, 3104, 3105, 5, 3, 0, 0, 3105, 3107, 3, 320, 160, 0, 3106, 3104, 1, 0, 0, 0, 3107, 3110, 1, 0, 0, 0, 3108, 3106, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 3111, 1, 0, 0, 0, 3110, 3108, 1, 0, 0, 0, 3111, 3112, 5, 2, 0, 0, 3112, 3114, 1, 0, 0, 0, 3113, 3102, 1, 0, 0, 0, 3113, 3114, 1, 0, 0, 0, 3114, 3115, 1, 0, 0, 0, 3115, 3116, 5, 297, 0, 0, 3116, 3117, 5, 1, 0, 0, 3117, 3122, 3, 158, 79, 0, 3118, 3119, 5, 3, 0, 0, 3119, 3121, 3, 158, 79, 0, 3120, 3118, 1, 0, 0, 0, 3121, 3124, 1, 0, 0, 0, 3122, 3120, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 3125, 1, 0, 0, 0, 3124, 3122, 1, 0, 0, 0, 3125, 3126, 5, 2, 0, 0, 3126, 3128, 1, 0, 0, 0, 3127, 3063, 1, 0, 0, 0, 3127, 3085, 1, 0, 0, 0, 3127, 3093, 1, 0, 0, 0, 3128, 217, 1, 0, 0, 0, 3129, 3135, 5, 200, 0, 0, 3130, 3136, 3, 320, 160, 0, 3131, 3132, 5, 1, 0, 0, 3132, 3133, 3, 72, 36, 0, 3133, 3134, 5, 2, 0, 0, 3134, 3136, 1, 0, 0, 0, 3135, 3130, 1, 0, 0, 0, 3135, 3131, 1, 0, 0, 0, 3136, 219, 1, 0, 0, 0, 3137, 3138, 5, 169, 0, 0, 3138, 3143, 3, 110, 55, 0, 3139, 3140, 5, 3, 0, 0, 3140, 3142, 3, 110, 55, 0, 3141, 3139, 1, 0, 0, 0, 3142, 3145, 1, 0, 0, 0, 3143, 3141, 1, 0, 0, 0, 3143, 3144, 1, 0, 0, 0, 3144, 3147, 1, 0, 0, 0, 3145, 3143, 1, 0, 0, 0, 3146, 3137, 1, 0, 0, 0, 3146, 3147, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3152, 3, 222, 111, 0, 3149, 3150, 5, 21, 0, 0, 3150, 3151, 5, 164, 0, 0, 3151, 3153, 3, 116, 58, 0, 3152, 3149, 1, 0, 0, 0, 3152, 3153, 1, 0, 0, 0, 3153, 3155, 1, 0, 0, 0, 3154, 3156, 7, 13, 0, 0, 3155, 3154, 1, 0, 0, 0, 3155, 3156, 1, 0, 0, 0, 3156, 3162, 1, 0, 0, 0, 3157, 3158, 5, 207, 0, 0, 3158, 3159, 5, 1, 0, 0, 3159, 3160, 3, 226, 113, 0, 3160, 3161, 5, 2, 0, 0, 3161, 3163, 1, 0, 0, 0, 3162, 3157, 1, 0, 0, 0, 3162, 3163, 1, 0, 0, 0, 3163, 3173, 1, 0, 0, 0, 3164, 3165, 5, 258, 0, 0, 3165, 3170, 3, 118, 59, 0, 3166, 3167, 5, 3, 0, 0, 3167, 3169, 3, 118, 59, 0, 3168, 3166, 1, 0, 0, 0, 3169, 3172, 1, 0, 0, 0, 3170, 3168, 1, 0, 0, 0, 3170, 3171, 1, 0, 0, 0, 3171, 3174, 1, 0, 0, 0, 3172, 3170, 1, 0, 0, 0, 3173, 3164, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 3184, 1, 0, 0, 0, 3175, 3176, 5, 72, 0, 0, 3176, 3181, 3, 120, 60, 0, 3177, 3178, 5, 3, 0, 0, 3178, 3180, 3, 120, 60, 0, 3179, 3177, 1, 0, 0, 0, 3180, 3183, 1, 0, 0, 0, 3181, 3179, 1, 0, 0, 0, 3181, 3182, 1, 0, 0, 0, 3182, 3185, 1, 0, 0, 0, 3183, 3181, 1, 0, 0, 0, 3184, 3175, 1, 0, 0, 0, 3184, 3185, 1, 0, 0, 0, 3185, 221, 1, 0, 0, 0, 3186, 3187, 5, 220, 0, 0, 3187, 3211, 3, 224, 112, 0, 3188, 3189, 5, 241, 0, 0, 3189, 3211, 3, 224, 112, 0, 3190, 3191, 5, 117, 0, 0, 3191, 3211, 3, 224, 112, 0, 3192, 3193, 5, 220, 0, 0, 3193, 3194, 5, 34, 0, 0, 3194, 3195, 3, 224, 112, 0, 3195, 3196, 5, 25, 0, 0, 3196, 3197, 3, 224, 112, 0, 3197, 3211, 1, 0, 0, 0, 3198, 3199, 5, 241, 0, 0, 3199, 3200, 5, 34, 0, 0, 3200, 3201, 3, 224, 112, 0, 3201, 3202, 5, 25, 0, 0, 3202, 3203, 3, 224, 112, 0, 3203, 3211, 1, 0, 0, 0, 3204, 3205, 5, 117, 0, 0, 3205, 3206, 5, 34, 0, 0, 3206, 3207, 3, 224, 112, 0, 3207, 3208, 5, 25, 0, 0, 3208, 3209, 3, 224, 112, 0, 3209, 3211, 1, 0, 0, 0, 3210, 3186, 1, 0, 0, 0, 3210, 3188, 1, 0, 0, 0, 3210, 3190, 1, 0, 0, 0, 3210, 3192, 1, 0, 0, 0, 3210, 3198, 1, 0, 0, 0, 3210, 3204, 1, 0, 0, 0, 3211, 223, 1, 0, 0, 0, 3212, 3213, 5, 279, 0, 0, 3213, 3222, 5, 213, 0, 0, 3214, 3215, 5, 279, 0, 0, 3215, 3222, 5, 103, 0, 0, 3216, 3217, 5, 57, 0, 0, 3217, 3222, 5, 240, 0, 0, 3218, 3219, 3, 158, 79, 0, 3219, 3220, 7, 30, 0, 0, 3220, 3222, 1, 0, 0, 0, 3221, 3212, 1, 0, 0, 0, 3221, 3214, 1, 0, 0, 0, 3221, 3216, 1, 0, 0, 0, 3221, 3218, 1, 0, 0, 0, 3222, 225, 1, 0, 0, 0, 3223, 3224, 6, 113, -1, 0, 3224, 3226, 3, 228, 114, 0, 3225, 3227, 3, 230, 115, 0, 3226, 3225, 1, 0, 0, 0, 3226, 3227, 1, 0, 0, 0, 3227, 3235, 1, 0, 0, 0, 3228, 3229, 10, 2, 0, 0, 3229, 3234, 3, 226, 113, 3, 3230, 3231, 10, 1, 0, 0, 3231, 3232, 5, 11, 0, 0, 3232, 3234, 3, 226, 113, 2, 3233, 3228, 1, 0, 0, 0, 3233, 3230, 1, 0, 0, 0, 3234, 3237, 1, 0, 0, 0, 3235, 3233, 1, 0, 0, 0, 3235, 3236, 1, 0, 0, 0, 3236, 227, 1, 0, 0, 0, 3237, 3235, 1, 0, 0, 0, 3238, 3264, 3, 320, 160, 0, 3239, 3240, 5, 1, 0, 0, 3240, 3264, 5, 2, 0, 0, 3241, 3242, 5, 210, 0, 0, 3242, 3243, 5, 1, 0, 0, 3243, 3248, 3, 226, 113, 0, 3244, 3245, 5, 3, 0, 0, 3245, 3247, 3, 226, 113, 0, 3246, 3244, 1, 0, 0, 0, 3247, 3250, 1, 0, 0, 0, 3248, 3246, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3251, 1, 0, 0, 0, 3250, 3248, 1, 0, 0, 0, 3251, 3252, 5, 2, 0, 0, 3252, 3264, 1, 0, 0, 0, 3253, 3254, 5, 1, 0, 0, 3254, 3255, 3, 226, 113, 0, 3255, 3256, 5, 2, 0, 0, 3256, 3264, 1, 0, 0, 0, 3257, 3264, 5, 12, 0, 0, 3258, 3264, 5, 13, 0, 0, 3259, 3260, 5, 14, 0, 0, 3260, 3261, 3, 226, 113, 0, 3261, 3262, 5, 15, 0, 0, 3262, 3264, 1, 0, 0, 0, 3263, 3238, 1, 0, 0, 0, 3263, 3239, 1, 0, 0, 0, 3263, 3241, 1, 0, 0, 0, 3263, 3253, 1, 0, 0, 0, 3263, 3257, 1, 0, 0, 0, 3263, 3258, 1, 0, 0, 0, 3263, 3259, 1, 0, 0, 0, 3264, 229, 1, 0, 0, 0, 3265, 3267, 5, 321, 0, 0, 3266, 3268, 5, 325, 0, 0, 3267, 3266, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3296, 1, 0, 0, 0, 3269, 3271, 5, 319, 0, 0, 3270, 3272, 5, 325, 0, 0, 3271, 3270, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3296, 1, 0, 0, 0, 3273, 3275, 5, 325, 0, 0, 3274, 3276, 5, 325, 0, 0, 3275, 3274, 1, 0, 0, 0, 3275, 3276, 1, 0, 0, 0, 3276, 3296, 1, 0, 0, 0, 3277, 3278, 5, 16, 0, 0, 3278, 3279, 5, 330, 0, 0, 3279, 3281, 5, 17, 0, 0, 3280, 3282, 5, 325, 0, 0, 3281, 3280, 1, 0, 0, 0, 3281, 3282, 1, 0, 0, 0, 3282, 3296, 1, 0, 0, 0, 3283, 3285, 5, 16, 0, 0, 3284, 3286, 5, 330, 0, 0, 3285, 3284, 1, 0, 0, 0, 3285, 3286, 1, 0, 0, 0, 3286, 3287, 1, 0, 0, 0, 3287, 3289, 5, 3, 0, 0, 3288, 3290, 5, 330, 0, 0, 3289, 3288, 1, 0, 0, 0, 3289, 3290, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3293, 5, 17, 0, 0, 3292, 3294, 5, 325, 0, 0, 3293, 3292, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3296, 1, 0, 0, 0, 3295, 3265, 1, 0, 0, 0, 3295, 3269, 1, 0, 0, 0, 3295, 3273, 1, 0, 0, 0, 3295, 3277, 1, 0, 0, 0, 3295, 3283, 1, 0, 0, 0, 3296, 231, 1, 0, 0, 0, 3297, 3298, 3, 320, 160, 0, 3298, 3299, 5, 313, 0, 0, 3299, 3300, 3, 158, 79, 0, 3300, 233, 1, 0, 0, 0, 3301, 3302, 5, 105, 0, 0, 3302, 3306, 7, 31, 0, 0, 3303, 3304, 5, 277, 0, 0, 3304, 3306, 7, 32, 0, 0, 3305, 3301, 1, 0, 0, 0, 3305, 3303, 1, 0, 0, 0, 3306, 235, 1, 0, 0, 0, 3307, 3308, 5, 135, 0, 0, 3308, 3309, 5, 154, 0, 0, 3309, 3313, 3, 238, 119, 0, 3310, 3311, 5, 221, 0, 0, 3311, 3313, 7, 33, 0, 0, 3312, 3307, 1, 0, 0, 0, 3312, 3310, 1, 0, 0, 0, 3313, 237, 1, 0, 0, 0, 3314, 3315, 5, 221, 0, 0, 3315, 3322, 5, 280, 0, 0, 3316, 3317, 5, 221, 0, 0, 3317, 3322, 5, 49, 0, 0, 3318, 3319, 5, 226, 0, 0, 3319, 3322, 5, 221, 0, 0, 3320, 3322, 5, 250, 0, 0, 3321, 3314, 1, 0, 0, 0, 3321, 3316, 1, 0, 0, 0, 3321, 3318, 1, 0, 0, 0, 3321, 3320, 1, 0, 0, 0, 3322, 239, 1, 0, 0, 0, 3323, 3329, 3, 158, 79, 0, 3324, 3325, 3, 320, 160, 0, 3325, 3326, 5, 6, 0, 0, 3326, 3327, 3, 158, 79, 0, 3327, 3329, 1, 0, 0, 0, 3328, 3323, 1, 0, 0, 0, 3328, 3324, 1, 0, 0, 0, 3329, 241, 1, 0, 0, 0, 3330, 3331, 3, 320, 160, 0, 3331, 3332, 5, 4, 0, 0, 3332, 3333, 3, 320, 160, 0, 3333, 3336, 1, 0, 0, 0, 3334, 3336, 3, 320, 160, 0, 3335, 3330, 1, 0, 0, 0, 3335, 3334, 1, 0, 0, 0, 3336, 243, 1, 0, 0, 0, 3337, 3342, 3, 242, 121, 0, 3338, 3339, 5, 3, 0, 0, 3339, 3341, 3, 242, 121, 0, 3340, 3338, 1, 0, 0, 0, 3341, 3344, 1, 0, 0, 0, 3342, 3340, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 245, 1, 0, 0, 0, 3344, 3342, 1, 0, 0, 0, 3345, 3346, 5, 108, 0, 0, 3346, 3347, 3, 248, 124, 0, 3347, 3351, 3, 254, 127, 0, 3348, 3350, 3, 256, 128, 0, 3349, 3348, 1, 0, 0, 0, 3350, 3353, 1, 0, 0, 0, 3351, 3349, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3354, 1, 0, 0, 0, 3353, 3351, 1, 0, 0, 0, 3354, 3355, 3, 258, 129, 0, 3355, 247, 1, 0, 0, 0, 3356, 3357, 3, 296, 148, 0, 3357, 3366, 5, 1, 0, 0, 3358, 3363, 3, 252, 126, 0, 3359, 3360, 5, 3, 0, 0, 3360, 3362, 3, 252, 126, 0, 3361, 3359, 1, 0, 0, 0, 3362, 3365, 1, 0, 0, 0, 3363, 3361, 1, 0, 0, 0, 3363, 3364, 1, 0, 0, 0, 3364, 3367, 1, 0, 0, 0, 3365, 3363, 1, 0, 0, 0, 3366, 3358, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3368, 1, 0, 0, 0, 3368, 3369, 5, 2, 0, 0, 3369, 249, 1, 0, 0, 0, 3370, 3371, 3, 294, 147, 0, 3371, 3380, 5, 1, 0, 0, 3372, 3377, 3, 252, 126, 0, 3373, 3374, 5, 3, 0, 0, 3374, 3376, 3, 252, 126, 0, 3375, 3373, 1, 0, 0, 0, 3376, 3379, 1, 0, 0, 0, 3377, 3375, 1, 0, 0, 0, 3377, 3378, 1, 0, 0, 0, 3378, 3381, 1, 0, 0, 0, 3379, 3377, 1, 0, 0, 0, 3380, 3372, 1, 0, 0, 0, 3380, 3381, 1, 0, 0, 0, 3381, 3382, 1, 0, 0, 0, 3382, 3383, 5, 2, 0, 0, 3383, 251, 1, 0, 0, 0, 3384, 3386, 3, 320, 160, 0, 3385, 3384, 1, 0, 0, 0, 3385, 3386, 1, 0, 0, 0, 3386, 3387, 1, 0, 0, 0, 3387, 3388, 3, 206, 103, 0, 3388, 253, 1, 0, 0, 0, 3389, 3390, 5, 233, 0, 0, 3390, 3391, 3, 206, 103, 0, 3391, 255, 1, 0, 0, 0, 3392, 3393, 5, 148, 0, 0, 3393, 3412, 3, 320, 160, 0, 3394, 3396, 5, 183, 0, 0, 3395, 3394, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 3397, 1, 0, 0, 0, 3397, 3412, 5, 79, 0, 0, 3398, 3399, 5, 233, 0, 0, 3399, 3400, 5, 184, 0, 0, 3400, 3401, 5, 191, 0, 0, 3401, 3402, 5, 184, 0, 0, 3402, 3412, 5, 127, 0, 0, 3403, 3404, 5, 38, 0, 0, 3404, 3405, 5, 191, 0, 0, 3405, 3406, 5, 184, 0, 0, 3406, 3412, 5, 127, 0, 0, 3407, 3408, 5, 247, 0, 0, 3408, 3412, 7, 1, 0, 0, 3409, 3410, 5, 47, 0, 0, 3410, 3412, 3, 190, 95, 0, 3411, 3392, 1, 0, 0, 0, 3411, 3395, 1, 0, 0, 0, 3411, 3398, 1, 0, 0, 0, 3411, 3403, 1, 0, 0, 0, 3411, 3407, 1, 0, 0, 0, 3411, 3409, 1, 0, 0, 0, 3412, 257, 1, 0, 0, 0, 3413, 3414, 5, 231, 0, 0, 3414, 3513, 3, 164, 82, 0, 3415, 3416, 5, 252, 0, 0, 3416, 3417, 3, 320, 160, 0, 3417, 3418, 5, 313, 0, 0, 3418, 3419, 3, 158, 79, 0, 3419, 3513, 1, 0, 0, 0, 3420, 3421, 5, 40, 0, 0, 3421, 3423, 3, 158, 79, 0, 3422, 3424, 3, 260, 130, 0, 3423, 3422, 1, 0, 0, 0, 3424, 3425, 1, 0, 0, 0, 3425, 3423, 1, 0, 0, 0, 3425, 3426, 1, 0, 0, 0, 3426, 3428, 1, 0, 0, 0, 3427, 3429, 3, 264, 132, 0, 3428, 3427, 1, 0, 0, 0, 3428, 3429, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3431, 5, 89, 0, 0, 3431, 3432, 5, 40, 0, 0, 3432, 3513, 1, 0, 0, 0, 3433, 3435, 5, 40, 0, 0, 3434, 3436, 3, 260, 130, 0, 3435, 3434, 1, 0, 0, 0, 3436, 3437, 1, 0, 0, 0, 3437, 3435, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3440, 1, 0, 0, 0, 3439, 3441, 3, 264, 132, 0, 3440, 3439, 1, 0, 0, 0, 3440, 3441, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 3443, 5, 89, 0, 0, 3443, 3444, 5, 40, 0, 0, 3444, 3513, 1, 0, 0, 0, 3445, 3446, 5, 120, 0, 0, 3446, 3447, 3, 158, 79, 0, 3447, 3448, 5, 266, 0, 0, 3448, 3452, 3, 268, 134, 0, 3449, 3451, 3, 262, 131, 0, 3450, 3449, 1, 0, 0, 0, 3451, 3454, 1, 0, 0, 0, 3452, 3450, 1, 0, 0, 0, 3452, 3453, 1, 0, 0, 0, 3453, 3456, 1, 0, 0, 0, 3454, 3452, 1, 0, 0, 0, 3455, 3457, 3, 264, 132, 0, 3456, 3455, 1, 0, 0, 0, 3456, 3457, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3459, 5, 89, 0, 0, 3459, 3460, 5, 120, 0, 0, 3460, 3513, 1, 0, 0, 0, 3461, 3462, 5, 136, 0, 0, 3462, 3513, 3, 320, 160, 0, 3463, 3464, 5, 152, 0, 0, 3464, 3513, 3, 320, 160, 0, 3465, 3471, 5, 32, 0, 0, 3466, 3467, 3, 266, 133, 0, 3467, 3468, 5, 326, 0, 0, 3468, 3470, 1, 0, 0, 0, 3469, 3466, 1, 0, 0, 0, 3470, 3473, 1, 0, 0, 0, 3471, 3469, 1, 0, 0, 0, 3471, 3472, 1, 0, 0, 0, 3472, 3475, 1, 0, 0, 0, 3473, 3471, 1, 0, 0, 0, 3474, 3476, 3, 268, 134, 0, 3475, 3474, 1, 0, 0, 0, 3475, 3476, 1, 0, 0, 0, 3476, 3477, 1, 0, 0, 0, 3477, 3513, 5, 89, 0, 0, 3478, 3479, 3, 320, 160, 0, 3479, 3480, 5, 10, 0, 0, 3480, 3482, 1, 0, 0, 0, 3481, 3478, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3483, 1, 0, 0, 0, 3483, 3484, 5, 162, 0, 0, 3484, 3485, 3, 268, 134, 0, 3485, 3486, 5, 89, 0, 0, 3486, 3487, 5, 162, 0, 0, 3487, 3513, 1, 0, 0, 0, 3488, 3489, 3, 320, 160, 0, 3489, 3490, 5, 10, 0, 0, 3490, 3492, 1, 0, 0, 0, 3491, 3488, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 3493, 1, 0, 0, 0, 3493, 3494, 5, 303, 0, 0, 3494, 3495, 3, 158, 79, 0, 3495, 3496, 5, 82, 0, 0, 3496, 3497, 3, 268, 134, 0, 3497, 3498, 5, 89, 0, 0, 3498, 3499, 5, 303, 0, 0, 3499, 3513, 1, 0, 0, 0, 3500, 3501, 3, 320, 160, 0, 3501, 3502, 5, 10, 0, 0, 3502, 3504, 1, 0, 0, 0, 3503, 3500, 1, 0, 0, 0, 3503, 3504, 1, 0, 0, 0, 3504, 3505, 1, 0, 0, 0, 3505, 3506, 5, 225, 0, 0, 3506, 3507, 3, 268, 134, 0, 3507, 3508, 5, 287, 0, 0, 3508, 3509, 3, 158, 79, 0, 3509, 3510, 5, 89, 0, 0, 3510, 3511, 5, 225, 0, 0, 3511, 3513, 1, 0, 0, 0, 3512, 3413, 1, 0, 0, 0, 3512, 3415, 1, 0, 0, 0, 3512, 3420, 1, 0, 0, 0, 3512, 3433, 1, 0, 0, 0, 3512, 3445, 1, 0, 0, 0, 3512, 3461, 1, 0, 0, 0, 3512, 3463, 1, 0, 0, 0, 3512, 3465, 1, 0, 0, 0, 3512, 3481, 1, 0, 0, 0, 3512, 3491, 1, 0, 0, 0, 3512, 3503, 1, 0, 0, 0, 3513, 259, 1, 0, 0, 0, 3514, 3515, 5, 301, 0, 0, 3515, 3516, 3, 158, 79, 0, 3516, 3517, 5, 266, 0, 0, 3517, 3518, 3, 268, 134, 0, 3518, 261, 1, 0, 0, 0, 3519, 3520, 5, 87, 0, 0, 3520, 3521, 3, 158, 79, 0, 3521, 3522, 5, 266, 0, 0, 3522, 3523, 3, 268, 134, 0, 3523, 263, 1, 0, 0, 0, 3524, 3525, 5, 85, 0, 0, 3525, 3526, 3, 268, 134, 0, 3526, 265, 1, 0, 0, 0, 3527, 3528, 5, 70, 0, 0, 3528, 3533, 3, 320, 160, 0, 3529, 3530, 5, 3, 0, 0, 3530, 3532, 3, 320, 160, 0, 3531, 3529, 1, 0, 0, 0, 3532, 3535, 1, 0, 0, 0, 3533, 3531, 1, 0, 0, 0, 3533, 3534, 1, 0, 0, 0, 3534, 3536, 1, 0, 0, 0, 3535, 3533, 1, 0, 0, 0, 3536, 3539, 3, 206, 103, 0, 3537, 3538, 5, 71, 0, 0, 3538, 3540, 3, 164, 82, 0, 3539, 3537, 1, 0, 0, 0, 3539, 3540, 1, 0, 0, 0, 3540, 267, 1, 0, 0, 0, 3541, 3542, 3, 258, 129, 0, 3542, 3543, 5, 326, 0, 0, 3543, 3545, 1, 0, 0, 0, 3544, 3541, 1, 0, 0, 0, 3545, 3546, 1, 0, 0, 0, 3546, 3544, 1, 0, 0, 0, 3546, 3547, 1, 0, 0, 0, 3547, 269, 1, 0, 0, 0, 3548, 3555, 5, 54, 0, 0, 3549, 3555, 5, 249, 0, 0, 3550, 3555, 5, 74, 0, 0, 3551, 3555, 5, 128, 0, 0, 3552, 3555, 5, 288, 0, 0, 3553, 3555, 3, 320, 160, 0, 3554, 3548, 1, 0, 0, 0, 3554, 3549, 1, 0, 0, 0, 3554, 3550, 1, 0, 0, 0, 3554, 3551, 1, 0, 0, 0, 3554, 3552, 1, 0, 0, 0, 3554, 3553, 1, 0, 0, 0, 3555, 271, 1, 0, 0, 0, 3556, 3560, 5, 261, 0, 0, 3557, 3560, 5, 244, 0, 0, 3558, 3560, 3, 320, 160, 0, 3559, 3556, 1, 0, 0, 0, 3559, 3557, 1, 0, 0, 0, 3559, 3558, 1, 0, 0, 0, 3560, 273, 1, 0, 0, 0, 3561, 3563, 3, 272, 136, 0, 3562, 3561, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 3564, 1, 0, 0, 0, 3564, 3565, 3, 306, 153, 0, 3565, 275, 1, 0, 0, 0, 3566, 3569, 3, 278, 139, 0, 3567, 3569, 3, 282, 141, 0, 3568, 3566, 1, 0, 0, 0, 3568, 3567, 1, 0, 0, 0, 3569, 277, 1, 0, 0, 0, 3570, 3582, 3, 320, 160, 0, 3571, 3572, 3, 320, 160, 0, 3572, 3573, 5, 4, 0, 0, 3573, 3574, 3, 320, 160, 0, 3574, 3582, 1, 0, 0, 0, 3575, 3576, 3, 320, 160, 0, 3576, 3577, 5, 4, 0, 0, 3577, 3578, 3, 320, 160, 0, 3578, 3579, 5, 4, 0, 0, 3579, 3580, 3, 320, 160, 0, 3580, 3582, 1, 0, 0, 0, 3581, 3570, 1, 0, 0, 0, 3581, 3571, 1, 0, 0, 0, 3581, 3575, 1, 0, 0, 0, 3582, 279, 1, 0, 0, 0, 3583, 3595, 3, 320, 160, 0, 3584, 3585, 3, 320, 160, 0, 3585, 3586, 5, 4, 0, 0, 3586, 3587, 3, 320, 160, 0, 3587, 3595, 1, 0, 0, 0, 3588, 3589, 3, 320, 160, 0, 3589, 3590, 5, 4, 0, 0, 3590, 3591, 3, 320, 160, 0, 3591, 3592, 5, 4, 0, 0, 3592, 3593, 3, 320, 160, 0, 3593, 3595, 1, 0, 0, 0, 3594, 3583, 1, 0, 0, 0, 3594, 3584, 1, 0, 0, 0, 3594, 3588, 1, 0, 0, 0, 3595, 281, 1, 0, 0, 0, 3596, 3608, 3, 320, 160, 0, 3597, 3598, 3, 320, 160, 0, 3598, 3599, 5, 4, 0, 0, 3599, 3600, 3, 320, 160, 0, 3600, 3608, 1, 0, 0, 0, 3601, 3602, 3, 320, 160, 0, 3602, 3603, 5, 4, 0, 0, 3603, 3604, 3, 320, 160, 0, 3604, 3605, 5, 4, 0, 0, 3605, 3606, 3, 320, 160, 0, 3606, 3608, 1, 0, 0, 0, 3607, 3596, 1, 0, 0, 0, 3607, 3597, 1, 0, 0, 0, 3607, 3601, 1, 0, 0, 0, 3608, 283, 1, 0, 0, 0, 3609, 3621, 3, 320, 160, 0, 3610, 3611, 3, 320, 160, 0, 3611, 3612, 5, 4, 0, 0, 3612, 3613, 3, 320, 160, 0, 3613, 3621, 1, 0, 0, 0, 3614, 3615, 3, 320, 160, 0, 3615, 3616, 5, 4, 0, 0, 3616, 3617, 3, 320, 160, 0, 3617, 3618, 5, 4, 0, 0, 3618, 3619, 3, 320, 160, 0, 3619, 3621, 1, 0, 0, 0, 3620, 3609, 1, 0, 0, 0, 3620, 3610, 1, 0, 0, 0, 3620, 3614, 1, 0, 0, 0, 3621, 285, 1, 0, 0, 0, 3622, 3628, 3, 320, 160, 0, 3623, 3624, 3, 320, 160, 0, 3624, 3625, 5, 4, 0, 0, 3625, 3626, 3, 320, 160, 0, 3626, 3628, 1, 0, 0, 0, 3627, 3622, 1, 0, 0, 0, 3627, 3623, 1, 0, 0, 0, 3628, 287, 1, 0, 0, 0, 3629, 3635, 3, 320, 160, 0, 3630, 3631, 3, 320, 160, 0, 3631, 3632, 5, 4, 0, 0, 3632, 3633, 3, 320, 160, 0, 3633, 3635, 1, 0, 0, 0, 3634, 3629, 1, 0, 0, 0, 3634, 3630, 1, 0, 0, 0, 3635, 289, 1, 0, 0, 0, 3636, 3637, 3, 320, 160, 0, 3637, 291, 1, 0, 0, 0, 3638, 3639, 3, 320, 160, 0, 3639, 293, 1, 0, 0, 0, 3640, 3641, 3, 306, 153, 0, 3641, 295, 1, 0, 0, 0, 3642, 3643, 3, 306, 153, 0, 3643, 297, 1, 0, 0, 0, 3644, 3647, 3, 306, 153, 0, 3645, 3647, 4, 149, 16, 0, 3646, 3644, 1, 0, 0, 0, 3646, 3645, 1, 0, 0, 0, 3647, 299, 1, 0, 0, 0, 3648, 3649, 1, 0, 0, 0, 3649, 301, 1, 0, 0, 0, 3650, 3651, 3, 306, 153, 0, 3651, 303, 1, 0, 0, 0, 3652, 3653, 3, 320, 160, 0, 3653, 305, 1, 0, 0, 0, 3654, 3659, 3, 320, 160, 0, 3655, 3656, 5, 4, 0, 0, 3656, 3658, 3, 320, 160, 0, 3657, 3655, 1, 0, 0, 0, 3658, 3661, 1, 0, 0, 0, 3659, 3657, 1, 0, 0, 0, 3659, 3660, 1, 0, 0, 0, 3660, 307, 1, 0, 0, 0, 3661, 3659, 1, 0, 0, 0, 3662, 3663, 5, 104, 0, 0, 3663, 3664, 3, 310, 155, 0, 3664, 3665, 5, 28, 0, 0, 3665, 3666, 5, 188, 0, 0, 3666, 3667, 3, 164, 82, 0, 3667, 309, 1, 0, 0, 0, 3668, 3669, 7, 34, 0, 0, 3669, 311, 1, 0, 0, 0, 3670, 3674, 3, 314, 157, 0, 3671, 3674, 5, 65, 0, 0, 3672, 3674, 5, 61, 0, 0, 3673, 3670, 1, 0, 0, 0, 3673, 3671, 1, 0, 0, 0, 3673, 3672, 1, 0, 0, 0, 3674, 313, 1, 0, 0, 0, 3675, 3681, 3, 320, 160, 0, 3676, 3677, 5, 290, 0, 0, 3677, 3681, 3, 320, 160, 0, 3678, 3679, 5, 236, 0, 0, 3679, 3681, 3, 320, 160, 0, 3680, 3675, 1, 0, 0, 0, 3680, 3676, 1, 0, 0, 0, 3680, 3678, 1, 0, 0, 0, 3681, 315, 1, 0, 0, 0, 3682, 3687, 3, 320, 160, 0, 3683, 3684, 5, 3, 0, 0, 3684, 3686, 3, 320, 160, 0, 3685, 3683, 1, 0, 0, 0, 3686, 3689, 1, 0, 0, 0, 3687, 3685, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 317, 1, 0, 0, 0, 3689, 3687, 1, 0, 0, 0, 3690, 3698, 5, 54, 0, 0, 3691, 3698, 5, 249, 0, 0, 3692, 3698, 5, 74, 0, 0, 3693, 3698, 5, 128, 0, 0, 3694, 3698, 5, 288, 0, 0, 3695, 3698, 5, 94, 0, 0, 3696, 3698, 3, 320, 160, 0, 3697, 3690, 1, 0, 0, 0, 3697, 3691, 1, 0, 0, 0, 3697, 3692, 1, 0, 0, 0, 3697, 3693, 1, 0, 0, 0, 3697, 3694, 1, 0, 0, 0, 3697, 3695, 1, 0, 0, 0, 3697, 3696, 1, 0, 0, 0, 3698, 319, 1, 0, 0, 0, 3699, 3705, 5, 333, 0, 0, 3700, 3705, 5, 335, 0, 0, 3701, 3705, 3, 326, 163, 0, 3702, 3705, 5, 336, 0, 0, 3703, 3705, 5, 334, 0, 0, 3704, 3699, 1, 0, 0, 0, 3704, 3700, 1, 0, 0, 0, 3704, 3701, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3704, 3703, 1, 0, 0, 0, 3705, 321, 1, 0, 0, 0, 3706, 3708, 5, 320, 0, 0, 3707, 3706, 1, 0, 0, 0, 3707, 3708, 1, 0, 0, 0, 3708, 3709, 1, 0, 0, 0, 3709, 3719, 5, 331, 0, 0, 3710, 3712, 5, 320, 0, 0, 3711, 3710, 1, 0, 0, 0, 3711, 3712, 1, 0, 0, 0, 3712, 3713, 1, 0, 0, 0, 3713, 3719, 5, 332, 0, 0, 3714, 3716, 5, 320, 0, 0, 3715, 3714, 1, 0, 0, 0, 3715, 3716, 1, 0, 0, 0, 3716, 3717, 1, 0, 0, 0, 3717, 3719, 5, 330, 0, 0, 3718, 3707, 1, 0, 0, 0, 3718, 3711, 1, 0, 0, 0, 3718, 3715, 1, 0, 0, 0, 3719, 323, 1, 0, 0, 0, 3720, 3723, 3, 320, 160, 0, 3721, 3723, 3, 190, 95, 0, 3722, 3720, 1, 0, 0, 0, 3722, 3721, 1, 0, 0, 0, 3723, 325, 1, 0, 0, 0, 3724, 3725, 7, 35, 0, 0, 3725, 327, 1, 0, 0, 0, 480, 331, 340, 344, 348, 352, 356, 369, 376, 380, 384, 390, 394, 401, 406, 410, 416, 420, 439, 445, 449, 453, 457, 465, 469, 472, 477, 483, 492, 498, 502, 508, 515, 523, 535, 544, 553, 559, 570, 578, 586, 593, 603, 610, 618, 633, 668, 671, 674, 677, 683, 688, 695, 701, 705, 709, 717, 723, 727, 731, 745, 753, 772, 797, 800, 807, 814, 823, 827, 834, 842, 851, 857, 862, 866, 874, 879, 888, 894, 901, 910, 916, 920, 926, 933, 938, 951, 956, 968, 972, 978, 987, 992, 998, 1026, 1032, 1034, 1040, 1046, 1048, 1056, 1058, 1068, 1070, 1085, 1090, 1097, 1107, 1113, 1115, 1123, 1125, 1150, 1153, 1157, 1161, 1179, 1182, 1193, 1196, 1212, 1222, 1226, 1232, 1235, 1244, 1256, 1259, 1269, 1273, 1279, 1286, 1291, 1297, 1301, 1305, 1311, 1322, 1331, 1341, 1344, 1349, 1351, 1358, 1364, 1366, 1370, 1380, 1386, 1389, 1391, 1403, 1410, 1414, 1417, 1421, 1425, 1434, 1437, 1440, 1445, 1448, 1456, 1459, 1472, 1476, 1483, 1491, 1502, 1505, 1515, 1518, 1529, 1534, 1542, 1545, 1549, 1553, 1562, 1567, 1576, 1579, 1582, 1586, 1597, 1600, 1603, 1608, 1611, 1640, 1644, 1648, 1652, 1656, 1660, 1662, 1668, 1677, 1682, 1694, 1703, 1712, 1715, 1721, 1729, 1738, 1741, 1749, 1752, 1755, 1760, 1763, 1775, 1778, 1786, 1791, 1795, 1797, 1799, 1814, 1816, 1827, 1848, 1858, 1869, 1873, 1875, 1883, 1894, 1905, 1912, 1919, 1932, 1938, 1960, 1975, 1980, 1984, 1994, 2000, 2006, 2014, 2019, 2026, 2028, 2034, 2040, 2044, 2049, 2058, 2063, 2077, 2087, 2090, 2099, 2104, 2109, 2111, 2120, 2123, 2131, 2134, 2141, 2146, 2153, 2157, 2159, 2167, 2177, 2183, 2185, 2192, 2196, 2198, 2205, 2209, 2211, 2213, 2222, 2233, 2237, 2247, 2257, 2261, 2269, 2271, 2284, 2292, 2301, 2307, 2315, 2321, 2325, 2330, 2335, 2341, 2355, 2357, 2387, 2398, 2406, 2411, 2416, 2429, 2435, 2438, 2445, 2450, 2453, 2456, 2461, 2468, 2471, 2480, 2483, 2487, 2490, 2493, 2508, 2511, 2530, 2534, 2542, 2546, 2571, 2574, 2583, 2589, 2595, 2601, 2610, 2613, 2616, 2635, 2644, 2662, 2678, 2681, 2691, 2700, 2706, 2712, 2723, 2725, 2730, 2737, 2739, 2745, 2751, 2762, 2771, 2776, 2781, 2783, 2785, 2791, 2793, 2803, 2812, 2814, 2820, 2822, 2825, 2835, 2837, 2845, 2853, 2856, 2861, 2866, 2878, 2882, 2886, 2889, 2891, 2899, 2902, 2912, 2920, 2926, 2928, 2936, 2946, 2952, 2966, 2975, 2982, 2987, 2994, 2999, 3022, 3027, 3029, 3036, 3040, 3047, 3051, 3067, 3082, 3089, 3098, 3108, 3113, 3122, 3127, 3135, 3143, 3146, 3152, 3155, 3162, 3170, 3173, 3181, 3184, 3210, 3221, 3226, 3233, 3235, 3248, 3263, 3267, 3271, 3275, 3281, 3285, 3289, 3293, 3295, 3305, 3312, 3321, 3328, 3335, 3342, 3351, 3363, 3366, 3377, 3380, 3385, 3395, 3411, 3425, 3428, 3437, 3440, 3452, 3456, 3471, 3475, 3481, 3491, 3503, 3512, 3533, 3539, 3546, 3554, 3559, 3562, 3568, 3581, 3594, 3607, 3620, 3627, 3634, 3646, 3659, 3673, 3680, 3687, 3697, 3704, 3707, 3711, 3715, 3718, 3722] \ No newline at end of file diff --git a/src/lib/trino/TrinoSql.tokens b/src/lib/trino/TrinoSql.tokens index f97376ce..b7239164 100644 --- a/src/lib/trino/TrinoSql.tokens +++ b/src/lib/trino/TrinoSql.tokens @@ -339,6 +339,7 @@ BRACKETED_COMMENT=338 WHITE_SPACE=339 UNRECOGNIZED=340 DELIMITER=341 +DOT=342 '('=1 ')'=2 ','=3 diff --git a/src/lib/trino/TrinoSqlListener.ts b/src/lib/trino/TrinoSqlListener.ts index cbc72172..771a8771 100644 --- a/src/lib/trino/TrinoSqlListener.ts +++ b/src/lib/trino/TrinoSqlListener.ts @@ -147,6 +147,8 @@ import { RelationDefaultContext } from "./TrinoSqlParser.js"; import { JoinRelationContext } from "./TrinoSqlParser.js"; import { JoinTypeContext } from "./TrinoSqlParser.js"; import { JoinCriteriaContext } from "./TrinoSqlParser.js"; +import { JoinColumnEqualityContext } from "./TrinoSqlParser.js"; +import { JoinColumnReferenceContext } from "./TrinoSqlParser.js"; import { SampledRelationContext } from "./TrinoSqlParser.js"; import { SampleTypeContext } from "./TrinoSqlParser.js"; import { TrimsSpecificationContext } from "./TrinoSqlParser.js"; @@ -365,6 +367,7 @@ import { CatalogNameCreateContext } from "./TrinoSqlParser.js"; import { FunctionNameContext } from "./TrinoSqlParser.js"; import { FunctionNameCreateContext } from "./TrinoSqlParser.js"; import { ColumnRefContext } from "./TrinoSqlParser.js"; +import { EmptyColumnContext } from "./TrinoSqlParser.js"; import { ColumnNameContext } from "./TrinoSqlParser.js"; import { ColumnNameCreateContext } from "./TrinoSqlParser.js"; import { QualifiedNameContext } from "./TrinoSqlParser.js"; @@ -1983,6 +1986,26 @@ export class TrinoSqlListener implements ParseTreeListener { * @param ctx the parse tree */ exitJoinCriteria?: (ctx: JoinCriteriaContext) => void; + /** + * Enter a parse tree produced by `TrinoSqlParser.joinColumnEquality`. + * @param ctx the parse tree + */ + enterJoinColumnEquality?: (ctx: JoinColumnEqualityContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.joinColumnEquality`. + * @param ctx the parse tree + */ + exitJoinColumnEquality?: (ctx: JoinColumnEqualityContext) => void; + /** + * Enter a parse tree produced by `TrinoSqlParser.joinColumnReference`. + * @param ctx the parse tree + */ + enterJoinColumnReference?: (ctx: JoinColumnReferenceContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.joinColumnReference`. + * @param ctx the parse tree + */ + exitJoinColumnReference?: (ctx: JoinColumnReferenceContext) => void; /** * Enter a parse tree produced by `TrinoSqlParser.sampledRelation`. * @param ctx the parse tree @@ -4445,6 +4468,16 @@ export class TrinoSqlListener implements ParseTreeListener { * @param ctx the parse tree */ exitColumnRef?: (ctx: ColumnRefContext) => void; + /** + * Enter a parse tree produced by `TrinoSqlParser.emptyColumn`. + * @param ctx the parse tree + */ + enterEmptyColumn?: (ctx: EmptyColumnContext) => void; + /** + * Exit a parse tree produced by `TrinoSqlParser.emptyColumn`. + * @param ctx the parse tree + */ + exitEmptyColumn?: (ctx: EmptyColumnContext) => void; /** * Enter a parse tree produced by `TrinoSqlParser.columnName`. * @param ctx the parse tree diff --git a/src/lib/trino/TrinoSqlParser.ts b/src/lib/trino/TrinoSqlParser.ts index 0481b05a..0ff8746f 100644 --- a/src/lib/trino/TrinoSqlParser.ts +++ b/src/lib/trino/TrinoSqlParser.ts @@ -358,6 +358,7 @@ export class TrinoSqlParser extends SQLParserBase { public static readonly WHITE_SPACE = 339; public static readonly UNRECOGNIZED = 340; public static readonly DELIMITER = 341; + public static readonly DOT = 342; public static readonly RULE_program = 0; public static readonly RULE_statements = 1; public static readonly RULE_singleStatement = 2; @@ -405,120 +406,123 @@ export class TrinoSqlParser extends SQLParserBase { public static readonly RULE_relation = 44; public static readonly RULE_joinType = 45; public static readonly RULE_joinCriteria = 46; - public static readonly RULE_sampledRelation = 47; - public static readonly RULE_sampleType = 48; - public static readonly RULE_trimsSpecification = 49; - public static readonly RULE_listAggOverflowBehavior = 50; - public static readonly RULE_listAggCountIndication = 51; - public static readonly RULE_patternRecognition = 52; - public static readonly RULE_measureDefinition = 53; - public static readonly RULE_rowsPerMatch = 54; - public static readonly RULE_emptyMatchHandling = 55; - public static readonly RULE_skipTo = 56; - public static readonly RULE_subsetDefinition = 57; - public static readonly RULE_variableDefinition = 58; - public static readonly RULE_aliasedRelation = 59; - public static readonly RULE_columnListCreate = 60; - public static readonly RULE_columnList = 61; - public static readonly RULE_columnAliases = 62; - public static readonly RULE_relationPrimary = 63; - public static readonly RULE_relationSourceTable = 64; - public static readonly RULE_jsonTableColumn = 65; - public static readonly RULE_jsonTableSpecificPlan = 66; - public static readonly RULE_jsonTablePathName = 67; - public static readonly RULE_planPrimary = 68; - public static readonly RULE_jsonTableDefaultPlan = 69; - public static readonly RULE_tableFunctionCall = 70; - public static readonly RULE_tableFunctionArgument = 71; - public static readonly RULE_tableArgument = 72; - public static readonly RULE_tableArgumentRelation = 73; - public static readonly RULE_descriptorArgument = 74; - public static readonly RULE_descriptorField = 75; - public static readonly RULE_coPartitionTables = 76; - public static readonly RULE_expression = 77; - public static readonly RULE_booleanExpression = 78; - public static readonly RULE_predicate = 79; - public static readonly RULE_valueExpression = 80; - public static readonly RULE_primaryExpression = 81; - public static readonly RULE_jsonPathInvocation = 82; - public static readonly RULE_jsonValueExpression = 83; - public static readonly RULE_jsonRepresentation = 84; - public static readonly RULE_jsonArgument = 85; - public static readonly RULE_jsonExistsErrorBehavior = 86; - public static readonly RULE_jsonValueBehavior = 87; - public static readonly RULE_jsonQueryWrapperBehavior = 88; - public static readonly RULE_jsonQueryBehavior = 89; - public static readonly RULE_jsonObjectMember = 90; - public static readonly RULE_processingMode = 91; - public static readonly RULE_nullTreatment = 92; - public static readonly RULE_string = 93; - public static readonly RULE_timeZoneSpecifier = 94; - public static readonly RULE_comparisonOperator = 95; - public static readonly RULE_comparisonQuantifier = 96; - public static readonly RULE_booleanValue = 97; - public static readonly RULE_interval = 98; - public static readonly RULE_intervalField = 99; - public static readonly RULE_normalForm = 100; - public static readonly RULE_type = 101; - public static readonly RULE_rowField = 102; - public static readonly RULE_typeParameter = 103; - public static readonly RULE_whenClause = 104; - public static readonly RULE_filter = 105; - public static readonly RULE_mergeCase = 106; - public static readonly RULE_over = 107; - public static readonly RULE_windowFrame = 108; - public static readonly RULE_frameExtent = 109; - public static readonly RULE_frameBound = 110; - public static readonly RULE_rowPattern = 111; - public static readonly RULE_patternPrimary = 112; - public static readonly RULE_patternQuantifier = 113; - public static readonly RULE_updateAssignment = 114; - public static readonly RULE_explainOption = 115; - public static readonly RULE_transactionMode = 116; - public static readonly RULE_levelOfIsolation = 117; - public static readonly RULE_callArgument = 118; - public static readonly RULE_pathElement = 119; - public static readonly RULE_pathSpecification = 120; - public static readonly RULE_functionSpecification = 121; - public static readonly RULE_functionDeclaration = 122; - public static readonly RULE_functionSignature = 123; - public static readonly RULE_parameterDeclaration = 124; - public static readonly RULE_returnsClause = 125; - public static readonly RULE_routineCharacteristic = 126; - public static readonly RULE_controlStatement = 127; - public static readonly RULE_caseStatementWhenClause = 128; - public static readonly RULE_elseIfClause = 129; - public static readonly RULE_elseClause = 130; - public static readonly RULE_variableDeclaration = 131; - public static readonly RULE_sqlStatementList = 132; - public static readonly RULE_privilege = 133; - public static readonly RULE_entityKind = 134; - public static readonly RULE_grantObject = 135; - public static readonly RULE_tableOrViewName = 136; - public static readonly RULE_tableRef = 137; - public static readonly RULE_tableNameCreate = 138; - public static readonly RULE_viewRef = 139; - public static readonly RULE_viewNameCreate = 140; - public static readonly RULE_schemaRef = 141; - public static readonly RULE_schemaNameCreate = 142; - public static readonly RULE_catalogRef = 143; - public static readonly RULE_catalogNameCreate = 144; - public static readonly RULE_functionName = 145; - public static readonly RULE_functionNameCreate = 146; - public static readonly RULE_columnRef = 147; - public static readonly RULE_columnName = 148; - public static readonly RULE_columnNameCreate = 149; - public static readonly RULE_qualifiedName = 150; - public static readonly RULE_queryPeriod = 151; - public static readonly RULE_rangeType = 152; - public static readonly RULE_grantor = 153; - public static readonly RULE_principal = 154; - public static readonly RULE_roles = 155; - public static readonly RULE_privilegeOrRole = 156; - public static readonly RULE_identifier = 157; - public static readonly RULE_number = 158; - public static readonly RULE_authorizationUser = 159; - public static readonly RULE_nonReserved = 160; + public static readonly RULE_joinColumnEquality = 47; + public static readonly RULE_joinColumnReference = 48; + public static readonly RULE_sampledRelation = 49; + public static readonly RULE_sampleType = 50; + public static readonly RULE_trimsSpecification = 51; + public static readonly RULE_listAggOverflowBehavior = 52; + public static readonly RULE_listAggCountIndication = 53; + public static readonly RULE_patternRecognition = 54; + public static readonly RULE_measureDefinition = 55; + public static readonly RULE_rowsPerMatch = 56; + public static readonly RULE_emptyMatchHandling = 57; + public static readonly RULE_skipTo = 58; + public static readonly RULE_subsetDefinition = 59; + public static readonly RULE_variableDefinition = 60; + public static readonly RULE_aliasedRelation = 61; + public static readonly RULE_columnListCreate = 62; + public static readonly RULE_columnList = 63; + public static readonly RULE_columnAliases = 64; + public static readonly RULE_relationPrimary = 65; + public static readonly RULE_relationSourceTable = 66; + public static readonly RULE_jsonTableColumn = 67; + public static readonly RULE_jsonTableSpecificPlan = 68; + public static readonly RULE_jsonTablePathName = 69; + public static readonly RULE_planPrimary = 70; + public static readonly RULE_jsonTableDefaultPlan = 71; + public static readonly RULE_tableFunctionCall = 72; + public static readonly RULE_tableFunctionArgument = 73; + public static readonly RULE_tableArgument = 74; + public static readonly RULE_tableArgumentRelation = 75; + public static readonly RULE_descriptorArgument = 76; + public static readonly RULE_descriptorField = 77; + public static readonly RULE_coPartitionTables = 78; + public static readonly RULE_expression = 79; + public static readonly RULE_booleanExpression = 80; + public static readonly RULE_predicate = 81; + public static readonly RULE_valueExpression = 82; + public static readonly RULE_primaryExpression = 83; + public static readonly RULE_jsonPathInvocation = 84; + public static readonly RULE_jsonValueExpression = 85; + public static readonly RULE_jsonRepresentation = 86; + public static readonly RULE_jsonArgument = 87; + public static readonly RULE_jsonExistsErrorBehavior = 88; + public static readonly RULE_jsonValueBehavior = 89; + public static readonly RULE_jsonQueryWrapperBehavior = 90; + public static readonly RULE_jsonQueryBehavior = 91; + public static readonly RULE_jsonObjectMember = 92; + public static readonly RULE_processingMode = 93; + public static readonly RULE_nullTreatment = 94; + public static readonly RULE_string = 95; + public static readonly RULE_timeZoneSpecifier = 96; + public static readonly RULE_comparisonOperator = 97; + public static readonly RULE_comparisonQuantifier = 98; + public static readonly RULE_booleanValue = 99; + public static readonly RULE_interval = 100; + public static readonly RULE_intervalField = 101; + public static readonly RULE_normalForm = 102; + public static readonly RULE_type = 103; + public static readonly RULE_rowField = 104; + public static readonly RULE_typeParameter = 105; + public static readonly RULE_whenClause = 106; + public static readonly RULE_filter = 107; + public static readonly RULE_mergeCase = 108; + public static readonly RULE_over = 109; + public static readonly RULE_windowFrame = 110; + public static readonly RULE_frameExtent = 111; + public static readonly RULE_frameBound = 112; + public static readonly RULE_rowPattern = 113; + public static readonly RULE_patternPrimary = 114; + public static readonly RULE_patternQuantifier = 115; + public static readonly RULE_updateAssignment = 116; + public static readonly RULE_explainOption = 117; + public static readonly RULE_transactionMode = 118; + public static readonly RULE_levelOfIsolation = 119; + public static readonly RULE_callArgument = 120; + public static readonly RULE_pathElement = 121; + public static readonly RULE_pathSpecification = 122; + public static readonly RULE_functionSpecification = 123; + public static readonly RULE_functionDeclaration = 124; + public static readonly RULE_functionSignature = 125; + public static readonly RULE_parameterDeclaration = 126; + public static readonly RULE_returnsClause = 127; + public static readonly RULE_routineCharacteristic = 128; + public static readonly RULE_controlStatement = 129; + public static readonly RULE_caseStatementWhenClause = 130; + public static readonly RULE_elseIfClause = 131; + public static readonly RULE_elseClause = 132; + public static readonly RULE_variableDeclaration = 133; + public static readonly RULE_sqlStatementList = 134; + public static readonly RULE_privilege = 135; + public static readonly RULE_entityKind = 136; + public static readonly RULE_grantObject = 137; + public static readonly RULE_tableOrViewName = 138; + public static readonly RULE_tableRef = 139; + public static readonly RULE_tableNameCreate = 140; + public static readonly RULE_viewRef = 141; + public static readonly RULE_viewNameCreate = 142; + public static readonly RULE_schemaRef = 143; + public static readonly RULE_schemaNameCreate = 144; + public static readonly RULE_catalogRef = 145; + public static readonly RULE_catalogNameCreate = 146; + public static readonly RULE_functionName = 147; + public static readonly RULE_functionNameCreate = 148; + public static readonly RULE_columnRef = 149; + public static readonly RULE_emptyColumn = 150; + public static readonly RULE_columnName = 151; + public static readonly RULE_columnNameCreate = 152; + public static readonly RULE_qualifiedName = 153; + public static readonly RULE_queryPeriod = 154; + public static readonly RULE_rangeType = 155; + public static readonly RULE_grantor = 156; + public static readonly RULE_principal = 157; + public static readonly RULE_roles = 158; + public static readonly RULE_privilegeOrRole = 159; + public static readonly RULE_identifier = 160; + public static readonly RULE_number = 161; + public static readonly RULE_authorizationUser = 162; + public static readonly RULE_nonReserved = 163; public static readonly literalNames = [ null, "'('", "')'", "','", "'.'", "'SKIP'", "'=>'", "'->'", "'['", @@ -641,7 +645,7 @@ export class TrinoSqlParser extends SQLParserBase { "UNICODE_STRING", "BINARY_LITERAL", "INTEGER_VALUE", "DECIMAL_VALUE", "DOUBLE_VALUE", "IDENTIFIER", "DIGIT_IDENTIFIER", "QUOTED_IDENTIFIER", "BACKQUOTED_IDENTIFIER", "LINE_COMMENT", "BRACKETED_COMMENT", "WHITE_SPACE", - "UNRECOGNIZED", "DELIMITER" + "UNRECOGNIZED", "DELIMITER", "DOT" ]; public static readonly ruleNames = [ "program", "statements", "singleStatement", "standaloneExpression", @@ -655,34 +659,34 @@ export class TrinoSqlParser extends SQLParserBase { "groupingTerm", "windowDefinition", "windowSpecification", "namedQuery", "setQuantifier", "selectItem", "selectAllWithoutTable", "tableAllColumns", "selectLiteralColumnName", "selectExpressionColumnName", "relation", - "joinType", "joinCriteria", "sampledRelation", "sampleType", "trimsSpecification", - "listAggOverflowBehavior", "listAggCountIndication", "patternRecognition", - "measureDefinition", "rowsPerMatch", "emptyMatchHandling", "skipTo", - "subsetDefinition", "variableDefinition", "aliasedRelation", "columnListCreate", - "columnList", "columnAliases", "relationPrimary", "relationSourceTable", - "jsonTableColumn", "jsonTableSpecificPlan", "jsonTablePathName", - "planPrimary", "jsonTableDefaultPlan", "tableFunctionCall", "tableFunctionArgument", - "tableArgument", "tableArgumentRelation", "descriptorArgument", - "descriptorField", "coPartitionTables", "expression", "booleanExpression", - "predicate", "valueExpression", "primaryExpression", "jsonPathInvocation", - "jsonValueExpression", "jsonRepresentation", "jsonArgument", "jsonExistsErrorBehavior", - "jsonValueBehavior", "jsonQueryWrapperBehavior", "jsonQueryBehavior", - "jsonObjectMember", "processingMode", "nullTreatment", "string", - "timeZoneSpecifier", "comparisonOperator", "comparisonQuantifier", - "booleanValue", "interval", "intervalField", "normalForm", "type", - "rowField", "typeParameter", "whenClause", "filter", "mergeCase", - "over", "windowFrame", "frameExtent", "frameBound", "rowPattern", - "patternPrimary", "patternQuantifier", "updateAssignment", "explainOption", - "transactionMode", "levelOfIsolation", "callArgument", "pathElement", - "pathSpecification", "functionSpecification", "functionDeclaration", - "functionSignature", "parameterDeclaration", "returnsClause", "routineCharacteristic", - "controlStatement", "caseStatementWhenClause", "elseIfClause", "elseClause", - "variableDeclaration", "sqlStatementList", "privilege", "entityKind", - "grantObject", "tableOrViewName", "tableRef", "tableNameCreate", - "viewRef", "viewNameCreate", "schemaRef", "schemaNameCreate", "catalogRef", - "catalogNameCreate", "functionName", "functionNameCreate", "columnRef", - "columnName", "columnNameCreate", "qualifiedName", "queryPeriod", - "rangeType", "grantor", "principal", "roles", "privilegeOrRole", + "joinType", "joinCriteria", "joinColumnEquality", "joinColumnReference", + "sampledRelation", "sampleType", "trimsSpecification", "listAggOverflowBehavior", + "listAggCountIndication", "patternRecognition", "measureDefinition", + "rowsPerMatch", "emptyMatchHandling", "skipTo", "subsetDefinition", + "variableDefinition", "aliasedRelation", "columnListCreate", "columnList", + "columnAliases", "relationPrimary", "relationSourceTable", "jsonTableColumn", + "jsonTableSpecificPlan", "jsonTablePathName", "planPrimary", "jsonTableDefaultPlan", + "tableFunctionCall", "tableFunctionArgument", "tableArgument", "tableArgumentRelation", + "descriptorArgument", "descriptorField", "coPartitionTables", "expression", + "booleanExpression", "predicate", "valueExpression", "primaryExpression", + "jsonPathInvocation", "jsonValueExpression", "jsonRepresentation", + "jsonArgument", "jsonExistsErrorBehavior", "jsonValueBehavior", + "jsonQueryWrapperBehavior", "jsonQueryBehavior", "jsonObjectMember", + "processingMode", "nullTreatment", "string", "timeZoneSpecifier", + "comparisonOperator", "comparisonQuantifier", "booleanValue", "interval", + "intervalField", "normalForm", "type", "rowField", "typeParameter", + "whenClause", "filter", "mergeCase", "over", "windowFrame", "frameExtent", + "frameBound", "rowPattern", "patternPrimary", "patternQuantifier", + "updateAssignment", "explainOption", "transactionMode", "levelOfIsolation", + "callArgument", "pathElement", "pathSpecification", "functionSpecification", + "functionDeclaration", "functionSignature", "parameterDeclaration", + "returnsClause", "routineCharacteristic", "controlStatement", "caseStatementWhenClause", + "elseIfClause", "elseClause", "variableDeclaration", "sqlStatementList", + "privilege", "entityKind", "grantObject", "tableOrViewName", "tableRef", + "tableNameCreate", "viewRef", "viewNameCreate", "schemaRef", "schemaNameCreate", + "catalogRef", "catalogNameCreate", "functionName", "functionNameCreate", + "columnRef", "emptyColumn", "columnName", "columnNameCreate", "qualifiedName", + "queryPeriod", "rangeType", "grantor", "principal", "roles", "privilegeOrRole", "identifier", "number", "authorizationUser", "nonReserved", ]; @@ -696,6 +700,11 @@ export class TrinoSqlParser extends SQLParserBase { return new antlr.FailedPredicateException(this, predicate, message); } + + notEntityCollecting(): boolean { + return !this.entityCollecting; + } + public constructor(input: antlr.TokenStream) { super(input); this.interpreter = new antlr.ParserATNSimulator(this, TrinoSqlParser._ATN, TrinoSqlParser.decisionsToDFA, new antlr.PredictionContextCache()); @@ -707,21 +716,21 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 325; + this.state = 331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 25165826) !== 0) || ((((_la - 37)) & ~0x1F) === 0 && ((1 << (_la - 37)) & 134145) !== 0) || ((((_la - 69)) & ~0x1F) === 0 && ((1 << (_la - 69)) & 167805409) !== 0) || _la === 111 || _la === 128 || _la === 170 || ((((_la - 215)) & ~0x1F) === 0 && ((1 << (_la - 215)) & 8921345) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 67113129) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 131587) !== 0)) { { { - this.state = 322; + this.state = 328; this.statements(); } } - this.state = 327; + this.state = 333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 328; + this.state = 334; this.match(TrinoSqlParser.EOF); } } @@ -745,7 +754,7 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 330; + this.state = 336; this.singleStatement(); } } @@ -770,14 +779,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 332; + this.state = 338; this.statement(); - this.state = 334; + this.state = 340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 326) { { - this.state = 333; + this.state = 339; this.match(TrinoSqlParser.SEMICOLON); } } @@ -805,14 +814,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 336; + this.state = 342; this.expression(); - this.state = 338; + this.state = 344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 326) { { - this.state = 337; + this.state = 343; this.match(TrinoSqlParser.SEMICOLON); } } @@ -840,14 +849,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 340; + this.state = 346; this.pathSpecification(); - this.state = 342; + this.state = 348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 326) { { - this.state = 341; + this.state = 347; this.match(TrinoSqlParser.SEMICOLON); } } @@ -875,14 +884,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 344; + this.state = 350; this.type_(0); - this.state = 346; + this.state = 352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 326) { { - this.state = 345; + this.state = 351; this.match(TrinoSqlParser.SEMICOLON); } } @@ -910,14 +919,14 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 348; + this.state = 354; this.rowPattern(0); - this.state = 350; + this.state = 356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 326) { { - this.state = 349; + this.state = 355; this.match(TrinoSqlParser.SEMICOLON); } } @@ -944,9 +953,9 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 352; + this.state = 358; this.functionSpecification(); - this.state = 353; + this.state = 359; this.match(TrinoSqlParser.EOF); } } @@ -969,14 +978,14 @@ export class TrinoSqlParser extends SQLParserBase { this.enterRule(localContext, 16, TrinoSqlParser.RULE_statement); let _la: number; try { - this.state = 1250; + this.state = 1256; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 125, this.context) ) { case 1: localContext = new StatementDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 355; + this.state = 361; this.rootQuery(); } break; @@ -984,9 +993,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UseContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 356; + this.state = 362; this.match(TrinoSqlParser.KW_USE); - this.state = 357; + this.state = 363; this.schemaRef(); } break; @@ -994,62 +1003,62 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateCatalogContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 358; + this.state = 364; this.match(TrinoSqlParser.KW_CREATE); - this.state = 359; + this.state = 365; this.match(TrinoSqlParser.KW_CATALOG); - this.state = 363; + this.state = 369; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 6, this.context) ) { case 1: { - this.state = 360; + this.state = 366; this.match(TrinoSqlParser.KW_IF); - this.state = 361; + this.state = 367; this.match(TrinoSqlParser.KW_NOT); - this.state = 362; + this.state = 368; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 365; + this.state = 371; (localContext as CreateCatalogContext)._catalog = this.catalogNameCreate(); - this.state = 366; + this.state = 372; this.match(TrinoSqlParser.KW_USING); - this.state = 367; + this.state = 373; (localContext as CreateCatalogContext)._connectorName = this.identifier(); - this.state = 370; + this.state = 376; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: { - this.state = 368; + this.state = 374; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 369; + this.state = 375; this.string_(); } break; } - this.state = 374; + this.state = 380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 372; + this.state = 378; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 373; + this.state = 379; this.principal(); } } - this.state = 378; + this.state = 384; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 376; + this.state = 382; this.match(TrinoSqlParser.KW_WITH); - this.state = 377; + this.state = 383; this.properties(); } break; @@ -1060,30 +1069,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropCatalogContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 380; + this.state = 386; this.match(TrinoSqlParser.KW_DROP); - this.state = 381; + this.state = 387; this.match(TrinoSqlParser.KW_CATALOG); - this.state = 384; + this.state = 390; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: { - this.state = 382; + this.state = 388; this.match(TrinoSqlParser.KW_IF); - this.state = 383; + this.state = 389; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 386; + this.state = 392; (localContext as DropCatalogContext)._catalog = this.catalogRef(); - this.state = 388; + this.state = 394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 230) { { - this.state = 387; + this.state = 393; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 230)) { this.errorHandler.recoverInline(this); @@ -1101,46 +1110,46 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateSchemaContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 390; + this.state = 396; this.match(TrinoSqlParser.KW_CREATE); - this.state = 391; + this.state = 397; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 395; + this.state = 401; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 12, this.context) ) { case 1: { - this.state = 392; + this.state = 398; this.match(TrinoSqlParser.KW_IF); - this.state = 393; + this.state = 399; this.match(TrinoSqlParser.KW_NOT); - this.state = 394; + this.state = 400; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 397; + this.state = 403; this.schemaNameCreate(); - this.state = 400; + this.state = 406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 398; + this.state = 404; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 399; + this.state = 405; this.principal(); } } - this.state = 404; + this.state = 410; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 14, this.context) ) { case 1: { - this.state = 402; + this.state = 408; this.match(TrinoSqlParser.KW_WITH); - this.state = 403; + this.state = 409; this.properties(); } break; @@ -1151,30 +1160,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropSchemaContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 406; + this.state = 412; this.match(TrinoSqlParser.KW_DROP); - this.state = 407; + this.state = 413; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 410; + this.state = 416; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 408; + this.state = 414; this.match(TrinoSqlParser.KW_IF); - this.state = 409; + this.state = 415; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 412; + this.state = 418; this.schemaRef(); - this.state = 414; + this.state = 420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39 || _la === 230) { { - this.state = 413; + this.state = 419; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 230)) { this.errorHandler.recoverInline(this); @@ -1192,17 +1201,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameSchemaContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 416; + this.state = 422; this.match(TrinoSqlParser.KW_ALTER); - this.state = 417; + this.state = 423; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 418; + this.state = 424; this.schemaRef(); - this.state = 419; + this.state = 425; this.match(TrinoSqlParser.KW_RENAME); - this.state = 420; + this.state = 426; this.match(TrinoSqlParser.KW_TO); - this.state = 421; + this.state = 427; this.schemaNameCreate(); } break; @@ -1210,17 +1219,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSchemaAuthorizationContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 423; + this.state = 429; this.match(TrinoSqlParser.KW_ALTER); - this.state = 424; + this.state = 430; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 425; + this.state = 431; this.schemaRef(); - this.state = 426; + this.state = 432; this.match(TrinoSqlParser.KW_SET); - this.state = 427; + this.state = 433; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 428; + this.state = 434; this.principal(); } break; @@ -1228,112 +1237,112 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateTableAsSelectContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 430; + this.state = 436; this.match(TrinoSqlParser.KW_CREATE); - this.state = 433; + this.state = 439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 431; + this.state = 437; this.match(TrinoSqlParser.KW_OR); - this.state = 432; + this.state = 438; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 435; + this.state = 441; this.match(TrinoSqlParser.KW_TABLE); - this.state = 439; + this.state = 445; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: { - this.state = 436; + this.state = 442; this.match(TrinoSqlParser.KW_IF); - this.state = 437; + this.state = 443; this.match(TrinoSqlParser.KW_NOT); - this.state = 438; + this.state = 444; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 441; + this.state = 447; this.tableNameCreate(); - this.state = 443; + this.state = 449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 442; + this.state = 448; this.columnListCreate(); } } - this.state = 447; + this.state = 453; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 445; + this.state = 451; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 446; + this.state = 452; (localContext as CreateTableAsSelectContext)._comment = this.string_(); } } - this.state = 451; + this.state = 457; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 305) { { - this.state = 449; + this.state = 455; this.match(TrinoSqlParser.KW_WITH); - this.state = 450; + this.state = 456; this.properties(); } } - this.state = 453; - this.match(TrinoSqlParser.KW_AS); this.state = 459; + this.match(TrinoSqlParser.KW_AS); + this.state = 465; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 22, this.context) ) { case 1: { - this.state = 454; + this.state = 460; this.rootQuery(); } break; case 2: { - this.state = 455; + this.state = 461; this.match(TrinoSqlParser.T__0); - this.state = 456; + this.state = 462; this.rootQuery(); - this.state = 457; + this.state = 463; this.match(TrinoSqlParser.T__1); } break; } - this.state = 466; + this.state = 472; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 24, this.context) ) { case 1: { - this.state = 461; + this.state = 467; this.match(TrinoSqlParser.KW_WITH); - this.state = 463; + this.state = 469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 462; + this.state = 468; this.match(TrinoSqlParser.KW_NO); } } - this.state = 465; + this.state = 471; this.match(TrinoSqlParser.KW_DATA); } break; @@ -1344,80 +1353,80 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateTableContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 468; + this.state = 474; this.match(TrinoSqlParser.KW_CREATE); - this.state = 471; + this.state = 477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 469; + this.state = 475; this.match(TrinoSqlParser.KW_OR); - this.state = 470; + this.state = 476; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 473; + this.state = 479; this.match(TrinoSqlParser.KW_TABLE); - this.state = 477; + this.state = 483; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 474; + this.state = 480; this.match(TrinoSqlParser.KW_IF); - this.state = 475; + this.state = 481; this.match(TrinoSqlParser.KW_NOT); - this.state = 476; + this.state = 482; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 479; + this.state = 485; this.tableNameCreate(); - this.state = 480; + this.state = 486; this.match(TrinoSqlParser.T__0); - this.state = 481; + this.state = 487; this.tableElement(); - this.state = 486; + this.state = 492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 482; + this.state = 488; this.match(TrinoSqlParser.T__2); - this.state = 483; + this.state = 489; this.tableElement(); } } - this.state = 488; + this.state = 494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 489; + this.state = 495; this.match(TrinoSqlParser.T__1); - this.state = 492; + this.state = 498; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 490; + this.state = 496; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 491; + this.state = 497; (localContext as CreateTableContext)._comment = this.string_(); } break; } - this.state = 496; + this.state = 502; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 29, this.context) ) { case 1: { - this.state = 494; + this.state = 500; this.match(TrinoSqlParser.KW_WITH); - this.state = 495; + this.state = 501; this.properties(); } break; @@ -1428,23 +1437,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropTableContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 498; + this.state = 504; this.match(TrinoSqlParser.KW_DROP); - this.state = 499; + this.state = 505; this.match(TrinoSqlParser.KW_TABLE); - this.state = 502; + this.state = 508; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: { - this.state = 500; + this.state = 506; this.match(TrinoSqlParser.KW_IF); - this.state = 501; + this.state = 507; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 504; + this.state = 510; this.tableRef(); } break; @@ -1452,23 +1461,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InsertIntoContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 505; + this.state = 511; this.match(TrinoSqlParser.KW_INSERT); - this.state = 506; + this.state = 512; this.match(TrinoSqlParser.KW_INTO); - this.state = 507; + this.state = 513; this.tableRef(); - this.state = 509; + this.state = 515; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 31, this.context) ) { case 1: { - this.state = 508; + this.state = 514; this.columnList(); } break; } - this.state = 511; + this.state = 517; this.rootQuery(); } break; @@ -1476,18 +1485,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeleteContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 513; + this.state = 519; this.match(TrinoSqlParser.KW_DELETE); - this.state = 514; + this.state = 520; this.match(TrinoSqlParser.KW_FROM); - this.state = 515; + this.state = 521; this.tableRef(); - this.state = 517; + this.state = 523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 302) { { - this.state = 516; + this.state = 522; this.whereClause(); } } @@ -1498,11 +1507,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TruncateTableContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 519; + this.state = 525; this.match(TrinoSqlParser.KW_TRUNCATE); - this.state = 520; + this.state = 526; this.match(TrinoSqlParser.KW_TABLE); - this.state = 521; + this.state = 527; this.tableRef(); } break; @@ -1510,29 +1519,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentTableContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 522; + this.state = 528; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 523; + this.state = 529; this.match(TrinoSqlParser.KW_ON); - this.state = 524; + this.state = 530; this.match(TrinoSqlParser.KW_TABLE); - this.state = 525; + this.state = 531; this.tableRef(); - this.state = 526; + this.state = 532; this.match(TrinoSqlParser.KW_IS); - this.state = 529; + this.state = 535; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 527; + this.state = 533; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 528; + this.state = 534; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1545,29 +1554,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentViewContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 531; + this.state = 537; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 532; + this.state = 538; this.match(TrinoSqlParser.KW_ON); - this.state = 533; + this.state = 539; this.match(TrinoSqlParser.KW_VIEW); - this.state = 534; + this.state = 540; this.viewRef(); - this.state = 535; + this.state = 541; this.match(TrinoSqlParser.KW_IS); - this.state = 538; + this.state = 544; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 536; + this.state = 542; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 537; + this.state = 543; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1580,29 +1589,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentColumnContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 540; + this.state = 546; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 541; + this.state = 547; this.match(TrinoSqlParser.KW_ON); - this.state = 542; + this.state = 548; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 543; + this.state = 549; this.columnRef(); - this.state = 544; + this.state = 550; this.match(TrinoSqlParser.KW_IS); - this.state = 547; + this.state = 553; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: case TrinoSqlParser.UNICODE_STRING: { - this.state = 545; + this.state = 551; this.string_(); } break; case TrinoSqlParser.KW_NULL: { - this.state = 546; + this.state = 552; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1615,29 +1624,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameTableContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 549; + this.state = 555; this.match(TrinoSqlParser.KW_ALTER); - this.state = 550; + this.state = 556; this.match(TrinoSqlParser.KW_TABLE); - this.state = 553; + this.state = 559; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 36, this.context) ) { case 1: { - this.state = 551; + this.state = 557; this.match(TrinoSqlParser.KW_IF); - this.state = 552; + this.state = 558; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 555; + this.state = 561; (localContext as RenameTableContext)._from_ = this.tableRef(); - this.state = 556; + this.state = 562; this.match(TrinoSqlParser.KW_RENAME); - this.state = 557; + this.state = 563; this.match(TrinoSqlParser.KW_TO); - this.state = 558; + this.state = 564; (localContext as RenameTableContext)._to = this.tableNameCreate(); } break; @@ -1645,43 +1654,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AddColumnContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 560; + this.state = 566; this.match(TrinoSqlParser.KW_ALTER); - this.state = 561; + this.state = 567; this.match(TrinoSqlParser.KW_TABLE); - this.state = 564; + this.state = 570; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: { - this.state = 562; + this.state = 568; this.match(TrinoSqlParser.KW_IF); - this.state = 563; + this.state = 569; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 566; + this.state = 572; (localContext as AddColumnContext)._tableName = this.tableRef(); - this.state = 567; + this.state = 573; this.match(TrinoSqlParser.KW_ADD); - this.state = 568; + this.state = 574; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 572; + this.state = 578; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: { - this.state = 569; + this.state = 575; this.match(TrinoSqlParser.KW_IF); - this.state = 570; + this.state = 576; this.match(TrinoSqlParser.KW_NOT); - this.state = 571; + this.state = 577; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 574; + this.state = 580; (localContext as AddColumnContext)._column = this.columnDefinition(); } break; @@ -1689,45 +1698,45 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameColumnContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 576; + this.state = 582; this.match(TrinoSqlParser.KW_ALTER); - this.state = 577; + this.state = 583; this.match(TrinoSqlParser.KW_TABLE); - this.state = 580; + this.state = 586; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: { - this.state = 578; + this.state = 584; this.match(TrinoSqlParser.KW_IF); - this.state = 579; + this.state = 585; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 582; + this.state = 588; (localContext as RenameColumnContext)._tableName = this.tableRef(); - this.state = 583; + this.state = 589; this.match(TrinoSqlParser.KW_RENAME); - this.state = 584; + this.state = 590; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 587; + this.state = 593; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: { - this.state = 585; + this.state = 591; this.match(TrinoSqlParser.KW_IF); - this.state = 586; + this.state = 592; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 589; + this.state = 595; (localContext as RenameColumnContext)._from_ = this.columnRef(); - this.state = 590; + this.state = 596; this.match(TrinoSqlParser.KW_TO); - this.state = 591; + this.state = 597; (localContext as RenameColumnContext)._to = this.columnNameCreate(); } break; @@ -1735,41 +1744,41 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropColumnContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 593; + this.state = 599; this.match(TrinoSqlParser.KW_ALTER); - this.state = 594; + this.state = 600; this.match(TrinoSqlParser.KW_TABLE); - this.state = 597; + this.state = 603; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 595; + this.state = 601; this.match(TrinoSqlParser.KW_IF); - this.state = 596; + this.state = 602; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 599; + this.state = 605; (localContext as DropColumnContext)._tableName = this.tableRef(); - this.state = 600; + this.state = 606; this.match(TrinoSqlParser.KW_DROP); - this.state = 601; + this.state = 607; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 604; + this.state = 610; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 42, this.context) ) { case 1: { - this.state = 602; + this.state = 608; this.match(TrinoSqlParser.KW_IF); - this.state = 603; + this.state = 609; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 606; + this.state = 612; (localContext as DropColumnContext)._column = this.columnRef(); } break; @@ -1777,37 +1786,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetColumnTypeContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 608; + this.state = 614; this.match(TrinoSqlParser.KW_ALTER); - this.state = 609; + this.state = 615; this.match(TrinoSqlParser.KW_TABLE); - this.state = 612; + this.state = 618; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: { - this.state = 610; + this.state = 616; this.match(TrinoSqlParser.KW_IF); - this.state = 611; + this.state = 617; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 614; + this.state = 620; (localContext as SetColumnTypeContext)._tableName = this.tableRef(); - this.state = 615; + this.state = 621; this.match(TrinoSqlParser.KW_ALTER); - this.state = 616; + this.state = 622; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 617; + this.state = 623; (localContext as SetColumnTypeContext)._column = this.columnRef(); - this.state = 618; + this.state = 624; this.match(TrinoSqlParser.KW_SET); - this.state = 619; + this.state = 625; this.match(TrinoSqlParser.KW_DATA); - this.state = 620; + this.state = 626; this.match(TrinoSqlParser.KW_TYPE); - this.state = 621; + this.state = 627; this.type_(0); } break; @@ -1815,35 +1824,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropNotNullConstraintContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 623; + this.state = 629; this.match(TrinoSqlParser.KW_ALTER); - this.state = 624; + this.state = 630; this.match(TrinoSqlParser.KW_TABLE); - this.state = 627; + this.state = 633; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: { - this.state = 625; + this.state = 631; this.match(TrinoSqlParser.KW_IF); - this.state = 626; + this.state = 632; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 629; + this.state = 635; (localContext as DropNotNullConstraintContext)._tableName = this.tableRef(); - this.state = 630; + this.state = 636; this.match(TrinoSqlParser.KW_ALTER); - this.state = 631; + this.state = 637; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 632; + this.state = 638; (localContext as DropNotNullConstraintContext)._column = this.columnRef(); - this.state = 633; + this.state = 639; this.match(TrinoSqlParser.KW_DROP); - this.state = 634; + this.state = 640; this.match(TrinoSqlParser.KW_NOT); - this.state = 635; + this.state = 641; this.match(TrinoSqlParser.KW_NULL); } break; @@ -1851,17 +1860,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTableAuthorizationContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 637; + this.state = 643; this.match(TrinoSqlParser.KW_ALTER); - this.state = 638; + this.state = 644; this.match(TrinoSqlParser.KW_TABLE); - this.state = 639; + this.state = 645; (localContext as SetTableAuthorizationContext)._tableName = this.tableRef(); - this.state = 640; + this.state = 646; this.match(TrinoSqlParser.KW_SET); - this.state = 641; + this.state = 647; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 642; + this.state = 648; this.principal(); } break; @@ -1869,17 +1878,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTablePropertiesContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 644; + this.state = 650; this.match(TrinoSqlParser.KW_ALTER); - this.state = 645; + this.state = 651; this.match(TrinoSqlParser.KW_TABLE); - this.state = 646; + this.state = 652; (localContext as SetTablePropertiesContext)._tableName = this.tableRef(); - this.state = 647; + this.state = 653; this.match(TrinoSqlParser.KW_SET); - this.state = 648; + this.state = 654; this.match(TrinoSqlParser.KW_PROPERTIES); - this.state = 649; + this.state = 655; this.propertyAssignments(); } break; @@ -1887,60 +1896,60 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableExecuteContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 651; + this.state = 657; this.match(TrinoSqlParser.KW_ALTER); - this.state = 652; + this.state = 658; this.match(TrinoSqlParser.KW_TABLE); - this.state = 653; + this.state = 659; (localContext as TableExecuteContext)._tableName = this.tableRef(); - this.state = 654; + this.state = 660; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 655; + this.state = 661; (localContext as TableExecuteContext)._procedureName = this.functionName(); - this.state = 668; + this.state = 674; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: { - this.state = 656; + this.state = 662; this.match(TrinoSqlParser.T__0); - this.state = 665; + this.state = 671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 3728211947) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 2781797343) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 3082285823) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 4253015917) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 3758094335) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 4024434665) !== 0) || ((((_la - 226)) & ~0x1F) === 0 && ((1 << (_la - 226)) & 4286569983) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 4008705783) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 1618962301) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 4093) !== 0)) { { - this.state = 657; + this.state = 663; this.callArgument(); - this.state = 662; + this.state = 668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 658; + this.state = 664; this.match(TrinoSqlParser.T__2); - this.state = 659; + this.state = 665; this.callArgument(); } } - this.state = 664; + this.state = 670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 667; + this.state = 673; this.match(TrinoSqlParser.T__1); } break; } - this.state = 671; + this.state = 677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 302) { { - this.state = 670; + this.state = 676; this.whereClause(); } } @@ -1951,18 +1960,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AnalyzeContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 673; + this.state = 679; this.match(TrinoSqlParser.KW_ANALYZE); - this.state = 674; + this.state = 680; this.tableRef(); - this.state = 677; + this.state = 683; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { case 1: { - this.state = 675; + this.state = 681; this.match(TrinoSqlParser.KW_WITH); - this.state = 676; + this.state = 682; this.properties(); } break; @@ -1973,81 +1982,81 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 679; + this.state = 685; this.match(TrinoSqlParser.KW_CREATE); - this.state = 682; + this.state = 688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 680; + this.state = 686; this.match(TrinoSqlParser.KW_OR); - this.state = 681; + this.state = 687; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 684; + this.state = 690; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 685; + this.state = 691; this.match(TrinoSqlParser.KW_VIEW); - this.state = 689; + this.state = 695; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 51, this.context) ) { case 1: { - this.state = 686; + this.state = 692; this.match(TrinoSqlParser.KW_IF); - this.state = 687; + this.state = 693; this.match(TrinoSqlParser.KW_NOT); - this.state = 688; + this.state = 694; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 691; + this.state = 697; this.viewNameCreate(); - this.state = 695; + this.state = 701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 692; + this.state = 698; this.match(TrinoSqlParser.KW_GRACE); - this.state = 693; + this.state = 699; this.match(TrinoSqlParser.KW_PERIOD); - this.state = 694; + this.state = 700; this.interval(); } } - this.state = 699; + this.state = 705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 697; + this.state = 703; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 698; + this.state = 704; (localContext as CreateMaterializedViewContext)._comment = this.string_(); } } - this.state = 703; + this.state = 709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 305) { { - this.state = 701; + this.state = 707; this.match(TrinoSqlParser.KW_WITH); - this.state = 702; + this.state = 708; this.properties(); } } - this.state = 705; + this.state = 711; this.match(TrinoSqlParser.KW_AS); - this.state = 706; + this.state = 712; this.rootQuery(); } break; @@ -2055,44 +2064,44 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 708; + this.state = 714; this.match(TrinoSqlParser.KW_CREATE); - this.state = 711; + this.state = 717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 709; + this.state = 715; this.match(TrinoSqlParser.KW_OR); - this.state = 710; + this.state = 716; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 713; + this.state = 719; this.match(TrinoSqlParser.KW_VIEW); - this.state = 714; + this.state = 720; this.viewNameCreate(); - this.state = 717; + this.state = 723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 715; + this.state = 721; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 716; + this.state = 722; (localContext as CreateViewContext)._comment = this.string_(); } } - this.state = 721; + this.state = 727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 247) { { - this.state = 719; + this.state = 725; this.match(TrinoSqlParser.KW_SECURITY); - this.state = 720; + this.state = 726; _la = this.tokenStream.LA(1); if(!(_la === 73 || _la === 132)) { this.errorHandler.recoverInline(this); @@ -2104,21 +2113,21 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 725; + this.state = 731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 305) { { - this.state = 723; + this.state = 729; this.match(TrinoSqlParser.KW_WITH); - this.state = 724; + this.state = 730; this.properties(); } } - this.state = 727; + this.state = 733; this.match(TrinoSqlParser.KW_AS); - this.state = 728; + this.state = 734; this.rootQuery(); } break; @@ -2126,13 +2135,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RefreshMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 730; + this.state = 736; this.match(TrinoSqlParser.KW_REFRESH); - this.state = 731; + this.state = 737; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 732; + this.state = 738; this.match(TrinoSqlParser.KW_VIEW); - this.state = 733; + this.state = 739; this.viewRef(); } break; @@ -2140,25 +2149,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 734; + this.state = 740; this.match(TrinoSqlParser.KW_DROP); - this.state = 735; + this.state = 741; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 736; + this.state = 742; this.match(TrinoSqlParser.KW_VIEW); - this.state = 739; + this.state = 745; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 737; + this.state = 743; this.match(TrinoSqlParser.KW_IF); - this.state = 738; + this.state = 744; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 741; + this.state = 747; this.viewRef(); } break; @@ -2166,31 +2175,31 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 742; + this.state = 748; this.match(TrinoSqlParser.KW_ALTER); - this.state = 743; + this.state = 749; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 744; + this.state = 750; this.match(TrinoSqlParser.KW_VIEW); - this.state = 747; + this.state = 753; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: { - this.state = 745; + this.state = 751; this.match(TrinoSqlParser.KW_IF); - this.state = 746; + this.state = 752; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 749; + this.state = 755; (localContext as RenameMaterializedViewContext)._from_ = this.viewRef(); - this.state = 750; + this.state = 756; this.match(TrinoSqlParser.KW_RENAME); - this.state = 751; + this.state = 757; this.match(TrinoSqlParser.KW_TO); - this.state = 752; + this.state = 758; (localContext as RenameMaterializedViewContext)._to = this.viewNameCreate(); } break; @@ -2198,19 +2207,19 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetMaterializedViewPropertiesContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 754; + this.state = 760; this.match(TrinoSqlParser.KW_ALTER); - this.state = 755; + this.state = 761; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 756; + this.state = 762; this.match(TrinoSqlParser.KW_VIEW); - this.state = 757; + this.state = 763; this.viewRef(); - this.state = 758; + this.state = 764; this.match(TrinoSqlParser.KW_SET); - this.state = 759; + this.state = 765; this.match(TrinoSqlParser.KW_PROPERTIES); - this.state = 760; + this.state = 766; this.propertyAssignments(); } break; @@ -2218,23 +2227,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropViewContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 762; + this.state = 768; this.match(TrinoSqlParser.KW_DROP); - this.state = 763; + this.state = 769; this.match(TrinoSqlParser.KW_VIEW); - this.state = 766; + this.state = 772; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 61, this.context) ) { case 1: { - this.state = 764; + this.state = 770; this.match(TrinoSqlParser.KW_IF); - this.state = 765; + this.state = 771; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 768; + this.state = 774; this.viewRef(); } break; @@ -2242,17 +2251,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RenameViewContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 769; + this.state = 775; this.match(TrinoSqlParser.KW_ALTER); - this.state = 770; + this.state = 776; this.match(TrinoSqlParser.KW_VIEW); - this.state = 771; + this.state = 777; (localContext as RenameViewContext)._from_ = this.viewRef(); - this.state = 772; + this.state = 778; this.match(TrinoSqlParser.KW_RENAME); - this.state = 773; + this.state = 779; this.match(TrinoSqlParser.KW_TO); - this.state = 774; + this.state = 780; (localContext as RenameViewContext)._to = this.viewNameCreate(); } break; @@ -2260,17 +2269,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetViewAuthorizationContext(localContext); this.enterOuterAlt(localContext, 36); { - this.state = 776; + this.state = 782; this.match(TrinoSqlParser.KW_ALTER); - this.state = 777; + this.state = 783; this.match(TrinoSqlParser.KW_VIEW); - this.state = 778; + this.state = 784; (localContext as SetViewAuthorizationContext)._from_ = this.viewRef(); - this.state = 779; + this.state = 785; this.match(TrinoSqlParser.KW_SET); - this.state = 780; + this.state = 786; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 781; + this.state = 787; this.principal(); } break; @@ -2278,39 +2287,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CallContext(localContext); this.enterOuterAlt(localContext, 37); { - this.state = 783; + this.state = 789; this.match(TrinoSqlParser.KW_CALL); - this.state = 784; + this.state = 790; this.functionName(); - this.state = 785; + this.state = 791; this.match(TrinoSqlParser.T__0); - this.state = 794; + this.state = 800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 3728211947) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 2781797343) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 3082285823) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 4253015917) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 3758094335) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 4024434665) !== 0) || ((((_la - 226)) & ~0x1F) === 0 && ((1 << (_la - 226)) & 4286569983) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 4008705783) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 1618962301) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 4093) !== 0)) { { - this.state = 786; + this.state = 792; this.callArgument(); - this.state = 791; + this.state = 797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 787; + this.state = 793; this.match(TrinoSqlParser.T__2); - this.state = 788; + this.state = 794; this.callArgument(); } } - this.state = 793; + this.state = 799; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 796; + this.state = 802; this.match(TrinoSqlParser.T__1); } break; @@ -2318,21 +2327,21 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateFunctionContext(localContext); this.enterOuterAlt(localContext, 38); { - this.state = 798; + this.state = 804; this.match(TrinoSqlParser.KW_CREATE); - this.state = 801; + this.state = 807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 799; + this.state = 805; this.match(TrinoSqlParser.KW_OR); - this.state = 800; + this.state = 806; this.match(TrinoSqlParser.KW_REPLACE); } } - this.state = 803; + this.state = 809; this.functionSpecification(); } break; @@ -2340,23 +2349,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropFunctionContext(localContext); this.enterOuterAlt(localContext, 39); { - this.state = 804; + this.state = 810; this.match(TrinoSqlParser.KW_DROP); - this.state = 805; + this.state = 811; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 808; + this.state = 814; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 806; + this.state = 812; this.match(TrinoSqlParser.KW_IF); - this.state = 807; + this.state = 813; this.match(TrinoSqlParser.KW_EXISTS); } break; } - this.state = 810; + this.state = 816; this.functionSignature(); } break; @@ -2364,34 +2373,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CreateRoleContext(localContext); this.enterOuterAlt(localContext, 40); { - this.state = 811; + this.state = 817; this.match(TrinoSqlParser.KW_CREATE); - this.state = 812; + this.state = 818; this.match(TrinoSqlParser.KW_ROLE); - this.state = 813; + this.state = 819; (localContext as CreateRoleContext)._name = this.identifier(); - this.state = 817; + this.state = 823; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 66, this.context) ) { case 1: { - this.state = 814; + this.state = 820; this.match(TrinoSqlParser.KW_WITH); - this.state = 815; + this.state = 821; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 816; + this.state = 822; this.grantor(); } break; } - this.state = 821; + this.state = 827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 819; + this.state = 825; this.match(TrinoSqlParser.KW_IN); - this.state = 820; + this.state = 826; (localContext as CreateRoleContext)._catalog = this.catalogRef(); } } @@ -2402,20 +2411,20 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DropRoleContext(localContext); this.enterOuterAlt(localContext, 41); { - this.state = 823; + this.state = 829; this.match(TrinoSqlParser.KW_DROP); - this.state = 824; + this.state = 830; this.match(TrinoSqlParser.KW_ROLE); - this.state = 825; + this.state = 831; (localContext as DropRoleContext)._name = this.identifier(); - this.state = 828; + this.state = 834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 826; + this.state = 832; this.match(TrinoSqlParser.KW_IN); - this.state = 827; + this.state = 833; (localContext as DropRoleContext)._catalog = this.catalogRef(); } } @@ -2426,82 +2435,82 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GrantRolesContext(localContext); this.enterOuterAlt(localContext, 42); { - this.state = 830; + this.state = 836; this.match(TrinoSqlParser.KW_GRANT); - this.state = 831; + this.state = 837; this.privilegeOrRole(); - this.state = 836; + this.state = 842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 832; + this.state = 838; this.match(TrinoSqlParser.T__2); - this.state = 833; + this.state = 839; this.privilegeOrRole(); } } - this.state = 838; + this.state = 844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 839; + this.state = 845; this.match(TrinoSqlParser.KW_TO); - this.state = 840; + this.state = 846; this.principal(); - this.state = 845; + this.state = 851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 841; + this.state = 847; this.match(TrinoSqlParser.T__2); - this.state = 842; + this.state = 848; this.principal(); } } - this.state = 847; + this.state = 853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 851; + this.state = 857; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: { - this.state = 848; + this.state = 854; this.match(TrinoSqlParser.KW_WITH); - this.state = 849; + this.state = 855; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 850; + this.state = 856; this.match(TrinoSqlParser.KW_OPTION); } break; } - this.state = 856; + this.state = 862; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 112) { { - this.state = 853; + this.state = 859; this.match(TrinoSqlParser.KW_GRANTED); - this.state = 854; + this.state = 860; this.match(TrinoSqlParser.KW_BY); - this.state = 855; + this.state = 861; this.grantor(); } } - this.state = 860; + this.state = 866; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 858; + this.state = 864; this.match(TrinoSqlParser.KW_IN); - this.state = 859; + this.state = 865; (localContext as GrantRolesContext)._catalog = this.catalogRef(); } } @@ -2512,29 +2521,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GrantPrivilegesContext(localContext); this.enterOuterAlt(localContext, 43); { - this.state = 862; + this.state = 868; this.match(TrinoSqlParser.KW_GRANT); - this.state = 873; + this.state = 879; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: { { - this.state = 863; + this.state = 869; this.privilegeOrRole(); - this.state = 868; + this.state = 874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 864; + this.state = 870; this.match(TrinoSqlParser.T__2); - this.state = 865; + this.state = 871; this.privilegeOrRole(); } } - this.state = 870; + this.state = 876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2543,31 +2552,31 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 871; + this.state = 877; this.match(TrinoSqlParser.KW_ALL); - this.state = 872; + this.state = 878; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 875; + this.state = 881; this.match(TrinoSqlParser.KW_ON); - this.state = 876; + this.state = 882; this.grantObject(); - this.state = 877; + this.state = 883; this.match(TrinoSqlParser.KW_TO); - this.state = 878; + this.state = 884; this.principal(); - this.state = 882; + this.state = 888; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: { - this.state = 879; + this.state = 885; this.match(TrinoSqlParser.KW_WITH); - this.state = 880; + this.state = 886; this.match(TrinoSqlParser.KW_GRANT); - this.state = 881; + this.state = 887; this.match(TrinoSqlParser.KW_OPTION); } break; @@ -2578,82 +2587,82 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RevokeRolesContext(localContext); this.enterOuterAlt(localContext, 44); { - this.state = 884; + this.state = 890; this.match(TrinoSqlParser.KW_REVOKE); - this.state = 888; + this.state = 894; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 885; + this.state = 891; this.match(TrinoSqlParser.KW_ADMIN); - this.state = 886; + this.state = 892; this.match(TrinoSqlParser.KW_OPTION); - this.state = 887; + this.state = 893; this.match(TrinoSqlParser.KW_FOR); } break; } - this.state = 890; + this.state = 896; this.privilegeOrRole(); - this.state = 895; + this.state = 901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 891; + this.state = 897; this.match(TrinoSqlParser.T__2); - this.state = 892; + this.state = 898; this.privilegeOrRole(); } } - this.state = 897; + this.state = 903; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 898; + this.state = 904; this.match(TrinoSqlParser.KW_FROM); - this.state = 899; + this.state = 905; this.principal(); - this.state = 904; + this.state = 910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 900; + this.state = 906; this.match(TrinoSqlParser.T__2); - this.state = 901; + this.state = 907; this.principal(); } } - this.state = 906; + this.state = 912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 910; + this.state = 916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 112) { { - this.state = 907; + this.state = 913; this.match(TrinoSqlParser.KW_GRANTED); - this.state = 908; + this.state = 914; this.match(TrinoSqlParser.KW_BY); - this.state = 909; + this.state = 915; this.grantor(); } } - this.state = 914; + this.state = 920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 912; + this.state = 918; this.match(TrinoSqlParser.KW_IN); - this.state = 913; + this.state = 919; (localContext as RevokeRolesContext)._catalog = this.catalogRef(); } } @@ -2664,43 +2673,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RevokePrivilegesContext(localContext); this.enterOuterAlt(localContext, 45); { - this.state = 916; + this.state = 922; this.match(TrinoSqlParser.KW_REVOKE); - this.state = 920; + this.state = 926; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 917; + this.state = 923; this.match(TrinoSqlParser.KW_GRANT); - this.state = 918; + this.state = 924; this.match(TrinoSqlParser.KW_OPTION); - this.state = 919; + this.state = 925; this.match(TrinoSqlParser.KW_FOR); } break; } - this.state = 932; + this.state = 938; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { case 1: { { - this.state = 922; + this.state = 928; this.privilegeOrRole(); - this.state = 927; + this.state = 933; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 923; + this.state = 929; this.match(TrinoSqlParser.T__2); - this.state = 924; + this.state = 930; this.privilegeOrRole(); } } - this.state = 929; + this.state = 935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2709,20 +2718,20 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 930; + this.state = 936; this.match(TrinoSqlParser.KW_ALL); - this.state = 931; + this.state = 937; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 934; + this.state = 940; this.match(TrinoSqlParser.KW_ON); - this.state = 935; + this.state = 941; this.grantObject(); - this.state = 936; + this.state = 942; this.match(TrinoSqlParser.KW_FROM); - this.state = 937; + this.state = 943; (localContext as RevokePrivilegesContext)._grantee = this.principal(); } break; @@ -2730,28 +2739,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DenyContext(localContext); this.enterOuterAlt(localContext, 46); { - this.state = 939; + this.state = 945; this.match(TrinoSqlParser.KW_DENY); - this.state = 950; + this.state = 956; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 940; + this.state = 946; this.privilege(); - this.state = 945; + this.state = 951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 941; + this.state = 947; this.match(TrinoSqlParser.T__2); - this.state = 942; + this.state = 948; this.privilege(); } } - this.state = 947; + this.state = 953; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -2759,20 +2768,20 @@ export class TrinoSqlParser extends SQLParserBase { break; case 2: { - this.state = 948; + this.state = 954; this.match(TrinoSqlParser.KW_ALL); - this.state = 949; + this.state = 955; this.match(TrinoSqlParser.KW_PRIVILEGES); } break; } - this.state = 952; + this.state = 958; this.match(TrinoSqlParser.KW_ON); - this.state = 953; + this.state = 959; this.grantObject(); - this.state = 954; + this.state = 960; this.match(TrinoSqlParser.KW_TO); - this.state = 955; + this.state = 961; (localContext as DenyContext)._grantee = this.principal(); } break; @@ -2780,40 +2789,40 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetRoleContext(localContext); this.enterOuterAlt(localContext, 47); { - this.state = 957; + this.state = 963; this.match(TrinoSqlParser.KW_SET); - this.state = 958; + this.state = 964; this.match(TrinoSqlParser.KW_ROLE); - this.state = 962; + this.state = 968; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { case 1: { - this.state = 959; + this.state = 965; this.match(TrinoSqlParser.KW_ALL); } break; case 2: { - this.state = 960; + this.state = 966; this.match(TrinoSqlParser.KW_NONE); } break; case 3: { - this.state = 961; + this.state = 967; (localContext as SetRoleContext)._role = this.identifier(); } break; } - this.state = 966; + this.state = 972; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 964; + this.state = 970; this.match(TrinoSqlParser.KW_IN); - this.state = 965; + this.state = 971; (localContext as SetRoleContext)._catalog = this.catalogRef(); } } @@ -2824,18 +2833,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowGrantsContext(localContext); this.enterOuterAlt(localContext, 48); { - this.state = 968; + this.state = 974; this.match(TrinoSqlParser.KW_SHOW); - this.state = 969; + this.state = 975; this.match(TrinoSqlParser.KW_GRANTS); - this.state = 972; + this.state = 978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 191) { { - this.state = 970; + this.state = 976; this.match(TrinoSqlParser.KW_ON); - this.state = 971; + this.state = 977; this.grantObject(); } } @@ -2846,39 +2855,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainContext(localContext); this.enterOuterAlt(localContext, 49); { - this.state = 974; + this.state = 980; this.match(TrinoSqlParser.KW_EXPLAIN); - this.state = 986; + this.state = 992; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 975; + this.state = 981; this.match(TrinoSqlParser.T__0); - this.state = 976; + this.state = 982; this.explainOption(); - this.state = 981; + this.state = 987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 977; + this.state = 983; this.match(TrinoSqlParser.T__2); - this.state = 978; + this.state = 984; this.explainOption(); } } - this.state = 983; + this.state = 989; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 984; + this.state = 990; this.match(TrinoSqlParser.T__1); } break; } - this.state = 988; + this.state = 994; this.statement(); } break; @@ -2886,21 +2895,21 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainAnalyzeContext(localContext); this.enterOuterAlt(localContext, 50); { - this.state = 989; + this.state = 995; this.match(TrinoSqlParser.KW_EXPLAIN); - this.state = 990; + this.state = 996; this.match(TrinoSqlParser.KW_ANALYZE); - this.state = 992; + this.state = 998; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 298) { { - this.state = 991; + this.state = 997; this.match(TrinoSqlParser.KW_VERBOSE); } } - this.state = 994; + this.state = 1000; this.statement(); } break; @@ -2908,13 +2917,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 51); { - this.state = 995; + this.state = 1001; this.match(TrinoSqlParser.KW_SHOW); - this.state = 996; + this.state = 1002; this.match(TrinoSqlParser.KW_CREATE); - this.state = 997; + this.state = 1003; this.match(TrinoSqlParser.KW_TABLE); - this.state = 998; + this.state = 1004; this.tableRef(); } break; @@ -2922,13 +2931,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateSchemaContext(localContext); this.enterOuterAlt(localContext, 52); { - this.state = 999; + this.state = 1005; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1000; + this.state = 1006; this.match(TrinoSqlParser.KW_CREATE); - this.state = 1001; + this.state = 1007; this.match(TrinoSqlParser.KW_SCHEMA); - this.state = 1002; + this.state = 1008; this.schemaRef(); } break; @@ -2936,13 +2945,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateViewContext(localContext); this.enterOuterAlt(localContext, 53); { - this.state = 1003; + this.state = 1009; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1004; + this.state = 1010; this.match(TrinoSqlParser.KW_CREATE); - this.state = 1005; + this.state = 1011; this.match(TrinoSqlParser.KW_VIEW); - this.state = 1006; + this.state = 1012; this.viewRef(); } break; @@ -2950,15 +2959,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 54); { - this.state = 1007; + this.state = 1013; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1008; + this.state = 1014; this.match(TrinoSqlParser.KW_CREATE); - this.state = 1009; + this.state = 1015; this.match(TrinoSqlParser.KW_MATERIALIZED); - this.state = 1010; + this.state = 1016; this.match(TrinoSqlParser.KW_VIEW); - this.state = 1011; + this.state = 1017; this.viewRef(); } break; @@ -2966,13 +2975,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCreateFunctionContext(localContext); this.enterOuterAlt(localContext, 55); { - this.state = 1012; + this.state = 1018; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1013; + this.state = 1019; this.match(TrinoSqlParser.KW_CREATE); - this.state = 1014; + this.state = 1020; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 1015; + this.state = 1021; this.functionName(); } break; @@ -2980,16 +2989,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowTablesContext(localContext); this.enterOuterAlt(localContext, 56); { - this.state = 1016; + this.state = 1022; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1017; + this.state = 1023; this.match(TrinoSqlParser.KW_TABLES); - this.state = 1020; + this.state = 1026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 106 || _la === 123) { { - this.state = 1018; + this.state = 1024; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 123)) { this.errorHandler.recoverInline(this); @@ -2998,28 +3007,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1019; + this.state = 1025; this.schemaRef(); } } - this.state = 1028; + this.state = 1034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 155) { { - this.state = 1022; + this.state = 1028; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1023; + this.state = 1029; (localContext as ShowTablesContext)._pattern = this.string_(); - this.state = 1026; + this.state = 1032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91) { { - this.state = 1024; + this.state = 1030; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1025; + this.state = 1031; (localContext as ShowTablesContext)._escape = this.string_(); } } @@ -3033,16 +3042,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowSchemasContext(localContext); this.enterOuterAlt(localContext, 57); { - this.state = 1030; + this.state = 1036; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1031; + this.state = 1037; this.match(TrinoSqlParser.KW_SCHEMAS); - this.state = 1034; + this.state = 1040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 106 || _la === 123) { { - this.state = 1032; + this.state = 1038; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 123)) { this.errorHandler.recoverInline(this); @@ -3051,28 +3060,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1033; + this.state = 1039; this.catalogRef(); } } - this.state = 1042; + this.state = 1048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 155) { { - this.state = 1036; + this.state = 1042; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1037; + this.state = 1043; (localContext as ShowSchemasContext)._pattern = this.string_(); - this.state = 1040; + this.state = 1046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91) { { - this.state = 1038; + this.state = 1044; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1039; + this.state = 1045; (localContext as ShowSchemasContext)._escape = this.string_(); } } @@ -3086,27 +3095,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowCatalogsContext(localContext); this.enterOuterAlt(localContext, 58); { - this.state = 1044; + this.state = 1050; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1045; + this.state = 1051; this.match(TrinoSqlParser.KW_CATALOGS); - this.state = 1052; + this.state = 1058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 155) { { - this.state = 1046; + this.state = 1052; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1047; + this.state = 1053; (localContext as ShowCatalogsContext)._pattern = this.string_(); - this.state = 1050; + this.state = 1056; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91) { { - this.state = 1048; + this.state = 1054; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1049; + this.state = 1055; (localContext as ShowCatalogsContext)._escape = this.string_(); } } @@ -3120,11 +3129,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 59); { - this.state = 1054; + this.state = 1060; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1055; + this.state = 1061; this.match(TrinoSqlParser.KW_COLUMNS); - this.state = 1056; + this.state = 1062; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 123)) { this.errorHandler.recoverInline(this); @@ -3133,25 +3142,25 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1057; + this.state = 1063; this.tableOrViewName(); - this.state = 1064; + this.state = 1070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 155) { { - this.state = 1058; + this.state = 1064; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1059; + this.state = 1065; (localContext as ShowColumnsContext)._pattern = this.string_(); - this.state = 1062; + this.state = 1068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91) { { - this.state = 1060; + this.state = 1066; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1061; + this.state = 1067; (localContext as ShowColumnsContext)._escape = this.string_(); } } @@ -3165,13 +3174,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowStatsContext(localContext); this.enterOuterAlt(localContext, 60); { - this.state = 1066; + this.state = 1072; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1067; + this.state = 1073; this.match(TrinoSqlParser.KW_STATS); - this.state = 1068; + this.state = 1074; this.match(TrinoSqlParser.KW_FOR); - this.state = 1069; + this.state = 1075; this.tableOrViewName(); } break; @@ -3179,17 +3188,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowStatsForQueryContext(localContext); this.enterOuterAlt(localContext, 61); { - this.state = 1070; + this.state = 1076; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1071; + this.state = 1077; this.match(TrinoSqlParser.KW_STATS); - this.state = 1072; + this.state = 1078; this.match(TrinoSqlParser.KW_FOR); - this.state = 1073; + this.state = 1079; this.match(TrinoSqlParser.T__0); - this.state = 1074; + this.state = 1080; this.rootQuery(); - this.state = 1075; + this.state = 1081; this.match(TrinoSqlParser.T__1); } break; @@ -3197,26 +3206,26 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowRolesContext(localContext); this.enterOuterAlt(localContext, 62); { - this.state = 1077; + this.state = 1083; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1079; + this.state = 1085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57) { { - this.state = 1078; + this.state = 1084; this.match(TrinoSqlParser.KW_CURRENT); } } - this.state = 1081; + this.state = 1087; this.match(TrinoSqlParser.KW_ROLES); - this.state = 1084; + this.state = 1090; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 106 || _la === 123) { { - this.state = 1082; + this.state = 1088; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 123)) { this.errorHandler.recoverInline(this); @@ -3225,7 +3234,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1083; + this.state = 1089; this.catalogRef(); } } @@ -3236,18 +3245,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowRoleGrantsContext(localContext); this.enterOuterAlt(localContext, 63); { - this.state = 1086; + this.state = 1092; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1087; + this.state = 1093; this.match(TrinoSqlParser.KW_ROLE); - this.state = 1088; + this.state = 1094; this.match(TrinoSqlParser.KW_GRANTS); - this.state = 1091; + this.state = 1097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 106 || _la === 123) { { - this.state = 1089; + this.state = 1095; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 123)) { this.errorHandler.recoverInline(this); @@ -3256,7 +3265,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1090; + this.state = 1096; this.catalogRef(); } } @@ -3267,9 +3276,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 64); { - this.state = 1093; + this.state = 1099; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1094; + this.state = 1100; this.tableOrViewName(); } break; @@ -3277,9 +3286,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 65); { - this.state = 1095; + this.state = 1101; this.match(TrinoSqlParser.KW_DESC); - this.state = 1096; + this.state = 1102; this.tableOrViewName(); } break; @@ -3287,16 +3296,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowFunctionsContext(localContext); this.enterOuterAlt(localContext, 66); { - this.state = 1097; + this.state = 1103; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1098; + this.state = 1104; this.match(TrinoSqlParser.KW_FUNCTIONS); - this.state = 1101; + this.state = 1107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 106 || _la === 123) { { - this.state = 1099; + this.state = 1105; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 123)) { this.errorHandler.recoverInline(this); @@ -3305,28 +3314,28 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1100; + this.state = 1106; this.schemaRef(); } } - this.state = 1109; + this.state = 1115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 155) { { - this.state = 1103; + this.state = 1109; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1104; + this.state = 1110; (localContext as ShowFunctionsContext)._pattern = this.string_(); - this.state = 1107; + this.state = 1113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91) { { - this.state = 1105; + this.state = 1111; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1106; + this.state = 1112; (localContext as ShowFunctionsContext)._escape = this.string_(); } } @@ -3340,27 +3349,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowSessionContext(localContext); this.enterOuterAlt(localContext, 67); { - this.state = 1111; + this.state = 1117; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1112; + this.state = 1118; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1119; + this.state = 1125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 155) { { - this.state = 1113; + this.state = 1119; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1114; + this.state = 1120; (localContext as ShowSessionContext)._pattern = this.string_(); - this.state = 1117; + this.state = 1123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91) { { - this.state = 1115; + this.state = 1121; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 1116; + this.state = 1122; (localContext as ShowSessionContext)._escape = this.string_(); } } @@ -3374,13 +3383,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSessionAuthorizationContext(localContext); this.enterOuterAlt(localContext, 68); { - this.state = 1121; + this.state = 1127; this.match(TrinoSqlParser.KW_SET); - this.state = 1122; + this.state = 1128; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1123; + this.state = 1129; this.match(TrinoSqlParser.KW_AUTHORIZATION); - this.state = 1124; + this.state = 1130; this.authorizationUser(); } break; @@ -3388,11 +3397,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ResetSessionAuthorizationContext(localContext); this.enterOuterAlt(localContext, 69); { - this.state = 1125; + this.state = 1131; this.match(TrinoSqlParser.KW_RESET); - this.state = 1126; + this.state = 1132; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1127; + this.state = 1133; this.match(TrinoSqlParser.KW_AUTHORIZATION); } break; @@ -3400,15 +3409,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetSessionContext(localContext); this.enterOuterAlt(localContext, 70); { - this.state = 1128; + this.state = 1134; this.match(TrinoSqlParser.KW_SET); - this.state = 1129; + this.state = 1135; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1130; + this.state = 1136; this.qualifiedName(); - this.state = 1131; + this.state = 1137; this.match(TrinoSqlParser.EQ); - this.state = 1132; + this.state = 1138; this.expression(); } break; @@ -3416,11 +3425,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ResetSessionContext(localContext); this.enterOuterAlt(localContext, 71); { - this.state = 1134; + this.state = 1140; this.match(TrinoSqlParser.KW_RESET); - this.state = 1135; + this.state = 1141; this.match(TrinoSqlParser.KW_SESSION); - this.state = 1136; + this.state = 1142; this.qualifiedName(); } break; @@ -3428,30 +3437,30 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StartTransactionContext(localContext); this.enterOuterAlt(localContext, 72); { - this.state = 1137; + this.state = 1143; this.match(TrinoSqlParser.KW_START); - this.state = 1138; + this.state = 1144; this.match(TrinoSqlParser.KW_TRANSACTION); - this.state = 1147; + this.state = 1153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 135 || _la === 221) { { - this.state = 1139; + this.state = 1145; this.transactionMode(); - this.state = 1144; + this.state = 1150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1140; + this.state = 1146; this.match(TrinoSqlParser.T__2); - this.state = 1141; + this.state = 1147; this.transactionMode(); } } - this.state = 1146; + this.state = 1152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3464,14 +3473,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommitContext(localContext); this.enterOuterAlt(localContext, 73); { - this.state = 1149; + this.state = 1155; this.match(TrinoSqlParser.KW_COMMIT); - this.state = 1151; + this.state = 1157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 1150; + this.state = 1156; this.match(TrinoSqlParser.KW_WORK); } } @@ -3482,14 +3491,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RollbackContext(localContext); this.enterOuterAlt(localContext, 74); { - this.state = 1153; + this.state = 1159; this.match(TrinoSqlParser.KW_ROLLBACK); - this.state = 1155; + this.state = 1161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 1154; + this.state = 1160; this.match(TrinoSqlParser.KW_WORK); } } @@ -3500,13 +3509,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PrepareContext(localContext); this.enterOuterAlt(localContext, 75); { - this.state = 1157; + this.state = 1163; this.match(TrinoSqlParser.KW_PREPARE); - this.state = 1158; + this.state = 1164; this.identifier(); - this.state = 1159; + this.state = 1165; this.match(TrinoSqlParser.KW_FROM); - this.state = 1160; + this.state = 1166; this.statement(); } break; @@ -3514,11 +3523,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeallocateContext(localContext); this.enterOuterAlt(localContext, 76); { - this.state = 1162; + this.state = 1168; this.match(TrinoSqlParser.KW_DEALLOCATE); - this.state = 1163; + this.state = 1169; this.match(TrinoSqlParser.KW_PREPARE); - this.state = 1164; + this.state = 1170; this.identifier(); } break; @@ -3526,32 +3535,32 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExecuteContext(localContext); this.enterOuterAlt(localContext, 77); { - this.state = 1165; + this.state = 1171; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 1166; + this.state = 1172; this.identifier(); - this.state = 1176; + this.state = 1182; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 1167; + this.state = 1173; this.match(TrinoSqlParser.KW_USING); - this.state = 1168; + this.state = 1174; this.expression(); - this.state = 1173; + this.state = 1179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1169; + this.state = 1175; this.match(TrinoSqlParser.T__2); - this.state = 1170; + this.state = 1176; this.expression(); } } - this.state = 1175; + this.state = 1181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3564,34 +3573,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExecuteImmediateContext(localContext); this.enterOuterAlt(localContext, 78); { - this.state = 1178; + this.state = 1184; this.match(TrinoSqlParser.KW_EXECUTE); - this.state = 1179; + this.state = 1185; this.match(TrinoSqlParser.KW_IMMEDIATE); - this.state = 1180; + this.state = 1186; this.string_(); - this.state = 1190; + this.state = 1196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 1181; + this.state = 1187; this.match(TrinoSqlParser.KW_USING); - this.state = 1182; + this.state = 1188; this.expression(); - this.state = 1187; + this.state = 1193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1183; + this.state = 1189; this.match(TrinoSqlParser.T__2); - this.state = 1184; + this.state = 1190; this.expression(); } } - this.state = 1189; + this.state = 1195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3604,11 +3613,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DescribeInputContext(localContext); this.enterOuterAlt(localContext, 79); { - this.state = 1192; + this.state = 1198; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1193; + this.state = 1199; this.match(TrinoSqlParser.KW_INPUT); - this.state = 1194; + this.state = 1200; this.identifier(); } break; @@ -3616,11 +3625,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DescribeOutputContext(localContext); this.enterOuterAlt(localContext, 80); { - this.state = 1195; + this.state = 1201; this.match(TrinoSqlParser.KW_DESCRIBE); - this.state = 1196; + this.state = 1202; this.match(TrinoSqlParser.KW_OUTPUT); - this.state = 1197; + this.state = 1203; this.identifier(); } break; @@ -3628,11 +3637,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetPathContext(localContext); this.enterOuterAlt(localContext, 81); { - this.state = 1198; + this.state = 1204; this.match(TrinoSqlParser.KW_SET); - this.state = 1199; + this.state = 1205; this.match(TrinoSqlParser.KW_PATH); - this.state = 1200; + this.state = 1206; this.pathSpecification(); } break; @@ -3640,24 +3649,24 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetTimeZoneContext(localContext); this.enterOuterAlt(localContext, 82); { - this.state = 1201; + this.state = 1207; this.match(TrinoSqlParser.KW_SET); - this.state = 1202; + this.state = 1208; this.match(TrinoSqlParser.KW_TIME); - this.state = 1203; + this.state = 1209; this.match(TrinoSqlParser.KW_ZONE); - this.state = 1206; + this.state = 1212; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1204; + this.state = 1210; this.match(TrinoSqlParser.KW_LOCAL); } break; case 2: { - this.state = 1205; + this.state = 1211; this.expression(); } break; @@ -3668,36 +3677,36 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UpdateContext(localContext); this.enterOuterAlt(localContext, 83); { - this.state = 1208; + this.state = 1214; this.match(TrinoSqlParser.KW_UPDATE); - this.state = 1209; + this.state = 1215; this.tableRef(); - this.state = 1210; + this.state = 1216; this.match(TrinoSqlParser.KW_SET); - this.state = 1211; + this.state = 1217; this.updateAssignment(); - this.state = 1216; + this.state = 1222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1212; + this.state = 1218; this.match(TrinoSqlParser.T__2); - this.state = 1213; + this.state = 1219; this.updateAssignment(); } } - this.state = 1218; + this.state = 1224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1220; + this.state = 1226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 302) { { - this.state = 1219; + this.state = 1225; this.whereClause(); } } @@ -3708,51 +3717,51 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeContext(localContext); this.enterOuterAlt(localContext, 84); { - this.state = 1222; + this.state = 1228; this.match(TrinoSqlParser.KW_MERGE); - this.state = 1223; + this.state = 1229; this.match(TrinoSqlParser.KW_INTO); - this.state = 1224; + this.state = 1230; this.tableRef(); - this.state = 1229; + this.state = 1235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282056543) !== 0) || ((((_la - 50)) & ~0x1F) === 0 && ((1 << (_la - 50)) & 3069640845) !== 0) || ((((_la - 82)) & ~0x1F) === 0 && ((1 << (_la - 82)) & 4240329075) !== 0) || ((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & 2171416041) !== 0) || ((((_la - 146)) & ~0x1F) === 0 && ((1 << (_la - 146)) & 4160722303) !== 0) || ((((_la - 178)) & ~0x1F) === 0 && ((1 << (_la - 178)) & 4293517199) !== 0) || ((((_la - 210)) & ~0x1F) === 0 && ((1 << (_la - 210)) & 3724537823) !== 0) || ((((_la - 242)) & ~0x1F) === 0 && ((1 << (_la - 242)) & 2130182015) !== 0) || ((((_la - 275)) & ~0x1F) === 0 && ((1 << (_la - 275)) & 3015636855) !== 0) || ((((_la - 307)) & ~0x1F) === 0 && ((1 << (_la - 307)) & 1006633023) !== 0)) { { - this.state = 1226; + this.state = 1232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1225; + this.state = 1231; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1228; + this.state = 1234; this.identifier(); } } - this.state = 1231; + this.state = 1237; this.match(TrinoSqlParser.KW_USING); - this.state = 1232; + this.state = 1238; this.relation(0); - this.state = 1233; + this.state = 1239; this.match(TrinoSqlParser.KW_ON); - this.state = 1234; + this.state = 1240; this.expression(); - this.state = 1236; + this.state = 1242; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1235; + this.state = 1241; this.mergeCase(); } } - this.state = 1238; + this.state = 1244; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 301); @@ -3762,15 +3771,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowTableCommentContext(localContext); this.enterOuterAlt(localContext, 85); { - this.state = 1240; + this.state = 1246; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1241; + this.state = 1247; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 1242; + this.state = 1248; this.match(TrinoSqlParser.KW_ON); - this.state = 1243; + this.state = 1249; this.match(TrinoSqlParser.KW_TABLE); - this.state = 1244; + this.state = 1250; this.tableRef(); } break; @@ -3778,15 +3787,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ShowColumnCommentContext(localContext); this.enterOuterAlt(localContext, 86); { - this.state = 1245; + this.state = 1251; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1246; + this.state = 1252; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 1247; + this.state = 1253; this.match(TrinoSqlParser.KW_ON); - this.state = 1248; + this.state = 1254; this.match(TrinoSqlParser.KW_COLUMN); - this.state = 1249; + this.state = 1255; this.columnRef(); } break; @@ -3812,17 +3821,17 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1253; + this.state = 1259; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: { - this.state = 1252; + this.state = 1258; this.withFunction(); } break; } - this.state = 1255; + this.state = 1261; this.query(); } } @@ -3847,23 +3856,23 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1257; + this.state = 1263; this.match(TrinoSqlParser.KW_WITH); - this.state = 1258; + this.state = 1264; this.functionSpecification(); - this.state = 1263; + this.state = 1269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1259; + this.state = 1265; this.match(TrinoSqlParser.T__2); - this.state = 1260; + this.state = 1266; this.functionSpecification(); } } - this.state = 1265; + this.state = 1271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3891,17 +3900,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QueryStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1267; + this.state = 1273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 305) { { - this.state = 1266; + this.state = 1272; this.with_(); } } - this.state = 1269; + this.state = 1275; this.queryNoWith(); } } @@ -3926,33 +3935,33 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1271; + this.state = 1277; this.match(TrinoSqlParser.KW_WITH); - this.state = 1273; + this.state = 1279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 222) { { - this.state = 1272; + this.state = 1278; this.match(TrinoSqlParser.KW_RECURSIVE); } } - this.state = 1275; + this.state = 1281; this.namedQuery(); - this.state = 1280; + this.state = 1286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1276; + this.state = 1282; this.match(TrinoSqlParser.T__2); - this.state = 1277; + this.state = 1283; this.namedQuery(); } } - this.state = 1282; + this.state = 1288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3976,7 +3985,7 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new TableElementContext(this.context, this.state); this.enterRule(localContext, 26, TrinoSqlParser.RULE_tableElement); try { - this.state = 1285; + this.state = 1291; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -4199,14 +4208,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 1283; + this.state = 1289; this.columnDefinition(); } break; case TrinoSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 1284; + this.state = 1290; this.likeClause(); } break; @@ -4235,42 +4244,42 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1287; + this.state = 1293; this.columnNameCreate(); - this.state = 1288; + this.state = 1294; localContext._colType = this.type_(0); - this.state = 1291; + this.state = 1297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 1289; + this.state = 1295; this.match(TrinoSqlParser.KW_NOT); - this.state = 1290; + this.state = 1296; this.match(TrinoSqlParser.KW_NULL); } } - this.state = 1295; + this.state = 1301; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1293; + this.state = 1299; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 1294; + this.state = 1300; localContext._comment = this.string_(); } break; } - this.state = 1299; + this.state = 1305; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 134, this.context) ) { case 1: { - this.state = 1297; + this.state = 1303; this.match(TrinoSqlParser.KW_WITH); - this.state = 1298; + this.state = 1304; this.properties(); } break; @@ -4298,16 +4307,16 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1301; + this.state = 1307; this.match(TrinoSqlParser.KW_LIKE); - this.state = 1302; + this.state = 1308; this.tableRef(); - this.state = 1305; + this.state = 1311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 124) { { - this.state = 1303; + this.state = 1309; localContext._optionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 93 || _la === 124)) { @@ -4317,7 +4326,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1304; + this.state = 1310; this.match(TrinoSqlParser.KW_PROPERTIES); } } @@ -4344,11 +4353,11 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1307; + this.state = 1313; this.match(TrinoSqlParser.T__0); - this.state = 1308; + this.state = 1314; this.propertyAssignments(); - this.state = 1309; + this.state = 1315; this.match(TrinoSqlParser.T__1); } } @@ -4373,21 +4382,21 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1311; + this.state = 1317; this.property(); - this.state = 1316; + this.state = 1322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1312; + this.state = 1318; this.match(TrinoSqlParser.T__2); - this.state = 1313; + this.state = 1319; this.property(); } } - this.state = 1318; + this.state = 1324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4413,11 +4422,11 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1319; + this.state = 1325; this.identifier(); - this.state = 1320; + this.state = 1326; this.match(TrinoSqlParser.EQ); - this.state = 1321; + this.state = 1327; this.propertyValue(); } } @@ -4439,14 +4448,14 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new PropertyValueContext(this.context, this.state); this.enterRule(localContext, 38, TrinoSqlParser.RULE_propertyValue); try { - this.state = 1325; + this.state = 1331; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: localContext = new DefaultPropertyValueContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1323; + this.state = 1329; this.match(TrinoSqlParser.KW_DEFAULT); } break; @@ -4454,7 +4463,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NonDefaultPropertyValueContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1324; + this.state = 1330; this.expression(); } break; @@ -4481,53 +4490,53 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1327; + this.state = 1333; this.queryTerm(0); - this.state = 1338; + this.state = 1344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 1328; + this.state = 1334; this.match(TrinoSqlParser.KW_ORDER); - this.state = 1329; + this.state = 1335; this.match(TrinoSqlParser.KW_BY); - this.state = 1330; + this.state = 1336; this.sortItem(); - this.state = 1335; + this.state = 1341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1331; + this.state = 1337; this.match(TrinoSqlParser.T__2); - this.state = 1332; + this.state = 1338; this.sortItem(); } } - this.state = 1337; + this.state = 1343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1345; + this.state = 1351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1340; + this.state = 1346; this.match(TrinoSqlParser.KW_OFFSET); - this.state = 1341; + this.state = 1347; localContext._offset = this.rowCount(); - this.state = 1343; + this.state = 1349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 240 || _la === 241) { { - this.state = 1342; + this.state = 1348; _la = this.tokenStream.LA(1); if(!(_la === 240 || _la === 241)) { this.errorHandler.recoverInline(this); @@ -4542,15 +4551,15 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 1360; + this.state = 1366; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_LIMIT: { { - this.state = 1347; + this.state = 1353; this.match(TrinoSqlParser.KW_LIMIT); - this.state = 1348; + this.state = 1354; localContext._limit = this.limitRowCount(); } } @@ -4558,9 +4567,9 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_FETCH: { { - this.state = 1349; + this.state = 1355; this.match(TrinoSqlParser.KW_FETCH); - this.state = 1350; + this.state = 1356; _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 175)) { this.errorHandler.recoverInline(this); @@ -4569,17 +4578,17 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1352; + this.state = 1358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325 || _la === 330) { { - this.state = 1351; + this.state = 1357; localContext._fetchFirst = this.rowCount(); } } - this.state = 1354; + this.state = 1360; _la = this.tokenStream.LA(1); if(!(_la === 240 || _la === 241)) { this.errorHandler.recoverInline(this); @@ -4588,20 +4597,20 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1358; + this.state = 1364; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ONLY: { - this.state = 1355; + this.state = 1361; this.match(TrinoSqlParser.KW_ONLY); } break; case TrinoSqlParser.KW_WITH: { - this.state = 1356; + this.state = 1362; this.match(TrinoSqlParser.KW_WITH); - this.state = 1357; + this.state = 1363; this.match(TrinoSqlParser.KW_TIES); } break; @@ -4671,13 +4680,13 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new LimitRowCountContext(this.context, this.state); this.enterRule(localContext, 42, TrinoSqlParser.RULE_limitRowCount); try { - this.state = 1364; + this.state = 1370; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1362; + this.state = 1368; this.match(TrinoSqlParser.KW_ALL); } break; @@ -4685,7 +4694,7 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 1363; + this.state = 1369; this.rowCount(); } break; @@ -4714,7 +4723,7 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1366; + this.state = 1372; _la = this.tokenStream.LA(1); if(!(_la === 325 || _la === 330)) { this.errorHandler.recoverInline(this); @@ -4763,11 +4772,11 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1369; + this.state = 1375; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1385; + this.state = 1391; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -4777,7 +4786,7 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1383; + this.state = 1389; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: @@ -4785,23 +4794,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_queryTerm); - this.state = 1371; + this.state = 1377; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1372; + this.state = 1378; (localContext as SetOperationContext)._operator = this.match(TrinoSqlParser.KW_INTERSECT); - this.state = 1374; + this.state = 1380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 80) { { - this.state = 1373; + this.state = 1379; this.setQuantifier(); } } - this.state = 1376; + this.state = 1382; (localContext as SetOperationContext)._right = this.queryTerm(3); } break; @@ -4810,11 +4819,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_queryTerm); - this.state = 1377; + this.state = 1383; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1378; + this.state = 1384; (localContext as SetOperationContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 282)) { @@ -4824,24 +4833,24 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1380; + this.state = 1386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 80) { { - this.state = 1379; + this.state = 1385; this.setQuantifier(); } } - this.state = 1382; + this.state = 1388; (localContext as SetOperationContext)._right = this.queryTerm(2); } break; } } } - this.state = 1387; + this.state = 1393; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); } @@ -4866,14 +4875,14 @@ export class TrinoSqlParser extends SQLParserBase { this.enterRule(localContext, 48, TrinoSqlParser.RULE_queryPrimary); try { let alternative: number; - this.state = 1404; + this.state = 1410; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_SELECT: localContext = new QueryPrimaryDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1388; + this.state = 1394; this.querySpecification(); } break; @@ -4881,9 +4890,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1389; + this.state = 1395; this.match(TrinoSqlParser.KW_TABLE); - this.state = 1390; + this.state = 1396; this.tableRef(); } break; @@ -4891,25 +4900,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InlineTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1391; + this.state = 1397; this.match(TrinoSqlParser.KW_VALUES); - this.state = 1392; + this.state = 1398; this.expression(); - this.state = 1397; + this.state = 1403; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1393; + this.state = 1399; this.match(TrinoSqlParser.T__2); - this.state = 1394; + this.state = 1400; this.expression(); } } } - this.state = 1399; + this.state = 1405; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 150, this.context); } @@ -4919,11 +4928,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubqueryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1400; + this.state = 1406; this.match(TrinoSqlParser.T__0); - this.state = 1401; + this.state = 1407; this.queryNoWith(); - this.state = 1402; + this.state = 1408; this.match(TrinoSqlParser.T__1); } break; @@ -4952,28 +4961,28 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1408; + this.state = 1414; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1406; + this.state = 1412; this.columnRef(); } break; case 2: { - this.state = 1407; + this.state = 1413; this.expression(); } break; } - this.state = 1411; + this.state = 1417; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1410; + this.state = 1416; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 29 || _la === 76)) { @@ -4986,14 +4995,14 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 1415; + this.state = 1421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 186) { { - this.state = 1413; + this.state = 1419; this.match(TrinoSqlParser.KW_NULLS); - this.state = 1414; + this.state = 1420; localContext._nullOrdering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 149)) { @@ -5029,108 +5038,108 @@ export class TrinoSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1417; + this.state = 1423; this.match(TrinoSqlParser.KW_SELECT); - this.state = 1419; + this.state = 1425; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: { - this.state = 1418; + this.state = 1424; this.setQuantifier(); } break; } - this.state = 1421; + this.state = 1427; this.selectList(); - this.state = 1431; + this.state = 1437; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: { - this.state = 1422; + this.state = 1428; this.match(TrinoSqlParser.KW_FROM); - this.state = 1423; + this.state = 1429; this.relation(0); - this.state = 1428; + this.state = 1434; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1424; + this.state = 1430; this.match(TrinoSqlParser.T__2); - this.state = 1425; + this.state = 1431; this.relation(0); } } } - this.state = 1430; + this.state = 1436; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 156, this.context); } } break; } - this.state = 1434; + this.state = 1440; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { case 1: { - this.state = 1433; + this.state = 1439; this.whereClause(); } break; } - this.state = 1439; + this.state = 1445; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1436; + this.state = 1442; this.match(TrinoSqlParser.KW_GROUP); - this.state = 1437; + this.state = 1443; this.match(TrinoSqlParser.KW_BY); - this.state = 1438; + this.state = 1444; this.groupBy(); } break; } - this.state = 1442; + this.state = 1448; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 1441; + this.state = 1447; this.havingClause(); } break; } - this.state = 1453; + this.state = 1459; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: { - this.state = 1444; + this.state = 1450; this.match(TrinoSqlParser.KW_WINDOW); - this.state = 1445; + this.state = 1451; this.windowDefinition(); - this.state = 1450; + this.state = 1456; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1446; + this.state = 1452; this.match(TrinoSqlParser.T__2); - this.state = 1447; + this.state = 1453; this.windowDefinition(); } } } - this.state = 1452; + this.state = 1458; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); } @@ -5159,9 +5168,9 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1455; + this.state = 1461; this.match(TrinoSqlParser.KW_WHERE); - this.state = 1456; + this.state = 1462; localContext._where = this.booleanExpression(0); } } @@ -5185,9 +5194,9 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1458; + this.state = 1464; this.match(TrinoSqlParser.KW_HAVING); - this.state = 1459; + this.state = 1465; localContext._having = this.booleanExpression(0); } } @@ -5212,23 +5221,23 @@ export class TrinoSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1461; + this.state = 1467; this.selectItem(); - this.state = 1466; + this.state = 1472; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 163, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1462; + this.state = 1468; this.match(TrinoSqlParser.T__2); - this.state = 1463; + this.state = 1469; this.selectItem(); } } } - this.state = 1468; + this.state = 1474; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 163, this.context); } @@ -5255,33 +5264,33 @@ export class TrinoSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1470; + this.state = 1476; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: { - this.state = 1469; + this.state = 1475; this.setQuantifier(); } break; } - this.state = 1472; + this.state = 1478; this.groupingElement(); - this.state = 1477; + this.state = 1483; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 165, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1473; + this.state = 1479; this.match(TrinoSqlParser.T__2); - this.state = 1474; + this.state = 1480; this.groupingElement(); } } } - this.state = 1479; + this.state = 1485; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 165, this.context); } @@ -5308,21 +5317,21 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1480; + this.state = 1486; this.expression(); - this.state = 1485; + this.state = 1491; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1481; + this.state = 1487; this.match(TrinoSqlParser.T__2); - this.state = 1482; + this.state = 1488; this.expression(); } } - this.state = 1487; + this.state = 1493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5347,14 +5356,14 @@ export class TrinoSqlParser extends SQLParserBase { this.enterRule(localContext, 64, TrinoSqlParser.RULE_groupingElement); let _la: number; try { - this.state = 1528; + this.state = 1534; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { case 1: localContext = new SingleGroupingSetContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1488; + this.state = 1494; this.groupingSet(); } break; @@ -5362,37 +5371,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RollupContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1489; + this.state = 1495; this.match(TrinoSqlParser.KW_ROLLUP); - this.state = 1490; + this.state = 1496; this.match(TrinoSqlParser.T__0); - this.state = 1499; + this.state = 1505; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 1491; + this.state = 1497; this.groupingSet(); - this.state = 1496; + this.state = 1502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1492; + this.state = 1498; this.match(TrinoSqlParser.T__2); - this.state = 1493; + this.state = 1499; this.groupingSet(); } } - this.state = 1498; + this.state = 1504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1501; + this.state = 1507; this.match(TrinoSqlParser.T__1); } break; @@ -5400,37 +5409,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CubeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1502; + this.state = 1508; this.match(TrinoSqlParser.KW_CUBE); - this.state = 1503; + this.state = 1509; this.match(TrinoSqlParser.T__0); - this.state = 1512; + this.state = 1518; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { case 1: { - this.state = 1504; + this.state = 1510; this.groupingSet(); - this.state = 1509; + this.state = 1515; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1505; + this.state = 1511; this.match(TrinoSqlParser.T__2); - this.state = 1506; + this.state = 1512; this.groupingSet(); } } - this.state = 1511; + this.state = 1517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1514; + this.state = 1520; this.match(TrinoSqlParser.T__1); } break; @@ -5438,31 +5447,31 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MultipleGroupingSetsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1515; + this.state = 1521; this.match(TrinoSqlParser.KW_GROUPING); - this.state = 1516; + this.state = 1522; this.match(TrinoSqlParser.KW_SETS); - this.state = 1517; + this.state = 1523; this.match(TrinoSqlParser.T__0); - this.state = 1518; + this.state = 1524; this.groupingSet(); - this.state = 1523; + this.state = 1529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1519; + this.state = 1525; this.match(TrinoSqlParser.T__2); - this.state = 1520; + this.state = 1526; this.groupingSet(); } } - this.state = 1525; + this.state = 1531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1526; + this.state = 1532; this.match(TrinoSqlParser.T__1); } break; @@ -5487,48 +5496,48 @@ export class TrinoSqlParser extends SQLParserBase { this.enterRule(localContext, 66, TrinoSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 1543; + this.state = 1549; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 175, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1530; + this.state = 1536; this.match(TrinoSqlParser.T__0); - this.state = 1539; + this.state = 1545; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 174, this.context) ) { case 1: { - this.state = 1531; + this.state = 1537; this.groupingTerm(); - this.state = 1536; + this.state = 1542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1532; + this.state = 1538; this.match(TrinoSqlParser.T__2); - this.state = 1533; + this.state = 1539; this.groupingTerm(); } } - this.state = 1538; + this.state = 1544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1541; + this.state = 1547; this.match(TrinoSqlParser.T__1); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1542; + this.state = 1548; this.groupingTerm(); } break; @@ -5552,20 +5561,20 @@ export class TrinoSqlParser extends SQLParserBase { let localContext = new GroupingTermContext(this.context, this.state); this.enterRule(localContext, 68, TrinoSqlParser.RULE_groupingTerm); try { - this.state = 1547; + this.state = 1553; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1545; + this.state = 1551; this.columnRef(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1546; + this.state = 1552; this.expression(); } break; @@ -5591,15 +5600,15 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1549; + this.state = 1555; localContext._name = this.identifier(); - this.state = 1550; + this.state = 1556; this.match(TrinoSqlParser.KW_AS); - this.state = 1551; + this.state = 1557; this.match(TrinoSqlParser.T__0); - this.state = 1552; + this.state = 1558; this.windowSpecification(); - this.state = 1553; + this.state = 1559; this.match(TrinoSqlParser.T__1); } } @@ -5624,66 +5633,66 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1556; + this.state = 1562; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: { - this.state = 1555; + this.state = 1561; localContext._existingWindowName = this.identifier(); } break; } - this.state = 1561; + this.state = 1567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202) { { - this.state = 1558; + this.state = 1564; this.match(TrinoSqlParser.KW_PARTITION); - this.state = 1559; + this.state = 1565; this.match(TrinoSqlParser.KW_BY); - this.state = 1560; + this.state = 1566; this.partitionBy(); } } - this.state = 1573; + this.state = 1579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 1563; + this.state = 1569; this.match(TrinoSqlParser.KW_ORDER); - this.state = 1564; + this.state = 1570; this.match(TrinoSqlParser.KW_BY); - this.state = 1565; + this.state = 1571; this.sortItem(); - this.state = 1570; + this.state = 1576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1566; + this.state = 1572; this.match(TrinoSqlParser.T__2); - this.state = 1567; + this.state = 1573; this.sortItem(); } } - this.state = 1572; + this.state = 1578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1576; + this.state = 1582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 117 || _la === 169 || _la === 220 || _la === 241) { { - this.state = 1575; + this.state = 1581; this.windowFrame(); } } @@ -5711,25 +5720,25 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1578; + this.state = 1584; localContext._name = this.identifier(); - this.state = 1580; + this.state = 1586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 1579; + this.state = 1585; this.columnAliases(); } } - this.state = 1582; + this.state = 1588; this.match(TrinoSqlParser.KW_AS); - this.state = 1583; + this.state = 1589; this.match(TrinoSqlParser.T__0); - this.state = 1584; + this.state = 1590; this.query(); - this.state = 1585; + this.state = 1591; this.match(TrinoSqlParser.T__1); } } @@ -5754,7 +5763,7 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1587; + this.state = 1593; _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 80)) { this.errorHandler.recoverInline(this); @@ -5784,44 +5793,44 @@ export class TrinoSqlParser extends SQLParserBase { this.enterRule(localContext, 78, TrinoSqlParser.RULE_selectItem); let _la: number; try { - this.state = 1605; + this.state = 1611; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1591; + this.state = 1597; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { - this.state = 1589; + this.state = 1595; this.selectLiteralColumnName(); } break; case 2: { - this.state = 1590; + this.state = 1596; this.selectExpressionColumnName(); } break; } - this.state = 1597; + this.state = 1603; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: { - this.state = 1594; + this.state = 1600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1593; + this.state = 1599; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1596; + this.state = 1602; localContext._alias = this.identifier(); } break; @@ -5831,16 +5840,16 @@ export class TrinoSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1599; + this.state = 1605; this.tableAllColumns(); - this.state = 1602; + this.state = 1608; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: { - this.state = 1600; + this.state = 1606; this.match(TrinoSqlParser.KW_AS); - this.state = 1601; + this.state = 1607; this.columnAliases(); } break; @@ -5850,7 +5859,7 @@ export class TrinoSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1604; + this.state = 1610; this.selectAllWithoutTable(); } break; @@ -5876,7 +5885,7 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1607; + this.state = 1613; this.match(TrinoSqlParser.ASTERISK); } } @@ -5900,11 +5909,11 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1609; + this.state = 1615; this.primaryExpression(0); - this.state = 1610; + this.state = 1616; this.match(TrinoSqlParser.T__3); - this.state = 1611; + this.state = 1617; this.match(TrinoSqlParser.ASTERISK); } } @@ -5928,7 +5937,7 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1613; + this.state = 1619; this.columnRef(); } } @@ -5952,7 +5961,7 @@ export class TrinoSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1615; + this.state = 1621; this.expression(); } } @@ -5993,11 +6002,11 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1618; + this.state = 1624; this.sampledRelation(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1638; + this.state = 1644; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 189, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -6011,20 +6020,20 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JoinRelationContext(new RelationContext(parentContext, parentState)); (localContext as JoinRelationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_relation); - this.state = 1620; + this.state = 1626; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1634; + this.state = 1640; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_CROSS: { - this.state = 1621; + this.state = 1627; this.match(TrinoSqlParser.KW_CROSS); - this.state = 1622; + this.state = 1628; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1623; + this.state = 1629; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -6034,25 +6043,25 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_LEFT: case TrinoSqlParser.KW_RIGHT: { - this.state = 1624; + this.state = 1630; this.joinType(); - this.state = 1625; + this.state = 1631; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1626; + this.state = 1632; (localContext as JoinRelationContext)._rightRelation = this.relation(0); - this.state = 1627; + this.state = 1633; this.joinCriteria(); } break; case TrinoSqlParser.KW_NATURAL: { - this.state = 1629; + this.state = 1635; this.match(TrinoSqlParser.KW_NATURAL); - this.state = 1630; + this.state = 1636; this.joinType(); - this.state = 1631; + this.state = 1637; this.match(TrinoSqlParser.KW_JOIN); - this.state = 1632; + this.state = 1638; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -6062,7 +6071,7 @@ export class TrinoSqlParser extends SQLParserBase { } } } - this.state = 1640; + this.state = 1646; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 189, this.context); } @@ -6087,19 +6096,19 @@ export class TrinoSqlParser extends SQLParserBase { this.enterRule(localContext, 90, TrinoSqlParser.RULE_joinType); let _la: number; try { - this.state = 1656; + this.state = 1662; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_INNER: case TrinoSqlParser.KW_JOIN: this.enterOuterAlt(localContext, 1); { - this.state = 1642; + this.state = 1648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 126) { { - this.state = 1641; + this.state = 1647; this.match(TrinoSqlParser.KW_INNER); } } @@ -6109,14 +6118,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_LEFT: this.enterOuterAlt(localContext, 2); { - this.state = 1644; + this.state = 1650; this.match(TrinoSqlParser.KW_LEFT); - this.state = 1646; + this.state = 1652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 198) { { - this.state = 1645; + this.state = 1651; this.match(TrinoSqlParser.KW_OUTER); } } @@ -6126,14 +6135,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_RIGHT: this.enterOuterAlt(localContext, 3); { - this.state = 1648; + this.state = 1654; this.match(TrinoSqlParser.KW_RIGHT); - this.state = 1650; + this.state = 1656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 198) { { - this.state = 1649; + this.state = 1655; this.match(TrinoSqlParser.KW_OUTER); } } @@ -6143,14 +6152,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_FULL: this.enterOuterAlt(localContext, 4); { - this.state = 1652; + this.state = 1658; this.match(TrinoSqlParser.KW_FULL); - this.state = 1654; + this.state = 1660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 198) { { - this.state = 1653; + this.state = 1659; this.match(TrinoSqlParser.KW_OUTER); } } @@ -6180,44 +6189,62 @@ export class TrinoSqlParser extends SQLParserBase { this.enterRule(localContext, 92, TrinoSqlParser.RULE_joinCriteria); let _la: number; try { - this.state = 1672; + this.state = 1682; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1658; + this.state = 1664; this.match(TrinoSqlParser.KW_ON); - this.state = 1659; - this.booleanExpression(0); + this.state = 1668; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { + case 1: + { + this.state = 1665; + this.joinColumnEquality(); + } + break; + case 2: + { + this.state = 1666; + if (!(this.notEntityCollecting())) { + throw this.createFailedPredicateException("this.notEntityCollecting()"); + } + this.state = 1667; + this.booleanExpression(0); + } + break; + } } break; case TrinoSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1660; + this.state = 1670; this.match(TrinoSqlParser.KW_USING); - this.state = 1661; + this.state = 1671; this.match(TrinoSqlParser.T__0); - this.state = 1662; + this.state = 1672; this.identifier(); - this.state = 1667; + this.state = 1677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1663; + this.state = 1673; this.match(TrinoSqlParser.T__2); - this.state = 1664; + this.state = 1674; this.identifier(); } } - this.state = 1669; + this.state = 1679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1670; + this.state = 1680; this.match(TrinoSqlParser.T__1); } break; @@ -6239,28 +6266,101 @@ export class TrinoSqlParser extends SQLParserBase { } return localContext; } + public joinColumnEquality(): JoinColumnEqualityContext { + let localContext = new JoinColumnEqualityContext(this.context, this.state); + this.enterRule(localContext, 94, TrinoSqlParser.RULE_joinColumnEquality); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 1684; + localContext._left = this.joinColumnReference(); + this.state = 1685; + this.match(TrinoSqlParser.EQ); + this.state = 1686; + localContext._right = this.joinColumnReference(); + } + } + 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 joinColumnReference(): JoinColumnReferenceContext { + let localContext = new JoinColumnReferenceContext(this.context, this.state); + this.enterRule(localContext, 96, TrinoSqlParser.RULE_joinColumnReference); + try { + this.state = 1694; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 1688; + this.identifier(); + this.state = 1689; + this.match(TrinoSqlParser.DOT); + this.state = 1690; + if (!(this.entityCollecting)) { + throw this.createFailedPredicateException("this.entityCollecting"); + } + this.state = 1691; + this.emptyColumn(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 1693; + this.columnName(); + } + 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 sampledRelation(): SampledRelationContext { let localContext = new SampledRelationContext(this.context, this.state); - this.enterRule(localContext, 94, TrinoSqlParser.RULE_sampledRelation); + this.enterRule(localContext, 98, TrinoSqlParser.RULE_sampledRelation); try { this.enterOuterAlt(localContext, 1); { - this.state = 1674; + this.state = 1696; this.patternRecognition(); - this.state = 1681; + this.state = 1703; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 197, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { case 1: { - this.state = 1675; + this.state = 1697; this.match(TrinoSqlParser.KW_TABLESAMPLE); - this.state = 1676; + this.state = 1698; this.sampleType(); - this.state = 1677; + this.state = 1699; this.match(TrinoSqlParser.T__0); - this.state = 1678; + this.state = 1700; localContext._percentage = this.expression(); - this.state = 1679; + this.state = 1701; this.match(TrinoSqlParser.T__1); } break; @@ -6283,12 +6383,12 @@ export class TrinoSqlParser extends SQLParserBase { } public sampleType(): SampleTypeContext { let localContext = new SampleTypeContext(this.context, this.state); - this.enterRule(localContext, 96, TrinoSqlParser.RULE_sampleType); + this.enterRule(localContext, 100, TrinoSqlParser.RULE_sampleType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1683; + this.state = 1705; _la = this.tokenStream.LA(1); if(!(_la === 33 || _la === 260)) { this.errorHandler.recoverInline(this); @@ -6315,12 +6415,12 @@ export class TrinoSqlParser extends SQLParserBase { } public trimsSpecification(): TrimsSpecificationContext { let localContext = new TrimsSpecificationContext(this.context, this.state); - this.enterRule(localContext, 98, TrinoSqlParser.RULE_trimsSpecification); + this.enterRule(localContext, 102, TrinoSqlParser.RULE_trimsSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1685; + this.state = 1707; _la = this.tokenStream.LA(1); if(!(_la === 35 || _la === 151 || _la === 271)) { this.errorHandler.recoverInline(this); @@ -6347,35 +6447,35 @@ export class TrinoSqlParser extends SQLParserBase { } public listAggOverflowBehavior(): ListAggOverflowBehaviorContext { let localContext = new ListAggOverflowBehaviorContext(this.context, this.state); - this.enterRule(localContext, 100, TrinoSqlParser.RULE_listAggOverflowBehavior); + this.enterRule(localContext, 104, TrinoSqlParser.RULE_listAggOverflowBehavior); let _la: number; try { - this.state = 1693; + this.state = 1715; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ERROR: this.enterOuterAlt(localContext, 1); { - this.state = 1687; + this.state = 1709; this.match(TrinoSqlParser.KW_ERROR); } break; case TrinoSqlParser.KW_TRUNCATE: this.enterOuterAlt(localContext, 2); { - this.state = 1688; + this.state = 1710; this.match(TrinoSqlParser.KW_TRUNCATE); - this.state = 1690; + this.state = 1712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 327 || _la === 328) { { - this.state = 1689; + this.state = 1711; this.string_(); } } - this.state = 1692; + this.state = 1714; this.listAggCountIndication(); } break; @@ -6399,26 +6499,26 @@ export class TrinoSqlParser extends SQLParserBase { } public listAggCountIndication(): ListAggCountIndicationContext { let localContext = new ListAggCountIndicationContext(this.context, this.state); - this.enterRule(localContext, 102, TrinoSqlParser.RULE_listAggCountIndication); + this.enterRule(localContext, 106, TrinoSqlParser.RULE_listAggCountIndication); try { - this.state = 1699; + this.state = 1721; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITH: this.enterOuterAlt(localContext, 1); { - this.state = 1695; + this.state = 1717; this.match(TrinoSqlParser.KW_WITH); - this.state = 1696; + this.state = 1718; this.match(TrinoSqlParser.KW_COUNT); } break; case TrinoSqlParser.KW_WITHOUT: this.enterOuterAlt(localContext, 2); { - this.state = 1697; + this.state = 1719; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 1698; + this.state = 1720; this.match(TrinoSqlParser.KW_COUNT); } break; @@ -6442,124 +6542,124 @@ export class TrinoSqlParser extends SQLParserBase { } public patternRecognition(): PatternRecognitionContext { let localContext = new PatternRecognitionContext(this.context, this.state); - this.enterRule(localContext, 104, TrinoSqlParser.RULE_patternRecognition); + this.enterRule(localContext, 108, TrinoSqlParser.RULE_patternRecognition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1701; + this.state = 1723; this.aliasedRelation(); - this.state = 1777; + this.state = 1799; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { case 1: { - this.state = 1702; + this.state = 1724; this.match(TrinoSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1703; + this.state = 1725; this.match(TrinoSqlParser.T__0); - this.state = 1707; + this.state = 1729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202) { { - this.state = 1704; + this.state = 1726; this.match(TrinoSqlParser.KW_PARTITION); - this.state = 1705; + this.state = 1727; this.match(TrinoSqlParser.KW_BY); - this.state = 1706; + this.state = 1728; this.partitionBy(); } } - this.state = 1719; + this.state = 1741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 1709; + this.state = 1731; this.match(TrinoSqlParser.KW_ORDER); - this.state = 1710; + this.state = 1732; this.match(TrinoSqlParser.KW_BY); - this.state = 1711; + this.state = 1733; this.sortItem(); - this.state = 1716; + this.state = 1738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1712; + this.state = 1734; this.match(TrinoSqlParser.T__2); - this.state = 1713; + this.state = 1735; this.sortItem(); } } - this.state = 1718; + this.state = 1740; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1730; + this.state = 1752; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 1721; + this.state = 1743; this.match(TrinoSqlParser.KW_MEASURES); - this.state = 1722; + this.state = 1744; this.measureDefinition(); - this.state = 1727; + this.state = 1749; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1723; + this.state = 1745; this.match(TrinoSqlParser.T__2); - this.state = 1724; + this.state = 1746; this.measureDefinition(); } } - this.state = 1729; + this.state = 1751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1733; + this.state = 1755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 192) { { - this.state = 1732; + this.state = 1754; this.rowsPerMatch(); } } - this.state = 1738; + this.state = 1760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 1735; + this.state = 1757; this.match(TrinoSqlParser.KW_AFTER); - this.state = 1736; + this.state = 1758; this.match(TrinoSqlParser.KW_MATCH); - this.state = 1737; + this.state = 1759; this.skipTo(); } } - this.state = 1741; + this.state = 1763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125 || _la === 248) { { - this.state = 1740; + this.state = 1762; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 248)) { this.errorHandler.recoverInline(this); @@ -6571,87 +6671,87 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 1743; + this.state = 1765; this.match(TrinoSqlParser.KW_PATTERN); - this.state = 1744; + this.state = 1766; this.match(TrinoSqlParser.T__0); - this.state = 1745; + this.state = 1767; this.rowPattern(0); - this.state = 1746; + this.state = 1768; this.match(TrinoSqlParser.T__1); - this.state = 1756; + this.state = 1778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 258) { { - this.state = 1747; + this.state = 1769; this.match(TrinoSqlParser.KW_SUBSET); - this.state = 1748; + this.state = 1770; this.subsetDefinition(); - this.state = 1753; + this.state = 1775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1749; + this.state = 1771; this.match(TrinoSqlParser.T__2); - this.state = 1750; + this.state = 1772; this.subsetDefinition(); } } - this.state = 1755; + this.state = 1777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1758; + this.state = 1780; this.match(TrinoSqlParser.KW_DEFINE); - this.state = 1759; + this.state = 1781; this.variableDefinition(); - this.state = 1764; + this.state = 1786; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1760; + this.state = 1782; this.match(TrinoSqlParser.T__2); - this.state = 1761; + this.state = 1783; this.variableDefinition(); } } - this.state = 1766; + this.state = 1788; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1767; + this.state = 1789; this.match(TrinoSqlParser.T__1); - this.state = 1775; + this.state = 1797; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { case 1: { - this.state = 1769; + this.state = 1791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1768; + this.state = 1790; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1771; + this.state = 1793; this.identifier(); - this.state = 1773; + this.state = 1795; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { - this.state = 1772; + this.state = 1794; this.columnAliases(); } break; @@ -6680,15 +6780,15 @@ export class TrinoSqlParser extends SQLParserBase { } public measureDefinition(): MeasureDefinitionContext { let localContext = new MeasureDefinitionContext(this.context, this.state); - this.enterRule(localContext, 106, TrinoSqlParser.RULE_measureDefinition); + this.enterRule(localContext, 110, TrinoSqlParser.RULE_measureDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1779; + this.state = 1801; this.expression(); - this.state = 1780; + this.state = 1802; this.match(TrinoSqlParser.KW_AS); - this.state = 1781; + this.state = 1803; this.identifier(); } } @@ -6708,42 +6808,42 @@ export class TrinoSqlParser extends SQLParserBase { } public rowsPerMatch(): RowsPerMatchContext { let localContext = new RowsPerMatchContext(this.context, this.state); - this.enterRule(localContext, 108, TrinoSqlParser.RULE_rowsPerMatch); + this.enterRule(localContext, 112, TrinoSqlParser.RULE_rowsPerMatch); let _la: number; try { - this.state = 1794; + this.state = 1816; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ONE: this.enterOuterAlt(localContext, 1); { - this.state = 1783; + this.state = 1805; this.match(TrinoSqlParser.KW_ONE); - this.state = 1784; + this.state = 1806; this.match(TrinoSqlParser.KW_ROW); - this.state = 1785; + this.state = 1807; this.match(TrinoSqlParser.KW_PER); - this.state = 1786; + this.state = 1808; this.match(TrinoSqlParser.KW_MATCH); } break; case TrinoSqlParser.KW_ALL: this.enterOuterAlt(localContext, 2); { - this.state = 1787; + this.state = 1809; this.match(TrinoSqlParser.KW_ALL); - this.state = 1788; + this.state = 1810; this.match(TrinoSqlParser.KW_ROWS); - this.state = 1789; + this.state = 1811; this.match(TrinoSqlParser.KW_PER); - this.state = 1790; + this.state = 1812; this.match(TrinoSqlParser.KW_MATCH); - this.state = 1792; + this.state = 1814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190 || _la === 254 || _la === 305) { { - this.state = 1791; + this.state = 1813; this.emptyMatchHandling(); } } @@ -6770,41 +6870,41 @@ export class TrinoSqlParser extends SQLParserBase { } public emptyMatchHandling(): EmptyMatchHandlingContext { let localContext = new EmptyMatchHandlingContext(this.context, this.state); - this.enterRule(localContext, 110, TrinoSqlParser.RULE_emptyMatchHandling); + this.enterRule(localContext, 114, TrinoSqlParser.RULE_emptyMatchHandling); try { - this.state = 1805; + this.state = 1827; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_SHOW: this.enterOuterAlt(localContext, 1); { - this.state = 1796; + this.state = 1818; this.match(TrinoSqlParser.KW_SHOW); - this.state = 1797; + this.state = 1819; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 1798; + this.state = 1820; this.match(TrinoSqlParser.KW_MATCHES); } break; case TrinoSqlParser.KW_OMIT: this.enterOuterAlt(localContext, 2); { - this.state = 1799; + this.state = 1821; this.match(TrinoSqlParser.KW_OMIT); - this.state = 1800; + this.state = 1822; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 1801; + this.state = 1823; this.match(TrinoSqlParser.KW_MATCHES); } break; case TrinoSqlParser.KW_WITH: this.enterOuterAlt(localContext, 3); { - this.state = 1802; + this.state = 1824; this.match(TrinoSqlParser.KW_WITH); - this.state = 1803; + this.state = 1825; this.match(TrinoSqlParser.KW_UNMATCHED); - this.state = 1804; + this.state = 1826; this.match(TrinoSqlParser.KW_ROWS); } break; @@ -6828,71 +6928,71 @@ export class TrinoSqlParser extends SQLParserBase { } public skipTo(): SkipToContext { let localContext = new SkipToContext(this.context, this.state); - this.enterRule(localContext, 112, TrinoSqlParser.RULE_skipTo); + this.enterRule(localContext, 116, TrinoSqlParser.RULE_skipTo); try { - this.state = 1826; + this.state = 1848; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1807; + this.state = 1829; this.match(TrinoSqlParser.T__4); - this.state = 1808; + this.state = 1830; this.match(TrinoSqlParser.KW_TO); - this.state = 1809; + this.state = 1831; this.match(TrinoSqlParser.KW_NEXT); - this.state = 1810; + this.state = 1832; this.match(TrinoSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1811; + this.state = 1833; this.match(TrinoSqlParser.T__4); - this.state = 1812; + this.state = 1834; this.match(TrinoSqlParser.KW_PAST); - this.state = 1813; + this.state = 1835; this.match(TrinoSqlParser.KW_LAST); - this.state = 1814; + this.state = 1836; this.match(TrinoSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1815; + this.state = 1837; this.match(TrinoSqlParser.T__4); - this.state = 1816; + this.state = 1838; this.match(TrinoSqlParser.KW_TO); - this.state = 1817; + this.state = 1839; this.match(TrinoSqlParser.KW_FIRST); - this.state = 1818; + this.state = 1840; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1819; + this.state = 1841; this.match(TrinoSqlParser.T__4); - this.state = 1820; + this.state = 1842; this.match(TrinoSqlParser.KW_TO); - this.state = 1821; + this.state = 1843; this.match(TrinoSqlParser.KW_LAST); - this.state = 1822; + this.state = 1844; this.identifier(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1823; + this.state = 1845; this.match(TrinoSqlParser.T__4); - this.state = 1824; + this.state = 1846; this.match(TrinoSqlParser.KW_TO); - this.state = 1825; + this.state = 1847; this.identifier(); } break; @@ -6914,38 +7014,38 @@ export class TrinoSqlParser extends SQLParserBase { } public subsetDefinition(): SubsetDefinitionContext { let localContext = new SubsetDefinitionContext(this.context, this.state); - this.enterRule(localContext, 114, TrinoSqlParser.RULE_subsetDefinition); + this.enterRule(localContext, 118, TrinoSqlParser.RULE_subsetDefinition); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1828; + this.state = 1850; localContext._name = this.identifier(); - this.state = 1829; + this.state = 1851; this.match(TrinoSqlParser.EQ); - this.state = 1830; + this.state = 1852; this.match(TrinoSqlParser.T__0); - this.state = 1831; + this.state = 1853; localContext._identifier = this.identifier(); localContext._union.push(localContext._identifier); - this.state = 1836; + this.state = 1858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1832; + this.state = 1854; this.match(TrinoSqlParser.T__2); - this.state = 1833; + this.state = 1855; localContext._identifier = this.identifier(); localContext._union.push(localContext._identifier); } } - this.state = 1838; + this.state = 1860; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1839; + this.state = 1861; this.match(TrinoSqlParser.T__1); } } @@ -6965,15 +7065,15 @@ export class TrinoSqlParser extends SQLParserBase { } public variableDefinition(): VariableDefinitionContext { let localContext = new VariableDefinitionContext(this.context, this.state); - this.enterRule(localContext, 116, TrinoSqlParser.RULE_variableDefinition); + this.enterRule(localContext, 120, TrinoSqlParser.RULE_variableDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 1841; + this.state = 1863; this.identifier(); - this.state = 1842; + this.state = 1864; this.match(TrinoSqlParser.KW_AS); - this.state = 1843; + this.state = 1865; this.expression(); } } @@ -6993,36 +7093,36 @@ export class TrinoSqlParser extends SQLParserBase { } public aliasedRelation(): AliasedRelationContext { let localContext = new AliasedRelationContext(this.context, this.state); - this.enterRule(localContext, 118, TrinoSqlParser.RULE_aliasedRelation); + this.enterRule(localContext, 122, TrinoSqlParser.RULE_aliasedRelation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1845; + this.state = 1867; this.relationPrimary(); - this.state = 1853; + this.state = 1875; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { case 1: { - this.state = 1847; + this.state = 1869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 1846; + this.state = 1868; this.match(TrinoSqlParser.KW_AS); } } - this.state = 1849; + this.state = 1871; localContext._alias = this.identifier(); - this.state = 1851; + this.state = 1873; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { case 1: { - this.state = 1850; + this.state = 1872; this.columnAliases(); } break; @@ -7048,32 +7148,32 @@ export class TrinoSqlParser extends SQLParserBase { } public columnListCreate(): ColumnListCreateContext { let localContext = new ColumnListCreateContext(this.context, this.state); - this.enterRule(localContext, 120, TrinoSqlParser.RULE_columnListCreate); + this.enterRule(localContext, 124, TrinoSqlParser.RULE_columnListCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1855; + this.state = 1877; this.match(TrinoSqlParser.T__0); - this.state = 1856; + this.state = 1878; this.columnNameCreate(); - this.state = 1861; + this.state = 1883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1857; + this.state = 1879; this.match(TrinoSqlParser.T__2); - this.state = 1858; + this.state = 1880; this.columnNameCreate(); } } - this.state = 1863; + this.state = 1885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1864; + this.state = 1886; this.match(TrinoSqlParser.T__1); } } @@ -7093,32 +7193,32 @@ export class TrinoSqlParser extends SQLParserBase { } public columnList(): ColumnListContext { let localContext = new ColumnListContext(this.context, this.state); - this.enterRule(localContext, 122, TrinoSqlParser.RULE_columnList); + this.enterRule(localContext, 126, TrinoSqlParser.RULE_columnList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1866; + this.state = 1888; this.match(TrinoSqlParser.T__0); - this.state = 1867; + this.state = 1889; this.columnRef(); - this.state = 1872; + this.state = 1894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1868; + this.state = 1890; this.match(TrinoSqlParser.T__2); - this.state = 1869; + this.state = 1891; this.columnRef(); } } - this.state = 1874; + this.state = 1896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1875; + this.state = 1897; this.match(TrinoSqlParser.T__1); } } @@ -7138,32 +7238,32 @@ export class TrinoSqlParser extends SQLParserBase { } public columnAliases(): ColumnAliasesContext { let localContext = new ColumnAliasesContext(this.context, this.state); - this.enterRule(localContext, 124, TrinoSqlParser.RULE_columnAliases); + this.enterRule(localContext, 128, TrinoSqlParser.RULE_columnAliases); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 1877; + this.state = 1899; this.match(TrinoSqlParser.T__0); - this.state = 1878; + this.state = 1900; this.identifier(); - this.state = 1883; + this.state = 1905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1879; + this.state = 1901; this.match(TrinoSqlParser.T__2); - this.state = 1880; + this.state = 1902; this.identifier(); } } - this.state = 1885; + this.state = 1907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1886; + this.state = 1908; this.match(TrinoSqlParser.T__1); } } @@ -7183,23 +7283,23 @@ export class TrinoSqlParser extends SQLParserBase { } public relationPrimary(): RelationPrimaryContext { let localContext = new RelationPrimaryContext(this.context, this.state); - this.enterRule(localContext, 126, TrinoSqlParser.RULE_relationPrimary); + this.enterRule(localContext, 130, TrinoSqlParser.RULE_relationPrimary); try { - this.state = 1897; + this.state = 1919; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { case 1: localContext = new TableNameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1888; + this.state = 1910; this.tableOrViewName(); - this.state = 1890; + this.state = 1912; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { case 1: { - this.state = 1889; + this.state = 1911; this.queryPeriod(); } break; @@ -7210,7 +7310,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExpressionSourceTableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1892; + this.state = 1914; this.relationSourceTable(); } break; @@ -7218,11 +7318,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ParenthesizedRelationContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1893; + this.state = 1915; this.match(TrinoSqlParser.T__0); - this.state = 1894; + this.state = 1916; this.relation(0); - this.state = 1895; + this.state = 1917; this.match(TrinoSqlParser.T__1); } break; @@ -7244,21 +7344,21 @@ export class TrinoSqlParser extends SQLParserBase { } public relationSourceTable(): RelationSourceTableContext { let localContext = new RelationSourceTableContext(this.context, this.state); - this.enterRule(localContext, 128, TrinoSqlParser.RULE_relationSourceTable); + this.enterRule(localContext, 132, TrinoSqlParser.RULE_relationSourceTable); let _la: number; try { - this.state = 1962; + this.state = 1984; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.T__0: localContext = new SubqueryRelationContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1899; + this.state = 1921; this.match(TrinoSqlParser.T__0); - this.state = 1900; + this.state = 1922; this.query(); - this.state = 1901; + this.state = 1923; this.match(TrinoSqlParser.T__1); } break; @@ -7266,38 +7366,38 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnnestContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1903; + this.state = 1925; this.match(TrinoSqlParser.KW_UNNEST); - this.state = 1904; + this.state = 1926; this.match(TrinoSqlParser.T__0); - this.state = 1905; + this.state = 1927; this.expression(); - this.state = 1910; + this.state = 1932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1906; + this.state = 1928; this.match(TrinoSqlParser.T__2); - this.state = 1907; + this.state = 1929; this.expression(); } } - this.state = 1912; + this.state = 1934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1913; + this.state = 1935; this.match(TrinoSqlParser.T__1); - this.state = 1916; + this.state = 1938; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 1914; + this.state = 1936; this.match(TrinoSqlParser.KW_WITH); - this.state = 1915; + this.state = 1937; this.match(TrinoSqlParser.KW_ORDINALITY); } break; @@ -7308,13 +7408,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LateralContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1918; + this.state = 1940; this.match(TrinoSqlParser.KW_LATERAL); - this.state = 1919; + this.state = 1941; this.match(TrinoSqlParser.T__0); - this.state = 1920; + this.state = 1942; this.query(); - this.state = 1921; + this.state = 1943; this.match(TrinoSqlParser.T__1); } break; @@ -7322,13 +7422,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableFunctionInvocationContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1923; + this.state = 1945; this.match(TrinoSqlParser.KW_TABLE); - this.state = 1924; + this.state = 1946; this.match(TrinoSqlParser.T__0); - this.state = 1925; + this.state = 1947; this.tableFunctionCall(); - this.state = 1926; + this.state = 1948; this.match(TrinoSqlParser.T__1); } break; @@ -7336,72 +7436,72 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonTableContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1928; + this.state = 1950; this.match(TrinoSqlParser.KW_JSON_TABLE); - this.state = 1929; + this.state = 1951; this.match(TrinoSqlParser.T__0); - this.state = 1930; + this.state = 1952; this.jsonPathInvocation(); - this.state = 1931; + this.state = 1953; this.match(TrinoSqlParser.KW_COLUMNS); - this.state = 1932; + this.state = 1954; this.match(TrinoSqlParser.T__0); - this.state = 1933; + this.state = 1955; this.jsonTableColumn(); - this.state = 1938; + this.state = 1960; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 1934; + this.state = 1956; this.match(TrinoSqlParser.T__2); - this.state = 1935; + this.state = 1957; this.jsonTableColumn(); } } - this.state = 1940; + this.state = 1962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1941; + this.state = 1963; this.match(TrinoSqlParser.T__1); - this.state = 1953; + this.state = 1975; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: { - this.state = 1942; + this.state = 1964; this.match(TrinoSqlParser.KW_PLAN); - this.state = 1943; + this.state = 1965; this.match(TrinoSqlParser.T__0); - this.state = 1944; + this.state = 1966; this.jsonTableSpecificPlan(); - this.state = 1945; + this.state = 1967; this.match(TrinoSqlParser.T__1); } break; case 2: { - this.state = 1947; + this.state = 1969; this.match(TrinoSqlParser.KW_PLAN); - this.state = 1948; + this.state = 1970; this.match(TrinoSqlParser.KW_DEFAULT); - this.state = 1949; + this.state = 1971; this.match(TrinoSqlParser.T__0); - this.state = 1950; + this.state = 1972; this.jsonTableDefaultPlan(); - this.state = 1951; + this.state = 1973; this.match(TrinoSqlParser.T__1); } break; } - this.state = 1958; + this.state = 1980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 86 || _la === 90) { { - this.state = 1955; + this.state = 1977; _la = this.tokenStream.LA(1); if(!(_la === 86 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -7410,14 +7510,14 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1956; + this.state = 1978; this.match(TrinoSqlParser.KW_ON); - this.state = 1957; + this.state = 1979; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 1960; + this.state = 1982; this.match(TrinoSqlParser.T__1); } break; @@ -7441,21 +7541,21 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableColumn(): JsonTableColumnContext { let localContext = new JsonTableColumnContext(this.context, this.state); - this.enterRule(localContext, 130, TrinoSqlParser.RULE_jsonTableColumn); + this.enterRule(localContext, 134, TrinoSqlParser.RULE_jsonTableColumn); let _la: number; try { - this.state = 2041; + this.state = 2063; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: localContext = new OrdinalityColumnContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1964; + this.state = 1986; this.identifier(); - this.state = 1965; + this.state = 1987; this.match(TrinoSqlParser.KW_FOR); - this.state = 1966; + this.state = 1988; this.match(TrinoSqlParser.KW_ORDINALITY); } break; @@ -7463,46 +7563,46 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ValueColumnContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1968; + this.state = 1990; this.identifier(); - this.state = 1969; + this.state = 1991; this.type_(0); - this.state = 1972; + this.state = 1994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 1970; + this.state = 1992; this.match(TrinoSqlParser.KW_PATH); - this.state = 1971; + this.state = 1993; this.string_(); } } - this.state = 1978; + this.state = 2000; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 1974; + this.state = 1996; (localContext as ValueColumnContext)._emptyBehavior = this.jsonValueBehavior(); - this.state = 1975; + this.state = 1997; this.match(TrinoSqlParser.KW_ON); - this.state = 1976; + this.state = 1998; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 1984; + this.state = 2006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71 || _la === 90 || _la === 184) { { - this.state = 1980; + this.state = 2002; (localContext as ValueColumnContext)._errorBehavior = this.jsonValueBehavior(); - this.state = 1981; + this.state = 2003; this.match(TrinoSqlParser.KW_ON); - this.state = 1982; + this.state = 2004; this.match(TrinoSqlParser.KW_ERROR); } } @@ -7513,44 +7613,44 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QueryColumnContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1986; + this.state = 2008; this.identifier(); - this.state = 1987; + this.state = 2009; this.type_(0); - this.state = 1988; + this.state = 2010; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 1989; + this.state = 2011; this.jsonRepresentation(); - this.state = 1992; + this.state = 2014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 1990; + this.state = 2012; this.match(TrinoSqlParser.KW_PATH); - this.state = 1991; + this.state = 2013; this.string_(); } } - this.state = 1997; + this.state = 2019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 305 || _la === 307) { { - this.state = 1994; + this.state = 2016; this.jsonQueryWrapperBehavior(); - this.state = 1995; + this.state = 2017; this.match(TrinoSqlParser.KW_WRAPPER); } } - this.state = 2006; + this.state = 2028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145 || _la === 190) { { - this.state = 1999; + this.state = 2021; _la = this.tokenStream.LA(1); if(!(_la === 145 || _la === 190)) { this.errorHandler.recoverInline(this); @@ -7559,18 +7659,18 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2000; + this.state = 2022; this.match(TrinoSqlParser.KW_QUOTES); - this.state = 2004; + this.state = 2026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 191) { { - this.state = 2001; + this.state = 2023; this.match(TrinoSqlParser.KW_ON); - this.state = 2002; + this.state = 2024; this.match(TrinoSqlParser.KW_SCALAR); - this.state = 2003; + this.state = 2025; this.match(TrinoSqlParser.KW_TEXT_STRING); } } @@ -7578,30 +7678,30 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2012; + this.state = 2034; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: { - this.state = 2008; + this.state = 2030; (localContext as QueryColumnContext)._emptyBehavior = this.jsonQueryBehavior(); - this.state = 2009; + this.state = 2031; this.match(TrinoSqlParser.KW_ON); - this.state = 2010; + this.state = 2032; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 2018; + this.state = 2040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 86 || _la === 90 || _la === 184) { { - this.state = 2014; + this.state = 2036; (localContext as QueryColumnContext)._errorBehavior = this.jsonQueryBehavior(); - this.state = 2015; + this.state = 2037; this.match(TrinoSqlParser.KW_ON); - this.state = 2016; + this.state = 2038; this.match(TrinoSqlParser.KW_ERROR); } } @@ -7612,55 +7712,55 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NestedColumnsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2020; + this.state = 2042; this.match(TrinoSqlParser.KW_NESTED); - this.state = 2022; + this.state = 2044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 2021; + this.state = 2043; this.match(TrinoSqlParser.KW_PATH); } } - this.state = 2024; + this.state = 2046; this.string_(); - this.state = 2027; + this.state = 2049; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2025; + this.state = 2047; this.match(TrinoSqlParser.KW_AS); - this.state = 2026; + this.state = 2048; this.identifier(); } } - this.state = 2029; + this.state = 2051; this.match(TrinoSqlParser.KW_COLUMNS); - this.state = 2030; + this.state = 2052; this.match(TrinoSqlParser.T__0); - this.state = 2031; + this.state = 2053; this.jsonTableColumn(); - this.state = 2036; + this.state = 2058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2032; + this.state = 2054; this.match(TrinoSqlParser.T__2); - this.state = 2033; + this.state = 2055; this.jsonTableColumn(); } } - this.state = 2038; + this.state = 2060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2039; + this.state = 2061; this.match(TrinoSqlParser.T__1); } break; @@ -7682,17 +7782,17 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableSpecificPlan(): JsonTableSpecificPlanContext { let localContext = new JsonTableSpecificPlanContext(this.context, this.state); - this.enterRule(localContext, 132, TrinoSqlParser.RULE_jsonTableSpecificPlan); + this.enterRule(localContext, 136, TrinoSqlParser.RULE_jsonTableSpecificPlan); let _la: number; try { - this.state = 2068; + this.state = 2090; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: localContext = new LeafPlanContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2043; + this.state = 2065; this.jsonTablePathName(); } break; @@ -7700,9 +7800,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JoinPlanContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2044; + this.state = 2066; this.jsonTablePathName(); - this.state = 2045; + this.state = 2067; _la = this.tokenStream.LA(1); if(!(_la === 126 || _la === 198)) { this.errorHandler.recoverInline(this); @@ -7711,7 +7811,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2046; + this.state = 2068; this.planPrimary(); } break; @@ -7719,25 +7819,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnionPlanContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2048; + this.state = 2070; this.planPrimary(); - this.state = 2049; + this.state = 2071; this.match(TrinoSqlParser.KW_UNION); - this.state = 2050; + this.state = 2072; this.planPrimary(); - this.state = 2055; + this.state = 2077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 282) { { { - this.state = 2051; + this.state = 2073; this.match(TrinoSqlParser.KW_UNION); - this.state = 2052; + this.state = 2074; this.planPrimary(); } } - this.state = 2057; + this.state = 2079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7747,25 +7847,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CrossPlanContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2058; + this.state = 2080; this.planPrimary(); - this.state = 2059; + this.state = 2081; this.match(TrinoSqlParser.KW_CROSS); - this.state = 2060; + this.state = 2082; this.planPrimary(); - this.state = 2065; + this.state = 2087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 55) { { { - this.state = 2061; + this.state = 2083; this.match(TrinoSqlParser.KW_CROSS); - this.state = 2062; + this.state = 2084; this.planPrimary(); } } - this.state = 2067; + this.state = 2089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7789,11 +7889,11 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTablePathName(): JsonTablePathNameContext { let localContext = new JsonTablePathNameContext(this.context, this.state); - this.enterRule(localContext, 134, TrinoSqlParser.RULE_jsonTablePathName); + this.enterRule(localContext, 138, TrinoSqlParser.RULE_jsonTablePathName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2070; + this.state = 2092; this.identifier(); } } @@ -7813,9 +7913,9 @@ export class TrinoSqlParser extends SQLParserBase { } public planPrimary(): PlanPrimaryContext { let localContext = new PlanPrimaryContext(this.context, this.state); - this.enterRule(localContext, 136, TrinoSqlParser.RULE_planPrimary); + this.enterRule(localContext, 140, TrinoSqlParser.RULE_planPrimary); try { - this.state = 2077; + this.state = 2099; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -8038,18 +8138,18 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 1); { - this.state = 2072; + this.state = 2094; this.jsonTablePathName(); } break; case TrinoSqlParser.T__0: this.enterOuterAlt(localContext, 2); { - this.state = 2073; + this.state = 2095; this.match(TrinoSqlParser.T__0); - this.state = 2074; + this.state = 2096; this.jsonTableSpecificPlan(); - this.state = 2075; + this.state = 2097; this.match(TrinoSqlParser.T__1); } break; @@ -8073,17 +8173,17 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonTableDefaultPlan(): JsonTableDefaultPlanContext { let localContext = new JsonTableDefaultPlanContext(this.context, this.state); - this.enterRule(localContext, 138, TrinoSqlParser.RULE_jsonTableDefaultPlan); + this.enterRule(localContext, 142, TrinoSqlParser.RULE_jsonTableDefaultPlan); let _la: number; try { - this.state = 2089; + this.state = 2111; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_INNER: case TrinoSqlParser.KW_OUTER: this.enterOuterAlt(localContext, 1); { - this.state = 2079; + this.state = 2101; _la = this.tokenStream.LA(1); if(!(_la === 126 || _la === 198)) { this.errorHandler.recoverInline(this); @@ -8092,14 +8192,14 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2082; + this.state = 2104; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2080; + this.state = 2102; this.match(TrinoSqlParser.T__2); - this.state = 2081; + this.state = 2103; _la = this.tokenStream.LA(1); if(!(_la === 55 || _la === 282)) { this.errorHandler.recoverInline(this); @@ -8117,7 +8217,7 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_UNION: this.enterOuterAlt(localContext, 2); { - this.state = 2084; + this.state = 2106; _la = this.tokenStream.LA(1); if(!(_la === 55 || _la === 282)) { this.errorHandler.recoverInline(this); @@ -8126,14 +8226,14 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2087; + this.state = 2109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2085; + this.state = 2107; this.match(TrinoSqlParser.T__2); - this.state = 2086; + this.state = 2108; _la = this.tokenStream.LA(1); if(!(_la === 126 || _la === 198)) { this.errorHandler.recoverInline(this); @@ -8167,70 +8267,70 @@ export class TrinoSqlParser extends SQLParserBase { } public tableFunctionCall(): TableFunctionCallContext { let localContext = new TableFunctionCallContext(this.context, this.state); - this.enterRule(localContext, 140, TrinoSqlParser.RULE_tableFunctionCall); + this.enterRule(localContext, 144, TrinoSqlParser.RULE_tableFunctionCall); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2091; + this.state = 2113; this.functionName(); - this.state = 2092; + this.state = 2114; this.match(TrinoSqlParser.T__0); - this.state = 2101; + this.state = 2123; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { - this.state = 2093; + this.state = 2115; this.tableFunctionArgument(); - this.state = 2098; + this.state = 2120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2094; + this.state = 2116; this.match(TrinoSqlParser.T__2); - this.state = 2095; + this.state = 2117; this.tableFunctionArgument(); } } - this.state = 2100; + this.state = 2122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2112; + this.state = 2134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 2103; + this.state = 2125; this.match(TrinoSqlParser.KW_COPARTITION); - this.state = 2104; + this.state = 2126; this.coPartitionTables(); - this.state = 2109; + this.state = 2131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2105; + this.state = 2127; this.match(TrinoSqlParser.T__2); - this.state = 2106; + this.state = 2128; this.coPartitionTables(); } } - this.state = 2111; + this.state = 2133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2114; + this.state = 2136; this.match(TrinoSqlParser.T__1); } } @@ -8250,40 +8350,40 @@ export class TrinoSqlParser extends SQLParserBase { } public tableFunctionArgument(): TableFunctionArgumentContext { let localContext = new TableFunctionArgumentContext(this.context, this.state); - this.enterRule(localContext, 142, TrinoSqlParser.RULE_tableFunctionArgument); + this.enterRule(localContext, 146, TrinoSqlParser.RULE_tableFunctionArgument); try { this.enterOuterAlt(localContext, 1); { - this.state = 2119; + this.state = 2141; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { case 1: { - this.state = 2116; + this.state = 2138; this.identifier(); - this.state = 2117; + this.state = 2139; this.match(TrinoSqlParser.T__5); } break; } - this.state = 2124; + this.state = 2146; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: { - this.state = 2121; + this.state = 2143; this.tableArgument(); } break; case 2: { - this.state = 2122; + this.state = 2144; this.descriptorArgument(); } break; case 3: { - this.state = 2123; + this.state = 2145; this.expression(); } break; @@ -8306,46 +8406,46 @@ export class TrinoSqlParser extends SQLParserBase { } public tableArgument(): TableArgumentContext { let localContext = new TableArgumentContext(this.context, this.state); - this.enterRule(localContext, 144, TrinoSqlParser.RULE_tableArgument); + this.enterRule(localContext, 148, TrinoSqlParser.RULE_tableArgument); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2126; + this.state = 2148; this.tableArgumentRelation(); - this.state = 2137; + this.state = 2159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202) { { - this.state = 2127; + this.state = 2149; this.match(TrinoSqlParser.KW_PARTITION); - this.state = 2128; + this.state = 2150; this.match(TrinoSqlParser.KW_BY); - this.state = 2135; + this.state = 2157; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { case 1: { - this.state = 2129; + this.state = 2151; this.match(TrinoSqlParser.T__0); - this.state = 2131; + this.state = 2153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 3728211947) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 2781797343) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 3082285823) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 4253015917) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 3758094335) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 4024434665) !== 0) || ((((_la - 226)) & ~0x1F) === 0 && ((1 << (_la - 226)) & 4286569983) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 4008705783) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 1618962301) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 4093) !== 0)) { { - this.state = 2130; + this.state = 2152; this.partitionBy(); } } - this.state = 2133; + this.state = 2155; this.match(TrinoSqlParser.T__1); } break; case 2: { - this.state = 2134; + this.state = 2156; this.expression(); } break; @@ -8353,26 +8453,26 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2145; + this.state = 2167; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_PRUNE: { - this.state = 2139; + this.state = 2161; this.match(TrinoSqlParser.KW_PRUNE); - this.state = 2140; + this.state = 2162; this.match(TrinoSqlParser.KW_WHEN); - this.state = 2141; + this.state = 2163; this.match(TrinoSqlParser.KW_EMPTY); } break; case TrinoSqlParser.KW_KEEP: { - this.state = 2142; + this.state = 2164; this.match(TrinoSqlParser.KW_KEEP); - this.state = 2143; + this.state = 2165; this.match(TrinoSqlParser.KW_WHEN); - this.state = 2144; + this.state = 2166; this.match(TrinoSqlParser.KW_EMPTY); } break; @@ -8384,47 +8484,47 @@ export class TrinoSqlParser extends SQLParserBase { default: break; } - this.state = 2163; + this.state = 2185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 2147; + this.state = 2169; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2148; + this.state = 2170; this.match(TrinoSqlParser.KW_BY); - this.state = 2161; + this.state = 2183; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { case 1: { - this.state = 2149; + this.state = 2171; this.match(TrinoSqlParser.T__0); - this.state = 2150; + this.state = 2172; this.sortItem(); - this.state = 2155; + this.state = 2177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2151; + this.state = 2173; this.match(TrinoSqlParser.T__2); - this.state = 2152; + this.state = 2174; this.sortItem(); } } - this.state = 2157; + this.state = 2179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2158; + this.state = 2180; this.match(TrinoSqlParser.T__1); } break; case 2: { - this.state = 2160; + this.state = 2182; this.sortItem(); } break; @@ -8450,47 +8550,47 @@ export class TrinoSqlParser extends SQLParserBase { } public tableArgumentRelation(): TableArgumentRelationContext { let localContext = new TableArgumentRelationContext(this.context, this.state); - this.enterRule(localContext, 146, TrinoSqlParser.RULE_tableArgumentRelation); + this.enterRule(localContext, 150, TrinoSqlParser.RULE_tableArgumentRelation); let _la: number; try { - this.state = 2191; + this.state = 2213; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { case 1: localContext = new TableArgumentTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2165; + this.state = 2187; this.match(TrinoSqlParser.KW_TABLE); - this.state = 2166; + this.state = 2188; this.match(TrinoSqlParser.T__0); - this.state = 2167; + this.state = 2189; this.tableRef(); - this.state = 2168; + this.state = 2190; this.match(TrinoSqlParser.T__1); - this.state = 2176; + this.state = 2198; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 270, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { case 1: { - this.state = 2170; + this.state = 2192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2169; + this.state = 2191; this.match(TrinoSqlParser.KW_AS); } } - this.state = 2172; + this.state = 2194; this.identifier(); - this.state = 2174; + this.state = 2196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 2173; + this.state = 2195; this.columnAliases(); } } @@ -8504,37 +8604,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TableArgumentQueryContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2178; + this.state = 2200; this.match(TrinoSqlParser.KW_TABLE); - this.state = 2179; + this.state = 2201; this.match(TrinoSqlParser.T__0); - this.state = 2180; + this.state = 2202; this.query(); - this.state = 2181; + this.state = 2203; this.match(TrinoSqlParser.T__1); - this.state = 2189; + this.state = 2211; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: { - this.state = 2183; + this.state = 2205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2182; + this.state = 2204; this.match(TrinoSqlParser.KW_AS); } } - this.state = 2185; + this.state = 2207; this.identifier(); - this.state = 2187; + this.state = 2209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 2186; + this.state = 2208; this.columnAliases(); } } @@ -8562,55 +8662,55 @@ export class TrinoSqlParser extends SQLParserBase { } public descriptorArgument(): DescriptorArgumentContext { let localContext = new DescriptorArgumentContext(this.context, this.state); - this.enterRule(localContext, 148, TrinoSqlParser.RULE_descriptorArgument); + this.enterRule(localContext, 152, TrinoSqlParser.RULE_descriptorArgument); let _la: number; try { - this.state = 2211; + this.state = 2233; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_DESCRIPTOR: this.enterOuterAlt(localContext, 1); { - this.state = 2193; + this.state = 2215; this.match(TrinoSqlParser.KW_DESCRIPTOR); - this.state = 2194; + this.state = 2216; this.match(TrinoSqlParser.T__0); - this.state = 2195; + this.state = 2217; this.descriptorField(); - this.state = 2200; + this.state = 2222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2196; + this.state = 2218; this.match(TrinoSqlParser.T__2); - this.state = 2197; + this.state = 2219; this.descriptorField(); } } - this.state = 2202; + this.state = 2224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2203; + this.state = 2225; this.match(TrinoSqlParser.T__1); } break; case TrinoSqlParser.KW_CAST: this.enterOuterAlt(localContext, 2); { - this.state = 2205; + this.state = 2227; this.match(TrinoSqlParser.KW_CAST); - this.state = 2206; + this.state = 2228; this.match(TrinoSqlParser.T__0); - this.state = 2207; + this.state = 2229; this.match(TrinoSqlParser.KW_NULL); - this.state = 2208; + this.state = 2230; this.match(TrinoSqlParser.KW_AS); - this.state = 2209; + this.state = 2231; this.match(TrinoSqlParser.KW_DESCRIPTOR); - this.state = 2210; + this.state = 2232; this.match(TrinoSqlParser.T__1); } break; @@ -8634,19 +8734,19 @@ export class TrinoSqlParser extends SQLParserBase { } public descriptorField(): DescriptorFieldContext { let localContext = new DescriptorFieldContext(this.context, this.state); - this.enterRule(localContext, 150, TrinoSqlParser.RULE_descriptorField); + this.enterRule(localContext, 154, TrinoSqlParser.RULE_descriptorField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2213; + this.state = 2235; this.identifier(); - this.state = 2215; + this.state = 2237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 50)) & ~0x1F) === 0 && ((1 << (_la - 50)) & 3069640845) !== 0) || ((((_la - 82)) & ~0x1F) === 0 && ((1 << (_la - 82)) & 4240329075) !== 0) || ((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & 2171416041) !== 0) || ((((_la - 146)) & ~0x1F) === 0 && ((1 << (_la - 146)) & 4160722303) !== 0) || ((((_la - 178)) & ~0x1F) === 0 && ((1 << (_la - 178)) & 4293517199) !== 0) || ((((_la - 210)) & ~0x1F) === 0 && ((1 << (_la - 210)) & 3724537823) !== 0) || ((((_la - 242)) & ~0x1F) === 0 && ((1 << (_la - 242)) & 2130182015) !== 0) || ((((_la - 275)) & ~0x1F) === 0 && ((1 << (_la - 275)) & 3015636855) !== 0) || ((((_la - 307)) & ~0x1F) === 0 && ((1 << (_la - 307)) & 1006633023) !== 0)) { { - this.state = 2214; + this.state = 2236; this.type_(0); } } @@ -8669,36 +8769,36 @@ export class TrinoSqlParser extends SQLParserBase { } public coPartitionTables(): CoPartitionTablesContext { let localContext = new CoPartitionTablesContext(this.context, this.state); - this.enterRule(localContext, 152, TrinoSqlParser.RULE_coPartitionTables); + this.enterRule(localContext, 156, TrinoSqlParser.RULE_coPartitionTables); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2217; + this.state = 2239; this.match(TrinoSqlParser.T__0); - this.state = 2218; + this.state = 2240; this.qualifiedName(); - this.state = 2219; + this.state = 2241; this.match(TrinoSqlParser.T__2); - this.state = 2220; + this.state = 2242; this.qualifiedName(); - this.state = 2225; + this.state = 2247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2221; + this.state = 2243; this.match(TrinoSqlParser.T__2); - this.state = 2222; + this.state = 2244; this.qualifiedName(); } } - this.state = 2227; + this.state = 2249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2228; + this.state = 2250; this.match(TrinoSqlParser.T__1); } } @@ -8718,11 +8818,11 @@ export class TrinoSqlParser extends SQLParserBase { } public expression(): ExpressionContext { let localContext = new ExpressionContext(this.context, this.state); - this.enterRule(localContext, 154, TrinoSqlParser.RULE_expression); + this.enterRule(localContext, 158, TrinoSqlParser.RULE_expression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2230; + this.state = 2252; this.booleanExpression(0); } } @@ -8752,13 +8852,13 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new BooleanExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 156; - this.enterRecursionRule(localContext, 156, TrinoSqlParser.RULE_booleanExpression, _p); + let _startState = 160; + this.enterRecursionRule(localContext, 160, TrinoSqlParser.RULE_booleanExpression, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2239; + this.state = 2261; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.T__0: @@ -9019,14 +9119,14 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2233; + this.state = 2255; (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 2235; + this.state = 2257; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 279, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: { - this.state = 2234; + this.state = 2256; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -9038,9 +9138,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2237; + this.state = 2259; this.match(TrinoSqlParser.KW_NOT); - this.state = 2238; + this.state = 2260; this.booleanExpression(3); } break; @@ -9048,9 +9148,9 @@ export class TrinoSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2249; + this.state = 2271; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 284, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9058,20 +9158,20 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2247; + this.state = 2269; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: { localContext = new AndContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_booleanExpression); - this.state = 2241; + this.state = 2263; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2242; + this.state = 2264; this.match(TrinoSqlParser.KW_AND); - this.state = 2243; + this.state = 2265; this.booleanExpression(3); } break; @@ -9079,22 +9179,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new OrContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_booleanExpression); - this.state = 2244; + this.state = 2266; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2245; + this.state = 2267; this.match(TrinoSqlParser.KW_OR); - this.state = 2246; + this.state = 2268; this.booleanExpression(2); } break; } } } - this.state = 2251; + this.state = 2273; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 282, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 284, this.context); } } } @@ -9114,19 +9214,19 @@ export class TrinoSqlParser extends SQLParserBase { } public predicate(value: antlr.ParserRuleContext): PredicateContext { let localContext = new PredicateContext(this.context, this.state, value); - this.enterRule(localContext, 158, TrinoSqlParser.RULE_predicate); + this.enterRule(localContext, 162, TrinoSqlParser.RULE_predicate); let _la: number; try { - this.state = 2313; + this.state = 2335; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2252; + this.state = 2274; this.comparisonOperator(); - this.state = 2253; + this.state = 2275; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -9134,15 +9234,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2255; + this.state = 2277; this.comparisonOperator(); - this.state = 2256; + this.state = 2278; this.comparisonQuantifier(); - this.state = 2257; + this.state = 2279; this.match(TrinoSqlParser.T__0); - this.state = 2258; + this.state = 2280; this.query(); - this.state = 2259; + this.state = 2281; this.match(TrinoSqlParser.T__1); } break; @@ -9150,23 +9250,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2262; + this.state = 2284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 2261; + this.state = 2283; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2264; + this.state = 2286; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 2265; + this.state = 2287; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 2266; + this.state = 2288; this.match(TrinoSqlParser.KW_AND); - this.state = 2267; + this.state = 2289; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -9174,39 +9274,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2270; + this.state = 2292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 2269; + this.state = 2291; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2272; + this.state = 2294; this.match(TrinoSqlParser.KW_IN); - this.state = 2273; + this.state = 2295; this.match(TrinoSqlParser.T__0); - this.state = 2274; + this.state = 2296; this.expression(); - this.state = 2279; + this.state = 2301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2275; + this.state = 2297; this.match(TrinoSqlParser.T__2); - this.state = 2276; + this.state = 2298; this.expression(); } } - this.state = 2281; + this.state = 2303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2282; + this.state = 2304; this.match(TrinoSqlParser.T__1); } break; @@ -9214,23 +9314,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2285; + this.state = 2307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 2284; + this.state = 2306; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2287; + this.state = 2309; this.match(TrinoSqlParser.KW_IN); - this.state = 2288; + this.state = 2310; this.match(TrinoSqlParser.T__0); - this.state = 2289; + this.state = 2311; this.query(); - this.state = 2290; + this.state = 2312; this.match(TrinoSqlParser.T__1); } break; @@ -9238,28 +9338,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2293; + this.state = 2315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 2292; + this.state = 2314; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2295; + this.state = 2317; this.match(TrinoSqlParser.KW_LIKE); - this.state = 2296; + this.state = 2318; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 2299; + this.state = 2321; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: { - this.state = 2297; + this.state = 2319; this.match(TrinoSqlParser.KW_ESCAPE); - this.state = 2298; + this.state = 2320; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -9270,19 +9370,19 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NullPredicateContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2301; + this.state = 2323; this.match(TrinoSqlParser.KW_IS); - this.state = 2303; + this.state = 2325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 2302; + this.state = 2324; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2305; + this.state = 2327; this.match(TrinoSqlParser.KW_NULL); } break; @@ -9290,23 +9390,23 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2306; + this.state = 2328; this.match(TrinoSqlParser.KW_IS); - this.state = 2308; + this.state = 2330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 2307; + this.state = 2329; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 2310; + this.state = 2332; this.match(TrinoSqlParser.KW_DISTINCT); - this.state = 2311; + this.state = 2333; this.match(TrinoSqlParser.KW_FROM); - this.state = 2312; + this.state = 2334; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -9338,23 +9438,23 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 160; - this.enterRecursionRule(localContext, 160, TrinoSqlParser.RULE_valueExpression, _p); + let _startState = 164; + this.enterRecursionRule(localContext, 164, TrinoSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2319; + this.state = 2341; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2316; + this.state = 2338; this.primaryExpression(0); } break; @@ -9363,7 +9463,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2317; + this.state = 2339; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 319 || _la === 320)) { @@ -9373,15 +9473,15 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2318; + this.state = 2340; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2335; + this.state = 2357; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 296, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9389,19 +9489,19 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2333; + this.state = 2355; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2321; + this.state = 2343; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2322; + this.state = 2344; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 321)) & ~0x1F) === 0 && ((1 << (_la - 321)) & 7) !== 0))) { @@ -9411,7 +9511,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2323; + this.state = 2345; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -9420,11 +9520,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2324; + this.state = 2346; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2325; + this.state = 2347; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 319 || _la === 320)) { @@ -9434,7 +9534,7 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2326; + this.state = 2348; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -9443,13 +9543,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2327; + this.state = 2349; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2328; + this.state = 2350; this.match(TrinoSqlParser.CONCAT); - this.state = 2329; + this.state = 2351; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; @@ -9457,22 +9557,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new AtTimeZoneContext(new ValueExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_valueExpression); - this.state = 2330; + this.state = 2352; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2331; + this.state = 2353; this.match(TrinoSqlParser.KW_AT); - this.state = 2332; + this.state = 2354; this.timeZoneSpecifier(); } break; } } } - this.state = 2337; + this.state = 2359; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 296, this.context); } } } @@ -9502,23 +9602,23 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 162; - this.enterRecursionRule(localContext, 162, TrinoSqlParser.RULE_primaryExpression, _p); + let _startState = 166; + this.enterRecursionRule(localContext, 166, TrinoSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2803; + this.state = 2825; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 359, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 361, this.context) ) { case 1: { localContext = new NullLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2339; + this.state = 2361; this.match(TrinoSqlParser.KW_NULL); } break; @@ -9527,7 +9627,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntervalLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2340; + this.state = 2362; this.interval(); } break; @@ -9536,9 +9636,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2341; + this.state = 2363; this.identifier(); - this.state = 2342; + this.state = 2364; this.string_(); } break; @@ -9547,11 +9647,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2344; + this.state = 2366; this.match(TrinoSqlParser.KW_DOUBLE); - this.state = 2345; + this.state = 2367; this.match(TrinoSqlParser.KW_PRECISION); - this.state = 2346; + this.state = 2368; this.string_(); } break; @@ -9560,7 +9660,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NumericLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2347; + this.state = 2369; this.number_(); } break; @@ -9569,7 +9669,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BooleanLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2348; + this.state = 2370; this.booleanValue(); } break; @@ -9578,7 +9678,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StringLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2349; + this.state = 2371; this.string_(); } break; @@ -9587,7 +9687,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BinaryLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2350; + this.state = 2372; this.match(TrinoSqlParser.BINARY_LITERAL); } break; @@ -9596,7 +9696,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ParameterContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2351; + this.state = 2373; this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -9605,17 +9705,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2352; + this.state = 2374; this.match(TrinoSqlParser.KW_POSITION); - this.state = 2353; + this.state = 2375; this.match(TrinoSqlParser.T__0); - this.state = 2354; + this.state = 2376; this.valueExpression(0); - this.state = 2355; + this.state = 2377; this.match(TrinoSqlParser.KW_IN); - this.state = 2356; + this.state = 2378; this.valueExpression(0); - this.state = 2357; + this.state = 2379; this.match(TrinoSqlParser.T__1); } break; @@ -9624,27 +9724,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2359; + this.state = 2381; this.match(TrinoSqlParser.T__0); - this.state = 2360; + this.state = 2382; this.expression(); - this.state = 2363; + this.state = 2385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2361; + this.state = 2383; this.match(TrinoSqlParser.T__2); - this.state = 2362; + this.state = 2384; this.expression(); } } - this.state = 2365; + this.state = 2387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 3); - this.state = 2367; + this.state = 2389; this.match(TrinoSqlParser.T__1); } break; @@ -9653,29 +9753,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2369; + this.state = 2391; this.match(TrinoSqlParser.KW_ROW); - this.state = 2370; + this.state = 2392; this.match(TrinoSqlParser.T__0); - this.state = 2371; + this.state = 2393; this.expression(); - this.state = 2376; + this.state = 2398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2372; + this.state = 2394; this.match(TrinoSqlParser.T__2); - this.state = 2373; + this.state = 2395; this.expression(); } } - this.state = 2378; + this.state = 2400; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2379; + this.state = 2401; this.match(TrinoSqlParser.T__1); } break; @@ -9684,88 +9784,88 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ListAggContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2381; + this.state = 2403; (localContext as ListAggContext)._name = this.match(TrinoSqlParser.KW_LISTAGG); - this.state = 2382; + this.state = 2404; this.match(TrinoSqlParser.T__0); - this.state = 2384; + this.state = 2406; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { case 1: { - this.state = 2383; + this.state = 2405; this.setQuantifier(); } break; } - this.state = 2386; + this.state = 2408; this.expression(); - this.state = 2389; + this.state = 2411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2387; + this.state = 2409; this.match(TrinoSqlParser.T__2); - this.state = 2388; + this.state = 2410; this.string_(); } } - this.state = 2394; + this.state = 2416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 191) { { - this.state = 2391; + this.state = 2413; this.match(TrinoSqlParser.KW_ON); - this.state = 2392; + this.state = 2414; this.match(TrinoSqlParser.KW_OVERFLOW); - this.state = 2393; + this.state = 2415; this.listAggOverflowBehavior(); } } - this.state = 2396; + this.state = 2418; this.match(TrinoSqlParser.T__1); { - this.state = 2397; + this.state = 2419; this.match(TrinoSqlParser.KW_WITHIN); - this.state = 2398; + this.state = 2420; this.match(TrinoSqlParser.KW_GROUP); - this.state = 2399; + this.state = 2421; this.match(TrinoSqlParser.T__0); - this.state = 2400; + this.state = 2422; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2401; + this.state = 2423; this.match(TrinoSqlParser.KW_BY); - this.state = 2402; + this.state = 2424; this.sortItem(); - this.state = 2407; + this.state = 2429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2403; + this.state = 2425; this.match(TrinoSqlParser.T__2); - this.state = 2404; + this.state = 2426; this.sortItem(); } } - this.state = 2409; + this.state = 2431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2410; + this.state = 2432; this.match(TrinoSqlParser.T__1); } - this.state = 2413; + this.state = 2435; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2412; + this.state = 2434; this.filter(); } break; @@ -9777,52 +9877,52 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2416; + this.state = 2438; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2415; + this.state = 2437; this.processingMode(); } break; } - this.state = 2418; + this.state = 2440; this.functionName(); - this.state = 2419; + this.state = 2441; this.match(TrinoSqlParser.T__0); - this.state = 2423; + this.state = 2445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 50)) & ~0x1F) === 0 && ((1 << (_la - 50)) & 3069640845) !== 0) || ((((_la - 82)) & ~0x1F) === 0 && ((1 << (_la - 82)) & 4240329075) !== 0) || ((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & 2171416041) !== 0) || ((((_la - 146)) & ~0x1F) === 0 && ((1 << (_la - 146)) & 4160722303) !== 0) || ((((_la - 178)) & ~0x1F) === 0 && ((1 << (_la - 178)) & 4293517199) !== 0) || ((((_la - 210)) & ~0x1F) === 0 && ((1 << (_la - 210)) & 3724537823) !== 0) || ((((_la - 242)) & ~0x1F) === 0 && ((1 << (_la - 242)) & 2130182015) !== 0) || ((((_la - 275)) & ~0x1F) === 0 && ((1 << (_la - 275)) & 3015636855) !== 0) || ((((_la - 307)) & ~0x1F) === 0 && ((1 << (_la - 307)) & 1006633023) !== 0)) { { - this.state = 2420; + this.state = 2442; (localContext as FunctionCallContext)._label = this.identifier(); - this.state = 2421; + this.state = 2443; this.match(TrinoSqlParser.T__3); } } - this.state = 2425; + this.state = 2447; this.match(TrinoSqlParser.ASTERISK); - this.state = 2426; + this.state = 2448; this.match(TrinoSqlParser.T__1); - this.state = 2428; + this.state = 2450; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { case 1: { - this.state = 2427; + this.state = 2449; this.filter(); } break; } - this.state = 2431; + this.state = 2453; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { case 1: { - this.state = 2430; + this.state = 2452; this.over(); } break; @@ -9834,114 +9934,114 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2434; + this.state = 2456; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 306, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 308, this.context) ) { case 1: { - this.state = 2433; + this.state = 2455; this.processingMode(); } break; } - this.state = 2436; + this.state = 2458; this.functionName(); - this.state = 2437; + this.state = 2459; this.match(TrinoSqlParser.T__0); - this.state = 2449; + this.state = 2471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 3728211947) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 2781862879) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 3082285823) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 4253015917) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 3758094335) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 4024434665) !== 0) || ((((_la - 226)) & ~0x1F) === 0 && ((1 << (_la - 226)) & 4286569983) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 4008705783) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 1618962301) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 4093) !== 0)) { { - this.state = 2439; + this.state = 2461; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 309, this.context) ) { case 1: { - this.state = 2438; + this.state = 2460; this.setQuantifier(); } break; } - this.state = 2441; + this.state = 2463; this.expression(); - this.state = 2446; + this.state = 2468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2442; + this.state = 2464; this.match(TrinoSqlParser.T__2); - this.state = 2443; + this.state = 2465; this.expression(); } } - this.state = 2448; + this.state = 2470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2461; + this.state = 2483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 2451; + this.state = 2473; this.match(TrinoSqlParser.KW_ORDER); - this.state = 2452; + this.state = 2474; this.match(TrinoSqlParser.KW_BY); - this.state = 2453; + this.state = 2475; this.sortItem(); - this.state = 2458; + this.state = 2480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2454; + this.state = 2476; this.match(TrinoSqlParser.T__2); - this.state = 2455; + this.state = 2477; this.sortItem(); } } - this.state = 2460; + this.state = 2482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2463; + this.state = 2485; this.match(TrinoSqlParser.T__1); - this.state = 2465; + this.state = 2487; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 312, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2464; + this.state = 2486; this.filter(); } break; } - this.state = 2471; + this.state = 2493; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: { - this.state = 2468; + this.state = 2490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 121 || _la === 229) { { - this.state = 2467; + this.state = 2489; this.nullTreatment(); } } - this.state = 2470; + this.state = 2492; this.over(); } break; @@ -9953,9 +10053,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MeasureContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2473; + this.state = 2495; this.identifier(); - this.state = 2474; + this.state = 2496; this.over(); } break; @@ -9964,11 +10064,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2476; + this.state = 2498; this.identifier(); - this.state = 2477; + this.state = 2499; this.match(TrinoSqlParser.T__6); - this.state = 2478; + this.state = 2500; this.expression(); } break; @@ -9977,39 +10077,39 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2480; + this.state = 2502; this.match(TrinoSqlParser.T__0); - this.state = 2489; + this.state = 2511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 50)) & ~0x1F) === 0 && ((1 << (_la - 50)) & 3069640845) !== 0) || ((((_la - 82)) & ~0x1F) === 0 && ((1 << (_la - 82)) & 4240329075) !== 0) || ((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & 2171416041) !== 0) || ((((_la - 146)) & ~0x1F) === 0 && ((1 << (_la - 146)) & 4160722303) !== 0) || ((((_la - 178)) & ~0x1F) === 0 && ((1 << (_la - 178)) & 4293517199) !== 0) || ((((_la - 210)) & ~0x1F) === 0 && ((1 << (_la - 210)) & 3724537823) !== 0) || ((((_la - 242)) & ~0x1F) === 0 && ((1 << (_la - 242)) & 2130182015) !== 0) || ((((_la - 275)) & ~0x1F) === 0 && ((1 << (_la - 275)) & 3015636855) !== 0) || ((((_la - 307)) & ~0x1F) === 0 && ((1 << (_la - 307)) & 1006633023) !== 0)) { { - this.state = 2481; + this.state = 2503; this.identifier(); - this.state = 2486; + this.state = 2508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2482; + this.state = 2504; this.match(TrinoSqlParser.T__2); - this.state = 2483; + this.state = 2505; this.identifier(); } } - this.state = 2488; + this.state = 2510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2491; + this.state = 2513; this.match(TrinoSqlParser.T__1); - this.state = 2492; + this.state = 2514; this.match(TrinoSqlParser.T__6); - this.state = 2493; + this.state = 2515; this.expression(); } break; @@ -10018,11 +10118,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2494; + this.state = 2516; this.match(TrinoSqlParser.T__0); - this.state = 2495; + this.state = 2517; this.query(); - this.state = 2496; + this.state = 2518; this.match(TrinoSqlParser.T__1); } break; @@ -10031,13 +10131,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2498; + this.state = 2520; this.match(TrinoSqlParser.KW_EXISTS); - this.state = 2499; + this.state = 2521; this.match(TrinoSqlParser.T__0); - this.state = 2500; + this.state = 2522; this.query(); - this.state = 2501; + this.state = 2523; this.match(TrinoSqlParser.T__1); } break; @@ -10046,37 +10146,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2503; + this.state = 2525; this.match(TrinoSqlParser.KW_CASE); - this.state = 2504; + this.state = 2526; (localContext as SimpleCaseContext)._operand = this.expression(); - this.state = 2506; + this.state = 2528; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2505; + this.state = 2527; this.whenClause(); } } - this.state = 2508; + this.state = 2530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 301); - this.state = 2512; + this.state = 2534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85) { { - this.state = 2510; + this.state = 2532; this.match(TrinoSqlParser.KW_ELSE); - this.state = 2511; + this.state = 2533; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2514; + this.state = 2536; this.match(TrinoSqlParser.KW_END); } break; @@ -10085,35 +10185,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2516; + this.state = 2538; this.match(TrinoSqlParser.KW_CASE); - this.state = 2518; + this.state = 2540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2517; + this.state = 2539; this.whenClause(); } } - this.state = 2520; + this.state = 2542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 301); - this.state = 2524; + this.state = 2546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85) { { - this.state = 2522; + this.state = 2544; this.match(TrinoSqlParser.KW_ELSE); - this.state = 2523; + this.state = 2545; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2526; + this.state = 2548; this.match(TrinoSqlParser.KW_END); } break; @@ -10122,17 +10222,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2528; + this.state = 2550; this.match(TrinoSqlParser.KW_CAST); - this.state = 2529; + this.state = 2551; this.match(TrinoSqlParser.T__0); - this.state = 2530; + this.state = 2552; this.expression(); - this.state = 2531; + this.state = 2553; this.match(TrinoSqlParser.KW_AS); - this.state = 2532; + this.state = 2554; this.type_(0); - this.state = 2533; + this.state = 2555; this.match(TrinoSqlParser.T__1); } break; @@ -10141,17 +10241,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2535; + this.state = 2557; this.match(TrinoSqlParser.KW_TRY_CAST); - this.state = 2536; + this.state = 2558; this.match(TrinoSqlParser.T__0); - this.state = 2537; + this.state = 2559; this.expression(); - this.state = 2538; + this.state = 2560; this.match(TrinoSqlParser.KW_AS); - this.state = 2539; + this.state = 2561; this.type_(0); - this.state = 2540; + this.state = 2562; this.match(TrinoSqlParser.T__1); } break; @@ -10160,37 +10260,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ArrayConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2542; + this.state = 2564; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 2543; + this.state = 2565; this.match(TrinoSqlParser.T__7); - this.state = 2552; + this.state = 2574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 3728211947) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 2781797343) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 3082285823) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 4253015917) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 3758094335) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 4024434665) !== 0) || ((((_la - 226)) & ~0x1F) === 0 && ((1 << (_la - 226)) & 4286569983) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 4008705783) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 1618962301) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 4093) !== 0)) { { - this.state = 2544; + this.state = 2566; this.expression(); - this.state = 2549; + this.state = 2571; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2545; + this.state = 2567; this.match(TrinoSqlParser.T__2); - this.state = 2546; + this.state = 2568; this.expression(); } } - this.state = 2551; + this.state = 2573; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2554; + this.state = 2576; this.match(TrinoSqlParser.T__8); } break; @@ -10199,7 +10299,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2555; + this.state = 2577; this.columnName(); } break; @@ -10208,7 +10308,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentDateContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2556; + this.state = 2578; (localContext as CurrentDateContext)._name = this.match(TrinoSqlParser.KW_CURRENT_DATE); } break; @@ -10217,18 +10317,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentTimeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2557; + this.state = 2579; (localContext as CurrentTimeContext)._name = this.match(TrinoSqlParser.KW_CURRENT_TIME); - this.state = 2561; + this.state = 2583; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { case 1: { - this.state = 2558; + this.state = 2580; this.match(TrinoSqlParser.T__0); - this.state = 2559; + this.state = 2581; (localContext as CurrentTimeContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2560; + this.state = 2582; this.match(TrinoSqlParser.T__1); } break; @@ -10240,18 +10340,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentTimestampContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2563; + this.state = 2585; (localContext as CurrentTimestampContext)._name = this.match(TrinoSqlParser.KW_CURRENT_TIMESTAMP); - this.state = 2567; + this.state = 2589; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: { - this.state = 2564; + this.state = 2586; this.match(TrinoSqlParser.T__0); - this.state = 2565; + this.state = 2587; (localContext as CurrentTimestampContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2566; + this.state = 2588; this.match(TrinoSqlParser.T__1); } break; @@ -10263,18 +10363,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LocalTimeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2569; + this.state = 2591; (localContext as LocalTimeContext)._name = this.match(TrinoSqlParser.KW_LOCALTIME); - this.state = 2573; + this.state = 2595; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 325, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: { - this.state = 2570; + this.state = 2592; this.match(TrinoSqlParser.T__0); - this.state = 2571; + this.state = 2593; (localContext as LocalTimeContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2572; + this.state = 2594; this.match(TrinoSqlParser.T__1); } break; @@ -10286,18 +10386,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LocalTimestampContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2575; + this.state = 2597; (localContext as LocalTimestampContext)._name = this.match(TrinoSqlParser.KW_LOCALTIMESTAMP); - this.state = 2579; + this.state = 2601; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: { - this.state = 2576; + this.state = 2598; this.match(TrinoSqlParser.T__0); - this.state = 2577; + this.state = 2599; (localContext as LocalTimestampContext)._precision = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 2578; + this.state = 2600; this.match(TrinoSqlParser.T__1); } break; @@ -10309,7 +10409,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2581; + this.state = 2603; (localContext as CurrentUserContext)._name = this.match(TrinoSqlParser.KW_CURRENT_USER); } break; @@ -10318,7 +10418,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentCatalogContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2582; + this.state = 2604; (localContext as CurrentCatalogContext)._name = this.match(TrinoSqlParser.KW_CURRENT_CATALOG); } break; @@ -10327,7 +10427,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentSchemaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2583; + this.state = 2605; (localContext as CurrentSchemaContext)._name = this.match(TrinoSqlParser.KW_CURRENT_SCHEMA); } break; @@ -10336,7 +10436,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentPathContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2584; + this.state = 2606; (localContext as CurrentPathContext)._name = this.match(TrinoSqlParser.KW_CURRENT_PATH); } break; @@ -10345,43 +10445,43 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TrimContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2585; + this.state = 2607; this.match(TrinoSqlParser.KW_TRIM); - this.state = 2586; + this.state = 2608; this.match(TrinoSqlParser.T__0); - this.state = 2594; + this.state = 2616; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { case 1: { - this.state = 2588; + this.state = 2610; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { case 1: { - this.state = 2587; + this.state = 2609; this.trimsSpecification(); } break; } - this.state = 2591; + this.state = 2613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326658) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 3728211947) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 2781797343) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 3082285823) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 4253015917) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 3755997183) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 4024434665) !== 0) || ((((_la - 226)) & ~0x1F) === 0 && ((1 << (_la - 226)) & 4286569983) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 4008705783) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 1618962301) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 4093) !== 0)) { { - this.state = 2590; + this.state = 2612; (localContext as TrimContext)._trimChar = this.valueExpression(0); } } - this.state = 2593; + this.state = 2615; this.match(TrinoSqlParser.KW_FROM); } break; } - this.state = 2596; + this.state = 2618; (localContext as TrimContext)._trimSource = this.valueExpression(0); - this.state = 2597; + this.state = 2619; this.match(TrinoSqlParser.T__1); } break; @@ -10390,17 +10490,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TrimContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2599; + this.state = 2621; this.match(TrinoSqlParser.KW_TRIM); - this.state = 2600; + this.state = 2622; this.match(TrinoSqlParser.T__0); - this.state = 2601; + this.state = 2623; (localContext as TrimContext)._trimSource = this.valueExpression(0); - this.state = 2602; + this.state = 2624; this.match(TrinoSqlParser.T__2); - this.state = 2603; + this.state = 2625; (localContext as TrimContext)._trimChar = this.valueExpression(0); - this.state = 2604; + this.state = 2626; this.match(TrinoSqlParser.T__1); } break; @@ -10409,29 +10509,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SubstringContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2606; + this.state = 2628; this.match(TrinoSqlParser.KW_SUBSTRING); - this.state = 2607; + this.state = 2629; this.match(TrinoSqlParser.T__0); - this.state = 2608; + this.state = 2630; this.valueExpression(0); - this.state = 2609; + this.state = 2631; this.match(TrinoSqlParser.KW_FROM); - this.state = 2610; + this.state = 2632; this.valueExpression(0); - this.state = 2613; + this.state = 2635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 2611; + this.state = 2633; this.match(TrinoSqlParser.KW_FOR); - this.state = 2612; + this.state = 2634; this.valueExpression(0); } } - this.state = 2615; + this.state = 2637; this.match(TrinoSqlParser.T__1); } break; @@ -10440,25 +10540,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NormalizeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2617; + this.state = 2639; this.match(TrinoSqlParser.KW_NORMALIZE); - this.state = 2618; + this.state = 2640; this.match(TrinoSqlParser.T__0); - this.state = 2619; + this.state = 2641; this.valueExpression(0); - this.state = 2622; + this.state = 2644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3) { { - this.state = 2620; + this.state = 2642; this.match(TrinoSqlParser.T__2); - this.state = 2621; + this.state = 2643; this.normalForm(); } } - this.state = 2624; + this.state = 2646; this.match(TrinoSqlParser.T__1); } break; @@ -10467,17 +10567,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExtractContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2626; + this.state = 2648; this.match(TrinoSqlParser.KW_EXTRACT); - this.state = 2627; + this.state = 2649; this.match(TrinoSqlParser.T__0); - this.state = 2628; + this.state = 2650; this.identifier(); - this.state = 2629; + this.state = 2651; this.match(TrinoSqlParser.KW_FROM); - this.state = 2630; + this.state = 2652; this.valueExpression(0); - this.state = 2631; + this.state = 2653; this.match(TrinoSqlParser.T__1); } break; @@ -10486,29 +10586,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CoalesceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2633; + this.state = 2655; this.match(TrinoSqlParser.KW_COALESCE); - this.state = 2634; + this.state = 2656; this.match(TrinoSqlParser.T__0); - this.state = 2635; + this.state = 2657; this.expression(); - this.state = 2640; + this.state = 2662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2636; + this.state = 2658; this.match(TrinoSqlParser.T__2); - this.state = 2637; + this.state = 2659; this.expression(); } } - this.state = 2642; + this.state = 2664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2643; + this.state = 2665; this.match(TrinoSqlParser.T__1); } break; @@ -10517,11 +10617,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2645; + this.state = 2667; this.match(TrinoSqlParser.T__0); - this.state = 2646; + this.state = 2668; this.expression(); - this.state = 2647; + this.state = 2669; this.match(TrinoSqlParser.T__1); } break; @@ -10530,37 +10630,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GroupingOperationContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2649; + this.state = 2671; this.match(TrinoSqlParser.KW_GROUPING); - this.state = 2650; + this.state = 2672; this.match(TrinoSqlParser.T__0); - this.state = 2659; + this.state = 2681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 50)) & ~0x1F) === 0 && ((1 << (_la - 50)) & 3069640845) !== 0) || ((((_la - 82)) & ~0x1F) === 0 && ((1 << (_la - 82)) & 4240329075) !== 0) || ((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & 2171416041) !== 0) || ((((_la - 146)) & ~0x1F) === 0 && ((1 << (_la - 146)) & 4160722303) !== 0) || ((((_la - 178)) & ~0x1F) === 0 && ((1 << (_la - 178)) & 4293517199) !== 0) || ((((_la - 210)) & ~0x1F) === 0 && ((1 << (_la - 210)) & 3724537823) !== 0) || ((((_la - 242)) & ~0x1F) === 0 && ((1 << (_la - 242)) & 2130182015) !== 0) || ((((_la - 275)) & ~0x1F) === 0 && ((1 << (_la - 275)) & 3015636855) !== 0) || ((((_la - 307)) & ~0x1F) === 0 && ((1 << (_la - 307)) & 1006633023) !== 0)) { { - this.state = 2651; + this.state = 2673; this.qualifiedName(); - this.state = 2656; + this.state = 2678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2652; + this.state = 2674; this.match(TrinoSqlParser.T__2); - this.state = 2653; + this.state = 2675; this.qualifiedName(); } } - this.state = 2658; + this.state = 2680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2661; + this.state = 2683; this.match(TrinoSqlParser.T__1); } break; @@ -10569,27 +10669,27 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2662; + this.state = 2684; this.match(TrinoSqlParser.KW_JSON_EXISTS); - this.state = 2663; + this.state = 2685; this.match(TrinoSqlParser.T__0); - this.state = 2664; + this.state = 2686; this.jsonPathInvocation(); - this.state = 2669; + this.state = 2691; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 90 || _la === 98 || _la === 274 || _la === 284) { { - this.state = 2665; + this.state = 2687; this.jsonExistsErrorBehavior(); - this.state = 2666; + this.state = 2688; this.match(TrinoSqlParser.KW_ON); - this.state = 2667; + this.state = 2689; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2671; + this.state = 2693; this.match(TrinoSqlParser.T__1); } break; @@ -10598,53 +10698,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonValueContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2673; + this.state = 2695; this.match(TrinoSqlParser.KW_JSON_VALUE); - this.state = 2674; + this.state = 2696; this.match(TrinoSqlParser.T__0); - this.state = 2675; + this.state = 2697; this.jsonPathInvocation(); - this.state = 2678; + this.state = 2700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 232) { { - this.state = 2676; + this.state = 2698; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2677; + this.state = 2699; this.type_(0); } } - this.state = 2684; + this.state = 2706; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 337, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 339, this.context) ) { case 1: { - this.state = 2680; + this.state = 2702; (localContext as JsonValueContext)._emptyBehavior = this.jsonValueBehavior(); - this.state = 2681; + this.state = 2703; this.match(TrinoSqlParser.KW_ON); - this.state = 2682; + this.state = 2704; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 2690; + this.state = 2712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71 || _la === 90 || _la === 184) { { - this.state = 2686; + this.state = 2708; (localContext as JsonValueContext)._errorBehavior = this.jsonValueBehavior(); - this.state = 2687; + this.state = 2709; this.match(TrinoSqlParser.KW_ON); - this.state = 2688; + this.state = 2710; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2692; + this.state = 2714; this.match(TrinoSqlParser.T__1); } break; @@ -10653,29 +10753,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonQueryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2694; + this.state = 2716; this.match(TrinoSqlParser.KW_JSON_QUERY); - this.state = 2695; + this.state = 2717; this.match(TrinoSqlParser.T__0); - this.state = 2696; + this.state = 2718; this.jsonPathInvocation(); - this.state = 2703; + this.state = 2725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 232) { { - this.state = 2697; + this.state = 2719; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2698; + this.state = 2720; this.type_(0); - this.state = 2701; + this.state = 2723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2699; + this.state = 2721; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2700; + this.state = 2722; this.jsonRepresentation(); } } @@ -10683,24 +10783,24 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2708; + this.state = 2730; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 305 || _la === 307) { { - this.state = 2705; + this.state = 2727; this.jsonQueryWrapperBehavior(); - this.state = 2706; + this.state = 2728; this.match(TrinoSqlParser.KW_WRAPPER); } } - this.state = 2717; + this.state = 2739; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145 || _la === 190) { { - this.state = 2710; + this.state = 2732; _la = this.tokenStream.LA(1); if(!(_la === 145 || _la === 190)) { this.errorHandler.recoverInline(this); @@ -10709,18 +10809,18 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2711; + this.state = 2733; this.match(TrinoSqlParser.KW_QUOTES); - this.state = 2715; + this.state = 2737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 191) { { - this.state = 2712; + this.state = 2734; this.match(TrinoSqlParser.KW_ON); - this.state = 2713; + this.state = 2735; this.match(TrinoSqlParser.KW_SCALAR); - this.state = 2714; + this.state = 2736; this.match(TrinoSqlParser.KW_TEXT_STRING); } } @@ -10728,35 +10828,35 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2723; + this.state = 2745; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: { - this.state = 2719; + this.state = 2741; (localContext as JsonQueryContext)._emptyBehavior = this.jsonQueryBehavior(); - this.state = 2720; + this.state = 2742; this.match(TrinoSqlParser.KW_ON); - this.state = 2721; + this.state = 2743; this.match(TrinoSqlParser.KW_EMPTY); } break; } - this.state = 2729; + this.state = 2751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 86 || _la === 90 || _la === 184) { { - this.state = 2725; + this.state = 2747; (localContext as JsonQueryContext)._errorBehavior = this.jsonQueryBehavior(); - this.state = 2726; + this.state = 2748; this.match(TrinoSqlParser.KW_ON); - this.state = 2727; + this.state = 2749; this.match(TrinoSqlParser.KW_ERROR); } } - this.state = 2731; + this.state = 2753; this.match(TrinoSqlParser.T__1); } break; @@ -10765,53 +10865,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonObjectContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2733; + this.state = 2755; this.match(TrinoSqlParser.KW_JSON_OBJECT); - this.state = 2734; + this.state = 2756; this.match(TrinoSqlParser.T__0); - this.state = 2763; + this.state = 2785; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { case 1: { - this.state = 2735; + this.state = 2757; this.jsonObjectMember(); - this.state = 2740; + this.state = 2762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2736; + this.state = 2758; this.match(TrinoSqlParser.T__2); - this.state = 2737; + this.state = 2759; this.jsonObjectMember(); } } - this.state = 2742; + this.state = 2764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2749; + this.state = 2771; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_NULL: { - this.state = 2743; + this.state = 2765; this.match(TrinoSqlParser.KW_NULL); - this.state = 2744; + this.state = 2766; this.match(TrinoSqlParser.KW_ON); - this.state = 2745; + this.state = 2767; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_ABSENT: { - this.state = 2746; + this.state = 2768; this.match(TrinoSqlParser.KW_ABSENT); - this.state = 2747; + this.state = 2769; this.match(TrinoSqlParser.KW_ON); - this.state = 2748; + this.state = 2770; this.match(TrinoSqlParser.KW_NULL); } break; @@ -10823,21 +10923,21 @@ export class TrinoSqlParser extends SQLParserBase { default: break; } - this.state = 2761; + this.state = 2783; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITH: { - this.state = 2751; + this.state = 2773; this.match(TrinoSqlParser.KW_WITH); - this.state = 2752; + this.state = 2774; this.match(TrinoSqlParser.KW_UNIQUE); - this.state = 2754; + this.state = 2776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 2753; + this.state = 2775; this.match(TrinoSqlParser.KW_KEYS); } } @@ -10846,16 +10946,16 @@ export class TrinoSqlParser extends SQLParserBase { break; case TrinoSqlParser.KW_WITHOUT: { - this.state = 2756; + this.state = 2778; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 2757; + this.state = 2779; this.match(TrinoSqlParser.KW_UNIQUE); - this.state = 2759; + this.state = 2781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 2758; + this.state = 2780; this.match(TrinoSqlParser.KW_KEYS); } } @@ -10871,23 +10971,23 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 2771; + this.state = 2793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 232) { { - this.state = 2765; + this.state = 2787; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2766; + this.state = 2788; this.type_(0); - this.state = 2769; + this.state = 2791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2767; + this.state = 2789; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2768; + this.state = 2790; this.jsonRepresentation(); } } @@ -10895,7 +10995,7 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2773; + this.state = 2795; this.match(TrinoSqlParser.T__1); } break; @@ -10904,53 +11004,53 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new JsonArrayContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2774; + this.state = 2796; this.match(TrinoSqlParser.KW_JSON_ARRAY); - this.state = 2775; + this.state = 2797; this.match(TrinoSqlParser.T__0); - this.state = 2792; + this.state = 2814; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 356, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { case 1: { - this.state = 2776; + this.state = 2798; this.jsonValueExpression(); - this.state = 2781; + this.state = 2803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2777; + this.state = 2799; this.match(TrinoSqlParser.T__2); - this.state = 2778; + this.state = 2800; this.jsonValueExpression(); } } - this.state = 2783; + this.state = 2805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2790; + this.state = 2812; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_NULL: { - this.state = 2784; + this.state = 2806; this.match(TrinoSqlParser.KW_NULL); - this.state = 2785; + this.state = 2807; this.match(TrinoSqlParser.KW_ON); - this.state = 2786; + this.state = 2808; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_ABSENT: { - this.state = 2787; + this.state = 2809; this.match(TrinoSqlParser.KW_ABSENT); - this.state = 2788; + this.state = 2810; this.match(TrinoSqlParser.KW_ON); - this.state = 2789; + this.state = 2811; this.match(TrinoSqlParser.KW_NULL); } break; @@ -10963,23 +11063,23 @@ export class TrinoSqlParser extends SQLParserBase { } break; } - this.state = 2800; + this.state = 2822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 232) { { - this.state = 2794; + this.state = 2816; this.match(TrinoSqlParser.KW_RETURNING); - this.state = 2795; + this.state = 2817; this.type_(0); - this.state = 2798; + this.state = 2820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2796; + this.state = 2818; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2797; + this.state = 2819; this.jsonRepresentation(); } } @@ -10987,15 +11087,15 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2802; + this.state = 2824; this.match(TrinoSqlParser.T__1); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2815; + this.state = 2837; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 361, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 363, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -11003,23 +11103,23 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2813; + this.state = 2835; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 360, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 362, this.context) ) { case 1: { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_primaryExpression); - this.state = 2805; + this.state = 2827; if (!(this.precpred(this.context, 25))) { throw this.createFailedPredicateException("this.precpred(this.context, 25)"); } - this.state = 2806; + this.state = 2828; this.match(TrinoSqlParser.T__7); - this.state = 2807; + this.state = 2829; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2808; + this.state = 2830; this.match(TrinoSqlParser.T__8); } break; @@ -11028,22 +11128,22 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DereferenceContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as DereferenceContext)._base = previousContext; this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_primaryExpression); - this.state = 2810; + this.state = 2832; if (!(this.precpred(this.context, 23))) { throw this.createFailedPredicateException("this.precpred(this.context, 23)"); } - this.state = 2811; + this.state = 2833; this.match(TrinoSqlParser.T__3); - this.state = 2812; + this.state = 2834; (localContext as DereferenceContext)._fieldName = this.identifier(); } break; } } } - this.state = 2817; + this.state = 2839; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 361, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 363, this.context); } } } @@ -11063,51 +11163,51 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonPathInvocation(): JsonPathInvocationContext { let localContext = new JsonPathInvocationContext(this.context, this.state); - this.enterRule(localContext, 164, TrinoSqlParser.RULE_jsonPathInvocation); + this.enterRule(localContext, 168, TrinoSqlParser.RULE_jsonPathInvocation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2818; + this.state = 2840; this.jsonValueExpression(); - this.state = 2819; + this.state = 2841; this.match(TrinoSqlParser.T__2); - this.state = 2820; + this.state = 2842; localContext._path = this.string_(); - this.state = 2823; + this.state = 2845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2821; + this.state = 2843; this.match(TrinoSqlParser.KW_AS); - this.state = 2822; + this.state = 2844; localContext._pathName = this.identifier(); } } - this.state = 2834; + this.state = 2856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 204) { { - this.state = 2825; + this.state = 2847; this.match(TrinoSqlParser.KW_PASSING); - this.state = 2826; + this.state = 2848; this.jsonArgument(); - this.state = 2831; + this.state = 2853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2827; + this.state = 2849; this.match(TrinoSqlParser.T__2); - this.state = 2828; + this.state = 2850; this.jsonArgument(); } } - this.state = 2833; + this.state = 2855; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11132,21 +11232,21 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonValueExpression(): JsonValueExpressionContext { let localContext = new JsonValueExpressionContext(this.context, this.state); - this.enterRule(localContext, 166, TrinoSqlParser.RULE_jsonValueExpression); + this.enterRule(localContext, 170, TrinoSqlParser.RULE_jsonValueExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2836; + this.state = 2858; this.expression(); - this.state = 2839; + this.state = 2861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2837; + this.state = 2859; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 2838; + this.state = 2860; this.jsonRepresentation(); } } @@ -11169,21 +11269,21 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonRepresentation(): JsonRepresentationContext { let localContext = new JsonRepresentationContext(this.context, this.state); - this.enterRule(localContext, 168, TrinoSqlParser.RULE_jsonRepresentation); + this.enterRule(localContext, 172, TrinoSqlParser.RULE_jsonRepresentation); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2841; + this.state = 2863; this.match(TrinoSqlParser.KW_JSON); - this.state = 2844; + this.state = 2866; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 2842; + this.state = 2864; this.match(TrinoSqlParser.KW_ENCODING); - this.state = 2843; + this.state = 2865; _la = this.tokenStream.LA(1); if(!(((((_la - 292)) & ~0x1F) === 0 && ((1 << (_la - 292)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -11213,15 +11313,15 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonArgument(): JsonArgumentContext { let localContext = new JsonArgumentContext(this.context, this.state); - this.enterRule(localContext, 170, TrinoSqlParser.RULE_jsonArgument); + this.enterRule(localContext, 174, TrinoSqlParser.RULE_jsonArgument); try { this.enterOuterAlt(localContext, 1); { - this.state = 2846; + this.state = 2868; this.jsonValueExpression(); - this.state = 2847; + this.state = 2869; this.match(TrinoSqlParser.KW_AS); - this.state = 2848; + this.state = 2870; this.identifier(); } } @@ -11241,12 +11341,12 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonExistsErrorBehavior(): JsonExistsErrorBehaviorContext { let localContext = new JsonExistsErrorBehaviorContext(this.context, this.state); - this.enterRule(localContext, 172, TrinoSqlParser.RULE_jsonExistsErrorBehavior); + this.enterRule(localContext, 176, TrinoSqlParser.RULE_jsonExistsErrorBehavior); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2850; + this.state = 2872; _la = this.tokenStream.LA(1); if(!(_la === 90 || _la === 98 || _la === 274 || _la === 284)) { this.errorHandler.recoverInline(this); @@ -11273,31 +11373,31 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonValueBehavior(): JsonValueBehaviorContext { let localContext = new JsonValueBehaviorContext(this.context, this.state); - this.enterRule(localContext, 174, TrinoSqlParser.RULE_jsonValueBehavior); + this.enterRule(localContext, 178, TrinoSqlParser.RULE_jsonValueBehavior); try { - this.state = 2856; + this.state = 2878; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ERROR: this.enterOuterAlt(localContext, 1); { - this.state = 2852; + this.state = 2874; this.match(TrinoSqlParser.KW_ERROR); } break; case TrinoSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 2853; + this.state = 2875; this.match(TrinoSqlParser.KW_NULL); } break; case TrinoSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 3); { - this.state = 2854; + this.state = 2876; this.match(TrinoSqlParser.KW_DEFAULT); - this.state = 2855; + this.state = 2877; this.expression(); } break; @@ -11321,23 +11421,23 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonQueryWrapperBehavior(): JsonQueryWrapperBehaviorContext { let localContext = new JsonQueryWrapperBehaviorContext(this.context, this.state); - this.enterRule(localContext, 176, TrinoSqlParser.RULE_jsonQueryWrapperBehavior); + this.enterRule(localContext, 180, TrinoSqlParser.RULE_jsonQueryWrapperBehavior); let _la: number; try { - this.state = 2869; + this.state = 2891; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_WITHOUT: this.enterOuterAlt(localContext, 1); { - this.state = 2858; + this.state = 2880; this.match(TrinoSqlParser.KW_WITHOUT); - this.state = 2860; + this.state = 2882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 2859; + this.state = 2881; this.match(TrinoSqlParser.KW_ARRAY); } } @@ -11347,14 +11447,14 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.KW_WITH: this.enterOuterAlt(localContext, 2); { - this.state = 2862; + this.state = 2884; this.match(TrinoSqlParser.KW_WITH); - this.state = 2864; + this.state = 2886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 50 || _la === 281) { { - this.state = 2863; + this.state = 2885; _la = this.tokenStream.LA(1); if(!(_la === 50 || _la === 281)) { this.errorHandler.recoverInline(this); @@ -11366,12 +11466,12 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2867; + this.state = 2889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 27) { { - this.state = 2866; + this.state = 2888; this.match(TrinoSqlParser.KW_ARRAY); } } @@ -11398,40 +11498,40 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonQueryBehavior(): JsonQueryBehaviorContext { let localContext = new JsonQueryBehaviorContext(this.context, this.state); - this.enterRule(localContext, 178, TrinoSqlParser.RULE_jsonQueryBehavior); + this.enterRule(localContext, 182, TrinoSqlParser.RULE_jsonQueryBehavior); try { - this.state = 2877; + this.state = 2899; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2871; + this.state = 2893; this.match(TrinoSqlParser.KW_ERROR); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2872; + this.state = 2894; this.match(TrinoSqlParser.KW_NULL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2873; + this.state = 2895; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 2874; + this.state = 2896; this.match(TrinoSqlParser.KW_ARRAY); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2875; + this.state = 2897; this.match(TrinoSqlParser.KW_EMPTY); - this.state = 2876; + this.state = 2898; this.match(TrinoSqlParser.KW_OBJECT); } break; @@ -11453,40 +11553,40 @@ export class TrinoSqlParser extends SQLParserBase { } public jsonObjectMember(): JsonObjectMemberContext { let localContext = new JsonObjectMemberContext(this.context, this.state); - this.enterRule(localContext, 180, TrinoSqlParser.RULE_jsonObjectMember); + this.enterRule(localContext, 184, TrinoSqlParser.RULE_jsonObjectMember); try { - this.state = 2890; + this.state = 2912; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 374, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2880; + this.state = 2902; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 375, this.context) ) { case 1: { - this.state = 2879; + this.state = 2901; this.match(TrinoSqlParser.KW_KEY); } break; } - this.state = 2882; + this.state = 2904; this.expression(); - this.state = 2883; + this.state = 2905; this.match(TrinoSqlParser.KW_VALUE); - this.state = 2884; + this.state = 2906; this.jsonValueExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2886; + this.state = 2908; this.expression(); - this.state = 2887; + this.state = 2909; this.match(TrinoSqlParser.T__9); - this.state = 2888; + this.state = 2910; this.jsonValueExpression(); } break; @@ -11508,12 +11608,12 @@ export class TrinoSqlParser extends SQLParserBase { } public processingMode(): ProcessingModeContext { let localContext = new ProcessingModeContext(this.context, this.state); - this.enterRule(localContext, 182, TrinoSqlParser.RULE_processingMode); + this.enterRule(localContext, 186, TrinoSqlParser.RULE_processingMode); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2892; + this.state = 2914; _la = this.tokenStream.LA(1); if(!(_la === 101 || _la === 242)) { this.errorHandler.recoverInline(this); @@ -11540,26 +11640,26 @@ export class TrinoSqlParser extends SQLParserBase { } public nullTreatment(): NullTreatmentContext { let localContext = new NullTreatmentContext(this.context, this.state); - this.enterRule(localContext, 184, TrinoSqlParser.RULE_nullTreatment); + this.enterRule(localContext, 188, TrinoSqlParser.RULE_nullTreatment); try { - this.state = 2898; + this.state = 2920; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_IGNORE: this.enterOuterAlt(localContext, 1); { - this.state = 2894; + this.state = 2916; this.match(TrinoSqlParser.KW_IGNORE); - this.state = 2895; + this.state = 2917; this.match(TrinoSqlParser.KW_NULLS); } break; case TrinoSqlParser.KW_RESPECT: this.enterOuterAlt(localContext, 2); { - this.state = 2896; + this.state = 2918; this.match(TrinoSqlParser.KW_RESPECT); - this.state = 2897; + this.state = 2919; this.match(TrinoSqlParser.KW_NULLS); } break; @@ -11583,16 +11683,16 @@ export class TrinoSqlParser extends SQLParserBase { } public string_(): StringContext { let localContext = new StringContext(this.context, this.state); - this.enterRule(localContext, 186, TrinoSqlParser.RULE_string); + this.enterRule(localContext, 190, TrinoSqlParser.RULE_string); try { - this.state = 2906; + this.state = 2928; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.STRING: localContext = new BasicStringLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2900; + this.state = 2922; this.match(TrinoSqlParser.STRING); } break; @@ -11600,16 +11700,16 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnicodeStringLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2901; + this.state = 2923; this.match(TrinoSqlParser.UNICODE_STRING); - this.state = 2904; + this.state = 2926; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 376, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { case 1: { - this.state = 2902; + this.state = 2924; this.match(TrinoSqlParser.KW_UESCAPE); - this.state = 2903; + this.state = 2925; this.match(TrinoSqlParser.STRING); } break; @@ -11636,20 +11736,20 @@ export class TrinoSqlParser extends SQLParserBase { } public timeZoneSpecifier(): TimeZoneSpecifierContext { let localContext = new TimeZoneSpecifierContext(this.context, this.state); - this.enterRule(localContext, 188, TrinoSqlParser.RULE_timeZoneSpecifier); + this.enterRule(localContext, 192, TrinoSqlParser.RULE_timeZoneSpecifier); try { - this.state = 2914; + this.state = 2936; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 378, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: localContext = new TimeZoneIntervalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2908; + this.state = 2930; this.match(TrinoSqlParser.KW_TIME); - this.state = 2909; + this.state = 2931; this.match(TrinoSqlParser.KW_ZONE); - this.state = 2910; + this.state = 2932; this.interval(); } break; @@ -11657,11 +11757,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TimeZoneStringContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2911; + this.state = 2933; this.match(TrinoSqlParser.KW_TIME); - this.state = 2912; + this.state = 2934; this.match(TrinoSqlParser.KW_ZONE); - this.state = 2913; + this.state = 2935; this.string_(); } break; @@ -11683,12 +11783,12 @@ export class TrinoSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 190, TrinoSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 194, TrinoSqlParser.RULE_comparisonOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2916; + this.state = 2938; _la = this.tokenStream.LA(1); if(!(((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -11715,12 +11815,12 @@ export class TrinoSqlParser extends SQLParserBase { } public comparisonQuantifier(): ComparisonQuantifierContext { let localContext = new ComparisonQuantifierContext(this.context, this.state); - this.enterRule(localContext, 192, TrinoSqlParser.RULE_comparisonQuantifier); + this.enterRule(localContext, 196, TrinoSqlParser.RULE_comparisonQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2918; + this.state = 2940; _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 26 || _la === 255)) { this.errorHandler.recoverInline(this); @@ -11747,12 +11847,12 @@ export class TrinoSqlParser extends SQLParserBase { } public booleanValue(): BooleanValueContext { let localContext = new BooleanValueContext(this.context, this.state); - this.enterRule(localContext, 194, TrinoSqlParser.RULE_booleanValue); + this.enterRule(localContext, 198, TrinoSqlParser.RULE_booleanValue); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2920; + this.state = 2942; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 274)) { this.errorHandler.recoverInline(this); @@ -11779,19 +11879,19 @@ export class TrinoSqlParser extends SQLParserBase { } public interval(): IntervalContext { let localContext = new IntervalContext(this.context, this.state); - this.enterRule(localContext, 196, TrinoSqlParser.RULE_interval); + this.enterRule(localContext, 200, TrinoSqlParser.RULE_interval); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2922; + this.state = 2944; this.match(TrinoSqlParser.KW_INTERVAL); - this.state = 2924; + this.state = 2946; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 319 || _la === 320) { { - this.state = 2923; + this.state = 2945; localContext._sign = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 319 || _la === 320)) { @@ -11804,18 +11904,18 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 2926; + this.state = 2948; this.string_(); - this.state = 2927; + this.state = 2949; localContext._from_ = this.intervalField(); - this.state = 2930; + this.state = 2952; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { case 1: { - this.state = 2928; + this.state = 2950; this.match(TrinoSqlParser.KW_TO); - this.state = 2929; + this.state = 2951; localContext._to = this.intervalField(); } break; @@ -11838,12 +11938,12 @@ export class TrinoSqlParser extends SQLParserBase { } public intervalField(): IntervalFieldContext { let localContext = new IntervalFieldContext(this.context, this.state); - this.enterRule(localContext, 198, TrinoSqlParser.RULE_intervalField); + this.enterRule(localContext, 202, TrinoSqlParser.RULE_intervalField); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2932; + this.state = 2954; _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 119 || _la === 171 || _la === 172 || _la === 246 || _la === 311)) { this.errorHandler.recoverInline(this); @@ -11870,12 +11970,12 @@ export class TrinoSqlParser extends SQLParserBase { } public normalForm(): NormalFormContext { let localContext = new NormalFormContext(this.context, this.state); - this.enterRule(localContext, 200, TrinoSqlParser.RULE_normalForm); + this.enterRule(localContext, 204, TrinoSqlParser.RULE_normalForm); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2934; + this.state = 2956; _la = this.tokenStream.LA(1); if(!(((((_la - 176)) & ~0x1F) === 0 && ((1 << (_la - 176)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11912,45 +12012,45 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new TypeContext(this.context, parentState); let previousContext = localContext; - let _startState = 202; - this.enterRecursionRule(localContext, 202, TrinoSqlParser.RULE_type, _p); + let _startState = 206; + this.enterRecursionRule(localContext, 206, TrinoSqlParser.RULE_type, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3007; + this.state = 3029; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 391, this.context) ) { case 1: { localContext = new RowTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2937; + this.state = 2959; this.match(TrinoSqlParser.KW_ROW); - this.state = 2938; + this.state = 2960; this.match(TrinoSqlParser.T__0); - this.state = 2939; + this.state = 2961; this.rowField(); - this.state = 2944; + this.state = 2966; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2940; + this.state = 2962; this.match(TrinoSqlParser.T__2); - this.state = 2941; + this.state = 2963; this.rowField(); } } - this.state = 2946; + this.state = 2968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2947; + this.state = 2969; this.match(TrinoSqlParser.T__1); } break; @@ -11959,18 +12059,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntervalTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2949; + this.state = 2971; this.match(TrinoSqlParser.KW_INTERVAL); - this.state = 2950; + this.state = 2972; (localContext as IntervalTypeContext)._from_ = this.intervalField(); - this.state = 2953; + this.state = 2975; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: { - this.state = 2951; + this.state = 2973; this.match(TrinoSqlParser.KW_TO); - this.state = 2952; + this.state = 2974; (localContext as IntervalTypeContext)._to = this.intervalField(); } break; @@ -11982,28 +12082,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DateTimeTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2955; + this.state = 2977; (localContext as DateTimeTypeContext)._base = this.match(TrinoSqlParser.KW_TIMESTAMP); - this.state = 2960; + this.state = 2982; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 385, this.context) ) { case 1: { - this.state = 2956; + this.state = 2978; this.match(TrinoSqlParser.T__0); - this.state = 2957; + this.state = 2979; (localContext as DateTimeTypeContext)._precision = this.typeParameter(); - this.state = 2958; + this.state = 2980; this.match(TrinoSqlParser.T__1); } break; } - this.state = 2965; + this.state = 2987; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { case 1: { - this.state = 2962; + this.state = 2984; _la = this.tokenStream.LA(1); if(!(_la === 305 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -12012,9 +12112,9 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2963; + this.state = 2985; this.match(TrinoSqlParser.KW_TIME); - this.state = 2964; + this.state = 2986; this.match(TrinoSqlParser.KW_ZONE); } break; @@ -12026,28 +12126,28 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TimeTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2967; + this.state = 2989; (localContext as TimeTypeContext)._base = this.match(TrinoSqlParser.KW_TIME); - this.state = 2972; + this.state = 2994; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 385, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 387, this.context) ) { case 1: { - this.state = 2968; + this.state = 2990; this.match(TrinoSqlParser.T__0); - this.state = 2969; + this.state = 2991; (localContext as TimeTypeContext)._precision = this.typeParameter(); - this.state = 2970; + this.state = 2992; this.match(TrinoSqlParser.T__1); } break; } - this.state = 2977; + this.state = 2999; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 386, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { case 1: { - this.state = 2974; + this.state = 2996; _la = this.tokenStream.LA(1); if(!(_la === 305 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -12056,9 +12156,9 @@ export class TrinoSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2975; + this.state = 2997; this.match(TrinoSqlParser.KW_TIME); - this.state = 2976; + this.state = 2998; this.match(TrinoSqlParser.KW_ZONE); } break; @@ -12070,9 +12170,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DoublePrecisionTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2979; + this.state = 3001; this.match(TrinoSqlParser.KW_DOUBLE); - this.state = 2980; + this.state = 3002; this.match(TrinoSqlParser.KW_PRECISION); } break; @@ -12081,13 +12181,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LegacyArrayTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2981; + this.state = 3003; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 2982; + this.state = 3004; this.match(TrinoSqlParser.LT); - this.state = 2983; + this.state = 3005; this.type_(0); - this.state = 2984; + this.state = 3006; this.match(TrinoSqlParser.GT); } break; @@ -12096,17 +12196,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LegacyMapTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2986; + this.state = 3008; this.match(TrinoSqlParser.KW_MAP); - this.state = 2987; + this.state = 3009; this.match(TrinoSqlParser.LT); - this.state = 2988; + this.state = 3010; (localContext as LegacyMapTypeContext)._keyType = this.type_(0); - this.state = 2989; + this.state = 3011; this.match(TrinoSqlParser.T__2); - this.state = 2990; + this.state = 3012; (localContext as LegacyMapTypeContext)._valueType = this.type_(0); - this.state = 2991; + this.state = 3013; this.match(TrinoSqlParser.GT); } break; @@ -12115,34 +12215,34 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GenericTypeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2993; + this.state = 3015; this.identifier(); - this.state = 3005; + this.state = 3027; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { case 1: { - this.state = 2994; + this.state = 3016; this.match(TrinoSqlParser.T__0); - this.state = 2995; + this.state = 3017; this.typeParameter(); - this.state = 3000; + this.state = 3022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 2996; + this.state = 3018; this.match(TrinoSqlParser.T__2); - this.state = 2997; + this.state = 3019; this.typeParameter(); } } - this.state = 3002; + this.state = 3024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3003; + this.state = 3025; this.match(TrinoSqlParser.T__1); } break; @@ -12151,9 +12251,9 @@ export class TrinoSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3018; + this.state = 3040; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 391, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 393, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -12164,22 +12264,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new ArrayTypeContext(new TypeContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_type); - this.state = 3009; + this.state = 3031; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3010; + this.state = 3032; this.match(TrinoSqlParser.KW_ARRAY); - this.state = 3014; + this.state = 3036; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { case 1: { - this.state = 3011; + this.state = 3033; this.match(TrinoSqlParser.T__7); - this.state = 3012; + this.state = 3034; this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 3013; + this.state = 3035; this.match(TrinoSqlParser.T__8); } break; @@ -12187,9 +12287,9 @@ export class TrinoSqlParser extends SQLParserBase { } } } - this.state = 3020; + this.state = 3042; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 391, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 393, this.context); } } } @@ -12209,24 +12309,24 @@ export class TrinoSqlParser extends SQLParserBase { } public rowField(): RowFieldContext { let localContext = new RowFieldContext(this.context, this.state); - this.enterRule(localContext, 204, TrinoSqlParser.RULE_rowField); + this.enterRule(localContext, 208, TrinoSqlParser.RULE_rowField); try { - this.state = 3025; + this.state = 3047; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3021; + this.state = 3043; this.type_(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3022; + this.state = 3044; this.identifier(); - this.state = 3023; + this.state = 3045; this.type_(0); } break; @@ -12248,15 +12348,15 @@ export class TrinoSqlParser extends SQLParserBase { } public typeParameter(): TypeParameterContext { let localContext = new TypeParameterContext(this.context, this.state); - this.enterRule(localContext, 206, TrinoSqlParser.RULE_typeParameter); + this.enterRule(localContext, 210, TrinoSqlParser.RULE_typeParameter); try { - this.state = 3029; + this.state = 3051; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 3027; + this.state = 3049; this.match(TrinoSqlParser.INTEGER_VALUE); } break; @@ -12480,7 +12580,7 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 2); { - this.state = 3028; + this.state = 3050; this.type_(0); } break; @@ -12504,17 +12604,17 @@ export class TrinoSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 208, TrinoSqlParser.RULE_whenClause); + this.enterRule(localContext, 212, TrinoSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3031; + this.state = 3053; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3032; + this.state = 3054; localContext._condition = this.expression(); - this.state = 3033; + this.state = 3055; this.match(TrinoSqlParser.KW_THEN); - this.state = 3034; + this.state = 3056; localContext._result = this.expression(); } } @@ -12534,17 +12634,17 @@ export class TrinoSqlParser extends SQLParserBase { } public filter(): FilterContext { let localContext = new FilterContext(this.context, this.state); - this.enterRule(localContext, 210, TrinoSqlParser.RULE_filter); + this.enterRule(localContext, 214, TrinoSqlParser.RULE_filter); try { this.enterOuterAlt(localContext, 1); { - this.state = 3036; + this.state = 3058; this.match(TrinoSqlParser.KW_FILTER); - this.state = 3037; + this.state = 3059; this.match(TrinoSqlParser.T__0); - this.state = 3038; + this.state = 3060; this.whereClause(); - this.state = 3039; + this.state = 3061; this.match(TrinoSqlParser.T__1); } } @@ -12564,65 +12664,65 @@ export class TrinoSqlParser extends SQLParserBase { } public mergeCase(): MergeCaseContext { let localContext = new MergeCaseContext(this.context, this.state); - this.enterRule(localContext, 212, TrinoSqlParser.RULE_mergeCase); + this.enterRule(localContext, 216, TrinoSqlParser.RULE_mergeCase); let _la: number; try { - this.state = 3105; + this.state = 3127; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { case 1: localContext = new MergeUpdateContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3041; + this.state = 3063; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3042; + this.state = 3064; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3045; + this.state = 3067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3043; + this.state = 3065; this.match(TrinoSqlParser.KW_AND); - this.state = 3044; + this.state = 3066; (localContext as MergeUpdateContext)._condition = this.expression(); } } - this.state = 3047; + this.state = 3069; this.match(TrinoSqlParser.KW_THEN); - this.state = 3048; + this.state = 3070; this.match(TrinoSqlParser.KW_UPDATE); - this.state = 3049; + this.state = 3071; this.match(TrinoSqlParser.KW_SET); - this.state = 3050; + this.state = 3072; (localContext as MergeUpdateContext)._identifier = this.identifier(); (localContext as MergeUpdateContext)._targets.push((localContext as MergeUpdateContext)._identifier); - this.state = 3051; + this.state = 3073; this.match(TrinoSqlParser.EQ); - this.state = 3052; + this.state = 3074; (localContext as MergeUpdateContext)._expression = this.expression(); (localContext as MergeUpdateContext)._values.push((localContext as MergeUpdateContext)._expression); - this.state = 3060; + this.state = 3082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3053; + this.state = 3075; this.match(TrinoSqlParser.T__2); - this.state = 3054; + this.state = 3076; (localContext as MergeUpdateContext)._identifier = this.identifier(); (localContext as MergeUpdateContext)._targets.push((localContext as MergeUpdateContext)._identifier); - this.state = 3055; + this.state = 3077; this.match(TrinoSqlParser.EQ); - this.state = 3056; + this.state = 3078; (localContext as MergeUpdateContext)._expression = this.expression(); (localContext as MergeUpdateContext)._values.push((localContext as MergeUpdateContext)._expression); } } - this.state = 3062; + this.state = 3084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12632,25 +12732,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeDeleteContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3063; + this.state = 3085; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3064; + this.state = 3086; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3067; + this.state = 3089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3065; + this.state = 3087; this.match(TrinoSqlParser.KW_AND); - this.state = 3066; + this.state = 3088; (localContext as MergeDeleteContext)._condition = this.expression(); } } - this.state = 3069; + this.state = 3091; this.match(TrinoSqlParser.KW_THEN); - this.state = 3070; + this.state = 3092; this.match(TrinoSqlParser.KW_DELETE); } break; @@ -12658,85 +12758,85 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new MergeInsertContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3071; + this.state = 3093; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3072; + this.state = 3094; this.match(TrinoSqlParser.KW_NOT); - this.state = 3073; + this.state = 3095; this.match(TrinoSqlParser.KW_MATCHED); - this.state = 3076; + this.state = 3098; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 3074; + this.state = 3096; this.match(TrinoSqlParser.KW_AND); - this.state = 3075; + this.state = 3097; (localContext as MergeInsertContext)._condition = this.expression(); } } - this.state = 3078; + this.state = 3100; this.match(TrinoSqlParser.KW_THEN); - this.state = 3079; + this.state = 3101; this.match(TrinoSqlParser.KW_INSERT); - this.state = 3091; + this.state = 3113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 1) { { - this.state = 3080; + this.state = 3102; this.match(TrinoSqlParser.T__0); - this.state = 3081; + this.state = 3103; (localContext as MergeInsertContext)._identifier = this.identifier(); (localContext as MergeInsertContext)._targets.push((localContext as MergeInsertContext)._identifier); - this.state = 3086; + this.state = 3108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3082; + this.state = 3104; this.match(TrinoSqlParser.T__2); - this.state = 3083; + this.state = 3105; (localContext as MergeInsertContext)._identifier = this.identifier(); (localContext as MergeInsertContext)._targets.push((localContext as MergeInsertContext)._identifier); } } - this.state = 3088; + this.state = 3110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3089; + this.state = 3111; this.match(TrinoSqlParser.T__1); } } - this.state = 3093; + this.state = 3115; this.match(TrinoSqlParser.KW_VALUES); - this.state = 3094; + this.state = 3116; this.match(TrinoSqlParser.T__0); - this.state = 3095; + this.state = 3117; (localContext as MergeInsertContext)._expression = this.expression(); (localContext as MergeInsertContext)._values.push((localContext as MergeInsertContext)._expression); - this.state = 3100; + this.state = 3122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3096; + this.state = 3118; this.match(TrinoSqlParser.T__2); - this.state = 3097; + this.state = 3119; (localContext as MergeInsertContext)._expression = this.expression(); (localContext as MergeInsertContext)._values.push((localContext as MergeInsertContext)._expression); } } - this.state = 3102; + this.state = 3124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3103; + this.state = 3125; this.match(TrinoSqlParser.T__1); } break; @@ -12758,13 +12858,13 @@ export class TrinoSqlParser extends SQLParserBase { } public over(): OverContext { let localContext = new OverContext(this.context, this.state); - this.enterRule(localContext, 214, TrinoSqlParser.RULE_over); + this.enterRule(localContext, 218, TrinoSqlParser.RULE_over); try { this.enterOuterAlt(localContext, 1); { - this.state = 3107; + this.state = 3129; this.match(TrinoSqlParser.KW_OVER); - this.state = 3113; + this.state = 3135; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -12986,17 +13086,17 @@ export class TrinoSqlParser extends SQLParserBase { case TrinoSqlParser.QUOTED_IDENTIFIER: case TrinoSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 3108; + this.state = 3130; localContext._windowName = this.identifier(); } break; case TrinoSqlParser.T__0: { - this.state = 3109; + this.state = 3131; this.match(TrinoSqlParser.T__0); - this.state = 3110; + this.state = 3132; this.windowSpecification(); - this.state = 3111; + this.state = 3133; this.match(TrinoSqlParser.T__1); } break; @@ -13021,61 +13121,61 @@ export class TrinoSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 216, TrinoSqlParser.RULE_windowFrame); + this.enterRule(localContext, 220, TrinoSqlParser.RULE_windowFrame); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3124; + this.state = 3146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 169) { { - this.state = 3115; + this.state = 3137; this.match(TrinoSqlParser.KW_MEASURES); - this.state = 3116; + this.state = 3138; this.measureDefinition(); - this.state = 3121; + this.state = 3143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3117; + this.state = 3139; this.match(TrinoSqlParser.T__2); - this.state = 3118; + this.state = 3140; this.measureDefinition(); } } - this.state = 3123; + this.state = 3145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3126; + this.state = 3148; this.frameExtent(); - this.state = 3130; + this.state = 3152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 3127; + this.state = 3149; this.match(TrinoSqlParser.KW_AFTER); - this.state = 3128; + this.state = 3150; this.match(TrinoSqlParser.KW_MATCH); - this.state = 3129; + this.state = 3151; this.skipTo(); } } - this.state = 3133; + this.state = 3155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125 || _la === 248) { { - this.state = 3132; + this.state = 3154; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 248)) { this.errorHandler.recoverInline(this); @@ -13087,72 +13187,72 @@ export class TrinoSqlParser extends SQLParserBase { } } - this.state = 3140; + this.state = 3162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 3135; + this.state = 3157; this.match(TrinoSqlParser.KW_PATTERN); - this.state = 3136; + this.state = 3158; this.match(TrinoSqlParser.T__0); - this.state = 3137; + this.state = 3159; this.rowPattern(0); - this.state = 3138; + this.state = 3160; this.match(TrinoSqlParser.T__1); } } - this.state = 3151; + this.state = 3173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 258) { { - this.state = 3142; + this.state = 3164; this.match(TrinoSqlParser.KW_SUBSET); - this.state = 3143; + this.state = 3165; this.subsetDefinition(); - this.state = 3148; + this.state = 3170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3144; + this.state = 3166; this.match(TrinoSqlParser.T__2); - this.state = 3145; + this.state = 3167; this.subsetDefinition(); } } - this.state = 3150; + this.state = 3172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3162; + this.state = 3184; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 72) { { - this.state = 3153; + this.state = 3175; this.match(TrinoSqlParser.KW_DEFINE); - this.state = 3154; + this.state = 3176; this.variableDefinition(); - this.state = 3159; + this.state = 3181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3155; + this.state = 3177; this.match(TrinoSqlParser.T__2); - this.state = 3156; + this.state = 3178; this.variableDefinition(); } } - this.state = 3161; + this.state = 3183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13177,80 +13277,80 @@ export class TrinoSqlParser extends SQLParserBase { } public frameExtent(): FrameExtentContext { let localContext = new FrameExtentContext(this.context, this.state); - this.enterRule(localContext, 218, TrinoSqlParser.RULE_frameExtent); + this.enterRule(localContext, 222, TrinoSqlParser.RULE_frameExtent); try { - this.state = 3188; + this.state = 3210; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 412, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3164; + this.state = 3186; localContext._frameType = this.match(TrinoSqlParser.KW_RANGE); - this.state = 3165; + this.state = 3187; localContext._start = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3166; + this.state = 3188; localContext._frameType = this.match(TrinoSqlParser.KW_ROWS); - this.state = 3167; + this.state = 3189; localContext._start = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3168; + this.state = 3190; localContext._frameType = this.match(TrinoSqlParser.KW_GROUPS); - this.state = 3169; + this.state = 3191; localContext._start = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3170; + this.state = 3192; localContext._frameType = this.match(TrinoSqlParser.KW_RANGE); - this.state = 3171; + this.state = 3193; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3172; + this.state = 3194; localContext._start = this.frameBound(); - this.state = 3173; + this.state = 3195; this.match(TrinoSqlParser.KW_AND); - this.state = 3174; + this.state = 3196; localContext._end = this.frameBound(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3176; + this.state = 3198; localContext._frameType = this.match(TrinoSqlParser.KW_ROWS); - this.state = 3177; + this.state = 3199; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3178; + this.state = 3200; localContext._start = this.frameBound(); - this.state = 3179; + this.state = 3201; this.match(TrinoSqlParser.KW_AND); - this.state = 3180; + this.state = 3202; localContext._end = this.frameBound(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3182; + this.state = 3204; localContext._frameType = this.match(TrinoSqlParser.KW_GROUPS); - this.state = 3183; + this.state = 3205; this.match(TrinoSqlParser.KW_BETWEEN); - this.state = 3184; + this.state = 3206; localContext._start = this.frameBound(); - this.state = 3185; + this.state = 3207; this.match(TrinoSqlParser.KW_AND); - this.state = 3186; + this.state = 3208; localContext._end = this.frameBound(); } break; @@ -13272,19 +13372,19 @@ export class TrinoSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 220, TrinoSqlParser.RULE_frameBound); + this.enterRule(localContext, 224, TrinoSqlParser.RULE_frameBound); let _la: number; try { - this.state = 3199; + this.state = 3221; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 413, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { case 1: localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3190; + this.state = 3212; this.match(TrinoSqlParser.KW_UNBOUNDED); - this.state = 3191; + this.state = 3213; (localContext as UnboundedFrameContext)._boundType = this.match(TrinoSqlParser.KW_PRECEDING); } break; @@ -13292,9 +13392,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3192; + this.state = 3214; this.match(TrinoSqlParser.KW_UNBOUNDED); - this.state = 3193; + this.state = 3215; (localContext as UnboundedFrameContext)._boundType = this.match(TrinoSqlParser.KW_FOLLOWING); } break; @@ -13302,9 +13402,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentRowBoundContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3194; + this.state = 3216; this.match(TrinoSqlParser.KW_CURRENT); - this.state = 3195; + this.state = 3217; this.match(TrinoSqlParser.KW_ROW); } break; @@ -13312,9 +13412,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BoundedFrameContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3196; + this.state = 3218; this.expression(); - this.state = 3197; + this.state = 3219; (localContext as BoundedFrameContext)._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 103 || _la === 213)) { @@ -13354,8 +13454,8 @@ export class TrinoSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new RowPatternContext(this.context, parentState); let previousContext = localContext; - let _startState = 222; - this.enterRecursionRule(localContext, 222, TrinoSqlParser.RULE_rowPattern, _p); + let _startState = 226; + this.enterRecursionRule(localContext, 226, TrinoSqlParser.RULE_rowPattern, _p); try { let alternative: number; this.enterOuterAlt(localContext, 1); @@ -13365,23 +13465,23 @@ export class TrinoSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 3202; + this.state = 3224; this.patternPrimary(); - this.state = 3204; + this.state = 3226; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 414, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 416, this.context) ) { case 1: { - this.state = 3203; + this.state = 3225; this.patternQuantifier(); } break; } } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3213; + this.state = 3235; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 416, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 418, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -13389,18 +13489,18 @@ export class TrinoSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3211; + this.state = 3233; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 417, this.context) ) { case 1: { localContext = new PatternConcatenationContext(new RowPatternContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_rowPattern); - this.state = 3206; + this.state = 3228; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3207; + this.state = 3229; this.rowPattern(3); } break; @@ -13408,22 +13508,22 @@ export class TrinoSqlParser extends SQLParserBase { { localContext = new PatternAlternationContext(new RowPatternContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, TrinoSqlParser.RULE_rowPattern); - this.state = 3208; + this.state = 3230; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3209; + this.state = 3231; this.match(TrinoSqlParser.T__10); - this.state = 3210; + this.state = 3232; this.rowPattern(2); } break; } } } - this.state = 3215; + this.state = 3237; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 416, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 418, this.context); } } } @@ -13443,17 +13543,17 @@ export class TrinoSqlParser extends SQLParserBase { } public patternPrimary(): PatternPrimaryContext { let localContext = new PatternPrimaryContext(this.context, this.state); - this.enterRule(localContext, 224, TrinoSqlParser.RULE_patternPrimary); + this.enterRule(localContext, 228, TrinoSqlParser.RULE_patternPrimary); let _la: number; try { - this.state = 3241; + this.state = 3263; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 418, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { case 1: localContext = new PatternVariableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3216; + this.state = 3238; this.identifier(); } break; @@ -13461,9 +13561,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new EmptyPatternContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3217; + this.state = 3239; this.match(TrinoSqlParser.T__0); - this.state = 3218; + this.state = 3240; this.match(TrinoSqlParser.T__1); } break; @@ -13471,29 +13571,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PatternPermutationContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3219; + this.state = 3241; this.match(TrinoSqlParser.KW_PERMUTE); - this.state = 3220; + this.state = 3242; this.match(TrinoSqlParser.T__0); - this.state = 3221; + this.state = 3243; this.rowPattern(0); - this.state = 3226; + this.state = 3248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3222; + this.state = 3244; this.match(TrinoSqlParser.T__2); - this.state = 3223; + this.state = 3245; this.rowPattern(0); } } - this.state = 3228; + this.state = 3250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3229; + this.state = 3251; this.match(TrinoSqlParser.T__1); } break; @@ -13501,11 +13601,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new GroupedPatternContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3231; + this.state = 3253; this.match(TrinoSqlParser.T__0); - this.state = 3232; + this.state = 3254; this.rowPattern(0); - this.state = 3233; + this.state = 3255; this.match(TrinoSqlParser.T__1); } break; @@ -13513,7 +13613,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PartitionStartAnchorContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3235; + this.state = 3257; this.match(TrinoSqlParser.T__11); } break; @@ -13521,7 +13621,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new PartitionEndAnchorContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3236; + this.state = 3258; this.match(TrinoSqlParser.T__12); } break; @@ -13529,11 +13629,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExcludedPatternContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 3237; + this.state = 3259; this.match(TrinoSqlParser.T__13); - this.state = 3238; + this.state = 3260; this.rowPattern(0); - this.state = 3239; + this.state = 3261; this.match(TrinoSqlParser.T__14); } break; @@ -13555,24 +13655,24 @@ export class TrinoSqlParser extends SQLParserBase { } public patternQuantifier(): PatternQuantifierContext { let localContext = new PatternQuantifierContext(this.context, this.state); - this.enterRule(localContext, 226, TrinoSqlParser.RULE_patternQuantifier); + this.enterRule(localContext, 230, TrinoSqlParser.RULE_patternQuantifier); let _la: number; try { - this.state = 3273; + this.state = 3295; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 426, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { case 1: localContext = new ZeroOrMoreQuantifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3243; + this.state = 3265; this.match(TrinoSqlParser.ASTERISK); - this.state = 3245; + this.state = 3267; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { case 1: { - this.state = 3244; + this.state = 3266; (localContext as ZeroOrMoreQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13583,14 +13683,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new OneOrMoreQuantifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3247; + this.state = 3269; this.match(TrinoSqlParser.PLUS); - this.state = 3249; + this.state = 3271; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: { - this.state = 3248; + this.state = 3270; (localContext as OneOrMoreQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13601,14 +13701,14 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ZeroOrOneQuantifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3251; + this.state = 3273; this.match(TrinoSqlParser.QUESTION_MARK); - this.state = 3253; + this.state = 3275; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { case 1: { - this.state = 3252; + this.state = 3274; (localContext as ZeroOrOneQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13619,18 +13719,18 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RangeQuantifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3255; + this.state = 3277; this.match(TrinoSqlParser.T__15); - this.state = 3256; + this.state = 3278; (localContext as RangeQuantifierContext)._exactly = this.match(TrinoSqlParser.INTEGER_VALUE); - this.state = 3257; + this.state = 3279; this.match(TrinoSqlParser.T__16); - this.state = 3259; + this.state = 3281; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 424, this.context) ) { case 1: { - this.state = 3258; + this.state = 3280; (localContext as RangeQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13641,38 +13741,38 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RangeQuantifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3261; + this.state = 3283; this.match(TrinoSqlParser.T__15); - this.state = 3263; + this.state = 3285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 330) { { - this.state = 3262; + this.state = 3284; (localContext as RangeQuantifierContext)._atLeast = this.match(TrinoSqlParser.INTEGER_VALUE); } } - this.state = 3265; + this.state = 3287; this.match(TrinoSqlParser.T__2); - this.state = 3267; + this.state = 3289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 330) { { - this.state = 3266; + this.state = 3288; (localContext as RangeQuantifierContext)._atMost = this.match(TrinoSqlParser.INTEGER_VALUE); } } - this.state = 3269; + this.state = 3291; this.match(TrinoSqlParser.T__16); - this.state = 3271; + this.state = 3293; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { case 1: { - this.state = 3270; + this.state = 3292; (localContext as RangeQuantifierContext)._reluctant = this.match(TrinoSqlParser.QUESTION_MARK); } break; @@ -13697,15 +13797,15 @@ export class TrinoSqlParser extends SQLParserBase { } public updateAssignment(): UpdateAssignmentContext { let localContext = new UpdateAssignmentContext(this.context, this.state); - this.enterRule(localContext, 228, TrinoSqlParser.RULE_updateAssignment); + this.enterRule(localContext, 232, TrinoSqlParser.RULE_updateAssignment); try { this.enterOuterAlt(localContext, 1); { - this.state = 3275; + this.state = 3297; this.identifier(); - this.state = 3276; + this.state = 3298; this.match(TrinoSqlParser.EQ); - this.state = 3277; + this.state = 3299; this.expression(); } } @@ -13725,19 +13825,19 @@ export class TrinoSqlParser extends SQLParserBase { } public explainOption(): ExplainOptionContext { let localContext = new ExplainOptionContext(this.context, this.state); - this.enterRule(localContext, 230, TrinoSqlParser.RULE_explainOption); + this.enterRule(localContext, 234, TrinoSqlParser.RULE_explainOption); let _la: number; try { - this.state = 3283; + this.state = 3305; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_FORMAT: localContext = new ExplainFormatContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3279; + this.state = 3301; this.match(TrinoSqlParser.KW_FORMAT); - this.state = 3280; + this.state = 3302; (localContext as ExplainFormatContext)._value = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 138 || _la === 264)) { @@ -13753,9 +13853,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ExplainTypeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3281; + this.state = 3303; this.match(TrinoSqlParser.KW_TYPE); - this.state = 3282; + this.state = 3304; (localContext as ExplainTypeContext)._value = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 133 || _la === 161 || _la === 295)) { @@ -13787,21 +13887,21 @@ export class TrinoSqlParser extends SQLParserBase { } public transactionMode(): TransactionModeContext { let localContext = new TransactionModeContext(this.context, this.state); - this.enterRule(localContext, 232, TrinoSqlParser.RULE_transactionMode); + this.enterRule(localContext, 236, TrinoSqlParser.RULE_transactionMode); let _la: number; try { - this.state = 3290; + this.state = 3312; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ISOLATION: localContext = new IsolationLevelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3285; + this.state = 3307; this.match(TrinoSqlParser.KW_ISOLATION); - this.state = 3286; + this.state = 3308; this.match(TrinoSqlParser.KW_LEVEL); - this.state = 3287; + this.state = 3309; this.levelOfIsolation(); } break; @@ -13809,9 +13909,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new TransactionAccessModeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3288; + this.state = 3310; this.match(TrinoSqlParser.KW_READ); - this.state = 3289; + this.state = 3311; (localContext as TransactionAccessModeContext)._accessMode = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 193 || _la === 310)) { @@ -13843,18 +13943,18 @@ export class TrinoSqlParser extends SQLParserBase { } public levelOfIsolation(): LevelOfIsolationContext { let localContext = new LevelOfIsolationContext(this.context, this.state); - this.enterRule(localContext, 234, TrinoSqlParser.RULE_levelOfIsolation); + this.enterRule(localContext, 238, TrinoSqlParser.RULE_levelOfIsolation); try { - this.state = 3299; + this.state = 3321; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 429, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { case 1: localContext = new ReadUncommittedContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3292; + this.state = 3314; this.match(TrinoSqlParser.KW_READ); - this.state = 3293; + this.state = 3315; this.match(TrinoSqlParser.KW_UNCOMMITTED); } break; @@ -13862,9 +13962,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ReadCommittedContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3294; + this.state = 3316; this.match(TrinoSqlParser.KW_READ); - this.state = 3295; + this.state = 3317; this.match(TrinoSqlParser.KW_COMMITTED); } break; @@ -13872,9 +13972,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RepeatableReadContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3296; + this.state = 3318; this.match(TrinoSqlParser.KW_REPEATABLE); - this.state = 3297; + this.state = 3319; this.match(TrinoSqlParser.KW_READ); } break; @@ -13882,7 +13982,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SerializableContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3298; + this.state = 3320; this.match(TrinoSqlParser.KW_SERIALIZABLE); } break; @@ -13904,16 +14004,16 @@ export class TrinoSqlParser extends SQLParserBase { } public callArgument(): CallArgumentContext { let localContext = new CallArgumentContext(this.context, this.state); - this.enterRule(localContext, 236, TrinoSqlParser.RULE_callArgument); + this.enterRule(localContext, 240, TrinoSqlParser.RULE_callArgument); try { - this.state = 3306; + this.state = 3328; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 430, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 432, this.context) ) { case 1: localContext = new PositionalArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3301; + this.state = 3323; this.expression(); } break; @@ -13921,11 +14021,11 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new NamedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3302; + this.state = 3324; this.identifier(); - this.state = 3303; + this.state = 3325; this.match(TrinoSqlParser.T__5); - this.state = 3304; + this.state = 3326; this.expression(); } break; @@ -13947,20 +14047,20 @@ export class TrinoSqlParser extends SQLParserBase { } public pathElement(): PathElementContext { let localContext = new PathElementContext(this.context, this.state); - this.enterRule(localContext, 238, TrinoSqlParser.RULE_pathElement); + this.enterRule(localContext, 242, TrinoSqlParser.RULE_pathElement); try { - this.state = 3313; + this.state = 3335; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { case 1: localContext = new QualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3308; + this.state = 3330; this.identifier(); - this.state = 3309; + this.state = 3331; this.match(TrinoSqlParser.T__3); - this.state = 3310; + this.state = 3332; this.identifier(); } break; @@ -13968,7 +14068,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnqualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3312; + this.state = 3334; this.identifier(); } break; @@ -13990,26 +14090,26 @@ export class TrinoSqlParser extends SQLParserBase { } public pathSpecification(): PathSpecificationContext { let localContext = new PathSpecificationContext(this.context, this.state); - this.enterRule(localContext, 240, TrinoSqlParser.RULE_pathSpecification); + this.enterRule(localContext, 244, TrinoSqlParser.RULE_pathSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3315; + this.state = 3337; this.pathElement(); - this.state = 3320; + this.state = 3342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3316; + this.state = 3338; this.match(TrinoSqlParser.T__2); - this.state = 3317; + this.state = 3339; this.pathElement(); } } - this.state = 3322; + this.state = 3344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14031,34 +14131,34 @@ export class TrinoSqlParser extends SQLParserBase { } public functionSpecification(): FunctionSpecificationContext { let localContext = new FunctionSpecificationContext(this.context, this.state); - this.enterRule(localContext, 242, TrinoSqlParser.RULE_functionSpecification); + this.enterRule(localContext, 246, TrinoSqlParser.RULE_functionSpecification); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3323; + this.state = 3345; this.match(TrinoSqlParser.KW_FUNCTION); - this.state = 3324; + this.state = 3346; this.functionDeclaration(); - this.state = 3325; + this.state = 3347; this.returnsClause(); - this.state = 3329; + this.state = 3351; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 433, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3326; + this.state = 3348; this.routineCharacteristic(); } } } - this.state = 3331; + this.state = 3353; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 433, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); } - this.state = 3332; + this.state = 3354; this.controlStatement(); } } @@ -14078,42 +14178,42 @@ export class TrinoSqlParser extends SQLParserBase { } public functionDeclaration(): FunctionDeclarationContext { let localContext = new FunctionDeclarationContext(this.context, this.state); - this.enterRule(localContext, 244, TrinoSqlParser.RULE_functionDeclaration); + this.enterRule(localContext, 248, TrinoSqlParser.RULE_functionDeclaration); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3334; + this.state = 3356; this.functionNameCreate(); - this.state = 3335; + this.state = 3357; this.match(TrinoSqlParser.T__0); - this.state = 3344; + this.state = 3366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 50)) & ~0x1F) === 0 && ((1 << (_la - 50)) & 3069640845) !== 0) || ((((_la - 82)) & ~0x1F) === 0 && ((1 << (_la - 82)) & 4240329075) !== 0) || ((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & 2171416041) !== 0) || ((((_la - 146)) & ~0x1F) === 0 && ((1 << (_la - 146)) & 4160722303) !== 0) || ((((_la - 178)) & ~0x1F) === 0 && ((1 << (_la - 178)) & 4293517199) !== 0) || ((((_la - 210)) & ~0x1F) === 0 && ((1 << (_la - 210)) & 3724537823) !== 0) || ((((_la - 242)) & ~0x1F) === 0 && ((1 << (_la - 242)) & 2130182015) !== 0) || ((((_la - 275)) & ~0x1F) === 0 && ((1 << (_la - 275)) & 3015636855) !== 0) || ((((_la - 307)) & ~0x1F) === 0 && ((1 << (_la - 307)) & 1006633023) !== 0)) { { - this.state = 3336; + this.state = 3358; this.parameterDeclaration(); - this.state = 3341; + this.state = 3363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3337; + this.state = 3359; this.match(TrinoSqlParser.T__2); - this.state = 3338; + this.state = 3360; this.parameterDeclaration(); } } - this.state = 3343; + this.state = 3365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3346; + this.state = 3368; this.match(TrinoSqlParser.T__1); } } @@ -14133,42 +14233,42 @@ export class TrinoSqlParser extends SQLParserBase { } public functionSignature(): FunctionSignatureContext { let localContext = new FunctionSignatureContext(this.context, this.state); - this.enterRule(localContext, 246, TrinoSqlParser.RULE_functionSignature); + this.enterRule(localContext, 250, TrinoSqlParser.RULE_functionSignature); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3348; + this.state = 3370; this.functionName(); - this.state = 3349; + this.state = 3371; this.match(TrinoSqlParser.T__0); - this.state = 3358; + this.state = 3380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4282055519) !== 0) || ((((_la - 50)) & ~0x1F) === 0 && ((1 << (_la - 50)) & 3069640845) !== 0) || ((((_la - 82)) & ~0x1F) === 0 && ((1 << (_la - 82)) & 4240329075) !== 0) || ((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & 2171416041) !== 0) || ((((_la - 146)) & ~0x1F) === 0 && ((1 << (_la - 146)) & 4160722303) !== 0) || ((((_la - 178)) & ~0x1F) === 0 && ((1 << (_la - 178)) & 4293517199) !== 0) || ((((_la - 210)) & ~0x1F) === 0 && ((1 << (_la - 210)) & 3724537823) !== 0) || ((((_la - 242)) & ~0x1F) === 0 && ((1 << (_la - 242)) & 2130182015) !== 0) || ((((_la - 275)) & ~0x1F) === 0 && ((1 << (_la - 275)) & 3015636855) !== 0) || ((((_la - 307)) & ~0x1F) === 0 && ((1 << (_la - 307)) & 1006633023) !== 0)) { { - this.state = 3350; + this.state = 3372; this.parameterDeclaration(); - this.state = 3355; + this.state = 3377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3351; + this.state = 3373; this.match(TrinoSqlParser.T__2); - this.state = 3352; + this.state = 3374; this.parameterDeclaration(); } } - this.state = 3357; + this.state = 3379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3360; + this.state = 3382; this.match(TrinoSqlParser.T__1); } } @@ -14188,21 +14288,21 @@ export class TrinoSqlParser extends SQLParserBase { } public parameterDeclaration(): ParameterDeclarationContext { let localContext = new ParameterDeclarationContext(this.context, this.state); - this.enterRule(localContext, 248, TrinoSqlParser.RULE_parameterDeclaration); + this.enterRule(localContext, 252, TrinoSqlParser.RULE_parameterDeclaration); try { this.enterOuterAlt(localContext, 1); { - this.state = 3363; + this.state = 3385; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { case 1: { - this.state = 3362; + this.state = 3384; this.identifier(); } break; } - this.state = 3365; + this.state = 3387; this.type_(0); } } @@ -14222,13 +14322,13 @@ export class TrinoSqlParser extends SQLParserBase { } public returnsClause(): ReturnsClauseContext { let localContext = new ReturnsClauseContext(this.context, this.state); - this.enterRule(localContext, 250, TrinoSqlParser.RULE_returnsClause); + this.enterRule(localContext, 254, TrinoSqlParser.RULE_returnsClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3367; + this.state = 3389; this.match(TrinoSqlParser.KW_RETURNS); - this.state = 3368; + this.state = 3390; this.type_(0); } } @@ -14248,19 +14348,19 @@ export class TrinoSqlParser extends SQLParserBase { } public routineCharacteristic(): RoutineCharacteristicContext { let localContext = new RoutineCharacteristicContext(this.context, this.state); - this.enterRule(localContext, 252, TrinoSqlParser.RULE_routineCharacteristic); + this.enterRule(localContext, 256, TrinoSqlParser.RULE_routineCharacteristic); let _la: number; try { - this.state = 3389; + this.state = 3411; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_LANGUAGE: localContext = new LanguageCharacteristicContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3370; + this.state = 3392; this.match(TrinoSqlParser.KW_LANGUAGE); - this.state = 3371; + this.state = 3393; this.identifier(); } break; @@ -14269,17 +14369,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DeterministicCharacteristicContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3373; + this.state = 3395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3372; + this.state = 3394; this.match(TrinoSqlParser.KW_NOT); } } - this.state = 3375; + this.state = 3397; this.match(TrinoSqlParser.KW_DETERMINISTIC); } break; @@ -14287,15 +14387,15 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new ReturnsNullOnNullInputCharacteristicContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3376; + this.state = 3398; this.match(TrinoSqlParser.KW_RETURNS); - this.state = 3377; + this.state = 3399; this.match(TrinoSqlParser.KW_NULL); - this.state = 3378; + this.state = 3400; this.match(TrinoSqlParser.KW_ON); - this.state = 3379; + this.state = 3401; this.match(TrinoSqlParser.KW_NULL); - this.state = 3380; + this.state = 3402; this.match(TrinoSqlParser.KW_INPUT); } break; @@ -14303,13 +14403,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CalledOnNullInputCharacteristicContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3381; + this.state = 3403; this.match(TrinoSqlParser.KW_CALLED); - this.state = 3382; + this.state = 3404; this.match(TrinoSqlParser.KW_ON); - this.state = 3383; + this.state = 3405; this.match(TrinoSqlParser.KW_NULL); - this.state = 3384; + this.state = 3406; this.match(TrinoSqlParser.KW_INPUT); } break; @@ -14317,9 +14417,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SecurityCharacteristicContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3385; + this.state = 3407; this.match(TrinoSqlParser.KW_SECURITY); - this.state = 3386; + this.state = 3408; _la = this.tokenStream.LA(1); if(!(_la === 73 || _la === 132)) { this.errorHandler.recoverInline(this); @@ -14334,9 +14434,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CommentCharacteristicContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3387; + this.state = 3409; this.match(TrinoSqlParser.KW_COMMENT); - this.state = 3388; + this.state = 3410; this.string_(); } break; @@ -14360,20 +14460,20 @@ export class TrinoSqlParser extends SQLParserBase { } public controlStatement(): ControlStatementContext { let localContext = new ControlStatementContext(this.context, this.state); - this.enterRule(localContext, 254, TrinoSqlParser.RULE_controlStatement); + this.enterRule(localContext, 258, TrinoSqlParser.RULE_controlStatement); let _la: number; try { let alternative: number; - this.state = 3490; + this.state = 3512; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { case 1: localContext = new ReturnStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3391; + this.state = 3413; this.match(TrinoSqlParser.KW_RETURN); - this.state = 3392; + this.state = 3414; this.valueExpression(0); } break; @@ -14381,13 +14481,13 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new AssignmentStatementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3393; + this.state = 3415; this.match(TrinoSqlParser.KW_SET); - this.state = 3394; + this.state = 3416; this.identifier(); - this.state = 3395; + this.state = 3417; this.match(TrinoSqlParser.EQ); - this.state = 3396; + this.state = 3418; this.expression(); } break; @@ -14395,37 +14495,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SimpleCaseStatementContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3398; + this.state = 3420; this.match(TrinoSqlParser.KW_CASE); - this.state = 3399; + this.state = 3421; this.expression(); - this.state = 3401; + this.state = 3423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3400; + this.state = 3422; this.caseStatementWhenClause(); } } - this.state = 3403; + this.state = 3425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 301); - this.state = 3406; + this.state = 3428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85) { { - this.state = 3405; + this.state = 3427; this.elseClause(); } } - this.state = 3408; + this.state = 3430; this.match(TrinoSqlParser.KW_END); - this.state = 3409; + this.state = 3431; this.match(TrinoSqlParser.KW_CASE); } break; @@ -14433,35 +14533,35 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SearchedCaseStatementContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3411; + this.state = 3433; this.match(TrinoSqlParser.KW_CASE); - this.state = 3413; + this.state = 3435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3412; + this.state = 3434; this.caseStatementWhenClause(); } } - this.state = 3415; + this.state = 3437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 301); - this.state = 3418; + this.state = 3440; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85) { { - this.state = 3417; + this.state = 3439; this.elseClause(); } } - this.state = 3420; + this.state = 3442; this.match(TrinoSqlParser.KW_END); - this.state = 3421; + this.state = 3443; this.match(TrinoSqlParser.KW_CASE); } break; @@ -14469,41 +14569,41 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IfStatementContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3423; + this.state = 3445; this.match(TrinoSqlParser.KW_IF); - this.state = 3424; + this.state = 3446; this.expression(); - this.state = 3425; + this.state = 3447; this.match(TrinoSqlParser.KW_THEN); - this.state = 3426; + this.state = 3448; this.sqlStatementList(); - this.state = 3430; + this.state = 3452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 87) { { { - this.state = 3427; + this.state = 3449; this.elseIfClause(); } } - this.state = 3432; + this.state = 3454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3434; + this.state = 3456; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85) { { - this.state = 3433; + this.state = 3455; this.elseClause(); } } - this.state = 3436; + this.state = 3458; this.match(TrinoSqlParser.KW_END); - this.state = 3437; + this.state = 3459; this.match(TrinoSqlParser.KW_IF); } break; @@ -14511,9 +14611,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IterateStatementContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3439; + this.state = 3461; this.match(TrinoSqlParser.KW_ITERATE); - this.state = 3440; + this.state = 3462; this.identifier(); } break; @@ -14521,9 +14621,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LeaveStatementContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 3441; + this.state = 3463; this.match(TrinoSqlParser.KW_LEAVE); - this.state = 3442; + this.state = 3464; this.identifier(); } break; @@ -14531,37 +14631,37 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CompoundStatementContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 3443; + this.state = 3465; this.match(TrinoSqlParser.KW_BEGIN); - this.state = 3449; + this.state = 3471; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 447, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 449, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3444; + this.state = 3466; this.variableDeclaration(); - this.state = 3445; + this.state = 3467; this.match(TrinoSqlParser.SEMICOLON); } } } - this.state = 3451; + this.state = 3473; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 447, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 449, this.context); } - this.state = 3453; + this.state = 3475; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 18)) & ~0x1F) === 0 && ((1 << (_la - 18)) & 4286249823) !== 0) || ((((_la - 50)) & ~0x1F) === 0 && ((1 << (_la - 50)) & 3069640845) !== 0) || ((((_la - 82)) & ~0x1F) === 0 && ((1 << (_la - 82)) & 4240329075) !== 0) || ((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & 2171416041) !== 0) || ((((_la - 146)) & ~0x1F) === 0 && ((1 << (_la - 146)) & 4160722303) !== 0) || ((((_la - 178)) & ~0x1F) === 0 && ((1 << (_la - 178)) & 4293517199) !== 0) || ((((_la - 210)) & ~0x1F) === 0 && ((1 << (_la - 210)) & 3724537823) !== 0) || ((((_la - 242)) & ~0x1F) === 0 && ((1 << (_la - 242)) & 2130182015) !== 0) || ((((_la - 275)) & ~0x1F) === 0 && ((1 << (_la - 275)) & 3015636855) !== 0) || ((((_la - 307)) & ~0x1F) === 0 && ((1 << (_la - 307)) & 1006633023) !== 0)) { { - this.state = 3452; + this.state = 3474; this.sqlStatementList(); } } - this.state = 3455; + this.state = 3477; this.match(TrinoSqlParser.KW_END); } break; @@ -14569,25 +14669,25 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new LoopStatementContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 3459; + this.state = 3481; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { case 1: { - this.state = 3456; + this.state = 3478; (localContext as LoopStatementContext)._label = this.identifier(); - this.state = 3457; + this.state = 3479; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3461; + this.state = 3483; this.match(TrinoSqlParser.KW_LOOP); - this.state = 3462; + this.state = 3484; this.sqlStatementList(); - this.state = 3463; + this.state = 3485; this.match(TrinoSqlParser.KW_END); - this.state = 3464; + this.state = 3486; this.match(TrinoSqlParser.KW_LOOP); } break; @@ -14595,29 +14695,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new WhileStatementContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 3469; + this.state = 3491; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: { - this.state = 3466; + this.state = 3488; (localContext as WhileStatementContext)._label = this.identifier(); - this.state = 3467; + this.state = 3489; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3471; + this.state = 3493; this.match(TrinoSqlParser.KW_WHILE); - this.state = 3472; + this.state = 3494; this.expression(); - this.state = 3473; + this.state = 3495; this.match(TrinoSqlParser.KW_DO); - this.state = 3474; + this.state = 3496; this.sqlStatementList(); - this.state = 3475; + this.state = 3497; this.match(TrinoSqlParser.KW_END); - this.state = 3476; + this.state = 3498; this.match(TrinoSqlParser.KW_WHILE); } break; @@ -14625,29 +14725,29 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RepeatStatementContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 3481; + this.state = 3503; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 451, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { case 1: { - this.state = 3478; + this.state = 3500; (localContext as RepeatStatementContext)._label = this.identifier(); - this.state = 3479; + this.state = 3501; this.match(TrinoSqlParser.T__9); } break; } - this.state = 3483; + this.state = 3505; this.match(TrinoSqlParser.KW_REPEAT); - this.state = 3484; + this.state = 3506; this.sqlStatementList(); - this.state = 3485; + this.state = 3507; this.match(TrinoSqlParser.KW_UNTIL); - this.state = 3486; + this.state = 3508; this.expression(); - this.state = 3487; + this.state = 3509; this.match(TrinoSqlParser.KW_END); - this.state = 3488; + this.state = 3510; this.match(TrinoSqlParser.KW_REPEAT); } break; @@ -14669,17 +14769,17 @@ export class TrinoSqlParser extends SQLParserBase { } public caseStatementWhenClause(): CaseStatementWhenClauseContext { let localContext = new CaseStatementWhenClauseContext(this.context, this.state); - this.enterRule(localContext, 256, TrinoSqlParser.RULE_caseStatementWhenClause); + this.enterRule(localContext, 260, TrinoSqlParser.RULE_caseStatementWhenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3492; + this.state = 3514; this.match(TrinoSqlParser.KW_WHEN); - this.state = 3493; + this.state = 3515; this.expression(); - this.state = 3494; + this.state = 3516; this.match(TrinoSqlParser.KW_THEN); - this.state = 3495; + this.state = 3517; this.sqlStatementList(); } } @@ -14699,17 +14799,17 @@ export class TrinoSqlParser extends SQLParserBase { } public elseIfClause(): ElseIfClauseContext { let localContext = new ElseIfClauseContext(this.context, this.state); - this.enterRule(localContext, 258, TrinoSqlParser.RULE_elseIfClause); + this.enterRule(localContext, 262, TrinoSqlParser.RULE_elseIfClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3497; + this.state = 3519; this.match(TrinoSqlParser.KW_ELSEIF); - this.state = 3498; + this.state = 3520; this.expression(); - this.state = 3499; + this.state = 3521; this.match(TrinoSqlParser.KW_THEN); - this.state = 3500; + this.state = 3522; this.sqlStatementList(); } } @@ -14729,13 +14829,13 @@ export class TrinoSqlParser extends SQLParserBase { } public elseClause(): ElseClauseContext { let localContext = new ElseClauseContext(this.context, this.state); - this.enterRule(localContext, 260, TrinoSqlParser.RULE_elseClause); + this.enterRule(localContext, 264, TrinoSqlParser.RULE_elseClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 3502; + this.state = 3524; this.match(TrinoSqlParser.KW_ELSE); - this.state = 3503; + this.state = 3525; this.sqlStatementList(); } } @@ -14755,41 +14855,41 @@ export class TrinoSqlParser extends SQLParserBase { } public variableDeclaration(): VariableDeclarationContext { let localContext = new VariableDeclarationContext(this.context, this.state); - this.enterRule(localContext, 262, TrinoSqlParser.RULE_variableDeclaration); + this.enterRule(localContext, 266, TrinoSqlParser.RULE_variableDeclaration); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3505; + this.state = 3527; this.match(TrinoSqlParser.KW_DECLARE); - this.state = 3506; + this.state = 3528; this.identifier(); - this.state = 3511; + this.state = 3533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3507; + this.state = 3529; this.match(TrinoSqlParser.T__2); - this.state = 3508; + this.state = 3530; this.identifier(); } } - this.state = 3513; + this.state = 3535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3514; + this.state = 3536; this.type_(0); - this.state = 3517; + this.state = 3539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 3515; + this.state = 3537; this.match(TrinoSqlParser.KW_DEFAULT); - this.state = 3516; + this.state = 3538; this.valueExpression(0); } } @@ -14812,12 +14912,12 @@ export class TrinoSqlParser extends SQLParserBase { } public sqlStatementList(): SqlStatementListContext { let localContext = new SqlStatementListContext(this.context, this.state); - this.enterRule(localContext, 264, TrinoSqlParser.RULE_sqlStatementList); + this.enterRule(localContext, 268, TrinoSqlParser.RULE_sqlStatementList); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3522; + this.state = 3544; this.errorHandler.sync(this); alternative = 1; do { @@ -14825,9 +14925,9 @@ export class TrinoSqlParser extends SQLParserBase { case 1: { { - this.state = 3519; + this.state = 3541; this.controlStatement(); - this.state = 3520; + this.state = 3542; this.match(TrinoSqlParser.SEMICOLON); } } @@ -14835,9 +14935,9 @@ export class TrinoSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3524; + this.state = 3546; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 455, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -14857,50 +14957,50 @@ export class TrinoSqlParser extends SQLParserBase { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 266, TrinoSqlParser.RULE_privilege); + this.enterRule(localContext, 270, TrinoSqlParser.RULE_privilege); try { - this.state = 3532; + this.state = 3554; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3526; + this.state = 3548; this.match(TrinoSqlParser.KW_CREATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3527; + this.state = 3549; this.match(TrinoSqlParser.KW_SELECT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3528; + this.state = 3550; this.match(TrinoSqlParser.KW_DELETE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3529; + this.state = 3551; this.match(TrinoSqlParser.KW_INSERT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3530; + this.state = 3552; this.match(TrinoSqlParser.KW_UPDATE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3531; + this.state = 3553; this.identifier(); } break; @@ -14922,29 +15022,29 @@ export class TrinoSqlParser extends SQLParserBase { } public entityKind(): EntityKindContext { let localContext = new EntityKindContext(this.context, this.state); - this.enterRule(localContext, 268, TrinoSqlParser.RULE_entityKind); + this.enterRule(localContext, 272, TrinoSqlParser.RULE_entityKind); try { - this.state = 3537; + this.state = 3559; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3534; + this.state = 3556; this.match(TrinoSqlParser.KW_TABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3535; + this.state = 3557; this.match(TrinoSqlParser.KW_SCHEMA); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3536; + this.state = 3558; this.identifier(); } break; @@ -14966,21 +15066,21 @@ export class TrinoSqlParser extends SQLParserBase { } public grantObject(): GrantObjectContext { let localContext = new GrantObjectContext(this.context, this.state); - this.enterRule(localContext, 270, TrinoSqlParser.RULE_grantObject); + this.enterRule(localContext, 274, TrinoSqlParser.RULE_grantObject); try { this.enterOuterAlt(localContext, 1); { - this.state = 3540; + this.state = 3562; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: { - this.state = 3539; + this.state = 3561; this.entityKind(); } break; } - this.state = 3542; + this.state = 3564; this.qualifiedName(); } } @@ -15000,22 +15100,22 @@ export class TrinoSqlParser extends SQLParserBase { } public tableOrViewName(): TableOrViewNameContext { let localContext = new TableOrViewNameContext(this.context, this.state); - this.enterRule(localContext, 272, TrinoSqlParser.RULE_tableOrViewName); + this.enterRule(localContext, 276, TrinoSqlParser.RULE_tableOrViewName); try { - this.state = 3546; + this.state = 3568; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3544; + this.state = 3566; this.tableRef(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3545; + this.state = 3567; this.viewRef(); } break; @@ -15037,41 +15137,41 @@ export class TrinoSqlParser extends SQLParserBase { } public tableRef(): TableRefContext { let localContext = new TableRefContext(this.context, this.state); - this.enterRule(localContext, 274, TrinoSqlParser.RULE_tableRef); + this.enterRule(localContext, 278, TrinoSqlParser.RULE_tableRef); try { - this.state = 3559; + this.state = 3581; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3548; + this.state = 3570; localContext._table = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3549; + this.state = 3571; localContext._schema = this.identifier(); - this.state = 3550; + this.state = 3572; this.match(TrinoSqlParser.T__3); - this.state = 3551; + this.state = 3573; localContext._table = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3553; + this.state = 3575; localContext._catalog = this.identifier(); - this.state = 3554; + this.state = 3576; this.match(TrinoSqlParser.T__3); - this.state = 3555; + this.state = 3577; localContext._schema = this.identifier(); - this.state = 3556; + this.state = 3578; this.match(TrinoSqlParser.T__3); - this.state = 3557; + this.state = 3579; localContext._table = this.identifier(); } break; @@ -15093,41 +15193,41 @@ export class TrinoSqlParser extends SQLParserBase { } public tableNameCreate(): TableNameCreateContext { let localContext = new TableNameCreateContext(this.context, this.state); - this.enterRule(localContext, 276, TrinoSqlParser.RULE_tableNameCreate); + this.enterRule(localContext, 280, TrinoSqlParser.RULE_tableNameCreate); try { - this.state = 3572; + this.state = 3594; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3561; + this.state = 3583; localContext._table = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3562; + this.state = 3584; localContext._schema = this.identifier(); - this.state = 3563; + this.state = 3585; this.match(TrinoSqlParser.T__3); - this.state = 3564; + this.state = 3586; localContext._table = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3566; + this.state = 3588; localContext._catalog = this.identifier(); - this.state = 3567; + this.state = 3589; this.match(TrinoSqlParser.T__3); - this.state = 3568; + this.state = 3590; localContext._schema = this.identifier(); - this.state = 3569; + this.state = 3591; this.match(TrinoSqlParser.T__3); - this.state = 3570; + this.state = 3592; localContext._table = this.identifier(); } break; @@ -15149,41 +15249,41 @@ export class TrinoSqlParser extends SQLParserBase { } public viewRef(): ViewRefContext { let localContext = new ViewRefContext(this.context, this.state); - this.enterRule(localContext, 278, TrinoSqlParser.RULE_viewRef); + this.enterRule(localContext, 282, TrinoSqlParser.RULE_viewRef); try { - this.state = 3585; + this.state = 3607; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3574; + this.state = 3596; localContext._view = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3575; + this.state = 3597; localContext._schema = this.identifier(); - this.state = 3576; + this.state = 3598; this.match(TrinoSqlParser.T__3); - this.state = 3577; + this.state = 3599; localContext._view = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3579; + this.state = 3601; localContext._catalog = this.identifier(); - this.state = 3580; + this.state = 3602; this.match(TrinoSqlParser.T__3); - this.state = 3581; + this.state = 3603; localContext._schema = this.identifier(); - this.state = 3582; + this.state = 3604; this.match(TrinoSqlParser.T__3); - this.state = 3583; + this.state = 3605; localContext._view = this.identifier(); } break; @@ -15205,41 +15305,41 @@ export class TrinoSqlParser extends SQLParserBase { } public viewNameCreate(): ViewNameCreateContext { let localContext = new ViewNameCreateContext(this.context, this.state); - this.enterRule(localContext, 280, TrinoSqlParser.RULE_viewNameCreate); + this.enterRule(localContext, 284, TrinoSqlParser.RULE_viewNameCreate); try { - this.state = 3598; + this.state = 3620; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3587; + this.state = 3609; localContext._view = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3588; + this.state = 3610; localContext._schema = this.identifier(); - this.state = 3589; + this.state = 3611; this.match(TrinoSqlParser.T__3); - this.state = 3590; + this.state = 3612; localContext._view = this.identifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3592; + this.state = 3614; localContext._catalog = this.identifier(); - this.state = 3593; + this.state = 3615; this.match(TrinoSqlParser.T__3); - this.state = 3594; + this.state = 3616; localContext._schema = this.identifier(); - this.state = 3595; + this.state = 3617; this.match(TrinoSqlParser.T__3); - this.state = 3596; + this.state = 3618; localContext._view = this.identifier(); } break; @@ -15261,26 +15361,26 @@ export class TrinoSqlParser extends SQLParserBase { } public schemaRef(): SchemaRefContext { let localContext = new SchemaRefContext(this.context, this.state); - this.enterRule(localContext, 282, TrinoSqlParser.RULE_schemaRef); + this.enterRule(localContext, 286, TrinoSqlParser.RULE_schemaRef); try { - this.state = 3605; + this.state = 3627; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3600; + this.state = 3622; localContext._schema = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3601; + this.state = 3623; localContext._catalog = this.identifier(); - this.state = 3602; + this.state = 3624; this.match(TrinoSqlParser.T__3); - this.state = 3603; + this.state = 3625; localContext._schema = this.identifier(); } break; @@ -15302,26 +15402,26 @@ export class TrinoSqlParser extends SQLParserBase { } public schemaNameCreate(): SchemaNameCreateContext { let localContext = new SchemaNameCreateContext(this.context, this.state); - this.enterRule(localContext, 284, TrinoSqlParser.RULE_schemaNameCreate); + this.enterRule(localContext, 288, TrinoSqlParser.RULE_schemaNameCreate); try { - this.state = 3612; + this.state = 3634; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3607; + this.state = 3629; localContext._schema = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3608; + this.state = 3630; localContext._catalog = this.identifier(); - this.state = 3609; + this.state = 3631; this.match(TrinoSqlParser.T__3); - this.state = 3610; + this.state = 3632; localContext._schema = this.identifier(); } break; @@ -15343,11 +15443,11 @@ export class TrinoSqlParser extends SQLParserBase { } public catalogRef(): CatalogRefContext { let localContext = new CatalogRefContext(this.context, this.state); - this.enterRule(localContext, 286, TrinoSqlParser.RULE_catalogRef); + this.enterRule(localContext, 290, TrinoSqlParser.RULE_catalogRef); try { this.enterOuterAlt(localContext, 1); { - this.state = 3614; + this.state = 3636; localContext._catalog = this.identifier(); } } @@ -15367,11 +15467,11 @@ export class TrinoSqlParser extends SQLParserBase { } public catalogNameCreate(): CatalogNameCreateContext { let localContext = new CatalogNameCreateContext(this.context, this.state); - this.enterRule(localContext, 288, TrinoSqlParser.RULE_catalogNameCreate); + this.enterRule(localContext, 292, TrinoSqlParser.RULE_catalogNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3616; + this.state = 3638; localContext._catalog = this.identifier(); } } @@ -15391,11 +15491,11 @@ export class TrinoSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 290, TrinoSqlParser.RULE_functionName); + this.enterRule(localContext, 294, TrinoSqlParser.RULE_functionName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3618; + this.state = 3640; this.qualifiedName(); } } @@ -15415,11 +15515,11 @@ export class TrinoSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 292, TrinoSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 296, TrinoSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3620; + this.state = 3642; this.qualifiedName(); } } @@ -15439,22 +15539,22 @@ export class TrinoSqlParser extends SQLParserBase { } public columnRef(): ColumnRefContext { let localContext = new ColumnRefContext(this.context, this.state); - this.enterRule(localContext, 294, TrinoSqlParser.RULE_columnRef); + this.enterRule(localContext, 298, TrinoSqlParser.RULE_columnRef); try { - this.state = 3624; + this.state = 3646; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3622; + this.state = 3644; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3623; + this.state = 3645; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -15476,13 +15576,36 @@ export class TrinoSqlParser extends SQLParserBase { } return localContext; } + public emptyColumn(): EmptyColumnContext { + let localContext = new EmptyColumnContext(this.context, this.state); + this.enterRule(localContext, 300, TrinoSqlParser.RULE_emptyColumn); + try { + this.enterOuterAlt(localContext, 1); + // tslint:disable-next-line:no-empty + { + } + } + 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 columnName(): ColumnNameContext { let localContext = new ColumnNameContext(this.context, this.state); - this.enterRule(localContext, 296, TrinoSqlParser.RULE_columnName); + this.enterRule(localContext, 302, TrinoSqlParser.RULE_columnName); try { this.enterOuterAlt(localContext, 1); { - this.state = 3626; + this.state = 3650; this.qualifiedName(); } } @@ -15502,11 +15625,11 @@ export class TrinoSqlParser extends SQLParserBase { } public columnNameCreate(): ColumnNameCreateContext { let localContext = new ColumnNameCreateContext(this.context, this.state); - this.enterRule(localContext, 298, TrinoSqlParser.RULE_columnNameCreate); + this.enterRule(localContext, 304, TrinoSqlParser.RULE_columnNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 3628; + this.state = 3652; this.identifier(); } } @@ -15526,30 +15649,30 @@ export class TrinoSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 300, TrinoSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 306, TrinoSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3630; + this.state = 3654; this.identifier(); - this.state = 3635; + this.state = 3659; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 467, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 469, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3631; + this.state = 3655; this.match(TrinoSqlParser.T__3); - this.state = 3632; + this.state = 3656; this.identifier(); } } } - this.state = 3637; + this.state = 3661; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 467, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 469, this.context); } } } @@ -15569,19 +15692,19 @@ export class TrinoSqlParser extends SQLParserBase { } public queryPeriod(): QueryPeriodContext { let localContext = new QueryPeriodContext(this.context, this.state); - this.enterRule(localContext, 302, TrinoSqlParser.RULE_queryPeriod); + this.enterRule(localContext, 308, TrinoSqlParser.RULE_queryPeriod); try { this.enterOuterAlt(localContext, 1); { - this.state = 3638; + this.state = 3662; this.match(TrinoSqlParser.KW_FOR); - this.state = 3639; + this.state = 3663; this.rangeType(); - this.state = 3640; + this.state = 3664; this.match(TrinoSqlParser.KW_AS); - this.state = 3641; + this.state = 3665; this.match(TrinoSqlParser.KW_OF); - this.state = 3642; + this.state = 3666; localContext._end = this.valueExpression(0); } } @@ -15601,12 +15724,12 @@ export class TrinoSqlParser extends SQLParserBase { } public rangeType(): RangeTypeContext { let localContext = new RangeTypeContext(this.context, this.state); - this.enterRule(localContext, 304, TrinoSqlParser.RULE_rangeType); + this.enterRule(localContext, 310, TrinoSqlParser.RULE_rangeType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3644; + this.state = 3668; _la = this.tokenStream.LA(1); if(!(_la === 269 || _la === 299)) { this.errorHandler.recoverInline(this); @@ -15633,9 +15756,9 @@ export class TrinoSqlParser extends SQLParserBase { } public grantor(): GrantorContext { let localContext = new GrantorContext(this.context, this.state); - this.enterRule(localContext, 306, TrinoSqlParser.RULE_grantor); + this.enterRule(localContext, 312, TrinoSqlParser.RULE_grantor); try { - this.state = 3649; + this.state = 3673; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -15859,7 +15982,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new SpecifiedPrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3646; + this.state = 3670; this.principal(); } break; @@ -15867,7 +15990,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentUserGrantorContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3647; + this.state = 3671; this.match(TrinoSqlParser.KW_CURRENT_USER); } break; @@ -15875,7 +15998,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new CurrentRoleGrantorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3648; + this.state = 3672; this.match(TrinoSqlParser.KW_CURRENT_ROLE); } break; @@ -15899,16 +16022,16 @@ export class TrinoSqlParser extends SQLParserBase { } public principal(): PrincipalContext { let localContext = new PrincipalContext(this.context, this.state); - this.enterRule(localContext, 308, TrinoSqlParser.RULE_principal); + this.enterRule(localContext, 314, TrinoSqlParser.RULE_principal); try { - this.state = 3656; + this.state = 3680; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: localContext = new UnspecifiedPrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3651; + this.state = 3675; this.identifier(); } break; @@ -15916,9 +16039,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UserPrincipalContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3652; + this.state = 3676; this.match(TrinoSqlParser.KW_USER); - this.state = 3653; + this.state = 3677; this.identifier(); } break; @@ -15926,9 +16049,9 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new RolePrincipalContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3654; + this.state = 3678; this.match(TrinoSqlParser.KW_ROLE); - this.state = 3655; + this.state = 3679; this.identifier(); } break; @@ -15950,26 +16073,26 @@ export class TrinoSqlParser extends SQLParserBase { } public roles(): RolesContext { let localContext = new RolesContext(this.context, this.state); - this.enterRule(localContext, 310, TrinoSqlParser.RULE_roles); + this.enterRule(localContext, 316, TrinoSqlParser.RULE_roles); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3658; + this.state = 3682; this.identifier(); - this.state = 3663; + this.state = 3687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 3) { { { - this.state = 3659; + this.state = 3683; this.match(TrinoSqlParser.T__2); - this.state = 3660; + this.state = 3684; this.identifier(); } } - this.state = 3665; + this.state = 3689; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -15991,57 +16114,57 @@ export class TrinoSqlParser extends SQLParserBase { } public privilegeOrRole(): PrivilegeOrRoleContext { let localContext = new PrivilegeOrRoleContext(this.context, this.state); - this.enterRule(localContext, 312, TrinoSqlParser.RULE_privilegeOrRole); + this.enterRule(localContext, 318, TrinoSqlParser.RULE_privilegeOrRole); try { - this.state = 3673; + this.state = 3697; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3666; + this.state = 3690; this.match(TrinoSqlParser.KW_CREATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3667; + this.state = 3691; this.match(TrinoSqlParser.KW_SELECT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3668; + this.state = 3692; this.match(TrinoSqlParser.KW_DELETE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3669; + this.state = 3693; this.match(TrinoSqlParser.KW_INSERT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3670; + this.state = 3694; this.match(TrinoSqlParser.KW_UPDATE); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3671; + this.state = 3695; this.match(TrinoSqlParser.KW_EXECUTE); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3672; + this.state = 3696; this.identifier(); } break; @@ -16063,16 +16186,16 @@ export class TrinoSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 314, TrinoSqlParser.RULE_identifier); + this.enterRule(localContext, 320, TrinoSqlParser.RULE_identifier); try { - this.state = 3680; + this.state = 3704; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.IDENTIFIER: localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3675; + this.state = 3699; this.match(TrinoSqlParser.IDENTIFIER); } break; @@ -16080,7 +16203,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new QuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3676; + this.state = 3700; this.match(TrinoSqlParser.QUOTED_IDENTIFIER); } break; @@ -16301,7 +16424,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3677; + this.state = 3701; this.nonReserved(); } break; @@ -16309,7 +16432,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new BackQuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 3678; + this.state = 3702; this.match(TrinoSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -16317,7 +16440,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DigitIdentifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 3679; + this.state = 3703; this.match(TrinoSqlParser.DIGIT_IDENTIFIER); } break; @@ -16341,27 +16464,27 @@ export class TrinoSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 316, TrinoSqlParser.RULE_number); + this.enterRule(localContext, 322, TrinoSqlParser.RULE_number); let _la: number; try { - this.state = 3694; + this.state = 3718; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { case 1: localContext = new DecimalLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3683; + this.state = 3707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 320) { { - this.state = 3682; + this.state = 3706; this.match(TrinoSqlParser.MINUS); } } - this.state = 3685; + this.state = 3709; this.match(TrinoSqlParser.DECIMAL_VALUE); } break; @@ -16369,17 +16492,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new DoubleLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3687; + this.state = 3711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 320) { { - this.state = 3686; + this.state = 3710; this.match(TrinoSqlParser.MINUS); } } - this.state = 3689; + this.state = 3713; this.match(TrinoSqlParser.DOUBLE_VALUE); } break; @@ -16387,17 +16510,17 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IntegerLiteralContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3691; + this.state = 3715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 320) { { - this.state = 3690; + this.state = 3714; this.match(TrinoSqlParser.MINUS); } } - this.state = 3693; + this.state = 3717; this.match(TrinoSqlParser.INTEGER_VALUE); } break; @@ -16419,9 +16542,9 @@ export class TrinoSqlParser extends SQLParserBase { } public authorizationUser(): AuthorizationUserContext { let localContext = new AuthorizationUserContext(this.context, this.state); - this.enterRule(localContext, 318, TrinoSqlParser.RULE_authorizationUser); + this.enterRule(localContext, 324, TrinoSqlParser.RULE_authorizationUser); try { - this.state = 3698; + this.state = 3722; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case TrinoSqlParser.KW_ABSENT: @@ -16645,7 +16768,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new IdentifierUserContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3696; + this.state = 3720; this.identifier(); } break; @@ -16654,7 +16777,7 @@ export class TrinoSqlParser extends SQLParserBase { localContext = new StringUserContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3697; + this.state = 3721; this.string_(); } break; @@ -16678,12 +16801,12 @@ export class TrinoSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 320, TrinoSqlParser.RULE_nonReserved); + this.enterRule(localContext, 326, TrinoSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3700; + this.state = 3724; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 3984326656) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 37223659) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 1232320247) !== 0) || ((((_la - 99)) & ~0x1F) === 0 && ((1 << (_la - 99)) & 2532638303) !== 0) || ((((_la - 132)) & ~0x1F) === 0 && ((1 << (_la - 132)) & 3848265819) !== 0) || ((((_la - 164)) & ~0x1F) === 0 && ((1 << (_la - 164)) & 2011430399) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4261150717) !== 0) || ((((_la - 229)) & ~0x1F) === 0 && ((1 << (_la - 229)) & 4293917631) !== 0) || ((((_la - 262)) & ~0x1F) === 0 && ((1 << (_la - 262)) & 3740198895) !== 0) || ((((_la - 294)) & ~0x1F) === 0 && ((1 << (_la - 294)) & 521847) !== 0))) { this.errorHandler.recoverInline(this); @@ -16715,17 +16838,21 @@ export class TrinoSqlParser extends SQLParserBase { return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); case 44: return this.relation_sempred(localContext as RelationContext, predIndex); - case 78: - return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); + case 46: + return this.joinCriteria_sempred(localContext as JoinCriteriaContext, predIndex); + case 48: + return this.joinColumnReference_sempred(localContext as JoinColumnReferenceContext, predIndex); case 80: + return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); + case 82: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 81: + case 83: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 101: + case 103: return this.type_sempred(localContext as TypeContext, predIndex); - case 111: + case 113: return this.rowPattern_sempred(localContext as RowPatternContext, predIndex); - case 147: + case 149: return this.columnRef_sempred(localContext as ColumnRefContext, predIndex); } return true; @@ -16746,63 +16873,77 @@ export class TrinoSqlParser extends SQLParserBase { } return true; } - private booleanExpression_sempred(localContext: BooleanExpressionContext | null, predIndex: number): boolean { + private joinCriteria_sempred(localContext: JoinCriteriaContext | null, predIndex: number): boolean { switch (predIndex) { case 3: - return this.precpred(this.context, 2); + return this.notEntityCollecting(); + } + return true; + } + private joinColumnReference_sempred(localContext: JoinColumnReferenceContext | null, predIndex: number): boolean { + switch (predIndex) { case 4: + return this.entityCollecting; + } + return true; + } + private booleanExpression_sempred(localContext: BooleanExpressionContext | null, predIndex: number): boolean { + switch (predIndex) { + case 5: + return this.precpred(this.context, 2); + case 6: return this.precpred(this.context, 1); } return true; } private valueExpression_sempred(localContext: ValueExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 5: + case 7: return this.precpred(this.context, 3); - case 6: + case 8: return this.precpred(this.context, 2); - case 7: + case 9: return this.precpred(this.context, 1); - case 8: + case 10: return this.precpred(this.context, 5); } return true; } private primaryExpression_sempred(localContext: PrimaryExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 9: + case 11: return this.precpred(this.context, 25); - case 10: + case 12: return this.precpred(this.context, 23); } return true; } private type_sempred(localContext: TypeContext | null, predIndex: number): boolean { switch (predIndex) { - case 11: + case 13: return this.precpred(this.context, 2); } return true; } private rowPattern_sempred(localContext: RowPatternContext | null, predIndex: number): boolean { switch (predIndex) { - case 12: + case 14: return this.precpred(this.context, 2); - case 13: + case 15: return this.precpred(this.context, 1); } return true; } private columnRef_sempred(localContext: ColumnRefContext | null, predIndex: number): boolean { switch (predIndex) { - case 14: + case 16: return this.shouldMatchEmpty(); } return true; } public static readonly _serializedATN: number[] = [ - 4,1,341,3703,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,342,3727,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, @@ -16828,1570 +16969,1579 @@ export class TrinoSqlParser extends SQLParserBase { 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,1,0,5,0,324,8,0,10,0,12,0,327,9,0,1,0,1, - 0,1,1,1,1,1,2,1,2,3,2,335,8,2,1,3,1,3,3,3,339,8,3,1,4,1,4,3,4,343, - 8,4,1,5,1,5,3,5,347,8,5,1,6,1,6,3,6,351,8,6,1,7,1,7,1,7,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,3,8,364,8,8,1,8,1,8,1,8,1,8,1,8,3,8,371, - 8,8,1,8,1,8,3,8,375,8,8,1,8,1,8,3,8,379,8,8,1,8,1,8,1,8,1,8,3,8, - 385,8,8,1,8,1,8,3,8,389,8,8,1,8,1,8,1,8,1,8,1,8,3,8,396,8,8,1,8, - 1,8,1,8,3,8,401,8,8,1,8,1,8,3,8,405,8,8,1,8,1,8,1,8,1,8,3,8,411, - 8,8,1,8,1,8,3,8,415,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,434,8,8,1,8,1,8,1,8,1,8,3,8,440, - 8,8,1,8,1,8,3,8,444,8,8,1,8,1,8,3,8,448,8,8,1,8,1,8,3,8,452,8,8, - 1,8,1,8,1,8,1,8,1,8,1,8,3,8,460,8,8,1,8,1,8,3,8,464,8,8,1,8,3,8, - 467,8,8,1,8,1,8,1,8,3,8,472,8,8,1,8,1,8,1,8,1,8,3,8,478,8,8,1,8, - 1,8,1,8,1,8,1,8,5,8,485,8,8,10,8,12,8,488,9,8,1,8,1,8,1,8,3,8,493, - 8,8,1,8,1,8,3,8,497,8,8,1,8,1,8,1,8,1,8,3,8,503,8,8,1,8,1,8,1,8, - 1,8,1,8,3,8,510,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,518,8,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,530,8,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,3,8,539,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,548,8,8,1,8, - 1,8,1,8,1,8,3,8,554,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8, - 565,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,573,8,8,1,8,1,8,1,8,1,8,1,8, - 1,8,3,8,581,8,8,1,8,1,8,1,8,1,8,1,8,3,8,588,8,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,3,8,598,8,8,1,8,1,8,1,8,1,8,1,8,3,8,605,8,8,1,8, - 1,8,1,8,1,8,1,8,1,8,3,8,613,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,3,8,628,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,661,8,8,10,8,12,8,664,9,8,3,8,666, - 8,8,1,8,3,8,669,8,8,1,8,3,8,672,8,8,1,8,1,8,1,8,1,8,3,8,678,8,8, - 1,8,1,8,1,8,3,8,683,8,8,1,8,1,8,1,8,1,8,1,8,3,8,690,8,8,1,8,1,8, - 1,8,1,8,3,8,696,8,8,1,8,1,8,3,8,700,8,8,1,8,1,8,3,8,704,8,8,1,8, - 1,8,1,8,1,8,1,8,1,8,3,8,712,8,8,1,8,1,8,1,8,1,8,3,8,718,8,8,1,8, - 1,8,3,8,722,8,8,1,8,1,8,3,8,726,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,3,8,740,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,748, + 2,159,7,159,2,160,7,160,2,161,7,161,2,162,7,162,2,163,7,163,1,0, + 5,0,330,8,0,10,0,12,0,333,9,0,1,0,1,0,1,1,1,1,1,2,1,2,3,2,341,8, + 2,1,3,1,3,3,3,345,8,3,1,4,1,4,3,4,349,8,4,1,5,1,5,3,5,353,8,5,1, + 6,1,6,3,6,357,8,6,1,7,1,7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3, + 8,370,8,8,1,8,1,8,1,8,1,8,1,8,3,8,377,8,8,1,8,1,8,3,8,381,8,8,1, + 8,1,8,3,8,385,8,8,1,8,1,8,1,8,1,8,3,8,391,8,8,1,8,1,8,3,8,395,8, + 8,1,8,1,8,1,8,1,8,1,8,3,8,402,8,8,1,8,1,8,1,8,3,8,407,8,8,1,8,1, + 8,3,8,411,8,8,1,8,1,8,1,8,1,8,3,8,417,8,8,1,8,1,8,3,8,421,8,8,1, + 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,3,8,440,8,8,1,8,1,8,1,8,1,8,3,8,446,8,8,1,8,1,8,3,8,450,8,8,1, + 8,1,8,3,8,454,8,8,1,8,1,8,3,8,458,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3, + 8,466,8,8,1,8,1,8,3,8,470,8,8,1,8,3,8,473,8,8,1,8,1,8,1,8,3,8,478, + 8,8,1,8,1,8,1,8,1,8,3,8,484,8,8,1,8,1,8,1,8,1,8,1,8,5,8,491,8,8, + 10,8,12,8,494,9,8,1,8,1,8,1,8,3,8,499,8,8,1,8,1,8,3,8,503,8,8,1, + 8,1,8,1,8,1,8,3,8,509,8,8,1,8,1,8,1,8,1,8,1,8,3,8,516,8,8,1,8,1, + 8,1,8,1,8,1,8,1,8,3,8,524,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,3,8,536,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,545,8,8,1,8,1, + 8,1,8,1,8,1,8,1,8,1,8,3,8,554,8,8,1,8,1,8,1,8,1,8,3,8,560,8,8,1, + 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,571,8,8,1,8,1,8,1,8,1,8,1, + 8,1,8,3,8,579,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,587,8,8,1,8,1,8,1, + 8,1,8,1,8,3,8,594,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,604,8, + 8,1,8,1,8,1,8,1,8,1,8,3,8,611,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,619, + 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,634, 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,3,8,767,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,790,8,8,10,8,12,8,793, - 9,8,3,8,795,8,8,1,8,1,8,1,8,1,8,1,8,3,8,802,8,8,1,8,1,8,1,8,1,8, - 1,8,3,8,809,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,818,8,8,1,8,1,8, - 3,8,822,8,8,1,8,1,8,1,8,1,8,1,8,3,8,829,8,8,1,8,1,8,1,8,1,8,5,8, - 835,8,8,10,8,12,8,838,9,8,1,8,1,8,1,8,1,8,5,8,844,8,8,10,8,12,8, - 847,9,8,1,8,1,8,1,8,3,8,852,8,8,1,8,1,8,1,8,3,8,857,8,8,1,8,1,8, - 3,8,861,8,8,1,8,1,8,1,8,1,8,5,8,867,8,8,10,8,12,8,870,9,8,1,8,1, - 8,3,8,874,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,883,8,8,1,8,1,8,1, - 8,1,8,3,8,889,8,8,1,8,1,8,1,8,5,8,894,8,8,10,8,12,8,897,9,8,1,8, - 1,8,1,8,1,8,5,8,903,8,8,10,8,12,8,906,9,8,1,8,1,8,1,8,3,8,911,8, - 8,1,8,1,8,3,8,915,8,8,1,8,1,8,1,8,1,8,3,8,921,8,8,1,8,1,8,1,8,5, - 8,926,8,8,10,8,12,8,929,9,8,1,8,1,8,3,8,933,8,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,5,8,944,8,8,10,8,12,8,947,9,8,1,8,1,8,3,8,951, - 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,963,8,8,1,8,1,8, - 3,8,967,8,8,1,8,1,8,1,8,1,8,3,8,973,8,8,1,8,1,8,1,8,1,8,1,8,5,8, - 980,8,8,10,8,12,8,983,9,8,1,8,1,8,3,8,987,8,8,1,8,1,8,1,8,1,8,3, - 8,993,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1021,8,8,1, - 8,1,8,1,8,1,8,3,8,1027,8,8,3,8,1029,8,8,1,8,1,8,1,8,1,8,3,8,1035, - 8,8,1,8,1,8,1,8,1,8,3,8,1041,8,8,3,8,1043,8,8,1,8,1,8,1,8,1,8,1, - 8,1,8,3,8,1051,8,8,3,8,1053,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, - 3,8,1063,8,8,3,8,1065,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,3,8,1080,8,8,1,8,1,8,1,8,3,8,1085,8,8,1,8,1,8,1,8, - 1,8,1,8,3,8,1092,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1102,8, - 8,1,8,1,8,1,8,1,8,3,8,1108,8,8,3,8,1110,8,8,1,8,1,8,1,8,1,8,1,8, - 1,8,3,8,1118,8,8,3,8,1120,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1143,8,8,10, - 8,12,8,1146,9,8,3,8,1148,8,8,1,8,1,8,3,8,1152,8,8,1,8,1,8,3,8,1156, - 8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8, - 1172,8,8,10,8,12,8,1175,9,8,3,8,1177,8,8,1,8,1,8,1,8,1,8,1,8,1,8, - 1,8,5,8,1186,8,8,10,8,12,8,1189,9,8,3,8,1191,8,8,1,8,1,8,1,8,1,8, - 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1207,8,8,1,8,1,8,1,8, - 1,8,1,8,1,8,5,8,1215,8,8,10,8,12,8,1218,9,8,1,8,3,8,1221,8,8,1,8, - 1,8,1,8,1,8,3,8,1227,8,8,1,8,3,8,1230,8,8,1,8,1,8,1,8,1,8,1,8,4, - 8,1237,8,8,11,8,12,8,1238,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, - 8,3,8,1251,8,8,1,9,3,9,1254,8,9,1,9,1,9,1,10,1,10,1,10,1,10,5,10, - 1262,8,10,10,10,12,10,1265,9,10,1,11,3,11,1268,8,11,1,11,1,11,1, - 12,1,12,3,12,1274,8,12,1,12,1,12,1,12,5,12,1279,8,12,10,12,12,12, - 1282,9,12,1,13,1,13,3,13,1286,8,13,1,14,1,14,1,14,1,14,3,14,1292, - 8,14,1,14,1,14,3,14,1296,8,14,1,14,1,14,3,14,1300,8,14,1,15,1,15, - 1,15,1,15,3,15,1306,8,15,1,16,1,16,1,16,1,16,1,17,1,17,1,17,5,17, - 1315,8,17,10,17,12,17,1318,9,17,1,18,1,18,1,18,1,18,1,19,1,19,3, - 19,1326,8,19,1,20,1,20,1,20,1,20,1,20,1,20,5,20,1334,8,20,10,20, - 12,20,1337,9,20,3,20,1339,8,20,1,20,1,20,1,20,3,20,1344,8,20,3,20, - 1346,8,20,1,20,1,20,1,20,1,20,1,20,3,20,1353,8,20,1,20,1,20,1,20, - 1,20,3,20,1359,8,20,3,20,1361,8,20,1,21,1,21,3,21,1365,8,21,1,22, - 1,22,1,23,1,23,1,23,1,23,1,23,1,23,3,23,1375,8,23,1,23,1,23,1,23, - 1,23,3,23,1381,8,23,1,23,5,23,1384,8,23,10,23,12,23,1387,9,23,1, - 24,1,24,1,24,1,24,1,24,1,24,1,24,5,24,1396,8,24,10,24,12,24,1399, - 9,24,1,24,1,24,1,24,1,24,3,24,1405,8,24,1,25,1,25,3,25,1409,8,25, - 1,25,3,25,1412,8,25,1,25,1,25,3,25,1416,8,25,1,26,1,26,3,26,1420, - 8,26,1,26,1,26,1,26,1,26,1,26,5,26,1427,8,26,10,26,12,26,1430,9, - 26,3,26,1432,8,26,1,26,3,26,1435,8,26,1,26,1,26,1,26,3,26,1440,8, - 26,1,26,3,26,1443,8,26,1,26,1,26,1,26,1,26,5,26,1449,8,26,10,26, - 12,26,1452,9,26,3,26,1454,8,26,1,27,1,27,1,27,1,28,1,28,1,28,1,29, - 1,29,1,29,5,29,1465,8,29,10,29,12,29,1468,9,29,1,30,3,30,1471,8, - 30,1,30,1,30,1,30,5,30,1476,8,30,10,30,12,30,1479,9,30,1,31,1,31, - 1,31,5,31,1484,8,31,10,31,12,31,1487,9,31,1,32,1,32,1,32,1,32,1, - 32,1,32,5,32,1495,8,32,10,32,12,32,1498,9,32,3,32,1500,8,32,1,32, - 1,32,1,32,1,32,1,32,1,32,5,32,1508,8,32,10,32,12,32,1511,9,32,3, - 32,1513,8,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,5,32,1522,8,32,10, - 32,12,32,1525,9,32,1,32,1,32,3,32,1529,8,32,1,33,1,33,1,33,1,33, - 5,33,1535,8,33,10,33,12,33,1538,9,33,3,33,1540,8,33,1,33,1,33,3, - 33,1544,8,33,1,34,1,34,3,34,1548,8,34,1,35,1,35,1,35,1,35,1,35,1, - 35,1,36,3,36,1557,8,36,1,36,1,36,1,36,3,36,1562,8,36,1,36,1,36,1, - 36,1,36,1,36,5,36,1569,8,36,10,36,12,36,1572,9,36,3,36,1574,8,36, - 1,36,3,36,1577,8,36,1,37,1,37,3,37,1581,8,37,1,37,1,37,1,37,1,37, - 1,37,1,38,1,38,1,39,1,39,3,39,1592,8,39,1,39,3,39,1595,8,39,1,39, - 3,39,1598,8,39,1,39,1,39,1,39,3,39,1603,8,39,1,39,3,39,1606,8,39, - 1,40,1,40,1,41,1,41,1,41,1,41,1,42,1,42,1,43,1,43,1,44,1,44,1,44, - 1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44, - 1,44,3,44,1635,8,44,5,44,1637,8,44,10,44,12,44,1640,9,44,1,45,3, - 45,1643,8,45,1,45,1,45,3,45,1647,8,45,1,45,1,45,3,45,1651,8,45,1, - 45,1,45,3,45,1655,8,45,3,45,1657,8,45,1,46,1,46,1,46,1,46,1,46,1, - 46,1,46,5,46,1666,8,46,10,46,12,46,1669,9,46,1,46,1,46,3,46,1673, - 8,46,1,47,1,47,1,47,1,47,1,47,1,47,1,47,3,47,1682,8,47,1,48,1,48, - 1,49,1,49,1,50,1,50,1,50,3,50,1691,8,50,1,50,3,50,1694,8,50,1,51, - 1,51,1,51,1,51,3,51,1700,8,51,1,52,1,52,1,52,1,52,1,52,1,52,3,52, - 1708,8,52,1,52,1,52,1,52,1,52,1,52,5,52,1715,8,52,10,52,12,52,1718, - 9,52,3,52,1720,8,52,1,52,1,52,1,52,1,52,5,52,1726,8,52,10,52,12, - 52,1729,9,52,3,52,1731,8,52,1,52,3,52,1734,8,52,1,52,1,52,1,52,3, - 52,1739,8,52,1,52,3,52,1742,8,52,1,52,1,52,1,52,1,52,1,52,1,52,1, - 52,1,52,5,52,1752,8,52,10,52,12,52,1755,9,52,3,52,1757,8,52,1,52, - 1,52,1,52,1,52,5,52,1763,8,52,10,52,12,52,1766,9,52,1,52,1,52,3, - 52,1770,8,52,1,52,1,52,3,52,1774,8,52,3,52,1776,8,52,3,52,1778,8, - 52,1,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1, - 54,3,54,1793,8,54,3,54,1795,8,54,1,55,1,55,1,55,1,55,1,55,1,55,1, - 55,1,55,1,55,3,55,1806,8,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,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,1827, - 8,56,1,57,1,57,1,57,1,57,1,57,1,57,5,57,1835,8,57,10,57,12,57,1838, - 9,57,1,57,1,57,1,58,1,58,1,58,1,58,1,59,1,59,3,59,1848,8,59,1,59, - 1,59,3,59,1852,8,59,3,59,1854,8,59,1,60,1,60,1,60,1,60,5,60,1860, - 8,60,10,60,12,60,1863,9,60,1,60,1,60,1,61,1,61,1,61,1,61,5,61,1871, - 8,61,10,61,12,61,1874,9,61,1,61,1,61,1,62,1,62,1,62,1,62,5,62,1882, - 8,62,10,62,12,62,1885,9,62,1,62,1,62,1,63,1,63,3,63,1891,8,63,1, - 63,1,63,1,63,1,63,1,63,3,63,1898,8,63,1,64,1,64,1,64,1,64,1,64,1, - 64,1,64,1,64,1,64,5,64,1909,8,64,10,64,12,64,1912,9,64,1,64,1,64, - 1,64,3,64,1917,8,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64, - 1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,5,64,1937,8,64,10,64, - 12,64,1940,9,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,64, - 1,64,1,64,3,64,1954,8,64,1,64,1,64,1,64,3,64,1959,8,64,1,64,1,64, - 3,64,1963,8,64,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65,1973, - 8,65,1,65,1,65,1,65,1,65,3,65,1979,8,65,1,65,1,65,1,65,1,65,3,65, - 1985,8,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65,1993,8,65,1,65,1,65, - 1,65,3,65,1998,8,65,1,65,1,65,1,65,1,65,1,65,3,65,2005,8,65,3,65, - 2007,8,65,1,65,1,65,1,65,1,65,3,65,2013,8,65,1,65,1,65,1,65,1,65, - 3,65,2019,8,65,1,65,1,65,3,65,2023,8,65,1,65,1,65,1,65,3,65,2028, - 8,65,1,65,1,65,1,65,1,65,1,65,5,65,2035,8,65,10,65,12,65,2038,9, - 65,1,65,1,65,3,65,2042,8,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1, - 66,1,66,1,66,5,66,2054,8,66,10,66,12,66,2057,9,66,1,66,1,66,1,66, - 1,66,1,66,5,66,2064,8,66,10,66,12,66,2067,9,66,3,66,2069,8,66,1, - 67,1,67,1,68,1,68,1,68,1,68,1,68,3,68,2078,8,68,1,69,1,69,1,69,3, - 69,2083,8,69,1,69,1,69,1,69,3,69,2088,8,69,3,69,2090,8,69,1,70,1, - 70,1,70,1,70,1,70,5,70,2097,8,70,10,70,12,70,2100,9,70,3,70,2102, - 8,70,1,70,1,70,1,70,1,70,5,70,2108,8,70,10,70,12,70,2111,9,70,3, - 70,2113,8,70,1,70,1,70,1,71,1,71,1,71,3,71,2120,8,71,1,71,1,71,1, - 71,3,71,2125,8,71,1,72,1,72,1,72,1,72,1,72,3,72,2132,8,72,1,72,1, - 72,3,72,2136,8,72,3,72,2138,8,72,1,72,1,72,1,72,1,72,1,72,1,72,3, - 72,2146,8,72,1,72,1,72,1,72,1,72,1,72,1,72,5,72,2154,8,72,10,72, - 12,72,2157,9,72,1,72,1,72,1,72,3,72,2162,8,72,3,72,2164,8,72,1,73, - 1,73,1,73,1,73,1,73,3,73,2171,8,73,1,73,1,73,3,73,2175,8,73,3,73, - 2177,8,73,1,73,1,73,1,73,1,73,1,73,3,73,2184,8,73,1,73,1,73,3,73, - 2188,8,73,3,73,2190,8,73,3,73,2192,8,73,1,74,1,74,1,74,1,74,1,74, - 5,74,2199,8,74,10,74,12,74,2202,9,74,1,74,1,74,1,74,1,74,1,74,1, - 74,1,74,1,74,3,74,2212,8,74,1,75,1,75,3,75,2216,8,75,1,76,1,76,1, - 76,1,76,1,76,1,76,5,76,2224,8,76,10,76,12,76,2227,9,76,1,76,1,76, - 1,77,1,77,1,78,1,78,1,78,3,78,2236,8,78,1,78,1,78,3,78,2240,8,78, - 1,78,1,78,1,78,1,78,1,78,1,78,5,78,2248,8,78,10,78,12,78,2251,9, - 78,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,3,79,2263,8, - 79,1,79,1,79,1,79,1,79,1,79,1,79,3,79,2271,8,79,1,79,1,79,1,79,1, - 79,1,79,5,79,2278,8,79,10,79,12,79,2281,9,79,1,79,1,79,1,79,3,79, - 2286,8,79,1,79,1,79,1,79,1,79,1,79,1,79,3,79,2294,8,79,1,79,1,79, - 1,79,1,79,3,79,2300,8,79,1,79,1,79,3,79,2304,8,79,1,79,1,79,1,79, - 3,79,2309,8,79,1,79,1,79,1,79,3,79,2314,8,79,1,80,1,80,1,80,1,80, - 3,80,2320,8,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80, - 1,80,1,80,5,80,2334,8,80,10,80,12,80,2337,9,80,1,81,1,81,1,81,1, - 81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1, - 81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,4,81,2364,8,81,11,81, - 12,81,2365,1,81,1,81,1,81,1,81,1,81,1,81,1,81,5,81,2375,8,81,10, - 81,12,81,2378,9,81,1,81,1,81,1,81,1,81,1,81,3,81,2385,8,81,1,81, - 1,81,1,81,3,81,2390,8,81,1,81,1,81,1,81,3,81,2395,8,81,1,81,1,81, - 1,81,1,81,1,81,1,81,1,81,1,81,1,81,5,81,2406,8,81,10,81,12,81,2409, - 9,81,1,81,1,81,1,81,3,81,2414,8,81,1,81,3,81,2417,8,81,1,81,1,81, - 1,81,1,81,1,81,3,81,2424,8,81,1,81,1,81,1,81,3,81,2429,8,81,1,81, - 3,81,2432,8,81,1,81,3,81,2435,8,81,1,81,1,81,1,81,3,81,2440,8,81, - 1,81,1,81,1,81,5,81,2445,8,81,10,81,12,81,2448,9,81,3,81,2450,8, - 81,1,81,1,81,1,81,1,81,1,81,5,81,2457,8,81,10,81,12,81,2460,9,81, - 3,81,2462,8,81,1,81,1,81,3,81,2466,8,81,1,81,3,81,2469,8,81,1,81, - 3,81,2472,8,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81, - 1,81,5,81,2485,8,81,10,81,12,81,2488,9,81,3,81,2490,8,81,1,81,1, - 81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1, - 81,4,81,2507,8,81,11,81,12,81,2508,1,81,1,81,3,81,2513,8,81,1,81, - 1,81,1,81,1,81,4,81,2519,8,81,11,81,12,81,2520,1,81,1,81,3,81,2525, - 8,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81, - 1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,5,81,2548,8,81,10,81, - 12,81,2551,9,81,3,81,2553,8,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81, - 3,81,2562,8,81,1,81,1,81,1,81,1,81,3,81,2568,8,81,1,81,1,81,1,81, - 1,81,3,81,2574,8,81,1,81,1,81,1,81,1,81,3,81,2580,8,81,1,81,1,81, - 1,81,1,81,1,81,1,81,1,81,3,81,2589,8,81,1,81,3,81,2592,8,81,1,81, - 3,81,2595,8,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81, - 1,81,1,81,1,81,1,81,1,81,1,81,1,81,3,81,2614,8,81,1,81,1,81,1,81, - 1,81,1,81,1,81,1,81,3,81,2623,8,81,1,81,1,81,1,81,1,81,1,81,1,81, - 1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,5,81,2639,8,81,10,81,12, - 81,2642,9,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1, - 81,5,81,2655,8,81,10,81,12,81,2658,9,81,3,81,2660,8,81,1,81,1,81, - 1,81,1,81,1,81,1,81,1,81,1,81,3,81,2670,8,81,1,81,1,81,1,81,1,81, - 1,81,1,81,1,81,3,81,2679,8,81,1,81,1,81,1,81,1,81,3,81,2685,8,81, - 1,81,1,81,1,81,1,81,3,81,2691,8,81,1,81,1,81,1,81,1,81,1,81,1,81, - 1,81,1,81,1,81,3,81,2702,8,81,3,81,2704,8,81,1,81,1,81,1,81,3,81, - 2709,8,81,1,81,1,81,1,81,1,81,1,81,3,81,2716,8,81,3,81,2718,8,81, - 1,81,1,81,1,81,1,81,3,81,2724,8,81,1,81,1,81,1,81,1,81,3,81,2730, - 8,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,5,81,2739,8,81,10,81,12, - 81,2742,9,81,1,81,1,81,1,81,1,81,1,81,1,81,3,81,2750,8,81,1,81,1, - 81,1,81,3,81,2755,8,81,1,81,1,81,1,81,3,81,2760,8,81,3,81,2762,8, - 81,3,81,2764,8,81,1,81,1,81,1,81,1,81,3,81,2770,8,81,3,81,2772,8, - 81,1,81,1,81,1,81,1,81,1,81,1,81,5,81,2780,8,81,10,81,12,81,2783, - 9,81,1,81,1,81,1,81,1,81,1,81,1,81,3,81,2791,8,81,3,81,2793,8,81, - 1,81,1,81,1,81,1,81,3,81,2799,8,81,3,81,2801,8,81,1,81,3,81,2804, - 8,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,5,81,2814,8,81,10,81, - 12,81,2817,9,81,1,82,1,82,1,82,1,82,1,82,3,82,2824,8,82,1,82,1,82, - 1,82,1,82,5,82,2830,8,82,10,82,12,82,2833,9,82,3,82,2835,8,82,1, - 83,1,83,1,83,3,83,2840,8,83,1,84,1,84,1,84,3,84,2845,8,84,1,85,1, - 85,1,85,1,85,1,86,1,86,1,87,1,87,1,87,1,87,3,87,2857,8,87,1,88,1, - 88,3,88,2861,8,88,1,88,1,88,3,88,2865,8,88,1,88,3,88,2868,8,88,3, - 88,2870,8,88,1,89,1,89,1,89,1,89,1,89,1,89,3,89,2878,8,89,1,90,3, - 90,2881,8,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,3,90,2891,8, - 90,1,91,1,91,1,92,1,92,1,92,1,92,3,92,2899,8,92,1,93,1,93,1,93,1, - 93,3,93,2905,8,93,3,93,2907,8,93,1,94,1,94,1,94,1,94,1,94,1,94,3, - 94,2915,8,94,1,95,1,95,1,96,1,96,1,97,1,97,1,98,1,98,3,98,2925,8, - 98,1,98,1,98,1,98,1,98,3,98,2931,8,98,1,99,1,99,1,100,1,100,1,101, - 1,101,1,101,1,101,1,101,1,101,5,101,2943,8,101,10,101,12,101,2946, - 9,101,1,101,1,101,1,101,1,101,1,101,1,101,3,101,2954,8,101,1,101, - 1,101,1,101,1,101,1,101,3,101,2961,8,101,1,101,1,101,1,101,3,101, - 2966,8,101,1,101,1,101,1,101,1,101,1,101,3,101,2973,8,101,1,101, - 1,101,1,101,3,101,2978,8,101,1,101,1,101,1,101,1,101,1,101,1,101, - 1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101, - 1,101,1,101,5,101,2999,8,101,10,101,12,101,3002,9,101,1,101,1,101, - 3,101,3006,8,101,3,101,3008,8,101,1,101,1,101,1,101,1,101,1,101, - 3,101,3015,8,101,5,101,3017,8,101,10,101,12,101,3020,9,101,1,102, - 1,102,1,102,1,102,3,102,3026,8,102,1,103,1,103,3,103,3030,8,103, - 1,104,1,104,1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,106, - 1,106,1,106,1,106,3,106,3046,8,106,1,106,1,106,1,106,1,106,1,106, - 1,106,1,106,1,106,1,106,1,106,1,106,5,106,3059,8,106,10,106,12,106, - 3062,9,106,1,106,1,106,1,106,1,106,3,106,3068,8,106,1,106,1,106, - 1,106,1,106,1,106,1,106,1,106,3,106,3077,8,106,1,106,1,106,1,106, - 1,106,1,106,1,106,5,106,3085,8,106,10,106,12,106,3088,9,106,1,106, - 1,106,3,106,3092,8,106,1,106,1,106,1,106,1,106,1,106,5,106,3099, - 8,106,10,106,12,106,3102,9,106,1,106,1,106,3,106,3106,8,106,1,107, - 1,107,1,107,1,107,1,107,1,107,3,107,3114,8,107,1,108,1,108,1,108, - 1,108,5,108,3120,8,108,10,108,12,108,3123,9,108,3,108,3125,8,108, - 1,108,1,108,1,108,1,108,3,108,3131,8,108,1,108,3,108,3134,8,108, - 1,108,1,108,1,108,1,108,1,108,3,108,3141,8,108,1,108,1,108,1,108, - 1,108,5,108,3147,8,108,10,108,12,108,3150,9,108,3,108,3152,8,108, - 1,108,1,108,1,108,1,108,5,108,3158,8,108,10,108,12,108,3161,9,108, - 3,108,3163,8,108,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109, - 1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109,1,109, - 1,109,1,109,1,109,1,109,1,109,3,109,3189,8,109,1,110,1,110,1,110, - 1,110,1,110,1,110,1,110,1,110,1,110,3,110,3200,8,110,1,111,1,111, - 1,111,3,111,3205,8,111,1,111,1,111,1,111,1,111,1,111,5,111,3212, - 8,111,10,111,12,111,3215,9,111,1,112,1,112,1,112,1,112,1,112,1,112, - 1,112,1,112,5,112,3225,8,112,10,112,12,112,3228,9,112,1,112,1,112, - 1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,3,112, - 3242,8,112,1,113,1,113,3,113,3246,8,113,1,113,1,113,3,113,3250,8, - 113,1,113,1,113,3,113,3254,8,113,1,113,1,113,1,113,1,113,3,113,3260, - 8,113,1,113,1,113,3,113,3264,8,113,1,113,1,113,3,113,3268,8,113, - 1,113,1,113,3,113,3272,8,113,3,113,3274,8,113,1,114,1,114,1,114, - 1,114,1,115,1,115,1,115,1,115,3,115,3284,8,115,1,116,1,116,1,116, - 1,116,1,116,3,116,3291,8,116,1,117,1,117,1,117,1,117,1,117,1,117, - 1,117,3,117,3300,8,117,1,118,1,118,1,118,1,118,1,118,3,118,3307, - 8,118,1,119,1,119,1,119,1,119,1,119,3,119,3314,8,119,1,120,1,120, - 1,120,5,120,3319,8,120,10,120,12,120,3322,9,120,1,121,1,121,1,121, - 1,121,5,121,3328,8,121,10,121,12,121,3331,9,121,1,121,1,121,1,122, - 1,122,1,122,1,122,1,122,5,122,3340,8,122,10,122,12,122,3343,9,122, - 3,122,3345,8,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,5,123, - 3354,8,123,10,123,12,123,3357,9,123,3,123,3359,8,123,1,123,1,123, - 1,124,3,124,3364,8,124,1,124,1,124,1,125,1,125,1,125,1,126,1,126, - 1,126,3,126,3374,8,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126, - 1,126,1,126,1,126,1,126,1,126,1,126,1,126,3,126,3390,8,126,1,127, - 1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,4,127,3402, - 8,127,11,127,12,127,3403,1,127,3,127,3407,8,127,1,127,1,127,1,127, - 1,127,1,127,4,127,3414,8,127,11,127,12,127,3415,1,127,3,127,3419, - 8,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,5,127,3429, - 8,127,10,127,12,127,3432,9,127,1,127,3,127,3435,8,127,1,127,1,127, - 1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,5,127,3448, - 8,127,10,127,12,127,3451,9,127,1,127,3,127,3454,8,127,1,127,1,127, - 1,127,1,127,3,127,3460,8,127,1,127,1,127,1,127,1,127,1,127,1,127, - 1,127,1,127,3,127,3470,8,127,1,127,1,127,1,127,1,127,1,127,1,127, - 1,127,1,127,1,127,1,127,3,127,3482,8,127,1,127,1,127,1,127,1,127, - 1,127,1,127,1,127,3,127,3491,8,127,1,128,1,128,1,128,1,128,1,128, - 1,129,1,129,1,129,1,129,1,129,1,130,1,130,1,130,1,131,1,131,1,131, - 1,131,5,131,3510,8,131,10,131,12,131,3513,9,131,1,131,1,131,1,131, - 3,131,3518,8,131,1,132,1,132,1,132,4,132,3523,8,132,11,132,12,132, - 3524,1,133,1,133,1,133,1,133,1,133,1,133,3,133,3533,8,133,1,134, - 1,134,1,134,3,134,3538,8,134,1,135,3,135,3541,8,135,1,135,1,135, - 1,136,1,136,3,136,3547,8,136,1,137,1,137,1,137,1,137,1,137,1,137, - 1,137,1,137,1,137,1,137,1,137,3,137,3560,8,137,1,138,1,138,1,138, - 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138,3573,8,138, - 1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,139, - 3,139,3586,8,139,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140, - 1,140,1,140,1,140,3,140,3599,8,140,1,141,1,141,1,141,1,141,1,141, - 3,141,3606,8,141,1,142,1,142,1,142,1,142,1,142,3,142,3613,8,142, - 1,143,1,143,1,144,1,144,1,145,1,145,1,146,1,146,1,147,1,147,3,147, - 3625,8,147,1,148,1,148,1,149,1,149,1,150,1,150,1,150,5,150,3634, - 8,150,10,150,12,150,3637,9,150,1,151,1,151,1,151,1,151,1,151,1,151, - 1,152,1,152,1,153,1,153,1,153,3,153,3650,8,153,1,154,1,154,1,154, - 1,154,1,154,3,154,3657,8,154,1,155,1,155,1,155,5,155,3662,8,155, - 10,155,12,155,3665,9,155,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 3,156,3674,8,156,1,157,1,157,1,157,1,157,1,157,3,157,3681,8,157, - 1,158,3,158,3684,8,158,1,158,1,158,3,158,3688,8,158,1,158,1,158, - 3,158,3692,8,158,1,158,3,158,3695,8,158,1,159,1,159,3,159,3699,8, - 159,1,160,1,160,1,160,0,7,46,88,156,160,162,202,222,161,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, - 0,36,2,0,39,39,230,230,2,0,73,73,132,132,2,0,106,106,123,123,2,0, - 93,93,124,124,1,0,240,241,2,0,102,102,175,175,2,0,325,325,330,330, - 2,0,92,92,282,282,2,0,29,29,76,76,2,0,102,102,149,149,2,0,22,22, - 80,80,2,0,33,33,260,260,3,0,35,35,151,151,271,271,2,0,125,125,248, - 248,2,0,86,86,90,90,2,0,145,145,190,190,2,0,126,126,198,198,2,0, - 55,55,282,282,1,0,319,320,1,0,321,323,1,0,292,294,4,0,90,90,98,98, - 274,274,284,284,2,0,50,50,281,281,2,0,101,101,242,242,1,0,313,318, - 3,0,22,22,26,26,255,255,2,0,98,98,274,274,5,0,68,68,119,119,171, - 172,246,246,311,311,1,0,176,179,2,0,305,305,307,307,2,0,103,103, - 213,213,3,0,114,114,138,138,264,264,4,0,81,81,133,133,161,161,295, - 295,2,0,193,193,310,310,2,0,269,269,299,299,54,0,18,22,24,24,26, - 27,29,33,35,35,37,39,42,50,52,53,57,57,66,68,70,73,75,76,78,79,81, - 83,86,88,90,90,93,93,96,96,99,103,105,105,108,114,117,117,119,122, - 124,125,127,127,130,130,132,133,135,136,138,138,145,152,154,154, - 156,156,158,158,161,172,174,181,185,190,192,194,197,197,199,214, - 216,221,223,234,236,238,240,248,250,260,262,265,267,272,275,277, - 279,281,283,285,287,290,292,296,298,300,303,304,306,312,4244,0,325, - 1,0,0,0,2,330,1,0,0,0,4,332,1,0,0,0,6,336,1,0,0,0,8,340,1,0,0,0, - 10,344,1,0,0,0,12,348,1,0,0,0,14,352,1,0,0,0,16,1250,1,0,0,0,18, - 1253,1,0,0,0,20,1257,1,0,0,0,22,1267,1,0,0,0,24,1271,1,0,0,0,26, - 1285,1,0,0,0,28,1287,1,0,0,0,30,1301,1,0,0,0,32,1307,1,0,0,0,34, - 1311,1,0,0,0,36,1319,1,0,0,0,38,1325,1,0,0,0,40,1327,1,0,0,0,42, - 1364,1,0,0,0,44,1366,1,0,0,0,46,1368,1,0,0,0,48,1404,1,0,0,0,50, - 1408,1,0,0,0,52,1417,1,0,0,0,54,1455,1,0,0,0,56,1458,1,0,0,0,58, - 1461,1,0,0,0,60,1470,1,0,0,0,62,1480,1,0,0,0,64,1528,1,0,0,0,66, - 1543,1,0,0,0,68,1547,1,0,0,0,70,1549,1,0,0,0,72,1556,1,0,0,0,74, - 1578,1,0,0,0,76,1587,1,0,0,0,78,1605,1,0,0,0,80,1607,1,0,0,0,82, - 1609,1,0,0,0,84,1613,1,0,0,0,86,1615,1,0,0,0,88,1617,1,0,0,0,90, - 1656,1,0,0,0,92,1672,1,0,0,0,94,1674,1,0,0,0,96,1683,1,0,0,0,98, - 1685,1,0,0,0,100,1693,1,0,0,0,102,1699,1,0,0,0,104,1701,1,0,0,0, - 106,1779,1,0,0,0,108,1794,1,0,0,0,110,1805,1,0,0,0,112,1826,1,0, - 0,0,114,1828,1,0,0,0,116,1841,1,0,0,0,118,1845,1,0,0,0,120,1855, - 1,0,0,0,122,1866,1,0,0,0,124,1877,1,0,0,0,126,1897,1,0,0,0,128,1962, - 1,0,0,0,130,2041,1,0,0,0,132,2068,1,0,0,0,134,2070,1,0,0,0,136,2077, - 1,0,0,0,138,2089,1,0,0,0,140,2091,1,0,0,0,142,2119,1,0,0,0,144,2126, - 1,0,0,0,146,2191,1,0,0,0,148,2211,1,0,0,0,150,2213,1,0,0,0,152,2217, - 1,0,0,0,154,2230,1,0,0,0,156,2239,1,0,0,0,158,2313,1,0,0,0,160,2319, - 1,0,0,0,162,2803,1,0,0,0,164,2818,1,0,0,0,166,2836,1,0,0,0,168,2841, - 1,0,0,0,170,2846,1,0,0,0,172,2850,1,0,0,0,174,2856,1,0,0,0,176,2869, - 1,0,0,0,178,2877,1,0,0,0,180,2890,1,0,0,0,182,2892,1,0,0,0,184,2898, - 1,0,0,0,186,2906,1,0,0,0,188,2914,1,0,0,0,190,2916,1,0,0,0,192,2918, - 1,0,0,0,194,2920,1,0,0,0,196,2922,1,0,0,0,198,2932,1,0,0,0,200,2934, - 1,0,0,0,202,3007,1,0,0,0,204,3025,1,0,0,0,206,3029,1,0,0,0,208,3031, - 1,0,0,0,210,3036,1,0,0,0,212,3105,1,0,0,0,214,3107,1,0,0,0,216,3124, - 1,0,0,0,218,3188,1,0,0,0,220,3199,1,0,0,0,222,3201,1,0,0,0,224,3241, - 1,0,0,0,226,3273,1,0,0,0,228,3275,1,0,0,0,230,3283,1,0,0,0,232,3290, - 1,0,0,0,234,3299,1,0,0,0,236,3306,1,0,0,0,238,3313,1,0,0,0,240,3315, - 1,0,0,0,242,3323,1,0,0,0,244,3334,1,0,0,0,246,3348,1,0,0,0,248,3363, - 1,0,0,0,250,3367,1,0,0,0,252,3389,1,0,0,0,254,3490,1,0,0,0,256,3492, - 1,0,0,0,258,3497,1,0,0,0,260,3502,1,0,0,0,262,3505,1,0,0,0,264,3522, - 1,0,0,0,266,3532,1,0,0,0,268,3537,1,0,0,0,270,3540,1,0,0,0,272,3546, - 1,0,0,0,274,3559,1,0,0,0,276,3572,1,0,0,0,278,3585,1,0,0,0,280,3598, - 1,0,0,0,282,3605,1,0,0,0,284,3612,1,0,0,0,286,3614,1,0,0,0,288,3616, - 1,0,0,0,290,3618,1,0,0,0,292,3620,1,0,0,0,294,3624,1,0,0,0,296,3626, - 1,0,0,0,298,3628,1,0,0,0,300,3630,1,0,0,0,302,3638,1,0,0,0,304,3644, - 1,0,0,0,306,3649,1,0,0,0,308,3656,1,0,0,0,310,3658,1,0,0,0,312,3673, - 1,0,0,0,314,3680,1,0,0,0,316,3694,1,0,0,0,318,3698,1,0,0,0,320,3700, - 1,0,0,0,322,324,3,2,1,0,323,322,1,0,0,0,324,327,1,0,0,0,325,323, - 1,0,0,0,325,326,1,0,0,0,326,328,1,0,0,0,327,325,1,0,0,0,328,329, - 5,0,0,1,329,1,1,0,0,0,330,331,3,4,2,0,331,3,1,0,0,0,332,334,3,16, - 8,0,333,335,5,326,0,0,334,333,1,0,0,0,334,335,1,0,0,0,335,5,1,0, - 0,0,336,338,3,154,77,0,337,339,5,326,0,0,338,337,1,0,0,0,338,339, - 1,0,0,0,339,7,1,0,0,0,340,342,3,240,120,0,341,343,5,326,0,0,342, - 341,1,0,0,0,342,343,1,0,0,0,343,9,1,0,0,0,344,346,3,202,101,0,345, - 347,5,326,0,0,346,345,1,0,0,0,346,347,1,0,0,0,347,11,1,0,0,0,348, - 350,3,222,111,0,349,351,5,326,0,0,350,349,1,0,0,0,350,351,1,0,0, - 0,351,13,1,0,0,0,352,353,3,242,121,0,353,354,5,0,0,1,354,15,1,0, - 0,0,355,1251,3,18,9,0,356,357,5,289,0,0,357,1251,3,282,141,0,358, - 359,5,54,0,0,359,363,5,42,0,0,360,361,5,120,0,0,361,362,5,183,0, - 0,362,364,5,95,0,0,363,360,1,0,0,0,363,364,1,0,0,0,364,365,1,0,0, - 0,365,366,3,288,144,0,366,367,5,291,0,0,367,370,3,314,157,0,368, - 369,5,47,0,0,369,371,3,186,93,0,370,368,1,0,0,0,370,371,1,0,0,0, - 371,374,1,0,0,0,372,373,5,31,0,0,373,375,3,308,154,0,374,372,1,0, - 0,0,374,375,1,0,0,0,375,378,1,0,0,0,376,377,5,305,0,0,377,379,3, - 32,16,0,378,376,1,0,0,0,378,379,1,0,0,0,379,1251,1,0,0,0,380,381, - 5,84,0,0,381,384,5,42,0,0,382,383,5,120,0,0,383,385,5,95,0,0,384, - 382,1,0,0,0,384,385,1,0,0,0,385,386,1,0,0,0,386,388,3,286,143,0, - 387,389,7,0,0,0,388,387,1,0,0,0,388,389,1,0,0,0,389,1251,1,0,0,0, - 390,391,5,54,0,0,391,395,5,244,0,0,392,393,5,120,0,0,393,394,5,183, - 0,0,394,396,5,95,0,0,395,392,1,0,0,0,395,396,1,0,0,0,396,397,1,0, - 0,0,397,400,3,284,142,0,398,399,5,31,0,0,399,401,3,308,154,0,400, - 398,1,0,0,0,400,401,1,0,0,0,401,404,1,0,0,0,402,403,5,305,0,0,403, - 405,3,32,16,0,404,402,1,0,0,0,404,405,1,0,0,0,405,1251,1,0,0,0,406, - 407,5,84,0,0,407,410,5,244,0,0,408,409,5,120,0,0,409,411,5,95,0, - 0,410,408,1,0,0,0,410,411,1,0,0,0,411,412,1,0,0,0,412,414,3,282, - 141,0,413,415,7,0,0,0,414,413,1,0,0,0,414,415,1,0,0,0,415,1251,1, - 0,0,0,416,417,5,23,0,0,417,418,5,244,0,0,418,419,3,282,141,0,419, - 420,5,224,0,0,420,421,5,270,0,0,421,422,3,284,142,0,422,1251,1,0, - 0,0,423,424,5,23,0,0,424,425,5,244,0,0,425,426,3,282,141,0,426,427, - 5,252,0,0,427,428,5,31,0,0,428,429,3,308,154,0,429,1251,1,0,0,0, - 430,433,5,54,0,0,431,432,5,195,0,0,432,434,5,227,0,0,433,431,1,0, - 0,0,433,434,1,0,0,0,434,435,1,0,0,0,435,439,5,261,0,0,436,437,5, - 120,0,0,437,438,5,183,0,0,438,440,5,95,0,0,439,436,1,0,0,0,439,440, - 1,0,0,0,440,441,1,0,0,0,441,443,3,276,138,0,442,444,3,120,60,0,443, - 442,1,0,0,0,443,444,1,0,0,0,444,447,1,0,0,0,445,446,5,47,0,0,446, - 448,3,186,93,0,447,445,1,0,0,0,447,448,1,0,0,0,448,451,1,0,0,0,449, - 450,5,305,0,0,450,452,3,32,16,0,451,449,1,0,0,0,451,452,1,0,0,0, - 452,453,1,0,0,0,453,459,5,28,0,0,454,460,3,18,9,0,455,456,5,1,0, - 0,456,457,3,18,9,0,457,458,5,2,0,0,458,460,1,0,0,0,459,454,1,0,0, - 0,459,455,1,0,0,0,460,466,1,0,0,0,461,463,5,305,0,0,462,464,5,180, - 0,0,463,462,1,0,0,0,463,464,1,0,0,0,464,465,1,0,0,0,465,467,5,66, - 0,0,466,461,1,0,0,0,466,467,1,0,0,0,467,1251,1,0,0,0,468,471,5,54, - 0,0,469,470,5,195,0,0,470,472,5,227,0,0,471,469,1,0,0,0,471,472, - 1,0,0,0,472,473,1,0,0,0,473,477,5,261,0,0,474,475,5,120,0,0,475, - 476,5,183,0,0,476,478,5,95,0,0,477,474,1,0,0,0,477,478,1,0,0,0,478, - 479,1,0,0,0,479,480,3,276,138,0,480,481,5,1,0,0,481,486,3,26,13, - 0,482,483,5,3,0,0,483,485,3,26,13,0,484,482,1,0,0,0,485,488,1,0, - 0,0,486,484,1,0,0,0,486,487,1,0,0,0,487,489,1,0,0,0,488,486,1,0, - 0,0,489,492,5,2,0,0,490,491,5,47,0,0,491,493,3,186,93,0,492,490, - 1,0,0,0,492,493,1,0,0,0,493,496,1,0,0,0,494,495,5,305,0,0,495,497, - 3,32,16,0,496,494,1,0,0,0,496,497,1,0,0,0,497,1251,1,0,0,0,498,499, - 5,84,0,0,499,502,5,261,0,0,500,501,5,120,0,0,501,503,5,95,0,0,502, - 500,1,0,0,0,502,503,1,0,0,0,503,504,1,0,0,0,504,1251,3,274,137,0, - 505,506,5,128,0,0,506,507,5,131,0,0,507,509,3,274,137,0,508,510, - 3,122,61,0,509,508,1,0,0,0,509,510,1,0,0,0,510,511,1,0,0,0,511,512, - 3,18,9,0,512,1251,1,0,0,0,513,514,5,74,0,0,514,515,5,106,0,0,515, - 517,3,274,137,0,516,518,3,54,27,0,517,516,1,0,0,0,517,518,1,0,0, - 0,518,1251,1,0,0,0,519,520,5,275,0,0,520,521,5,261,0,0,521,1251, - 3,274,137,0,522,523,5,47,0,0,523,524,5,191,0,0,524,525,5,261,0,0, - 525,526,3,274,137,0,526,529,5,134,0,0,527,530,3,186,93,0,528,530, - 5,184,0,0,529,527,1,0,0,0,529,528,1,0,0,0,530,1251,1,0,0,0,531,532, - 5,47,0,0,532,533,5,191,0,0,533,534,5,300,0,0,534,535,3,278,139,0, - 535,538,5,134,0,0,536,539,3,186,93,0,537,539,5,184,0,0,538,536,1, - 0,0,0,538,537,1,0,0,0,539,1251,1,0,0,0,540,541,5,47,0,0,541,542, - 5,191,0,0,542,543,5,45,0,0,543,544,3,294,147,0,544,547,5,134,0,0, - 545,548,3,186,93,0,546,548,5,184,0,0,547,545,1,0,0,0,547,546,1,0, - 0,0,548,1251,1,0,0,0,549,550,5,23,0,0,550,553,5,261,0,0,551,552, - 5,120,0,0,552,554,5,95,0,0,553,551,1,0,0,0,553,554,1,0,0,0,554,555, - 1,0,0,0,555,556,3,274,137,0,556,557,5,224,0,0,557,558,5,270,0,0, - 558,559,3,276,138,0,559,1251,1,0,0,0,560,561,5,23,0,0,561,564,5, - 261,0,0,562,563,5,120,0,0,563,565,5,95,0,0,564,562,1,0,0,0,564,565, - 1,0,0,0,565,566,1,0,0,0,566,567,3,274,137,0,567,568,5,19,0,0,568, - 572,5,45,0,0,569,570,5,120,0,0,570,571,5,183,0,0,571,573,5,95,0, - 0,572,569,1,0,0,0,572,573,1,0,0,0,573,574,1,0,0,0,574,575,3,28,14, - 0,575,1251,1,0,0,0,576,577,5,23,0,0,577,580,5,261,0,0,578,579,5, - 120,0,0,579,581,5,95,0,0,580,578,1,0,0,0,580,581,1,0,0,0,581,582, - 1,0,0,0,582,583,3,274,137,0,583,584,5,224,0,0,584,587,5,45,0,0,585, - 586,5,120,0,0,586,588,5,95,0,0,587,585,1,0,0,0,587,588,1,0,0,0,588, - 589,1,0,0,0,589,590,3,294,147,0,590,591,5,270,0,0,591,592,3,298, - 149,0,592,1251,1,0,0,0,593,594,5,23,0,0,594,597,5,261,0,0,595,596, - 5,120,0,0,596,598,5,95,0,0,597,595,1,0,0,0,597,598,1,0,0,0,598,599, - 1,0,0,0,599,600,3,274,137,0,600,601,5,84,0,0,601,604,5,45,0,0,602, - 603,5,120,0,0,603,605,5,95,0,0,604,602,1,0,0,0,604,605,1,0,0,0,605, - 606,1,0,0,0,606,607,3,294,147,0,607,1251,1,0,0,0,608,609,5,23,0, - 0,609,612,5,261,0,0,610,611,5,120,0,0,611,613,5,95,0,0,612,610,1, - 0,0,0,612,613,1,0,0,0,613,614,1,0,0,0,614,615,3,274,137,0,615,616, - 5,23,0,0,616,617,5,45,0,0,617,618,3,294,147,0,618,619,5,252,0,0, - 619,620,5,66,0,0,620,621,5,277,0,0,621,622,3,202,101,0,622,1251, - 1,0,0,0,623,624,5,23,0,0,624,627,5,261,0,0,625,626,5,120,0,0,626, - 628,5,95,0,0,627,625,1,0,0,0,627,628,1,0,0,0,628,629,1,0,0,0,629, - 630,3,274,137,0,630,631,5,23,0,0,631,632,5,45,0,0,632,633,3,294, - 147,0,633,634,5,84,0,0,634,635,5,183,0,0,635,636,5,184,0,0,636,1251, - 1,0,0,0,637,638,5,23,0,0,638,639,5,261,0,0,639,640,3,274,137,0,640, - 641,5,252,0,0,641,642,5,31,0,0,642,643,3,308,154,0,643,1251,1,0, - 0,0,644,645,5,23,0,0,645,646,5,261,0,0,646,647,3,274,137,0,647,648, - 5,252,0,0,648,649,5,217,0,0,649,650,3,34,17,0,650,1251,1,0,0,0,651, - 652,5,23,0,0,652,653,5,261,0,0,653,654,3,274,137,0,654,655,5,94, - 0,0,655,668,3,290,145,0,656,665,5,1,0,0,657,662,3,236,118,0,658, - 659,5,3,0,0,659,661,3,236,118,0,660,658,1,0,0,0,661,664,1,0,0,0, - 662,660,1,0,0,0,662,663,1,0,0,0,663,666,1,0,0,0,664,662,1,0,0,0, - 665,657,1,0,0,0,665,666,1,0,0,0,666,667,1,0,0,0,667,669,5,2,0,0, - 668,656,1,0,0,0,668,669,1,0,0,0,669,671,1,0,0,0,670,672,3,54,27, - 0,671,670,1,0,0,0,671,672,1,0,0,0,672,1251,1,0,0,0,673,674,5,24, - 0,0,674,677,3,274,137,0,675,676,5,305,0,0,676,678,3,32,16,0,677, - 675,1,0,0,0,677,678,1,0,0,0,678,1251,1,0,0,0,679,682,5,54,0,0,680, - 681,5,195,0,0,681,683,5,227,0,0,682,680,1,0,0,0,682,683,1,0,0,0, - 683,684,1,0,0,0,684,685,5,168,0,0,685,689,5,300,0,0,686,687,5,120, - 0,0,687,688,5,183,0,0,688,690,5,95,0,0,689,686,1,0,0,0,689,690,1, - 0,0,0,690,691,1,0,0,0,691,695,3,280,140,0,692,693,5,110,0,0,693, - 694,5,209,0,0,694,696,3,196,98,0,695,692,1,0,0,0,695,696,1,0,0,0, - 696,699,1,0,0,0,697,698,5,47,0,0,698,700,3,186,93,0,699,697,1,0, - 0,0,699,700,1,0,0,0,700,703,1,0,0,0,701,702,5,305,0,0,702,704,3, - 32,16,0,703,701,1,0,0,0,703,704,1,0,0,0,704,705,1,0,0,0,705,706, - 5,28,0,0,706,707,3,18,9,0,707,1251,1,0,0,0,708,711,5,54,0,0,709, - 710,5,195,0,0,710,712,5,227,0,0,711,709,1,0,0,0,711,712,1,0,0,0, - 712,713,1,0,0,0,713,714,5,300,0,0,714,717,3,280,140,0,715,716,5, - 47,0,0,716,718,3,186,93,0,717,715,1,0,0,0,717,718,1,0,0,0,718,721, - 1,0,0,0,719,720,5,247,0,0,720,722,7,1,0,0,721,719,1,0,0,0,721,722, - 1,0,0,0,722,725,1,0,0,0,723,724,5,305,0,0,724,726,3,32,16,0,725, - 723,1,0,0,0,725,726,1,0,0,0,726,727,1,0,0,0,727,728,5,28,0,0,728, - 729,3,18,9,0,729,1251,1,0,0,0,730,731,5,223,0,0,731,732,5,168,0, - 0,732,733,5,300,0,0,733,1251,3,278,139,0,734,735,5,84,0,0,735,736, - 5,168,0,0,736,739,5,300,0,0,737,738,5,120,0,0,738,740,5,95,0,0,739, - 737,1,0,0,0,739,740,1,0,0,0,740,741,1,0,0,0,741,1251,3,278,139,0, - 742,743,5,23,0,0,743,744,5,168,0,0,744,747,5,300,0,0,745,746,5,120, - 0,0,746,748,5,95,0,0,747,745,1,0,0,0,747,748,1,0,0,0,748,749,1,0, - 0,0,749,750,3,278,139,0,750,751,5,224,0,0,751,752,5,270,0,0,752, - 753,3,280,140,0,753,1251,1,0,0,0,754,755,5,23,0,0,755,756,5,168, - 0,0,756,757,5,300,0,0,757,758,3,278,139,0,758,759,5,252,0,0,759, - 760,5,217,0,0,760,761,3,34,17,0,761,1251,1,0,0,0,762,763,5,84,0, - 0,763,766,5,300,0,0,764,765,5,120,0,0,765,767,5,95,0,0,766,764,1, - 0,0,0,766,767,1,0,0,0,767,768,1,0,0,0,768,1251,3,278,139,0,769,770, - 5,23,0,0,770,771,5,300,0,0,771,772,3,278,139,0,772,773,5,224,0,0, - 773,774,5,270,0,0,774,775,3,280,140,0,775,1251,1,0,0,0,776,777,5, - 23,0,0,777,778,5,300,0,0,778,779,3,278,139,0,779,780,5,252,0,0,780, - 781,5,31,0,0,781,782,3,308,154,0,782,1251,1,0,0,0,783,784,5,37,0, - 0,784,785,3,290,145,0,785,794,5,1,0,0,786,791,3,236,118,0,787,788, - 5,3,0,0,788,790,3,236,118,0,789,787,1,0,0,0,790,793,1,0,0,0,791, - 789,1,0,0,0,791,792,1,0,0,0,792,795,1,0,0,0,793,791,1,0,0,0,794, - 786,1,0,0,0,794,795,1,0,0,0,795,796,1,0,0,0,796,797,5,2,0,0,797, - 1251,1,0,0,0,798,801,5,54,0,0,799,800,5,195,0,0,800,802,5,227,0, - 0,801,799,1,0,0,0,801,802,1,0,0,0,802,803,1,0,0,0,803,1251,3,242, - 121,0,804,805,5,84,0,0,805,808,5,108,0,0,806,807,5,120,0,0,807,809, - 5,95,0,0,808,806,1,0,0,0,808,809,1,0,0,0,809,810,1,0,0,0,810,1251, - 3,246,123,0,811,812,5,54,0,0,812,813,5,236,0,0,813,817,3,314,157, - 0,814,815,5,305,0,0,815,816,5,20,0,0,816,818,3,306,153,0,817,814, - 1,0,0,0,817,818,1,0,0,0,818,821,1,0,0,0,819,820,5,123,0,0,820,822, - 3,286,143,0,821,819,1,0,0,0,821,822,1,0,0,0,822,1251,1,0,0,0,823, - 824,5,84,0,0,824,825,5,236,0,0,825,828,3,314,157,0,826,827,5,123, - 0,0,827,829,3,286,143,0,828,826,1,0,0,0,828,829,1,0,0,0,829,1251, - 1,0,0,0,830,831,5,111,0,0,831,836,3,312,156,0,832,833,5,3,0,0,833, - 835,3,312,156,0,834,832,1,0,0,0,835,838,1,0,0,0,836,834,1,0,0,0, - 836,837,1,0,0,0,837,839,1,0,0,0,838,836,1,0,0,0,839,840,5,270,0, - 0,840,845,3,308,154,0,841,842,5,3,0,0,842,844,3,308,154,0,843,841, - 1,0,0,0,844,847,1,0,0,0,845,843,1,0,0,0,845,846,1,0,0,0,846,851, - 1,0,0,0,847,845,1,0,0,0,848,849,5,305,0,0,849,850,5,20,0,0,850,852, - 5,194,0,0,851,848,1,0,0,0,851,852,1,0,0,0,852,856,1,0,0,0,853,854, - 5,112,0,0,854,855,5,36,0,0,855,857,3,306,153,0,856,853,1,0,0,0,856, - 857,1,0,0,0,857,860,1,0,0,0,858,859,5,123,0,0,859,861,3,286,143, - 0,860,858,1,0,0,0,860,861,1,0,0,0,861,1251,1,0,0,0,862,873,5,111, - 0,0,863,868,3,312,156,0,864,865,5,3,0,0,865,867,3,312,156,0,866, - 864,1,0,0,0,867,870,1,0,0,0,868,866,1,0,0,0,868,869,1,0,0,0,869, - 874,1,0,0,0,870,868,1,0,0,0,871,872,5,22,0,0,872,874,5,216,0,0,873, - 863,1,0,0,0,873,871,1,0,0,0,874,875,1,0,0,0,875,876,5,191,0,0,876, - 877,3,270,135,0,877,878,5,270,0,0,878,882,3,308,154,0,879,880,5, - 305,0,0,880,881,5,111,0,0,881,883,5,194,0,0,882,879,1,0,0,0,882, - 883,1,0,0,0,883,1251,1,0,0,0,884,888,5,234,0,0,885,886,5,20,0,0, - 886,887,5,194,0,0,887,889,5,104,0,0,888,885,1,0,0,0,888,889,1,0, - 0,0,889,890,1,0,0,0,890,895,3,312,156,0,891,892,5,3,0,0,892,894, - 3,312,156,0,893,891,1,0,0,0,894,897,1,0,0,0,895,893,1,0,0,0,895, - 896,1,0,0,0,896,898,1,0,0,0,897,895,1,0,0,0,898,899,5,106,0,0,899, - 904,3,308,154,0,900,901,5,3,0,0,901,903,3,308,154,0,902,900,1,0, - 0,0,903,906,1,0,0,0,904,902,1,0,0,0,904,905,1,0,0,0,905,910,1,0, - 0,0,906,904,1,0,0,0,907,908,5,112,0,0,908,909,5,36,0,0,909,911,3, - 306,153,0,910,907,1,0,0,0,910,911,1,0,0,0,911,914,1,0,0,0,912,913, - 5,123,0,0,913,915,3,286,143,0,914,912,1,0,0,0,914,915,1,0,0,0,915, - 1251,1,0,0,0,916,920,5,234,0,0,917,918,5,111,0,0,918,919,5,194,0, - 0,919,921,5,104,0,0,920,917,1,0,0,0,920,921,1,0,0,0,921,932,1,0, - 0,0,922,927,3,312,156,0,923,924,5,3,0,0,924,926,3,312,156,0,925, - 923,1,0,0,0,926,929,1,0,0,0,927,925,1,0,0,0,927,928,1,0,0,0,928, - 933,1,0,0,0,929,927,1,0,0,0,930,931,5,22,0,0,931,933,5,216,0,0,932, - 922,1,0,0,0,932,930,1,0,0,0,933,934,1,0,0,0,934,935,5,191,0,0,935, - 936,3,270,135,0,936,937,5,106,0,0,937,938,3,308,154,0,938,1251,1, - 0,0,0,939,950,5,75,0,0,940,945,3,266,133,0,941,942,5,3,0,0,942,944, - 3,266,133,0,943,941,1,0,0,0,944,947,1,0,0,0,945,943,1,0,0,0,945, - 946,1,0,0,0,946,951,1,0,0,0,947,945,1,0,0,0,948,949,5,22,0,0,949, - 951,5,216,0,0,950,940,1,0,0,0,950,948,1,0,0,0,951,952,1,0,0,0,952, - 953,5,191,0,0,953,954,3,270,135,0,954,955,5,270,0,0,955,956,3,308, - 154,0,956,1251,1,0,0,0,957,958,5,252,0,0,958,962,5,236,0,0,959,963, - 5,22,0,0,960,963,5,181,0,0,961,963,3,314,157,0,962,959,1,0,0,0,962, - 960,1,0,0,0,962,961,1,0,0,0,963,966,1,0,0,0,964,965,5,123,0,0,965, - 967,3,286,143,0,966,964,1,0,0,0,966,967,1,0,0,0,967,1251,1,0,0,0, - 968,969,5,254,0,0,969,972,5,113,0,0,970,971,5,191,0,0,971,973,3, - 270,135,0,972,970,1,0,0,0,972,973,1,0,0,0,973,1251,1,0,0,0,974,986, - 5,96,0,0,975,976,5,1,0,0,976,981,3,230,115,0,977,978,5,3,0,0,978, - 980,3,230,115,0,979,977,1,0,0,0,980,983,1,0,0,0,981,979,1,0,0,0, - 981,982,1,0,0,0,982,984,1,0,0,0,983,981,1,0,0,0,984,985,5,2,0,0, - 985,987,1,0,0,0,986,975,1,0,0,0,986,987,1,0,0,0,987,988,1,0,0,0, - 988,1251,3,16,8,0,989,990,5,96,0,0,990,992,5,24,0,0,991,993,5,298, - 0,0,992,991,1,0,0,0,992,993,1,0,0,0,993,994,1,0,0,0,994,1251,3,16, - 8,0,995,996,5,254,0,0,996,997,5,54,0,0,997,998,5,261,0,0,998,1251, - 3,274,137,0,999,1000,5,254,0,0,1000,1001,5,54,0,0,1001,1002,5,244, - 0,0,1002,1251,3,282,141,0,1003,1004,5,254,0,0,1004,1005,5,54,0,0, - 1005,1006,5,300,0,0,1006,1251,3,278,139,0,1007,1008,5,254,0,0,1008, - 1009,5,54,0,0,1009,1010,5,168,0,0,1010,1011,5,300,0,0,1011,1251, - 3,278,139,0,1012,1013,5,254,0,0,1013,1014,5,54,0,0,1014,1015,5,108, - 0,0,1015,1251,3,290,145,0,1016,1017,5,254,0,0,1017,1020,5,262,0, - 0,1018,1019,7,2,0,0,1019,1021,3,282,141,0,1020,1018,1,0,0,0,1020, - 1021,1,0,0,0,1021,1028,1,0,0,0,1022,1023,5,155,0,0,1023,1026,3,186, - 93,0,1024,1025,5,91,0,0,1025,1027,3,186,93,0,1026,1024,1,0,0,0,1026, - 1027,1,0,0,0,1027,1029,1,0,0,0,1028,1022,1,0,0,0,1028,1029,1,0,0, - 0,1029,1251,1,0,0,0,1030,1031,5,254,0,0,1031,1034,5,245,0,0,1032, - 1033,7,2,0,0,1033,1035,3,286,143,0,1034,1032,1,0,0,0,1034,1035,1, - 0,0,0,1035,1042,1,0,0,0,1036,1037,5,155,0,0,1037,1040,3,186,93,0, - 1038,1039,5,91,0,0,1039,1041,3,186,93,0,1040,1038,1,0,0,0,1040,1041, - 1,0,0,0,1041,1043,1,0,0,0,1042,1036,1,0,0,0,1042,1043,1,0,0,0,1043, - 1251,1,0,0,0,1044,1045,5,254,0,0,1045,1052,5,43,0,0,1046,1047,5, - 155,0,0,1047,1050,3,186,93,0,1048,1049,5,91,0,0,1049,1051,3,186, - 93,0,1050,1048,1,0,0,0,1050,1051,1,0,0,0,1051,1053,1,0,0,0,1052, - 1046,1,0,0,0,1052,1053,1,0,0,0,1053,1251,1,0,0,0,1054,1055,5,254, - 0,0,1055,1056,5,46,0,0,1056,1057,7,2,0,0,1057,1064,3,272,136,0,1058, - 1059,5,155,0,0,1059,1062,3,186,93,0,1060,1061,5,91,0,0,1061,1063, - 3,186,93,0,1062,1060,1,0,0,0,1062,1063,1,0,0,0,1063,1065,1,0,0,0, - 1064,1058,1,0,0,0,1064,1065,1,0,0,0,1065,1251,1,0,0,0,1066,1067, - 5,254,0,0,1067,1068,5,257,0,0,1068,1069,5,104,0,0,1069,1251,3,272, - 136,0,1070,1071,5,254,0,0,1071,1072,5,257,0,0,1072,1073,5,104,0, - 0,1073,1074,5,1,0,0,1074,1075,3,18,9,0,1075,1076,5,2,0,0,1076,1251, - 1,0,0,0,1077,1079,5,254,0,0,1078,1080,5,57,0,0,1079,1078,1,0,0,0, - 1079,1080,1,0,0,0,1080,1081,1,0,0,0,1081,1084,5,237,0,0,1082,1083, - 7,2,0,0,1083,1085,3,286,143,0,1084,1082,1,0,0,0,1084,1085,1,0,0, - 0,1085,1251,1,0,0,0,1086,1087,5,254,0,0,1087,1088,5,236,0,0,1088, - 1091,5,113,0,0,1089,1090,7,2,0,0,1090,1092,3,286,143,0,1091,1089, - 1,0,0,0,1091,1092,1,0,0,0,1092,1251,1,0,0,0,1093,1094,5,77,0,0,1094, - 1251,3,272,136,0,1095,1096,5,76,0,0,1096,1251,3,272,136,0,1097,1098, - 5,254,0,0,1098,1101,5,109,0,0,1099,1100,7,2,0,0,1100,1102,3,282, - 141,0,1101,1099,1,0,0,0,1101,1102,1,0,0,0,1102,1109,1,0,0,0,1103, - 1104,5,155,0,0,1104,1107,3,186,93,0,1105,1106,5,91,0,0,1106,1108, - 3,186,93,0,1107,1105,1,0,0,0,1107,1108,1,0,0,0,1108,1110,1,0,0,0, - 1109,1103,1,0,0,0,1109,1110,1,0,0,0,1110,1251,1,0,0,0,1111,1112, - 5,254,0,0,1112,1119,5,251,0,0,1113,1114,5,155,0,0,1114,1117,3,186, - 93,0,1115,1116,5,91,0,0,1116,1118,3,186,93,0,1117,1115,1,0,0,0,1117, - 1118,1,0,0,0,1118,1120,1,0,0,0,1119,1113,1,0,0,0,1119,1120,1,0,0, - 0,1120,1251,1,0,0,0,1121,1122,5,252,0,0,1122,1123,5,251,0,0,1123, - 1124,5,31,0,0,1124,1251,3,318,159,0,1125,1126,5,228,0,0,1126,1127, - 5,251,0,0,1127,1251,5,31,0,0,1128,1129,5,252,0,0,1129,1130,5,251, - 0,0,1130,1131,3,300,150,0,1131,1132,5,313,0,0,1132,1133,3,154,77, - 0,1133,1251,1,0,0,0,1134,1135,5,228,0,0,1135,1136,5,251,0,0,1136, - 1251,3,300,150,0,1137,1138,5,256,0,0,1138,1147,5,272,0,0,1139,1144, - 3,232,116,0,1140,1141,5,3,0,0,1141,1143,3,232,116,0,1142,1140,1, - 0,0,0,1143,1146,1,0,0,0,1144,1142,1,0,0,0,1144,1145,1,0,0,0,1145, - 1148,1,0,0,0,1146,1144,1,0,0,0,1147,1139,1,0,0,0,1147,1148,1,0,0, - 0,1148,1251,1,0,0,0,1149,1151,5,48,0,0,1150,1152,5,308,0,0,1151, - 1150,1,0,0,0,1151,1152,1,0,0,0,1152,1251,1,0,0,0,1153,1155,5,238, - 0,0,1154,1156,5,308,0,0,1155,1154,1,0,0,0,1155,1156,1,0,0,0,1156, - 1251,1,0,0,0,1157,1158,5,215,0,0,1158,1159,3,314,157,0,1159,1160, - 5,106,0,0,1160,1161,3,16,8,0,1161,1251,1,0,0,0,1162,1163,5,69,0, - 0,1163,1164,5,215,0,0,1164,1251,3,314,157,0,1165,1166,5,94,0,0,1166, - 1176,3,314,157,0,1167,1168,5,291,0,0,1168,1173,3,154,77,0,1169,1170, - 5,3,0,0,1170,1172,3,154,77,0,1171,1169,1,0,0,0,1172,1175,1,0,0,0, - 1173,1171,1,0,0,0,1173,1174,1,0,0,0,1174,1177,1,0,0,0,1175,1173, - 1,0,0,0,1176,1167,1,0,0,0,1176,1177,1,0,0,0,1177,1251,1,0,0,0,1178, - 1179,5,94,0,0,1179,1180,5,122,0,0,1180,1190,3,186,93,0,1181,1182, - 5,291,0,0,1182,1187,3,154,77,0,1183,1184,5,3,0,0,1184,1186,3,154, - 77,0,1185,1183,1,0,0,0,1186,1189,1,0,0,0,1187,1185,1,0,0,0,1187, - 1188,1,0,0,0,1188,1191,1,0,0,0,1189,1187,1,0,0,0,1190,1181,1,0,0, - 0,1190,1191,1,0,0,0,1191,1251,1,0,0,0,1192,1193,5,77,0,0,1193,1194, - 5,127,0,0,1194,1251,3,314,157,0,1195,1196,5,77,0,0,1196,1197,5,199, - 0,0,1197,1251,3,314,157,0,1198,1199,5,252,0,0,1199,1200,5,206,0, - 0,1200,1251,3,240,120,0,1201,1202,5,252,0,0,1202,1203,5,268,0,0, - 1203,1206,5,312,0,0,1204,1207,5,158,0,0,1205,1207,3,154,77,0,1206, - 1204,1,0,0,0,1206,1205,1,0,0,0,1207,1251,1,0,0,0,1208,1209,5,288, - 0,0,1209,1210,3,274,137,0,1210,1211,5,252,0,0,1211,1216,3,228,114, - 0,1212,1213,5,3,0,0,1213,1215,3,228,114,0,1214,1212,1,0,0,0,1215, - 1218,1,0,0,0,1216,1214,1,0,0,0,1216,1217,1,0,0,0,1217,1220,1,0,0, - 0,1218,1216,1,0,0,0,1219,1221,3,54,27,0,1220,1219,1,0,0,0,1220,1221, - 1,0,0,0,1221,1251,1,0,0,0,1222,1223,5,170,0,0,1223,1224,5,131,0, - 0,1224,1229,3,274,137,0,1225,1227,5,28,0,0,1226,1225,1,0,0,0,1226, - 1227,1,0,0,0,1227,1228,1,0,0,0,1228,1230,3,314,157,0,1229,1226,1, - 0,0,0,1229,1230,1,0,0,0,1230,1231,1,0,0,0,1231,1232,5,291,0,0,1232, - 1233,3,88,44,0,1233,1234,5,191,0,0,1234,1236,3,154,77,0,1235,1237, - 3,212,106,0,1236,1235,1,0,0,0,1237,1238,1,0,0,0,1238,1236,1,0,0, - 0,1238,1239,1,0,0,0,1239,1251,1,0,0,0,1240,1241,5,254,0,0,1241,1242, - 5,47,0,0,1242,1243,5,191,0,0,1243,1244,5,261,0,0,1244,1251,3,274, - 137,0,1245,1246,5,254,0,0,1246,1247,5,47,0,0,1247,1248,5,191,0,0, - 1248,1249,5,45,0,0,1249,1251,3,294,147,0,1250,355,1,0,0,0,1250,356, - 1,0,0,0,1250,358,1,0,0,0,1250,380,1,0,0,0,1250,390,1,0,0,0,1250, - 406,1,0,0,0,1250,416,1,0,0,0,1250,423,1,0,0,0,1250,430,1,0,0,0,1250, - 468,1,0,0,0,1250,498,1,0,0,0,1250,505,1,0,0,0,1250,513,1,0,0,0,1250, - 519,1,0,0,0,1250,522,1,0,0,0,1250,531,1,0,0,0,1250,540,1,0,0,0,1250, - 549,1,0,0,0,1250,560,1,0,0,0,1250,576,1,0,0,0,1250,593,1,0,0,0,1250, - 608,1,0,0,0,1250,623,1,0,0,0,1250,637,1,0,0,0,1250,644,1,0,0,0,1250, - 651,1,0,0,0,1250,673,1,0,0,0,1250,679,1,0,0,0,1250,708,1,0,0,0,1250, - 730,1,0,0,0,1250,734,1,0,0,0,1250,742,1,0,0,0,1250,754,1,0,0,0,1250, - 762,1,0,0,0,1250,769,1,0,0,0,1250,776,1,0,0,0,1250,783,1,0,0,0,1250, - 798,1,0,0,0,1250,804,1,0,0,0,1250,811,1,0,0,0,1250,823,1,0,0,0,1250, - 830,1,0,0,0,1250,862,1,0,0,0,1250,884,1,0,0,0,1250,916,1,0,0,0,1250, - 939,1,0,0,0,1250,957,1,0,0,0,1250,968,1,0,0,0,1250,974,1,0,0,0,1250, - 989,1,0,0,0,1250,995,1,0,0,0,1250,999,1,0,0,0,1250,1003,1,0,0,0, - 1250,1007,1,0,0,0,1250,1012,1,0,0,0,1250,1016,1,0,0,0,1250,1030, - 1,0,0,0,1250,1044,1,0,0,0,1250,1054,1,0,0,0,1250,1066,1,0,0,0,1250, - 1070,1,0,0,0,1250,1077,1,0,0,0,1250,1086,1,0,0,0,1250,1093,1,0,0, - 0,1250,1095,1,0,0,0,1250,1097,1,0,0,0,1250,1111,1,0,0,0,1250,1121, - 1,0,0,0,1250,1125,1,0,0,0,1250,1128,1,0,0,0,1250,1134,1,0,0,0,1250, - 1137,1,0,0,0,1250,1149,1,0,0,0,1250,1153,1,0,0,0,1250,1157,1,0,0, - 0,1250,1162,1,0,0,0,1250,1165,1,0,0,0,1250,1178,1,0,0,0,1250,1192, - 1,0,0,0,1250,1195,1,0,0,0,1250,1198,1,0,0,0,1250,1201,1,0,0,0,1250, - 1208,1,0,0,0,1250,1222,1,0,0,0,1250,1240,1,0,0,0,1250,1245,1,0,0, - 0,1251,17,1,0,0,0,1252,1254,3,20,10,0,1253,1252,1,0,0,0,1253,1254, - 1,0,0,0,1254,1255,1,0,0,0,1255,1256,3,22,11,0,1256,19,1,0,0,0,1257, - 1258,5,305,0,0,1258,1263,3,242,121,0,1259,1260,5,3,0,0,1260,1262, - 3,242,121,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,21,1,0,0,0,1265,1263,1,0,0,0,1266,1268, - 3,24,12,0,1267,1266,1,0,0,0,1267,1268,1,0,0,0,1268,1269,1,0,0,0, - 1269,1270,3,40,20,0,1270,23,1,0,0,0,1271,1273,5,305,0,0,1272,1274, - 5,222,0,0,1273,1272,1,0,0,0,1273,1274,1,0,0,0,1274,1275,1,0,0,0, - 1275,1280,3,74,37,0,1276,1277,5,3,0,0,1277,1279,3,74,37,0,1278,1276, - 1,0,0,0,1279,1282,1,0,0,0,1280,1278,1,0,0,0,1280,1281,1,0,0,0,1281, - 25,1,0,0,0,1282,1280,1,0,0,0,1283,1286,3,28,14,0,1284,1286,3,30, - 15,0,1285,1283,1,0,0,0,1285,1284,1,0,0,0,1286,27,1,0,0,0,1287,1288, - 3,298,149,0,1288,1291,3,202,101,0,1289,1290,5,183,0,0,1290,1292, - 5,184,0,0,1291,1289,1,0,0,0,1291,1292,1,0,0,0,1292,1295,1,0,0,0, - 1293,1294,5,47,0,0,1294,1296,3,186,93,0,1295,1293,1,0,0,0,1295,1296, - 1,0,0,0,1296,1299,1,0,0,0,1297,1298,5,305,0,0,1298,1300,3,32,16, - 0,1299,1297,1,0,0,0,1299,1300,1,0,0,0,1300,29,1,0,0,0,1301,1302, - 5,155,0,0,1302,1305,3,274,137,0,1303,1304,7,3,0,0,1304,1306,5,217, - 0,0,1305,1303,1,0,0,0,1305,1306,1,0,0,0,1306,31,1,0,0,0,1307,1308, - 5,1,0,0,1308,1309,3,34,17,0,1309,1310,5,2,0,0,1310,33,1,0,0,0,1311, - 1316,3,36,18,0,1312,1313,5,3,0,0,1313,1315,3,36,18,0,1314,1312,1, - 0,0,0,1315,1318,1,0,0,0,1316,1314,1,0,0,0,1316,1317,1,0,0,0,1317, - 35,1,0,0,0,1318,1316,1,0,0,0,1319,1320,3,314,157,0,1320,1321,5,313, - 0,0,1321,1322,3,38,19,0,1322,37,1,0,0,0,1323,1326,5,71,0,0,1324, - 1326,3,154,77,0,1325,1323,1,0,0,0,1325,1324,1,0,0,0,1326,39,1,0, - 0,0,1327,1338,3,46,23,0,1328,1329,5,196,0,0,1329,1330,5,36,0,0,1330, - 1335,3,50,25,0,1331,1332,5,3,0,0,1332,1334,3,50,25,0,1333,1331,1, - 0,0,0,1334,1337,1,0,0,0,1335,1333,1,0,0,0,1335,1336,1,0,0,0,1336, - 1339,1,0,0,0,1337,1335,1,0,0,0,1338,1328,1,0,0,0,1338,1339,1,0,0, - 0,1339,1345,1,0,0,0,1340,1341,5,189,0,0,1341,1343,3,44,22,0,1342, - 1344,7,4,0,0,1343,1342,1,0,0,0,1343,1344,1,0,0,0,1344,1346,1,0,0, - 0,1345,1340,1,0,0,0,1345,1346,1,0,0,0,1346,1360,1,0,0,0,1347,1348, - 5,156,0,0,1348,1361,3,42,21,0,1349,1350,5,99,0,0,1350,1352,7,5,0, - 0,1351,1353,3,44,22,0,1352,1351,1,0,0,0,1352,1353,1,0,0,0,1353,1354, - 1,0,0,0,1354,1358,7,4,0,0,1355,1359,5,193,0,0,1356,1357,5,305,0, - 0,1357,1359,5,267,0,0,1358,1355,1,0,0,0,1358,1356,1,0,0,0,1359,1361, - 1,0,0,0,1360,1347,1,0,0,0,1360,1349,1,0,0,0,1360,1361,1,0,0,0,1361, - 41,1,0,0,0,1362,1365,5,22,0,0,1363,1365,3,44,22,0,1364,1362,1,0, - 0,0,1364,1363,1,0,0,0,1365,43,1,0,0,0,1366,1367,7,6,0,0,1367,45, - 1,0,0,0,1368,1369,6,23,-1,0,1369,1370,3,48,24,0,1370,1385,1,0,0, - 0,1371,1372,10,2,0,0,1372,1374,5,129,0,0,1373,1375,3,76,38,0,1374, - 1373,1,0,0,0,1374,1375,1,0,0,0,1375,1376,1,0,0,0,1376,1384,3,46, - 23,3,1377,1378,10,1,0,0,1378,1380,7,7,0,0,1379,1381,3,76,38,0,1380, - 1379,1,0,0,0,1380,1381,1,0,0,0,1381,1382,1,0,0,0,1382,1384,3,46, - 23,2,1383,1371,1,0,0,0,1383,1377,1,0,0,0,1384,1387,1,0,0,0,1385, - 1383,1,0,0,0,1385,1386,1,0,0,0,1386,47,1,0,0,0,1387,1385,1,0,0,0, - 1388,1405,3,52,26,0,1389,1390,5,261,0,0,1390,1405,3,274,137,0,1391, - 1392,5,297,0,0,1392,1397,3,154,77,0,1393,1394,5,3,0,0,1394,1396, - 3,154,77,0,1395,1393,1,0,0,0,1396,1399,1,0,0,0,1397,1395,1,0,0,0, - 1397,1398,1,0,0,0,1398,1405,1,0,0,0,1399,1397,1,0,0,0,1400,1401, - 5,1,0,0,1401,1402,3,40,20,0,1402,1403,5,2,0,0,1403,1405,1,0,0,0, - 1404,1388,1,0,0,0,1404,1389,1,0,0,0,1404,1391,1,0,0,0,1404,1400, - 1,0,0,0,1405,49,1,0,0,0,1406,1409,3,294,147,0,1407,1409,3,154,77, - 0,1408,1406,1,0,0,0,1408,1407,1,0,0,0,1409,1411,1,0,0,0,1410,1412, - 7,8,0,0,1411,1410,1,0,0,0,1411,1412,1,0,0,0,1412,1415,1,0,0,0,1413, - 1414,5,186,0,0,1414,1416,7,9,0,0,1415,1413,1,0,0,0,1415,1416,1,0, - 0,0,1416,51,1,0,0,0,1417,1419,5,249,0,0,1418,1420,3,76,38,0,1419, - 1418,1,0,0,0,1419,1420,1,0,0,0,1420,1421,1,0,0,0,1421,1431,3,58, - 29,0,1422,1423,5,106,0,0,1423,1428,3,88,44,0,1424,1425,5,3,0,0,1425, - 1427,3,88,44,0,1426,1424,1,0,0,0,1427,1430,1,0,0,0,1428,1426,1,0, - 0,0,1428,1429,1,0,0,0,1429,1432,1,0,0,0,1430,1428,1,0,0,0,1431,1422, - 1,0,0,0,1431,1432,1,0,0,0,1432,1434,1,0,0,0,1433,1435,3,54,27,0, - 1434,1433,1,0,0,0,1434,1435,1,0,0,0,1435,1439,1,0,0,0,1436,1437, - 5,115,0,0,1437,1438,5,36,0,0,1438,1440,3,60,30,0,1439,1436,1,0,0, - 0,1439,1440,1,0,0,0,1440,1442,1,0,0,0,1441,1443,3,56,28,0,1442,1441, - 1,0,0,0,1442,1443,1,0,0,0,1443,1453,1,0,0,0,1444,1445,5,304,0,0, - 1445,1450,3,70,35,0,1446,1447,5,3,0,0,1447,1449,3,70,35,0,1448,1446, - 1,0,0,0,1449,1452,1,0,0,0,1450,1448,1,0,0,0,1450,1451,1,0,0,0,1451, - 1454,1,0,0,0,1452,1450,1,0,0,0,1453,1444,1,0,0,0,1453,1454,1,0,0, - 0,1454,53,1,0,0,0,1455,1456,5,302,0,0,1456,1457,3,156,78,0,1457, - 55,1,0,0,0,1458,1459,5,118,0,0,1459,1460,3,156,78,0,1460,57,1,0, - 0,0,1461,1466,3,78,39,0,1462,1463,5,3,0,0,1463,1465,3,78,39,0,1464, - 1462,1,0,0,0,1465,1468,1,0,0,0,1466,1464,1,0,0,0,1466,1467,1,0,0, - 0,1467,59,1,0,0,0,1468,1466,1,0,0,0,1469,1471,3,76,38,0,1470,1469, - 1,0,0,0,1470,1471,1,0,0,0,1471,1472,1,0,0,0,1472,1477,3,64,32,0, - 1473,1474,5,3,0,0,1474,1476,3,64,32,0,1475,1473,1,0,0,0,1476,1479, - 1,0,0,0,1477,1475,1,0,0,0,1477,1478,1,0,0,0,1478,61,1,0,0,0,1479, - 1477,1,0,0,0,1480,1485,3,154,77,0,1481,1482,5,3,0,0,1482,1484,3, - 154,77,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,63,1,0,0,0,1487,1485,1,0,0,0,1488,1529,3,66,33, - 0,1489,1490,5,239,0,0,1490,1499,5,1,0,0,1491,1496,3,66,33,0,1492, - 1493,5,3,0,0,1493,1495,3,66,33,0,1494,1492,1,0,0,0,1495,1498,1,0, - 0,0,1496,1494,1,0,0,0,1496,1497,1,0,0,0,1497,1500,1,0,0,0,1498,1496, - 1,0,0,0,1499,1491,1,0,0,0,1499,1500,1,0,0,0,1500,1501,1,0,0,0,1501, - 1529,5,2,0,0,1502,1503,5,56,0,0,1503,1512,5,1,0,0,1504,1509,3,66, - 33,0,1505,1506,5,3,0,0,1506,1508,3,66,33,0,1507,1505,1,0,0,0,1508, - 1511,1,0,0,0,1509,1507,1,0,0,0,1509,1510,1,0,0,0,1510,1513,1,0,0, - 0,1511,1509,1,0,0,0,1512,1504,1,0,0,0,1512,1513,1,0,0,0,1513,1514, - 1,0,0,0,1514,1529,5,2,0,0,1515,1516,5,116,0,0,1516,1517,5,253,0, - 0,1517,1518,5,1,0,0,1518,1523,3,66,33,0,1519,1520,5,3,0,0,1520,1522, - 3,66,33,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,2,0,0,1527,1529,1,0,0,0,1528,1488,1,0,0,0,1528,1489,1,0,0,0,1528, - 1502,1,0,0,0,1528,1515,1,0,0,0,1529,65,1,0,0,0,1530,1539,5,1,0,0, - 1531,1536,3,68,34,0,1532,1533,5,3,0,0,1533,1535,3,68,34,0,1534,1532, - 1,0,0,0,1535,1538,1,0,0,0,1536,1534,1,0,0,0,1536,1537,1,0,0,0,1537, - 1540,1,0,0,0,1538,1536,1,0,0,0,1539,1531,1,0,0,0,1539,1540,1,0,0, - 0,1540,1541,1,0,0,0,1541,1544,5,2,0,0,1542,1544,3,68,34,0,1543,1530, - 1,0,0,0,1543,1542,1,0,0,0,1544,67,1,0,0,0,1545,1548,3,294,147,0, - 1546,1548,3,154,77,0,1547,1545,1,0,0,0,1547,1546,1,0,0,0,1548,69, - 1,0,0,0,1549,1550,3,314,157,0,1550,1551,5,28,0,0,1551,1552,5,1,0, - 0,1552,1553,3,72,36,0,1553,1554,5,2,0,0,1554,71,1,0,0,0,1555,1557, - 3,314,157,0,1556,1555,1,0,0,0,1556,1557,1,0,0,0,1557,1561,1,0,0, - 0,1558,1559,5,202,0,0,1559,1560,5,36,0,0,1560,1562,3,62,31,0,1561, - 1558,1,0,0,0,1561,1562,1,0,0,0,1562,1573,1,0,0,0,1563,1564,5,196, - 0,0,1564,1565,5,36,0,0,1565,1570,3,50,25,0,1566,1567,5,3,0,0,1567, - 1569,3,50,25,0,1568,1566,1,0,0,0,1569,1572,1,0,0,0,1570,1568,1,0, - 0,0,1570,1571,1,0,0,0,1571,1574,1,0,0,0,1572,1570,1,0,0,0,1573,1563, - 1,0,0,0,1573,1574,1,0,0,0,1574,1576,1,0,0,0,1575,1577,3,216,108, - 0,1576,1575,1,0,0,0,1576,1577,1,0,0,0,1577,73,1,0,0,0,1578,1580, - 3,314,157,0,1579,1581,3,124,62,0,1580,1579,1,0,0,0,1580,1581,1,0, - 0,0,1581,1582,1,0,0,0,1582,1583,5,28,0,0,1583,1584,5,1,0,0,1584, - 1585,3,22,11,0,1585,1586,5,2,0,0,1586,75,1,0,0,0,1587,1588,7,10, - 0,0,1588,77,1,0,0,0,1589,1592,3,84,42,0,1590,1592,3,86,43,0,1591, - 1589,1,0,0,0,1591,1590,1,0,0,0,1592,1597,1,0,0,0,1593,1595,5,28, - 0,0,1594,1593,1,0,0,0,1594,1595,1,0,0,0,1595,1596,1,0,0,0,1596,1598, - 3,314,157,0,1597,1594,1,0,0,0,1597,1598,1,0,0,0,1598,1606,1,0,0, - 0,1599,1602,3,82,41,0,1600,1601,5,28,0,0,1601,1603,3,124,62,0,1602, - 1600,1,0,0,0,1602,1603,1,0,0,0,1603,1606,1,0,0,0,1604,1606,3,80, - 40,0,1605,1591,1,0,0,0,1605,1599,1,0,0,0,1605,1604,1,0,0,0,1606, - 79,1,0,0,0,1607,1608,5,321,0,0,1608,81,1,0,0,0,1609,1610,3,162,81, - 0,1610,1611,5,4,0,0,1611,1612,5,321,0,0,1612,83,1,0,0,0,1613,1614, - 3,294,147,0,1614,85,1,0,0,0,1615,1616,3,154,77,0,1616,87,1,0,0,0, - 1617,1618,6,44,-1,0,1618,1619,3,94,47,0,1619,1638,1,0,0,0,1620,1634, - 10,2,0,0,1621,1622,5,55,0,0,1622,1623,5,137,0,0,1623,1635,3,94,47, - 0,1624,1625,3,90,45,0,1625,1626,5,137,0,0,1626,1627,3,88,44,0,1627, - 1628,3,92,46,0,1628,1635,1,0,0,0,1629,1630,5,173,0,0,1630,1631,3, - 90,45,0,1631,1632,5,137,0,0,1632,1633,3,94,47,0,1633,1635,1,0,0, - 0,1634,1621,1,0,0,0,1634,1624,1,0,0,0,1634,1629,1,0,0,0,1635,1637, - 1,0,0,0,1636,1620,1,0,0,0,1637,1640,1,0,0,0,1638,1636,1,0,0,0,1638, - 1639,1,0,0,0,1639,89,1,0,0,0,1640,1638,1,0,0,0,1641,1643,5,126,0, - 0,1642,1641,1,0,0,0,1642,1643,1,0,0,0,1643,1657,1,0,0,0,1644,1646, - 5,153,0,0,1645,1647,5,198,0,0,1646,1645,1,0,0,0,1646,1647,1,0,0, - 0,1647,1657,1,0,0,0,1648,1650,5,235,0,0,1649,1651,5,198,0,0,1650, - 1649,1,0,0,0,1650,1651,1,0,0,0,1651,1657,1,0,0,0,1652,1654,5,107, - 0,0,1653,1655,5,198,0,0,1654,1653,1,0,0,0,1654,1655,1,0,0,0,1655, - 1657,1,0,0,0,1656,1642,1,0,0,0,1656,1644,1,0,0,0,1656,1648,1,0,0, - 0,1656,1652,1,0,0,0,1657,91,1,0,0,0,1658,1659,5,191,0,0,1659,1673, - 3,156,78,0,1660,1661,5,291,0,0,1661,1662,5,1,0,0,1662,1667,3,314, - 157,0,1663,1664,5,3,0,0,1664,1666,3,314,157,0,1665,1663,1,0,0,0, - 1666,1669,1,0,0,0,1667,1665,1,0,0,0,1667,1668,1,0,0,0,1668,1670, - 1,0,0,0,1669,1667,1,0,0,0,1670,1671,5,2,0,0,1671,1673,1,0,0,0,1672, - 1658,1,0,0,0,1672,1660,1,0,0,0,1673,93,1,0,0,0,1674,1681,3,104,52, - 0,1675,1676,5,263,0,0,1676,1677,3,96,48,0,1677,1678,5,1,0,0,1678, - 1679,3,154,77,0,1679,1680,5,2,0,0,1680,1682,1,0,0,0,1681,1675,1, - 0,0,0,1681,1682,1,0,0,0,1682,95,1,0,0,0,1683,1684,7,11,0,0,1684, - 97,1,0,0,0,1685,1686,7,12,0,0,1686,99,1,0,0,0,1687,1694,5,90,0,0, - 1688,1690,5,275,0,0,1689,1691,3,186,93,0,1690,1689,1,0,0,0,1690, - 1691,1,0,0,0,1691,1692,1,0,0,0,1692,1694,3,102,51,0,1693,1687,1, - 0,0,0,1693,1688,1,0,0,0,1694,101,1,0,0,0,1695,1696,5,305,0,0,1696, - 1700,5,52,0,0,1697,1698,5,307,0,0,1698,1700,5,52,0,0,1699,1695,1, - 0,0,0,1699,1697,1,0,0,0,1700,103,1,0,0,0,1701,1777,3,118,59,0,1702, - 1703,5,167,0,0,1703,1707,5,1,0,0,1704,1705,5,202,0,0,1705,1706,5, - 36,0,0,1706,1708,3,62,31,0,1707,1704,1,0,0,0,1707,1708,1,0,0,0,1708, - 1719,1,0,0,0,1709,1710,5,196,0,0,1710,1711,5,36,0,0,1711,1716,3, - 50,25,0,1712,1713,5,3,0,0,1713,1715,3,50,25,0,1714,1712,1,0,0,0, - 1715,1718,1,0,0,0,1716,1714,1,0,0,0,1716,1717,1,0,0,0,1717,1720, - 1,0,0,0,1718,1716,1,0,0,0,1719,1709,1,0,0,0,1719,1720,1,0,0,0,1720, - 1730,1,0,0,0,1721,1722,5,169,0,0,1722,1727,3,106,53,0,1723,1724, - 5,3,0,0,1724,1726,3,106,53,0,1725,1723,1,0,0,0,1726,1729,1,0,0,0, - 1727,1725,1,0,0,0,1727,1728,1,0,0,0,1728,1731,1,0,0,0,1729,1727, - 1,0,0,0,1730,1721,1,0,0,0,1730,1731,1,0,0,0,1731,1733,1,0,0,0,1732, - 1734,3,108,54,0,1733,1732,1,0,0,0,1733,1734,1,0,0,0,1734,1738,1, - 0,0,0,1735,1736,5,21,0,0,1736,1737,5,164,0,0,1737,1739,3,112,56, - 0,1738,1735,1,0,0,0,1738,1739,1,0,0,0,1739,1741,1,0,0,0,1740,1742, - 7,13,0,0,1741,1740,1,0,0,0,1741,1742,1,0,0,0,1742,1743,1,0,0,0,1743, - 1744,5,207,0,0,1744,1745,5,1,0,0,1745,1746,3,222,111,0,1746,1756, - 5,2,0,0,1747,1748,5,258,0,0,1748,1753,3,114,57,0,1749,1750,5,3,0, - 0,1750,1752,3,114,57,0,1751,1749,1,0,0,0,1752,1755,1,0,0,0,1753, - 1751,1,0,0,0,1753,1754,1,0,0,0,1754,1757,1,0,0,0,1755,1753,1,0,0, - 0,1756,1747,1,0,0,0,1756,1757,1,0,0,0,1757,1758,1,0,0,0,1758,1759, - 5,72,0,0,1759,1764,3,116,58,0,1760,1761,5,3,0,0,1761,1763,3,116, - 58,0,1762,1760,1,0,0,0,1763,1766,1,0,0,0,1764,1762,1,0,0,0,1764, - 1765,1,0,0,0,1765,1767,1,0,0,0,1766,1764,1,0,0,0,1767,1775,5,2,0, - 0,1768,1770,5,28,0,0,1769,1768,1,0,0,0,1769,1770,1,0,0,0,1770,1771, - 1,0,0,0,1771,1773,3,314,157,0,1772,1774,3,124,62,0,1773,1772,1,0, - 0,0,1773,1774,1,0,0,0,1774,1776,1,0,0,0,1775,1769,1,0,0,0,1775,1776, - 1,0,0,0,1776,1778,1,0,0,0,1777,1702,1,0,0,0,1777,1778,1,0,0,0,1778, - 105,1,0,0,0,1779,1780,3,154,77,0,1780,1781,5,28,0,0,1781,1782,3, - 314,157,0,1782,107,1,0,0,0,1783,1784,5,192,0,0,1784,1785,5,240,0, - 0,1785,1786,5,208,0,0,1786,1795,5,164,0,0,1787,1788,5,22,0,0,1788, - 1789,5,241,0,0,1789,1790,5,208,0,0,1790,1792,5,164,0,0,1791,1793, - 3,110,55,0,1792,1791,1,0,0,0,1792,1793,1,0,0,0,1793,1795,1,0,0,0, - 1794,1783,1,0,0,0,1794,1787,1,0,0,0,1795,109,1,0,0,0,1796,1797,5, - 254,0,0,1797,1798,5,86,0,0,1798,1806,5,166,0,0,1799,1800,5,190,0, - 0,1800,1801,5,86,0,0,1801,1806,5,166,0,0,1802,1803,5,305,0,0,1803, - 1804,5,285,0,0,1804,1806,5,241,0,0,1805,1796,1,0,0,0,1805,1799,1, - 0,0,0,1805,1802,1,0,0,0,1806,111,1,0,0,0,1807,1808,5,5,0,0,1808, - 1809,5,270,0,0,1809,1810,5,175,0,0,1810,1827,5,240,0,0,1811,1812, - 5,5,0,0,1812,1813,5,205,0,0,1813,1814,5,149,0,0,1814,1827,5,240, - 0,0,1815,1816,5,5,0,0,1816,1817,5,270,0,0,1817,1818,5,102,0,0,1818, - 1827,3,314,157,0,1819,1820,5,5,0,0,1820,1821,5,270,0,0,1821,1822, - 5,149,0,0,1822,1827,3,314,157,0,1823,1824,5,5,0,0,1824,1825,5,270, - 0,0,1825,1827,3,314,157,0,1826,1807,1,0,0,0,1826,1811,1,0,0,0,1826, - 1815,1,0,0,0,1826,1819,1,0,0,0,1826,1823,1,0,0,0,1827,113,1,0,0, - 0,1828,1829,3,314,157,0,1829,1830,5,313,0,0,1830,1831,5,1,0,0,1831, - 1836,3,314,157,0,1832,1833,5,3,0,0,1833,1835,3,314,157,0,1834,1832, - 1,0,0,0,1835,1838,1,0,0,0,1836,1834,1,0,0,0,1836,1837,1,0,0,0,1837, - 1839,1,0,0,0,1838,1836,1,0,0,0,1839,1840,5,2,0,0,1840,115,1,0,0, - 0,1841,1842,3,314,157,0,1842,1843,5,28,0,0,1843,1844,3,154,77,0, - 1844,117,1,0,0,0,1845,1853,3,126,63,0,1846,1848,5,28,0,0,1847,1846, - 1,0,0,0,1847,1848,1,0,0,0,1848,1849,1,0,0,0,1849,1851,3,314,157, - 0,1850,1852,3,124,62,0,1851,1850,1,0,0,0,1851,1852,1,0,0,0,1852, - 1854,1,0,0,0,1853,1847,1,0,0,0,1853,1854,1,0,0,0,1854,119,1,0,0, - 0,1855,1856,5,1,0,0,1856,1861,3,298,149,0,1857,1858,5,3,0,0,1858, - 1860,3,298,149,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,2,0,0,1865,121,1,0,0,0,1866,1867,5,1,0,0,1867,1872,3,294, - 147,0,1868,1869,5,3,0,0,1869,1871,3,294,147,0,1870,1868,1,0,0,0, - 1871,1874,1,0,0,0,1872,1870,1,0,0,0,1872,1873,1,0,0,0,1873,1875, - 1,0,0,0,1874,1872,1,0,0,0,1875,1876,5,2,0,0,1876,123,1,0,0,0,1877, - 1878,5,1,0,0,1878,1883,3,314,157,0,1879,1880,5,3,0,0,1880,1882,3, - 314,157,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,2,0,0,1887,125,1,0,0,0,1888,1890,3,272,136,0,1889,1891,3,302,151, - 0,1890,1889,1,0,0,0,1890,1891,1,0,0,0,1891,1898,1,0,0,0,1892,1898, - 3,128,64,0,1893,1894,5,1,0,0,1894,1895,3,88,44,0,1895,1896,5,2,0, - 0,1896,1898,1,0,0,0,1897,1888,1,0,0,0,1897,1892,1,0,0,0,1897,1893, - 1,0,0,0,1898,127,1,0,0,0,1899,1900,5,1,0,0,1900,1901,3,22,11,0,1901, - 1902,5,2,0,0,1902,1963,1,0,0,0,1903,1904,5,286,0,0,1904,1905,5,1, - 0,0,1905,1910,3,154,77,0,1906,1907,5,3,0,0,1907,1909,3,154,77,0, - 1908,1906,1,0,0,0,1909,1912,1,0,0,0,1910,1908,1,0,0,0,1910,1911, - 1,0,0,0,1911,1913,1,0,0,0,1912,1910,1,0,0,0,1913,1916,5,2,0,0,1914, - 1915,5,305,0,0,1915,1917,5,197,0,0,1916,1914,1,0,0,0,1916,1917,1, - 0,0,0,1917,1963,1,0,0,0,1918,1919,5,150,0,0,1919,1920,5,1,0,0,1920, - 1921,3,22,11,0,1921,1922,5,2,0,0,1922,1963,1,0,0,0,1923,1924,5,261, - 0,0,1924,1925,5,1,0,0,1925,1926,3,140,70,0,1926,1927,5,2,0,0,1927, - 1963,1,0,0,0,1928,1929,5,143,0,0,1929,1930,5,1,0,0,1930,1931,3,164, - 82,0,1931,1932,5,46,0,0,1932,1933,5,1,0,0,1933,1938,3,130,65,0,1934, - 1935,5,3,0,0,1935,1937,3,130,65,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,1953,5,2,0,0,1942,1943,5,211,0,0,1943,1944,5,1, - 0,0,1944,1945,3,132,66,0,1945,1946,5,2,0,0,1946,1954,1,0,0,0,1947, - 1948,5,211,0,0,1948,1949,5,71,0,0,1949,1950,5,1,0,0,1950,1951,3, - 138,69,0,1951,1952,5,2,0,0,1952,1954,1,0,0,0,1953,1942,1,0,0,0,1953, - 1947,1,0,0,0,1953,1954,1,0,0,0,1954,1958,1,0,0,0,1955,1956,7,14, - 0,0,1956,1957,5,191,0,0,1957,1959,5,90,0,0,1958,1955,1,0,0,0,1958, - 1959,1,0,0,0,1959,1960,1,0,0,0,1960,1961,5,2,0,0,1961,1963,1,0,0, - 0,1962,1899,1,0,0,0,1962,1903,1,0,0,0,1962,1918,1,0,0,0,1962,1923, - 1,0,0,0,1962,1928,1,0,0,0,1963,129,1,0,0,0,1964,1965,3,314,157,0, - 1965,1966,5,104,0,0,1966,1967,5,197,0,0,1967,2042,1,0,0,0,1968,1969, - 3,314,157,0,1969,1972,3,202,101,0,1970,1971,5,206,0,0,1971,1973, - 3,186,93,0,1972,1970,1,0,0,0,1972,1973,1,0,0,0,1973,1978,1,0,0,0, - 1974,1975,3,174,87,0,1975,1976,5,191,0,0,1976,1977,5,86,0,0,1977, - 1979,1,0,0,0,1978,1974,1,0,0,0,1978,1979,1,0,0,0,1979,1984,1,0,0, - 0,1980,1981,3,174,87,0,1981,1982,5,191,0,0,1982,1983,5,90,0,0,1983, - 1985,1,0,0,0,1984,1980,1,0,0,0,1984,1985,1,0,0,0,1985,2042,1,0,0, - 0,1986,1987,3,314,157,0,1987,1988,3,202,101,0,1988,1989,5,105,0, - 0,1989,1992,3,168,84,0,1990,1991,5,206,0,0,1991,1993,3,186,93,0, - 1992,1990,1,0,0,0,1992,1993,1,0,0,0,1993,1997,1,0,0,0,1994,1995, - 3,176,88,0,1995,1996,5,309,0,0,1996,1998,1,0,0,0,1997,1994,1,0,0, - 0,1997,1998,1,0,0,0,1998,2006,1,0,0,0,1999,2000,7,15,0,0,2000,2004, - 5,219,0,0,2001,2002,5,191,0,0,2002,2003,5,243,0,0,2003,2005,5,265, - 0,0,2004,2001,1,0,0,0,2004,2005,1,0,0,0,2005,2007,1,0,0,0,2006,1999, - 1,0,0,0,2006,2007,1,0,0,0,2007,2012,1,0,0,0,2008,2009,3,178,89,0, - 2009,2010,5,191,0,0,2010,2011,5,86,0,0,2011,2013,1,0,0,0,2012,2008, - 1,0,0,0,2012,2013,1,0,0,0,2013,2018,1,0,0,0,2014,2015,3,178,89,0, - 2015,2016,5,191,0,0,2016,2017,5,90,0,0,2017,2019,1,0,0,0,2018,2014, - 1,0,0,0,2018,2019,1,0,0,0,2019,2042,1,0,0,0,2020,2022,5,174,0,0, - 2021,2023,5,206,0,0,2022,2021,1,0,0,0,2022,2023,1,0,0,0,2023,2024, - 1,0,0,0,2024,2027,3,186,93,0,2025,2026,5,28,0,0,2026,2028,3,314, - 157,0,2027,2025,1,0,0,0,2027,2028,1,0,0,0,2028,2029,1,0,0,0,2029, - 2030,5,46,0,0,2030,2031,5,1,0,0,2031,2036,3,130,65,0,2032,2033,5, - 3,0,0,2033,2035,3,130,65,0,2034,2032,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,2040,5,2,0,0,2040,2042,1,0,0,0,2041,1964,1,0,0,0,2041,1968, - 1,0,0,0,2041,1986,1,0,0,0,2041,2020,1,0,0,0,2042,131,1,0,0,0,2043, - 2069,3,134,67,0,2044,2045,3,134,67,0,2045,2046,7,16,0,0,2046,2047, - 3,136,68,0,2047,2069,1,0,0,0,2048,2049,3,136,68,0,2049,2050,5,282, - 0,0,2050,2055,3,136,68,0,2051,2052,5,282,0,0,2052,2054,3,136,68, - 0,2053,2051,1,0,0,0,2054,2057,1,0,0,0,2055,2053,1,0,0,0,2055,2056, - 1,0,0,0,2056,2069,1,0,0,0,2057,2055,1,0,0,0,2058,2059,3,136,68,0, - 2059,2060,5,55,0,0,2060,2065,3,136,68,0,2061,2062,5,55,0,0,2062, - 2064,3,136,68,0,2063,2061,1,0,0,0,2064,2067,1,0,0,0,2065,2063,1, - 0,0,0,2065,2066,1,0,0,0,2066,2069,1,0,0,0,2067,2065,1,0,0,0,2068, - 2043,1,0,0,0,2068,2044,1,0,0,0,2068,2048,1,0,0,0,2068,2058,1,0,0, - 0,2069,133,1,0,0,0,2070,2071,3,314,157,0,2071,135,1,0,0,0,2072,2078, - 3,134,67,0,2073,2074,5,1,0,0,2074,2075,3,132,66,0,2075,2076,5,2, - 0,0,2076,2078,1,0,0,0,2077,2072,1,0,0,0,2077,2073,1,0,0,0,2078,137, - 1,0,0,0,2079,2082,7,16,0,0,2080,2081,5,3,0,0,2081,2083,7,17,0,0, - 2082,2080,1,0,0,0,2082,2083,1,0,0,0,2083,2090,1,0,0,0,2084,2087, - 7,17,0,0,2085,2086,5,3,0,0,2086,2088,7,16,0,0,2087,2085,1,0,0,0, - 2087,2088,1,0,0,0,2088,2090,1,0,0,0,2089,2079,1,0,0,0,2089,2084, - 1,0,0,0,2090,139,1,0,0,0,2091,2092,3,290,145,0,2092,2101,5,1,0,0, - 2093,2098,3,142,71,0,2094,2095,5,3,0,0,2095,2097,3,142,71,0,2096, - 2094,1,0,0,0,2097,2100,1,0,0,0,2098,2096,1,0,0,0,2098,2099,1,0,0, - 0,2099,2102,1,0,0,0,2100,2098,1,0,0,0,2101,2093,1,0,0,0,2101,2102, - 1,0,0,0,2102,2112,1,0,0,0,2103,2104,5,53,0,0,2104,2109,3,152,76, - 0,2105,2106,5,3,0,0,2106,2108,3,152,76,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,2113,1,0,0, - 0,2111,2109,1,0,0,0,2112,2103,1,0,0,0,2112,2113,1,0,0,0,2113,2114, - 1,0,0,0,2114,2115,5,2,0,0,2115,141,1,0,0,0,2116,2117,3,314,157,0, - 2117,2118,5,6,0,0,2118,2120,1,0,0,0,2119,2116,1,0,0,0,2119,2120, - 1,0,0,0,2120,2124,1,0,0,0,2121,2125,3,144,72,0,2122,2125,3,148,74, - 0,2123,2125,3,154,77,0,2124,2121,1,0,0,0,2124,2122,1,0,0,0,2124, - 2123,1,0,0,0,2125,143,1,0,0,0,2126,2137,3,146,73,0,2127,2128,5,202, - 0,0,2128,2135,5,36,0,0,2129,2131,5,1,0,0,2130,2132,3,62,31,0,2131, - 2130,1,0,0,0,2131,2132,1,0,0,0,2132,2133,1,0,0,0,2133,2136,5,2,0, - 0,2134,2136,3,154,77,0,2135,2129,1,0,0,0,2135,2134,1,0,0,0,2136, - 2138,1,0,0,0,2137,2127,1,0,0,0,2137,2138,1,0,0,0,2138,2145,1,0,0, - 0,2139,2140,5,218,0,0,2140,2141,5,301,0,0,2141,2146,5,86,0,0,2142, - 2143,5,145,0,0,2143,2144,5,301,0,0,2144,2146,5,86,0,0,2145,2139, - 1,0,0,0,2145,2142,1,0,0,0,2145,2146,1,0,0,0,2146,2163,1,0,0,0,2147, - 2148,5,196,0,0,2148,2161,5,36,0,0,2149,2150,5,1,0,0,2150,2155,3, - 50,25,0,2151,2152,5,3,0,0,2152,2154,3,50,25,0,2153,2151,1,0,0,0, - 2154,2157,1,0,0,0,2155,2153,1,0,0,0,2155,2156,1,0,0,0,2156,2158, - 1,0,0,0,2157,2155,1,0,0,0,2158,2159,5,2,0,0,2159,2162,1,0,0,0,2160, - 2162,3,50,25,0,2161,2149,1,0,0,0,2161,2160,1,0,0,0,2162,2164,1,0, - 0,0,2163,2147,1,0,0,0,2163,2164,1,0,0,0,2164,145,1,0,0,0,2165,2166, - 5,261,0,0,2166,2167,5,1,0,0,2167,2168,3,274,137,0,2168,2176,5,2, - 0,0,2169,2171,5,28,0,0,2170,2169,1,0,0,0,2170,2171,1,0,0,0,2171, - 2172,1,0,0,0,2172,2174,3,314,157,0,2173,2175,3,124,62,0,2174,2173, - 1,0,0,0,2174,2175,1,0,0,0,2175,2177,1,0,0,0,2176,2170,1,0,0,0,2176, - 2177,1,0,0,0,2177,2192,1,0,0,0,2178,2179,5,261,0,0,2179,2180,5,1, - 0,0,2180,2181,3,22,11,0,2181,2189,5,2,0,0,2182,2184,5,28,0,0,2183, - 2182,1,0,0,0,2183,2184,1,0,0,0,2184,2185,1,0,0,0,2185,2187,3,314, - 157,0,2186,2188,3,124,62,0,2187,2186,1,0,0,0,2187,2188,1,0,0,0,2188, - 2190,1,0,0,0,2189,2183,1,0,0,0,2189,2190,1,0,0,0,2190,2192,1,0,0, - 0,2191,2165,1,0,0,0,2191,2178,1,0,0,0,2192,147,1,0,0,0,2193,2194, - 5,78,0,0,2194,2195,5,1,0,0,2195,2200,3,150,75,0,2196,2197,5,3,0, - 0,2197,2199,3,150,75,0,2198,2196,1,0,0,0,2199,2202,1,0,0,0,2200, - 2198,1,0,0,0,2200,2201,1,0,0,0,2201,2203,1,0,0,0,2202,2200,1,0,0, - 0,2203,2204,5,2,0,0,2204,2212,1,0,0,0,2205,2206,5,41,0,0,2206,2207, - 5,1,0,0,2207,2208,5,184,0,0,2208,2209,5,28,0,0,2209,2210,5,78,0, - 0,2210,2212,5,2,0,0,2211,2193,1,0,0,0,2211,2205,1,0,0,0,2212,149, - 1,0,0,0,2213,2215,3,314,157,0,2214,2216,3,202,101,0,2215,2214,1, - 0,0,0,2215,2216,1,0,0,0,2216,151,1,0,0,0,2217,2218,5,1,0,0,2218, - 2219,3,300,150,0,2219,2220,5,3,0,0,2220,2225,3,300,150,0,2221,2222, - 5,3,0,0,2222,2224,3,300,150,0,2223,2221,1,0,0,0,2224,2227,1,0,0, - 0,2225,2223,1,0,0,0,2225,2226,1,0,0,0,2226,2228,1,0,0,0,2227,2225, - 1,0,0,0,2228,2229,5,2,0,0,2229,153,1,0,0,0,2230,2231,3,156,78,0, - 2231,155,1,0,0,0,2232,2233,6,78,-1,0,2233,2235,3,160,80,0,2234,2236, - 3,158,79,0,2235,2234,1,0,0,0,2235,2236,1,0,0,0,2236,2240,1,0,0,0, - 2237,2238,5,183,0,0,2238,2240,3,156,78,3,2239,2232,1,0,0,0,2239, - 2237,1,0,0,0,2240,2249,1,0,0,0,2241,2242,10,2,0,0,2242,2243,5,25, - 0,0,2243,2248,3,156,78,3,2244,2245,10,1,0,0,2245,2246,5,195,0,0, - 2246,2248,3,156,78,2,2247,2241,1,0,0,0,2247,2244,1,0,0,0,2248,2251, - 1,0,0,0,2249,2247,1,0,0,0,2249,2250,1,0,0,0,2250,157,1,0,0,0,2251, - 2249,1,0,0,0,2252,2253,3,190,95,0,2253,2254,3,160,80,0,2254,2314, - 1,0,0,0,2255,2256,3,190,95,0,2256,2257,3,192,96,0,2257,2258,5,1, - 0,0,2258,2259,3,22,11,0,2259,2260,5,2,0,0,2260,2314,1,0,0,0,2261, - 2263,5,183,0,0,2262,2261,1,0,0,0,2262,2263,1,0,0,0,2263,2264,1,0, - 0,0,2264,2265,5,34,0,0,2265,2266,3,160,80,0,2266,2267,5,25,0,0,2267, - 2268,3,160,80,0,2268,2314,1,0,0,0,2269,2271,5,183,0,0,2270,2269, - 1,0,0,0,2270,2271,1,0,0,0,2271,2272,1,0,0,0,2272,2273,5,123,0,0, - 2273,2274,5,1,0,0,2274,2279,3,154,77,0,2275,2276,5,3,0,0,2276,2278, - 3,154,77,0,2277,2275,1,0,0,0,2278,2281,1,0,0,0,2279,2277,1,0,0,0, - 2279,2280,1,0,0,0,2280,2282,1,0,0,0,2281,2279,1,0,0,0,2282,2283, - 5,2,0,0,2283,2314,1,0,0,0,2284,2286,5,183,0,0,2285,2284,1,0,0,0, - 2285,2286,1,0,0,0,2286,2287,1,0,0,0,2287,2288,5,123,0,0,2288,2289, - 5,1,0,0,2289,2290,3,22,11,0,2290,2291,5,2,0,0,2291,2314,1,0,0,0, - 2292,2294,5,183,0,0,2293,2292,1,0,0,0,2293,2294,1,0,0,0,2294,2295, - 1,0,0,0,2295,2296,5,155,0,0,2296,2299,3,160,80,0,2297,2298,5,91, - 0,0,2298,2300,3,160,80,0,2299,2297,1,0,0,0,2299,2300,1,0,0,0,2300, - 2314,1,0,0,0,2301,2303,5,134,0,0,2302,2304,5,183,0,0,2303,2302,1, - 0,0,0,2303,2304,1,0,0,0,2304,2305,1,0,0,0,2305,2314,5,184,0,0,2306, - 2308,5,134,0,0,2307,2309,5,183,0,0,2308,2307,1,0,0,0,2308,2309,1, - 0,0,0,2309,2310,1,0,0,0,2310,2311,5,80,0,0,2311,2312,5,106,0,0,2312, - 2314,3,160,80,0,2313,2252,1,0,0,0,2313,2255,1,0,0,0,2313,2262,1, - 0,0,0,2313,2270,1,0,0,0,2313,2285,1,0,0,0,2313,2293,1,0,0,0,2313, - 2301,1,0,0,0,2313,2306,1,0,0,0,2314,159,1,0,0,0,2315,2316,6,80,-1, - 0,2316,2320,3,162,81,0,2317,2318,7,18,0,0,2318,2320,3,160,80,4,2319, - 2315,1,0,0,0,2319,2317,1,0,0,0,2320,2335,1,0,0,0,2321,2322,10,3, - 0,0,2322,2323,7,19,0,0,2323,2334,3,160,80,4,2324,2325,10,2,0,0,2325, - 2326,7,18,0,0,2326,2334,3,160,80,3,2327,2328,10,1,0,0,2328,2329, - 5,324,0,0,2329,2334,3,160,80,2,2330,2331,10,5,0,0,2331,2332,5,30, - 0,0,2332,2334,3,188,94,0,2333,2321,1,0,0,0,2333,2324,1,0,0,0,2333, - 2327,1,0,0,0,2333,2330,1,0,0,0,2334,2337,1,0,0,0,2335,2333,1,0,0, - 0,2335,2336,1,0,0,0,2336,161,1,0,0,0,2337,2335,1,0,0,0,2338,2339, - 6,81,-1,0,2339,2804,5,184,0,0,2340,2804,3,196,98,0,2341,2342,3,314, - 157,0,2342,2343,3,186,93,0,2343,2804,1,0,0,0,2344,2345,5,83,0,0, - 2345,2346,5,214,0,0,2346,2804,3,186,93,0,2347,2804,3,316,158,0,2348, - 2804,3,194,97,0,2349,2804,3,186,93,0,2350,2804,5,329,0,0,2351,2804, - 5,325,0,0,2352,2353,5,212,0,0,2353,2354,5,1,0,0,2354,2355,3,160, - 80,0,2355,2356,5,123,0,0,2356,2357,3,160,80,0,2357,2358,5,2,0,0, - 2358,2804,1,0,0,0,2359,2360,5,1,0,0,2360,2363,3,154,77,0,2361,2362, - 5,3,0,0,2362,2364,3,154,77,0,2363,2361,1,0,0,0,2364,2365,1,0,0,0, - 2365,2363,1,0,0,0,2365,2366,1,0,0,0,2366,2367,1,0,0,0,2367,2368, - 5,2,0,0,2368,2804,1,0,0,0,2369,2370,5,240,0,0,2370,2371,5,1,0,0, - 2371,2376,3,154,77,0,2372,2373,5,3,0,0,2373,2375,3,154,77,0,2374, - 2372,1,0,0,0,2375,2378,1,0,0,0,2376,2374,1,0,0,0,2376,2377,1,0,0, - 0,2377,2379,1,0,0,0,2378,2376,1,0,0,0,2379,2380,5,2,0,0,2380,2804, - 1,0,0,0,2381,2382,5,157,0,0,2382,2384,5,1,0,0,2383,2385,3,76,38, - 0,2384,2383,1,0,0,0,2384,2385,1,0,0,0,2385,2386,1,0,0,0,2386,2389, - 3,154,77,0,2387,2388,5,3,0,0,2388,2390,3,186,93,0,2389,2387,1,0, - 0,0,2389,2390,1,0,0,0,2390,2394,1,0,0,0,2391,2392,5,191,0,0,2392, - 2393,5,201,0,0,2393,2395,3,100,50,0,2394,2391,1,0,0,0,2394,2395, - 1,0,0,0,2395,2396,1,0,0,0,2396,2397,5,2,0,0,2397,2398,5,306,0,0, - 2398,2399,5,115,0,0,2399,2400,5,1,0,0,2400,2401,5,196,0,0,2401,2402, - 5,36,0,0,2402,2407,3,50,25,0,2403,2404,5,3,0,0,2404,2406,3,50,25, - 0,2405,2403,1,0,0,0,2406,2409,1,0,0,0,2407,2405,1,0,0,0,2407,2408, - 1,0,0,0,2408,2410,1,0,0,0,2409,2407,1,0,0,0,2410,2411,5,2,0,0,2411, - 2413,1,0,0,0,2412,2414,3,210,105,0,2413,2412,1,0,0,0,2413,2414,1, - 0,0,0,2414,2804,1,0,0,0,2415,2417,3,182,91,0,2416,2415,1,0,0,0,2416, - 2417,1,0,0,0,2417,2418,1,0,0,0,2418,2419,3,290,145,0,2419,2423,5, - 1,0,0,2420,2421,3,314,157,0,2421,2422,5,4,0,0,2422,2424,1,0,0,0, - 2423,2420,1,0,0,0,2423,2424,1,0,0,0,2424,2425,1,0,0,0,2425,2426, - 5,321,0,0,2426,2428,5,2,0,0,2427,2429,3,210,105,0,2428,2427,1,0, - 0,0,2428,2429,1,0,0,0,2429,2431,1,0,0,0,2430,2432,3,214,107,0,2431, - 2430,1,0,0,0,2431,2432,1,0,0,0,2432,2804,1,0,0,0,2433,2435,3,182, - 91,0,2434,2433,1,0,0,0,2434,2435,1,0,0,0,2435,2436,1,0,0,0,2436, - 2437,3,290,145,0,2437,2449,5,1,0,0,2438,2440,3,76,38,0,2439,2438, - 1,0,0,0,2439,2440,1,0,0,0,2440,2441,1,0,0,0,2441,2446,3,154,77,0, - 2442,2443,5,3,0,0,2443,2445,3,154,77,0,2444,2442,1,0,0,0,2445,2448, - 1,0,0,0,2446,2444,1,0,0,0,2446,2447,1,0,0,0,2447,2450,1,0,0,0,2448, - 2446,1,0,0,0,2449,2439,1,0,0,0,2449,2450,1,0,0,0,2450,2461,1,0,0, - 0,2451,2452,5,196,0,0,2452,2453,5,36,0,0,2453,2458,3,50,25,0,2454, - 2455,5,3,0,0,2455,2457,3,50,25,0,2456,2454,1,0,0,0,2457,2460,1,0, - 0,0,2458,2456,1,0,0,0,2458,2459,1,0,0,0,2459,2462,1,0,0,0,2460,2458, - 1,0,0,0,2461,2451,1,0,0,0,2461,2462,1,0,0,0,2462,2463,1,0,0,0,2463, - 2465,5,2,0,0,2464,2466,3,210,105,0,2465,2464,1,0,0,0,2465,2466,1, - 0,0,0,2466,2471,1,0,0,0,2467,2469,3,184,92,0,2468,2467,1,0,0,0,2468, - 2469,1,0,0,0,2469,2470,1,0,0,0,2470,2472,3,214,107,0,2471,2468,1, - 0,0,0,2471,2472,1,0,0,0,2472,2804,1,0,0,0,2473,2474,3,314,157,0, - 2474,2475,3,214,107,0,2475,2804,1,0,0,0,2476,2477,3,314,157,0,2477, - 2478,5,7,0,0,2478,2479,3,154,77,0,2479,2804,1,0,0,0,2480,2489,5, - 1,0,0,2481,2486,3,314,157,0,2482,2483,5,3,0,0,2483,2485,3,314,157, - 0,2484,2482,1,0,0,0,2485,2488,1,0,0,0,2486,2484,1,0,0,0,2486,2487, - 1,0,0,0,2487,2490,1,0,0,0,2488,2486,1,0,0,0,2489,2481,1,0,0,0,2489, - 2490,1,0,0,0,2490,2491,1,0,0,0,2491,2492,5,2,0,0,2492,2493,5,7,0, - 0,2493,2804,3,154,77,0,2494,2495,5,1,0,0,2495,2496,3,22,11,0,2496, - 2497,5,2,0,0,2497,2804,1,0,0,0,2498,2499,5,95,0,0,2499,2500,5,1, - 0,0,2500,2501,3,22,11,0,2501,2502,5,2,0,0,2502,2804,1,0,0,0,2503, - 2504,5,40,0,0,2504,2506,3,154,77,0,2505,2507,3,208,104,0,2506,2505, - 1,0,0,0,2507,2508,1,0,0,0,2508,2506,1,0,0,0,2508,2509,1,0,0,0,2509, - 2512,1,0,0,0,2510,2511,5,85,0,0,2511,2513,3,154,77,0,2512,2510,1, - 0,0,0,2512,2513,1,0,0,0,2513,2514,1,0,0,0,2514,2515,5,89,0,0,2515, - 2804,1,0,0,0,2516,2518,5,40,0,0,2517,2519,3,208,104,0,2518,2517, - 1,0,0,0,2519,2520,1,0,0,0,2520,2518,1,0,0,0,2520,2521,1,0,0,0,2521, - 2524,1,0,0,0,2522,2523,5,85,0,0,2523,2525,3,154,77,0,2524,2522,1, - 0,0,0,2524,2525,1,0,0,0,2525,2526,1,0,0,0,2526,2527,5,89,0,0,2527, - 2804,1,0,0,0,2528,2529,5,41,0,0,2529,2530,5,1,0,0,2530,2531,3,154, - 77,0,2531,2532,5,28,0,0,2532,2533,3,202,101,0,2533,2534,5,2,0,0, - 2534,2804,1,0,0,0,2535,2536,5,276,0,0,2536,2537,5,1,0,0,2537,2538, - 3,154,77,0,2538,2539,5,28,0,0,2539,2540,3,202,101,0,2540,2541,5, - 2,0,0,2541,2804,1,0,0,0,2542,2543,5,27,0,0,2543,2552,5,8,0,0,2544, - 2549,3,154,77,0,2545,2546,5,3,0,0,2546,2548,3,154,77,0,2547,2545, - 1,0,0,0,2548,2551,1,0,0,0,2549,2547,1,0,0,0,2549,2550,1,0,0,0,2550, - 2553,1,0,0,0,2551,2549,1,0,0,0,2552,2544,1,0,0,0,2552,2553,1,0,0, - 0,2553,2554,1,0,0,0,2554,2804,5,9,0,0,2555,2804,3,296,148,0,2556, - 2804,5,59,0,0,2557,2561,5,63,0,0,2558,2559,5,1,0,0,2559,2560,5,330, - 0,0,2560,2562,5,2,0,0,2561,2558,1,0,0,0,2561,2562,1,0,0,0,2562,2804, - 1,0,0,0,2563,2567,5,64,0,0,2564,2565,5,1,0,0,2565,2566,5,330,0,0, - 2566,2568,5,2,0,0,2567,2564,1,0,0,0,2567,2568,1,0,0,0,2568,2804, - 1,0,0,0,2569,2573,5,159,0,0,2570,2571,5,1,0,0,2571,2572,5,330,0, - 0,2572,2574,5,2,0,0,2573,2570,1,0,0,0,2573,2574,1,0,0,0,2574,2804, - 1,0,0,0,2575,2579,5,160,0,0,2576,2577,5,1,0,0,2577,2578,5,330,0, - 0,2578,2580,5,2,0,0,2579,2576,1,0,0,0,2579,2580,1,0,0,0,2580,2804, - 1,0,0,0,2581,2804,5,65,0,0,2582,2804,5,58,0,0,2583,2804,5,62,0,0, - 2584,2804,5,60,0,0,2585,2586,5,273,0,0,2586,2594,5,1,0,0,2587,2589, - 3,98,49,0,2588,2587,1,0,0,0,2588,2589,1,0,0,0,2589,2591,1,0,0,0, - 2590,2592,3,160,80,0,2591,2590,1,0,0,0,2591,2592,1,0,0,0,2592,2593, - 1,0,0,0,2593,2595,5,106,0,0,2594,2588,1,0,0,0,2594,2595,1,0,0,0, - 2595,2596,1,0,0,0,2596,2597,3,160,80,0,2597,2598,5,2,0,0,2598,2804, - 1,0,0,0,2599,2600,5,273,0,0,2600,2601,5,1,0,0,2601,2602,3,160,80, - 0,2602,2603,5,3,0,0,2603,2604,3,160,80,0,2604,2605,5,2,0,0,2605, - 2804,1,0,0,0,2606,2607,5,259,0,0,2607,2608,5,1,0,0,2608,2609,3,160, - 80,0,2609,2610,5,106,0,0,2610,2613,3,160,80,0,2611,2612,5,104,0, - 0,2612,2614,3,160,80,0,2613,2611,1,0,0,0,2613,2614,1,0,0,0,2614, - 2615,1,0,0,0,2615,2616,5,2,0,0,2616,2804,1,0,0,0,2617,2618,5,182, - 0,0,2618,2619,5,1,0,0,2619,2622,3,160,80,0,2620,2621,5,3,0,0,2621, - 2623,3,200,100,0,2622,2620,1,0,0,0,2622,2623,1,0,0,0,2623,2624,1, - 0,0,0,2624,2625,5,2,0,0,2625,2804,1,0,0,0,2626,2627,5,97,0,0,2627, - 2628,5,1,0,0,2628,2629,3,314,157,0,2629,2630,5,106,0,0,2630,2631, - 3,160,80,0,2631,2632,5,2,0,0,2632,2804,1,0,0,0,2633,2634,5,44,0, - 0,2634,2635,5,1,0,0,2635,2640,3,154,77,0,2636,2637,5,3,0,0,2637, - 2639,3,154,77,0,2638,2636,1,0,0,0,2639,2642,1,0,0,0,2640,2638,1, - 0,0,0,2640,2641,1,0,0,0,2641,2643,1,0,0,0,2642,2640,1,0,0,0,2643, - 2644,5,2,0,0,2644,2804,1,0,0,0,2645,2646,5,1,0,0,2646,2647,3,154, - 77,0,2647,2648,5,2,0,0,2648,2804,1,0,0,0,2649,2650,5,116,0,0,2650, - 2659,5,1,0,0,2651,2656,3,300,150,0,2652,2653,5,3,0,0,2653,2655,3, - 300,150,0,2654,2652,1,0,0,0,2655,2658,1,0,0,0,2656,2654,1,0,0,0, - 2656,2657,1,0,0,0,2657,2660,1,0,0,0,2658,2656,1,0,0,0,2659,2651, - 1,0,0,0,2659,2660,1,0,0,0,2660,2661,1,0,0,0,2661,2804,5,2,0,0,2662, - 2663,5,140,0,0,2663,2664,5,1,0,0,2664,2669,3,164,82,0,2665,2666, - 3,172,86,0,2666,2667,5,191,0,0,2667,2668,5,90,0,0,2668,2670,1,0, - 0,0,2669,2665,1,0,0,0,2669,2670,1,0,0,0,2670,2671,1,0,0,0,2671,2672, - 5,2,0,0,2672,2804,1,0,0,0,2673,2674,5,144,0,0,2674,2675,5,1,0,0, - 2675,2678,3,164,82,0,2676,2677,5,232,0,0,2677,2679,3,202,101,0,2678, - 2676,1,0,0,0,2678,2679,1,0,0,0,2679,2684,1,0,0,0,2680,2681,3,174, - 87,0,2681,2682,5,191,0,0,2682,2683,5,86,0,0,2683,2685,1,0,0,0,2684, - 2680,1,0,0,0,2684,2685,1,0,0,0,2685,2690,1,0,0,0,2686,2687,3,174, - 87,0,2687,2688,5,191,0,0,2688,2689,5,90,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,2,0, - 0,2693,2804,1,0,0,0,2694,2695,5,142,0,0,2695,2696,5,1,0,0,2696,2703, - 3,164,82,0,2697,2698,5,232,0,0,2698,2701,3,202,101,0,2699,2700,5, - 105,0,0,2700,2702,3,168,84,0,2701,2699,1,0,0,0,2701,2702,1,0,0,0, - 2702,2704,1,0,0,0,2703,2697,1,0,0,0,2703,2704,1,0,0,0,2704,2708, - 1,0,0,0,2705,2706,3,176,88,0,2706,2707,5,309,0,0,2707,2709,1,0,0, - 0,2708,2705,1,0,0,0,2708,2709,1,0,0,0,2709,2717,1,0,0,0,2710,2711, - 7,15,0,0,2711,2715,5,219,0,0,2712,2713,5,191,0,0,2713,2714,5,243, - 0,0,2714,2716,5,265,0,0,2715,2712,1,0,0,0,2715,2716,1,0,0,0,2716, - 2718,1,0,0,0,2717,2710,1,0,0,0,2717,2718,1,0,0,0,2718,2723,1,0,0, - 0,2719,2720,3,178,89,0,2720,2721,5,191,0,0,2721,2722,5,86,0,0,2722, - 2724,1,0,0,0,2723,2719,1,0,0,0,2723,2724,1,0,0,0,2724,2729,1,0,0, - 0,2725,2726,3,178,89,0,2726,2727,5,191,0,0,2727,2728,5,90,0,0,2728, - 2730,1,0,0,0,2729,2725,1,0,0,0,2729,2730,1,0,0,0,2730,2731,1,0,0, - 0,2731,2732,5,2,0,0,2732,2804,1,0,0,0,2733,2734,5,141,0,0,2734,2763, - 5,1,0,0,2735,2740,3,180,90,0,2736,2737,5,3,0,0,2737,2739,3,180,90, - 0,2738,2736,1,0,0,0,2739,2742,1,0,0,0,2740,2738,1,0,0,0,2740,2741, - 1,0,0,0,2741,2749,1,0,0,0,2742,2740,1,0,0,0,2743,2744,5,184,0,0, - 2744,2745,5,191,0,0,2745,2750,5,184,0,0,2746,2747,5,18,0,0,2747, - 2748,5,191,0,0,2748,2750,5,184,0,0,2749,2743,1,0,0,0,2749,2746,1, - 0,0,0,2749,2750,1,0,0,0,2750,2761,1,0,0,0,2751,2752,5,305,0,0,2752, - 2754,5,283,0,0,2753,2755,5,147,0,0,2754,2753,1,0,0,0,2754,2755,1, - 0,0,0,2755,2762,1,0,0,0,2756,2757,5,307,0,0,2757,2759,5,283,0,0, - 2758,2760,5,147,0,0,2759,2758,1,0,0,0,2759,2760,1,0,0,0,2760,2762, - 1,0,0,0,2761,2751,1,0,0,0,2761,2756,1,0,0,0,2761,2762,1,0,0,0,2762, - 2764,1,0,0,0,2763,2735,1,0,0,0,2763,2764,1,0,0,0,2764,2771,1,0,0, - 0,2765,2766,5,232,0,0,2766,2769,3,202,101,0,2767,2768,5,105,0,0, - 2768,2770,3,168,84,0,2769,2767,1,0,0,0,2769,2770,1,0,0,0,2770,2772, - 1,0,0,0,2771,2765,1,0,0,0,2771,2772,1,0,0,0,2772,2773,1,0,0,0,2773, - 2804,5,2,0,0,2774,2775,5,139,0,0,2775,2792,5,1,0,0,2776,2781,3,166, - 83,0,2777,2778,5,3,0,0,2778,2780,3,166,83,0,2779,2777,1,0,0,0,2780, - 2783,1,0,0,0,2781,2779,1,0,0,0,2781,2782,1,0,0,0,2782,2790,1,0,0, - 0,2783,2781,1,0,0,0,2784,2785,5,184,0,0,2785,2786,5,191,0,0,2786, - 2791,5,184,0,0,2787,2788,5,18,0,0,2788,2789,5,191,0,0,2789,2791, - 5,184,0,0,2790,2784,1,0,0,0,2790,2787,1,0,0,0,2790,2791,1,0,0,0, - 2791,2793,1,0,0,0,2792,2776,1,0,0,0,2792,2793,1,0,0,0,2793,2800, - 1,0,0,0,2794,2795,5,232,0,0,2795,2798,3,202,101,0,2796,2797,5,105, - 0,0,2797,2799,3,168,84,0,2798,2796,1,0,0,0,2798,2799,1,0,0,0,2799, - 2801,1,0,0,0,2800,2794,1,0,0,0,2800,2801,1,0,0,0,2801,2802,1,0,0, - 0,2802,2804,5,2,0,0,2803,2338,1,0,0,0,2803,2340,1,0,0,0,2803,2341, - 1,0,0,0,2803,2344,1,0,0,0,2803,2347,1,0,0,0,2803,2348,1,0,0,0,2803, - 2349,1,0,0,0,2803,2350,1,0,0,0,2803,2351,1,0,0,0,2803,2352,1,0,0, - 0,2803,2359,1,0,0,0,2803,2369,1,0,0,0,2803,2381,1,0,0,0,2803,2416, - 1,0,0,0,2803,2434,1,0,0,0,2803,2473,1,0,0,0,2803,2476,1,0,0,0,2803, - 2480,1,0,0,0,2803,2494,1,0,0,0,2803,2498,1,0,0,0,2803,2503,1,0,0, - 0,2803,2516,1,0,0,0,2803,2528,1,0,0,0,2803,2535,1,0,0,0,2803,2542, - 1,0,0,0,2803,2555,1,0,0,0,2803,2556,1,0,0,0,2803,2557,1,0,0,0,2803, - 2563,1,0,0,0,2803,2569,1,0,0,0,2803,2575,1,0,0,0,2803,2581,1,0,0, - 0,2803,2582,1,0,0,0,2803,2583,1,0,0,0,2803,2584,1,0,0,0,2803,2585, - 1,0,0,0,2803,2599,1,0,0,0,2803,2606,1,0,0,0,2803,2617,1,0,0,0,2803, - 2626,1,0,0,0,2803,2633,1,0,0,0,2803,2645,1,0,0,0,2803,2649,1,0,0, - 0,2803,2662,1,0,0,0,2803,2673,1,0,0,0,2803,2694,1,0,0,0,2803,2733, - 1,0,0,0,2803,2774,1,0,0,0,2804,2815,1,0,0,0,2805,2806,10,25,0,0, - 2806,2807,5,8,0,0,2807,2808,3,160,80,0,2808,2809,5,9,0,0,2809,2814, - 1,0,0,0,2810,2811,10,23,0,0,2811,2812,5,4,0,0,2812,2814,3,314,157, - 0,2813,2805,1,0,0,0,2813,2810,1,0,0,0,2814,2817,1,0,0,0,2815,2813, - 1,0,0,0,2815,2816,1,0,0,0,2816,163,1,0,0,0,2817,2815,1,0,0,0,2818, - 2819,3,166,83,0,2819,2820,5,3,0,0,2820,2823,3,186,93,0,2821,2822, - 5,28,0,0,2822,2824,3,314,157,0,2823,2821,1,0,0,0,2823,2824,1,0,0, - 0,2824,2834,1,0,0,0,2825,2826,5,204,0,0,2826,2831,3,170,85,0,2827, - 2828,5,3,0,0,2828,2830,3,170,85,0,2829,2827,1,0,0,0,2830,2833,1, - 0,0,0,2831,2829,1,0,0,0,2831,2832,1,0,0,0,2832,2835,1,0,0,0,2833, - 2831,1,0,0,0,2834,2825,1,0,0,0,2834,2835,1,0,0,0,2835,165,1,0,0, - 0,2836,2839,3,154,77,0,2837,2838,5,105,0,0,2838,2840,3,168,84,0, - 2839,2837,1,0,0,0,2839,2840,1,0,0,0,2840,167,1,0,0,0,2841,2844,5, - 138,0,0,2842,2843,5,88,0,0,2843,2845,7,20,0,0,2844,2842,1,0,0,0, - 2844,2845,1,0,0,0,2845,169,1,0,0,0,2846,2847,3,166,83,0,2847,2848, - 5,28,0,0,2848,2849,3,314,157,0,2849,171,1,0,0,0,2850,2851,7,21,0, - 0,2851,173,1,0,0,0,2852,2857,5,90,0,0,2853,2857,5,184,0,0,2854,2855, - 5,71,0,0,2855,2857,3,154,77,0,2856,2852,1,0,0,0,2856,2853,1,0,0, - 0,2856,2854,1,0,0,0,2857,175,1,0,0,0,2858,2860,5,307,0,0,2859,2861, - 5,27,0,0,2860,2859,1,0,0,0,2860,2861,1,0,0,0,2861,2870,1,0,0,0,2862, - 2864,5,305,0,0,2863,2865,7,22,0,0,2864,2863,1,0,0,0,2864,2865,1, - 0,0,0,2865,2867,1,0,0,0,2866,2868,5,27,0,0,2867,2866,1,0,0,0,2867, - 2868,1,0,0,0,2868,2870,1,0,0,0,2869,2858,1,0,0,0,2869,2862,1,0,0, - 0,2870,177,1,0,0,0,2871,2878,5,90,0,0,2872,2878,5,184,0,0,2873,2874, - 5,86,0,0,2874,2878,5,27,0,0,2875,2876,5,86,0,0,2876,2878,5,187,0, - 0,2877,2871,1,0,0,0,2877,2872,1,0,0,0,2877,2873,1,0,0,0,2877,2875, - 1,0,0,0,2878,179,1,0,0,0,2879,2881,5,146,0,0,2880,2879,1,0,0,0,2880, - 2881,1,0,0,0,2881,2882,1,0,0,0,2882,2883,3,154,77,0,2883,2884,5, - 296,0,0,2884,2885,3,166,83,0,2885,2891,1,0,0,0,2886,2887,3,154,77, - 0,2887,2888,5,10,0,0,2888,2889,3,166,83,0,2889,2891,1,0,0,0,2890, - 2880,1,0,0,0,2890,2886,1,0,0,0,2891,181,1,0,0,0,2892,2893,7,23,0, - 0,2893,183,1,0,0,0,2894,2895,5,121,0,0,2895,2899,5,186,0,0,2896, - 2897,5,229,0,0,2897,2899,5,186,0,0,2898,2894,1,0,0,0,2898,2896,1, - 0,0,0,2899,185,1,0,0,0,2900,2907,5,327,0,0,2901,2904,5,328,0,0,2902, - 2903,5,278,0,0,2903,2905,5,327,0,0,2904,2902,1,0,0,0,2904,2905,1, - 0,0,0,2905,2907,1,0,0,0,2906,2900,1,0,0,0,2906,2901,1,0,0,0,2907, - 187,1,0,0,0,2908,2909,5,268,0,0,2909,2910,5,312,0,0,2910,2915,3, - 196,98,0,2911,2912,5,268,0,0,2912,2913,5,312,0,0,2913,2915,3,186, - 93,0,2914,2908,1,0,0,0,2914,2911,1,0,0,0,2915,189,1,0,0,0,2916,2917, - 7,24,0,0,2917,191,1,0,0,0,2918,2919,7,25,0,0,2919,193,1,0,0,0,2920, - 2921,7,26,0,0,2921,195,1,0,0,0,2922,2924,5,130,0,0,2923,2925,7,18, - 0,0,2924,2923,1,0,0,0,2924,2925,1,0,0,0,2925,2926,1,0,0,0,2926,2927, - 3,186,93,0,2927,2930,3,198,99,0,2928,2929,5,270,0,0,2929,2931,3, - 198,99,0,2930,2928,1,0,0,0,2930,2931,1,0,0,0,2931,197,1,0,0,0,2932, - 2933,7,27,0,0,2933,199,1,0,0,0,2934,2935,7,28,0,0,2935,201,1,0,0, - 0,2936,2937,6,101,-1,0,2937,2938,5,240,0,0,2938,2939,5,1,0,0,2939, - 2944,3,204,102,0,2940,2941,5,3,0,0,2941,2943,3,204,102,0,2942,2940, - 1,0,0,0,2943,2946,1,0,0,0,2944,2942,1,0,0,0,2944,2945,1,0,0,0,2945, - 2947,1,0,0,0,2946,2944,1,0,0,0,2947,2948,5,2,0,0,2948,3008,1,0,0, - 0,2949,2950,5,130,0,0,2950,2953,3,198,99,0,2951,2952,5,270,0,0,2952, - 2954,3,198,99,0,2953,2951,1,0,0,0,2953,2954,1,0,0,0,2954,3008,1, - 0,0,0,2955,2960,5,269,0,0,2956,2957,5,1,0,0,2957,2958,3,206,103, - 0,2958,2959,5,2,0,0,2959,2961,1,0,0,0,2960,2956,1,0,0,0,2960,2961, - 1,0,0,0,2961,2965,1,0,0,0,2962,2963,7,29,0,0,2963,2964,5,268,0,0, - 2964,2966,5,312,0,0,2965,2962,1,0,0,0,2965,2966,1,0,0,0,2966,3008, - 1,0,0,0,2967,2972,5,268,0,0,2968,2969,5,1,0,0,2969,2970,3,206,103, - 0,2970,2971,5,2,0,0,2971,2973,1,0,0,0,2972,2968,1,0,0,0,2972,2973, - 1,0,0,0,2973,2977,1,0,0,0,2974,2975,7,29,0,0,2975,2976,5,268,0,0, - 2976,2978,5,312,0,0,2977,2974,1,0,0,0,2977,2978,1,0,0,0,2978,3008, - 1,0,0,0,2979,2980,5,83,0,0,2980,3008,5,214,0,0,2981,2982,5,27,0, - 0,2982,2983,5,315,0,0,2983,2984,3,202,101,0,2984,2985,5,317,0,0, - 2985,3008,1,0,0,0,2986,2987,5,163,0,0,2987,2988,5,315,0,0,2988,2989, - 3,202,101,0,2989,2990,5,3,0,0,2990,2991,3,202,101,0,2991,2992,5, - 317,0,0,2992,3008,1,0,0,0,2993,3005,3,314,157,0,2994,2995,5,1,0, - 0,2995,3000,3,206,103,0,2996,2997,5,3,0,0,2997,2999,3,206,103,0, - 2998,2996,1,0,0,0,2999,3002,1,0,0,0,3000,2998,1,0,0,0,3000,3001, - 1,0,0,0,3001,3003,1,0,0,0,3002,3000,1,0,0,0,3003,3004,5,2,0,0,3004, - 3006,1,0,0,0,3005,2994,1,0,0,0,3005,3006,1,0,0,0,3006,3008,1,0,0, - 0,3007,2936,1,0,0,0,3007,2949,1,0,0,0,3007,2955,1,0,0,0,3007,2967, - 1,0,0,0,3007,2979,1,0,0,0,3007,2981,1,0,0,0,3007,2986,1,0,0,0,3007, - 2993,1,0,0,0,3008,3018,1,0,0,0,3009,3010,10,2,0,0,3010,3014,5,27, - 0,0,3011,3012,5,8,0,0,3012,3013,5,330,0,0,3013,3015,5,9,0,0,3014, - 3011,1,0,0,0,3014,3015,1,0,0,0,3015,3017,1,0,0,0,3016,3009,1,0,0, - 0,3017,3020,1,0,0,0,3018,3016,1,0,0,0,3018,3019,1,0,0,0,3019,203, - 1,0,0,0,3020,3018,1,0,0,0,3021,3026,3,202,101,0,3022,3023,3,314, - 157,0,3023,3024,3,202,101,0,3024,3026,1,0,0,0,3025,3021,1,0,0,0, - 3025,3022,1,0,0,0,3026,205,1,0,0,0,3027,3030,5,330,0,0,3028,3030, - 3,202,101,0,3029,3027,1,0,0,0,3029,3028,1,0,0,0,3030,207,1,0,0,0, - 3031,3032,5,301,0,0,3032,3033,3,154,77,0,3033,3034,5,266,0,0,3034, - 3035,3,154,77,0,3035,209,1,0,0,0,3036,3037,5,100,0,0,3037,3038,5, - 1,0,0,3038,3039,3,54,27,0,3039,3040,5,2,0,0,3040,211,1,0,0,0,3041, - 3042,5,301,0,0,3042,3045,5,165,0,0,3043,3044,5,25,0,0,3044,3046, - 3,154,77,0,3045,3043,1,0,0,0,3045,3046,1,0,0,0,3046,3047,1,0,0,0, - 3047,3048,5,266,0,0,3048,3049,5,288,0,0,3049,3050,5,252,0,0,3050, - 3051,3,314,157,0,3051,3052,5,313,0,0,3052,3060,3,154,77,0,3053,3054, - 5,3,0,0,3054,3055,3,314,157,0,3055,3056,5,313,0,0,3056,3057,3,154, - 77,0,3057,3059,1,0,0,0,3058,3053,1,0,0,0,3059,3062,1,0,0,0,3060, - 3058,1,0,0,0,3060,3061,1,0,0,0,3061,3106,1,0,0,0,3062,3060,1,0,0, - 0,3063,3064,5,301,0,0,3064,3067,5,165,0,0,3065,3066,5,25,0,0,3066, - 3068,3,154,77,0,3067,3065,1,0,0,0,3067,3068,1,0,0,0,3068,3069,1, - 0,0,0,3069,3070,5,266,0,0,3070,3106,5,74,0,0,3071,3072,5,301,0,0, - 3072,3073,5,183,0,0,3073,3076,5,165,0,0,3074,3075,5,25,0,0,3075, - 3077,3,154,77,0,3076,3074,1,0,0,0,3076,3077,1,0,0,0,3077,3078,1, - 0,0,0,3078,3079,5,266,0,0,3079,3091,5,128,0,0,3080,3081,5,1,0,0, - 3081,3086,3,314,157,0,3082,3083,5,3,0,0,3083,3085,3,314,157,0,3084, - 3082,1,0,0,0,3085,3088,1,0,0,0,3086,3084,1,0,0,0,3086,3087,1,0,0, - 0,3087,3089,1,0,0,0,3088,3086,1,0,0,0,3089,3090,5,2,0,0,3090,3092, - 1,0,0,0,3091,3080,1,0,0,0,3091,3092,1,0,0,0,3092,3093,1,0,0,0,3093, - 3094,5,297,0,0,3094,3095,5,1,0,0,3095,3100,3,154,77,0,3096,3097, - 5,3,0,0,3097,3099,3,154,77,0,3098,3096,1,0,0,0,3099,3102,1,0,0,0, - 3100,3098,1,0,0,0,3100,3101,1,0,0,0,3101,3103,1,0,0,0,3102,3100, - 1,0,0,0,3103,3104,5,2,0,0,3104,3106,1,0,0,0,3105,3041,1,0,0,0,3105, - 3063,1,0,0,0,3105,3071,1,0,0,0,3106,213,1,0,0,0,3107,3113,5,200, - 0,0,3108,3114,3,314,157,0,3109,3110,5,1,0,0,3110,3111,3,72,36,0, - 3111,3112,5,2,0,0,3112,3114,1,0,0,0,3113,3108,1,0,0,0,3113,3109, - 1,0,0,0,3114,215,1,0,0,0,3115,3116,5,169,0,0,3116,3121,3,106,53, - 0,3117,3118,5,3,0,0,3118,3120,3,106,53,0,3119,3117,1,0,0,0,3120, - 3123,1,0,0,0,3121,3119,1,0,0,0,3121,3122,1,0,0,0,3122,3125,1,0,0, - 0,3123,3121,1,0,0,0,3124,3115,1,0,0,0,3124,3125,1,0,0,0,3125,3126, - 1,0,0,0,3126,3130,3,218,109,0,3127,3128,5,21,0,0,3128,3129,5,164, - 0,0,3129,3131,3,112,56,0,3130,3127,1,0,0,0,3130,3131,1,0,0,0,3131, - 3133,1,0,0,0,3132,3134,7,13,0,0,3133,3132,1,0,0,0,3133,3134,1,0, - 0,0,3134,3140,1,0,0,0,3135,3136,5,207,0,0,3136,3137,5,1,0,0,3137, - 3138,3,222,111,0,3138,3139,5,2,0,0,3139,3141,1,0,0,0,3140,3135,1, - 0,0,0,3140,3141,1,0,0,0,3141,3151,1,0,0,0,3142,3143,5,258,0,0,3143, - 3148,3,114,57,0,3144,3145,5,3,0,0,3145,3147,3,114,57,0,3146,3144, - 1,0,0,0,3147,3150,1,0,0,0,3148,3146,1,0,0,0,3148,3149,1,0,0,0,3149, - 3152,1,0,0,0,3150,3148,1,0,0,0,3151,3142,1,0,0,0,3151,3152,1,0,0, - 0,3152,3162,1,0,0,0,3153,3154,5,72,0,0,3154,3159,3,116,58,0,3155, - 3156,5,3,0,0,3156,3158,3,116,58,0,3157,3155,1,0,0,0,3158,3161,1, - 0,0,0,3159,3157,1,0,0,0,3159,3160,1,0,0,0,3160,3163,1,0,0,0,3161, - 3159,1,0,0,0,3162,3153,1,0,0,0,3162,3163,1,0,0,0,3163,217,1,0,0, - 0,3164,3165,5,220,0,0,3165,3189,3,220,110,0,3166,3167,5,241,0,0, - 3167,3189,3,220,110,0,3168,3169,5,117,0,0,3169,3189,3,220,110,0, - 3170,3171,5,220,0,0,3171,3172,5,34,0,0,3172,3173,3,220,110,0,3173, - 3174,5,25,0,0,3174,3175,3,220,110,0,3175,3189,1,0,0,0,3176,3177, - 5,241,0,0,3177,3178,5,34,0,0,3178,3179,3,220,110,0,3179,3180,5,25, - 0,0,3180,3181,3,220,110,0,3181,3189,1,0,0,0,3182,3183,5,117,0,0, - 3183,3184,5,34,0,0,3184,3185,3,220,110,0,3185,3186,5,25,0,0,3186, - 3187,3,220,110,0,3187,3189,1,0,0,0,3188,3164,1,0,0,0,3188,3166,1, - 0,0,0,3188,3168,1,0,0,0,3188,3170,1,0,0,0,3188,3176,1,0,0,0,3188, - 3182,1,0,0,0,3189,219,1,0,0,0,3190,3191,5,279,0,0,3191,3200,5,213, - 0,0,3192,3193,5,279,0,0,3193,3200,5,103,0,0,3194,3195,5,57,0,0,3195, - 3200,5,240,0,0,3196,3197,3,154,77,0,3197,3198,7,30,0,0,3198,3200, - 1,0,0,0,3199,3190,1,0,0,0,3199,3192,1,0,0,0,3199,3194,1,0,0,0,3199, - 3196,1,0,0,0,3200,221,1,0,0,0,3201,3202,6,111,-1,0,3202,3204,3,224, - 112,0,3203,3205,3,226,113,0,3204,3203,1,0,0,0,3204,3205,1,0,0,0, - 3205,3213,1,0,0,0,3206,3207,10,2,0,0,3207,3212,3,222,111,3,3208, - 3209,10,1,0,0,3209,3210,5,11,0,0,3210,3212,3,222,111,2,3211,3206, - 1,0,0,0,3211,3208,1,0,0,0,3212,3215,1,0,0,0,3213,3211,1,0,0,0,3213, - 3214,1,0,0,0,3214,223,1,0,0,0,3215,3213,1,0,0,0,3216,3242,3,314, - 157,0,3217,3218,5,1,0,0,3218,3242,5,2,0,0,3219,3220,5,210,0,0,3220, - 3221,5,1,0,0,3221,3226,3,222,111,0,3222,3223,5,3,0,0,3223,3225,3, - 222,111,0,3224,3222,1,0,0,0,3225,3228,1,0,0,0,3226,3224,1,0,0,0, - 3226,3227,1,0,0,0,3227,3229,1,0,0,0,3228,3226,1,0,0,0,3229,3230, - 5,2,0,0,3230,3242,1,0,0,0,3231,3232,5,1,0,0,3232,3233,3,222,111, - 0,3233,3234,5,2,0,0,3234,3242,1,0,0,0,3235,3242,5,12,0,0,3236,3242, - 5,13,0,0,3237,3238,5,14,0,0,3238,3239,3,222,111,0,3239,3240,5,15, - 0,0,3240,3242,1,0,0,0,3241,3216,1,0,0,0,3241,3217,1,0,0,0,3241,3219, - 1,0,0,0,3241,3231,1,0,0,0,3241,3235,1,0,0,0,3241,3236,1,0,0,0,3241, - 3237,1,0,0,0,3242,225,1,0,0,0,3243,3245,5,321,0,0,3244,3246,5,325, - 0,0,3245,3244,1,0,0,0,3245,3246,1,0,0,0,3246,3274,1,0,0,0,3247,3249, - 5,319,0,0,3248,3250,5,325,0,0,3249,3248,1,0,0,0,3249,3250,1,0,0, - 0,3250,3274,1,0,0,0,3251,3253,5,325,0,0,3252,3254,5,325,0,0,3253, - 3252,1,0,0,0,3253,3254,1,0,0,0,3254,3274,1,0,0,0,3255,3256,5,16, - 0,0,3256,3257,5,330,0,0,3257,3259,5,17,0,0,3258,3260,5,325,0,0,3259, - 3258,1,0,0,0,3259,3260,1,0,0,0,3260,3274,1,0,0,0,3261,3263,5,16, - 0,0,3262,3264,5,330,0,0,3263,3262,1,0,0,0,3263,3264,1,0,0,0,3264, - 3265,1,0,0,0,3265,3267,5,3,0,0,3266,3268,5,330,0,0,3267,3266,1,0, - 0,0,3267,3268,1,0,0,0,3268,3269,1,0,0,0,3269,3271,5,17,0,0,3270, - 3272,5,325,0,0,3271,3270,1,0,0,0,3271,3272,1,0,0,0,3272,3274,1,0, - 0,0,3273,3243,1,0,0,0,3273,3247,1,0,0,0,3273,3251,1,0,0,0,3273,3255, - 1,0,0,0,3273,3261,1,0,0,0,3274,227,1,0,0,0,3275,3276,3,314,157,0, - 3276,3277,5,313,0,0,3277,3278,3,154,77,0,3278,229,1,0,0,0,3279,3280, - 5,105,0,0,3280,3284,7,31,0,0,3281,3282,5,277,0,0,3282,3284,7,32, - 0,0,3283,3279,1,0,0,0,3283,3281,1,0,0,0,3284,231,1,0,0,0,3285,3286, - 5,135,0,0,3286,3287,5,154,0,0,3287,3291,3,234,117,0,3288,3289,5, - 221,0,0,3289,3291,7,33,0,0,3290,3285,1,0,0,0,3290,3288,1,0,0,0,3291, - 233,1,0,0,0,3292,3293,5,221,0,0,3293,3300,5,280,0,0,3294,3295,5, - 221,0,0,3295,3300,5,49,0,0,3296,3297,5,226,0,0,3297,3300,5,221,0, - 0,3298,3300,5,250,0,0,3299,3292,1,0,0,0,3299,3294,1,0,0,0,3299,3296, - 1,0,0,0,3299,3298,1,0,0,0,3300,235,1,0,0,0,3301,3307,3,154,77,0, - 3302,3303,3,314,157,0,3303,3304,5,6,0,0,3304,3305,3,154,77,0,3305, - 3307,1,0,0,0,3306,3301,1,0,0,0,3306,3302,1,0,0,0,3307,237,1,0,0, - 0,3308,3309,3,314,157,0,3309,3310,5,4,0,0,3310,3311,3,314,157,0, - 3311,3314,1,0,0,0,3312,3314,3,314,157,0,3313,3308,1,0,0,0,3313,3312, - 1,0,0,0,3314,239,1,0,0,0,3315,3320,3,238,119,0,3316,3317,5,3,0,0, - 3317,3319,3,238,119,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,241,1,0,0,0,3322,3320,1,0,0,0,3323, - 3324,5,108,0,0,3324,3325,3,244,122,0,3325,3329,3,250,125,0,3326, - 3328,3,252,126,0,3327,3326,1,0,0,0,3328,3331,1,0,0,0,3329,3327,1, - 0,0,0,3329,3330,1,0,0,0,3330,3332,1,0,0,0,3331,3329,1,0,0,0,3332, - 3333,3,254,127,0,3333,243,1,0,0,0,3334,3335,3,292,146,0,3335,3344, - 5,1,0,0,3336,3341,3,248,124,0,3337,3338,5,3,0,0,3338,3340,3,248, - 124,0,3339,3337,1,0,0,0,3340,3343,1,0,0,0,3341,3339,1,0,0,0,3341, - 3342,1,0,0,0,3342,3345,1,0,0,0,3343,3341,1,0,0,0,3344,3336,1,0,0, - 0,3344,3345,1,0,0,0,3345,3346,1,0,0,0,3346,3347,5,2,0,0,3347,245, - 1,0,0,0,3348,3349,3,290,145,0,3349,3358,5,1,0,0,3350,3355,3,248, - 124,0,3351,3352,5,3,0,0,3352,3354,3,248,124,0,3353,3351,1,0,0,0, - 3354,3357,1,0,0,0,3355,3353,1,0,0,0,3355,3356,1,0,0,0,3356,3359, - 1,0,0,0,3357,3355,1,0,0,0,3358,3350,1,0,0,0,3358,3359,1,0,0,0,3359, - 3360,1,0,0,0,3360,3361,5,2,0,0,3361,247,1,0,0,0,3362,3364,3,314, - 157,0,3363,3362,1,0,0,0,3363,3364,1,0,0,0,3364,3365,1,0,0,0,3365, - 3366,3,202,101,0,3366,249,1,0,0,0,3367,3368,5,233,0,0,3368,3369, - 3,202,101,0,3369,251,1,0,0,0,3370,3371,5,148,0,0,3371,3390,3,314, - 157,0,3372,3374,5,183,0,0,3373,3372,1,0,0,0,3373,3374,1,0,0,0,3374, - 3375,1,0,0,0,3375,3390,5,79,0,0,3376,3377,5,233,0,0,3377,3378,5, - 184,0,0,3378,3379,5,191,0,0,3379,3380,5,184,0,0,3380,3390,5,127, - 0,0,3381,3382,5,38,0,0,3382,3383,5,191,0,0,3383,3384,5,184,0,0,3384, - 3390,5,127,0,0,3385,3386,5,247,0,0,3386,3390,7,1,0,0,3387,3388,5, - 47,0,0,3388,3390,3,186,93,0,3389,3370,1,0,0,0,3389,3373,1,0,0,0, - 3389,3376,1,0,0,0,3389,3381,1,0,0,0,3389,3385,1,0,0,0,3389,3387, - 1,0,0,0,3390,253,1,0,0,0,3391,3392,5,231,0,0,3392,3491,3,160,80, - 0,3393,3394,5,252,0,0,3394,3395,3,314,157,0,3395,3396,5,313,0,0, - 3396,3397,3,154,77,0,3397,3491,1,0,0,0,3398,3399,5,40,0,0,3399,3401, - 3,154,77,0,3400,3402,3,256,128,0,3401,3400,1,0,0,0,3402,3403,1,0, - 0,0,3403,3401,1,0,0,0,3403,3404,1,0,0,0,3404,3406,1,0,0,0,3405,3407, - 3,260,130,0,3406,3405,1,0,0,0,3406,3407,1,0,0,0,3407,3408,1,0,0, - 0,3408,3409,5,89,0,0,3409,3410,5,40,0,0,3410,3491,1,0,0,0,3411,3413, - 5,40,0,0,3412,3414,3,256,128,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,3419, - 3,260,130,0,3418,3417,1,0,0,0,3418,3419,1,0,0,0,3419,3420,1,0,0, - 0,3420,3421,5,89,0,0,3421,3422,5,40,0,0,3422,3491,1,0,0,0,3423,3424, - 5,120,0,0,3424,3425,3,154,77,0,3425,3426,5,266,0,0,3426,3430,3,264, - 132,0,3427,3429,3,258,129,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,3434,1,0,0,0,3432,3430, - 1,0,0,0,3433,3435,3,260,130,0,3434,3433,1,0,0,0,3434,3435,1,0,0, - 0,3435,3436,1,0,0,0,3436,3437,5,89,0,0,3437,3438,5,120,0,0,3438, - 3491,1,0,0,0,3439,3440,5,136,0,0,3440,3491,3,314,157,0,3441,3442, - 5,152,0,0,3442,3491,3,314,157,0,3443,3449,5,32,0,0,3444,3445,3,262, - 131,0,3445,3446,5,326,0,0,3446,3448,1,0,0,0,3447,3444,1,0,0,0,3448, - 3451,1,0,0,0,3449,3447,1,0,0,0,3449,3450,1,0,0,0,3450,3453,1,0,0, - 0,3451,3449,1,0,0,0,3452,3454,3,264,132,0,3453,3452,1,0,0,0,3453, - 3454,1,0,0,0,3454,3455,1,0,0,0,3455,3491,5,89,0,0,3456,3457,3,314, - 157,0,3457,3458,5,10,0,0,3458,3460,1,0,0,0,3459,3456,1,0,0,0,3459, - 3460,1,0,0,0,3460,3461,1,0,0,0,3461,3462,5,162,0,0,3462,3463,3,264, - 132,0,3463,3464,5,89,0,0,3464,3465,5,162,0,0,3465,3491,1,0,0,0,3466, - 3467,3,314,157,0,3467,3468,5,10,0,0,3468,3470,1,0,0,0,3469,3466, - 1,0,0,0,3469,3470,1,0,0,0,3470,3471,1,0,0,0,3471,3472,5,303,0,0, - 3472,3473,3,154,77,0,3473,3474,5,82,0,0,3474,3475,3,264,132,0,3475, - 3476,5,89,0,0,3476,3477,5,303,0,0,3477,3491,1,0,0,0,3478,3479,3, - 314,157,0,3479,3480,5,10,0,0,3480,3482,1,0,0,0,3481,3478,1,0,0,0, - 3481,3482,1,0,0,0,3482,3483,1,0,0,0,3483,3484,5,225,0,0,3484,3485, - 3,264,132,0,3485,3486,5,287,0,0,3486,3487,3,154,77,0,3487,3488,5, - 89,0,0,3488,3489,5,225,0,0,3489,3491,1,0,0,0,3490,3391,1,0,0,0,3490, - 3393,1,0,0,0,3490,3398,1,0,0,0,3490,3411,1,0,0,0,3490,3423,1,0,0, - 0,3490,3439,1,0,0,0,3490,3441,1,0,0,0,3490,3443,1,0,0,0,3490,3459, - 1,0,0,0,3490,3469,1,0,0,0,3490,3481,1,0,0,0,3491,255,1,0,0,0,3492, - 3493,5,301,0,0,3493,3494,3,154,77,0,3494,3495,5,266,0,0,3495,3496, - 3,264,132,0,3496,257,1,0,0,0,3497,3498,5,87,0,0,3498,3499,3,154, - 77,0,3499,3500,5,266,0,0,3500,3501,3,264,132,0,3501,259,1,0,0,0, - 3502,3503,5,85,0,0,3503,3504,3,264,132,0,3504,261,1,0,0,0,3505,3506, - 5,70,0,0,3506,3511,3,314,157,0,3507,3508,5,3,0,0,3508,3510,3,314, - 157,0,3509,3507,1,0,0,0,3510,3513,1,0,0,0,3511,3509,1,0,0,0,3511, - 3512,1,0,0,0,3512,3514,1,0,0,0,3513,3511,1,0,0,0,3514,3517,3,202, - 101,0,3515,3516,5,71,0,0,3516,3518,3,160,80,0,3517,3515,1,0,0,0, - 3517,3518,1,0,0,0,3518,263,1,0,0,0,3519,3520,3,254,127,0,3520,3521, - 5,326,0,0,3521,3523,1,0,0,0,3522,3519,1,0,0,0,3523,3524,1,0,0,0, - 3524,3522,1,0,0,0,3524,3525,1,0,0,0,3525,265,1,0,0,0,3526,3533,5, - 54,0,0,3527,3533,5,249,0,0,3528,3533,5,74,0,0,3529,3533,5,128,0, - 0,3530,3533,5,288,0,0,3531,3533,3,314,157,0,3532,3526,1,0,0,0,3532, - 3527,1,0,0,0,3532,3528,1,0,0,0,3532,3529,1,0,0,0,3532,3530,1,0,0, - 0,3532,3531,1,0,0,0,3533,267,1,0,0,0,3534,3538,5,261,0,0,3535,3538, - 5,244,0,0,3536,3538,3,314,157,0,3537,3534,1,0,0,0,3537,3535,1,0, - 0,0,3537,3536,1,0,0,0,3538,269,1,0,0,0,3539,3541,3,268,134,0,3540, - 3539,1,0,0,0,3540,3541,1,0,0,0,3541,3542,1,0,0,0,3542,3543,3,300, - 150,0,3543,271,1,0,0,0,3544,3547,3,274,137,0,3545,3547,3,278,139, - 0,3546,3544,1,0,0,0,3546,3545,1,0,0,0,3547,273,1,0,0,0,3548,3560, - 3,314,157,0,3549,3550,3,314,157,0,3550,3551,5,4,0,0,3551,3552,3, - 314,157,0,3552,3560,1,0,0,0,3553,3554,3,314,157,0,3554,3555,5,4, - 0,0,3555,3556,3,314,157,0,3556,3557,5,4,0,0,3557,3558,3,314,157, - 0,3558,3560,1,0,0,0,3559,3548,1,0,0,0,3559,3549,1,0,0,0,3559,3553, - 1,0,0,0,3560,275,1,0,0,0,3561,3573,3,314,157,0,3562,3563,3,314,157, - 0,3563,3564,5,4,0,0,3564,3565,3,314,157,0,3565,3573,1,0,0,0,3566, - 3567,3,314,157,0,3567,3568,5,4,0,0,3568,3569,3,314,157,0,3569,3570, - 5,4,0,0,3570,3571,3,314,157,0,3571,3573,1,0,0,0,3572,3561,1,0,0, - 0,3572,3562,1,0,0,0,3572,3566,1,0,0,0,3573,277,1,0,0,0,3574,3586, - 3,314,157,0,3575,3576,3,314,157,0,3576,3577,5,4,0,0,3577,3578,3, - 314,157,0,3578,3586,1,0,0,0,3579,3580,3,314,157,0,3580,3581,5,4, - 0,0,3581,3582,3,314,157,0,3582,3583,5,4,0,0,3583,3584,3,314,157, - 0,3584,3586,1,0,0,0,3585,3574,1,0,0,0,3585,3575,1,0,0,0,3585,3579, - 1,0,0,0,3586,279,1,0,0,0,3587,3599,3,314,157,0,3588,3589,3,314,157, - 0,3589,3590,5,4,0,0,3590,3591,3,314,157,0,3591,3599,1,0,0,0,3592, - 3593,3,314,157,0,3593,3594,5,4,0,0,3594,3595,3,314,157,0,3595,3596, - 5,4,0,0,3596,3597,3,314,157,0,3597,3599,1,0,0,0,3598,3587,1,0,0, - 0,3598,3588,1,0,0,0,3598,3592,1,0,0,0,3599,281,1,0,0,0,3600,3606, - 3,314,157,0,3601,3602,3,314,157,0,3602,3603,5,4,0,0,3603,3604,3, - 314,157,0,3604,3606,1,0,0,0,3605,3600,1,0,0,0,3605,3601,1,0,0,0, - 3606,283,1,0,0,0,3607,3613,3,314,157,0,3608,3609,3,314,157,0,3609, - 3610,5,4,0,0,3610,3611,3,314,157,0,3611,3613,1,0,0,0,3612,3607,1, - 0,0,0,3612,3608,1,0,0,0,3613,285,1,0,0,0,3614,3615,3,314,157,0,3615, - 287,1,0,0,0,3616,3617,3,314,157,0,3617,289,1,0,0,0,3618,3619,3,300, - 150,0,3619,291,1,0,0,0,3620,3621,3,300,150,0,3621,293,1,0,0,0,3622, - 3625,3,300,150,0,3623,3625,4,147,14,0,3624,3622,1,0,0,0,3624,3623, - 1,0,0,0,3625,295,1,0,0,0,3626,3627,3,300,150,0,3627,297,1,0,0,0, - 3628,3629,3,314,157,0,3629,299,1,0,0,0,3630,3635,3,314,157,0,3631, - 3632,5,4,0,0,3632,3634,3,314,157,0,3633,3631,1,0,0,0,3634,3637,1, - 0,0,0,3635,3633,1,0,0,0,3635,3636,1,0,0,0,3636,301,1,0,0,0,3637, - 3635,1,0,0,0,3638,3639,5,104,0,0,3639,3640,3,304,152,0,3640,3641, - 5,28,0,0,3641,3642,5,188,0,0,3642,3643,3,160,80,0,3643,303,1,0,0, - 0,3644,3645,7,34,0,0,3645,305,1,0,0,0,3646,3650,3,308,154,0,3647, - 3650,5,65,0,0,3648,3650,5,61,0,0,3649,3646,1,0,0,0,3649,3647,1,0, - 0,0,3649,3648,1,0,0,0,3650,307,1,0,0,0,3651,3657,3,314,157,0,3652, - 3653,5,290,0,0,3653,3657,3,314,157,0,3654,3655,5,236,0,0,3655,3657, - 3,314,157,0,3656,3651,1,0,0,0,3656,3652,1,0,0,0,3656,3654,1,0,0, - 0,3657,309,1,0,0,0,3658,3663,3,314,157,0,3659,3660,5,3,0,0,3660, - 3662,3,314,157,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,311,1,0,0,0,3665,3663,1,0,0,0,3666, - 3674,5,54,0,0,3667,3674,5,249,0,0,3668,3674,5,74,0,0,3669,3674,5, - 128,0,0,3670,3674,5,288,0,0,3671,3674,5,94,0,0,3672,3674,3,314,157, - 0,3673,3666,1,0,0,0,3673,3667,1,0,0,0,3673,3668,1,0,0,0,3673,3669, - 1,0,0,0,3673,3670,1,0,0,0,3673,3671,1,0,0,0,3673,3672,1,0,0,0,3674, - 313,1,0,0,0,3675,3681,5,333,0,0,3676,3681,5,335,0,0,3677,3681,3, - 320,160,0,3678,3681,5,336,0,0,3679,3681,5,334,0,0,3680,3675,1,0, - 0,0,3680,3676,1,0,0,0,3680,3677,1,0,0,0,3680,3678,1,0,0,0,3680,3679, - 1,0,0,0,3681,315,1,0,0,0,3682,3684,5,320,0,0,3683,3682,1,0,0,0,3683, - 3684,1,0,0,0,3684,3685,1,0,0,0,3685,3695,5,331,0,0,3686,3688,5,320, - 0,0,3687,3686,1,0,0,0,3687,3688,1,0,0,0,3688,3689,1,0,0,0,3689,3695, - 5,332,0,0,3690,3692,5,320,0,0,3691,3690,1,0,0,0,3691,3692,1,0,0, - 0,3692,3693,1,0,0,0,3693,3695,5,330,0,0,3694,3683,1,0,0,0,3694,3687, - 1,0,0,0,3694,3691,1,0,0,0,3695,317,1,0,0,0,3696,3699,3,314,157,0, - 3697,3699,3,186,93,0,3698,3696,1,0,0,0,3698,3697,1,0,0,0,3699,319, - 1,0,0,0,3700,3701,7,35,0,0,3701,321,1,0,0,0,478,325,334,338,342, - 346,350,363,370,374,378,384,388,395,400,404,410,414,433,439,443, - 447,451,459,463,466,471,477,486,492,496,502,509,517,529,538,547, - 553,564,572,580,587,597,604,612,627,662,665,668,671,677,682,689, - 695,699,703,711,717,721,725,739,747,766,791,794,801,808,817,821, - 828,836,845,851,856,860,868,873,882,888,895,904,910,914,920,927, - 932,945,950,962,966,972,981,986,992,1020,1026,1028,1034,1040,1042, - 1050,1052,1062,1064,1079,1084,1091,1101,1107,1109,1117,1119,1144, - 1147,1151,1155,1173,1176,1187,1190,1206,1216,1220,1226,1229,1238, - 1250,1253,1263,1267,1273,1280,1285,1291,1295,1299,1305,1316,1325, - 1335,1338,1343,1345,1352,1358,1360,1364,1374,1380,1383,1385,1397, - 1404,1408,1411,1415,1419,1428,1431,1434,1439,1442,1450,1453,1466, - 1470,1477,1485,1496,1499,1509,1512,1523,1528,1536,1539,1543,1547, - 1556,1561,1570,1573,1576,1580,1591,1594,1597,1602,1605,1634,1638, - 1642,1646,1650,1654,1656,1667,1672,1681,1690,1693,1699,1707,1716, - 1719,1727,1730,1733,1738,1741,1753,1756,1764,1769,1773,1775,1777, - 1792,1794,1805,1826,1836,1847,1851,1853,1861,1872,1883,1890,1897, - 1910,1916,1938,1953,1958,1962,1972,1978,1984,1992,1997,2004,2006, - 2012,2018,2022,2027,2036,2041,2055,2065,2068,2077,2082,2087,2089, - 2098,2101,2109,2112,2119,2124,2131,2135,2137,2145,2155,2161,2163, - 2170,2174,2176,2183,2187,2189,2191,2200,2211,2215,2225,2235,2239, - 2247,2249,2262,2270,2279,2285,2293,2299,2303,2308,2313,2319,2333, - 2335,2365,2376,2384,2389,2394,2407,2413,2416,2423,2428,2431,2434, - 2439,2446,2449,2458,2461,2465,2468,2471,2486,2489,2508,2512,2520, - 2524,2549,2552,2561,2567,2573,2579,2588,2591,2594,2613,2622,2640, - 2656,2659,2669,2678,2684,2690,2701,2703,2708,2715,2717,2723,2729, - 2740,2749,2754,2759,2761,2763,2769,2771,2781,2790,2792,2798,2800, - 2803,2813,2815,2823,2831,2834,2839,2844,2856,2860,2864,2867,2869, - 2877,2880,2890,2898,2904,2906,2914,2924,2930,2944,2953,2960,2965, - 2972,2977,3000,3005,3007,3014,3018,3025,3029,3045,3060,3067,3076, - 3086,3091,3100,3105,3113,3121,3124,3130,3133,3140,3148,3151,3159, - 3162,3188,3199,3204,3211,3213,3226,3241,3245,3249,3253,3259,3263, - 3267,3271,3273,3283,3290,3299,3306,3313,3320,3329,3341,3344,3355, - 3358,3363,3373,3389,3403,3406,3415,3418,3430,3434,3449,3453,3459, - 3469,3481,3490,3511,3517,3524,3532,3537,3540,3546,3559,3572,3585, - 3598,3605,3612,3624,3635,3649,3656,3663,3673,3680,3683,3687,3691, - 3694,3698 + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 5,8,667,8,8,10,8,12,8,670,9,8,3,8,672,8,8,1,8,3,8,675,8,8,1,8,3, + 8,678,8,8,1,8,1,8,1,8,1,8,3,8,684,8,8,1,8,1,8,1,8,3,8,689,8,8,1, + 8,1,8,1,8,1,8,1,8,3,8,696,8,8,1,8,1,8,1,8,1,8,3,8,702,8,8,1,8,1, + 8,3,8,706,8,8,1,8,1,8,3,8,710,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,718, + 8,8,1,8,1,8,1,8,1,8,3,8,724,8,8,1,8,1,8,3,8,728,8,8,1,8,1,8,3,8, + 732,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,746, + 8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,754,8,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,773,8,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,5,8,796,8,8,10,8,12,8,799,9,8,3,8,801,8,8,1,8,1,8,1, + 8,1,8,1,8,3,8,808,8,8,1,8,1,8,1,8,1,8,1,8,3,8,815,8,8,1,8,1,8,1, + 8,1,8,1,8,1,8,1,8,3,8,824,8,8,1,8,1,8,3,8,828,8,8,1,8,1,8,1,8,1, + 8,1,8,3,8,835,8,8,1,8,1,8,1,8,1,8,5,8,841,8,8,10,8,12,8,844,9,8, + 1,8,1,8,1,8,1,8,5,8,850,8,8,10,8,12,8,853,9,8,1,8,1,8,1,8,3,8,858, + 8,8,1,8,1,8,1,8,3,8,863,8,8,1,8,1,8,3,8,867,8,8,1,8,1,8,1,8,1,8, + 5,8,873,8,8,10,8,12,8,876,9,8,1,8,1,8,3,8,880,8,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,3,8,889,8,8,1,8,1,8,1,8,1,8,3,8,895,8,8,1,8,1,8,1, + 8,5,8,900,8,8,10,8,12,8,903,9,8,1,8,1,8,1,8,1,8,5,8,909,8,8,10,8, + 12,8,912,9,8,1,8,1,8,1,8,3,8,917,8,8,1,8,1,8,3,8,921,8,8,1,8,1,8, + 1,8,1,8,3,8,927,8,8,1,8,1,8,1,8,5,8,932,8,8,10,8,12,8,935,9,8,1, + 8,1,8,3,8,939,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,950,8, + 8,10,8,12,8,953,9,8,1,8,1,8,3,8,957,8,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,3,8,969,8,8,1,8,1,8,3,8,973,8,8,1,8,1,8,1,8,1,8, + 3,8,979,8,8,1,8,1,8,1,8,1,8,1,8,5,8,986,8,8,10,8,12,8,989,9,8,1, + 8,1,8,3,8,993,8,8,1,8,1,8,1,8,1,8,3,8,999,8,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,1,8,1,8,3,8,1027,8,8,1,8,1,8,1,8,1,8,3,8,1033,8,8, + 3,8,1035,8,8,1,8,1,8,1,8,1,8,3,8,1041,8,8,1,8,1,8,1,8,1,8,3,8,1047, + 8,8,3,8,1049,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1057,8,8,3,8,1059,8, + 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1069,8,8,3,8,1071,8,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1086,8,8,1,8, + 1,8,1,8,3,8,1091,8,8,1,8,1,8,1,8,1,8,1,8,3,8,1098,8,8,1,8,1,8,1, + 8,1,8,1,8,1,8,1,8,1,8,3,8,1108,8,8,1,8,1,8,1,8,1,8,3,8,1114,8,8, + 3,8,1116,8,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1124,8,8,3,8,1126,8,8,1, + 8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,1,8,5,8,1149,8,8,10,8,12,8,1152,9,8,3,8,1154,8,8,1, + 8,1,8,3,8,1158,8,8,1,8,1,8,3,8,1162,8,8,1,8,1,8,1,8,1,8,1,8,1,8, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1178,8,8,10,8,12,8,1181,9,8, + 3,8,1183,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1192,8,8,10,8,12,8, + 1195,9,8,3,8,1197,8,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1, + 8,1,8,1,8,1,8,3,8,1213,8,8,1,8,1,8,1,8,1,8,1,8,1,8,5,8,1221,8,8, + 10,8,12,8,1224,9,8,1,8,3,8,1227,8,8,1,8,1,8,1,8,1,8,3,8,1233,8,8, + 1,8,3,8,1236,8,8,1,8,1,8,1,8,1,8,1,8,4,8,1243,8,8,11,8,12,8,1244, + 1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,1,8,3,8,1257,8,8,1,9,3,9,1260, + 8,9,1,9,1,9,1,10,1,10,1,10,1,10,5,10,1268,8,10,10,10,12,10,1271, + 9,10,1,11,3,11,1274,8,11,1,11,1,11,1,12,1,12,3,12,1280,8,12,1,12, + 1,12,1,12,5,12,1285,8,12,10,12,12,12,1288,9,12,1,13,1,13,3,13,1292, + 8,13,1,14,1,14,1,14,1,14,3,14,1298,8,14,1,14,1,14,3,14,1302,8,14, + 1,14,1,14,3,14,1306,8,14,1,15,1,15,1,15,1,15,3,15,1312,8,15,1,16, + 1,16,1,16,1,16,1,17,1,17,1,17,5,17,1321,8,17,10,17,12,17,1324,9, + 17,1,18,1,18,1,18,1,18,1,19,1,19,3,19,1332,8,19,1,20,1,20,1,20,1, + 20,1,20,1,20,5,20,1340,8,20,10,20,12,20,1343,9,20,3,20,1345,8,20, + 1,20,1,20,1,20,3,20,1350,8,20,3,20,1352,8,20,1,20,1,20,1,20,1,20, + 1,20,3,20,1359,8,20,1,20,1,20,1,20,1,20,3,20,1365,8,20,3,20,1367, + 8,20,1,21,1,21,3,21,1371,8,21,1,22,1,22,1,23,1,23,1,23,1,23,1,23, + 1,23,3,23,1381,8,23,1,23,1,23,1,23,1,23,3,23,1387,8,23,1,23,5,23, + 1390,8,23,10,23,12,23,1393,9,23,1,24,1,24,1,24,1,24,1,24,1,24,1, + 24,5,24,1402,8,24,10,24,12,24,1405,9,24,1,24,1,24,1,24,1,24,3,24, + 1411,8,24,1,25,1,25,3,25,1415,8,25,1,25,3,25,1418,8,25,1,25,1,25, + 3,25,1422,8,25,1,26,1,26,3,26,1426,8,26,1,26,1,26,1,26,1,26,1,26, + 5,26,1433,8,26,10,26,12,26,1436,9,26,3,26,1438,8,26,1,26,3,26,1441, + 8,26,1,26,1,26,1,26,3,26,1446,8,26,1,26,3,26,1449,8,26,1,26,1,26, + 1,26,1,26,5,26,1455,8,26,10,26,12,26,1458,9,26,3,26,1460,8,26,1, + 27,1,27,1,27,1,28,1,28,1,28,1,29,1,29,1,29,5,29,1471,8,29,10,29, + 12,29,1474,9,29,1,30,3,30,1477,8,30,1,30,1,30,1,30,5,30,1482,8,30, + 10,30,12,30,1485,9,30,1,31,1,31,1,31,5,31,1490,8,31,10,31,12,31, + 1493,9,31,1,32,1,32,1,32,1,32,1,32,1,32,5,32,1501,8,32,10,32,12, + 32,1504,9,32,3,32,1506,8,32,1,32,1,32,1,32,1,32,1,32,1,32,5,32,1514, + 8,32,10,32,12,32,1517,9,32,3,32,1519,8,32,1,32,1,32,1,32,1,32,1, + 32,1,32,1,32,5,32,1528,8,32,10,32,12,32,1531,9,32,1,32,1,32,3,32, + 1535,8,32,1,33,1,33,1,33,1,33,5,33,1541,8,33,10,33,12,33,1544,9, + 33,3,33,1546,8,33,1,33,1,33,3,33,1550,8,33,1,34,1,34,3,34,1554,8, + 34,1,35,1,35,1,35,1,35,1,35,1,35,1,36,3,36,1563,8,36,1,36,1,36,1, + 36,3,36,1568,8,36,1,36,1,36,1,36,1,36,1,36,5,36,1575,8,36,10,36, + 12,36,1578,9,36,3,36,1580,8,36,1,36,3,36,1583,8,36,1,37,1,37,3,37, + 1587,8,37,1,37,1,37,1,37,1,37,1,37,1,38,1,38,1,39,1,39,3,39,1598, + 8,39,1,39,3,39,1601,8,39,1,39,3,39,1604,8,39,1,39,1,39,1,39,3,39, + 1609,8,39,1,39,3,39,1612,8,39,1,40,1,40,1,41,1,41,1,41,1,41,1,42, + 1,42,1,43,1,43,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44, + 1,44,1,44,1,44,1,44,1,44,1,44,1,44,3,44,1641,8,44,5,44,1643,8,44, + 10,44,12,44,1646,9,44,1,45,3,45,1649,8,45,1,45,1,45,3,45,1653,8, + 45,1,45,1,45,3,45,1657,8,45,1,45,1,45,3,45,1661,8,45,3,45,1663,8, + 45,1,46,1,46,1,46,1,46,3,46,1669,8,46,1,46,1,46,1,46,1,46,1,46,5, + 46,1676,8,46,10,46,12,46,1679,9,46,1,46,1,46,3,46,1683,8,46,1,47, + 1,47,1,47,1,47,1,48,1,48,1,48,1,48,1,48,1,48,3,48,1695,8,48,1,49, + 1,49,1,49,1,49,1,49,1,49,1,49,3,49,1704,8,49,1,50,1,50,1,51,1,51, + 1,52,1,52,1,52,3,52,1713,8,52,1,52,3,52,1716,8,52,1,53,1,53,1,53, + 1,53,3,53,1722,8,53,1,54,1,54,1,54,1,54,1,54,1,54,3,54,1730,8,54, + 1,54,1,54,1,54,1,54,1,54,5,54,1737,8,54,10,54,12,54,1740,9,54,3, + 54,1742,8,54,1,54,1,54,1,54,1,54,5,54,1748,8,54,10,54,12,54,1751, + 9,54,3,54,1753,8,54,1,54,3,54,1756,8,54,1,54,1,54,1,54,3,54,1761, + 8,54,1,54,3,54,1764,8,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54, + 5,54,1774,8,54,10,54,12,54,1777,9,54,3,54,1779,8,54,1,54,1,54,1, + 54,1,54,5,54,1785,8,54,10,54,12,54,1788,9,54,1,54,1,54,3,54,1792, + 8,54,1,54,1,54,3,54,1796,8,54,3,54,1798,8,54,3,54,1800,8,54,1,55, + 1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56, + 1815,8,56,3,56,1817,8,56,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57, + 1,57,3,57,1828,8,57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, + 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,1849,8,58, + 1,59,1,59,1,59,1,59,1,59,1,59,5,59,1857,8,59,10,59,12,59,1860,9, + 59,1,59,1,59,1,60,1,60,1,60,1,60,1,61,1,61,3,61,1870,8,61,1,61,1, + 61,3,61,1874,8,61,3,61,1876,8,61,1,62,1,62,1,62,1,62,5,62,1882,8, + 62,10,62,12,62,1885,9,62,1,62,1,62,1,63,1,63,1,63,1,63,5,63,1893, + 8,63,10,63,12,63,1896,9,63,1,63,1,63,1,64,1,64,1,64,1,64,5,64,1904, + 8,64,10,64,12,64,1907,9,64,1,64,1,64,1,65,1,65,3,65,1913,8,65,1, + 65,1,65,1,65,1,65,1,65,3,65,1920,8,65,1,66,1,66,1,66,1,66,1,66,1, + 66,1,66,1,66,1,66,5,66,1931,8,66,10,66,12,66,1934,9,66,1,66,1,66, + 1,66,3,66,1939,8,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66, + 1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,5,66,1959,8,66,10,66, + 12,66,1962,9,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66, + 1,66,1,66,3,66,1976,8,66,1,66,1,66,1,66,3,66,1981,8,66,1,66,1,66, + 3,66,1985,8,66,1,67,1,67,1,67,1,67,1,67,1,67,1,67,1,67,3,67,1995, + 8,67,1,67,1,67,1,67,1,67,3,67,2001,8,67,1,67,1,67,1,67,1,67,3,67, + 2007,8,67,1,67,1,67,1,67,1,67,1,67,1,67,3,67,2015,8,67,1,67,1,67, + 1,67,3,67,2020,8,67,1,67,1,67,1,67,1,67,1,67,3,67,2027,8,67,3,67, + 2029,8,67,1,67,1,67,1,67,1,67,3,67,2035,8,67,1,67,1,67,1,67,1,67, + 3,67,2041,8,67,1,67,1,67,3,67,2045,8,67,1,67,1,67,1,67,3,67,2050, + 8,67,1,67,1,67,1,67,1,67,1,67,5,67,2057,8,67,10,67,12,67,2060,9, + 67,1,67,1,67,3,67,2064,8,67,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1, + 68,1,68,1,68,5,68,2076,8,68,10,68,12,68,2079,9,68,1,68,1,68,1,68, + 1,68,1,68,5,68,2086,8,68,10,68,12,68,2089,9,68,3,68,2091,8,68,1, + 69,1,69,1,70,1,70,1,70,1,70,1,70,3,70,2100,8,70,1,71,1,71,1,71,3, + 71,2105,8,71,1,71,1,71,1,71,3,71,2110,8,71,3,71,2112,8,71,1,72,1, + 72,1,72,1,72,1,72,5,72,2119,8,72,10,72,12,72,2122,9,72,3,72,2124, + 8,72,1,72,1,72,1,72,1,72,5,72,2130,8,72,10,72,12,72,2133,9,72,3, + 72,2135,8,72,1,72,1,72,1,73,1,73,1,73,3,73,2142,8,73,1,73,1,73,1, + 73,3,73,2147,8,73,1,74,1,74,1,74,1,74,1,74,3,74,2154,8,74,1,74,1, + 74,3,74,2158,8,74,3,74,2160,8,74,1,74,1,74,1,74,1,74,1,74,1,74,3, + 74,2168,8,74,1,74,1,74,1,74,1,74,1,74,1,74,5,74,2176,8,74,10,74, + 12,74,2179,9,74,1,74,1,74,1,74,3,74,2184,8,74,3,74,2186,8,74,1,75, + 1,75,1,75,1,75,1,75,3,75,2193,8,75,1,75,1,75,3,75,2197,8,75,3,75, + 2199,8,75,1,75,1,75,1,75,1,75,1,75,3,75,2206,8,75,1,75,1,75,3,75, + 2210,8,75,3,75,2212,8,75,3,75,2214,8,75,1,76,1,76,1,76,1,76,1,76, + 5,76,2221,8,76,10,76,12,76,2224,9,76,1,76,1,76,1,76,1,76,1,76,1, + 76,1,76,1,76,3,76,2234,8,76,1,77,1,77,3,77,2238,8,77,1,78,1,78,1, + 78,1,78,1,78,1,78,5,78,2246,8,78,10,78,12,78,2249,9,78,1,78,1,78, + 1,79,1,79,1,80,1,80,1,80,3,80,2258,8,80,1,80,1,80,3,80,2262,8,80, + 1,80,1,80,1,80,1,80,1,80,1,80,5,80,2270,8,80,10,80,12,80,2273,9, + 80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,3,81,2285,8, + 81,1,81,1,81,1,81,1,81,1,81,1,81,3,81,2293,8,81,1,81,1,81,1,81,1, + 81,1,81,5,81,2300,8,81,10,81,12,81,2303,9,81,1,81,1,81,1,81,3,81, + 2308,8,81,1,81,1,81,1,81,1,81,1,81,1,81,3,81,2316,8,81,1,81,1,81, + 1,81,1,81,3,81,2322,8,81,1,81,1,81,3,81,2326,8,81,1,81,1,81,1,81, + 3,81,2331,8,81,1,81,1,81,1,81,3,81,2336,8,81,1,82,1,82,1,82,1,82, + 3,82,2342,8,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82, + 1,82,1,82,5,82,2356,8,82,10,82,12,82,2359,9,82,1,83,1,83,1,83,1, + 83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1, + 83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,4,83,2386,8,83,11,83, + 12,83,2387,1,83,1,83,1,83,1,83,1,83,1,83,1,83,5,83,2397,8,83,10, + 83,12,83,2400,9,83,1,83,1,83,1,83,1,83,1,83,3,83,2407,8,83,1,83, + 1,83,1,83,3,83,2412,8,83,1,83,1,83,1,83,3,83,2417,8,83,1,83,1,83, + 1,83,1,83,1,83,1,83,1,83,1,83,1,83,5,83,2428,8,83,10,83,12,83,2431, + 9,83,1,83,1,83,1,83,3,83,2436,8,83,1,83,3,83,2439,8,83,1,83,1,83, + 1,83,1,83,1,83,3,83,2446,8,83,1,83,1,83,1,83,3,83,2451,8,83,1,83, + 3,83,2454,8,83,1,83,3,83,2457,8,83,1,83,1,83,1,83,3,83,2462,8,83, + 1,83,1,83,1,83,5,83,2467,8,83,10,83,12,83,2470,9,83,3,83,2472,8, + 83,1,83,1,83,1,83,1,83,1,83,5,83,2479,8,83,10,83,12,83,2482,9,83, + 3,83,2484,8,83,1,83,1,83,3,83,2488,8,83,1,83,3,83,2491,8,83,1,83, + 3,83,2494,8,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83, + 1,83,5,83,2507,8,83,10,83,12,83,2510,9,83,3,83,2512,8,83,1,83,1, + 83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1, + 83,4,83,2529,8,83,11,83,12,83,2530,1,83,1,83,3,83,2535,8,83,1,83, + 1,83,1,83,1,83,4,83,2541,8,83,11,83,12,83,2542,1,83,1,83,3,83,2547, + 8,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83, + 1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,5,83,2570,8,83,10,83, + 12,83,2573,9,83,3,83,2575,8,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83, + 3,83,2584,8,83,1,83,1,83,1,83,1,83,3,83,2590,8,83,1,83,1,83,1,83, + 1,83,3,83,2596,8,83,1,83,1,83,1,83,1,83,3,83,2602,8,83,1,83,1,83, + 1,83,1,83,1,83,1,83,1,83,3,83,2611,8,83,1,83,3,83,2614,8,83,1,83, + 3,83,2617,8,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83, + 1,83,1,83,1,83,1,83,1,83,1,83,1,83,3,83,2636,8,83,1,83,1,83,1,83, + 1,83,1,83,1,83,1,83,3,83,2645,8,83,1,83,1,83,1,83,1,83,1,83,1,83, + 1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,5,83,2661,8,83,10,83,12, + 83,2664,9,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1, + 83,5,83,2677,8,83,10,83,12,83,2680,9,83,3,83,2682,8,83,1,83,1,83, + 1,83,1,83,1,83,1,83,1,83,1,83,3,83,2692,8,83,1,83,1,83,1,83,1,83, + 1,83,1,83,1,83,3,83,2701,8,83,1,83,1,83,1,83,1,83,3,83,2707,8,83, + 1,83,1,83,1,83,1,83,3,83,2713,8,83,1,83,1,83,1,83,1,83,1,83,1,83, + 1,83,1,83,1,83,3,83,2724,8,83,3,83,2726,8,83,1,83,1,83,1,83,3,83, + 2731,8,83,1,83,1,83,1,83,1,83,1,83,3,83,2738,8,83,3,83,2740,8,83, + 1,83,1,83,1,83,1,83,3,83,2746,8,83,1,83,1,83,1,83,1,83,3,83,2752, + 8,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,5,83,2761,8,83,10,83,12, + 83,2764,9,83,1,83,1,83,1,83,1,83,1,83,1,83,3,83,2772,8,83,1,83,1, + 83,1,83,3,83,2777,8,83,1,83,1,83,1,83,3,83,2782,8,83,3,83,2784,8, + 83,3,83,2786,8,83,1,83,1,83,1,83,1,83,3,83,2792,8,83,3,83,2794,8, + 83,1,83,1,83,1,83,1,83,1,83,1,83,5,83,2802,8,83,10,83,12,83,2805, + 9,83,1,83,1,83,1,83,1,83,1,83,1,83,3,83,2813,8,83,3,83,2815,8,83, + 1,83,1,83,1,83,1,83,3,83,2821,8,83,3,83,2823,8,83,1,83,3,83,2826, + 8,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,5,83,2836,8,83,10,83, + 12,83,2839,9,83,1,84,1,84,1,84,1,84,1,84,3,84,2846,8,84,1,84,1,84, + 1,84,1,84,5,84,2852,8,84,10,84,12,84,2855,9,84,3,84,2857,8,84,1, + 85,1,85,1,85,3,85,2862,8,85,1,86,1,86,1,86,3,86,2867,8,86,1,87,1, + 87,1,87,1,87,1,88,1,88,1,89,1,89,1,89,1,89,3,89,2879,8,89,1,90,1, + 90,3,90,2883,8,90,1,90,1,90,3,90,2887,8,90,1,90,3,90,2890,8,90,3, + 90,2892,8,90,1,91,1,91,1,91,1,91,1,91,1,91,3,91,2900,8,91,1,92,3, + 92,2903,8,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,3,92,2913,8, + 92,1,93,1,93,1,94,1,94,1,94,1,94,3,94,2921,8,94,1,95,1,95,1,95,1, + 95,3,95,2927,8,95,3,95,2929,8,95,1,96,1,96,1,96,1,96,1,96,1,96,3, + 96,2937,8,96,1,97,1,97,1,98,1,98,1,99,1,99,1,100,1,100,3,100,2947, + 8,100,1,100,1,100,1,100,1,100,3,100,2953,8,100,1,101,1,101,1,102, + 1,102,1,103,1,103,1,103,1,103,1,103,1,103,5,103,2965,8,103,10,103, + 12,103,2968,9,103,1,103,1,103,1,103,1,103,1,103,1,103,3,103,2976, + 8,103,1,103,1,103,1,103,1,103,1,103,3,103,2983,8,103,1,103,1,103, + 1,103,3,103,2988,8,103,1,103,1,103,1,103,1,103,1,103,3,103,2995, + 8,103,1,103,1,103,1,103,3,103,3000,8,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,5,103,3021,8,103,10,103,12,103,3024,9,103, + 1,103,1,103,3,103,3028,8,103,3,103,3030,8,103,1,103,1,103,1,103, + 1,103,1,103,3,103,3037,8,103,5,103,3039,8,103,10,103,12,103,3042, + 9,103,1,104,1,104,1,104,1,104,3,104,3048,8,104,1,105,1,105,3,105, + 3052,8,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,3,108,3068,8,108,1,108,1,108,1,108, + 1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,108,5,108,3081,8,108, + 10,108,12,108,3084,9,108,1,108,1,108,1,108,1,108,3,108,3090,8,108, + 1,108,1,108,1,108,1,108,1,108,1,108,1,108,3,108,3099,8,108,1,108, + 1,108,1,108,1,108,1,108,1,108,5,108,3107,8,108,10,108,12,108,3110, + 9,108,1,108,1,108,3,108,3114,8,108,1,108,1,108,1,108,1,108,1,108, + 5,108,3121,8,108,10,108,12,108,3124,9,108,1,108,1,108,3,108,3128, + 8,108,1,109,1,109,1,109,1,109,1,109,1,109,3,109,3136,8,109,1,110, + 1,110,1,110,1,110,5,110,3142,8,110,10,110,12,110,3145,9,110,3,110, + 3147,8,110,1,110,1,110,1,110,1,110,3,110,3153,8,110,1,110,3,110, + 3156,8,110,1,110,1,110,1,110,1,110,1,110,3,110,3163,8,110,1,110, + 1,110,1,110,1,110,5,110,3169,8,110,10,110,12,110,3172,9,110,3,110, + 3174,8,110,1,110,1,110,1,110,1,110,5,110,3180,8,110,10,110,12,110, + 3183,9,110,3,110,3185,8,110,1,111,1,111,1,111,1,111,1,111,1,111, + 1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,111, + 1,111,1,111,1,111,1,111,1,111,1,111,1,111,3,111,3211,8,111,1,112, + 1,112,1,112,1,112,1,112,1,112,1,112,1,112,1,112,3,112,3222,8,112, + 1,113,1,113,1,113,3,113,3227,8,113,1,113,1,113,1,113,1,113,1,113, + 5,113,3234,8,113,10,113,12,113,3237,9,113,1,114,1,114,1,114,1,114, + 1,114,1,114,1,114,1,114,5,114,3247,8,114,10,114,12,114,3250,9,114, + 1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114,1,114, + 1,114,3,114,3264,8,114,1,115,1,115,3,115,3268,8,115,1,115,1,115, + 3,115,3272,8,115,1,115,1,115,3,115,3276,8,115,1,115,1,115,1,115, + 1,115,3,115,3282,8,115,1,115,1,115,3,115,3286,8,115,1,115,1,115, + 3,115,3290,8,115,1,115,1,115,3,115,3294,8,115,3,115,3296,8,115,1, + 116,1,116,1,116,1,116,1,117,1,117,1,117,1,117,3,117,3306,8,117,1, + 118,1,118,1,118,1,118,1,118,3,118,3313,8,118,1,119,1,119,1,119,1, + 119,1,119,1,119,1,119,3,119,3322,8,119,1,120,1,120,1,120,1,120,1, + 120,3,120,3329,8,120,1,121,1,121,1,121,1,121,1,121,3,121,3336,8, + 121,1,122,1,122,1,122,5,122,3341,8,122,10,122,12,122,3344,9,122, + 1,123,1,123,1,123,1,123,5,123,3350,8,123,10,123,12,123,3353,9,123, + 1,123,1,123,1,124,1,124,1,124,1,124,1,124,5,124,3362,8,124,10,124, + 12,124,3365,9,124,3,124,3367,8,124,1,124,1,124,1,125,1,125,1,125, + 1,125,1,125,5,125,3376,8,125,10,125,12,125,3379,9,125,3,125,3381, + 8,125,1,125,1,125,1,126,3,126,3386,8,126,1,126,1,126,1,127,1,127, + 1,127,1,128,1,128,1,128,3,128,3396,8,128,1,128,1,128,1,128,1,128, + 1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128,3,128, + 3412,8,128,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129, + 1,129,4,129,3424,8,129,11,129,12,129,3425,1,129,3,129,3429,8,129, + 1,129,1,129,1,129,1,129,1,129,4,129,3436,8,129,11,129,12,129,3437, + 1,129,3,129,3441,8,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129, + 1,129,5,129,3451,8,129,10,129,12,129,3454,9,129,1,129,3,129,3457, + 8,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129, + 1,129,5,129,3470,8,129,10,129,12,129,3473,9,129,1,129,3,129,3476, + 8,129,1,129,1,129,1,129,1,129,3,129,3482,8,129,1,129,1,129,1,129, + 1,129,1,129,1,129,1,129,1,129,3,129,3492,8,129,1,129,1,129,1,129, + 1,129,1,129,1,129,1,129,1,129,1,129,1,129,3,129,3504,8,129,1,129, + 1,129,1,129,1,129,1,129,1,129,1,129,3,129,3513,8,129,1,130,1,130, + 1,130,1,130,1,130,1,131,1,131,1,131,1,131,1,131,1,132,1,132,1,132, + 1,133,1,133,1,133,1,133,5,133,3532,8,133,10,133,12,133,3535,9,133, + 1,133,1,133,1,133,3,133,3540,8,133,1,134,1,134,1,134,4,134,3545, + 8,134,11,134,12,134,3546,1,135,1,135,1,135,1,135,1,135,1,135,3,135, + 3555,8,135,1,136,1,136,1,136,3,136,3560,8,136,1,137,3,137,3563,8, + 137,1,137,1,137,1,138,1,138,3,138,3569,8,138,1,139,1,139,1,139,1, + 139,1,139,1,139,1,139,1,139,1,139,1,139,1,139,3,139,3582,8,139,1, + 140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140, + 3,140,3595,8,140,1,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, + 1,141,1,141,1,141,3,141,3608,8,141,1,142,1,142,1,142,1,142,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,3,142,3621,8,142,1,143,1,143, + 1,143,1,143,1,143,3,143,3628,8,143,1,144,1,144,1,144,1,144,1,144, + 3,144,3635,8,144,1,145,1,145,1,146,1,146,1,147,1,147,1,148,1,148, + 1,149,1,149,3,149,3647,8,149,1,150,1,150,1,151,1,151,1,152,1,152, + 1,153,1,153,1,153,5,153,3658,8,153,10,153,12,153,3661,9,153,1,154, + 1,154,1,154,1,154,1,154,1,154,1,155,1,155,1,156,1,156,1,156,3,156, + 3674,8,156,1,157,1,157,1,157,1,157,1,157,3,157,3681,8,157,1,158, + 1,158,1,158,5,158,3686,8,158,10,158,12,158,3689,9,158,1,159,1,159, + 1,159,1,159,1,159,1,159,1,159,3,159,3698,8,159,1,160,1,160,1,160, + 1,160,1,160,3,160,3705,8,160,1,161,3,161,3708,8,161,1,161,1,161, + 3,161,3712,8,161,1,161,1,161,3,161,3716,8,161,1,161,3,161,3719,8, + 161,1,162,1,162,3,162,3723,8,162,1,163,1,163,1,163,0,7,46,88,160, + 164,166,206,226,164,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,0,36,2,0,39,39,230,230,2, + 0,73,73,132,132,2,0,106,106,123,123,2,0,93,93,124,124,1,0,240,241, + 2,0,102,102,175,175,2,0,325,325,330,330,2,0,92,92,282,282,2,0,29, + 29,76,76,2,0,102,102,149,149,2,0,22,22,80,80,2,0,33,33,260,260,3, + 0,35,35,151,151,271,271,2,0,125,125,248,248,2,0,86,86,90,90,2,0, + 145,145,190,190,2,0,126,126,198,198,2,0,55,55,282,282,1,0,319,320, + 1,0,321,323,1,0,292,294,4,0,90,90,98,98,274,274,284,284,2,0,50,50, + 281,281,2,0,101,101,242,242,1,0,313,318,3,0,22,22,26,26,255,255, + 2,0,98,98,274,274,5,0,68,68,119,119,171,172,246,246,311,311,1,0, + 176,179,2,0,305,305,307,307,2,0,103,103,213,213,3,0,114,114,138, + 138,264,264,4,0,81,81,133,133,161,161,295,295,2,0,193,193,310,310, + 2,0,269,269,299,299,54,0,18,22,24,24,26,27,29,33,35,35,37,39,42, + 50,52,53,57,57,66,68,70,73,75,76,78,79,81,83,86,88,90,90,93,93,96, + 96,99,103,105,105,108,114,117,117,119,122,124,125,127,127,130,130, + 132,133,135,136,138,138,145,152,154,154,156,156,158,158,161,172, + 174,181,185,190,192,194,197,197,199,214,216,221,223,234,236,238, + 240,248,250,260,262,265,267,272,275,277,279,281,283,285,287,290, + 292,296,298,300,303,304,306,312,4267,0,331,1,0,0,0,2,336,1,0,0,0, + 4,338,1,0,0,0,6,342,1,0,0,0,8,346,1,0,0,0,10,350,1,0,0,0,12,354, + 1,0,0,0,14,358,1,0,0,0,16,1256,1,0,0,0,18,1259,1,0,0,0,20,1263,1, + 0,0,0,22,1273,1,0,0,0,24,1277,1,0,0,0,26,1291,1,0,0,0,28,1293,1, + 0,0,0,30,1307,1,0,0,0,32,1313,1,0,0,0,34,1317,1,0,0,0,36,1325,1, + 0,0,0,38,1331,1,0,0,0,40,1333,1,0,0,0,42,1370,1,0,0,0,44,1372,1, + 0,0,0,46,1374,1,0,0,0,48,1410,1,0,0,0,50,1414,1,0,0,0,52,1423,1, + 0,0,0,54,1461,1,0,0,0,56,1464,1,0,0,0,58,1467,1,0,0,0,60,1476,1, + 0,0,0,62,1486,1,0,0,0,64,1534,1,0,0,0,66,1549,1,0,0,0,68,1553,1, + 0,0,0,70,1555,1,0,0,0,72,1562,1,0,0,0,74,1584,1,0,0,0,76,1593,1, + 0,0,0,78,1611,1,0,0,0,80,1613,1,0,0,0,82,1615,1,0,0,0,84,1619,1, + 0,0,0,86,1621,1,0,0,0,88,1623,1,0,0,0,90,1662,1,0,0,0,92,1682,1, + 0,0,0,94,1684,1,0,0,0,96,1694,1,0,0,0,98,1696,1,0,0,0,100,1705,1, + 0,0,0,102,1707,1,0,0,0,104,1715,1,0,0,0,106,1721,1,0,0,0,108,1723, + 1,0,0,0,110,1801,1,0,0,0,112,1816,1,0,0,0,114,1827,1,0,0,0,116,1848, + 1,0,0,0,118,1850,1,0,0,0,120,1863,1,0,0,0,122,1867,1,0,0,0,124,1877, + 1,0,0,0,126,1888,1,0,0,0,128,1899,1,0,0,0,130,1919,1,0,0,0,132,1984, + 1,0,0,0,134,2063,1,0,0,0,136,2090,1,0,0,0,138,2092,1,0,0,0,140,2099, + 1,0,0,0,142,2111,1,0,0,0,144,2113,1,0,0,0,146,2141,1,0,0,0,148,2148, + 1,0,0,0,150,2213,1,0,0,0,152,2233,1,0,0,0,154,2235,1,0,0,0,156,2239, + 1,0,0,0,158,2252,1,0,0,0,160,2261,1,0,0,0,162,2335,1,0,0,0,164,2341, + 1,0,0,0,166,2825,1,0,0,0,168,2840,1,0,0,0,170,2858,1,0,0,0,172,2863, + 1,0,0,0,174,2868,1,0,0,0,176,2872,1,0,0,0,178,2878,1,0,0,0,180,2891, + 1,0,0,0,182,2899,1,0,0,0,184,2912,1,0,0,0,186,2914,1,0,0,0,188,2920, + 1,0,0,0,190,2928,1,0,0,0,192,2936,1,0,0,0,194,2938,1,0,0,0,196,2940, + 1,0,0,0,198,2942,1,0,0,0,200,2944,1,0,0,0,202,2954,1,0,0,0,204,2956, + 1,0,0,0,206,3029,1,0,0,0,208,3047,1,0,0,0,210,3051,1,0,0,0,212,3053, + 1,0,0,0,214,3058,1,0,0,0,216,3127,1,0,0,0,218,3129,1,0,0,0,220,3146, + 1,0,0,0,222,3210,1,0,0,0,224,3221,1,0,0,0,226,3223,1,0,0,0,228,3263, + 1,0,0,0,230,3295,1,0,0,0,232,3297,1,0,0,0,234,3305,1,0,0,0,236,3312, + 1,0,0,0,238,3321,1,0,0,0,240,3328,1,0,0,0,242,3335,1,0,0,0,244,3337, + 1,0,0,0,246,3345,1,0,0,0,248,3356,1,0,0,0,250,3370,1,0,0,0,252,3385, + 1,0,0,0,254,3389,1,0,0,0,256,3411,1,0,0,0,258,3512,1,0,0,0,260,3514, + 1,0,0,0,262,3519,1,0,0,0,264,3524,1,0,0,0,266,3527,1,0,0,0,268,3544, + 1,0,0,0,270,3554,1,0,0,0,272,3559,1,0,0,0,274,3562,1,0,0,0,276,3568, + 1,0,0,0,278,3581,1,0,0,0,280,3594,1,0,0,0,282,3607,1,0,0,0,284,3620, + 1,0,0,0,286,3627,1,0,0,0,288,3634,1,0,0,0,290,3636,1,0,0,0,292,3638, + 1,0,0,0,294,3640,1,0,0,0,296,3642,1,0,0,0,298,3646,1,0,0,0,300,3648, + 1,0,0,0,302,3650,1,0,0,0,304,3652,1,0,0,0,306,3654,1,0,0,0,308,3662, + 1,0,0,0,310,3668,1,0,0,0,312,3673,1,0,0,0,314,3680,1,0,0,0,316,3682, + 1,0,0,0,318,3697,1,0,0,0,320,3704,1,0,0,0,322,3718,1,0,0,0,324,3722, + 1,0,0,0,326,3724,1,0,0,0,328,330,3,2,1,0,329,328,1,0,0,0,330,333, + 1,0,0,0,331,329,1,0,0,0,331,332,1,0,0,0,332,334,1,0,0,0,333,331, + 1,0,0,0,334,335,5,0,0,1,335,1,1,0,0,0,336,337,3,4,2,0,337,3,1,0, + 0,0,338,340,3,16,8,0,339,341,5,326,0,0,340,339,1,0,0,0,340,341,1, + 0,0,0,341,5,1,0,0,0,342,344,3,158,79,0,343,345,5,326,0,0,344,343, + 1,0,0,0,344,345,1,0,0,0,345,7,1,0,0,0,346,348,3,244,122,0,347,349, + 5,326,0,0,348,347,1,0,0,0,348,349,1,0,0,0,349,9,1,0,0,0,350,352, + 3,206,103,0,351,353,5,326,0,0,352,351,1,0,0,0,352,353,1,0,0,0,353, + 11,1,0,0,0,354,356,3,226,113,0,355,357,5,326,0,0,356,355,1,0,0,0, + 356,357,1,0,0,0,357,13,1,0,0,0,358,359,3,246,123,0,359,360,5,0,0, + 1,360,15,1,0,0,0,361,1257,3,18,9,0,362,363,5,289,0,0,363,1257,3, + 286,143,0,364,365,5,54,0,0,365,369,5,42,0,0,366,367,5,120,0,0,367, + 368,5,183,0,0,368,370,5,95,0,0,369,366,1,0,0,0,369,370,1,0,0,0,370, + 371,1,0,0,0,371,372,3,292,146,0,372,373,5,291,0,0,373,376,3,320, + 160,0,374,375,5,47,0,0,375,377,3,190,95,0,376,374,1,0,0,0,376,377, + 1,0,0,0,377,380,1,0,0,0,378,379,5,31,0,0,379,381,3,314,157,0,380, + 378,1,0,0,0,380,381,1,0,0,0,381,384,1,0,0,0,382,383,5,305,0,0,383, + 385,3,32,16,0,384,382,1,0,0,0,384,385,1,0,0,0,385,1257,1,0,0,0,386, + 387,5,84,0,0,387,390,5,42,0,0,388,389,5,120,0,0,389,391,5,95,0,0, + 390,388,1,0,0,0,390,391,1,0,0,0,391,392,1,0,0,0,392,394,3,290,145, + 0,393,395,7,0,0,0,394,393,1,0,0,0,394,395,1,0,0,0,395,1257,1,0,0, + 0,396,397,5,54,0,0,397,401,5,244,0,0,398,399,5,120,0,0,399,400,5, + 183,0,0,400,402,5,95,0,0,401,398,1,0,0,0,401,402,1,0,0,0,402,403, + 1,0,0,0,403,406,3,288,144,0,404,405,5,31,0,0,405,407,3,314,157,0, + 406,404,1,0,0,0,406,407,1,0,0,0,407,410,1,0,0,0,408,409,5,305,0, + 0,409,411,3,32,16,0,410,408,1,0,0,0,410,411,1,0,0,0,411,1257,1,0, + 0,0,412,413,5,84,0,0,413,416,5,244,0,0,414,415,5,120,0,0,415,417, + 5,95,0,0,416,414,1,0,0,0,416,417,1,0,0,0,417,418,1,0,0,0,418,420, + 3,286,143,0,419,421,7,0,0,0,420,419,1,0,0,0,420,421,1,0,0,0,421, + 1257,1,0,0,0,422,423,5,23,0,0,423,424,5,244,0,0,424,425,3,286,143, + 0,425,426,5,224,0,0,426,427,5,270,0,0,427,428,3,288,144,0,428,1257, + 1,0,0,0,429,430,5,23,0,0,430,431,5,244,0,0,431,432,3,286,143,0,432, + 433,5,252,0,0,433,434,5,31,0,0,434,435,3,314,157,0,435,1257,1,0, + 0,0,436,439,5,54,0,0,437,438,5,195,0,0,438,440,5,227,0,0,439,437, + 1,0,0,0,439,440,1,0,0,0,440,441,1,0,0,0,441,445,5,261,0,0,442,443, + 5,120,0,0,443,444,5,183,0,0,444,446,5,95,0,0,445,442,1,0,0,0,445, + 446,1,0,0,0,446,447,1,0,0,0,447,449,3,280,140,0,448,450,3,124,62, + 0,449,448,1,0,0,0,449,450,1,0,0,0,450,453,1,0,0,0,451,452,5,47,0, + 0,452,454,3,190,95,0,453,451,1,0,0,0,453,454,1,0,0,0,454,457,1,0, + 0,0,455,456,5,305,0,0,456,458,3,32,16,0,457,455,1,0,0,0,457,458, + 1,0,0,0,458,459,1,0,0,0,459,465,5,28,0,0,460,466,3,18,9,0,461,462, + 5,1,0,0,462,463,3,18,9,0,463,464,5,2,0,0,464,466,1,0,0,0,465,460, + 1,0,0,0,465,461,1,0,0,0,466,472,1,0,0,0,467,469,5,305,0,0,468,470, + 5,180,0,0,469,468,1,0,0,0,469,470,1,0,0,0,470,471,1,0,0,0,471,473, + 5,66,0,0,472,467,1,0,0,0,472,473,1,0,0,0,473,1257,1,0,0,0,474,477, + 5,54,0,0,475,476,5,195,0,0,476,478,5,227,0,0,477,475,1,0,0,0,477, + 478,1,0,0,0,478,479,1,0,0,0,479,483,5,261,0,0,480,481,5,120,0,0, + 481,482,5,183,0,0,482,484,5,95,0,0,483,480,1,0,0,0,483,484,1,0,0, + 0,484,485,1,0,0,0,485,486,3,280,140,0,486,487,5,1,0,0,487,492,3, + 26,13,0,488,489,5,3,0,0,489,491,3,26,13,0,490,488,1,0,0,0,491,494, + 1,0,0,0,492,490,1,0,0,0,492,493,1,0,0,0,493,495,1,0,0,0,494,492, + 1,0,0,0,495,498,5,2,0,0,496,497,5,47,0,0,497,499,3,190,95,0,498, + 496,1,0,0,0,498,499,1,0,0,0,499,502,1,0,0,0,500,501,5,305,0,0,501, + 503,3,32,16,0,502,500,1,0,0,0,502,503,1,0,0,0,503,1257,1,0,0,0,504, + 505,5,84,0,0,505,508,5,261,0,0,506,507,5,120,0,0,507,509,5,95,0, + 0,508,506,1,0,0,0,508,509,1,0,0,0,509,510,1,0,0,0,510,1257,3,278, + 139,0,511,512,5,128,0,0,512,513,5,131,0,0,513,515,3,278,139,0,514, + 516,3,126,63,0,515,514,1,0,0,0,515,516,1,0,0,0,516,517,1,0,0,0,517, + 518,3,18,9,0,518,1257,1,0,0,0,519,520,5,74,0,0,520,521,5,106,0,0, + 521,523,3,278,139,0,522,524,3,54,27,0,523,522,1,0,0,0,523,524,1, + 0,0,0,524,1257,1,0,0,0,525,526,5,275,0,0,526,527,5,261,0,0,527,1257, + 3,278,139,0,528,529,5,47,0,0,529,530,5,191,0,0,530,531,5,261,0,0, + 531,532,3,278,139,0,532,535,5,134,0,0,533,536,3,190,95,0,534,536, + 5,184,0,0,535,533,1,0,0,0,535,534,1,0,0,0,536,1257,1,0,0,0,537,538, + 5,47,0,0,538,539,5,191,0,0,539,540,5,300,0,0,540,541,3,282,141,0, + 541,544,5,134,0,0,542,545,3,190,95,0,543,545,5,184,0,0,544,542,1, + 0,0,0,544,543,1,0,0,0,545,1257,1,0,0,0,546,547,5,47,0,0,547,548, + 5,191,0,0,548,549,5,45,0,0,549,550,3,298,149,0,550,553,5,134,0,0, + 551,554,3,190,95,0,552,554,5,184,0,0,553,551,1,0,0,0,553,552,1,0, + 0,0,554,1257,1,0,0,0,555,556,5,23,0,0,556,559,5,261,0,0,557,558, + 5,120,0,0,558,560,5,95,0,0,559,557,1,0,0,0,559,560,1,0,0,0,560,561, + 1,0,0,0,561,562,3,278,139,0,562,563,5,224,0,0,563,564,5,270,0,0, + 564,565,3,280,140,0,565,1257,1,0,0,0,566,567,5,23,0,0,567,570,5, + 261,0,0,568,569,5,120,0,0,569,571,5,95,0,0,570,568,1,0,0,0,570,571, + 1,0,0,0,571,572,1,0,0,0,572,573,3,278,139,0,573,574,5,19,0,0,574, + 578,5,45,0,0,575,576,5,120,0,0,576,577,5,183,0,0,577,579,5,95,0, + 0,578,575,1,0,0,0,578,579,1,0,0,0,579,580,1,0,0,0,580,581,3,28,14, + 0,581,1257,1,0,0,0,582,583,5,23,0,0,583,586,5,261,0,0,584,585,5, + 120,0,0,585,587,5,95,0,0,586,584,1,0,0,0,586,587,1,0,0,0,587,588, + 1,0,0,0,588,589,3,278,139,0,589,590,5,224,0,0,590,593,5,45,0,0,591, + 592,5,120,0,0,592,594,5,95,0,0,593,591,1,0,0,0,593,594,1,0,0,0,594, + 595,1,0,0,0,595,596,3,298,149,0,596,597,5,270,0,0,597,598,3,304, + 152,0,598,1257,1,0,0,0,599,600,5,23,0,0,600,603,5,261,0,0,601,602, + 5,120,0,0,602,604,5,95,0,0,603,601,1,0,0,0,603,604,1,0,0,0,604,605, + 1,0,0,0,605,606,3,278,139,0,606,607,5,84,0,0,607,610,5,45,0,0,608, + 609,5,120,0,0,609,611,5,95,0,0,610,608,1,0,0,0,610,611,1,0,0,0,611, + 612,1,0,0,0,612,613,3,298,149,0,613,1257,1,0,0,0,614,615,5,23,0, + 0,615,618,5,261,0,0,616,617,5,120,0,0,617,619,5,95,0,0,618,616,1, + 0,0,0,618,619,1,0,0,0,619,620,1,0,0,0,620,621,3,278,139,0,621,622, + 5,23,0,0,622,623,5,45,0,0,623,624,3,298,149,0,624,625,5,252,0,0, + 625,626,5,66,0,0,626,627,5,277,0,0,627,628,3,206,103,0,628,1257, + 1,0,0,0,629,630,5,23,0,0,630,633,5,261,0,0,631,632,5,120,0,0,632, + 634,5,95,0,0,633,631,1,0,0,0,633,634,1,0,0,0,634,635,1,0,0,0,635, + 636,3,278,139,0,636,637,5,23,0,0,637,638,5,45,0,0,638,639,3,298, + 149,0,639,640,5,84,0,0,640,641,5,183,0,0,641,642,5,184,0,0,642,1257, + 1,0,0,0,643,644,5,23,0,0,644,645,5,261,0,0,645,646,3,278,139,0,646, + 647,5,252,0,0,647,648,5,31,0,0,648,649,3,314,157,0,649,1257,1,0, + 0,0,650,651,5,23,0,0,651,652,5,261,0,0,652,653,3,278,139,0,653,654, + 5,252,0,0,654,655,5,217,0,0,655,656,3,34,17,0,656,1257,1,0,0,0,657, + 658,5,23,0,0,658,659,5,261,0,0,659,660,3,278,139,0,660,661,5,94, + 0,0,661,674,3,294,147,0,662,671,5,1,0,0,663,668,3,240,120,0,664, + 665,5,3,0,0,665,667,3,240,120,0,666,664,1,0,0,0,667,670,1,0,0,0, + 668,666,1,0,0,0,668,669,1,0,0,0,669,672,1,0,0,0,670,668,1,0,0,0, + 671,663,1,0,0,0,671,672,1,0,0,0,672,673,1,0,0,0,673,675,5,2,0,0, + 674,662,1,0,0,0,674,675,1,0,0,0,675,677,1,0,0,0,676,678,3,54,27, + 0,677,676,1,0,0,0,677,678,1,0,0,0,678,1257,1,0,0,0,679,680,5,24, + 0,0,680,683,3,278,139,0,681,682,5,305,0,0,682,684,3,32,16,0,683, + 681,1,0,0,0,683,684,1,0,0,0,684,1257,1,0,0,0,685,688,5,54,0,0,686, + 687,5,195,0,0,687,689,5,227,0,0,688,686,1,0,0,0,688,689,1,0,0,0, + 689,690,1,0,0,0,690,691,5,168,0,0,691,695,5,300,0,0,692,693,5,120, + 0,0,693,694,5,183,0,0,694,696,5,95,0,0,695,692,1,0,0,0,695,696,1, + 0,0,0,696,697,1,0,0,0,697,701,3,284,142,0,698,699,5,110,0,0,699, + 700,5,209,0,0,700,702,3,200,100,0,701,698,1,0,0,0,701,702,1,0,0, + 0,702,705,1,0,0,0,703,704,5,47,0,0,704,706,3,190,95,0,705,703,1, + 0,0,0,705,706,1,0,0,0,706,709,1,0,0,0,707,708,5,305,0,0,708,710, + 3,32,16,0,709,707,1,0,0,0,709,710,1,0,0,0,710,711,1,0,0,0,711,712, + 5,28,0,0,712,713,3,18,9,0,713,1257,1,0,0,0,714,717,5,54,0,0,715, + 716,5,195,0,0,716,718,5,227,0,0,717,715,1,0,0,0,717,718,1,0,0,0, + 718,719,1,0,0,0,719,720,5,300,0,0,720,723,3,284,142,0,721,722,5, + 47,0,0,722,724,3,190,95,0,723,721,1,0,0,0,723,724,1,0,0,0,724,727, + 1,0,0,0,725,726,5,247,0,0,726,728,7,1,0,0,727,725,1,0,0,0,727,728, + 1,0,0,0,728,731,1,0,0,0,729,730,5,305,0,0,730,732,3,32,16,0,731, + 729,1,0,0,0,731,732,1,0,0,0,732,733,1,0,0,0,733,734,5,28,0,0,734, + 735,3,18,9,0,735,1257,1,0,0,0,736,737,5,223,0,0,737,738,5,168,0, + 0,738,739,5,300,0,0,739,1257,3,282,141,0,740,741,5,84,0,0,741,742, + 5,168,0,0,742,745,5,300,0,0,743,744,5,120,0,0,744,746,5,95,0,0,745, + 743,1,0,0,0,745,746,1,0,0,0,746,747,1,0,0,0,747,1257,3,282,141,0, + 748,749,5,23,0,0,749,750,5,168,0,0,750,753,5,300,0,0,751,752,5,120, + 0,0,752,754,5,95,0,0,753,751,1,0,0,0,753,754,1,0,0,0,754,755,1,0, + 0,0,755,756,3,282,141,0,756,757,5,224,0,0,757,758,5,270,0,0,758, + 759,3,284,142,0,759,1257,1,0,0,0,760,761,5,23,0,0,761,762,5,168, + 0,0,762,763,5,300,0,0,763,764,3,282,141,0,764,765,5,252,0,0,765, + 766,5,217,0,0,766,767,3,34,17,0,767,1257,1,0,0,0,768,769,5,84,0, + 0,769,772,5,300,0,0,770,771,5,120,0,0,771,773,5,95,0,0,772,770,1, + 0,0,0,772,773,1,0,0,0,773,774,1,0,0,0,774,1257,3,282,141,0,775,776, + 5,23,0,0,776,777,5,300,0,0,777,778,3,282,141,0,778,779,5,224,0,0, + 779,780,5,270,0,0,780,781,3,284,142,0,781,1257,1,0,0,0,782,783,5, + 23,0,0,783,784,5,300,0,0,784,785,3,282,141,0,785,786,5,252,0,0,786, + 787,5,31,0,0,787,788,3,314,157,0,788,1257,1,0,0,0,789,790,5,37,0, + 0,790,791,3,294,147,0,791,800,5,1,0,0,792,797,3,240,120,0,793,794, + 5,3,0,0,794,796,3,240,120,0,795,793,1,0,0,0,796,799,1,0,0,0,797, + 795,1,0,0,0,797,798,1,0,0,0,798,801,1,0,0,0,799,797,1,0,0,0,800, + 792,1,0,0,0,800,801,1,0,0,0,801,802,1,0,0,0,802,803,5,2,0,0,803, + 1257,1,0,0,0,804,807,5,54,0,0,805,806,5,195,0,0,806,808,5,227,0, + 0,807,805,1,0,0,0,807,808,1,0,0,0,808,809,1,0,0,0,809,1257,3,246, + 123,0,810,811,5,84,0,0,811,814,5,108,0,0,812,813,5,120,0,0,813,815, + 5,95,0,0,814,812,1,0,0,0,814,815,1,0,0,0,815,816,1,0,0,0,816,1257, + 3,250,125,0,817,818,5,54,0,0,818,819,5,236,0,0,819,823,3,320,160, + 0,820,821,5,305,0,0,821,822,5,20,0,0,822,824,3,312,156,0,823,820, + 1,0,0,0,823,824,1,0,0,0,824,827,1,0,0,0,825,826,5,123,0,0,826,828, + 3,290,145,0,827,825,1,0,0,0,827,828,1,0,0,0,828,1257,1,0,0,0,829, + 830,5,84,0,0,830,831,5,236,0,0,831,834,3,320,160,0,832,833,5,123, + 0,0,833,835,3,290,145,0,834,832,1,0,0,0,834,835,1,0,0,0,835,1257, + 1,0,0,0,836,837,5,111,0,0,837,842,3,318,159,0,838,839,5,3,0,0,839, + 841,3,318,159,0,840,838,1,0,0,0,841,844,1,0,0,0,842,840,1,0,0,0, + 842,843,1,0,0,0,843,845,1,0,0,0,844,842,1,0,0,0,845,846,5,270,0, + 0,846,851,3,314,157,0,847,848,5,3,0,0,848,850,3,314,157,0,849,847, + 1,0,0,0,850,853,1,0,0,0,851,849,1,0,0,0,851,852,1,0,0,0,852,857, + 1,0,0,0,853,851,1,0,0,0,854,855,5,305,0,0,855,856,5,20,0,0,856,858, + 5,194,0,0,857,854,1,0,0,0,857,858,1,0,0,0,858,862,1,0,0,0,859,860, + 5,112,0,0,860,861,5,36,0,0,861,863,3,312,156,0,862,859,1,0,0,0,862, + 863,1,0,0,0,863,866,1,0,0,0,864,865,5,123,0,0,865,867,3,290,145, + 0,866,864,1,0,0,0,866,867,1,0,0,0,867,1257,1,0,0,0,868,879,5,111, + 0,0,869,874,3,318,159,0,870,871,5,3,0,0,871,873,3,318,159,0,872, + 870,1,0,0,0,873,876,1,0,0,0,874,872,1,0,0,0,874,875,1,0,0,0,875, + 880,1,0,0,0,876,874,1,0,0,0,877,878,5,22,0,0,878,880,5,216,0,0,879, + 869,1,0,0,0,879,877,1,0,0,0,880,881,1,0,0,0,881,882,5,191,0,0,882, + 883,3,274,137,0,883,884,5,270,0,0,884,888,3,314,157,0,885,886,5, + 305,0,0,886,887,5,111,0,0,887,889,5,194,0,0,888,885,1,0,0,0,888, + 889,1,0,0,0,889,1257,1,0,0,0,890,894,5,234,0,0,891,892,5,20,0,0, + 892,893,5,194,0,0,893,895,5,104,0,0,894,891,1,0,0,0,894,895,1,0, + 0,0,895,896,1,0,0,0,896,901,3,318,159,0,897,898,5,3,0,0,898,900, + 3,318,159,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,106,0,0,905, + 910,3,314,157,0,906,907,5,3,0,0,907,909,3,314,157,0,908,906,1,0, + 0,0,909,912,1,0,0,0,910,908,1,0,0,0,910,911,1,0,0,0,911,916,1,0, + 0,0,912,910,1,0,0,0,913,914,5,112,0,0,914,915,5,36,0,0,915,917,3, + 312,156,0,916,913,1,0,0,0,916,917,1,0,0,0,917,920,1,0,0,0,918,919, + 5,123,0,0,919,921,3,290,145,0,920,918,1,0,0,0,920,921,1,0,0,0,921, + 1257,1,0,0,0,922,926,5,234,0,0,923,924,5,111,0,0,924,925,5,194,0, + 0,925,927,5,104,0,0,926,923,1,0,0,0,926,927,1,0,0,0,927,938,1,0, + 0,0,928,933,3,318,159,0,929,930,5,3,0,0,930,932,3,318,159,0,931, + 929,1,0,0,0,932,935,1,0,0,0,933,931,1,0,0,0,933,934,1,0,0,0,934, + 939,1,0,0,0,935,933,1,0,0,0,936,937,5,22,0,0,937,939,5,216,0,0,938, + 928,1,0,0,0,938,936,1,0,0,0,939,940,1,0,0,0,940,941,5,191,0,0,941, + 942,3,274,137,0,942,943,5,106,0,0,943,944,3,314,157,0,944,1257,1, + 0,0,0,945,956,5,75,0,0,946,951,3,270,135,0,947,948,5,3,0,0,948,950, + 3,270,135,0,949,947,1,0,0,0,950,953,1,0,0,0,951,949,1,0,0,0,951, + 952,1,0,0,0,952,957,1,0,0,0,953,951,1,0,0,0,954,955,5,22,0,0,955, + 957,5,216,0,0,956,946,1,0,0,0,956,954,1,0,0,0,957,958,1,0,0,0,958, + 959,5,191,0,0,959,960,3,274,137,0,960,961,5,270,0,0,961,962,3,314, + 157,0,962,1257,1,0,0,0,963,964,5,252,0,0,964,968,5,236,0,0,965,969, + 5,22,0,0,966,969,5,181,0,0,967,969,3,320,160,0,968,965,1,0,0,0,968, + 966,1,0,0,0,968,967,1,0,0,0,969,972,1,0,0,0,970,971,5,123,0,0,971, + 973,3,290,145,0,972,970,1,0,0,0,972,973,1,0,0,0,973,1257,1,0,0,0, + 974,975,5,254,0,0,975,978,5,113,0,0,976,977,5,191,0,0,977,979,3, + 274,137,0,978,976,1,0,0,0,978,979,1,0,0,0,979,1257,1,0,0,0,980,992, + 5,96,0,0,981,982,5,1,0,0,982,987,3,234,117,0,983,984,5,3,0,0,984, + 986,3,234,117,0,985,983,1,0,0,0,986,989,1,0,0,0,987,985,1,0,0,0, + 987,988,1,0,0,0,988,990,1,0,0,0,989,987,1,0,0,0,990,991,5,2,0,0, + 991,993,1,0,0,0,992,981,1,0,0,0,992,993,1,0,0,0,993,994,1,0,0,0, + 994,1257,3,16,8,0,995,996,5,96,0,0,996,998,5,24,0,0,997,999,5,298, + 0,0,998,997,1,0,0,0,998,999,1,0,0,0,999,1000,1,0,0,0,1000,1257,3, + 16,8,0,1001,1002,5,254,0,0,1002,1003,5,54,0,0,1003,1004,5,261,0, + 0,1004,1257,3,278,139,0,1005,1006,5,254,0,0,1006,1007,5,54,0,0,1007, + 1008,5,244,0,0,1008,1257,3,286,143,0,1009,1010,5,254,0,0,1010,1011, + 5,54,0,0,1011,1012,5,300,0,0,1012,1257,3,282,141,0,1013,1014,5,254, + 0,0,1014,1015,5,54,0,0,1015,1016,5,168,0,0,1016,1017,5,300,0,0,1017, + 1257,3,282,141,0,1018,1019,5,254,0,0,1019,1020,5,54,0,0,1020,1021, + 5,108,0,0,1021,1257,3,294,147,0,1022,1023,5,254,0,0,1023,1026,5, + 262,0,0,1024,1025,7,2,0,0,1025,1027,3,286,143,0,1026,1024,1,0,0, + 0,1026,1027,1,0,0,0,1027,1034,1,0,0,0,1028,1029,5,155,0,0,1029,1032, + 3,190,95,0,1030,1031,5,91,0,0,1031,1033,3,190,95,0,1032,1030,1,0, + 0,0,1032,1033,1,0,0,0,1033,1035,1,0,0,0,1034,1028,1,0,0,0,1034,1035, + 1,0,0,0,1035,1257,1,0,0,0,1036,1037,5,254,0,0,1037,1040,5,245,0, + 0,1038,1039,7,2,0,0,1039,1041,3,290,145,0,1040,1038,1,0,0,0,1040, + 1041,1,0,0,0,1041,1048,1,0,0,0,1042,1043,5,155,0,0,1043,1046,3,190, + 95,0,1044,1045,5,91,0,0,1045,1047,3,190,95,0,1046,1044,1,0,0,0,1046, + 1047,1,0,0,0,1047,1049,1,0,0,0,1048,1042,1,0,0,0,1048,1049,1,0,0, + 0,1049,1257,1,0,0,0,1050,1051,5,254,0,0,1051,1058,5,43,0,0,1052, + 1053,5,155,0,0,1053,1056,3,190,95,0,1054,1055,5,91,0,0,1055,1057, + 3,190,95,0,1056,1054,1,0,0,0,1056,1057,1,0,0,0,1057,1059,1,0,0,0, + 1058,1052,1,0,0,0,1058,1059,1,0,0,0,1059,1257,1,0,0,0,1060,1061, + 5,254,0,0,1061,1062,5,46,0,0,1062,1063,7,2,0,0,1063,1070,3,276,138, + 0,1064,1065,5,155,0,0,1065,1068,3,190,95,0,1066,1067,5,91,0,0,1067, + 1069,3,190,95,0,1068,1066,1,0,0,0,1068,1069,1,0,0,0,1069,1071,1, + 0,0,0,1070,1064,1,0,0,0,1070,1071,1,0,0,0,1071,1257,1,0,0,0,1072, + 1073,5,254,0,0,1073,1074,5,257,0,0,1074,1075,5,104,0,0,1075,1257, + 3,276,138,0,1076,1077,5,254,0,0,1077,1078,5,257,0,0,1078,1079,5, + 104,0,0,1079,1080,5,1,0,0,1080,1081,3,18,9,0,1081,1082,5,2,0,0,1082, + 1257,1,0,0,0,1083,1085,5,254,0,0,1084,1086,5,57,0,0,1085,1084,1, + 0,0,0,1085,1086,1,0,0,0,1086,1087,1,0,0,0,1087,1090,5,237,0,0,1088, + 1089,7,2,0,0,1089,1091,3,290,145,0,1090,1088,1,0,0,0,1090,1091,1, + 0,0,0,1091,1257,1,0,0,0,1092,1093,5,254,0,0,1093,1094,5,236,0,0, + 1094,1097,5,113,0,0,1095,1096,7,2,0,0,1096,1098,3,290,145,0,1097, + 1095,1,0,0,0,1097,1098,1,0,0,0,1098,1257,1,0,0,0,1099,1100,5,77, + 0,0,1100,1257,3,276,138,0,1101,1102,5,76,0,0,1102,1257,3,276,138, + 0,1103,1104,5,254,0,0,1104,1107,5,109,0,0,1105,1106,7,2,0,0,1106, + 1108,3,286,143,0,1107,1105,1,0,0,0,1107,1108,1,0,0,0,1108,1115,1, + 0,0,0,1109,1110,5,155,0,0,1110,1113,3,190,95,0,1111,1112,5,91,0, + 0,1112,1114,3,190,95,0,1113,1111,1,0,0,0,1113,1114,1,0,0,0,1114, + 1116,1,0,0,0,1115,1109,1,0,0,0,1115,1116,1,0,0,0,1116,1257,1,0,0, + 0,1117,1118,5,254,0,0,1118,1125,5,251,0,0,1119,1120,5,155,0,0,1120, + 1123,3,190,95,0,1121,1122,5,91,0,0,1122,1124,3,190,95,0,1123,1121, + 1,0,0,0,1123,1124,1,0,0,0,1124,1126,1,0,0,0,1125,1119,1,0,0,0,1125, + 1126,1,0,0,0,1126,1257,1,0,0,0,1127,1128,5,252,0,0,1128,1129,5,251, + 0,0,1129,1130,5,31,0,0,1130,1257,3,324,162,0,1131,1132,5,228,0,0, + 1132,1133,5,251,0,0,1133,1257,5,31,0,0,1134,1135,5,252,0,0,1135, + 1136,5,251,0,0,1136,1137,3,306,153,0,1137,1138,5,313,0,0,1138,1139, + 3,158,79,0,1139,1257,1,0,0,0,1140,1141,5,228,0,0,1141,1142,5,251, + 0,0,1142,1257,3,306,153,0,1143,1144,5,256,0,0,1144,1153,5,272,0, + 0,1145,1150,3,236,118,0,1146,1147,5,3,0,0,1147,1149,3,236,118,0, + 1148,1146,1,0,0,0,1149,1152,1,0,0,0,1150,1148,1,0,0,0,1150,1151, + 1,0,0,0,1151,1154,1,0,0,0,1152,1150,1,0,0,0,1153,1145,1,0,0,0,1153, + 1154,1,0,0,0,1154,1257,1,0,0,0,1155,1157,5,48,0,0,1156,1158,5,308, + 0,0,1157,1156,1,0,0,0,1157,1158,1,0,0,0,1158,1257,1,0,0,0,1159,1161, + 5,238,0,0,1160,1162,5,308,0,0,1161,1160,1,0,0,0,1161,1162,1,0,0, + 0,1162,1257,1,0,0,0,1163,1164,5,215,0,0,1164,1165,3,320,160,0,1165, + 1166,5,106,0,0,1166,1167,3,16,8,0,1167,1257,1,0,0,0,1168,1169,5, + 69,0,0,1169,1170,5,215,0,0,1170,1257,3,320,160,0,1171,1172,5,94, + 0,0,1172,1182,3,320,160,0,1173,1174,5,291,0,0,1174,1179,3,158,79, + 0,1175,1176,5,3,0,0,1176,1178,3,158,79,0,1177,1175,1,0,0,0,1178, + 1181,1,0,0,0,1179,1177,1,0,0,0,1179,1180,1,0,0,0,1180,1183,1,0,0, + 0,1181,1179,1,0,0,0,1182,1173,1,0,0,0,1182,1183,1,0,0,0,1183,1257, + 1,0,0,0,1184,1185,5,94,0,0,1185,1186,5,122,0,0,1186,1196,3,190,95, + 0,1187,1188,5,291,0,0,1188,1193,3,158,79,0,1189,1190,5,3,0,0,1190, + 1192,3,158,79,0,1191,1189,1,0,0,0,1192,1195,1,0,0,0,1193,1191,1, + 0,0,0,1193,1194,1,0,0,0,1194,1197,1,0,0,0,1195,1193,1,0,0,0,1196, + 1187,1,0,0,0,1196,1197,1,0,0,0,1197,1257,1,0,0,0,1198,1199,5,77, + 0,0,1199,1200,5,127,0,0,1200,1257,3,320,160,0,1201,1202,5,77,0,0, + 1202,1203,5,199,0,0,1203,1257,3,320,160,0,1204,1205,5,252,0,0,1205, + 1206,5,206,0,0,1206,1257,3,244,122,0,1207,1208,5,252,0,0,1208,1209, + 5,268,0,0,1209,1212,5,312,0,0,1210,1213,5,158,0,0,1211,1213,3,158, + 79,0,1212,1210,1,0,0,0,1212,1211,1,0,0,0,1213,1257,1,0,0,0,1214, + 1215,5,288,0,0,1215,1216,3,278,139,0,1216,1217,5,252,0,0,1217,1222, + 3,232,116,0,1218,1219,5,3,0,0,1219,1221,3,232,116,0,1220,1218,1, + 0,0,0,1221,1224,1,0,0,0,1222,1220,1,0,0,0,1222,1223,1,0,0,0,1223, + 1226,1,0,0,0,1224,1222,1,0,0,0,1225,1227,3,54,27,0,1226,1225,1,0, + 0,0,1226,1227,1,0,0,0,1227,1257,1,0,0,0,1228,1229,5,170,0,0,1229, + 1230,5,131,0,0,1230,1235,3,278,139,0,1231,1233,5,28,0,0,1232,1231, + 1,0,0,0,1232,1233,1,0,0,0,1233,1234,1,0,0,0,1234,1236,3,320,160, + 0,1235,1232,1,0,0,0,1235,1236,1,0,0,0,1236,1237,1,0,0,0,1237,1238, + 5,291,0,0,1238,1239,3,88,44,0,1239,1240,5,191,0,0,1240,1242,3,158, + 79,0,1241,1243,3,216,108,0,1242,1241,1,0,0,0,1243,1244,1,0,0,0,1244, + 1242,1,0,0,0,1244,1245,1,0,0,0,1245,1257,1,0,0,0,1246,1247,5,254, + 0,0,1247,1248,5,47,0,0,1248,1249,5,191,0,0,1249,1250,5,261,0,0,1250, + 1257,3,278,139,0,1251,1252,5,254,0,0,1252,1253,5,47,0,0,1253,1254, + 5,191,0,0,1254,1255,5,45,0,0,1255,1257,3,298,149,0,1256,361,1,0, + 0,0,1256,362,1,0,0,0,1256,364,1,0,0,0,1256,386,1,0,0,0,1256,396, + 1,0,0,0,1256,412,1,0,0,0,1256,422,1,0,0,0,1256,429,1,0,0,0,1256, + 436,1,0,0,0,1256,474,1,0,0,0,1256,504,1,0,0,0,1256,511,1,0,0,0,1256, + 519,1,0,0,0,1256,525,1,0,0,0,1256,528,1,0,0,0,1256,537,1,0,0,0,1256, + 546,1,0,0,0,1256,555,1,0,0,0,1256,566,1,0,0,0,1256,582,1,0,0,0,1256, + 599,1,0,0,0,1256,614,1,0,0,0,1256,629,1,0,0,0,1256,643,1,0,0,0,1256, + 650,1,0,0,0,1256,657,1,0,0,0,1256,679,1,0,0,0,1256,685,1,0,0,0,1256, + 714,1,0,0,0,1256,736,1,0,0,0,1256,740,1,0,0,0,1256,748,1,0,0,0,1256, + 760,1,0,0,0,1256,768,1,0,0,0,1256,775,1,0,0,0,1256,782,1,0,0,0,1256, + 789,1,0,0,0,1256,804,1,0,0,0,1256,810,1,0,0,0,1256,817,1,0,0,0,1256, + 829,1,0,0,0,1256,836,1,0,0,0,1256,868,1,0,0,0,1256,890,1,0,0,0,1256, + 922,1,0,0,0,1256,945,1,0,0,0,1256,963,1,0,0,0,1256,974,1,0,0,0,1256, + 980,1,0,0,0,1256,995,1,0,0,0,1256,1001,1,0,0,0,1256,1005,1,0,0,0, + 1256,1009,1,0,0,0,1256,1013,1,0,0,0,1256,1018,1,0,0,0,1256,1022, + 1,0,0,0,1256,1036,1,0,0,0,1256,1050,1,0,0,0,1256,1060,1,0,0,0,1256, + 1072,1,0,0,0,1256,1076,1,0,0,0,1256,1083,1,0,0,0,1256,1092,1,0,0, + 0,1256,1099,1,0,0,0,1256,1101,1,0,0,0,1256,1103,1,0,0,0,1256,1117, + 1,0,0,0,1256,1127,1,0,0,0,1256,1131,1,0,0,0,1256,1134,1,0,0,0,1256, + 1140,1,0,0,0,1256,1143,1,0,0,0,1256,1155,1,0,0,0,1256,1159,1,0,0, + 0,1256,1163,1,0,0,0,1256,1168,1,0,0,0,1256,1171,1,0,0,0,1256,1184, + 1,0,0,0,1256,1198,1,0,0,0,1256,1201,1,0,0,0,1256,1204,1,0,0,0,1256, + 1207,1,0,0,0,1256,1214,1,0,0,0,1256,1228,1,0,0,0,1256,1246,1,0,0, + 0,1256,1251,1,0,0,0,1257,17,1,0,0,0,1258,1260,3,20,10,0,1259,1258, + 1,0,0,0,1259,1260,1,0,0,0,1260,1261,1,0,0,0,1261,1262,3,22,11,0, + 1262,19,1,0,0,0,1263,1264,5,305,0,0,1264,1269,3,246,123,0,1265,1266, + 5,3,0,0,1266,1268,3,246,123,0,1267,1265,1,0,0,0,1268,1271,1,0,0, + 0,1269,1267,1,0,0,0,1269,1270,1,0,0,0,1270,21,1,0,0,0,1271,1269, + 1,0,0,0,1272,1274,3,24,12,0,1273,1272,1,0,0,0,1273,1274,1,0,0,0, + 1274,1275,1,0,0,0,1275,1276,3,40,20,0,1276,23,1,0,0,0,1277,1279, + 5,305,0,0,1278,1280,5,222,0,0,1279,1278,1,0,0,0,1279,1280,1,0,0, + 0,1280,1281,1,0,0,0,1281,1286,3,74,37,0,1282,1283,5,3,0,0,1283,1285, + 3,74,37,0,1284,1282,1,0,0,0,1285,1288,1,0,0,0,1286,1284,1,0,0,0, + 1286,1287,1,0,0,0,1287,25,1,0,0,0,1288,1286,1,0,0,0,1289,1292,3, + 28,14,0,1290,1292,3,30,15,0,1291,1289,1,0,0,0,1291,1290,1,0,0,0, + 1292,27,1,0,0,0,1293,1294,3,304,152,0,1294,1297,3,206,103,0,1295, + 1296,5,183,0,0,1296,1298,5,184,0,0,1297,1295,1,0,0,0,1297,1298,1, + 0,0,0,1298,1301,1,0,0,0,1299,1300,5,47,0,0,1300,1302,3,190,95,0, + 1301,1299,1,0,0,0,1301,1302,1,0,0,0,1302,1305,1,0,0,0,1303,1304, + 5,305,0,0,1304,1306,3,32,16,0,1305,1303,1,0,0,0,1305,1306,1,0,0, + 0,1306,29,1,0,0,0,1307,1308,5,155,0,0,1308,1311,3,278,139,0,1309, + 1310,7,3,0,0,1310,1312,5,217,0,0,1311,1309,1,0,0,0,1311,1312,1,0, + 0,0,1312,31,1,0,0,0,1313,1314,5,1,0,0,1314,1315,3,34,17,0,1315,1316, + 5,2,0,0,1316,33,1,0,0,0,1317,1322,3,36,18,0,1318,1319,5,3,0,0,1319, + 1321,3,36,18,0,1320,1318,1,0,0,0,1321,1324,1,0,0,0,1322,1320,1,0, + 0,0,1322,1323,1,0,0,0,1323,35,1,0,0,0,1324,1322,1,0,0,0,1325,1326, + 3,320,160,0,1326,1327,5,313,0,0,1327,1328,3,38,19,0,1328,37,1,0, + 0,0,1329,1332,5,71,0,0,1330,1332,3,158,79,0,1331,1329,1,0,0,0,1331, + 1330,1,0,0,0,1332,39,1,0,0,0,1333,1344,3,46,23,0,1334,1335,5,196, + 0,0,1335,1336,5,36,0,0,1336,1341,3,50,25,0,1337,1338,5,3,0,0,1338, + 1340,3,50,25,0,1339,1337,1,0,0,0,1340,1343,1,0,0,0,1341,1339,1,0, + 0,0,1341,1342,1,0,0,0,1342,1345,1,0,0,0,1343,1341,1,0,0,0,1344,1334, + 1,0,0,0,1344,1345,1,0,0,0,1345,1351,1,0,0,0,1346,1347,5,189,0,0, + 1347,1349,3,44,22,0,1348,1350,7,4,0,0,1349,1348,1,0,0,0,1349,1350, + 1,0,0,0,1350,1352,1,0,0,0,1351,1346,1,0,0,0,1351,1352,1,0,0,0,1352, + 1366,1,0,0,0,1353,1354,5,156,0,0,1354,1367,3,42,21,0,1355,1356,5, + 99,0,0,1356,1358,7,5,0,0,1357,1359,3,44,22,0,1358,1357,1,0,0,0,1358, + 1359,1,0,0,0,1359,1360,1,0,0,0,1360,1364,7,4,0,0,1361,1365,5,193, + 0,0,1362,1363,5,305,0,0,1363,1365,5,267,0,0,1364,1361,1,0,0,0,1364, + 1362,1,0,0,0,1365,1367,1,0,0,0,1366,1353,1,0,0,0,1366,1355,1,0,0, + 0,1366,1367,1,0,0,0,1367,41,1,0,0,0,1368,1371,5,22,0,0,1369,1371, + 3,44,22,0,1370,1368,1,0,0,0,1370,1369,1,0,0,0,1371,43,1,0,0,0,1372, + 1373,7,6,0,0,1373,45,1,0,0,0,1374,1375,6,23,-1,0,1375,1376,3,48, + 24,0,1376,1391,1,0,0,0,1377,1378,10,2,0,0,1378,1380,5,129,0,0,1379, + 1381,3,76,38,0,1380,1379,1,0,0,0,1380,1381,1,0,0,0,1381,1382,1,0, + 0,0,1382,1390,3,46,23,3,1383,1384,10,1,0,0,1384,1386,7,7,0,0,1385, + 1387,3,76,38,0,1386,1385,1,0,0,0,1386,1387,1,0,0,0,1387,1388,1,0, + 0,0,1388,1390,3,46,23,2,1389,1377,1,0,0,0,1389,1383,1,0,0,0,1390, + 1393,1,0,0,0,1391,1389,1,0,0,0,1391,1392,1,0,0,0,1392,47,1,0,0,0, + 1393,1391,1,0,0,0,1394,1411,3,52,26,0,1395,1396,5,261,0,0,1396,1411, + 3,278,139,0,1397,1398,5,297,0,0,1398,1403,3,158,79,0,1399,1400,5, + 3,0,0,1400,1402,3,158,79,0,1401,1399,1,0,0,0,1402,1405,1,0,0,0,1403, + 1401,1,0,0,0,1403,1404,1,0,0,0,1404,1411,1,0,0,0,1405,1403,1,0,0, + 0,1406,1407,5,1,0,0,1407,1408,3,40,20,0,1408,1409,5,2,0,0,1409,1411, + 1,0,0,0,1410,1394,1,0,0,0,1410,1395,1,0,0,0,1410,1397,1,0,0,0,1410, + 1406,1,0,0,0,1411,49,1,0,0,0,1412,1415,3,298,149,0,1413,1415,3,158, + 79,0,1414,1412,1,0,0,0,1414,1413,1,0,0,0,1415,1417,1,0,0,0,1416, + 1418,7,8,0,0,1417,1416,1,0,0,0,1417,1418,1,0,0,0,1418,1421,1,0,0, + 0,1419,1420,5,186,0,0,1420,1422,7,9,0,0,1421,1419,1,0,0,0,1421,1422, + 1,0,0,0,1422,51,1,0,0,0,1423,1425,5,249,0,0,1424,1426,3,76,38,0, + 1425,1424,1,0,0,0,1425,1426,1,0,0,0,1426,1427,1,0,0,0,1427,1437, + 3,58,29,0,1428,1429,5,106,0,0,1429,1434,3,88,44,0,1430,1431,5,3, + 0,0,1431,1433,3,88,44,0,1432,1430,1,0,0,0,1433,1436,1,0,0,0,1434, + 1432,1,0,0,0,1434,1435,1,0,0,0,1435,1438,1,0,0,0,1436,1434,1,0,0, + 0,1437,1428,1,0,0,0,1437,1438,1,0,0,0,1438,1440,1,0,0,0,1439,1441, + 3,54,27,0,1440,1439,1,0,0,0,1440,1441,1,0,0,0,1441,1445,1,0,0,0, + 1442,1443,5,115,0,0,1443,1444,5,36,0,0,1444,1446,3,60,30,0,1445, + 1442,1,0,0,0,1445,1446,1,0,0,0,1446,1448,1,0,0,0,1447,1449,3,56, + 28,0,1448,1447,1,0,0,0,1448,1449,1,0,0,0,1449,1459,1,0,0,0,1450, + 1451,5,304,0,0,1451,1456,3,70,35,0,1452,1453,5,3,0,0,1453,1455,3, + 70,35,0,1454,1452,1,0,0,0,1455,1458,1,0,0,0,1456,1454,1,0,0,0,1456, + 1457,1,0,0,0,1457,1460,1,0,0,0,1458,1456,1,0,0,0,1459,1450,1,0,0, + 0,1459,1460,1,0,0,0,1460,53,1,0,0,0,1461,1462,5,302,0,0,1462,1463, + 3,160,80,0,1463,55,1,0,0,0,1464,1465,5,118,0,0,1465,1466,3,160,80, + 0,1466,57,1,0,0,0,1467,1472,3,78,39,0,1468,1469,5,3,0,0,1469,1471, + 3,78,39,0,1470,1468,1,0,0,0,1471,1474,1,0,0,0,1472,1470,1,0,0,0, + 1472,1473,1,0,0,0,1473,59,1,0,0,0,1474,1472,1,0,0,0,1475,1477,3, + 76,38,0,1476,1475,1,0,0,0,1476,1477,1,0,0,0,1477,1478,1,0,0,0,1478, + 1483,3,64,32,0,1479,1480,5,3,0,0,1480,1482,3,64,32,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, + 61,1,0,0,0,1485,1483,1,0,0,0,1486,1491,3,158,79,0,1487,1488,5,3, + 0,0,1488,1490,3,158,79,0,1489,1487,1,0,0,0,1490,1493,1,0,0,0,1491, + 1489,1,0,0,0,1491,1492,1,0,0,0,1492,63,1,0,0,0,1493,1491,1,0,0,0, + 1494,1535,3,66,33,0,1495,1496,5,239,0,0,1496,1505,5,1,0,0,1497,1502, + 3,66,33,0,1498,1499,5,3,0,0,1499,1501,3,66,33,0,1500,1498,1,0,0, + 0,1501,1504,1,0,0,0,1502,1500,1,0,0,0,1502,1503,1,0,0,0,1503,1506, + 1,0,0,0,1504,1502,1,0,0,0,1505,1497,1,0,0,0,1505,1506,1,0,0,0,1506, + 1507,1,0,0,0,1507,1535,5,2,0,0,1508,1509,5,56,0,0,1509,1518,5,1, + 0,0,1510,1515,3,66,33,0,1511,1512,5,3,0,0,1512,1514,3,66,33,0,1513, + 1511,1,0,0,0,1514,1517,1,0,0,0,1515,1513,1,0,0,0,1515,1516,1,0,0, + 0,1516,1519,1,0,0,0,1517,1515,1,0,0,0,1518,1510,1,0,0,0,1518,1519, + 1,0,0,0,1519,1520,1,0,0,0,1520,1535,5,2,0,0,1521,1522,5,116,0,0, + 1522,1523,5,253,0,0,1523,1524,5,1,0,0,1524,1529,3,66,33,0,1525,1526, + 5,3,0,0,1526,1528,3,66,33,0,1527,1525,1,0,0,0,1528,1531,1,0,0,0, + 1529,1527,1,0,0,0,1529,1530,1,0,0,0,1530,1532,1,0,0,0,1531,1529, + 1,0,0,0,1532,1533,5,2,0,0,1533,1535,1,0,0,0,1534,1494,1,0,0,0,1534, + 1495,1,0,0,0,1534,1508,1,0,0,0,1534,1521,1,0,0,0,1535,65,1,0,0,0, + 1536,1545,5,1,0,0,1537,1542,3,68,34,0,1538,1539,5,3,0,0,1539,1541, + 3,68,34,0,1540,1538,1,0,0,0,1541,1544,1,0,0,0,1542,1540,1,0,0,0, + 1542,1543,1,0,0,0,1543,1546,1,0,0,0,1544,1542,1,0,0,0,1545,1537, + 1,0,0,0,1545,1546,1,0,0,0,1546,1547,1,0,0,0,1547,1550,5,2,0,0,1548, + 1550,3,68,34,0,1549,1536,1,0,0,0,1549,1548,1,0,0,0,1550,67,1,0,0, + 0,1551,1554,3,298,149,0,1552,1554,3,158,79,0,1553,1551,1,0,0,0,1553, + 1552,1,0,0,0,1554,69,1,0,0,0,1555,1556,3,320,160,0,1556,1557,5,28, + 0,0,1557,1558,5,1,0,0,1558,1559,3,72,36,0,1559,1560,5,2,0,0,1560, + 71,1,0,0,0,1561,1563,3,320,160,0,1562,1561,1,0,0,0,1562,1563,1,0, + 0,0,1563,1567,1,0,0,0,1564,1565,5,202,0,0,1565,1566,5,36,0,0,1566, + 1568,3,62,31,0,1567,1564,1,0,0,0,1567,1568,1,0,0,0,1568,1579,1,0, + 0,0,1569,1570,5,196,0,0,1570,1571,5,36,0,0,1571,1576,3,50,25,0,1572, + 1573,5,3,0,0,1573,1575,3,50,25,0,1574,1572,1,0,0,0,1575,1578,1,0, + 0,0,1576,1574,1,0,0,0,1576,1577,1,0,0,0,1577,1580,1,0,0,0,1578,1576, + 1,0,0,0,1579,1569,1,0,0,0,1579,1580,1,0,0,0,1580,1582,1,0,0,0,1581, + 1583,3,220,110,0,1582,1581,1,0,0,0,1582,1583,1,0,0,0,1583,73,1,0, + 0,0,1584,1586,3,320,160,0,1585,1587,3,128,64,0,1586,1585,1,0,0,0, + 1586,1587,1,0,0,0,1587,1588,1,0,0,0,1588,1589,5,28,0,0,1589,1590, + 5,1,0,0,1590,1591,3,22,11,0,1591,1592,5,2,0,0,1592,75,1,0,0,0,1593, + 1594,7,10,0,0,1594,77,1,0,0,0,1595,1598,3,84,42,0,1596,1598,3,86, + 43,0,1597,1595,1,0,0,0,1597,1596,1,0,0,0,1598,1603,1,0,0,0,1599, + 1601,5,28,0,0,1600,1599,1,0,0,0,1600,1601,1,0,0,0,1601,1602,1,0, + 0,0,1602,1604,3,320,160,0,1603,1600,1,0,0,0,1603,1604,1,0,0,0,1604, + 1612,1,0,0,0,1605,1608,3,82,41,0,1606,1607,5,28,0,0,1607,1609,3, + 128,64,0,1608,1606,1,0,0,0,1608,1609,1,0,0,0,1609,1612,1,0,0,0,1610, + 1612,3,80,40,0,1611,1597,1,0,0,0,1611,1605,1,0,0,0,1611,1610,1,0, + 0,0,1612,79,1,0,0,0,1613,1614,5,321,0,0,1614,81,1,0,0,0,1615,1616, + 3,166,83,0,1616,1617,5,4,0,0,1617,1618,5,321,0,0,1618,83,1,0,0,0, + 1619,1620,3,298,149,0,1620,85,1,0,0,0,1621,1622,3,158,79,0,1622, + 87,1,0,0,0,1623,1624,6,44,-1,0,1624,1625,3,98,49,0,1625,1644,1,0, + 0,0,1626,1640,10,2,0,0,1627,1628,5,55,0,0,1628,1629,5,137,0,0,1629, + 1641,3,98,49,0,1630,1631,3,90,45,0,1631,1632,5,137,0,0,1632,1633, + 3,88,44,0,1633,1634,3,92,46,0,1634,1641,1,0,0,0,1635,1636,5,173, + 0,0,1636,1637,3,90,45,0,1637,1638,5,137,0,0,1638,1639,3,98,49,0, + 1639,1641,1,0,0,0,1640,1627,1,0,0,0,1640,1630,1,0,0,0,1640,1635, + 1,0,0,0,1641,1643,1,0,0,0,1642,1626,1,0,0,0,1643,1646,1,0,0,0,1644, + 1642,1,0,0,0,1644,1645,1,0,0,0,1645,89,1,0,0,0,1646,1644,1,0,0,0, + 1647,1649,5,126,0,0,1648,1647,1,0,0,0,1648,1649,1,0,0,0,1649,1663, + 1,0,0,0,1650,1652,5,153,0,0,1651,1653,5,198,0,0,1652,1651,1,0,0, + 0,1652,1653,1,0,0,0,1653,1663,1,0,0,0,1654,1656,5,235,0,0,1655,1657, + 5,198,0,0,1656,1655,1,0,0,0,1656,1657,1,0,0,0,1657,1663,1,0,0,0, + 1658,1660,5,107,0,0,1659,1661,5,198,0,0,1660,1659,1,0,0,0,1660,1661, + 1,0,0,0,1661,1663,1,0,0,0,1662,1648,1,0,0,0,1662,1650,1,0,0,0,1662, + 1654,1,0,0,0,1662,1658,1,0,0,0,1663,91,1,0,0,0,1664,1668,5,191,0, + 0,1665,1669,3,94,47,0,1666,1667,4,46,3,0,1667,1669,3,160,80,0,1668, + 1665,1,0,0,0,1668,1666,1,0,0,0,1669,1683,1,0,0,0,1670,1671,5,291, + 0,0,1671,1672,5,1,0,0,1672,1677,3,320,160,0,1673,1674,5,3,0,0,1674, + 1676,3,320,160,0,1675,1673,1,0,0,0,1676,1679,1,0,0,0,1677,1675,1, + 0,0,0,1677,1678,1,0,0,0,1678,1680,1,0,0,0,1679,1677,1,0,0,0,1680, + 1681,5,2,0,0,1681,1683,1,0,0,0,1682,1664,1,0,0,0,1682,1670,1,0,0, + 0,1683,93,1,0,0,0,1684,1685,3,96,48,0,1685,1686,5,313,0,0,1686,1687, + 3,96,48,0,1687,95,1,0,0,0,1688,1689,3,320,160,0,1689,1690,5,342, + 0,0,1690,1691,4,48,4,0,1691,1692,3,300,150,0,1692,1695,1,0,0,0,1693, + 1695,3,302,151,0,1694,1688,1,0,0,0,1694,1693,1,0,0,0,1695,97,1,0, + 0,0,1696,1703,3,108,54,0,1697,1698,5,263,0,0,1698,1699,3,100,50, + 0,1699,1700,5,1,0,0,1700,1701,3,158,79,0,1701,1702,5,2,0,0,1702, + 1704,1,0,0,0,1703,1697,1,0,0,0,1703,1704,1,0,0,0,1704,99,1,0,0,0, + 1705,1706,7,11,0,0,1706,101,1,0,0,0,1707,1708,7,12,0,0,1708,103, + 1,0,0,0,1709,1716,5,90,0,0,1710,1712,5,275,0,0,1711,1713,3,190,95, + 0,1712,1711,1,0,0,0,1712,1713,1,0,0,0,1713,1714,1,0,0,0,1714,1716, + 3,106,53,0,1715,1709,1,0,0,0,1715,1710,1,0,0,0,1716,105,1,0,0,0, + 1717,1718,5,305,0,0,1718,1722,5,52,0,0,1719,1720,5,307,0,0,1720, + 1722,5,52,0,0,1721,1717,1,0,0,0,1721,1719,1,0,0,0,1722,107,1,0,0, + 0,1723,1799,3,122,61,0,1724,1725,5,167,0,0,1725,1729,5,1,0,0,1726, + 1727,5,202,0,0,1727,1728,5,36,0,0,1728,1730,3,62,31,0,1729,1726, + 1,0,0,0,1729,1730,1,0,0,0,1730,1741,1,0,0,0,1731,1732,5,196,0,0, + 1732,1733,5,36,0,0,1733,1738,3,50,25,0,1734,1735,5,3,0,0,1735,1737, + 3,50,25,0,1736,1734,1,0,0,0,1737,1740,1,0,0,0,1738,1736,1,0,0,0, + 1738,1739,1,0,0,0,1739,1742,1,0,0,0,1740,1738,1,0,0,0,1741,1731, + 1,0,0,0,1741,1742,1,0,0,0,1742,1752,1,0,0,0,1743,1744,5,169,0,0, + 1744,1749,3,110,55,0,1745,1746,5,3,0,0,1746,1748,3,110,55,0,1747, + 1745,1,0,0,0,1748,1751,1,0,0,0,1749,1747,1,0,0,0,1749,1750,1,0,0, + 0,1750,1753,1,0,0,0,1751,1749,1,0,0,0,1752,1743,1,0,0,0,1752,1753, + 1,0,0,0,1753,1755,1,0,0,0,1754,1756,3,112,56,0,1755,1754,1,0,0,0, + 1755,1756,1,0,0,0,1756,1760,1,0,0,0,1757,1758,5,21,0,0,1758,1759, + 5,164,0,0,1759,1761,3,116,58,0,1760,1757,1,0,0,0,1760,1761,1,0,0, + 0,1761,1763,1,0,0,0,1762,1764,7,13,0,0,1763,1762,1,0,0,0,1763,1764, + 1,0,0,0,1764,1765,1,0,0,0,1765,1766,5,207,0,0,1766,1767,5,1,0,0, + 1767,1768,3,226,113,0,1768,1778,5,2,0,0,1769,1770,5,258,0,0,1770, + 1775,3,118,59,0,1771,1772,5,3,0,0,1772,1774,3,118,59,0,1773,1771, + 1,0,0,0,1774,1777,1,0,0,0,1775,1773,1,0,0,0,1775,1776,1,0,0,0,1776, + 1779,1,0,0,0,1777,1775,1,0,0,0,1778,1769,1,0,0,0,1778,1779,1,0,0, + 0,1779,1780,1,0,0,0,1780,1781,5,72,0,0,1781,1786,3,120,60,0,1782, + 1783,5,3,0,0,1783,1785,3,120,60,0,1784,1782,1,0,0,0,1785,1788,1, + 0,0,0,1786,1784,1,0,0,0,1786,1787,1,0,0,0,1787,1789,1,0,0,0,1788, + 1786,1,0,0,0,1789,1797,5,2,0,0,1790,1792,5,28,0,0,1791,1790,1,0, + 0,0,1791,1792,1,0,0,0,1792,1793,1,0,0,0,1793,1795,3,320,160,0,1794, + 1796,3,128,64,0,1795,1794,1,0,0,0,1795,1796,1,0,0,0,1796,1798,1, + 0,0,0,1797,1791,1,0,0,0,1797,1798,1,0,0,0,1798,1800,1,0,0,0,1799, + 1724,1,0,0,0,1799,1800,1,0,0,0,1800,109,1,0,0,0,1801,1802,3,158, + 79,0,1802,1803,5,28,0,0,1803,1804,3,320,160,0,1804,111,1,0,0,0,1805, + 1806,5,192,0,0,1806,1807,5,240,0,0,1807,1808,5,208,0,0,1808,1817, + 5,164,0,0,1809,1810,5,22,0,0,1810,1811,5,241,0,0,1811,1812,5,208, + 0,0,1812,1814,5,164,0,0,1813,1815,3,114,57,0,1814,1813,1,0,0,0,1814, + 1815,1,0,0,0,1815,1817,1,0,0,0,1816,1805,1,0,0,0,1816,1809,1,0,0, + 0,1817,113,1,0,0,0,1818,1819,5,254,0,0,1819,1820,5,86,0,0,1820,1828, + 5,166,0,0,1821,1822,5,190,0,0,1822,1823,5,86,0,0,1823,1828,5,166, + 0,0,1824,1825,5,305,0,0,1825,1826,5,285,0,0,1826,1828,5,241,0,0, + 1827,1818,1,0,0,0,1827,1821,1,0,0,0,1827,1824,1,0,0,0,1828,115,1, + 0,0,0,1829,1830,5,5,0,0,1830,1831,5,270,0,0,1831,1832,5,175,0,0, + 1832,1849,5,240,0,0,1833,1834,5,5,0,0,1834,1835,5,205,0,0,1835,1836, + 5,149,0,0,1836,1849,5,240,0,0,1837,1838,5,5,0,0,1838,1839,5,270, + 0,0,1839,1840,5,102,0,0,1840,1849,3,320,160,0,1841,1842,5,5,0,0, + 1842,1843,5,270,0,0,1843,1844,5,149,0,0,1844,1849,3,320,160,0,1845, + 1846,5,5,0,0,1846,1847,5,270,0,0,1847,1849,3,320,160,0,1848,1829, + 1,0,0,0,1848,1833,1,0,0,0,1848,1837,1,0,0,0,1848,1841,1,0,0,0,1848, + 1845,1,0,0,0,1849,117,1,0,0,0,1850,1851,3,320,160,0,1851,1852,5, + 313,0,0,1852,1853,5,1,0,0,1853,1858,3,320,160,0,1854,1855,5,3,0, + 0,1855,1857,3,320,160,0,1856,1854,1,0,0,0,1857,1860,1,0,0,0,1858, + 1856,1,0,0,0,1858,1859,1,0,0,0,1859,1861,1,0,0,0,1860,1858,1,0,0, + 0,1861,1862,5,2,0,0,1862,119,1,0,0,0,1863,1864,3,320,160,0,1864, + 1865,5,28,0,0,1865,1866,3,158,79,0,1866,121,1,0,0,0,1867,1875,3, + 130,65,0,1868,1870,5,28,0,0,1869,1868,1,0,0,0,1869,1870,1,0,0,0, + 1870,1871,1,0,0,0,1871,1873,3,320,160,0,1872,1874,3,128,64,0,1873, + 1872,1,0,0,0,1873,1874,1,0,0,0,1874,1876,1,0,0,0,1875,1869,1,0,0, + 0,1875,1876,1,0,0,0,1876,123,1,0,0,0,1877,1878,5,1,0,0,1878,1883, + 3,304,152,0,1879,1880,5,3,0,0,1880,1882,3,304,152,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,2,0,0,1887,125,1,0,0, + 0,1888,1889,5,1,0,0,1889,1894,3,298,149,0,1890,1891,5,3,0,0,1891, + 1893,3,298,149,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,1897,1,0,0,0,1896,1894,1,0,0,0,1897, + 1898,5,2,0,0,1898,127,1,0,0,0,1899,1900,5,1,0,0,1900,1905,3,320, + 160,0,1901,1902,5,3,0,0,1902,1904,3,320,160,0,1903,1901,1,0,0,0, + 1904,1907,1,0,0,0,1905,1903,1,0,0,0,1905,1906,1,0,0,0,1906,1908, + 1,0,0,0,1907,1905,1,0,0,0,1908,1909,5,2,0,0,1909,129,1,0,0,0,1910, + 1912,3,276,138,0,1911,1913,3,308,154,0,1912,1911,1,0,0,0,1912,1913, + 1,0,0,0,1913,1920,1,0,0,0,1914,1920,3,132,66,0,1915,1916,5,1,0,0, + 1916,1917,3,88,44,0,1917,1918,5,2,0,0,1918,1920,1,0,0,0,1919,1910, + 1,0,0,0,1919,1914,1,0,0,0,1919,1915,1,0,0,0,1920,131,1,0,0,0,1921, + 1922,5,1,0,0,1922,1923,3,22,11,0,1923,1924,5,2,0,0,1924,1985,1,0, + 0,0,1925,1926,5,286,0,0,1926,1927,5,1,0,0,1927,1932,3,158,79,0,1928, + 1929,5,3,0,0,1929,1931,3,158,79,0,1930,1928,1,0,0,0,1931,1934,1, + 0,0,0,1932,1930,1,0,0,0,1932,1933,1,0,0,0,1933,1935,1,0,0,0,1934, + 1932,1,0,0,0,1935,1938,5,2,0,0,1936,1937,5,305,0,0,1937,1939,5,197, + 0,0,1938,1936,1,0,0,0,1938,1939,1,0,0,0,1939,1985,1,0,0,0,1940,1941, + 5,150,0,0,1941,1942,5,1,0,0,1942,1943,3,22,11,0,1943,1944,5,2,0, + 0,1944,1985,1,0,0,0,1945,1946,5,261,0,0,1946,1947,5,1,0,0,1947,1948, + 3,144,72,0,1948,1949,5,2,0,0,1949,1985,1,0,0,0,1950,1951,5,143,0, + 0,1951,1952,5,1,0,0,1952,1953,3,168,84,0,1953,1954,5,46,0,0,1954, + 1955,5,1,0,0,1955,1960,3,134,67,0,1956,1957,5,3,0,0,1957,1959,3, + 134,67,0,1958,1956,1,0,0,0,1959,1962,1,0,0,0,1960,1958,1,0,0,0,1960, + 1961,1,0,0,0,1961,1963,1,0,0,0,1962,1960,1,0,0,0,1963,1975,5,2,0, + 0,1964,1965,5,211,0,0,1965,1966,5,1,0,0,1966,1967,3,136,68,0,1967, + 1968,5,2,0,0,1968,1976,1,0,0,0,1969,1970,5,211,0,0,1970,1971,5,71, + 0,0,1971,1972,5,1,0,0,1972,1973,3,142,71,0,1973,1974,5,2,0,0,1974, + 1976,1,0,0,0,1975,1964,1,0,0,0,1975,1969,1,0,0,0,1975,1976,1,0,0, + 0,1976,1980,1,0,0,0,1977,1978,7,14,0,0,1978,1979,5,191,0,0,1979, + 1981,5,90,0,0,1980,1977,1,0,0,0,1980,1981,1,0,0,0,1981,1982,1,0, + 0,0,1982,1983,5,2,0,0,1983,1985,1,0,0,0,1984,1921,1,0,0,0,1984,1925, + 1,0,0,0,1984,1940,1,0,0,0,1984,1945,1,0,0,0,1984,1950,1,0,0,0,1985, + 133,1,0,0,0,1986,1987,3,320,160,0,1987,1988,5,104,0,0,1988,1989, + 5,197,0,0,1989,2064,1,0,0,0,1990,1991,3,320,160,0,1991,1994,3,206, + 103,0,1992,1993,5,206,0,0,1993,1995,3,190,95,0,1994,1992,1,0,0,0, + 1994,1995,1,0,0,0,1995,2000,1,0,0,0,1996,1997,3,178,89,0,1997,1998, + 5,191,0,0,1998,1999,5,86,0,0,1999,2001,1,0,0,0,2000,1996,1,0,0,0, + 2000,2001,1,0,0,0,2001,2006,1,0,0,0,2002,2003,3,178,89,0,2003,2004, + 5,191,0,0,2004,2005,5,90,0,0,2005,2007,1,0,0,0,2006,2002,1,0,0,0, + 2006,2007,1,0,0,0,2007,2064,1,0,0,0,2008,2009,3,320,160,0,2009,2010, + 3,206,103,0,2010,2011,5,105,0,0,2011,2014,3,172,86,0,2012,2013,5, + 206,0,0,2013,2015,3,190,95,0,2014,2012,1,0,0,0,2014,2015,1,0,0,0, + 2015,2019,1,0,0,0,2016,2017,3,180,90,0,2017,2018,5,309,0,0,2018, + 2020,1,0,0,0,2019,2016,1,0,0,0,2019,2020,1,0,0,0,2020,2028,1,0,0, + 0,2021,2022,7,15,0,0,2022,2026,5,219,0,0,2023,2024,5,191,0,0,2024, + 2025,5,243,0,0,2025,2027,5,265,0,0,2026,2023,1,0,0,0,2026,2027,1, + 0,0,0,2027,2029,1,0,0,0,2028,2021,1,0,0,0,2028,2029,1,0,0,0,2029, + 2034,1,0,0,0,2030,2031,3,182,91,0,2031,2032,5,191,0,0,2032,2033, + 5,86,0,0,2033,2035,1,0,0,0,2034,2030,1,0,0,0,2034,2035,1,0,0,0,2035, + 2040,1,0,0,0,2036,2037,3,182,91,0,2037,2038,5,191,0,0,2038,2039, + 5,90,0,0,2039,2041,1,0,0,0,2040,2036,1,0,0,0,2040,2041,1,0,0,0,2041, + 2064,1,0,0,0,2042,2044,5,174,0,0,2043,2045,5,206,0,0,2044,2043,1, + 0,0,0,2044,2045,1,0,0,0,2045,2046,1,0,0,0,2046,2049,3,190,95,0,2047, + 2048,5,28,0,0,2048,2050,3,320,160,0,2049,2047,1,0,0,0,2049,2050, + 1,0,0,0,2050,2051,1,0,0,0,2051,2052,5,46,0,0,2052,2053,5,1,0,0,2053, + 2058,3,134,67,0,2054,2055,5,3,0,0,2055,2057,3,134,67,0,2056,2054, + 1,0,0,0,2057,2060,1,0,0,0,2058,2056,1,0,0,0,2058,2059,1,0,0,0,2059, + 2061,1,0,0,0,2060,2058,1,0,0,0,2061,2062,5,2,0,0,2062,2064,1,0,0, + 0,2063,1986,1,0,0,0,2063,1990,1,0,0,0,2063,2008,1,0,0,0,2063,2042, + 1,0,0,0,2064,135,1,0,0,0,2065,2091,3,138,69,0,2066,2067,3,138,69, + 0,2067,2068,7,16,0,0,2068,2069,3,140,70,0,2069,2091,1,0,0,0,2070, + 2071,3,140,70,0,2071,2072,5,282,0,0,2072,2077,3,140,70,0,2073,2074, + 5,282,0,0,2074,2076,3,140,70,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,2091,1,0,0,0,2079,2077, + 1,0,0,0,2080,2081,3,140,70,0,2081,2082,5,55,0,0,2082,2087,3,140, + 70,0,2083,2084,5,55,0,0,2084,2086,3,140,70,0,2085,2083,1,0,0,0,2086, + 2089,1,0,0,0,2087,2085,1,0,0,0,2087,2088,1,0,0,0,2088,2091,1,0,0, + 0,2089,2087,1,0,0,0,2090,2065,1,0,0,0,2090,2066,1,0,0,0,2090,2070, + 1,0,0,0,2090,2080,1,0,0,0,2091,137,1,0,0,0,2092,2093,3,320,160,0, + 2093,139,1,0,0,0,2094,2100,3,138,69,0,2095,2096,5,1,0,0,2096,2097, + 3,136,68,0,2097,2098,5,2,0,0,2098,2100,1,0,0,0,2099,2094,1,0,0,0, + 2099,2095,1,0,0,0,2100,141,1,0,0,0,2101,2104,7,16,0,0,2102,2103, + 5,3,0,0,2103,2105,7,17,0,0,2104,2102,1,0,0,0,2104,2105,1,0,0,0,2105, + 2112,1,0,0,0,2106,2109,7,17,0,0,2107,2108,5,3,0,0,2108,2110,7,16, + 0,0,2109,2107,1,0,0,0,2109,2110,1,0,0,0,2110,2112,1,0,0,0,2111,2101, + 1,0,0,0,2111,2106,1,0,0,0,2112,143,1,0,0,0,2113,2114,3,294,147,0, + 2114,2123,5,1,0,0,2115,2120,3,146,73,0,2116,2117,5,3,0,0,2117,2119, + 3,146,73,0,2118,2116,1,0,0,0,2119,2122,1,0,0,0,2120,2118,1,0,0,0, + 2120,2121,1,0,0,0,2121,2124,1,0,0,0,2122,2120,1,0,0,0,2123,2115, + 1,0,0,0,2123,2124,1,0,0,0,2124,2134,1,0,0,0,2125,2126,5,53,0,0,2126, + 2131,3,156,78,0,2127,2128,5,3,0,0,2128,2130,3,156,78,0,2129,2127, + 1,0,0,0,2130,2133,1,0,0,0,2131,2129,1,0,0,0,2131,2132,1,0,0,0,2132, + 2135,1,0,0,0,2133,2131,1,0,0,0,2134,2125,1,0,0,0,2134,2135,1,0,0, + 0,2135,2136,1,0,0,0,2136,2137,5,2,0,0,2137,145,1,0,0,0,2138,2139, + 3,320,160,0,2139,2140,5,6,0,0,2140,2142,1,0,0,0,2141,2138,1,0,0, + 0,2141,2142,1,0,0,0,2142,2146,1,0,0,0,2143,2147,3,148,74,0,2144, + 2147,3,152,76,0,2145,2147,3,158,79,0,2146,2143,1,0,0,0,2146,2144, + 1,0,0,0,2146,2145,1,0,0,0,2147,147,1,0,0,0,2148,2159,3,150,75,0, + 2149,2150,5,202,0,0,2150,2157,5,36,0,0,2151,2153,5,1,0,0,2152,2154, + 3,62,31,0,2153,2152,1,0,0,0,2153,2154,1,0,0,0,2154,2155,1,0,0,0, + 2155,2158,5,2,0,0,2156,2158,3,158,79,0,2157,2151,1,0,0,0,2157,2156, + 1,0,0,0,2158,2160,1,0,0,0,2159,2149,1,0,0,0,2159,2160,1,0,0,0,2160, + 2167,1,0,0,0,2161,2162,5,218,0,0,2162,2163,5,301,0,0,2163,2168,5, + 86,0,0,2164,2165,5,145,0,0,2165,2166,5,301,0,0,2166,2168,5,86,0, + 0,2167,2161,1,0,0,0,2167,2164,1,0,0,0,2167,2168,1,0,0,0,2168,2185, + 1,0,0,0,2169,2170,5,196,0,0,2170,2183,5,36,0,0,2171,2172,5,1,0,0, + 2172,2177,3,50,25,0,2173,2174,5,3,0,0,2174,2176,3,50,25,0,2175,2173, + 1,0,0,0,2176,2179,1,0,0,0,2177,2175,1,0,0,0,2177,2178,1,0,0,0,2178, + 2180,1,0,0,0,2179,2177,1,0,0,0,2180,2181,5,2,0,0,2181,2184,1,0,0, + 0,2182,2184,3,50,25,0,2183,2171,1,0,0,0,2183,2182,1,0,0,0,2184,2186, + 1,0,0,0,2185,2169,1,0,0,0,2185,2186,1,0,0,0,2186,149,1,0,0,0,2187, + 2188,5,261,0,0,2188,2189,5,1,0,0,2189,2190,3,278,139,0,2190,2198, + 5,2,0,0,2191,2193,5,28,0,0,2192,2191,1,0,0,0,2192,2193,1,0,0,0,2193, + 2194,1,0,0,0,2194,2196,3,320,160,0,2195,2197,3,128,64,0,2196,2195, + 1,0,0,0,2196,2197,1,0,0,0,2197,2199,1,0,0,0,2198,2192,1,0,0,0,2198, + 2199,1,0,0,0,2199,2214,1,0,0,0,2200,2201,5,261,0,0,2201,2202,5,1, + 0,0,2202,2203,3,22,11,0,2203,2211,5,2,0,0,2204,2206,5,28,0,0,2205, + 2204,1,0,0,0,2205,2206,1,0,0,0,2206,2207,1,0,0,0,2207,2209,3,320, + 160,0,2208,2210,3,128,64,0,2209,2208,1,0,0,0,2209,2210,1,0,0,0,2210, + 2212,1,0,0,0,2211,2205,1,0,0,0,2211,2212,1,0,0,0,2212,2214,1,0,0, + 0,2213,2187,1,0,0,0,2213,2200,1,0,0,0,2214,151,1,0,0,0,2215,2216, + 5,78,0,0,2216,2217,5,1,0,0,2217,2222,3,154,77,0,2218,2219,5,3,0, + 0,2219,2221,3,154,77,0,2220,2218,1,0,0,0,2221,2224,1,0,0,0,2222, + 2220,1,0,0,0,2222,2223,1,0,0,0,2223,2225,1,0,0,0,2224,2222,1,0,0, + 0,2225,2226,5,2,0,0,2226,2234,1,0,0,0,2227,2228,5,41,0,0,2228,2229, + 5,1,0,0,2229,2230,5,184,0,0,2230,2231,5,28,0,0,2231,2232,5,78,0, + 0,2232,2234,5,2,0,0,2233,2215,1,0,0,0,2233,2227,1,0,0,0,2234,153, + 1,0,0,0,2235,2237,3,320,160,0,2236,2238,3,206,103,0,2237,2236,1, + 0,0,0,2237,2238,1,0,0,0,2238,155,1,0,0,0,2239,2240,5,1,0,0,2240, + 2241,3,306,153,0,2241,2242,5,3,0,0,2242,2247,3,306,153,0,2243,2244, + 5,3,0,0,2244,2246,3,306,153,0,2245,2243,1,0,0,0,2246,2249,1,0,0, + 0,2247,2245,1,0,0,0,2247,2248,1,0,0,0,2248,2250,1,0,0,0,2249,2247, + 1,0,0,0,2250,2251,5,2,0,0,2251,157,1,0,0,0,2252,2253,3,160,80,0, + 2253,159,1,0,0,0,2254,2255,6,80,-1,0,2255,2257,3,164,82,0,2256,2258, + 3,162,81,0,2257,2256,1,0,0,0,2257,2258,1,0,0,0,2258,2262,1,0,0,0, + 2259,2260,5,183,0,0,2260,2262,3,160,80,3,2261,2254,1,0,0,0,2261, + 2259,1,0,0,0,2262,2271,1,0,0,0,2263,2264,10,2,0,0,2264,2265,5,25, + 0,0,2265,2270,3,160,80,3,2266,2267,10,1,0,0,2267,2268,5,195,0,0, + 2268,2270,3,160,80,2,2269,2263,1,0,0,0,2269,2266,1,0,0,0,2270,2273, + 1,0,0,0,2271,2269,1,0,0,0,2271,2272,1,0,0,0,2272,161,1,0,0,0,2273, + 2271,1,0,0,0,2274,2275,3,194,97,0,2275,2276,3,164,82,0,2276,2336, + 1,0,0,0,2277,2278,3,194,97,0,2278,2279,3,196,98,0,2279,2280,5,1, + 0,0,2280,2281,3,22,11,0,2281,2282,5,2,0,0,2282,2336,1,0,0,0,2283, + 2285,5,183,0,0,2284,2283,1,0,0,0,2284,2285,1,0,0,0,2285,2286,1,0, + 0,0,2286,2287,5,34,0,0,2287,2288,3,164,82,0,2288,2289,5,25,0,0,2289, + 2290,3,164,82,0,2290,2336,1,0,0,0,2291,2293,5,183,0,0,2292,2291, + 1,0,0,0,2292,2293,1,0,0,0,2293,2294,1,0,0,0,2294,2295,5,123,0,0, + 2295,2296,5,1,0,0,2296,2301,3,158,79,0,2297,2298,5,3,0,0,2298,2300, + 3,158,79,0,2299,2297,1,0,0,0,2300,2303,1,0,0,0,2301,2299,1,0,0,0, + 2301,2302,1,0,0,0,2302,2304,1,0,0,0,2303,2301,1,0,0,0,2304,2305, + 5,2,0,0,2305,2336,1,0,0,0,2306,2308,5,183,0,0,2307,2306,1,0,0,0, + 2307,2308,1,0,0,0,2308,2309,1,0,0,0,2309,2310,5,123,0,0,2310,2311, + 5,1,0,0,2311,2312,3,22,11,0,2312,2313,5,2,0,0,2313,2336,1,0,0,0, + 2314,2316,5,183,0,0,2315,2314,1,0,0,0,2315,2316,1,0,0,0,2316,2317, + 1,0,0,0,2317,2318,5,155,0,0,2318,2321,3,164,82,0,2319,2320,5,91, + 0,0,2320,2322,3,164,82,0,2321,2319,1,0,0,0,2321,2322,1,0,0,0,2322, + 2336,1,0,0,0,2323,2325,5,134,0,0,2324,2326,5,183,0,0,2325,2324,1, + 0,0,0,2325,2326,1,0,0,0,2326,2327,1,0,0,0,2327,2336,5,184,0,0,2328, + 2330,5,134,0,0,2329,2331,5,183,0,0,2330,2329,1,0,0,0,2330,2331,1, + 0,0,0,2331,2332,1,0,0,0,2332,2333,5,80,0,0,2333,2334,5,106,0,0,2334, + 2336,3,164,82,0,2335,2274,1,0,0,0,2335,2277,1,0,0,0,2335,2284,1, + 0,0,0,2335,2292,1,0,0,0,2335,2307,1,0,0,0,2335,2315,1,0,0,0,2335, + 2323,1,0,0,0,2335,2328,1,0,0,0,2336,163,1,0,0,0,2337,2338,6,82,-1, + 0,2338,2342,3,166,83,0,2339,2340,7,18,0,0,2340,2342,3,164,82,4,2341, + 2337,1,0,0,0,2341,2339,1,0,0,0,2342,2357,1,0,0,0,2343,2344,10,3, + 0,0,2344,2345,7,19,0,0,2345,2356,3,164,82,4,2346,2347,10,2,0,0,2347, + 2348,7,18,0,0,2348,2356,3,164,82,3,2349,2350,10,1,0,0,2350,2351, + 5,324,0,0,2351,2356,3,164,82,2,2352,2353,10,5,0,0,2353,2354,5,30, + 0,0,2354,2356,3,192,96,0,2355,2343,1,0,0,0,2355,2346,1,0,0,0,2355, + 2349,1,0,0,0,2355,2352,1,0,0,0,2356,2359,1,0,0,0,2357,2355,1,0,0, + 0,2357,2358,1,0,0,0,2358,165,1,0,0,0,2359,2357,1,0,0,0,2360,2361, + 6,83,-1,0,2361,2826,5,184,0,0,2362,2826,3,200,100,0,2363,2364,3, + 320,160,0,2364,2365,3,190,95,0,2365,2826,1,0,0,0,2366,2367,5,83, + 0,0,2367,2368,5,214,0,0,2368,2826,3,190,95,0,2369,2826,3,322,161, + 0,2370,2826,3,198,99,0,2371,2826,3,190,95,0,2372,2826,5,329,0,0, + 2373,2826,5,325,0,0,2374,2375,5,212,0,0,2375,2376,5,1,0,0,2376,2377, + 3,164,82,0,2377,2378,5,123,0,0,2378,2379,3,164,82,0,2379,2380,5, + 2,0,0,2380,2826,1,0,0,0,2381,2382,5,1,0,0,2382,2385,3,158,79,0,2383, + 2384,5,3,0,0,2384,2386,3,158,79,0,2385,2383,1,0,0,0,2386,2387,1, + 0,0,0,2387,2385,1,0,0,0,2387,2388,1,0,0,0,2388,2389,1,0,0,0,2389, + 2390,5,2,0,0,2390,2826,1,0,0,0,2391,2392,5,240,0,0,2392,2393,5,1, + 0,0,2393,2398,3,158,79,0,2394,2395,5,3,0,0,2395,2397,3,158,79,0, + 2396,2394,1,0,0,0,2397,2400,1,0,0,0,2398,2396,1,0,0,0,2398,2399, + 1,0,0,0,2399,2401,1,0,0,0,2400,2398,1,0,0,0,2401,2402,5,2,0,0,2402, + 2826,1,0,0,0,2403,2404,5,157,0,0,2404,2406,5,1,0,0,2405,2407,3,76, + 38,0,2406,2405,1,0,0,0,2406,2407,1,0,0,0,2407,2408,1,0,0,0,2408, + 2411,3,158,79,0,2409,2410,5,3,0,0,2410,2412,3,190,95,0,2411,2409, + 1,0,0,0,2411,2412,1,0,0,0,2412,2416,1,0,0,0,2413,2414,5,191,0,0, + 2414,2415,5,201,0,0,2415,2417,3,104,52,0,2416,2413,1,0,0,0,2416, + 2417,1,0,0,0,2417,2418,1,0,0,0,2418,2419,5,2,0,0,2419,2420,5,306, + 0,0,2420,2421,5,115,0,0,2421,2422,5,1,0,0,2422,2423,5,196,0,0,2423, + 2424,5,36,0,0,2424,2429,3,50,25,0,2425,2426,5,3,0,0,2426,2428,3, + 50,25,0,2427,2425,1,0,0,0,2428,2431,1,0,0,0,2429,2427,1,0,0,0,2429, + 2430,1,0,0,0,2430,2432,1,0,0,0,2431,2429,1,0,0,0,2432,2433,5,2,0, + 0,2433,2435,1,0,0,0,2434,2436,3,214,107,0,2435,2434,1,0,0,0,2435, + 2436,1,0,0,0,2436,2826,1,0,0,0,2437,2439,3,186,93,0,2438,2437,1, + 0,0,0,2438,2439,1,0,0,0,2439,2440,1,0,0,0,2440,2441,3,294,147,0, + 2441,2445,5,1,0,0,2442,2443,3,320,160,0,2443,2444,5,4,0,0,2444,2446, + 1,0,0,0,2445,2442,1,0,0,0,2445,2446,1,0,0,0,2446,2447,1,0,0,0,2447, + 2448,5,321,0,0,2448,2450,5,2,0,0,2449,2451,3,214,107,0,2450,2449, + 1,0,0,0,2450,2451,1,0,0,0,2451,2453,1,0,0,0,2452,2454,3,218,109, + 0,2453,2452,1,0,0,0,2453,2454,1,0,0,0,2454,2826,1,0,0,0,2455,2457, + 3,186,93,0,2456,2455,1,0,0,0,2456,2457,1,0,0,0,2457,2458,1,0,0,0, + 2458,2459,3,294,147,0,2459,2471,5,1,0,0,2460,2462,3,76,38,0,2461, + 2460,1,0,0,0,2461,2462,1,0,0,0,2462,2463,1,0,0,0,2463,2468,3,158, + 79,0,2464,2465,5,3,0,0,2465,2467,3,158,79,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,2472,1,0,0, + 0,2470,2468,1,0,0,0,2471,2461,1,0,0,0,2471,2472,1,0,0,0,2472,2483, + 1,0,0,0,2473,2474,5,196,0,0,2474,2475,5,36,0,0,2475,2480,3,50,25, + 0,2476,2477,5,3,0,0,2477,2479,3,50,25,0,2478,2476,1,0,0,0,2479,2482, + 1,0,0,0,2480,2478,1,0,0,0,2480,2481,1,0,0,0,2481,2484,1,0,0,0,2482, + 2480,1,0,0,0,2483,2473,1,0,0,0,2483,2484,1,0,0,0,2484,2485,1,0,0, + 0,2485,2487,5,2,0,0,2486,2488,3,214,107,0,2487,2486,1,0,0,0,2487, + 2488,1,0,0,0,2488,2493,1,0,0,0,2489,2491,3,188,94,0,2490,2489,1, + 0,0,0,2490,2491,1,0,0,0,2491,2492,1,0,0,0,2492,2494,3,218,109,0, + 2493,2490,1,0,0,0,2493,2494,1,0,0,0,2494,2826,1,0,0,0,2495,2496, + 3,320,160,0,2496,2497,3,218,109,0,2497,2826,1,0,0,0,2498,2499,3, + 320,160,0,2499,2500,5,7,0,0,2500,2501,3,158,79,0,2501,2826,1,0,0, + 0,2502,2511,5,1,0,0,2503,2508,3,320,160,0,2504,2505,5,3,0,0,2505, + 2507,3,320,160,0,2506,2504,1,0,0,0,2507,2510,1,0,0,0,2508,2506,1, + 0,0,0,2508,2509,1,0,0,0,2509,2512,1,0,0,0,2510,2508,1,0,0,0,2511, + 2503,1,0,0,0,2511,2512,1,0,0,0,2512,2513,1,0,0,0,2513,2514,5,2,0, + 0,2514,2515,5,7,0,0,2515,2826,3,158,79,0,2516,2517,5,1,0,0,2517, + 2518,3,22,11,0,2518,2519,5,2,0,0,2519,2826,1,0,0,0,2520,2521,5,95, + 0,0,2521,2522,5,1,0,0,2522,2523,3,22,11,0,2523,2524,5,2,0,0,2524, + 2826,1,0,0,0,2525,2526,5,40,0,0,2526,2528,3,158,79,0,2527,2529,3, + 212,106,0,2528,2527,1,0,0,0,2529,2530,1,0,0,0,2530,2528,1,0,0,0, + 2530,2531,1,0,0,0,2531,2534,1,0,0,0,2532,2533,5,85,0,0,2533,2535, + 3,158,79,0,2534,2532,1,0,0,0,2534,2535,1,0,0,0,2535,2536,1,0,0,0, + 2536,2537,5,89,0,0,2537,2826,1,0,0,0,2538,2540,5,40,0,0,2539,2541, + 3,212,106,0,2540,2539,1,0,0,0,2541,2542,1,0,0,0,2542,2540,1,0,0, + 0,2542,2543,1,0,0,0,2543,2546,1,0,0,0,2544,2545,5,85,0,0,2545,2547, + 3,158,79,0,2546,2544,1,0,0,0,2546,2547,1,0,0,0,2547,2548,1,0,0,0, + 2548,2549,5,89,0,0,2549,2826,1,0,0,0,2550,2551,5,41,0,0,2551,2552, + 5,1,0,0,2552,2553,3,158,79,0,2553,2554,5,28,0,0,2554,2555,3,206, + 103,0,2555,2556,5,2,0,0,2556,2826,1,0,0,0,2557,2558,5,276,0,0,2558, + 2559,5,1,0,0,2559,2560,3,158,79,0,2560,2561,5,28,0,0,2561,2562,3, + 206,103,0,2562,2563,5,2,0,0,2563,2826,1,0,0,0,2564,2565,5,27,0,0, + 2565,2574,5,8,0,0,2566,2571,3,158,79,0,2567,2568,5,3,0,0,2568,2570, + 3,158,79,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,2826,5,9,0,0,2577, + 2826,3,302,151,0,2578,2826,5,59,0,0,2579,2583,5,63,0,0,2580,2581, + 5,1,0,0,2581,2582,5,330,0,0,2582,2584,5,2,0,0,2583,2580,1,0,0,0, + 2583,2584,1,0,0,0,2584,2826,1,0,0,0,2585,2589,5,64,0,0,2586,2587, + 5,1,0,0,2587,2588,5,330,0,0,2588,2590,5,2,0,0,2589,2586,1,0,0,0, + 2589,2590,1,0,0,0,2590,2826,1,0,0,0,2591,2595,5,159,0,0,2592,2593, + 5,1,0,0,2593,2594,5,330,0,0,2594,2596,5,2,0,0,2595,2592,1,0,0,0, + 2595,2596,1,0,0,0,2596,2826,1,0,0,0,2597,2601,5,160,0,0,2598,2599, + 5,1,0,0,2599,2600,5,330,0,0,2600,2602,5,2,0,0,2601,2598,1,0,0,0, + 2601,2602,1,0,0,0,2602,2826,1,0,0,0,2603,2826,5,65,0,0,2604,2826, + 5,58,0,0,2605,2826,5,62,0,0,2606,2826,5,60,0,0,2607,2608,5,273,0, + 0,2608,2616,5,1,0,0,2609,2611,3,102,51,0,2610,2609,1,0,0,0,2610, + 2611,1,0,0,0,2611,2613,1,0,0,0,2612,2614,3,164,82,0,2613,2612,1, + 0,0,0,2613,2614,1,0,0,0,2614,2615,1,0,0,0,2615,2617,5,106,0,0,2616, + 2610,1,0,0,0,2616,2617,1,0,0,0,2617,2618,1,0,0,0,2618,2619,3,164, + 82,0,2619,2620,5,2,0,0,2620,2826,1,0,0,0,2621,2622,5,273,0,0,2622, + 2623,5,1,0,0,2623,2624,3,164,82,0,2624,2625,5,3,0,0,2625,2626,3, + 164,82,0,2626,2627,5,2,0,0,2627,2826,1,0,0,0,2628,2629,5,259,0,0, + 2629,2630,5,1,0,0,2630,2631,3,164,82,0,2631,2632,5,106,0,0,2632, + 2635,3,164,82,0,2633,2634,5,104,0,0,2634,2636,3,164,82,0,2635,2633, + 1,0,0,0,2635,2636,1,0,0,0,2636,2637,1,0,0,0,2637,2638,5,2,0,0,2638, + 2826,1,0,0,0,2639,2640,5,182,0,0,2640,2641,5,1,0,0,2641,2644,3,164, + 82,0,2642,2643,5,3,0,0,2643,2645,3,204,102,0,2644,2642,1,0,0,0,2644, + 2645,1,0,0,0,2645,2646,1,0,0,0,2646,2647,5,2,0,0,2647,2826,1,0,0, + 0,2648,2649,5,97,0,0,2649,2650,5,1,0,0,2650,2651,3,320,160,0,2651, + 2652,5,106,0,0,2652,2653,3,164,82,0,2653,2654,5,2,0,0,2654,2826, + 1,0,0,0,2655,2656,5,44,0,0,2656,2657,5,1,0,0,2657,2662,3,158,79, + 0,2658,2659,5,3,0,0,2659,2661,3,158,79,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,2,0,0,2666,2826,1,0,0,0,2667,2668, + 5,1,0,0,2668,2669,3,158,79,0,2669,2670,5,2,0,0,2670,2826,1,0,0,0, + 2671,2672,5,116,0,0,2672,2681,5,1,0,0,2673,2678,3,306,153,0,2674, + 2675,5,3,0,0,2675,2677,3,306,153,0,2676,2674,1,0,0,0,2677,2680,1, + 0,0,0,2678,2676,1,0,0,0,2678,2679,1,0,0,0,2679,2682,1,0,0,0,2680, + 2678,1,0,0,0,2681,2673,1,0,0,0,2681,2682,1,0,0,0,2682,2683,1,0,0, + 0,2683,2826,5,2,0,0,2684,2685,5,140,0,0,2685,2686,5,1,0,0,2686,2691, + 3,168,84,0,2687,2688,3,176,88,0,2688,2689,5,191,0,0,2689,2690,5, + 90,0,0,2690,2692,1,0,0,0,2691,2687,1,0,0,0,2691,2692,1,0,0,0,2692, + 2693,1,0,0,0,2693,2694,5,2,0,0,2694,2826,1,0,0,0,2695,2696,5,144, + 0,0,2696,2697,5,1,0,0,2697,2700,3,168,84,0,2698,2699,5,232,0,0,2699, + 2701,3,206,103,0,2700,2698,1,0,0,0,2700,2701,1,0,0,0,2701,2706,1, + 0,0,0,2702,2703,3,178,89,0,2703,2704,5,191,0,0,2704,2705,5,86,0, + 0,2705,2707,1,0,0,0,2706,2702,1,0,0,0,2706,2707,1,0,0,0,2707,2712, + 1,0,0,0,2708,2709,3,178,89,0,2709,2710,5,191,0,0,2710,2711,5,90, + 0,0,2711,2713,1,0,0,0,2712,2708,1,0,0,0,2712,2713,1,0,0,0,2713,2714, + 1,0,0,0,2714,2715,5,2,0,0,2715,2826,1,0,0,0,2716,2717,5,142,0,0, + 2717,2718,5,1,0,0,2718,2725,3,168,84,0,2719,2720,5,232,0,0,2720, + 2723,3,206,103,0,2721,2722,5,105,0,0,2722,2724,3,172,86,0,2723,2721, + 1,0,0,0,2723,2724,1,0,0,0,2724,2726,1,0,0,0,2725,2719,1,0,0,0,2725, + 2726,1,0,0,0,2726,2730,1,0,0,0,2727,2728,3,180,90,0,2728,2729,5, + 309,0,0,2729,2731,1,0,0,0,2730,2727,1,0,0,0,2730,2731,1,0,0,0,2731, + 2739,1,0,0,0,2732,2733,7,15,0,0,2733,2737,5,219,0,0,2734,2735,5, + 191,0,0,2735,2736,5,243,0,0,2736,2738,5,265,0,0,2737,2734,1,0,0, + 0,2737,2738,1,0,0,0,2738,2740,1,0,0,0,2739,2732,1,0,0,0,2739,2740, + 1,0,0,0,2740,2745,1,0,0,0,2741,2742,3,182,91,0,2742,2743,5,191,0, + 0,2743,2744,5,86,0,0,2744,2746,1,0,0,0,2745,2741,1,0,0,0,2745,2746, + 1,0,0,0,2746,2751,1,0,0,0,2747,2748,3,182,91,0,2748,2749,5,191,0, + 0,2749,2750,5,90,0,0,2750,2752,1,0,0,0,2751,2747,1,0,0,0,2751,2752, + 1,0,0,0,2752,2753,1,0,0,0,2753,2754,5,2,0,0,2754,2826,1,0,0,0,2755, + 2756,5,141,0,0,2756,2785,5,1,0,0,2757,2762,3,184,92,0,2758,2759, + 5,3,0,0,2759,2761,3,184,92,0,2760,2758,1,0,0,0,2761,2764,1,0,0,0, + 2762,2760,1,0,0,0,2762,2763,1,0,0,0,2763,2771,1,0,0,0,2764,2762, + 1,0,0,0,2765,2766,5,184,0,0,2766,2767,5,191,0,0,2767,2772,5,184, + 0,0,2768,2769,5,18,0,0,2769,2770,5,191,0,0,2770,2772,5,184,0,0,2771, + 2765,1,0,0,0,2771,2768,1,0,0,0,2771,2772,1,0,0,0,2772,2783,1,0,0, + 0,2773,2774,5,305,0,0,2774,2776,5,283,0,0,2775,2777,5,147,0,0,2776, + 2775,1,0,0,0,2776,2777,1,0,0,0,2777,2784,1,0,0,0,2778,2779,5,307, + 0,0,2779,2781,5,283,0,0,2780,2782,5,147,0,0,2781,2780,1,0,0,0,2781, + 2782,1,0,0,0,2782,2784,1,0,0,0,2783,2773,1,0,0,0,2783,2778,1,0,0, + 0,2783,2784,1,0,0,0,2784,2786,1,0,0,0,2785,2757,1,0,0,0,2785,2786, + 1,0,0,0,2786,2793,1,0,0,0,2787,2788,5,232,0,0,2788,2791,3,206,103, + 0,2789,2790,5,105,0,0,2790,2792,3,172,86,0,2791,2789,1,0,0,0,2791, + 2792,1,0,0,0,2792,2794,1,0,0,0,2793,2787,1,0,0,0,2793,2794,1,0,0, + 0,2794,2795,1,0,0,0,2795,2826,5,2,0,0,2796,2797,5,139,0,0,2797,2814, + 5,1,0,0,2798,2803,3,170,85,0,2799,2800,5,3,0,0,2800,2802,3,170,85, + 0,2801,2799,1,0,0,0,2802,2805,1,0,0,0,2803,2801,1,0,0,0,2803,2804, + 1,0,0,0,2804,2812,1,0,0,0,2805,2803,1,0,0,0,2806,2807,5,184,0,0, + 2807,2808,5,191,0,0,2808,2813,5,184,0,0,2809,2810,5,18,0,0,2810, + 2811,5,191,0,0,2811,2813,5,184,0,0,2812,2806,1,0,0,0,2812,2809,1, + 0,0,0,2812,2813,1,0,0,0,2813,2815,1,0,0,0,2814,2798,1,0,0,0,2814, + 2815,1,0,0,0,2815,2822,1,0,0,0,2816,2817,5,232,0,0,2817,2820,3,206, + 103,0,2818,2819,5,105,0,0,2819,2821,3,172,86,0,2820,2818,1,0,0,0, + 2820,2821,1,0,0,0,2821,2823,1,0,0,0,2822,2816,1,0,0,0,2822,2823, + 1,0,0,0,2823,2824,1,0,0,0,2824,2826,5,2,0,0,2825,2360,1,0,0,0,2825, + 2362,1,0,0,0,2825,2363,1,0,0,0,2825,2366,1,0,0,0,2825,2369,1,0,0, + 0,2825,2370,1,0,0,0,2825,2371,1,0,0,0,2825,2372,1,0,0,0,2825,2373, + 1,0,0,0,2825,2374,1,0,0,0,2825,2381,1,0,0,0,2825,2391,1,0,0,0,2825, + 2403,1,0,0,0,2825,2438,1,0,0,0,2825,2456,1,0,0,0,2825,2495,1,0,0, + 0,2825,2498,1,0,0,0,2825,2502,1,0,0,0,2825,2516,1,0,0,0,2825,2520, + 1,0,0,0,2825,2525,1,0,0,0,2825,2538,1,0,0,0,2825,2550,1,0,0,0,2825, + 2557,1,0,0,0,2825,2564,1,0,0,0,2825,2577,1,0,0,0,2825,2578,1,0,0, + 0,2825,2579,1,0,0,0,2825,2585,1,0,0,0,2825,2591,1,0,0,0,2825,2597, + 1,0,0,0,2825,2603,1,0,0,0,2825,2604,1,0,0,0,2825,2605,1,0,0,0,2825, + 2606,1,0,0,0,2825,2607,1,0,0,0,2825,2621,1,0,0,0,2825,2628,1,0,0, + 0,2825,2639,1,0,0,0,2825,2648,1,0,0,0,2825,2655,1,0,0,0,2825,2667, + 1,0,0,0,2825,2671,1,0,0,0,2825,2684,1,0,0,0,2825,2695,1,0,0,0,2825, + 2716,1,0,0,0,2825,2755,1,0,0,0,2825,2796,1,0,0,0,2826,2837,1,0,0, + 0,2827,2828,10,25,0,0,2828,2829,5,8,0,0,2829,2830,3,164,82,0,2830, + 2831,5,9,0,0,2831,2836,1,0,0,0,2832,2833,10,23,0,0,2833,2834,5,4, + 0,0,2834,2836,3,320,160,0,2835,2827,1,0,0,0,2835,2832,1,0,0,0,2836, + 2839,1,0,0,0,2837,2835,1,0,0,0,2837,2838,1,0,0,0,2838,167,1,0,0, + 0,2839,2837,1,0,0,0,2840,2841,3,170,85,0,2841,2842,5,3,0,0,2842, + 2845,3,190,95,0,2843,2844,5,28,0,0,2844,2846,3,320,160,0,2845,2843, + 1,0,0,0,2845,2846,1,0,0,0,2846,2856,1,0,0,0,2847,2848,5,204,0,0, + 2848,2853,3,174,87,0,2849,2850,5,3,0,0,2850,2852,3,174,87,0,2851, + 2849,1,0,0,0,2852,2855,1,0,0,0,2853,2851,1,0,0,0,2853,2854,1,0,0, + 0,2854,2857,1,0,0,0,2855,2853,1,0,0,0,2856,2847,1,0,0,0,2856,2857, + 1,0,0,0,2857,169,1,0,0,0,2858,2861,3,158,79,0,2859,2860,5,105,0, + 0,2860,2862,3,172,86,0,2861,2859,1,0,0,0,2861,2862,1,0,0,0,2862, + 171,1,0,0,0,2863,2866,5,138,0,0,2864,2865,5,88,0,0,2865,2867,7,20, + 0,0,2866,2864,1,0,0,0,2866,2867,1,0,0,0,2867,173,1,0,0,0,2868,2869, + 3,170,85,0,2869,2870,5,28,0,0,2870,2871,3,320,160,0,2871,175,1,0, + 0,0,2872,2873,7,21,0,0,2873,177,1,0,0,0,2874,2879,5,90,0,0,2875, + 2879,5,184,0,0,2876,2877,5,71,0,0,2877,2879,3,158,79,0,2878,2874, + 1,0,0,0,2878,2875,1,0,0,0,2878,2876,1,0,0,0,2879,179,1,0,0,0,2880, + 2882,5,307,0,0,2881,2883,5,27,0,0,2882,2881,1,0,0,0,2882,2883,1, + 0,0,0,2883,2892,1,0,0,0,2884,2886,5,305,0,0,2885,2887,7,22,0,0,2886, + 2885,1,0,0,0,2886,2887,1,0,0,0,2887,2889,1,0,0,0,2888,2890,5,27, + 0,0,2889,2888,1,0,0,0,2889,2890,1,0,0,0,2890,2892,1,0,0,0,2891,2880, + 1,0,0,0,2891,2884,1,0,0,0,2892,181,1,0,0,0,2893,2900,5,90,0,0,2894, + 2900,5,184,0,0,2895,2896,5,86,0,0,2896,2900,5,27,0,0,2897,2898,5, + 86,0,0,2898,2900,5,187,0,0,2899,2893,1,0,0,0,2899,2894,1,0,0,0,2899, + 2895,1,0,0,0,2899,2897,1,0,0,0,2900,183,1,0,0,0,2901,2903,5,146, + 0,0,2902,2901,1,0,0,0,2902,2903,1,0,0,0,2903,2904,1,0,0,0,2904,2905, + 3,158,79,0,2905,2906,5,296,0,0,2906,2907,3,170,85,0,2907,2913,1, + 0,0,0,2908,2909,3,158,79,0,2909,2910,5,10,0,0,2910,2911,3,170,85, + 0,2911,2913,1,0,0,0,2912,2902,1,0,0,0,2912,2908,1,0,0,0,2913,185, + 1,0,0,0,2914,2915,7,23,0,0,2915,187,1,0,0,0,2916,2917,5,121,0,0, + 2917,2921,5,186,0,0,2918,2919,5,229,0,0,2919,2921,5,186,0,0,2920, + 2916,1,0,0,0,2920,2918,1,0,0,0,2921,189,1,0,0,0,2922,2929,5,327, + 0,0,2923,2926,5,328,0,0,2924,2925,5,278,0,0,2925,2927,5,327,0,0, + 2926,2924,1,0,0,0,2926,2927,1,0,0,0,2927,2929,1,0,0,0,2928,2922, + 1,0,0,0,2928,2923,1,0,0,0,2929,191,1,0,0,0,2930,2931,5,268,0,0,2931, + 2932,5,312,0,0,2932,2937,3,200,100,0,2933,2934,5,268,0,0,2934,2935, + 5,312,0,0,2935,2937,3,190,95,0,2936,2930,1,0,0,0,2936,2933,1,0,0, + 0,2937,193,1,0,0,0,2938,2939,7,24,0,0,2939,195,1,0,0,0,2940,2941, + 7,25,0,0,2941,197,1,0,0,0,2942,2943,7,26,0,0,2943,199,1,0,0,0,2944, + 2946,5,130,0,0,2945,2947,7,18,0,0,2946,2945,1,0,0,0,2946,2947,1, + 0,0,0,2947,2948,1,0,0,0,2948,2949,3,190,95,0,2949,2952,3,202,101, + 0,2950,2951,5,270,0,0,2951,2953,3,202,101,0,2952,2950,1,0,0,0,2952, + 2953,1,0,0,0,2953,201,1,0,0,0,2954,2955,7,27,0,0,2955,203,1,0,0, + 0,2956,2957,7,28,0,0,2957,205,1,0,0,0,2958,2959,6,103,-1,0,2959, + 2960,5,240,0,0,2960,2961,5,1,0,0,2961,2966,3,208,104,0,2962,2963, + 5,3,0,0,2963,2965,3,208,104,0,2964,2962,1,0,0,0,2965,2968,1,0,0, + 0,2966,2964,1,0,0,0,2966,2967,1,0,0,0,2967,2969,1,0,0,0,2968,2966, + 1,0,0,0,2969,2970,5,2,0,0,2970,3030,1,0,0,0,2971,2972,5,130,0,0, + 2972,2975,3,202,101,0,2973,2974,5,270,0,0,2974,2976,3,202,101,0, + 2975,2973,1,0,0,0,2975,2976,1,0,0,0,2976,3030,1,0,0,0,2977,2982, + 5,269,0,0,2978,2979,5,1,0,0,2979,2980,3,210,105,0,2980,2981,5,2, + 0,0,2981,2983,1,0,0,0,2982,2978,1,0,0,0,2982,2983,1,0,0,0,2983,2987, + 1,0,0,0,2984,2985,7,29,0,0,2985,2986,5,268,0,0,2986,2988,5,312,0, + 0,2987,2984,1,0,0,0,2987,2988,1,0,0,0,2988,3030,1,0,0,0,2989,2994, + 5,268,0,0,2990,2991,5,1,0,0,2991,2992,3,210,105,0,2992,2993,5,2, + 0,0,2993,2995,1,0,0,0,2994,2990,1,0,0,0,2994,2995,1,0,0,0,2995,2999, + 1,0,0,0,2996,2997,7,29,0,0,2997,2998,5,268,0,0,2998,3000,5,312,0, + 0,2999,2996,1,0,0,0,2999,3000,1,0,0,0,3000,3030,1,0,0,0,3001,3002, + 5,83,0,0,3002,3030,5,214,0,0,3003,3004,5,27,0,0,3004,3005,5,315, + 0,0,3005,3006,3,206,103,0,3006,3007,5,317,0,0,3007,3030,1,0,0,0, + 3008,3009,5,163,0,0,3009,3010,5,315,0,0,3010,3011,3,206,103,0,3011, + 3012,5,3,0,0,3012,3013,3,206,103,0,3013,3014,5,317,0,0,3014,3030, + 1,0,0,0,3015,3027,3,320,160,0,3016,3017,5,1,0,0,3017,3022,3,210, + 105,0,3018,3019,5,3,0,0,3019,3021,3,210,105,0,3020,3018,1,0,0,0, + 3021,3024,1,0,0,0,3022,3020,1,0,0,0,3022,3023,1,0,0,0,3023,3025, + 1,0,0,0,3024,3022,1,0,0,0,3025,3026,5,2,0,0,3026,3028,1,0,0,0,3027, + 3016,1,0,0,0,3027,3028,1,0,0,0,3028,3030,1,0,0,0,3029,2958,1,0,0, + 0,3029,2971,1,0,0,0,3029,2977,1,0,0,0,3029,2989,1,0,0,0,3029,3001, + 1,0,0,0,3029,3003,1,0,0,0,3029,3008,1,0,0,0,3029,3015,1,0,0,0,3030, + 3040,1,0,0,0,3031,3032,10,2,0,0,3032,3036,5,27,0,0,3033,3034,5,8, + 0,0,3034,3035,5,330,0,0,3035,3037,5,9,0,0,3036,3033,1,0,0,0,3036, + 3037,1,0,0,0,3037,3039,1,0,0,0,3038,3031,1,0,0,0,3039,3042,1,0,0, + 0,3040,3038,1,0,0,0,3040,3041,1,0,0,0,3041,207,1,0,0,0,3042,3040, + 1,0,0,0,3043,3048,3,206,103,0,3044,3045,3,320,160,0,3045,3046,3, + 206,103,0,3046,3048,1,0,0,0,3047,3043,1,0,0,0,3047,3044,1,0,0,0, + 3048,209,1,0,0,0,3049,3052,5,330,0,0,3050,3052,3,206,103,0,3051, + 3049,1,0,0,0,3051,3050,1,0,0,0,3052,211,1,0,0,0,3053,3054,5,301, + 0,0,3054,3055,3,158,79,0,3055,3056,5,266,0,0,3056,3057,3,158,79, + 0,3057,213,1,0,0,0,3058,3059,5,100,0,0,3059,3060,5,1,0,0,3060,3061, + 3,54,27,0,3061,3062,5,2,0,0,3062,215,1,0,0,0,3063,3064,5,301,0,0, + 3064,3067,5,165,0,0,3065,3066,5,25,0,0,3066,3068,3,158,79,0,3067, + 3065,1,0,0,0,3067,3068,1,0,0,0,3068,3069,1,0,0,0,3069,3070,5,266, + 0,0,3070,3071,5,288,0,0,3071,3072,5,252,0,0,3072,3073,3,320,160, + 0,3073,3074,5,313,0,0,3074,3082,3,158,79,0,3075,3076,5,3,0,0,3076, + 3077,3,320,160,0,3077,3078,5,313,0,0,3078,3079,3,158,79,0,3079,3081, + 1,0,0,0,3080,3075,1,0,0,0,3081,3084,1,0,0,0,3082,3080,1,0,0,0,3082, + 3083,1,0,0,0,3083,3128,1,0,0,0,3084,3082,1,0,0,0,3085,3086,5,301, + 0,0,3086,3089,5,165,0,0,3087,3088,5,25,0,0,3088,3090,3,158,79,0, + 3089,3087,1,0,0,0,3089,3090,1,0,0,0,3090,3091,1,0,0,0,3091,3092, + 5,266,0,0,3092,3128,5,74,0,0,3093,3094,5,301,0,0,3094,3095,5,183, + 0,0,3095,3098,5,165,0,0,3096,3097,5,25,0,0,3097,3099,3,158,79,0, + 3098,3096,1,0,0,0,3098,3099,1,0,0,0,3099,3100,1,0,0,0,3100,3101, + 5,266,0,0,3101,3113,5,128,0,0,3102,3103,5,1,0,0,3103,3108,3,320, + 160,0,3104,3105,5,3,0,0,3105,3107,3,320,160,0,3106,3104,1,0,0,0, + 3107,3110,1,0,0,0,3108,3106,1,0,0,0,3108,3109,1,0,0,0,3109,3111, + 1,0,0,0,3110,3108,1,0,0,0,3111,3112,5,2,0,0,3112,3114,1,0,0,0,3113, + 3102,1,0,0,0,3113,3114,1,0,0,0,3114,3115,1,0,0,0,3115,3116,5,297, + 0,0,3116,3117,5,1,0,0,3117,3122,3,158,79,0,3118,3119,5,3,0,0,3119, + 3121,3,158,79,0,3120,3118,1,0,0,0,3121,3124,1,0,0,0,3122,3120,1, + 0,0,0,3122,3123,1,0,0,0,3123,3125,1,0,0,0,3124,3122,1,0,0,0,3125, + 3126,5,2,0,0,3126,3128,1,0,0,0,3127,3063,1,0,0,0,3127,3085,1,0,0, + 0,3127,3093,1,0,0,0,3128,217,1,0,0,0,3129,3135,5,200,0,0,3130,3136, + 3,320,160,0,3131,3132,5,1,0,0,3132,3133,3,72,36,0,3133,3134,5,2, + 0,0,3134,3136,1,0,0,0,3135,3130,1,0,0,0,3135,3131,1,0,0,0,3136,219, + 1,0,0,0,3137,3138,5,169,0,0,3138,3143,3,110,55,0,3139,3140,5,3,0, + 0,3140,3142,3,110,55,0,3141,3139,1,0,0,0,3142,3145,1,0,0,0,3143, + 3141,1,0,0,0,3143,3144,1,0,0,0,3144,3147,1,0,0,0,3145,3143,1,0,0, + 0,3146,3137,1,0,0,0,3146,3147,1,0,0,0,3147,3148,1,0,0,0,3148,3152, + 3,222,111,0,3149,3150,5,21,0,0,3150,3151,5,164,0,0,3151,3153,3,116, + 58,0,3152,3149,1,0,0,0,3152,3153,1,0,0,0,3153,3155,1,0,0,0,3154, + 3156,7,13,0,0,3155,3154,1,0,0,0,3155,3156,1,0,0,0,3156,3162,1,0, + 0,0,3157,3158,5,207,0,0,3158,3159,5,1,0,0,3159,3160,3,226,113,0, + 3160,3161,5,2,0,0,3161,3163,1,0,0,0,3162,3157,1,0,0,0,3162,3163, + 1,0,0,0,3163,3173,1,0,0,0,3164,3165,5,258,0,0,3165,3170,3,118,59, + 0,3166,3167,5,3,0,0,3167,3169,3,118,59,0,3168,3166,1,0,0,0,3169, + 3172,1,0,0,0,3170,3168,1,0,0,0,3170,3171,1,0,0,0,3171,3174,1,0,0, + 0,3172,3170,1,0,0,0,3173,3164,1,0,0,0,3173,3174,1,0,0,0,3174,3184, + 1,0,0,0,3175,3176,5,72,0,0,3176,3181,3,120,60,0,3177,3178,5,3,0, + 0,3178,3180,3,120,60,0,3179,3177,1,0,0,0,3180,3183,1,0,0,0,3181, + 3179,1,0,0,0,3181,3182,1,0,0,0,3182,3185,1,0,0,0,3183,3181,1,0,0, + 0,3184,3175,1,0,0,0,3184,3185,1,0,0,0,3185,221,1,0,0,0,3186,3187, + 5,220,0,0,3187,3211,3,224,112,0,3188,3189,5,241,0,0,3189,3211,3, + 224,112,0,3190,3191,5,117,0,0,3191,3211,3,224,112,0,3192,3193,5, + 220,0,0,3193,3194,5,34,0,0,3194,3195,3,224,112,0,3195,3196,5,25, + 0,0,3196,3197,3,224,112,0,3197,3211,1,0,0,0,3198,3199,5,241,0,0, + 3199,3200,5,34,0,0,3200,3201,3,224,112,0,3201,3202,5,25,0,0,3202, + 3203,3,224,112,0,3203,3211,1,0,0,0,3204,3205,5,117,0,0,3205,3206, + 5,34,0,0,3206,3207,3,224,112,0,3207,3208,5,25,0,0,3208,3209,3,224, + 112,0,3209,3211,1,0,0,0,3210,3186,1,0,0,0,3210,3188,1,0,0,0,3210, + 3190,1,0,0,0,3210,3192,1,0,0,0,3210,3198,1,0,0,0,3210,3204,1,0,0, + 0,3211,223,1,0,0,0,3212,3213,5,279,0,0,3213,3222,5,213,0,0,3214, + 3215,5,279,0,0,3215,3222,5,103,0,0,3216,3217,5,57,0,0,3217,3222, + 5,240,0,0,3218,3219,3,158,79,0,3219,3220,7,30,0,0,3220,3222,1,0, + 0,0,3221,3212,1,0,0,0,3221,3214,1,0,0,0,3221,3216,1,0,0,0,3221,3218, + 1,0,0,0,3222,225,1,0,0,0,3223,3224,6,113,-1,0,3224,3226,3,228,114, + 0,3225,3227,3,230,115,0,3226,3225,1,0,0,0,3226,3227,1,0,0,0,3227, + 3235,1,0,0,0,3228,3229,10,2,0,0,3229,3234,3,226,113,3,3230,3231, + 10,1,0,0,3231,3232,5,11,0,0,3232,3234,3,226,113,2,3233,3228,1,0, + 0,0,3233,3230,1,0,0,0,3234,3237,1,0,0,0,3235,3233,1,0,0,0,3235,3236, + 1,0,0,0,3236,227,1,0,0,0,3237,3235,1,0,0,0,3238,3264,3,320,160,0, + 3239,3240,5,1,0,0,3240,3264,5,2,0,0,3241,3242,5,210,0,0,3242,3243, + 5,1,0,0,3243,3248,3,226,113,0,3244,3245,5,3,0,0,3245,3247,3,226, + 113,0,3246,3244,1,0,0,0,3247,3250,1,0,0,0,3248,3246,1,0,0,0,3248, + 3249,1,0,0,0,3249,3251,1,0,0,0,3250,3248,1,0,0,0,3251,3252,5,2,0, + 0,3252,3264,1,0,0,0,3253,3254,5,1,0,0,3254,3255,3,226,113,0,3255, + 3256,5,2,0,0,3256,3264,1,0,0,0,3257,3264,5,12,0,0,3258,3264,5,13, + 0,0,3259,3260,5,14,0,0,3260,3261,3,226,113,0,3261,3262,5,15,0,0, + 3262,3264,1,0,0,0,3263,3238,1,0,0,0,3263,3239,1,0,0,0,3263,3241, + 1,0,0,0,3263,3253,1,0,0,0,3263,3257,1,0,0,0,3263,3258,1,0,0,0,3263, + 3259,1,0,0,0,3264,229,1,0,0,0,3265,3267,5,321,0,0,3266,3268,5,325, + 0,0,3267,3266,1,0,0,0,3267,3268,1,0,0,0,3268,3296,1,0,0,0,3269,3271, + 5,319,0,0,3270,3272,5,325,0,0,3271,3270,1,0,0,0,3271,3272,1,0,0, + 0,3272,3296,1,0,0,0,3273,3275,5,325,0,0,3274,3276,5,325,0,0,3275, + 3274,1,0,0,0,3275,3276,1,0,0,0,3276,3296,1,0,0,0,3277,3278,5,16, + 0,0,3278,3279,5,330,0,0,3279,3281,5,17,0,0,3280,3282,5,325,0,0,3281, + 3280,1,0,0,0,3281,3282,1,0,0,0,3282,3296,1,0,0,0,3283,3285,5,16, + 0,0,3284,3286,5,330,0,0,3285,3284,1,0,0,0,3285,3286,1,0,0,0,3286, + 3287,1,0,0,0,3287,3289,5,3,0,0,3288,3290,5,330,0,0,3289,3288,1,0, + 0,0,3289,3290,1,0,0,0,3290,3291,1,0,0,0,3291,3293,5,17,0,0,3292, + 3294,5,325,0,0,3293,3292,1,0,0,0,3293,3294,1,0,0,0,3294,3296,1,0, + 0,0,3295,3265,1,0,0,0,3295,3269,1,0,0,0,3295,3273,1,0,0,0,3295,3277, + 1,0,0,0,3295,3283,1,0,0,0,3296,231,1,0,0,0,3297,3298,3,320,160,0, + 3298,3299,5,313,0,0,3299,3300,3,158,79,0,3300,233,1,0,0,0,3301,3302, + 5,105,0,0,3302,3306,7,31,0,0,3303,3304,5,277,0,0,3304,3306,7,32, + 0,0,3305,3301,1,0,0,0,3305,3303,1,0,0,0,3306,235,1,0,0,0,3307,3308, + 5,135,0,0,3308,3309,5,154,0,0,3309,3313,3,238,119,0,3310,3311,5, + 221,0,0,3311,3313,7,33,0,0,3312,3307,1,0,0,0,3312,3310,1,0,0,0,3313, + 237,1,0,0,0,3314,3315,5,221,0,0,3315,3322,5,280,0,0,3316,3317,5, + 221,0,0,3317,3322,5,49,0,0,3318,3319,5,226,0,0,3319,3322,5,221,0, + 0,3320,3322,5,250,0,0,3321,3314,1,0,0,0,3321,3316,1,0,0,0,3321,3318, + 1,0,0,0,3321,3320,1,0,0,0,3322,239,1,0,0,0,3323,3329,3,158,79,0, + 3324,3325,3,320,160,0,3325,3326,5,6,0,0,3326,3327,3,158,79,0,3327, + 3329,1,0,0,0,3328,3323,1,0,0,0,3328,3324,1,0,0,0,3329,241,1,0,0, + 0,3330,3331,3,320,160,0,3331,3332,5,4,0,0,3332,3333,3,320,160,0, + 3333,3336,1,0,0,0,3334,3336,3,320,160,0,3335,3330,1,0,0,0,3335,3334, + 1,0,0,0,3336,243,1,0,0,0,3337,3342,3,242,121,0,3338,3339,5,3,0,0, + 3339,3341,3,242,121,0,3340,3338,1,0,0,0,3341,3344,1,0,0,0,3342,3340, + 1,0,0,0,3342,3343,1,0,0,0,3343,245,1,0,0,0,3344,3342,1,0,0,0,3345, + 3346,5,108,0,0,3346,3347,3,248,124,0,3347,3351,3,254,127,0,3348, + 3350,3,256,128,0,3349,3348,1,0,0,0,3350,3353,1,0,0,0,3351,3349,1, + 0,0,0,3351,3352,1,0,0,0,3352,3354,1,0,0,0,3353,3351,1,0,0,0,3354, + 3355,3,258,129,0,3355,247,1,0,0,0,3356,3357,3,296,148,0,3357,3366, + 5,1,0,0,3358,3363,3,252,126,0,3359,3360,5,3,0,0,3360,3362,3,252, + 126,0,3361,3359,1,0,0,0,3362,3365,1,0,0,0,3363,3361,1,0,0,0,3363, + 3364,1,0,0,0,3364,3367,1,0,0,0,3365,3363,1,0,0,0,3366,3358,1,0,0, + 0,3366,3367,1,0,0,0,3367,3368,1,0,0,0,3368,3369,5,2,0,0,3369,249, + 1,0,0,0,3370,3371,3,294,147,0,3371,3380,5,1,0,0,3372,3377,3,252, + 126,0,3373,3374,5,3,0,0,3374,3376,3,252,126,0,3375,3373,1,0,0,0, + 3376,3379,1,0,0,0,3377,3375,1,0,0,0,3377,3378,1,0,0,0,3378,3381, + 1,0,0,0,3379,3377,1,0,0,0,3380,3372,1,0,0,0,3380,3381,1,0,0,0,3381, + 3382,1,0,0,0,3382,3383,5,2,0,0,3383,251,1,0,0,0,3384,3386,3,320, + 160,0,3385,3384,1,0,0,0,3385,3386,1,0,0,0,3386,3387,1,0,0,0,3387, + 3388,3,206,103,0,3388,253,1,0,0,0,3389,3390,5,233,0,0,3390,3391, + 3,206,103,0,3391,255,1,0,0,0,3392,3393,5,148,0,0,3393,3412,3,320, + 160,0,3394,3396,5,183,0,0,3395,3394,1,0,0,0,3395,3396,1,0,0,0,3396, + 3397,1,0,0,0,3397,3412,5,79,0,0,3398,3399,5,233,0,0,3399,3400,5, + 184,0,0,3400,3401,5,191,0,0,3401,3402,5,184,0,0,3402,3412,5,127, + 0,0,3403,3404,5,38,0,0,3404,3405,5,191,0,0,3405,3406,5,184,0,0,3406, + 3412,5,127,0,0,3407,3408,5,247,0,0,3408,3412,7,1,0,0,3409,3410,5, + 47,0,0,3410,3412,3,190,95,0,3411,3392,1,0,0,0,3411,3395,1,0,0,0, + 3411,3398,1,0,0,0,3411,3403,1,0,0,0,3411,3407,1,0,0,0,3411,3409, + 1,0,0,0,3412,257,1,0,0,0,3413,3414,5,231,0,0,3414,3513,3,164,82, + 0,3415,3416,5,252,0,0,3416,3417,3,320,160,0,3417,3418,5,313,0,0, + 3418,3419,3,158,79,0,3419,3513,1,0,0,0,3420,3421,5,40,0,0,3421,3423, + 3,158,79,0,3422,3424,3,260,130,0,3423,3422,1,0,0,0,3424,3425,1,0, + 0,0,3425,3423,1,0,0,0,3425,3426,1,0,0,0,3426,3428,1,0,0,0,3427,3429, + 3,264,132,0,3428,3427,1,0,0,0,3428,3429,1,0,0,0,3429,3430,1,0,0, + 0,3430,3431,5,89,0,0,3431,3432,5,40,0,0,3432,3513,1,0,0,0,3433,3435, + 5,40,0,0,3434,3436,3,260,130,0,3435,3434,1,0,0,0,3436,3437,1,0,0, + 0,3437,3435,1,0,0,0,3437,3438,1,0,0,0,3438,3440,1,0,0,0,3439,3441, + 3,264,132,0,3440,3439,1,0,0,0,3440,3441,1,0,0,0,3441,3442,1,0,0, + 0,3442,3443,5,89,0,0,3443,3444,5,40,0,0,3444,3513,1,0,0,0,3445,3446, + 5,120,0,0,3446,3447,3,158,79,0,3447,3448,5,266,0,0,3448,3452,3,268, + 134,0,3449,3451,3,262,131,0,3450,3449,1,0,0,0,3451,3454,1,0,0,0, + 3452,3450,1,0,0,0,3452,3453,1,0,0,0,3453,3456,1,0,0,0,3454,3452, + 1,0,0,0,3455,3457,3,264,132,0,3456,3455,1,0,0,0,3456,3457,1,0,0, + 0,3457,3458,1,0,0,0,3458,3459,5,89,0,0,3459,3460,5,120,0,0,3460, + 3513,1,0,0,0,3461,3462,5,136,0,0,3462,3513,3,320,160,0,3463,3464, + 5,152,0,0,3464,3513,3,320,160,0,3465,3471,5,32,0,0,3466,3467,3,266, + 133,0,3467,3468,5,326,0,0,3468,3470,1,0,0,0,3469,3466,1,0,0,0,3470, + 3473,1,0,0,0,3471,3469,1,0,0,0,3471,3472,1,0,0,0,3472,3475,1,0,0, + 0,3473,3471,1,0,0,0,3474,3476,3,268,134,0,3475,3474,1,0,0,0,3475, + 3476,1,0,0,0,3476,3477,1,0,0,0,3477,3513,5,89,0,0,3478,3479,3,320, + 160,0,3479,3480,5,10,0,0,3480,3482,1,0,0,0,3481,3478,1,0,0,0,3481, + 3482,1,0,0,0,3482,3483,1,0,0,0,3483,3484,5,162,0,0,3484,3485,3,268, + 134,0,3485,3486,5,89,0,0,3486,3487,5,162,0,0,3487,3513,1,0,0,0,3488, + 3489,3,320,160,0,3489,3490,5,10,0,0,3490,3492,1,0,0,0,3491,3488, + 1,0,0,0,3491,3492,1,0,0,0,3492,3493,1,0,0,0,3493,3494,5,303,0,0, + 3494,3495,3,158,79,0,3495,3496,5,82,0,0,3496,3497,3,268,134,0,3497, + 3498,5,89,0,0,3498,3499,5,303,0,0,3499,3513,1,0,0,0,3500,3501,3, + 320,160,0,3501,3502,5,10,0,0,3502,3504,1,0,0,0,3503,3500,1,0,0,0, + 3503,3504,1,0,0,0,3504,3505,1,0,0,0,3505,3506,5,225,0,0,3506,3507, + 3,268,134,0,3507,3508,5,287,0,0,3508,3509,3,158,79,0,3509,3510,5, + 89,0,0,3510,3511,5,225,0,0,3511,3513,1,0,0,0,3512,3413,1,0,0,0,3512, + 3415,1,0,0,0,3512,3420,1,0,0,0,3512,3433,1,0,0,0,3512,3445,1,0,0, + 0,3512,3461,1,0,0,0,3512,3463,1,0,0,0,3512,3465,1,0,0,0,3512,3481, + 1,0,0,0,3512,3491,1,0,0,0,3512,3503,1,0,0,0,3513,259,1,0,0,0,3514, + 3515,5,301,0,0,3515,3516,3,158,79,0,3516,3517,5,266,0,0,3517,3518, + 3,268,134,0,3518,261,1,0,0,0,3519,3520,5,87,0,0,3520,3521,3,158, + 79,0,3521,3522,5,266,0,0,3522,3523,3,268,134,0,3523,263,1,0,0,0, + 3524,3525,5,85,0,0,3525,3526,3,268,134,0,3526,265,1,0,0,0,3527,3528, + 5,70,0,0,3528,3533,3,320,160,0,3529,3530,5,3,0,0,3530,3532,3,320, + 160,0,3531,3529,1,0,0,0,3532,3535,1,0,0,0,3533,3531,1,0,0,0,3533, + 3534,1,0,0,0,3534,3536,1,0,0,0,3535,3533,1,0,0,0,3536,3539,3,206, + 103,0,3537,3538,5,71,0,0,3538,3540,3,164,82,0,3539,3537,1,0,0,0, + 3539,3540,1,0,0,0,3540,267,1,0,0,0,3541,3542,3,258,129,0,3542,3543, + 5,326,0,0,3543,3545,1,0,0,0,3544,3541,1,0,0,0,3545,3546,1,0,0,0, + 3546,3544,1,0,0,0,3546,3547,1,0,0,0,3547,269,1,0,0,0,3548,3555,5, + 54,0,0,3549,3555,5,249,0,0,3550,3555,5,74,0,0,3551,3555,5,128,0, + 0,3552,3555,5,288,0,0,3553,3555,3,320,160,0,3554,3548,1,0,0,0,3554, + 3549,1,0,0,0,3554,3550,1,0,0,0,3554,3551,1,0,0,0,3554,3552,1,0,0, + 0,3554,3553,1,0,0,0,3555,271,1,0,0,0,3556,3560,5,261,0,0,3557,3560, + 5,244,0,0,3558,3560,3,320,160,0,3559,3556,1,0,0,0,3559,3557,1,0, + 0,0,3559,3558,1,0,0,0,3560,273,1,0,0,0,3561,3563,3,272,136,0,3562, + 3561,1,0,0,0,3562,3563,1,0,0,0,3563,3564,1,0,0,0,3564,3565,3,306, + 153,0,3565,275,1,0,0,0,3566,3569,3,278,139,0,3567,3569,3,282,141, + 0,3568,3566,1,0,0,0,3568,3567,1,0,0,0,3569,277,1,0,0,0,3570,3582, + 3,320,160,0,3571,3572,3,320,160,0,3572,3573,5,4,0,0,3573,3574,3, + 320,160,0,3574,3582,1,0,0,0,3575,3576,3,320,160,0,3576,3577,5,4, + 0,0,3577,3578,3,320,160,0,3578,3579,5,4,0,0,3579,3580,3,320,160, + 0,3580,3582,1,0,0,0,3581,3570,1,0,0,0,3581,3571,1,0,0,0,3581,3575, + 1,0,0,0,3582,279,1,0,0,0,3583,3595,3,320,160,0,3584,3585,3,320,160, + 0,3585,3586,5,4,0,0,3586,3587,3,320,160,0,3587,3595,1,0,0,0,3588, + 3589,3,320,160,0,3589,3590,5,4,0,0,3590,3591,3,320,160,0,3591,3592, + 5,4,0,0,3592,3593,3,320,160,0,3593,3595,1,0,0,0,3594,3583,1,0,0, + 0,3594,3584,1,0,0,0,3594,3588,1,0,0,0,3595,281,1,0,0,0,3596,3608, + 3,320,160,0,3597,3598,3,320,160,0,3598,3599,5,4,0,0,3599,3600,3, + 320,160,0,3600,3608,1,0,0,0,3601,3602,3,320,160,0,3602,3603,5,4, + 0,0,3603,3604,3,320,160,0,3604,3605,5,4,0,0,3605,3606,3,320,160, + 0,3606,3608,1,0,0,0,3607,3596,1,0,0,0,3607,3597,1,0,0,0,3607,3601, + 1,0,0,0,3608,283,1,0,0,0,3609,3621,3,320,160,0,3610,3611,3,320,160, + 0,3611,3612,5,4,0,0,3612,3613,3,320,160,0,3613,3621,1,0,0,0,3614, + 3615,3,320,160,0,3615,3616,5,4,0,0,3616,3617,3,320,160,0,3617,3618, + 5,4,0,0,3618,3619,3,320,160,0,3619,3621,1,0,0,0,3620,3609,1,0,0, + 0,3620,3610,1,0,0,0,3620,3614,1,0,0,0,3621,285,1,0,0,0,3622,3628, + 3,320,160,0,3623,3624,3,320,160,0,3624,3625,5,4,0,0,3625,3626,3, + 320,160,0,3626,3628,1,0,0,0,3627,3622,1,0,0,0,3627,3623,1,0,0,0, + 3628,287,1,0,0,0,3629,3635,3,320,160,0,3630,3631,3,320,160,0,3631, + 3632,5,4,0,0,3632,3633,3,320,160,0,3633,3635,1,0,0,0,3634,3629,1, + 0,0,0,3634,3630,1,0,0,0,3635,289,1,0,0,0,3636,3637,3,320,160,0,3637, + 291,1,0,0,0,3638,3639,3,320,160,0,3639,293,1,0,0,0,3640,3641,3,306, + 153,0,3641,295,1,0,0,0,3642,3643,3,306,153,0,3643,297,1,0,0,0,3644, + 3647,3,306,153,0,3645,3647,4,149,16,0,3646,3644,1,0,0,0,3646,3645, + 1,0,0,0,3647,299,1,0,0,0,3648,3649,1,0,0,0,3649,301,1,0,0,0,3650, + 3651,3,306,153,0,3651,303,1,0,0,0,3652,3653,3,320,160,0,3653,305, + 1,0,0,0,3654,3659,3,320,160,0,3655,3656,5,4,0,0,3656,3658,3,320, + 160,0,3657,3655,1,0,0,0,3658,3661,1,0,0,0,3659,3657,1,0,0,0,3659, + 3660,1,0,0,0,3660,307,1,0,0,0,3661,3659,1,0,0,0,3662,3663,5,104, + 0,0,3663,3664,3,310,155,0,3664,3665,5,28,0,0,3665,3666,5,188,0,0, + 3666,3667,3,164,82,0,3667,309,1,0,0,0,3668,3669,7,34,0,0,3669,311, + 1,0,0,0,3670,3674,3,314,157,0,3671,3674,5,65,0,0,3672,3674,5,61, + 0,0,3673,3670,1,0,0,0,3673,3671,1,0,0,0,3673,3672,1,0,0,0,3674,313, + 1,0,0,0,3675,3681,3,320,160,0,3676,3677,5,290,0,0,3677,3681,3,320, + 160,0,3678,3679,5,236,0,0,3679,3681,3,320,160,0,3680,3675,1,0,0, + 0,3680,3676,1,0,0,0,3680,3678,1,0,0,0,3681,315,1,0,0,0,3682,3687, + 3,320,160,0,3683,3684,5,3,0,0,3684,3686,3,320,160,0,3685,3683,1, + 0,0,0,3686,3689,1,0,0,0,3687,3685,1,0,0,0,3687,3688,1,0,0,0,3688, + 317,1,0,0,0,3689,3687,1,0,0,0,3690,3698,5,54,0,0,3691,3698,5,249, + 0,0,3692,3698,5,74,0,0,3693,3698,5,128,0,0,3694,3698,5,288,0,0,3695, + 3698,5,94,0,0,3696,3698,3,320,160,0,3697,3690,1,0,0,0,3697,3691, + 1,0,0,0,3697,3692,1,0,0,0,3697,3693,1,0,0,0,3697,3694,1,0,0,0,3697, + 3695,1,0,0,0,3697,3696,1,0,0,0,3698,319,1,0,0,0,3699,3705,5,333, + 0,0,3700,3705,5,335,0,0,3701,3705,3,326,163,0,3702,3705,5,336,0, + 0,3703,3705,5,334,0,0,3704,3699,1,0,0,0,3704,3700,1,0,0,0,3704,3701, + 1,0,0,0,3704,3702,1,0,0,0,3704,3703,1,0,0,0,3705,321,1,0,0,0,3706, + 3708,5,320,0,0,3707,3706,1,0,0,0,3707,3708,1,0,0,0,3708,3709,1,0, + 0,0,3709,3719,5,331,0,0,3710,3712,5,320,0,0,3711,3710,1,0,0,0,3711, + 3712,1,0,0,0,3712,3713,1,0,0,0,3713,3719,5,332,0,0,3714,3716,5,320, + 0,0,3715,3714,1,0,0,0,3715,3716,1,0,0,0,3716,3717,1,0,0,0,3717,3719, + 5,330,0,0,3718,3707,1,0,0,0,3718,3711,1,0,0,0,3718,3715,1,0,0,0, + 3719,323,1,0,0,0,3720,3723,3,320,160,0,3721,3723,3,190,95,0,3722, + 3720,1,0,0,0,3722,3721,1,0,0,0,3723,325,1,0,0,0,3724,3725,7,35,0, + 0,3725,327,1,0,0,0,480,331,340,344,348,352,356,369,376,380,384,390, + 394,401,406,410,416,420,439,445,449,453,457,465,469,472,477,483, + 492,498,502,508,515,523,535,544,553,559,570,578,586,593,603,610, + 618,633,668,671,674,677,683,688,695,701,705,709,717,723,727,731, + 745,753,772,797,800,807,814,823,827,834,842,851,857,862,866,874, + 879,888,894,901,910,916,920,926,933,938,951,956,968,972,978,987, + 992,998,1026,1032,1034,1040,1046,1048,1056,1058,1068,1070,1085,1090, + 1097,1107,1113,1115,1123,1125,1150,1153,1157,1161,1179,1182,1193, + 1196,1212,1222,1226,1232,1235,1244,1256,1259,1269,1273,1279,1286, + 1291,1297,1301,1305,1311,1322,1331,1341,1344,1349,1351,1358,1364, + 1366,1370,1380,1386,1389,1391,1403,1410,1414,1417,1421,1425,1434, + 1437,1440,1445,1448,1456,1459,1472,1476,1483,1491,1502,1505,1515, + 1518,1529,1534,1542,1545,1549,1553,1562,1567,1576,1579,1582,1586, + 1597,1600,1603,1608,1611,1640,1644,1648,1652,1656,1660,1662,1668, + 1677,1682,1694,1703,1712,1715,1721,1729,1738,1741,1749,1752,1755, + 1760,1763,1775,1778,1786,1791,1795,1797,1799,1814,1816,1827,1848, + 1858,1869,1873,1875,1883,1894,1905,1912,1919,1932,1938,1960,1975, + 1980,1984,1994,2000,2006,2014,2019,2026,2028,2034,2040,2044,2049, + 2058,2063,2077,2087,2090,2099,2104,2109,2111,2120,2123,2131,2134, + 2141,2146,2153,2157,2159,2167,2177,2183,2185,2192,2196,2198,2205, + 2209,2211,2213,2222,2233,2237,2247,2257,2261,2269,2271,2284,2292, + 2301,2307,2315,2321,2325,2330,2335,2341,2355,2357,2387,2398,2406, + 2411,2416,2429,2435,2438,2445,2450,2453,2456,2461,2468,2471,2480, + 2483,2487,2490,2493,2508,2511,2530,2534,2542,2546,2571,2574,2583, + 2589,2595,2601,2610,2613,2616,2635,2644,2662,2678,2681,2691,2700, + 2706,2712,2723,2725,2730,2737,2739,2745,2751,2762,2771,2776,2781, + 2783,2785,2791,2793,2803,2812,2814,2820,2822,2825,2835,2837,2845, + 2853,2856,2861,2866,2878,2882,2886,2889,2891,2899,2902,2912,2920, + 2926,2928,2936,2946,2952,2966,2975,2982,2987,2994,2999,3022,3027, + 3029,3036,3040,3047,3051,3067,3082,3089,3098,3108,3113,3122,3127, + 3135,3143,3146,3152,3155,3162,3170,3173,3181,3184,3210,3221,3226, + 3233,3235,3248,3263,3267,3271,3275,3281,3285,3289,3293,3295,3305, + 3312,3321,3328,3335,3342,3351,3363,3366,3377,3380,3385,3395,3411, + 3425,3428,3437,3440,3452,3456,3471,3475,3481,3491,3503,3512,3533, + 3539,3546,3554,3559,3562,3568,3581,3594,3607,3620,3627,3634,3646, + 3659,3673,3680,3687,3697,3704,3707,3711,3715,3718,3722 ]; private static __ATN: antlr.ATN; @@ -24306,6 +24456,9 @@ export class JoinCriteriaContext extends antlr.ParserRuleContext { public KW_ON(): antlr.TerminalNode | null { return this.getToken(TrinoSqlParser.KW_ON, 0); } + public joinColumnEquality(): JoinColumnEqualityContext | null { + return this.getRuleContext(0, JoinColumnEqualityContext); + } public booleanExpression(): BooleanExpressionContext | null { return this.getRuleContext(0, BooleanExpressionContext); } @@ -24344,6 +24497,86 @@ export class JoinCriteriaContext extends antlr.ParserRuleContext { } +export class JoinColumnEqualityContext extends antlr.ParserRuleContext { + public _left?: JoinColumnReferenceContext; + public _right?: JoinColumnReferenceContext; + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public EQ(): antlr.TerminalNode { + return this.getToken(TrinoSqlParser.EQ, 0)!; + } + public joinColumnReference(): JoinColumnReferenceContext[]; + public joinColumnReference(i: number): JoinColumnReferenceContext | null; + public joinColumnReference(i?: number): JoinColumnReferenceContext[] | JoinColumnReferenceContext | null { + if (i === undefined) { + return this.getRuleContexts(JoinColumnReferenceContext); + } + + return this.getRuleContext(i, JoinColumnReferenceContext); + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_joinColumnEquality; + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterJoinColumnEquality) { + listener.enterJoinColumnEquality(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitJoinColumnEquality) { + listener.exitJoinColumnEquality(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitJoinColumnEquality) { + return visitor.visitJoinColumnEquality(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class JoinColumnReferenceContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public identifier(): IdentifierContext | null { + return this.getRuleContext(0, IdentifierContext); + } + public DOT(): antlr.TerminalNode | null { + return this.getToken(TrinoSqlParser.DOT, 0); + } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } + public columnName(): ColumnNameContext | null { + return this.getRuleContext(0, ColumnNameContext); + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_joinColumnReference; + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterJoinColumnReference) { + listener.enterJoinColumnReference(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitJoinColumnReference) { + listener.exitJoinColumnReference(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitJoinColumnReference) { + return visitor.visitJoinColumnReference(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class SampledRelationContext extends antlr.ParserRuleContext { public _percentage?: ExpressionContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { @@ -32923,6 +33156,33 @@ export class ColumnRefContext extends antlr.ParserRuleContext { } +export class EmptyColumnContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public override get ruleIndex(): number { + return TrinoSqlParser.RULE_emptyColumn; + } + public override enterRule(listener: TrinoSqlListener): void { + if(listener.enterEmptyColumn) { + listener.enterEmptyColumn(this); + } + } + public override exitRule(listener: TrinoSqlListener): void { + if(listener.exitEmptyColumn) { + listener.exitEmptyColumn(this); + } + } + public override accept(visitor: TrinoSqlVisitor): Result | null { + if (visitor.visitEmptyColumn) { + return visitor.visitEmptyColumn(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ColumnNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/trino/TrinoSqlVisitor.ts b/src/lib/trino/TrinoSqlVisitor.ts index 036ea654..2f62aba0 100644 --- a/src/lib/trino/TrinoSqlVisitor.ts +++ b/src/lib/trino/TrinoSqlVisitor.ts @@ -147,6 +147,8 @@ import { RelationDefaultContext } from "./TrinoSqlParser.js"; import { JoinRelationContext } from "./TrinoSqlParser.js"; import { JoinTypeContext } from "./TrinoSqlParser.js"; import { JoinCriteriaContext } from "./TrinoSqlParser.js"; +import { JoinColumnEqualityContext } from "./TrinoSqlParser.js"; +import { JoinColumnReferenceContext } from "./TrinoSqlParser.js"; import { SampledRelationContext } from "./TrinoSqlParser.js"; import { SampleTypeContext } from "./TrinoSqlParser.js"; import { TrimsSpecificationContext } from "./TrinoSqlParser.js"; @@ -365,6 +367,7 @@ import { CatalogNameCreateContext } from "./TrinoSqlParser.js"; import { FunctionNameContext } from "./TrinoSqlParser.js"; import { FunctionNameCreateContext } from "./TrinoSqlParser.js"; import { ColumnRefContext } from "./TrinoSqlParser.js"; +import { EmptyColumnContext } from "./TrinoSqlParser.js"; import { ColumnNameContext } from "./TrinoSqlParser.js"; import { ColumnNameCreateContext } from "./TrinoSqlParser.js"; import { QualifiedNameContext } from "./TrinoSqlParser.js"; @@ -1331,6 +1334,18 @@ export class TrinoSqlVisitor extends AbstractParseTreeVisitor { * @return the visitor result */ visitJoinCriteria?: (ctx: JoinCriteriaContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.joinColumnEquality`. + * @param ctx the parse tree + * @return the visitor result + */ + visitJoinColumnEquality?: (ctx: JoinColumnEqualityContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.joinColumnReference`. + * @param ctx the parse tree + * @return the visitor result + */ + visitJoinColumnReference?: (ctx: JoinColumnReferenceContext) => Result; /** * Visit a parse tree produced by `TrinoSqlParser.sampledRelation`. * @param ctx the parse tree @@ -2780,6 +2795,12 @@ export class TrinoSqlVisitor extends AbstractParseTreeVisitor { * @return the visitor result */ visitColumnRef?: (ctx: ColumnRefContext) => Result; + /** + * Visit a parse tree produced by `TrinoSqlParser.emptyColumn`. + * @param ctx the parse tree + * @return the visitor result + */ + visitEmptyColumn?: (ctx: EmptyColumnContext) => Result; /** * Visit a parse tree produced by `TrinoSqlParser.columnName`. * @param ctx the parse tree diff --git a/src/parser/mysql/index.ts b/src/parser/mysql/index.ts index 3a1aac6e..61ada9d5 100644 --- a/src/parser/mysql/index.ts +++ b/src/parser/mysql/index.ts @@ -45,6 +45,7 @@ export class MySQL extends BasicSQL { MySqlParser.RULE_functionNameCreate, MySqlParser.RULE_columnName, MySqlParser.RULE_columnNamePath, + MySqlParser.RULE_columnNamePathAllowEmpty, MySqlParser.RULE_columnNameCreate, ...this.excludeKeywordRules, ]); @@ -121,6 +122,18 @@ export class MySQL extends BasicSQL { syntaxContextType = EntityContextType.COLUMN; break; } + case MySqlParser.RULE_columnNamePathAllowEmpty: { + if ( + candidateRule.ruleList.includes(MySqlParser.RULE_joinSpec) || + candidateRule.ruleList.includes(MySqlParser.RULE_fromClause) || + candidateRule.ruleList.includes(MySqlParser.RULE_orderByExpression) || + candidateRule.ruleList.includes(MySqlParser.RULE_groupByItem) || + candidateRule.ruleList.includes(MySqlParser.RULE_havingClause) + ) { + syntaxContextType = EntityContextType.COLUMN; + } + break; + } case MySqlParser.RULE_columnNameCreate: { syntaxContextType = EntityContextType.COLUMN_CREATE; break; diff --git a/src/parser/mysql/mysqlEntityCollector.ts b/src/parser/mysql/mysqlEntityCollector.ts index 3e6dfcc5..bd25e760 100644 --- a/src/parser/mysql/mysqlEntityCollector.ts +++ b/src/parser/mysql/mysqlEntityCollector.ts @@ -30,6 +30,7 @@ import { SelectElement_labelContext, SelectElement_exprContext, SelectElement_dot_emptyContext, + ColumnNamePath_dot_emptyContext, } from '../../lib/mysql/MySqlParser'; import type { MySqlParserListener } from '../../lib/mysql/MySqlParserListener'; import { @@ -168,6 +169,12 @@ export class MySqlEntityCollector extends EntityCollector implements MySqlParser }); } + exitColumnNamePath_dot_empty(ctx: ColumnNamePath_dot_emptyContext) { + this.pushEntity(ctx, EntityContextType.COLUMN, [], { + declareType: ColumnDeclareType.LITERAL, + }); + } + exitSelectExpressionElement(ctx: SelectExpressionElementContext) { this.pushEntity( ctx, diff --git a/src/parser/postgresql/index.ts b/src/parser/postgresql/index.ts index 02944e39..92910998 100644 --- a/src/parser/postgresql/index.ts +++ b/src/parser/postgresql/index.ts @@ -158,7 +158,8 @@ export class PostgreSQL extends BasicSQL { expect(entities[1].text).toBe('t1.'); expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); }); + test('suggestions with column after ORDER BY space', () => { + const sql = 'SELECT age FROM orders o ORDER BY '; + const result = mysql.getSuggestionAtCaretPosition(sql, { lineNumber: 1, column: 35 }); + expect(result?.syntax?.some((s) => s.syntaxContextType === EntityContextType.COLUMN)).toBe( + true + ); + }); + + test('suggestions with column after GROUP BY space', () => { + const sql = 'SELECT age FROM orders o GROUP BY '; + const result = mysql.getSuggestionAtCaretPosition(sql, { lineNumber: 1, column: 35 }); + expect(result?.syntax?.some((s) => s.syntaxContextType === EntityContextType.COLUMN)).toBe( + true + ); + }); + + test('suggestions with column after HAVING space', () => { + const sql = 'SELECT age FROM orders o GROUP BY age HAVING '; + const result = mysql.getSuggestionAtCaretPosition(sql, { lineNumber: 1, column: 44 }); + expect(result?.syntax?.some((s) => s.syntaxContextType === EntityContextType.COLUMN)).toBe( + true + ); + }); + + test('suggestions with column user scenario with WHERE before ORDER BY', () => { + const sql = `SELECT age +FROM orders o WHERE age order by `; + const result = mysql.getSuggestionAtCaretPosition(sql, { lineNumber: 2, column: 34 }); + expect(result?.syntax?.some((s) => s.syntaxContextType === EntityContextType.COLUMN)).toBe( + true + ); + }); + + test('suggestions with column entities after ORDER BY expose table alias', () => { + const sql = 'SELECT age FROM orders o ORDER BY '; + const entities = mysql.getAllEntities(sql, { lineNumber: 1, column: 35 }); + const tables = entities?.filter( + (e) => e.entityContextType === EntityContextType.TABLE && e.isAccessible + ); + expect(tables?.map((e) => e._alias?.text)).toEqual(expect.arrayContaining(['o'])); + }); }); diff --git a/test/parser/validate/fixtures/incompleteSelect.ts b/test/parser/validate/fixtures/incompleteSelect.ts new file mode 100644 index 00000000..370e6ecb --- /dev/null +++ b/test/parser/validate/fixtures/incompleteSelect.ts @@ -0,0 +1,3 @@ +export const selectFromOnlySql = `SELECT +FROM orders o +JOIN t1 u ON o.age = u.age1`; diff --git a/test/parser/validate/incompleteSelect.test.ts b/test/parser/validate/incompleteSelect.test.ts new file mode 100644 index 00000000..e9ba910f --- /dev/null +++ b/test/parser/validate/incompleteSelect.test.ts @@ -0,0 +1,29 @@ +import { FlinkSQL } from 'src/parser/flink'; +import { HiveSQL } from 'src/parser/hive'; +import { ImpalaSQL } from 'src/parser/impala'; +import { MySQL } from 'src/parser/mysql'; +import { PostgreSQL } from 'src/parser/postgresql'; +import { SparkSQL } from 'src/parser/spark'; +import { TrinoSQL } from 'src/parser/trino'; +import type { BasicSQL } from 'src/parser/common/basicSQL'; +import { selectFromOnlySql } from './fixtures/incompleteSelect'; + +type SqlParser = BasicSQL; + +const parsers: [string, new () => SqlParser][] = [ + ['MySQL', MySQL], + ['PostgreSQL', PostgreSQL], + ['TrinoSQL', TrinoSQL], + ['FlinkSQL', FlinkSQL], + ['SparkSQL', SparkSQL], + ['HiveSQL', HiveSQL], + ['ImpalaSQL', ImpalaSQL], +]; + +describe('Validate incomplete SELECT without columns - issue #478', () => { + describe.each(parsers)('%s', (_name, Parser) => { + test('SELECT followed by FROM should report syntax error', () => { + expect(new Parser().validate(selectFromOnlySql).length).toBeGreaterThan(0); + }); + }); +}); diff --git a/test/parser/validate/joinOnEntity.test.ts b/test/parser/validate/joinOnEntity.test.ts new file mode 100644 index 00000000..bf09de15 --- /dev/null +++ b/test/parser/validate/joinOnEntity.test.ts @@ -0,0 +1,115 @@ +import { CaretPosition, EntityContextType } from 'src/parser/common/types'; +import { FlinkSQL } from 'src/parser/flink'; +import { HiveSQL } from 'src/parser/hive'; +import { ImpalaSQL } from 'src/parser/impala'; +import { MySQL } from 'src/parser/mysql'; +import { PostgreSQL } from 'src/parser/postgresql'; +import { SparkSQL } from 'src/parser/spark'; +import { TrinoSQL } from 'src/parser/trino'; +import type { BasicSQL } from 'src/parser/common/basicSQL'; + +const joinOnBothSidesSql = `SELECT o.age, u.age1 +FROM orders o +JOIN t1 u ON o. = u.;`; + +const joinOnRightSideSql = `SELECT o.age, u.age1 +FROM orders o +JOIN t1 u ON o.age = u.`; + +type SqlParser = BasicSQL; + +const parsers: [string, new () => SqlParser][] = [ + ['MySQL', MySQL], + ['PostgreSQL', PostgreSQL], + ['TrinoSQL', TrinoSQL], + ['FlinkSQL', FlinkSQL], + ['SparkSQL', SparkSQL], + ['HiveSQL', HiveSQL], + ['ImpalaSQL', ImpalaSQL], +]; + +function expectColumnSuggestion( + parser: SqlParser, + sql: string, + pos: CaretPosition, + expectedWordRanges: string[] +) { + const syntaxes = parser.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(expectedWordRanges); +} + +function expectAccessibleJoinTables(parser: SqlParser, sql: string, pos: CaretPosition) { + const entities = parser.getAllEntities(sql, pos); + const accessibleTables = entities?.filter( + (e) => e.entityContextType === EntityContextType.TABLE && e.isAccessible + ); + expect(accessibleTables?.map((e) => e._alias?.text)).toEqual( + expect.arrayContaining(['o', 'u']) + ); +} + +describe('JOIN ON clause column suggestion - issue #478', () => { + describe.each(parsers)('%s', (_name, Parser) => { + test('suggest column after table alias on left side of ON (o.)', () => { + const parser = new Parser(); + const pos: CaretPosition = { lineNumber: 3, column: 16 }; + expectColumnSuggestion(parser, joinOnBothSidesSql, pos, ['o', '.']); + }); + + test('suggest column after table alias on right side of ON (u.)', () => { + const parser = new Parser(); + const pos: CaretPosition = { lineNumber: 3, column: 24 }; + expectColumnSuggestion(parser, joinOnRightSideSql, pos, ['u', '.']); + }); + + test('expose accessible JOIN tables while completing left side', () => { + const parser = new Parser(); + const pos: CaretPosition = { lineNumber: 3, column: 16 }; + expectAccessibleJoinTables(parser, joinOnBothSidesSql, pos); + }); + + test('expose accessible JOIN tables while completing right side', () => { + const parser = new Parser(); + const pos: CaretPosition = { lineNumber: 3, column: 24 }; + expectAccessibleJoinTables(parser, joinOnRightSideSql, pos); + }); + }); +}); + +describe('Compound JOIN ON entity collection - issue #478', () => { + describe.each(parsers)('%s', (_name, Parser) => { + test('compound ON should still expose join tables at ON clause', () => { + const parser = new Parser(); + const sql = 'SELECT o.age FROM orders o JOIN t1 u ON o.age = u.age AND o.id = u.id'; + const entities = parser.getAllEntities(sql, { lineNumber: 1, column: 45 }); + const tables = entities?.filter( + (e) => e.entityContextType === EntityContextType.TABLE && e.isAccessible + ); + expect(tables?.map((e) => e._alias?.text)).toEqual(expect.arrayContaining(['o', 'u'])); + }); + }); +}); + +describe('JOIN ON clause validate incomplete SQL - issue #478', () => { + describe.each(parsers)('%s', (_name, Parser) => { + test('ON o. = u.age should report syntax error', () => { + const parser = new Parser(); + const sql = `SELECT o.age FROM orders o JOIN t1 u ON o. = u.age`; + expect(parser.validate(sql).length).toBeGreaterThan(0); + }); + + test('ON o.age = u. should report syntax error', () => { + const parser = new Parser(); + const sql = `SELECT o.age FROM orders o JOIN t1 u ON o.age = u.`; + expect(parser.validate(sql).length).toBeGreaterThan(0); + }); + + test('ON o. = u. should report syntax error', () => { + const parser = new Parser(); + const sql = `SELECT o.age FROM orders o JOIN t1 u ON o. = u.`; + expect(parser.validate(sql).length).toBeGreaterThan(0); + }); + }); +});