diff --git a/src/grammar/hive/HiveSqlParser.g4 b/src/grammar/hive/HiveSqlParser.g4 index a8c68463..3e70b88c 100644 --- a/src/grammar/hive/HiveSqlParser.g4 +++ b/src/grammar/hive/HiveSqlParser.g4 @@ -86,7 +86,7 @@ execStatement | KW_MERGE QUERY_HINT? KW_INTO tableName (KW_AS? id_)? KW_USING joinSourcePart KW_ON expression whenClauses | KW_PREPARE id_ KW_FROM queryStatementExpression | KW_EXECUTE id_ KW_USING constantList - | KW_SET configPropertiesItem ((DOT | COLON) configPropertiesItem)* EQUAL .*? + | KW_SET configProperty EQUAL .*? ; loadStatement @@ -2265,6 +2265,16 @@ sql11ReservedKeywordsUsedAsFunctionName | KW_TIMESTAMP ; +configProperty + : configPropertyPart ((DOT | COLON) configPropertyPart)* + ; + +configPropertyPart + : configPropertiesItem ( + {this.isNextTokenAdjacent()}? MINUS {this.isNextTokenAdjacent()}? configPropertiesItem + )* + ; + configPropertiesItem : id_ | KW_SELECT diff --git a/src/lib/SQLParserBase.ts b/src/lib/SQLParserBase.ts index d35a2e3a..e2d7dd78 100644 --- a/src/lib/SQLParserBase.ts +++ b/src/lib/SQLParserBase.ts @@ -56,4 +56,22 @@ export abstract class SQLParserBase extends antlr.P // This allows ANTLR to report errors naturally return false; } + + /** + * Semantic predicate to check whether the previous token and the next token + * are adjacent (no whitespace in between). + * + * Used to support hyphens inside Hive SET config property names, e.g. + * `set tez.grouping.max-size = 1`, while still rejecting invalid spacing + * like `set hive.a - b = 1`. + */ + public isNextTokenAdjacent(): boolean { + const previousToken = this.tokenStream.LT(-1); + const nextToken = this.tokenStream.LT(1); + return ( + previousToken !== null && + nextToken !== null && + previousToken.stop + 1 === nextToken.start + ); + } } diff --git a/src/lib/hive/HiveSqlParser.interp b/src/lib/hive/HiveSqlParser.interp index b75aa02e..d74dca03 100644 --- a/src/lib/hive/HiveSqlParser.interp +++ b/src/lib/hive/HiveSqlParser.interp @@ -1213,6 +1213,8 @@ functionIdentifier principalIdentifier nonReserved sql11ReservedKeywordsUsedAsFunctionName +configProperty +configPropertyPart configPropertiesItem resourcePlanDdlStatements mappingTypes @@ -1240,4 +1242,4 @@ poolAssignList atn: -[4, 1, 438, 4874, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 1, 0, 5, 0, 714, 8, 0, 10, 0, 12, 0, 717, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 723, 8, 1, 1, 1, 3, 1, 726, 8, 1, 1, 2, 1, 2, 5, 2, 730, 8, 2, 10, 2, 12, 2, 733, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 738, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 745, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 755, 8, 3, 1, 3, 3, 3, 758, 8, 3, 1, 3, 1, 3, 3, 3, 762, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 777, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 784, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 790, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 795, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 800, 8, 5, 1, 5, 3, 5, 803, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 825, 8, 5, 10, 5, 12, 5, 828, 9, 5, 1, 5, 1, 5, 5, 5, 832, 8, 5, 10, 5, 12, 5, 835, 9, 5, 3, 5, 837, 8, 5, 1, 6, 1, 6, 1, 6, 3, 6, 842, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 847, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 853, 8, 6, 1, 7, 1, 7, 3, 7, 857, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 870, 8, 8, 1, 9, 1, 9, 3, 9, 874, 8, 9, 1, 9, 1, 9, 3, 9, 878, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 883, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 890, 8, 10, 1, 10, 1, 10, 3, 10, 894, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 899, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 906, 8, 12, 1, 12, 1, 12, 3, 12, 910, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 915, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 961, 8, 14, 11, 14, 12, 14, 962, 1, 14, 1, 14, 1, 14, 4, 14, 968, 8, 14, 11, 14, 12, 14, 969, 1, 14, 1, 14, 1, 14, 3, 14, 975, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 998, 8, 21, 1, 21, 1, 21, 3, 21, 1002, 8, 21, 1, 21, 1, 21, 3, 21, 1006, 8, 21, 1, 21, 3, 21, 1009, 8, 21, 1, 21, 1, 21, 3, 21, 1013, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1018, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1024, 8, 21, 1, 21, 1, 21, 3, 21, 1028, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1034, 8, 21, 3, 21, 1036, 8, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 3, 24, 1047, 8, 24, 1, 24, 1, 24, 3, 24, 1051, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1058, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1066, 8, 26, 1, 26, 3, 26, 1069, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 1074, 8, 27, 1, 27, 1, 27, 3, 27, 1078, 8, 27, 1, 27, 3, 27, 1081, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 1091, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1099, 8, 29, 5, 29, 1101, 8, 29, 10, 29, 12, 29, 1104, 9, 29, 3, 29, 1106, 8, 29, 1, 30, 1, 30, 3, 30, 1110, 8, 30, 1, 31, 1, 31, 3, 31, 1114, 8, 31, 1, 31, 3, 31, 1117, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1122, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1128, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1133, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1138, 8, 32, 1, 32, 1, 32, 3, 32, 1142, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1153, 8, 33, 3, 33, 1155, 8, 33, 1, 33, 1, 33, 3, 33, 1159, 8, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1169, 8, 36, 1, 36, 1, 36, 3, 36, 1173, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1179, 8, 36, 1, 36, 3, 36, 1182, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1189, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1194, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1202, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1207, 8, 36, 1, 36, 1, 36, 3, 36, 1211, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1219, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1224, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1230, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1236, 8, 36, 1, 36, 3, 36, 1239, 8, 36, 1, 36, 3, 36, 1242, 8, 36, 1, 36, 3, 36, 1245, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1254, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1262, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1267, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1275, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1282, 8, 36, 1, 36, 3, 36, 1285, 8, 36, 1, 36, 3, 36, 1288, 8, 36, 3, 36, 1290, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1301, 8, 36, 3, 36, 1303, 8, 36, 1, 36, 3, 36, 1306, 8, 36, 1, 36, 3, 36, 1309, 8, 36, 1, 36, 3, 36, 1312, 8, 36, 1, 36, 3, 36, 1315, 8, 36, 1, 36, 3, 36, 1318, 8, 36, 3, 36, 1320, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1332, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1338, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1346, 8, 36, 3, 36, 1348, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1358, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1391, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1396, 8, 45, 1, 46, 1, 46, 3, 46, 1400, 8, 46, 1, 46, 1, 46, 3, 46, 1404, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1411, 8, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1416, 8, 47, 10, 47, 12, 47, 1419, 9, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1424, 8, 47, 1, 48, 1, 48, 3, 48, 1428, 8, 48, 1, 48, 3, 48, 1431, 8, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1436, 8, 48, 10, 48, 12, 48, 1439, 9, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1461, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1466, 8, 53, 1, 53, 1, 53, 3, 53, 1470, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 1478, 8, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1487, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1494, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1500, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1507, 8, 58, 1, 58, 3, 58, 1510, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1516, 8, 58, 1, 59, 1, 59, 1, 59, 5, 59, 1521, 8, 59, 10, 59, 12, 59, 1524, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1531, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1538, 8, 62, 10, 62, 12, 62, 1541, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1549, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1556, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 1576, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1583, 8, 69, 3, 69, 1585, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1590, 8, 70, 10, 70, 12, 70, 1593, 9, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 1602, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1610, 8, 73, 1, 74, 1, 74, 3, 74, 1614, 8, 74, 1, 74, 1, 74, 3, 74, 1618, 8, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 1631, 8, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1640, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1656, 8, 78, 1, 78, 1, 78, 3, 78, 1660, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1665, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1670, 8, 78, 1, 78, 3, 78, 1673, 8, 78, 1, 78, 3, 78, 1676, 8, 78, 1, 78, 3, 78, 1679, 8, 78, 1, 78, 3, 78, 1682, 8, 78, 1, 78, 3, 78, 1685, 8, 78, 1, 79, 1, 79, 1, 79, 3, 79, 1690, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 1699, 8, 80, 1, 80, 1, 80, 3, 80, 1703, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1710, 8, 80, 1, 80, 3, 80, 1713, 8, 80, 1, 80, 3, 80, 1716, 8, 80, 1, 80, 3, 80, 1719, 8, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1731, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 1737, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1763, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1771, 8, 88, 1, 88, 1, 88, 3, 88, 1775, 8, 88, 1, 88, 3, 88, 1778, 8, 88, 1, 88, 3, 88, 1781, 8, 88, 1, 88, 3, 88, 1784, 8, 88, 1, 88, 3, 88, 1787, 8, 88, 1, 88, 3, 88, 1790, 8, 88, 1, 88, 3, 88, 1793, 8, 88, 1, 88, 3, 88, 1796, 8, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1805, 8, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1815, 8, 90, 1, 90, 3, 90, 1818, 8, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1838, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1844, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1850, 8, 94, 1, 94, 3, 94, 1853, 8, 94, 3, 94, 1855, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 3, 96, 1862, 8, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 3, 97, 1869, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1882, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1887, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 5, 101, 1894, 8, 101, 10, 101, 12, 101, 1897, 9, 101, 1, 102, 1, 102, 1, 102, 5, 102, 1902, 8, 102, 10, 102, 12, 102, 1905, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1912, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1925, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1938, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1954, 8, 105, 1, 106, 1, 106, 3, 106, 1958, 8, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1973, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1979, 8, 110, 1, 110, 3, 110, 1982, 8, 110, 1, 110, 3, 110, 1985, 8, 110, 1, 110, 3, 110, 1988, 8, 110, 1, 110, 3, 110, 1991, 8, 110, 1, 111, 1, 111, 3, 111, 1995, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2008, 8, 114, 10, 114, 12, 114, 2011, 9, 114, 3, 114, 2013, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2022, 8, 116, 10, 116, 12, 116, 2025, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2038, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2072, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2080, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2085, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2093, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2098, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2103, 8, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2108, 8, 124, 10, 124, 12, 124, 2111, 9, 124, 1, 125, 1, 125, 1, 125, 5, 125, 2116, 8, 125, 10, 125, 12, 125, 2119, 9, 125, 1, 126, 1, 126, 1, 126, 5, 126, 2124, 8, 126, 10, 126, 12, 126, 2127, 9, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2132, 8, 127, 10, 127, 12, 127, 2135, 9, 127, 1, 128, 1, 128, 1, 128, 3, 128, 2140, 8, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 3, 130, 2147, 8, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 2157, 8, 132, 5, 132, 2159, 8, 132, 10, 132, 12, 132, 2162, 9, 132, 1, 133, 1, 133, 1, 133, 5, 133, 2167, 8, 133, 10, 133, 12, 133, 2170, 9, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 3, 135, 2178, 8, 135, 1, 135, 3, 135, 2181, 8, 135, 1, 136, 1, 136, 3, 136, 2185, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 3, 138, 2192, 8, 138, 1, 139, 1, 139, 1, 140, 1, 140, 3, 140, 2198, 8, 140, 1, 140, 1, 140, 3, 140, 2202, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2208, 8, 141, 1, 142, 1, 142, 3, 142, 2212, 8, 142, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 3, 145, 2224, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2233, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 2244, 8, 146, 1, 147, 1, 147, 3, 147, 2248, 8, 147, 1, 148, 1, 148, 1, 148, 5, 148, 2253, 8, 148, 10, 148, 12, 148, 2256, 9, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 5, 150, 2265, 8, 150, 10, 150, 12, 150, 2268, 9, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 3, 153, 2277, 8, 153, 1, 153, 3, 153, 2280, 8, 153, 1, 154, 1, 154, 1, 154, 5, 154, 2285, 8, 154, 10, 154, 12, 154, 2288, 9, 154, 1, 155, 1, 155, 1, 155, 3, 155, 2293, 8, 155, 1, 156, 1, 156, 3, 156, 2297, 8, 156, 1, 156, 3, 156, 2300, 8, 156, 1, 156, 3, 156, 2303, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2309, 8, 157, 1, 158, 1, 158, 3, 158, 2313, 8, 158, 1, 159, 1, 159, 3, 159, 2317, 8, 159, 1, 160, 1, 160, 1, 160, 3, 160, 2322, 8, 160, 1, 160, 1, 160, 3, 160, 2326, 8, 160, 1, 161, 1, 161, 3, 161, 2330, 8, 161, 1, 162, 1, 162, 3, 162, 2334, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2342, 8, 162, 1, 163, 1, 163, 3, 163, 2346, 8, 163, 1, 163, 1, 163, 3, 163, 2350, 8, 163, 1, 164, 1, 164, 3, 164, 2354, 8, 164, 1, 165, 1, 165, 3, 165, 2358, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2366, 8, 165, 1, 166, 1, 166, 3, 166, 2370, 8, 166, 1, 166, 1, 166, 3, 166, 2374, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2382, 8, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2387, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2392, 8, 169, 1, 170, 1, 170, 3, 170, 2396, 8, 170, 1, 171, 1, 171, 3, 171, 2400, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2407, 8, 172, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 5, 174, 2414, 8, 174, 10, 174, 12, 174, 2417, 9, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2424, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2436, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2454, 8, 176, 1, 176, 3, 176, 2457, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2463, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 2489, 8, 181, 1, 182, 3, 182, 2492, 8, 182, 1, 182, 1, 182, 1, 183, 1, 183, 3, 183, 2498, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 2504, 8, 184, 10, 184, 12, 184, 2507, 9, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2514, 8, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 5, 186, 2525, 8, 186, 10, 186, 12, 186, 2528, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2534, 8, 187, 1, 187, 3, 187, 2537, 8, 187, 1, 187, 3, 187, 2540, 8, 187, 1, 187, 3, 187, 2543, 8, 187, 1, 187, 3, 187, 2546, 8, 187, 1, 187, 3, 187, 2549, 8, 187, 1, 187, 3, 187, 2552, 8, 187, 1, 187, 3, 187, 2555, 8, 187, 1, 187, 3, 187, 2558, 8, 187, 1, 187, 3, 187, 2561, 8, 187, 1, 187, 3, 187, 2564, 8, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2569, 8, 187, 1, 187, 3, 187, 2572, 8, 187, 1, 187, 3, 187, 2575, 8, 187, 1, 187, 3, 187, 2578, 8, 187, 1, 187, 3, 187, 2581, 8, 187, 1, 187, 3, 187, 2584, 8, 187, 1, 187, 3, 187, 2587, 8, 187, 1, 187, 3, 187, 2590, 8, 187, 1, 187, 3, 187, 2593, 8, 187, 1, 187, 3, 187, 2596, 8, 187, 1, 187, 3, 187, 2599, 8, 187, 3, 187, 2601, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2607, 8, 188, 1, 189, 1, 189, 3, 189, 2611, 8, 189, 1, 189, 3, 189, 2614, 8, 189, 1, 189, 3, 189, 2617, 8, 189, 1, 189, 3, 189, 2620, 8, 189, 1, 189, 3, 189, 2623, 8, 189, 1, 189, 3, 189, 2626, 8, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 2633, 8, 189, 1, 190, 1, 190, 3, 190, 2637, 8, 190, 1, 190, 3, 190, 2640, 8, 190, 1, 190, 3, 190, 2643, 8, 190, 1, 190, 3, 190, 2646, 8, 190, 1, 190, 3, 190, 2649, 8, 190, 1, 190, 3, 190, 2652, 8, 190, 1, 191, 1, 191, 1, 191, 4, 191, 2657, 8, 191, 11, 191, 12, 191, 2658, 1, 192, 3, 192, 2662, 8, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2670, 8, 193, 1, 193, 1, 193, 3, 193, 2674, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2681, 8, 193, 3, 193, 2683, 8, 193, 1, 194, 3, 194, 2686, 8, 194, 1, 194, 1, 194, 1, 194, 3, 194, 2691, 8, 194, 1, 194, 3, 194, 2694, 8, 194, 1, 194, 1, 194, 3, 194, 2698, 8, 194, 1, 195, 1, 195, 1, 195, 3, 195, 2703, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 2709, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 3, 197, 2717, 8, 197, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2723, 8, 198, 10, 198, 12, 198, 2726, 9, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 5, 199, 2733, 8, 199, 10, 199, 12, 199, 2736, 9, 199, 3, 199, 2738, 8, 199, 1, 199, 1, 199, 3, 199, 2742, 8, 199, 1, 199, 1, 199, 3, 199, 2746, 8, 199, 1, 199, 1, 199, 1, 199, 3, 199, 2751, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 2758, 8, 200, 1, 201, 1, 201, 5, 201, 2762, 8, 201, 10, 201, 12, 201, 2765, 9, 201, 1, 201, 3, 201, 2768, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2775, 8, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2780, 8, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 2793, 8, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 2801, 8, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2820, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2830, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2843, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2853, 8, 209, 1, 209, 1, 209, 3, 209, 2857, 8, 209, 4, 209, 2859, 8, 209, 11, 209, 12, 209, 2860, 1, 209, 1, 209, 5, 209, 2865, 8, 209, 10, 209, 12, 209, 2868, 9, 209, 1, 209, 1, 209, 5, 209, 2872, 8, 209, 10, 209, 12, 209, 2875, 9, 209, 1, 209, 1, 209, 5, 209, 2879, 8, 209, 10, 209, 12, 209, 2882, 9, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2890, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2897, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2917, 8, 209, 1, 209, 3, 209, 2920, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2934, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2949, 8, 210, 1, 210, 1, 210, 3, 210, 2953, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 5, 210, 2971, 8, 210, 10, 210, 12, 210, 2974, 9, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2985, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2991, 8, 210, 1, 210, 3, 210, 2994, 8, 210, 1, 210, 3, 210, 2997, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3003, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3009, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3016, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3024, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3030, 8, 210, 1, 210, 1, 210, 3, 210, 3034, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3039, 8, 210, 1, 210, 3, 210, 3042, 8, 210, 1, 210, 1, 210, 3, 210, 3046, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3053, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3058, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3063, 8, 210, 1, 210, 3, 210, 3066, 8, 210, 3, 210, 3068, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3076, 8, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3084, 8, 211, 1, 211, 1, 211, 3, 211, 3088, 8, 211, 4, 211, 3090, 8, 211, 11, 211, 12, 211, 3091, 1, 211, 1, 211, 3, 211, 3096, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 3113, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 3130, 8, 213, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 3, 215, 3137, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 5, 215, 3144, 8, 215, 10, 215, 12, 215, 3147, 9, 215, 1, 215, 1, 215, 3, 215, 3151, 8, 215, 1, 215, 3, 215, 3154, 8, 215, 1, 215, 3, 215, 3157, 8, 215, 1, 216, 1, 216, 3, 216, 3161, 8, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 3176, 8, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3190, 8, 218, 1, 218, 3, 218, 3193, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3204, 8, 219, 1, 220, 1, 220, 3, 220, 3208, 8, 220, 1, 220, 3, 220, 3211, 8, 220, 1, 220, 3, 220, 3214, 8, 220, 1, 220, 1, 220, 3, 220, 3218, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3223, 8, 220, 1, 220, 3, 220, 3226, 8, 220, 1, 220, 3, 220, 3229, 8, 220, 1, 220, 3, 220, 3232, 8, 220, 1, 220, 3, 220, 3235, 8, 220, 1, 220, 3, 220, 3238, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3244, 8, 220, 1, 220, 3, 220, 3247, 8, 220, 1, 220, 3, 220, 3250, 8, 220, 1, 220, 3, 220, 3253, 8, 220, 1, 220, 3, 220, 3256, 8, 220, 1, 220, 3, 220, 3259, 8, 220, 1, 220, 3, 220, 3262, 8, 220, 1, 220, 3, 220, 3265, 8, 220, 1, 220, 3, 220, 3268, 8, 220, 1, 220, 3, 220, 3271, 8, 220, 1, 220, 1, 220, 3, 220, 3275, 8, 220, 3, 220, 3277, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3283, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3288, 8, 220, 1, 220, 3, 220, 3291, 8, 220, 1, 220, 3, 220, 3294, 8, 220, 1, 220, 3, 220, 3297, 8, 220, 1, 220, 3, 220, 3300, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3306, 8, 220, 1, 220, 3, 220, 3309, 8, 220, 1, 220, 3, 220, 3312, 8, 220, 1, 220, 3, 220, 3315, 8, 220, 1, 220, 3, 220, 3318, 8, 220, 1, 220, 3, 220, 3321, 8, 220, 1, 220, 3, 220, 3324, 8, 220, 1, 220, 3, 220, 3327, 8, 220, 1, 220, 3, 220, 3330, 8, 220, 1, 220, 3, 220, 3333, 8, 220, 1, 220, 1, 220, 3, 220, 3337, 8, 220, 3, 220, 3339, 8, 220, 3, 220, 3341, 8, 220, 1, 221, 1, 221, 1, 221, 3, 221, 3346, 8, 221, 1, 221, 1, 221, 1, 221, 3, 221, 3351, 8, 221, 1, 221, 1, 221, 3, 221, 3355, 8, 221, 1, 221, 1, 221, 3, 221, 3359, 8, 221, 1, 221, 1, 221, 1, 221, 3, 221, 3364, 8, 221, 1, 222, 1, 222, 1, 222, 3, 222, 3369, 8, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 5, 223, 3376, 8, 223, 10, 223, 12, 223, 3379, 9, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 5, 224, 3386, 8, 224, 10, 224, 12, 224, 3389, 9, 224, 1, 225, 1, 225, 1, 225, 5, 225, 3394, 8, 225, 10, 225, 12, 225, 3397, 9, 225, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 4, 227, 3406, 8, 227, 11, 227, 12, 227, 3407, 1, 227, 3, 227, 3411, 8, 227, 1, 228, 1, 228, 5, 228, 3415, 8, 228, 10, 228, 12, 228, 3418, 9, 228, 1, 228, 1, 228, 5, 228, 3422, 8, 228, 10, 228, 12, 228, 3425, 9, 228, 1, 228, 1, 228, 5, 228, 3429, 8, 228, 10, 228, 12, 228, 3432, 9, 228, 1, 228, 1, 228, 5, 228, 3436, 8, 228, 10, 228, 12, 228, 3439, 9, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3445, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 3455, 8, 229, 3, 229, 3457, 8, 229, 1, 229, 1, 229, 3, 229, 3461, 8, 229, 5, 229, 3463, 8, 229, 10, 229, 12, 229, 3466, 9, 229, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 3472, 8, 230, 1, 230, 5, 230, 3475, 8, 230, 10, 230, 12, 230, 3478, 9, 230, 1, 231, 3, 231, 3481, 8, 231, 1, 231, 1, 231, 3, 231, 3485, 8, 231, 1, 231, 3, 231, 3488, 8, 231, 1, 231, 3, 231, 3491, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 3502, 8, 232, 1, 232, 1, 232, 3, 232, 3506, 8, 232, 3, 232, 3508, 8, 232, 1, 232, 3, 232, 3511, 8, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3522, 8, 233, 10, 233, 12, 233, 3525, 9, 233, 3, 233, 3527, 8, 233, 1, 233, 3, 233, 3530, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3540, 8, 233, 10, 233, 12, 233, 3543, 9, 233, 3, 233, 3545, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 3552, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3559, 8, 233, 10, 233, 12, 233, 3562, 9, 233, 1, 233, 1, 233, 3, 233, 3566, 8, 233, 3, 233, 3568, 8, 233, 3, 233, 3570, 8, 233, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 5, 235, 3585, 8, 235, 10, 235, 12, 235, 3588, 9, 235, 3, 235, 3590, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 3598, 8, 235, 1, 235, 3, 235, 3601, 8, 235, 1, 236, 1, 236, 3, 236, 3605, 8, 236, 1, 236, 3, 236, 3608, 8, 236, 1, 236, 3, 236, 3611, 8, 236, 1, 236, 3, 236, 3614, 8, 236, 1, 236, 3, 236, 3617, 8, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 3629, 8, 237, 1, 238, 1, 238, 1, 239, 1, 239, 1, 240, 1, 240, 3, 240, 3637, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 3644, 8, 241, 1, 241, 3, 241, 3647, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 3654, 8, 242, 1, 242, 3, 242, 3657, 8, 242, 1, 243, 1, 243, 1, 243, 3, 243, 3662, 8, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 3, 244, 3669, 8, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 3677, 8, 245, 1, 245, 1, 245, 1, 246, 1, 246, 3, 246, 3683, 8, 246, 1, 246, 1, 246, 1, 246, 3, 246, 3688, 8, 246, 1, 246, 1, 246, 3, 246, 3692, 8, 246, 1, 247, 1, 247, 1, 247, 3, 247, 3697, 8, 247, 1, 248, 1, 248, 3, 248, 3701, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 3708, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 5, 249, 3720, 8, 249, 10, 249, 12, 249, 3723, 9, 249, 3, 249, 3725, 8, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 3, 250, 3732, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 3738, 8, 251, 10, 251, 12, 251, 3741, 9, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 3748, 8, 251, 10, 251, 12, 251, 3751, 9, 251, 3, 251, 3753, 8, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 3, 253, 3762, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 3769, 8, 253, 10, 253, 12, 253, 3772, 9, 253, 3, 253, 3774, 8, 253, 1, 253, 1, 253, 1, 254, 1, 254, 3, 254, 3780, 8, 254, 1, 254, 3, 254, 3783, 8, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3788, 8, 254, 1, 254, 3, 254, 3791, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 3804, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 3810, 8, 255, 3, 255, 3812, 8, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 5, 256, 3820, 8, 256, 10, 256, 12, 256, 3823, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 3828, 8, 257, 1, 257, 3, 257, 3831, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 5, 257, 3839, 8, 257, 10, 257, 12, 257, 3842, 9, 257, 1, 257, 1, 257, 3, 257, 3846, 8, 257, 1, 257, 1, 257, 3, 257, 3850, 8, 257, 1, 258, 1, 258, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3866, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3872, 8, 260, 3, 260, 3874, 8, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 3, 261, 3881, 8, 261, 1, 262, 1, 262, 1, 262, 5, 262, 3886, 8, 262, 10, 262, 12, 262, 3889, 9, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 5, 263, 3900, 8, 263, 10, 263, 12, 263, 3903, 9, 263, 1, 264, 1, 264, 1, 264, 3, 264, 3908, 8, 264, 1, 264, 3, 264, 3911, 8, 264, 1, 264, 3, 264, 3914, 8, 264, 1, 264, 3, 264, 3917, 8, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 3926, 8, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 3933, 8, 265, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 3939, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 3948, 8, 267, 1, 268, 1, 268, 3, 268, 3952, 8, 268, 1, 268, 1, 268, 1, 268, 1, 268, 5, 268, 3958, 8, 268, 10, 268, 12, 268, 3961, 9, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 3970, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 3978, 8, 269, 10, 269, 12, 269, 3981, 9, 269, 1, 269, 1, 269, 3, 269, 3985, 8, 269, 1, 270, 1, 270, 3, 270, 3989, 8, 270, 1, 270, 1, 270, 5, 270, 3993, 8, 270, 10, 270, 12, 270, 3996, 9, 270, 1, 270, 1, 270, 3, 270, 4000, 8, 270, 1, 271, 1, 271, 1, 271, 3, 271, 4005, 8, 271, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 3, 273, 4012, 8, 273, 1, 274, 1, 274, 3, 274, 4016, 8, 274, 1, 274, 3, 274, 4019, 8, 274, 1, 274, 1, 274, 1, 274, 3, 274, 4024, 8, 274, 1, 274, 3, 274, 4027, 8, 274, 5, 274, 4029, 8, 274, 10, 274, 12, 274, 4032, 9, 274, 1, 275, 1, 275, 3, 275, 4036, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 4, 277, 4045, 8, 277, 11, 277, 12, 277, 4046, 3, 277, 4049, 8, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 4056, 8, 278, 10, 278, 12, 278, 4059, 9, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 4079, 8, 282, 10, 282, 12, 282, 4082, 9, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 4089, 8, 282, 10, 282, 12, 282, 4092, 9, 282, 3, 282, 4094, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4101, 8, 283, 1, 283, 3, 283, 4104, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4114, 8, 283, 1, 283, 1, 283, 1, 283, 5, 283, 4119, 8, 283, 10, 283, 12, 283, 4122, 9, 283, 3, 283, 4124, 8, 283, 3, 283, 4126, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4137, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4147, 8, 283, 3, 283, 4149, 8, 283, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 286, 1, 286, 3, 286, 4158, 8, 286, 1, 287, 1, 287, 1, 287, 3, 287, 4163, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 4172, 8, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 4, 289, 4183, 8, 289, 11, 289, 12, 289, 4184, 1, 289, 1, 289, 3, 289, 4189, 8, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 4, 290, 4199, 8, 290, 11, 290, 12, 290, 4200, 1, 290, 1, 290, 3, 290, 4205, 8, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 4214, 8, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 4233, 8, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 5, 294, 4249, 8, 294, 10, 294, 12, 294, 4252, 9, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 4263, 8, 294, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 4278, 8, 296, 1, 296, 1, 296, 3, 296, 4282, 8, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 4298, 8, 297, 1, 298, 1, 298, 1, 298, 5, 298, 4303, 8, 298, 10, 298, 12, 298, 4306, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 4319, 8, 299, 1, 300, 5, 300, 4322, 8, 300, 10, 300, 12, 300, 4325, 9, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 5, 300, 4334, 8, 300, 10, 300, 12, 300, 4337, 9, 300, 1, 301, 1, 301, 1, 301, 5, 301, 4342, 8, 301, 10, 301, 12, 301, 4345, 9, 301, 1, 302, 1, 302, 1, 302, 5, 302, 4350, 8, 302, 10, 302, 12, 302, 4353, 9, 302, 1, 303, 1, 303, 1, 303, 5, 303, 4358, 8, 303, 10, 303, 12, 303, 4361, 9, 303, 1, 304, 1, 304, 1, 304, 5, 304, 4366, 8, 304, 10, 304, 12, 304, 4369, 9, 304, 1, 305, 1, 305, 1, 305, 5, 305, 4374, 8, 305, 10, 305, 12, 305, 4377, 9, 305, 1, 306, 1, 306, 1, 306, 5, 306, 4382, 8, 306, 10, 306, 12, 306, 4385, 9, 306, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 3, 309, 4395, 8, 309, 1, 309, 1, 309, 3, 309, 4399, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 4407, 8, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 4423, 8, 311, 1, 312, 1, 312, 3, 312, 4427, 8, 312, 1, 313, 1, 313, 1, 313, 3, 313, 4432, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 3, 315, 4445, 8, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 5, 316, 4454, 8, 316, 10, 316, 12, 316, 4457, 9, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 4465, 8, 317, 1, 318, 5, 318, 4468, 8, 318, 10, 318, 12, 318, 4471, 9, 318, 1, 318, 1, 318, 1, 318, 3, 318, 4476, 8, 318, 1, 319, 1, 319, 1, 319, 5, 319, 4481, 8, 319, 10, 319, 12, 319, 4484, 9, 319, 1, 320, 1, 320, 3, 320, 4488, 8, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 4495, 8, 321, 10, 321, 12, 321, 4498, 9, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 3, 322, 4505, 8, 322, 1, 323, 1, 323, 1, 323, 1, 323, 5, 323, 4511, 8, 323, 10, 323, 12, 323, 4514, 9, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 3, 324, 4521, 8, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 326, 1, 326, 1, 327, 1, 327, 3, 327, 4531, 8, 327, 1, 328, 1, 328, 1, 328, 3, 328, 4536, 8, 328, 1, 329, 1, 329, 1, 330, 1, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4595, 8, 332, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4601, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4610, 8, 333, 3, 333, 4612, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 5, 333, 4626, 8, 333, 10, 333, 12, 333, 4629, 9, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4636, 8, 333, 1, 333, 1, 333, 3, 333, 4640, 8, 333, 3, 333, 4642, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4648, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4653, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4670, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4696, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4701, 8, 333, 3, 333, 4703, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4731, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4748, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4753, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4762, 8, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4773, 8, 335, 1, 336, 1, 336, 1, 336, 5, 336, 4778, 8, 336, 10, 336, 12, 336, 4781, 9, 336, 1, 337, 1, 337, 1, 337, 3, 337, 4786, 8, 337, 1, 338, 1, 338, 1, 338, 3, 338, 4791, 8, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 345, 1, 345, 1, 346, 1, 346, 1, 347, 1, 347, 1, 348, 1, 348, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 5, 350, 4818, 8, 350, 10, 350, 12, 350, 4821, 9, 350, 1, 351, 1, 351, 1, 351, 5, 351, 4826, 8, 351, 10, 351, 12, 351, 4829, 9, 351, 1, 351, 1, 351, 1, 351, 1, 351, 5, 351, 4835, 8, 351, 10, 351, 12, 351, 4838, 9, 351, 3, 351, 4840, 8, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 4850, 8, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 4864, 8, 354, 1, 355, 1, 355, 1, 355, 5, 355, 4869, 8, 355, 10, 355, 12, 355, 4872, 9, 355, 1, 355, 1, 833, 0, 356, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 0, 61, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 226, 226, 325, 325, 1, 0, 395, 396, 2, 0, 50, 50, 346, 346, 2, 0, 34, 34, 282, 282, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 295, 295, 2, 0, 68, 68, 296, 296, 1, 0, 155, 156, 2, 0, 114, 114, 307, 307, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 190, 190, 299, 299, 309, 309, 365, 365, 3, 0, 4, 4, 101, 101, 326, 326, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 351, 351, 2, 0, 217, 217, 373, 373, 2, 0, 214, 214, 272, 272, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 376, 376, 4, 0, 112, 112, 164, 164, 205, 205, 356, 356, 2, 0, 7, 7, 96, 96, 2, 0, 125, 125, 350, 350, 2, 0, 225, 225, 391, 391, 2, 0, 42, 42, 315, 315, 2, 0, 189, 189, 196, 196, 2, 0, 426, 426, 431, 431, 2, 0, 140, 140, 285, 285, 3, 0, 12, 12, 231, 231, 300, 300, 2, 0, 241, 241, 292, 292, 2, 0, 198, 198, 268, 268, 2, 0, 260, 260, 292, 292, 2, 0, 354, 354, 431, 431, 2, 0, 133, 133, 247, 247, 2, 0, 152, 152, 281, 281, 3, 0, 413, 414, 418, 418, 420, 420, 2, 0, 412, 412, 415, 417, 1, 0, 413, 414, 4, 0, 184, 184, 270, 270, 286, 286, 408, 411, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 313, 313, 3, 0, 184, 184, 270, 270, 286, 286, 4, 0, 125, 125, 219, 219, 350, 350, 360, 360, 2, 0, 405, 405, 407, 411, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 184, 184, 198, 198, 216, 216, 228, 228, 264, 264, 270, 270, 286, 286, 311, 311, 323, 324, 340, 340, 357, 357, 383, 383, 405, 417, 419, 421, 423, 423, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 183, 185, 187, 189, 193, 195, 197, 199, 202, 204, 204, 206, 209, 211, 212, 214, 215, 217, 218, 220, 220, 222, 223, 226, 227, 232, 233, 235, 236, 238, 240, 243, 246, 252, 252, 254, 255, 257, 259, 261, 262, 265, 267, 271, 282, 284, 284, 287, 288, 293, 298, 300, 303, 305, 310, 312, 312, 314, 317, 319, 325, 327, 328, 330, 330, 332, 334, 339, 340, 342, 342, 344, 346, 349, 349, 352, 353, 355, 355, 357, 357, 360, 364, 366, 368, 371, 373, 375, 375, 377, 382, 385, 385, 388, 394, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 198, 198, 264, 264, 311, 311, 337, 337, 2, 0, 4, 4, 101, 101, 2, 0, 9, 9, 58, 58, 3, 0, 14, 14, 144, 144, 369, 369, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 392, 393, 1, 0, 208, 209, 1, 0, 381, 382, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 206, 207, 1, 0, 297, 298, 1, 0, 80, 82, 5464, 0, 715, 1, 0, 0, 0, 2, 722, 1, 0, 0, 0, 4, 727, 1, 0, 0, 0, 6, 761, 1, 0, 0, 0, 8, 763, 1, 0, 0, 0, 10, 836, 1, 0, 0, 0, 12, 838, 1, 0, 0, 0, 14, 854, 1, 0, 0, 0, 16, 863, 1, 0, 0, 0, 18, 871, 1, 0, 0, 0, 20, 884, 1, 0, 0, 0, 22, 895, 1, 0, 0, 0, 24, 900, 1, 0, 0, 0, 26, 911, 1, 0, 0, 0, 28, 974, 1, 0, 0, 0, 30, 976, 1, 0, 0, 0, 32, 979, 1, 0, 0, 0, 34, 983, 1, 0, 0, 0, 36, 985, 1, 0, 0, 0, 38, 988, 1, 0, 0, 0, 40, 991, 1, 0, 0, 0, 42, 1035, 1, 0, 0, 0, 44, 1037, 1, 0, 0, 0, 46, 1040, 1, 0, 0, 0, 48, 1043, 1, 0, 0, 0, 50, 1052, 1, 0, 0, 0, 52, 1055, 1, 0, 0, 0, 54, 1070, 1, 0, 0, 0, 56, 1082, 1, 0, 0, 0, 58, 1087, 1, 0, 0, 0, 60, 1107, 1, 0, 0, 0, 62, 1111, 1, 0, 0, 0, 64, 1118, 1, 0, 0, 0, 66, 1143, 1, 0, 0, 0, 68, 1160, 1, 0, 0, 0, 70, 1162, 1, 0, 0, 0, 72, 1347, 1, 0, 0, 0, 74, 1357, 1, 0, 0, 0, 76, 1359, 1, 0, 0, 0, 78, 1364, 1, 0, 0, 0, 80, 1369, 1, 0, 0, 0, 82, 1371, 1, 0, 0, 0, 84, 1375, 1, 0, 0, 0, 86, 1379, 1, 0, 0, 0, 88, 1383, 1, 0, 0, 0, 90, 1387, 1, 0, 0, 0, 92, 1397, 1, 0, 0, 0, 94, 1408, 1, 0, 0, 0, 96, 1425, 1, 0, 0, 0, 98, 1443, 1, 0, 0, 0, 100, 1448, 1, 0, 0, 0, 102, 1451, 1, 0, 0, 0, 104, 1455, 1, 0, 0, 0, 106, 1462, 1, 0, 0, 0, 108, 1471, 1, 0, 0, 0, 110, 1477, 1, 0, 0, 0, 112, 1479, 1, 0, 0, 0, 114, 1493, 1, 0, 0, 0, 116, 1515, 1, 0, 0, 0, 118, 1517, 1, 0, 0, 0, 120, 1525, 1, 0, 0, 0, 122, 1532, 1, 0, 0, 0, 124, 1534, 1, 0, 0, 0, 126, 1548, 1, 0, 0, 0, 128, 1555, 1, 0, 0, 0, 130, 1557, 1, 0, 0, 0, 132, 1561, 1, 0, 0, 0, 134, 1565, 1, 0, 0, 0, 136, 1569, 1, 0, 0, 0, 138, 1573, 1, 0, 0, 0, 140, 1586, 1, 0, 0, 0, 142, 1594, 1, 0, 0, 0, 144, 1597, 1, 0, 0, 0, 146, 1599, 1, 0, 0, 0, 148, 1611, 1, 0, 0, 0, 150, 1621, 1, 0, 0, 0, 152, 1624, 1, 0, 0, 0, 154, 1635, 1, 0, 0, 0, 156, 1643, 1, 0, 0, 0, 158, 1686, 1, 0, 0, 0, 160, 1695, 1, 0, 0, 0, 162, 1723, 1, 0, 0, 0, 164, 1736, 1, 0, 0, 0, 166, 1738, 1, 0, 0, 0, 168, 1744, 1, 0, 0, 0, 170, 1747, 1, 0, 0, 0, 172, 1753, 1, 0, 0, 0, 174, 1759, 1, 0, 0, 0, 176, 1766, 1, 0, 0, 0, 178, 1800, 1, 0, 0, 0, 180, 1808, 1, 0, 0, 0, 182, 1821, 1, 0, 0, 0, 184, 1826, 1, 0, 0, 0, 186, 1837, 1, 0, 0, 0, 188, 1854, 1, 0, 0, 0, 190, 1856, 1, 0, 0, 0, 192, 1861, 1, 0, 0, 0, 194, 1868, 1, 0, 0, 0, 196, 1870, 1, 0, 0, 0, 198, 1873, 1, 0, 0, 0, 200, 1876, 1, 0, 0, 0, 202, 1890, 1, 0, 0, 0, 204, 1898, 1, 0, 0, 0, 206, 1924, 1, 0, 0, 0, 208, 1926, 1, 0, 0, 0, 210, 1943, 1, 0, 0, 0, 212, 1957, 1, 0, 0, 0, 214, 1959, 1, 0, 0, 0, 216, 1962, 1, 0, 0, 0, 218, 1965, 1, 0, 0, 0, 220, 1974, 1, 0, 0, 0, 222, 1994, 1, 0, 0, 0, 224, 1996, 1, 0, 0, 0, 226, 1999, 1, 0, 0, 0, 228, 2012, 1, 0, 0, 0, 230, 2014, 1, 0, 0, 0, 232, 2018, 1, 0, 0, 0, 234, 2026, 1, 0, 0, 0, 236, 2030, 1, 0, 0, 0, 238, 2039, 1, 0, 0, 0, 240, 2045, 1, 0, 0, 0, 242, 2051, 1, 0, 0, 0, 244, 2056, 1, 0, 0, 0, 246, 2102, 1, 0, 0, 0, 248, 2104, 1, 0, 0, 0, 250, 2112, 1, 0, 0, 0, 252, 2120, 1, 0, 0, 0, 254, 2128, 1, 0, 0, 0, 256, 2139, 1, 0, 0, 0, 258, 2141, 1, 0, 0, 0, 260, 2146, 1, 0, 0, 0, 262, 2148, 1, 0, 0, 0, 264, 2150, 1, 0, 0, 0, 266, 2163, 1, 0, 0, 0, 268, 2171, 1, 0, 0, 0, 270, 2180, 1, 0, 0, 0, 272, 2184, 1, 0, 0, 0, 274, 2186, 1, 0, 0, 0, 276, 2191, 1, 0, 0, 0, 278, 2193, 1, 0, 0, 0, 280, 2197, 1, 0, 0, 0, 282, 2203, 1, 0, 0, 0, 284, 2211, 1, 0, 0, 0, 286, 2213, 1, 0, 0, 0, 288, 2216, 1, 0, 0, 0, 290, 2223, 1, 0, 0, 0, 292, 2234, 1, 0, 0, 0, 294, 2247, 1, 0, 0, 0, 296, 2249, 1, 0, 0, 0, 298, 2257, 1, 0, 0, 0, 300, 2261, 1, 0, 0, 0, 302, 2269, 1, 0, 0, 0, 304, 2271, 1, 0, 0, 0, 306, 2274, 1, 0, 0, 0, 308, 2281, 1, 0, 0, 0, 310, 2289, 1, 0, 0, 0, 312, 2296, 1, 0, 0, 0, 314, 2304, 1, 0, 0, 0, 316, 2312, 1, 0, 0, 0, 318, 2316, 1, 0, 0, 0, 320, 2318, 1, 0, 0, 0, 322, 2329, 1, 0, 0, 0, 324, 2333, 1, 0, 0, 0, 326, 2345, 1, 0, 0, 0, 328, 2353, 1, 0, 0, 0, 330, 2357, 1, 0, 0, 0, 332, 2369, 1, 0, 0, 0, 334, 2381, 1, 0, 0, 0, 336, 2386, 1, 0, 0, 0, 338, 2391, 1, 0, 0, 0, 340, 2393, 1, 0, 0, 0, 342, 2397, 1, 0, 0, 0, 344, 2401, 1, 0, 0, 0, 346, 2408, 1, 0, 0, 0, 348, 2410, 1, 0, 0, 0, 350, 2423, 1, 0, 0, 0, 352, 2462, 1, 0, 0, 0, 354, 2464, 1, 0, 0, 0, 356, 2469, 1, 0, 0, 0, 358, 2474, 1, 0, 0, 0, 360, 2481, 1, 0, 0, 0, 362, 2486, 1, 0, 0, 0, 364, 2491, 1, 0, 0, 0, 366, 2497, 1, 0, 0, 0, 368, 2499, 1, 0, 0, 0, 370, 2508, 1, 0, 0, 0, 372, 2520, 1, 0, 0, 0, 374, 2600, 1, 0, 0, 0, 376, 2606, 1, 0, 0, 0, 378, 2632, 1, 0, 0, 0, 380, 2634, 1, 0, 0, 0, 382, 2656, 1, 0, 0, 0, 384, 2661, 1, 0, 0, 0, 386, 2665, 1, 0, 0, 0, 388, 2697, 1, 0, 0, 0, 390, 2699, 1, 0, 0, 0, 392, 2710, 1, 0, 0, 0, 394, 2716, 1, 0, 0, 0, 396, 2718, 1, 0, 0, 0, 398, 2750, 1, 0, 0, 0, 400, 2757, 1, 0, 0, 0, 402, 2763, 1, 0, 0, 0, 404, 2769, 1, 0, 0, 0, 406, 2784, 1, 0, 0, 0, 408, 2794, 1, 0, 0, 0, 410, 2802, 1, 0, 0, 0, 412, 2805, 1, 0, 0, 0, 414, 2808, 1, 0, 0, 0, 416, 2811, 1, 0, 0, 0, 418, 2933, 1, 0, 0, 0, 420, 3067, 1, 0, 0, 0, 422, 3095, 1, 0, 0, 0, 424, 3112, 1, 0, 0, 0, 426, 3129, 1, 0, 0, 0, 428, 3131, 1, 0, 0, 0, 430, 3134, 1, 0, 0, 0, 432, 3160, 1, 0, 0, 0, 434, 3165, 1, 0, 0, 0, 436, 3192, 1, 0, 0, 0, 438, 3203, 1, 0, 0, 0, 440, 3340, 1, 0, 0, 0, 442, 3342, 1, 0, 0, 0, 444, 3365, 1, 0, 0, 0, 446, 3377, 1, 0, 0, 0, 448, 3382, 1, 0, 0, 0, 450, 3390, 1, 0, 0, 0, 452, 3398, 1, 0, 0, 0, 454, 3410, 1, 0, 0, 0, 456, 3444, 1, 0, 0, 0, 458, 3446, 1, 0, 0, 0, 460, 3471, 1, 0, 0, 0, 462, 3480, 1, 0, 0, 0, 464, 3510, 1, 0, 0, 0, 466, 3569, 1, 0, 0, 0, 468, 3571, 1, 0, 0, 0, 470, 3600, 1, 0, 0, 0, 472, 3602, 1, 0, 0, 0, 474, 3618, 1, 0, 0, 0, 476, 3630, 1, 0, 0, 0, 478, 3632, 1, 0, 0, 0, 480, 3636, 1, 0, 0, 0, 482, 3646, 1, 0, 0, 0, 484, 3656, 1, 0, 0, 0, 486, 3661, 1, 0, 0, 0, 488, 3668, 1, 0, 0, 0, 490, 3672, 1, 0, 0, 0, 492, 3691, 1, 0, 0, 0, 494, 3696, 1, 0, 0, 0, 496, 3698, 1, 0, 0, 0, 498, 3702, 1, 0, 0, 0, 500, 3728, 1, 0, 0, 0, 502, 3733, 1, 0, 0, 0, 504, 3754, 1, 0, 0, 0, 506, 3759, 1, 0, 0, 0, 508, 3790, 1, 0, 0, 0, 510, 3792, 1, 0, 0, 0, 512, 3816, 1, 0, 0, 0, 514, 3849, 1, 0, 0, 0, 516, 3851, 1, 0, 0, 0, 518, 3853, 1, 0, 0, 0, 520, 3855, 1, 0, 0, 0, 522, 3880, 1, 0, 0, 0, 524, 3882, 1, 0, 0, 0, 526, 3890, 1, 0, 0, 0, 528, 3916, 1, 0, 0, 0, 530, 3918, 1, 0, 0, 0, 532, 3938, 1, 0, 0, 0, 534, 3940, 1, 0, 0, 0, 536, 3951, 1, 0, 0, 0, 538, 3964, 1, 0, 0, 0, 540, 3999, 1, 0, 0, 0, 542, 4001, 1, 0, 0, 0, 544, 4006, 1, 0, 0, 0, 546, 4011, 1, 0, 0, 0, 548, 4013, 1, 0, 0, 0, 550, 4035, 1, 0, 0, 0, 552, 4037, 1, 0, 0, 0, 554, 4041, 1, 0, 0, 0, 556, 4050, 1, 0, 0, 0, 558, 4060, 1, 0, 0, 0, 560, 4064, 1, 0, 0, 0, 562, 4068, 1, 0, 0, 0, 564, 4072, 1, 0, 0, 0, 566, 4148, 1, 0, 0, 0, 568, 4150, 1, 0, 0, 0, 570, 4153, 1, 0, 0, 0, 572, 4157, 1, 0, 0, 0, 574, 4162, 1, 0, 0, 0, 576, 4164, 1, 0, 0, 0, 578, 4175, 1, 0, 0, 0, 580, 4192, 1, 0, 0, 0, 582, 4208, 1, 0, 0, 0, 584, 4217, 1, 0, 0, 0, 586, 4232, 1, 0, 0, 0, 588, 4262, 1, 0, 0, 0, 590, 4264, 1, 0, 0, 0, 592, 4281, 1, 0, 0, 0, 594, 4297, 1, 0, 0, 0, 596, 4299, 1, 0, 0, 0, 598, 4318, 1, 0, 0, 0, 600, 4323, 1, 0, 0, 0, 602, 4338, 1, 0, 0, 0, 604, 4346, 1, 0, 0, 0, 606, 4354, 1, 0, 0, 0, 608, 4362, 1, 0, 0, 0, 610, 4370, 1, 0, 0, 0, 612, 4378, 1, 0, 0, 0, 614, 4386, 1, 0, 0, 0, 616, 4388, 1, 0, 0, 0, 618, 4398, 1, 0, 0, 0, 620, 4406, 1, 0, 0, 0, 622, 4422, 1, 0, 0, 0, 624, 4426, 1, 0, 0, 0, 626, 4431, 1, 0, 0, 0, 628, 4433, 1, 0, 0, 0, 630, 4444, 1, 0, 0, 0, 632, 4446, 1, 0, 0, 0, 634, 4464, 1, 0, 0, 0, 636, 4469, 1, 0, 0, 0, 638, 4477, 1, 0, 0, 0, 640, 4485, 1, 0, 0, 0, 642, 4489, 1, 0, 0, 0, 644, 4501, 1, 0, 0, 0, 646, 4506, 1, 0, 0, 0, 648, 4517, 1, 0, 0, 0, 650, 4524, 1, 0, 0, 0, 652, 4526, 1, 0, 0, 0, 654, 4530, 1, 0, 0, 0, 656, 4532, 1, 0, 0, 0, 658, 4537, 1, 0, 0, 0, 660, 4539, 1, 0, 0, 0, 662, 4541, 1, 0, 0, 0, 664, 4594, 1, 0, 0, 0, 666, 4761, 1, 0, 0, 0, 668, 4763, 1, 0, 0, 0, 670, 4772, 1, 0, 0, 0, 672, 4774, 1, 0, 0, 0, 674, 4785, 1, 0, 0, 0, 676, 4787, 1, 0, 0, 0, 678, 4792, 1, 0, 0, 0, 680, 4794, 1, 0, 0, 0, 682, 4796, 1, 0, 0, 0, 684, 4798, 1, 0, 0, 0, 686, 4800, 1, 0, 0, 0, 688, 4802, 1, 0, 0, 0, 690, 4804, 1, 0, 0, 0, 692, 4806, 1, 0, 0, 0, 694, 4808, 1, 0, 0, 0, 696, 4810, 1, 0, 0, 0, 698, 4812, 1, 0, 0, 0, 700, 4814, 1, 0, 0, 0, 702, 4839, 1, 0, 0, 0, 704, 4841, 1, 0, 0, 0, 706, 4849, 1, 0, 0, 0, 708, 4863, 1, 0, 0, 0, 710, 4865, 1, 0, 0, 0, 712, 714, 3, 2, 1, 0, 713, 712, 1, 0, 0, 0, 714, 717, 1, 0, 0, 0, 715, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 718, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 718, 719, 5, 0, 0, 1, 719, 1, 1, 0, 0, 0, 720, 723, 3, 4, 2, 0, 721, 723, 3, 10, 5, 0, 722, 720, 1, 0, 0, 0, 722, 721, 1, 0, 0, 0, 723, 725, 1, 0, 0, 0, 724, 726, 5, 398, 0, 0, 725, 724, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 3, 1, 0, 0, 0, 727, 737, 5, 119, 0, 0, 728, 730, 3, 6, 3, 0, 729, 728, 1, 0, 0, 0, 730, 733, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 734, 1, 0, 0, 0, 733, 731, 1, 0, 0, 0, 734, 738, 3, 10, 5, 0, 735, 736, 5, 284, 0, 0, 736, 738, 3, 364, 182, 0, 737, 731, 1, 0, 0, 0, 737, 735, 1, 0, 0, 0, 738, 5, 1, 0, 0, 0, 739, 762, 5, 122, 0, 0, 740, 762, 5, 138, 0, 0, 741, 762, 5, 88, 0, 0, 742, 744, 5, 37, 0, 0, 743, 745, 7, 0, 0, 0, 744, 743, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 762, 1, 0, 0, 0, 746, 762, 5, 192, 0, 0, 747, 762, 5, 21, 0, 0, 748, 762, 5, 10, 0, 0, 749, 762, 5, 275, 0, 0, 750, 762, 5, 191, 0, 0, 751, 762, 5, 19, 0, 0, 752, 754, 5, 377, 0, 0, 753, 755, 5, 225, 0, 0, 754, 753, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 757, 1, 0, 0, 0, 756, 758, 3, 8, 4, 0, 757, 756, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 762, 1, 0, 0, 0, 759, 762, 5, 79, 0, 0, 760, 762, 5, 78, 0, 0, 761, 739, 1, 0, 0, 0, 761, 740, 1, 0, 0, 0, 761, 741, 1, 0, 0, 0, 761, 742, 1, 0, 0, 0, 761, 746, 1, 0, 0, 0, 761, 747, 1, 0, 0, 0, 761, 748, 1, 0, 0, 0, 761, 749, 1, 0, 0, 0, 761, 750, 1, 0, 0, 0, 761, 751, 1, 0, 0, 0, 761, 752, 1, 0, 0, 0, 761, 759, 1, 0, 0, 0, 761, 760, 1, 0, 0, 0, 762, 7, 1, 0, 0, 0, 763, 764, 7, 1, 0, 0, 764, 9, 1, 0, 0, 0, 765, 837, 3, 364, 182, 0, 766, 837, 3, 12, 6, 0, 767, 837, 3, 16, 8, 0, 768, 837, 3, 18, 9, 0, 769, 837, 3, 20, 10, 0, 770, 837, 3, 24, 12, 0, 771, 772, 5, 277, 0, 0, 772, 773, 5, 320, 0, 0, 773, 776, 3, 476, 238, 0, 774, 775, 5, 387, 0, 0, 775, 777, 3, 230, 115, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 837, 1, 0, 0, 0, 778, 837, 3, 28, 14, 0, 779, 780, 5, 86, 0, 0, 780, 781, 5, 139, 0, 0, 781, 783, 3, 482, 241, 0, 782, 784, 3, 500, 250, 0, 783, 782, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 837, 1, 0, 0, 0, 785, 786, 5, 365, 0, 0, 786, 787, 3, 482, 241, 0, 787, 789, 3, 396, 198, 0, 788, 790, 3, 500, 250, 0, 789, 788, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 837, 1, 0, 0, 0, 791, 837, 3, 398, 199, 0, 792, 794, 5, 203, 0, 0, 793, 795, 5, 436, 0, 0, 794, 793, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 797, 5, 166, 0, 0, 797, 802, 3, 482, 241, 0, 798, 800, 5, 17, 0, 0, 799, 798, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 803, 3, 654, 327, 0, 802, 799, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 5, 370, 0, 0, 805, 806, 3, 460, 230, 0, 806, 807, 5, 224, 0, 0, 807, 808, 3, 596, 298, 0, 808, 809, 3, 402, 201, 0, 809, 837, 1, 0, 0, 0, 810, 811, 5, 249, 0, 0, 811, 812, 3, 654, 327, 0, 812, 813, 5, 139, 0, 0, 813, 814, 3, 364, 182, 0, 814, 837, 1, 0, 0, 0, 815, 816, 5, 115, 0, 0, 816, 817, 3, 654, 327, 0, 817, 818, 5, 370, 0, 0, 818, 819, 3, 300, 150, 0, 819, 837, 1, 0, 0, 0, 820, 821, 5, 304, 0, 0, 821, 826, 3, 664, 332, 0, 822, 823, 7, 2, 0, 0, 823, 825, 3, 664, 332, 0, 824, 822, 1, 0, 0, 0, 825, 828, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 829, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 829, 833, 5, 405, 0, 0, 830, 832, 9, 0, 0, 0, 831, 830, 1, 0, 0, 0, 832, 835, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 833, 831, 1, 0, 0, 0, 834, 837, 1, 0, 0, 0, 835, 833, 1, 0, 0, 0, 836, 765, 1, 0, 0, 0, 836, 766, 1, 0, 0, 0, 836, 767, 1, 0, 0, 0, 836, 768, 1, 0, 0, 0, 836, 769, 1, 0, 0, 0, 836, 770, 1, 0, 0, 0, 836, 771, 1, 0, 0, 0, 836, 778, 1, 0, 0, 0, 836, 779, 1, 0, 0, 0, 836, 785, 1, 0, 0, 0, 836, 791, 1, 0, 0, 0, 836, 792, 1, 0, 0, 0, 836, 810, 1, 0, 0, 0, 836, 815, 1, 0, 0, 0, 836, 820, 1, 0, 0, 0, 837, 11, 1, 0, 0, 0, 838, 839, 5, 187, 0, 0, 839, 841, 5, 66, 0, 0, 840, 842, 5, 188, 0, 0, 841, 840, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 844, 5, 158, 0, 0, 844, 846, 5, 426, 0, 0, 845, 847, 5, 235, 0, 0, 846, 845, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 849, 5, 166, 0, 0, 849, 850, 5, 329, 0, 0, 850, 852, 3, 640, 320, 0, 851, 853, 3, 56, 28, 0, 852, 851, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 13, 1, 0, 0, 0, 854, 856, 5, 134, 0, 0, 855, 857, 5, 204, 0, 0, 856, 855, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 859, 5, 279, 0, 0, 859, 860, 5, 399, 0, 0, 860, 861, 5, 426, 0, 0, 861, 862, 5, 400, 0, 0, 862, 15, 1, 0, 0, 0, 863, 864, 5, 120, 0, 0, 864, 865, 5, 329, 0, 0, 865, 866, 3, 640, 320, 0, 866, 867, 5, 341, 0, 0, 867, 869, 5, 426, 0, 0, 868, 870, 3, 14, 7, 0, 869, 868, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 17, 1, 0, 0, 0, 871, 877, 5, 153, 0, 0, 872, 874, 5, 123, 0, 0, 873, 872, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 329, 0, 0, 876, 878, 3, 640, 320, 0, 877, 873, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 880, 5, 139, 0, 0, 880, 882, 5, 426, 0, 0, 881, 883, 3, 428, 214, 0, 882, 881, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 19, 1, 0, 0, 0, 884, 885, 5, 277, 0, 0, 885, 886, 5, 103, 0, 0, 886, 889, 3, 22, 11, 0, 887, 888, 5, 278, 0, 0, 888, 890, 3, 22, 11, 0, 889, 887, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 893, 1, 0, 0, 0, 891, 892, 5, 387, 0, 0, 892, 894, 3, 230, 115, 0, 893, 891, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 21, 1, 0, 0, 0, 895, 898, 3, 476, 238, 0, 896, 897, 5, 395, 0, 0, 897, 899, 3, 26, 13, 0, 898, 896, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 23, 1, 0, 0, 0, 900, 901, 5, 277, 0, 0, 901, 902, 5, 187, 0, 0, 902, 905, 3, 22, 11, 0, 903, 904, 5, 166, 0, 0, 904, 906, 3, 476, 238, 0, 905, 903, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 909, 1, 0, 0, 0, 907, 908, 5, 387, 0, 0, 908, 910, 3, 230, 115, 0, 909, 907, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 25, 1, 0, 0, 0, 911, 914, 5, 426, 0, 0, 912, 913, 5, 395, 0, 0, 913, 915, 5, 426, 0, 0, 914, 912, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 27, 1, 0, 0, 0, 916, 975, 3, 42, 21, 0, 917, 975, 3, 46, 23, 0, 918, 975, 3, 48, 24, 0, 919, 975, 3, 440, 220, 0, 920, 975, 3, 54, 27, 0, 921, 975, 3, 52, 26, 0, 922, 975, 3, 416, 208, 0, 923, 975, 3, 64, 32, 0, 924, 975, 3, 72, 36, 0, 925, 975, 3, 138, 69, 0, 926, 975, 3, 160, 80, 0, 927, 975, 3, 176, 88, 0, 928, 975, 3, 180, 90, 0, 929, 975, 3, 184, 92, 0, 930, 975, 3, 182, 91, 0, 931, 975, 3, 174, 87, 0, 932, 975, 3, 178, 89, 0, 933, 975, 3, 146, 73, 0, 934, 975, 3, 152, 76, 0, 935, 975, 3, 148, 74, 0, 936, 975, 3, 150, 75, 0, 937, 975, 3, 154, 77, 0, 938, 975, 3, 156, 78, 0, 939, 975, 3, 158, 79, 0, 940, 975, 3, 66, 33, 0, 941, 975, 3, 76, 38, 0, 942, 975, 3, 82, 41, 0, 943, 975, 3, 78, 39, 0, 944, 975, 3, 84, 42, 0, 945, 975, 3, 86, 43, 0, 946, 975, 3, 88, 44, 0, 947, 975, 3, 90, 45, 0, 948, 975, 3, 92, 46, 0, 949, 975, 3, 106, 53, 0, 950, 975, 3, 98, 49, 0, 951, 975, 3, 108, 54, 0, 952, 975, 3, 100, 50, 0, 953, 975, 3, 94, 47, 0, 954, 975, 3, 96, 48, 0, 955, 975, 3, 104, 52, 0, 956, 975, 3, 102, 51, 0, 957, 958, 5, 1, 0, 0, 958, 960, 7, 3, 0, 0, 959, 961, 5, 431, 0, 0, 960, 959, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 960, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 975, 1, 0, 0, 0, 964, 965, 5, 176, 0, 0, 965, 967, 5, 258, 0, 0, 966, 968, 5, 426, 0, 0, 967, 966, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 967, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 975, 1, 0, 0, 0, 971, 975, 3, 666, 333, 0, 972, 975, 3, 442, 221, 0, 973, 975, 3, 444, 222, 0, 974, 916, 1, 0, 0, 0, 974, 917, 1, 0, 0, 0, 974, 918, 1, 0, 0, 0, 974, 919, 1, 0, 0, 0, 974, 920, 1, 0, 0, 0, 974, 921, 1, 0, 0, 0, 974, 922, 1, 0, 0, 0, 974, 923, 1, 0, 0, 0, 974, 924, 1, 0, 0, 0, 974, 925, 1, 0, 0, 0, 974, 926, 1, 0, 0, 0, 974, 927, 1, 0, 0, 0, 974, 928, 1, 0, 0, 0, 974, 929, 1, 0, 0, 0, 974, 930, 1, 0, 0, 0, 974, 931, 1, 0, 0, 0, 974, 932, 1, 0, 0, 0, 974, 933, 1, 0, 0, 0, 974, 934, 1, 0, 0, 0, 974, 935, 1, 0, 0, 0, 974, 936, 1, 0, 0, 0, 974, 937, 1, 0, 0, 0, 974, 938, 1, 0, 0, 0, 974, 939, 1, 0, 0, 0, 974, 940, 1, 0, 0, 0, 974, 941, 1, 0, 0, 0, 974, 942, 1, 0, 0, 0, 974, 943, 1, 0, 0, 0, 974, 944, 1, 0, 0, 0, 974, 945, 1, 0, 0, 0, 974, 946, 1, 0, 0, 0, 974, 947, 1, 0, 0, 0, 974, 948, 1, 0, 0, 0, 974, 949, 1, 0, 0, 0, 974, 950, 1, 0, 0, 0, 974, 951, 1, 0, 0, 0, 974, 952, 1, 0, 0, 0, 974, 953, 1, 0, 0, 0, 974, 954, 1, 0, 0, 0, 974, 955, 1, 0, 0, 0, 974, 956, 1, 0, 0, 0, 974, 957, 1, 0, 0, 0, 974, 964, 1, 0, 0, 0, 974, 971, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 974, 973, 1, 0, 0, 0, 975, 29, 1, 0, 0, 0, 976, 977, 5, 151, 0, 0, 977, 978, 5, 117, 0, 0, 978, 31, 1, 0, 0, 0, 979, 980, 5, 151, 0, 0, 980, 981, 5, 216, 0, 0, 981, 982, 5, 117, 0, 0, 982, 33, 1, 0, 0, 0, 983, 984, 7, 4, 0, 0, 984, 35, 1, 0, 0, 0, 985, 986, 3, 678, 339, 0, 986, 987, 5, 284, 0, 0, 987, 37, 1, 0, 0, 0, 988, 989, 3, 680, 340, 0, 989, 990, 5, 284, 0, 0, 990, 39, 1, 0, 0, 0, 991, 992, 5, 321, 0, 0, 992, 993, 5, 17, 0, 0, 993, 994, 5, 92, 0, 0, 994, 41, 1, 0, 0, 0, 995, 997, 5, 58, 0, 0, 996, 998, 5, 273, 0, 0, 997, 996, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 999, 1, 0, 0, 0, 999, 1001, 3, 70, 35, 0, 1000, 1002, 3, 32, 16, 0, 1001, 1000, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1005, 3, 478, 239, 0, 1004, 1006, 3, 50, 25, 0, 1005, 1004, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1008, 1, 0, 0, 0, 1007, 1009, 3, 428, 214, 0, 1008, 1007, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1012, 1, 0, 0, 0, 1010, 1011, 5, 196, 0, 0, 1011, 1013, 5, 426, 0, 0, 1012, 1010, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1017, 1, 0, 0, 0, 1014, 1015, 5, 387, 0, 0, 1015, 1016, 5, 76, 0, 0, 1016, 1018, 3, 230, 115, 0, 1017, 1014, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1036, 1, 0, 0, 0, 1019, 1020, 5, 58, 0, 0, 1020, 1021, 5, 273, 0, 0, 1021, 1023, 3, 70, 35, 0, 1022, 1024, 3, 32, 16, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1027, 3, 478, 239, 0, 1026, 1028, 3, 50, 25, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1033, 3, 44, 22, 0, 1030, 1031, 5, 387, 0, 0, 1031, 1032, 5, 76, 0, 0, 1032, 1034, 3, 230, 115, 0, 1033, 1030, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1036, 1, 0, 0, 0, 1035, 995, 1, 0, 0, 0, 1035, 1019, 1, 0, 0, 0, 1036, 43, 1, 0, 0, 0, 1037, 1038, 5, 370, 0, 0, 1038, 1039, 3, 476, 238, 0, 1039, 45, 1, 0, 0, 0, 1040, 1041, 5, 368, 0, 0, 1041, 1042, 3, 476, 238, 0, 1042, 47, 1, 0, 0, 0, 1043, 1044, 5, 101, 0, 0, 1044, 1046, 3, 70, 35, 0, 1045, 1047, 3, 30, 15, 0, 1046, 1045, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1050, 3, 476, 238, 0, 1049, 1051, 3, 34, 17, 0, 1050, 1049, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 49, 1, 0, 0, 0, 1052, 1053, 5, 47, 0, 0, 1053, 1054, 5, 426, 0, 0, 1054, 51, 1, 0, 0, 0, 1055, 1057, 5, 351, 0, 0, 1056, 1058, 5, 329, 0, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1065, 3, 640, 320, 0, 1060, 1061, 5, 46, 0, 0, 1061, 1062, 5, 399, 0, 0, 1062, 1063, 3, 254, 127, 0, 1063, 1064, 5, 400, 0, 0, 1064, 1066, 1, 0, 0, 0, 1065, 1060, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1068, 1, 0, 0, 0, 1067, 1069, 5, 135, 0, 0, 1068, 1067, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 53, 1, 0, 0, 0, 1070, 1071, 5, 101, 0, 0, 1071, 1073, 5, 329, 0, 0, 1072, 1074, 3, 30, 15, 0, 1073, 1072, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1077, 3, 482, 241, 0, 1076, 1078, 5, 255, 0, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1080, 1, 0, 0, 0, 1079, 1081, 3, 14, 7, 0, 1080, 1079, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 55, 1, 0, 0, 0, 1082, 1083, 5, 160, 0, 0, 1083, 1084, 5, 426, 0, 0, 1084, 1085, 5, 301, 0, 0, 1085, 1086, 5, 426, 0, 0, 1086, 57, 1, 0, 0, 0, 1087, 1090, 3, 654, 327, 0, 1088, 1089, 5, 395, 0, 0, 1089, 1091, 3, 654, 327, 0, 1090, 1088, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1105, 1, 0, 0, 0, 1092, 1102, 3, 654, 327, 0, 1093, 1098, 5, 395, 0, 0, 1094, 1099, 5, 104, 0, 0, 1095, 1099, 5, 175, 0, 0, 1096, 1099, 5, 375, 0, 0, 1097, 1099, 3, 654, 327, 0, 1098, 1094, 1, 0, 0, 0, 1098, 1095, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1098, 1097, 1, 0, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 1093, 1, 0, 0, 0, 1101, 1104, 1, 0, 0, 0, 1102, 1100, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1106, 1, 0, 0, 0, 1104, 1102, 1, 0, 0, 0, 1105, 1092, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 59, 1, 0, 0, 0, 1107, 1109, 3, 58, 29, 0, 1108, 1110, 3, 642, 321, 0, 1109, 1108, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 61, 1, 0, 0, 0, 1111, 1113, 3, 480, 240, 0, 1112, 1114, 3, 642, 321, 0, 1113, 1112, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1116, 1, 0, 0, 0, 1115, 1117, 3, 264, 132, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 63, 1, 0, 0, 0, 1118, 1141, 7, 5, 0, 0, 1119, 1121, 3, 70, 35, 0, 1120, 1122, 5, 122, 0, 0, 1121, 1120, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 3, 476, 238, 0, 1124, 1142, 1, 0, 0, 0, 1125, 1127, 5, 69, 0, 0, 1126, 1128, 5, 122, 0, 0, 1127, 1126, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1142, 3, 476, 238, 0, 1130, 1132, 5, 141, 0, 0, 1131, 1133, 5, 122, 0, 0, 1132, 1131, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1142, 3, 572, 286, 0, 1135, 1138, 5, 138, 0, 0, 1136, 1138, 5, 122, 0, 0, 1137, 1135, 1, 0, 0, 0, 1137, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1142, 3, 62, 31, 0, 1140, 1142, 3, 62, 31, 0, 1141, 1119, 1, 0, 0, 0, 1141, 1125, 1, 0, 0, 0, 1141, 1130, 1, 0, 0, 0, 1141, 1137, 1, 0, 0, 0, 1141, 1140, 1, 0, 0, 0, 1142, 65, 1, 0, 0, 0, 1143, 1144, 5, 10, 0, 0, 1144, 1145, 5, 329, 0, 0, 1145, 1158, 3, 640, 320, 0, 1146, 1147, 5, 52, 0, 0, 1147, 1154, 5, 319, 0, 0, 1148, 1155, 5, 215, 0, 0, 1149, 1150, 5, 134, 0, 0, 1150, 1152, 5, 46, 0, 0, 1151, 1153, 3, 254, 127, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1155, 1, 0, 0, 0, 1154, 1148, 1, 0, 0, 0, 1154, 1149, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1159, 1, 0, 0, 0, 1156, 1157, 5, 33, 0, 0, 1157, 1159, 5, 204, 0, 0, 1158, 1146, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1159, 67, 1, 0, 0, 0, 1160, 1161, 7, 6, 0, 0, 1161, 69, 1, 0, 0, 0, 1162, 1163, 7, 7, 0, 0, 1163, 71, 1, 0, 0, 0, 1164, 1165, 5, 308, 0, 0, 1165, 1168, 7, 8, 0, 0, 1166, 1167, 5, 184, 0, 0, 1167, 1169, 3, 194, 97, 0, 1168, 1166, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1348, 1, 0, 0, 0, 1170, 1172, 5, 308, 0, 0, 1171, 1173, 5, 122, 0, 0, 1172, 1171, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1178, 5, 330, 0, 0, 1175, 1176, 3, 68, 34, 0, 1176, 1177, 3, 476, 238, 0, 1177, 1179, 1, 0, 0, 0, 1178, 1175, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1181, 1, 0, 0, 0, 1180, 1182, 3, 74, 37, 0, 1181, 1180, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1348, 1, 0, 0, 0, 1183, 1184, 5, 308, 0, 0, 1184, 1188, 5, 379, 0, 0, 1185, 1186, 3, 68, 34, 0, 1186, 1187, 3, 476, 238, 0, 1187, 1189, 1, 0, 0, 0, 1188, 1185, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1193, 1, 0, 0, 0, 1190, 1191, 5, 184, 0, 0, 1191, 1194, 3, 194, 97, 0, 1192, 1194, 3, 194, 97, 0, 1193, 1190, 1, 0, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1348, 1, 0, 0, 0, 1195, 1196, 5, 308, 0, 0, 1196, 1197, 5, 202, 0, 0, 1197, 1201, 5, 379, 0, 0, 1198, 1199, 3, 68, 34, 0, 1199, 1200, 3, 476, 238, 0, 1200, 1202, 1, 0, 0, 0, 1201, 1198, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1206, 1, 0, 0, 0, 1203, 1204, 5, 184, 0, 0, 1204, 1207, 3, 194, 97, 0, 1205, 1207, 3, 194, 97, 0, 1206, 1203, 1, 0, 0, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1348, 1, 0, 0, 0, 1208, 1210, 5, 308, 0, 0, 1209, 1211, 5, 315, 0, 0, 1210, 1209, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 5, 46, 0, 0, 1213, 1214, 3, 68, 34, 0, 1214, 1218, 3, 480, 240, 0, 1215, 1216, 3, 68, 34, 0, 1216, 1217, 3, 476, 238, 0, 1217, 1219, 1, 0, 0, 0, 1218, 1215, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1223, 1, 0, 0, 0, 1220, 1221, 5, 184, 0, 0, 1221, 1224, 3, 194, 97, 0, 1222, 1224, 3, 194, 97, 0, 1223, 1220, 1, 0, 0, 0, 1223, 1222, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1348, 1, 0, 0, 0, 1225, 1226, 5, 308, 0, 0, 1226, 1229, 5, 142, 0, 0, 1227, 1228, 5, 184, 0, 0, 1228, 1230, 3, 572, 286, 0, 1229, 1227, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1348, 1, 0, 0, 0, 1231, 1232, 5, 308, 0, 0, 1232, 1233, 5, 239, 0, 0, 1233, 1235, 3, 480, 240, 0, 1234, 1236, 3, 642, 321, 0, 1235, 1234, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1238, 1, 0, 0, 0, 1237, 1239, 3, 500, 250, 0, 1238, 1237, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1241, 1, 0, 0, 0, 1240, 1242, 3, 556, 278, 0, 1241, 1240, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1244, 1, 0, 0, 0, 1243, 1245, 3, 390, 195, 0, 1244, 1243, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1348, 1, 0, 0, 0, 1246, 1247, 5, 308, 0, 0, 1247, 1253, 5, 58, 0, 0, 1248, 1249, 3, 70, 35, 0, 1249, 1250, 3, 476, 238, 0, 1250, 1254, 1, 0, 0, 0, 1251, 1252, 5, 329, 0, 0, 1252, 1254, 3, 482, 241, 0, 1253, 1248, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1254, 1348, 1, 0, 0, 0, 1255, 1256, 5, 308, 0, 0, 1256, 1257, 5, 329, 0, 0, 1257, 1261, 5, 122, 0, 0, 1258, 1259, 3, 68, 34, 0, 1259, 1260, 3, 476, 238, 0, 1260, 1262, 1, 0, 0, 0, 1261, 1258, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1264, 5, 184, 0, 0, 1264, 1266, 3, 194, 97, 0, 1265, 1267, 3, 642, 321, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1348, 1, 0, 0, 0, 1268, 1269, 5, 308, 0, 0, 1269, 1270, 5, 332, 0, 0, 1270, 1274, 3, 482, 241, 0, 1271, 1272, 5, 399, 0, 0, 1272, 1273, 5, 426, 0, 0, 1273, 1275, 5, 400, 0, 0, 1274, 1271, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1348, 1, 0, 0, 0, 1276, 1277, 5, 308, 0, 0, 1277, 1289, 5, 191, 0, 0, 1278, 1279, 3, 70, 35, 0, 1279, 1281, 3, 476, 238, 0, 1280, 1282, 5, 122, 0, 0, 1281, 1280, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1290, 1, 0, 0, 0, 1283, 1285, 3, 60, 30, 0, 1284, 1283, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1288, 5, 122, 0, 0, 1287, 1286, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1290, 1, 0, 0, 0, 1289, 1278, 1, 0, 0, 0, 1289, 1284, 1, 0, 0, 0, 1290, 1348, 1, 0, 0, 0, 1291, 1292, 5, 308, 0, 0, 1292, 1319, 5, 50, 0, 0, 1293, 1294, 5, 51, 0, 0, 1294, 1295, 5, 405, 0, 0, 1295, 1320, 5, 431, 0, 0, 1296, 1297, 3, 70, 35, 0, 1297, 1298, 3, 476, 238, 0, 1298, 1303, 1, 0, 0, 0, 1299, 1301, 3, 60, 30, 0, 1300, 1299, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1303, 1, 0, 0, 0, 1302, 1296, 1, 0, 0, 0, 1302, 1300, 1, 0, 0, 0, 1303, 1305, 1, 0, 0, 0, 1304, 1306, 3, 410, 205, 0, 1305, 1304, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1309, 3, 412, 206, 0, 1308, 1307, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1311, 1, 0, 0, 0, 1310, 1312, 3, 414, 207, 0, 1311, 1310, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1314, 1, 0, 0, 0, 1313, 1315, 3, 556, 278, 0, 1314, 1313, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1317, 1, 0, 0, 0, 1316, 1318, 3, 390, 195, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1320, 1, 0, 0, 0, 1319, 1293, 1, 0, 0, 0, 1319, 1302, 1, 0, 0, 0, 1320, 1348, 1, 0, 0, 0, 1321, 1322, 5, 308, 0, 0, 1322, 1348, 5, 346, 0, 0, 1323, 1324, 5, 308, 0, 0, 1324, 1325, 5, 54, 0, 0, 1325, 1348, 5, 426, 0, 0, 1326, 1327, 5, 308, 0, 0, 1327, 1331, 5, 280, 0, 0, 1328, 1329, 5, 243, 0, 0, 1329, 1332, 3, 654, 327, 0, 1330, 1332, 5, 244, 0, 0, 1331, 1328, 1, 0, 0, 0, 1331, 1330, 1, 0, 0, 0, 1332, 1348, 1, 0, 0, 0, 1333, 1334, 5, 308, 0, 0, 1334, 1348, 5, 70, 0, 0, 1335, 1337, 5, 308, 0, 0, 1336, 1338, 5, 138, 0, 0, 1337, 1336, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1340, 7, 9, 0, 0, 1340, 1341, 5, 224, 0, 0, 1341, 1345, 3, 482, 241, 0, 1342, 1343, 3, 68, 34, 0, 1343, 1344, 3, 476, 238, 0, 1344, 1346, 1, 0, 0, 0, 1345, 1342, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1348, 1, 0, 0, 0, 1347, 1164, 1, 0, 0, 0, 1347, 1170, 1, 0, 0, 0, 1347, 1183, 1, 0, 0, 0, 1347, 1195, 1, 0, 0, 0, 1347, 1208, 1, 0, 0, 0, 1347, 1225, 1, 0, 0, 0, 1347, 1231, 1, 0, 0, 0, 1347, 1246, 1, 0, 0, 0, 1347, 1255, 1, 0, 0, 0, 1347, 1268, 1, 0, 0, 0, 1347, 1276, 1, 0, 0, 0, 1347, 1291, 1, 0, 0, 0, 1347, 1321, 1, 0, 0, 0, 1347, 1323, 1, 0, 0, 0, 1347, 1326, 1, 0, 0, 0, 1347, 1333, 1, 0, 0, 0, 1347, 1335, 1, 0, 0, 0, 1348, 73, 1, 0, 0, 0, 1349, 1350, 5, 384, 0, 0, 1350, 1351, 3, 654, 327, 0, 1351, 1352, 5, 405, 0, 0, 1352, 1353, 5, 426, 0, 0, 1353, 1358, 1, 0, 0, 0, 1354, 1355, 5, 184, 0, 0, 1355, 1358, 3, 194, 97, 0, 1356, 1358, 3, 194, 97, 0, 1357, 1349, 1, 0, 0, 0, 1357, 1354, 1, 0, 0, 0, 1357, 1356, 1, 0, 0, 0, 1358, 75, 1, 0, 0, 0, 1359, 1360, 5, 190, 0, 0, 1360, 1361, 5, 329, 0, 0, 1361, 1362, 3, 640, 320, 0, 1362, 1363, 3, 80, 40, 0, 1363, 77, 1, 0, 0, 0, 1364, 1365, 5, 190, 0, 0, 1365, 1366, 3, 70, 35, 0, 1366, 1367, 3, 476, 238, 0, 1367, 1368, 3, 80, 40, 0, 1368, 79, 1, 0, 0, 0, 1369, 1370, 7, 10, 0, 0, 1370, 81, 1, 0, 0, 0, 1371, 1372, 5, 361, 0, 0, 1372, 1373, 5, 329, 0, 0, 1373, 1374, 3, 640, 320, 0, 1374, 83, 1, 0, 0, 0, 1375, 1376, 5, 361, 0, 0, 1376, 1377, 3, 70, 35, 0, 1377, 1378, 3, 476, 238, 0, 1378, 85, 1, 0, 0, 0, 1379, 1380, 5, 58, 0, 0, 1380, 1381, 5, 287, 0, 0, 1381, 1382, 3, 654, 327, 0, 1382, 87, 1, 0, 0, 0, 1383, 1384, 5, 101, 0, 0, 1384, 1385, 5, 287, 0, 0, 1385, 1386, 3, 654, 327, 0, 1386, 89, 1, 0, 0, 0, 1387, 1388, 5, 143, 0, 0, 1388, 1390, 3, 118, 59, 0, 1389, 1391, 3, 112, 56, 0, 1390, 1389, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1392, 1, 0, 0, 0, 1392, 1393, 5, 341, 0, 0, 1393, 1395, 3, 124, 62, 0, 1394, 1396, 3, 130, 65, 0, 1395, 1394, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 91, 1, 0, 0, 0, 1397, 1399, 5, 283, 0, 0, 1398, 1400, 3, 132, 66, 0, 1399, 1398, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1403, 3, 118, 59, 0, 1402, 1404, 3, 112, 56, 0, 1403, 1402, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1406, 5, 139, 0, 0, 1406, 1407, 3, 124, 62, 0, 1407, 93, 1, 0, 0, 0, 1408, 1410, 5, 143, 0, 0, 1409, 1411, 5, 287, 0, 0, 1410, 1409, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1417, 3, 654, 327, 0, 1413, 1414, 5, 397, 0, 0, 1414, 1416, 3, 654, 327, 0, 1415, 1413, 1, 0, 0, 0, 1416, 1419, 1, 0, 0, 0, 1417, 1415, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1420, 1, 0, 0, 0, 1419, 1417, 1, 0, 0, 0, 1420, 1421, 5, 341, 0, 0, 1421, 1423, 3, 124, 62, 0, 1422, 1424, 3, 136, 68, 0, 1423, 1422, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 95, 1, 0, 0, 0, 1425, 1427, 5, 283, 0, 0, 1426, 1428, 3, 134, 67, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1430, 1, 0, 0, 0, 1429, 1431, 5, 287, 0, 0, 1430, 1429, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1437, 3, 654, 327, 0, 1433, 1434, 5, 397, 0, 0, 1434, 1436, 3, 654, 327, 0, 1435, 1433, 1, 0, 0, 0, 1436, 1439, 1, 0, 0, 0, 1437, 1435, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1440, 1, 0, 0, 0, 1439, 1437, 1, 0, 0, 0, 1440, 1441, 5, 139, 0, 0, 1441, 1442, 3, 124, 62, 0, 1442, 97, 1, 0, 0, 0, 1443, 1444, 5, 308, 0, 0, 1444, 1445, 5, 287, 0, 0, 1445, 1446, 5, 143, 0, 0, 1446, 1447, 3, 126, 63, 0, 1447, 99, 1, 0, 0, 0, 1448, 1449, 5, 308, 0, 0, 1449, 1450, 5, 288, 0, 0, 1450, 101, 1, 0, 0, 0, 1451, 1452, 5, 308, 0, 0, 1452, 1453, 5, 62, 0, 0, 1453, 1454, 5, 288, 0, 0, 1454, 103, 1, 0, 0, 0, 1455, 1456, 5, 304, 0, 0, 1456, 1460, 5, 287, 0, 0, 1457, 1461, 5, 7, 0, 0, 1458, 1461, 5, 213, 0, 0, 1459, 1461, 3, 654, 327, 0, 1460, 1457, 1, 0, 0, 0, 1460, 1458, 1, 0, 0, 0, 1460, 1459, 1, 0, 0, 0, 1461, 105, 1, 0, 0, 0, 1462, 1463, 5, 308, 0, 0, 1463, 1465, 5, 143, 0, 0, 1464, 1466, 3, 126, 63, 0, 1465, 1464, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1469, 1, 0, 0, 0, 1467, 1468, 5, 224, 0, 0, 1468, 1470, 3, 110, 55, 0, 1469, 1467, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 107, 1, 0, 0, 0, 1471, 1472, 5, 308, 0, 0, 1472, 1473, 5, 252, 0, 0, 1473, 1474, 3, 654, 327, 0, 1474, 109, 1, 0, 0, 0, 1475, 1478, 5, 7, 0, 0, 1476, 1478, 3, 116, 58, 0, 1477, 1475, 1, 0, 0, 0, 1477, 1476, 1, 0, 0, 0, 1478, 111, 1, 0, 0, 0, 1479, 1480, 5, 224, 0, 0, 1480, 1481, 3, 114, 57, 0, 1481, 113, 1, 0, 0, 0, 1482, 1483, 3, 70, 35, 0, 1483, 1484, 3, 476, 238, 0, 1484, 1494, 1, 0, 0, 0, 1485, 1487, 5, 329, 0, 0, 1486, 1485, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1494, 3, 640, 320, 0, 1489, 1490, 5, 366, 0, 0, 1490, 1494, 5, 426, 0, 0, 1491, 1492, 5, 303, 0, 0, 1492, 1494, 3, 654, 327, 0, 1493, 1482, 1, 0, 0, 0, 1493, 1486, 1, 0, 0, 0, 1493, 1489, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1494, 115, 1, 0, 0, 0, 1495, 1496, 3, 70, 35, 0, 1496, 1497, 3, 476, 238, 0, 1497, 1516, 1, 0, 0, 0, 1498, 1500, 5, 329, 0, 0, 1499, 1498, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1506, 3, 482, 241, 0, 1502, 1503, 5, 399, 0, 0, 1503, 1504, 3, 254, 127, 0, 1504, 1505, 5, 400, 0, 0, 1505, 1507, 1, 0, 0, 0, 1506, 1502, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1509, 1, 0, 0, 0, 1508, 1510, 3, 642, 321, 0, 1509, 1508, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1516, 1, 0, 0, 0, 1511, 1512, 5, 366, 0, 0, 1512, 1516, 5, 426, 0, 0, 1513, 1514, 5, 303, 0, 0, 1514, 1516, 3, 654, 327, 0, 1515, 1495, 1, 0, 0, 0, 1515, 1499, 1, 0, 0, 0, 1515, 1511, 1, 0, 0, 0, 1515, 1513, 1, 0, 0, 0, 1516, 117, 1, 0, 0, 0, 1517, 1522, 3, 120, 60, 0, 1518, 1519, 5, 397, 0, 0, 1519, 1521, 3, 120, 60, 0, 1520, 1518, 1, 0, 0, 0, 1521, 1524, 1, 0, 0, 0, 1522, 1520, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 119, 1, 0, 0, 0, 1524, 1522, 1, 0, 0, 0, 1525, 1530, 3, 122, 61, 0, 1526, 1527, 5, 399, 0, 0, 1527, 1528, 3, 254, 127, 0, 1528, 1529, 5, 400, 0, 0, 1529, 1531, 1, 0, 0, 0, 1530, 1526, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 121, 1, 0, 0, 0, 1532, 1533, 7, 11, 0, 0, 1533, 123, 1, 0, 0, 0, 1534, 1539, 3, 126, 63, 0, 1535, 1536, 5, 397, 0, 0, 1536, 1538, 3, 126, 63, 0, 1537, 1535, 1, 0, 0, 0, 1538, 1541, 1, 0, 0, 0, 1539, 1537, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 125, 1, 0, 0, 0, 1541, 1539, 1, 0, 0, 0, 1542, 1543, 5, 369, 0, 0, 1543, 1549, 3, 658, 329, 0, 1544, 1545, 5, 144, 0, 0, 1545, 1549, 3, 658, 329, 0, 1546, 1547, 5, 287, 0, 0, 1547, 1549, 3, 654, 327, 0, 1548, 1542, 1, 0, 0, 0, 1548, 1544, 1, 0, 0, 0, 1548, 1546, 1, 0, 0, 0, 1549, 127, 1, 0, 0, 0, 1550, 1551, 5, 369, 0, 0, 1551, 1556, 3, 658, 329, 0, 1552, 1553, 5, 287, 0, 0, 1553, 1556, 3, 654, 327, 0, 1554, 1556, 3, 654, 327, 0, 1555, 1550, 1, 0, 0, 0, 1555, 1552, 1, 0, 0, 0, 1555, 1554, 1, 0, 0, 0, 1556, 129, 1, 0, 0, 0, 1557, 1558, 5, 387, 0, 0, 1558, 1559, 5, 143, 0, 0, 1559, 1560, 5, 227, 0, 0, 1560, 131, 1, 0, 0, 0, 1561, 1562, 5, 143, 0, 0, 1562, 1563, 5, 227, 0, 0, 1563, 1564, 5, 134, 0, 0, 1564, 133, 1, 0, 0, 0, 1565, 1566, 5, 5, 0, 0, 1566, 1567, 5, 227, 0, 0, 1567, 1568, 5, 134, 0, 0, 1568, 135, 1, 0, 0, 0, 1569, 1570, 5, 387, 0, 0, 1570, 1571, 5, 5, 0, 0, 1571, 1572, 5, 227, 0, 0, 1572, 137, 1, 0, 0, 0, 1573, 1575, 5, 212, 0, 0, 1574, 1576, 5, 276, 0, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 5, 329, 0, 0, 1578, 1584, 3, 482, 241, 0, 1579, 1580, 7, 12, 0, 0, 1580, 1582, 5, 239, 0, 0, 1581, 1583, 3, 646, 323, 0, 1582, 1581, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1585, 1, 0, 0, 0, 1584, 1579, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 139, 1, 0, 0, 0, 1586, 1591, 3, 142, 71, 0, 1587, 1588, 5, 397, 0, 0, 1588, 1590, 3, 142, 71, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1593, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 141, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1595, 3, 144, 72, 0, 1595, 1596, 5, 426, 0, 0, 1596, 143, 1, 0, 0, 0, 1597, 1598, 7, 13, 0, 0, 1598, 145, 1, 0, 0, 0, 1599, 1601, 5, 58, 0, 0, 1600, 1602, 5, 333, 0, 0, 1601, 1600, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1604, 5, 141, 0, 0, 1604, 1605, 3, 570, 285, 0, 1605, 1606, 5, 17, 0, 0, 1606, 1609, 5, 426, 0, 0, 1607, 1608, 5, 370, 0, 0, 1608, 1610, 3, 140, 70, 0, 1609, 1607, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 147, 1, 0, 0, 0, 1611, 1613, 5, 101, 0, 0, 1612, 1614, 5, 333, 0, 0, 1613, 1612, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1617, 5, 141, 0, 0, 1616, 1618, 3, 30, 15, 0, 1617, 1616, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 3, 572, 286, 0, 1620, 149, 1, 0, 0, 0, 1621, 1622, 5, 271, 0, 0, 1622, 1623, 7, 14, 0, 0, 1623, 151, 1, 0, 0, 0, 1624, 1625, 5, 58, 0, 0, 1625, 1626, 5, 333, 0, 0, 1626, 1627, 5, 194, 0, 0, 1627, 1628, 5, 432, 0, 0, 1628, 1630, 5, 399, 0, 0, 1629, 1631, 3, 248, 124, 0, 1630, 1629, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1633, 5, 400, 0, 0, 1633, 1634, 3, 596, 298, 0, 1634, 153, 1, 0, 0, 0, 1635, 1636, 5, 101, 0, 0, 1636, 1637, 5, 333, 0, 0, 1637, 1639, 5, 194, 0, 0, 1638, 1640, 3, 30, 15, 0, 1639, 1638, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 5, 432, 0, 0, 1642, 155, 1, 0, 0, 0, 1643, 1644, 5, 58, 0, 0, 1644, 1645, 5, 155, 0, 0, 1645, 1646, 3, 654, 327, 0, 1646, 1647, 5, 224, 0, 0, 1647, 1648, 5, 329, 0, 0, 1648, 1649, 3, 482, 241, 0, 1649, 1650, 3, 268, 134, 0, 1650, 1651, 5, 17, 0, 0, 1651, 1655, 5, 426, 0, 0, 1652, 1653, 5, 387, 0, 0, 1653, 1654, 5, 84, 0, 0, 1654, 1656, 5, 265, 0, 0, 1655, 1652, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1659, 1, 0, 0, 0, 1657, 1658, 5, 150, 0, 0, 1658, 1660, 3, 226, 113, 0, 1659, 1657, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1664, 1, 0, 0, 0, 1661, 1662, 5, 154, 0, 0, 1662, 1663, 5, 329, 0, 0, 1663, 1665, 3, 482, 241, 0, 1664, 1661, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1669, 1, 0, 0, 0, 1666, 1667, 5, 238, 0, 0, 1667, 1668, 5, 32, 0, 0, 1668, 1670, 3, 268, 134, 0, 1669, 1666, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1675, 1, 0, 0, 0, 1671, 1673, 3, 222, 111, 0, 1672, 1671, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1676, 3, 246, 123, 0, 1675, 1672, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1678, 1, 0, 0, 0, 1677, 1679, 3, 428, 214, 0, 1678, 1677, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1681, 1, 0, 0, 0, 1680, 1682, 3, 224, 112, 0, 1681, 1680, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 1684, 1, 0, 0, 0, 1683, 1685, 3, 196, 98, 0, 1684, 1683, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 157, 1, 0, 0, 0, 1686, 1687, 5, 101, 0, 0, 1687, 1689, 5, 155, 0, 0, 1688, 1690, 3, 30, 15, 0, 1689, 1688, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1692, 3, 654, 327, 0, 1692, 1693, 5, 224, 0, 0, 1693, 1694, 3, 482, 241, 0, 1694, 159, 1, 0, 0, 0, 1695, 1698, 5, 58, 0, 0, 1696, 1697, 5, 228, 0, 0, 1697, 1699, 5, 278, 0, 0, 1698, 1696, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1702, 5, 378, 0, 0, 1701, 1703, 3, 32, 16, 0, 1702, 1701, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1709, 3, 488, 244, 0, 1705, 1706, 5, 399, 0, 0, 1706, 1707, 3, 308, 154, 0, 1707, 1708, 5, 400, 0, 0, 1708, 1710, 1, 0, 0, 0, 1709, 1705, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1713, 3, 196, 98, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1715, 1, 0, 0, 0, 1714, 1716, 3, 162, 81, 0, 1715, 1714, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1718, 1, 0, 0, 0, 1717, 1719, 3, 224, 112, 0, 1718, 1717, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1721, 5, 17, 0, 0, 1721, 1722, 3, 384, 192, 0, 1722, 161, 1, 0, 0, 0, 1723, 1724, 5, 238, 0, 0, 1724, 1730, 5, 224, 0, 0, 1725, 1726, 5, 399, 0, 0, 1726, 1731, 3, 254, 127, 0, 1727, 1728, 5, 316, 0, 0, 1728, 1729, 5, 399, 0, 0, 1729, 1731, 3, 204, 102, 0, 1730, 1725, 1, 0, 0, 0, 1730, 1727, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1733, 5, 400, 0, 0, 1733, 163, 1, 0, 0, 0, 1734, 1737, 3, 166, 83, 0, 1735, 1737, 3, 168, 84, 0, 1736, 1734, 1, 0, 0, 0, 1736, 1735, 1, 0, 0, 0, 1737, 165, 1, 0, 0, 0, 1738, 1739, 5, 42, 0, 0, 1739, 1740, 5, 224, 0, 0, 1740, 1741, 5, 399, 0, 0, 1741, 1742, 3, 254, 127, 0, 1742, 1743, 5, 400, 0, 0, 1743, 167, 1, 0, 0, 0, 1744, 1745, 3, 170, 85, 0, 1745, 1746, 3, 172, 86, 0, 1746, 169, 1, 0, 0, 0, 1747, 1748, 5, 98, 0, 0, 1748, 1749, 5, 224, 0, 0, 1749, 1750, 5, 399, 0, 0, 1750, 1751, 3, 254, 127, 0, 1751, 1752, 5, 400, 0, 0, 1752, 171, 1, 0, 0, 0, 1753, 1754, 5, 315, 0, 0, 1754, 1755, 5, 224, 0, 0, 1755, 1756, 5, 399, 0, 0, 1756, 1757, 3, 254, 127, 0, 1757, 1758, 5, 400, 0, 0, 1758, 173, 1, 0, 0, 0, 1759, 1760, 5, 101, 0, 0, 1760, 1762, 5, 378, 0, 0, 1761, 1763, 3, 30, 15, 0, 1762, 1761, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 3, 486, 243, 0, 1765, 175, 1, 0, 0, 0, 1766, 1767, 5, 58, 0, 0, 1767, 1768, 5, 202, 0, 0, 1768, 1770, 5, 378, 0, 0, 1769, 1771, 3, 32, 16, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1774, 3, 488, 244, 0, 1773, 1775, 3, 38, 19, 0, 1774, 1773, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1777, 1, 0, 0, 0, 1776, 1778, 3, 196, 98, 0, 1777, 1776, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1780, 1, 0, 0, 0, 1779, 1781, 3, 162, 81, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1783, 1, 0, 0, 0, 1782, 1784, 3, 164, 82, 0, 1783, 1782, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1786, 1, 0, 0, 0, 1785, 1787, 3, 222, 111, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 1, 0, 0, 0, 1788, 1790, 3, 246, 123, 0, 1789, 1788, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1792, 1, 0, 0, 0, 1791, 1793, 3, 428, 214, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1795, 1, 0, 0, 0, 1794, 1796, 3, 224, 112, 0, 1795, 1794, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 5, 17, 0, 0, 1798, 1799, 3, 384, 192, 0, 1799, 177, 1, 0, 0, 0, 1800, 1801, 5, 101, 0, 0, 1801, 1802, 5, 202, 0, 0, 1802, 1804, 5, 378, 0, 0, 1803, 1805, 3, 30, 15, 0, 1804, 1803, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 3, 486, 243, 0, 1807, 179, 1, 0, 0, 0, 1808, 1809, 5, 58, 0, 0, 1809, 1810, 5, 293, 0, 0, 1810, 1811, 5, 258, 0, 0, 1811, 1812, 3, 654, 327, 0, 1812, 1814, 3, 188, 94, 0, 1813, 1815, 3, 190, 95, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1817, 1, 0, 0, 0, 1816, 1818, 3, 272, 136, 0, 1817, 1816, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1820, 3, 192, 96, 0, 1820, 181, 1, 0, 0, 0, 1821, 1822, 5, 101, 0, 0, 1822, 1823, 5, 293, 0, 0, 1823, 1824, 5, 258, 0, 0, 1824, 1825, 3, 654, 327, 0, 1825, 183, 1, 0, 0, 0, 1826, 1827, 5, 9, 0, 0, 1827, 1828, 5, 293, 0, 0, 1828, 1829, 5, 258, 0, 0, 1829, 1830, 3, 654, 327, 0, 1830, 1831, 3, 186, 93, 0, 1831, 185, 1, 0, 0, 0, 1832, 1838, 3, 188, 94, 0, 1833, 1838, 3, 190, 95, 0, 1834, 1838, 3, 272, 136, 0, 1835, 1838, 3, 192, 96, 0, 1836, 1838, 5, 115, 0, 0, 1837, 1832, 1, 0, 0, 0, 1837, 1833, 1, 0, 0, 0, 1837, 1834, 1, 0, 0, 0, 1837, 1835, 1, 0, 0, 0, 1837, 1836, 1, 0, 0, 0, 1838, 187, 1, 0, 0, 0, 1839, 1840, 5, 59, 0, 0, 1840, 1855, 5, 426, 0, 0, 1841, 1843, 5, 111, 0, 0, 1842, 1844, 5, 431, 0, 0, 1843, 1842, 1, 0, 0, 0, 1843, 1844, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1852, 3, 594, 297, 0, 1846, 1850, 5, 20, 0, 0, 1847, 1848, 5, 223, 0, 0, 1848, 1850, 5, 32, 0, 0, 1849, 1846, 1, 0, 0, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1853, 5, 426, 0, 0, 1852, 1849, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1855, 1, 0, 0, 0, 1854, 1839, 1, 0, 0, 0, 1854, 1841, 1, 0, 0, 0, 1855, 189, 1, 0, 0, 0, 1856, 1857, 5, 116, 0, 0, 1857, 1858, 5, 17, 0, 0, 1858, 1859, 5, 426, 0, 0, 1859, 191, 1, 0, 0, 0, 1860, 1862, 5, 85, 0, 0, 1861, 1860, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1864, 5, 17, 0, 0, 1864, 1865, 3, 2, 1, 0, 1865, 193, 1, 0, 0, 0, 1866, 1869, 3, 654, 327, 0, 1867, 1869, 5, 426, 0, 0, 1868, 1866, 1, 0, 0, 0, 1868, 1867, 1, 0, 0, 0, 1869, 195, 1, 0, 0, 0, 1870, 1871, 5, 47, 0, 0, 1871, 1872, 5, 426, 0, 0, 1872, 197, 1, 0, 0, 0, 1873, 1874, 5, 183, 0, 0, 1874, 1875, 5, 431, 0, 0, 1875, 199, 1, 0, 0, 0, 1876, 1877, 5, 238, 0, 0, 1877, 1886, 5, 32, 0, 0, 1878, 1881, 5, 399, 0, 0, 1879, 1882, 3, 202, 101, 0, 1880, 1882, 3, 254, 127, 0, 1881, 1879, 1, 0, 0, 0, 1881, 1880, 1, 0, 0, 0, 1882, 1887, 1, 0, 0, 0, 1883, 1884, 5, 316, 0, 0, 1884, 1885, 5, 399, 0, 0, 1885, 1887, 3, 204, 102, 0, 1886, 1878, 1, 0, 0, 0, 1886, 1883, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1889, 5, 400, 0, 0, 1889, 201, 1, 0, 0, 0, 1890, 1895, 3, 320, 160, 0, 1891, 1892, 5, 397, 0, 0, 1892, 1894, 3, 320, 160, 0, 1893, 1891, 1, 0, 0, 0, 1894, 1897, 1, 0, 0, 0, 1895, 1893, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 203, 1, 0, 0, 0, 1897, 1895, 1, 0, 0, 0, 1898, 1903, 3, 206, 103, 0, 1899, 1900, 5, 397, 0, 0, 1900, 1902, 3, 206, 103, 0, 1901, 1899, 1, 0, 0, 0, 1902, 1905, 1, 0, 0, 0, 1903, 1901, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 205, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1906, 1925, 3, 256, 128, 0, 1907, 1912, 3, 682, 341, 0, 1908, 1912, 3, 684, 342, 0, 1909, 1912, 3, 688, 344, 0, 1910, 1912, 3, 690, 345, 0, 1911, 1907, 1, 0, 0, 0, 1911, 1908, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1911, 1910, 1, 0, 0, 0, 1912, 1913, 1, 0, 0, 0, 1913, 1914, 5, 399, 0, 0, 1914, 1915, 3, 256, 128, 0, 1915, 1916, 5, 400, 0, 0, 1916, 1925, 1, 0, 0, 0, 1917, 1918, 7, 15, 0, 0, 1918, 1919, 5, 399, 0, 0, 1919, 1920, 5, 431, 0, 0, 1920, 1921, 5, 397, 0, 0, 1921, 1922, 3, 256, 128, 0, 1922, 1923, 5, 400, 0, 0, 1923, 1925, 1, 0, 0, 0, 1924, 1906, 1, 0, 0, 0, 1924, 1911, 1, 0, 0, 0, 1924, 1917, 1, 0, 0, 0, 1925, 207, 1, 0, 0, 0, 1926, 1927, 5, 42, 0, 0, 1927, 1928, 5, 32, 0, 0, 1928, 1929, 5, 399, 0, 0, 1929, 1930, 3, 254, 127, 0, 1930, 1937, 5, 400, 0, 0, 1931, 1932, 5, 315, 0, 0, 1932, 1933, 5, 32, 0, 0, 1933, 1934, 5, 399, 0, 0, 1934, 1935, 3, 266, 133, 0, 1935, 1936, 5, 400, 0, 0, 1936, 1938, 1, 0, 0, 0, 1937, 1931, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1940, 5, 166, 0, 0, 1940, 1941, 5, 431, 0, 0, 1941, 1942, 5, 31, 0, 0, 1942, 209, 1, 0, 0, 0, 1943, 1944, 5, 310, 0, 0, 1944, 1945, 5, 32, 0, 0, 1945, 1946, 5, 399, 0, 0, 1946, 1947, 3, 254, 127, 0, 1947, 1948, 5, 400, 0, 0, 1948, 1949, 5, 224, 0, 0, 1949, 1950, 5, 399, 0, 0, 1950, 1951, 3, 294, 147, 0, 1951, 1953, 5, 400, 0, 0, 1952, 1954, 3, 40, 20, 0, 1953, 1952, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 211, 1, 0, 0, 0, 1955, 1958, 3, 218, 109, 0, 1956, 1958, 3, 220, 110, 0, 1957, 1955, 1, 0, 0, 0, 1957, 1956, 1, 0, 0, 0, 1958, 213, 1, 0, 0, 0, 1959, 1960, 5, 266, 0, 0, 1960, 1961, 5, 426, 0, 0, 1961, 215, 1, 0, 0, 0, 1962, 1963, 5, 267, 0, 0, 1963, 1964, 5, 426, 0, 0, 1964, 217, 1, 0, 0, 0, 1965, 1966, 5, 291, 0, 0, 1966, 1967, 5, 137, 0, 0, 1967, 1968, 5, 301, 0, 0, 1968, 1972, 5, 426, 0, 0, 1969, 1970, 5, 387, 0, 0, 1970, 1971, 5, 302, 0, 0, 1971, 1973, 3, 226, 113, 0, 1972, 1969, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 219, 1, 0, 0, 0, 1974, 1975, 5, 291, 0, 0, 1975, 1976, 5, 137, 0, 0, 1976, 1978, 5, 87, 0, 0, 1977, 1979, 3, 236, 118, 0, 1978, 1977, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1981, 1, 0, 0, 0, 1980, 1982, 3, 238, 119, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1984, 1, 0, 0, 0, 1983, 1985, 3, 240, 120, 0, 1984, 1983, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1987, 1, 0, 0, 0, 1986, 1988, 3, 242, 121, 0, 1987, 1986, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1990, 1, 0, 0, 0, 1989, 1991, 3, 244, 122, 0, 1990, 1989, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 221, 1, 0, 0, 0, 1992, 1995, 3, 220, 110, 0, 1993, 1995, 3, 218, 109, 0, 1994, 1992, 1, 0, 0, 0, 1994, 1993, 1, 0, 0, 0, 1995, 223, 1, 0, 0, 0, 1996, 1997, 5, 332, 0, 0, 1997, 1998, 3, 226, 113, 0, 1998, 225, 1, 0, 0, 0, 1999, 2000, 5, 399, 0, 0, 2000, 2001, 3, 228, 114, 0, 2001, 2002, 5, 400, 0, 0, 2002, 227, 1, 0, 0, 0, 2003, 2013, 3, 232, 116, 0, 2004, 2009, 5, 426, 0, 0, 2005, 2006, 5, 397, 0, 0, 2006, 2008, 5, 426, 0, 0, 2007, 2005, 1, 0, 0, 0, 2008, 2011, 1, 0, 0, 0, 2009, 2007, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2013, 1, 0, 0, 0, 2011, 2009, 1, 0, 0, 0, 2012, 2003, 1, 0, 0, 0, 2012, 2004, 1, 0, 0, 0, 2013, 229, 1, 0, 0, 0, 2014, 2015, 5, 399, 0, 0, 2015, 2016, 3, 232, 116, 0, 2016, 2017, 5, 400, 0, 0, 2017, 231, 1, 0, 0, 0, 2018, 2023, 3, 234, 117, 0, 2019, 2020, 5, 397, 0, 0, 2020, 2022, 3, 234, 117, 0, 2021, 2019, 1, 0, 0, 0, 2022, 2025, 1, 0, 0, 0, 2023, 2021, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 233, 1, 0, 0, 0, 2025, 2023, 1, 0, 0, 0, 2026, 2027, 5, 426, 0, 0, 2027, 2028, 5, 405, 0, 0, 2028, 2029, 5, 426, 0, 0, 2029, 235, 1, 0, 0, 0, 2030, 2031, 5, 127, 0, 0, 2031, 2032, 5, 334, 0, 0, 2032, 2033, 5, 32, 0, 0, 2033, 2037, 5, 426, 0, 0, 2034, 2035, 5, 110, 0, 0, 2035, 2036, 5, 32, 0, 0, 2036, 2038, 5, 426, 0, 0, 2037, 2034, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 237, 1, 0, 0, 0, 2039, 2040, 5, 44, 0, 0, 2040, 2041, 5, 169, 0, 0, 2041, 2042, 5, 334, 0, 0, 2042, 2043, 5, 32, 0, 0, 2043, 2044, 5, 426, 0, 0, 2044, 239, 1, 0, 0, 0, 2045, 2046, 5, 198, 0, 0, 2046, 2047, 5, 174, 0, 0, 2047, 2048, 5, 334, 0, 0, 2048, 2049, 5, 32, 0, 0, 2049, 2050, 5, 426, 0, 0, 2050, 241, 1, 0, 0, 0, 2051, 2052, 5, 186, 0, 0, 2052, 2053, 5, 334, 0, 0, 2053, 2054, 5, 32, 0, 0, 2054, 2055, 5, 426, 0, 0, 2055, 243, 1, 0, 0, 0, 2056, 2057, 5, 219, 0, 0, 2057, 2058, 5, 85, 0, 0, 2058, 2059, 5, 17, 0, 0, 2059, 2060, 5, 426, 0, 0, 2060, 245, 1, 0, 0, 0, 2061, 2062, 5, 321, 0, 0, 2062, 2063, 5, 17, 0, 0, 2063, 2064, 5, 160, 0, 0, 2064, 2065, 5, 426, 0, 0, 2065, 2066, 5, 233, 0, 0, 2066, 2071, 5, 426, 0, 0, 2067, 2068, 5, 159, 0, 0, 2068, 2069, 5, 426, 0, 0, 2069, 2070, 5, 232, 0, 0, 2070, 2072, 5, 426, 0, 0, 2071, 2067, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2103, 1, 0, 0, 0, 2073, 2074, 5, 321, 0, 0, 2074, 2075, 5, 32, 0, 0, 2075, 2079, 5, 426, 0, 0, 2076, 2077, 5, 387, 0, 0, 2077, 2078, 5, 302, 0, 0, 2078, 2080, 3, 226, 113, 0, 2079, 2076, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2084, 1, 0, 0, 0, 2081, 2082, 5, 321, 0, 0, 2082, 2083, 5, 17, 0, 0, 2083, 2085, 3, 654, 327, 0, 2084, 2081, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 2103, 1, 0, 0, 0, 2086, 2087, 5, 321, 0, 0, 2087, 2088, 5, 32, 0, 0, 2088, 2092, 3, 654, 327, 0, 2089, 2090, 5, 387, 0, 0, 2090, 2091, 5, 302, 0, 0, 2091, 2093, 3, 226, 113, 0, 2092, 2089, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2097, 1, 0, 0, 0, 2094, 2095, 5, 321, 0, 0, 2095, 2096, 5, 17, 0, 0, 2096, 2098, 3, 654, 327, 0, 2097, 2094, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2103, 1, 0, 0, 0, 2099, 2100, 5, 321, 0, 0, 2100, 2101, 5, 17, 0, 0, 2101, 2103, 3, 654, 327, 0, 2102, 2061, 1, 0, 0, 0, 2102, 2073, 1, 0, 0, 0, 2102, 2086, 1, 0, 0, 0, 2102, 2099, 1, 0, 0, 0, 2103, 247, 1, 0, 0, 0, 2104, 2109, 3, 314, 157, 0, 2105, 2106, 5, 397, 0, 0, 2106, 2108, 3, 314, 157, 0, 2107, 2105, 1, 0, 0, 0, 2108, 2111, 1, 0, 0, 0, 2109, 2107, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 249, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2112, 2117, 3, 316, 158, 0, 2113, 2114, 5, 397, 0, 0, 2114, 2116, 3, 316, 158, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2119, 1, 0, 0, 0, 2117, 2115, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 251, 1, 0, 0, 0, 2119, 2117, 1, 0, 0, 0, 2120, 2125, 3, 344, 172, 0, 2121, 2122, 5, 397, 0, 0, 2122, 2124, 3, 344, 172, 0, 2123, 2121, 1, 0, 0, 0, 2124, 2127, 1, 0, 0, 0, 2125, 2123, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 253, 1, 0, 0, 0, 2127, 2125, 1, 0, 0, 0, 2128, 2133, 3, 256, 128, 0, 2129, 2130, 5, 397, 0, 0, 2130, 2132, 3, 256, 128, 0, 2131, 2129, 1, 0, 0, 0, 2132, 2135, 1, 0, 0, 0, 2133, 2131, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 255, 1, 0, 0, 0, 2135, 2133, 1, 0, 0, 0, 2136, 2140, 3, 702, 351, 0, 2137, 2138, 4, 128, 0, 0, 2138, 2140, 3, 698, 349, 0, 2139, 2136, 1, 0, 0, 0, 2139, 2137, 1, 0, 0, 0, 2140, 257, 1, 0, 0, 0, 2141, 2142, 3, 700, 350, 0, 2142, 259, 1, 0, 0, 0, 2143, 2147, 3, 702, 351, 0, 2144, 2145, 4, 130, 1, 0, 2145, 2147, 3, 698, 349, 0, 2146, 2143, 1, 0, 0, 0, 2146, 2144, 1, 0, 0, 0, 2147, 261, 1, 0, 0, 0, 2148, 2149, 3, 654, 327, 0, 2149, 263, 1, 0, 0, 0, 2150, 2160, 3, 256, 128, 0, 2151, 2156, 5, 395, 0, 0, 2152, 2157, 5, 104, 0, 0, 2153, 2157, 5, 175, 0, 0, 2154, 2157, 5, 375, 0, 0, 2155, 2157, 3, 654, 327, 0, 2156, 2152, 1, 0, 0, 0, 2156, 2153, 1, 0, 0, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2155, 1, 0, 0, 0, 2157, 2159, 1, 0, 0, 0, 2158, 2151, 1, 0, 0, 0, 2159, 2162, 1, 0, 0, 0, 2160, 2158, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 265, 1, 0, 0, 0, 2162, 2160, 1, 0, 0, 0, 2163, 2168, 3, 306, 153, 0, 2164, 2165, 5, 397, 0, 0, 2165, 2167, 3, 306, 153, 0, 2166, 2164, 1, 0, 0, 0, 2167, 2170, 1, 0, 0, 0, 2168, 2166, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 267, 1, 0, 0, 0, 2170, 2168, 1, 0, 0, 0, 2171, 2172, 5, 399, 0, 0, 2172, 2173, 3, 254, 127, 0, 2173, 2174, 5, 400, 0, 0, 2174, 269, 1, 0, 0, 0, 2175, 2177, 3, 272, 136, 0, 2176, 2178, 3, 274, 137, 0, 2177, 2176, 1, 0, 0, 0, 2177, 2178, 1, 0, 0, 0, 2178, 2181, 1, 0, 0, 0, 2179, 2181, 3, 276, 138, 0, 2180, 2175, 1, 0, 0, 0, 2180, 2179, 1, 0, 0, 0, 2181, 271, 1, 0, 0, 0, 2182, 2185, 3, 678, 339, 0, 2183, 2185, 3, 680, 340, 0, 2184, 2182, 1, 0, 0, 0, 2184, 2183, 1, 0, 0, 0, 2185, 273, 1, 0, 0, 0, 2186, 2187, 7, 16, 0, 0, 2187, 275, 1, 0, 0, 0, 2188, 2192, 5, 109, 0, 0, 2189, 2190, 5, 216, 0, 0, 2190, 2192, 5, 109, 0, 0, 2191, 2188, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2192, 277, 1, 0, 0, 0, 2193, 2194, 7, 17, 0, 0, 2194, 279, 1, 0, 0, 0, 2195, 2196, 5, 55, 0, 0, 2196, 2198, 3, 654, 327, 0, 2197, 2195, 1, 0, 0, 0, 2197, 2198, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 2201, 3, 284, 142, 0, 2200, 2202, 3, 340, 170, 0, 2201, 2200, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 281, 1, 0, 0, 0, 2203, 2204, 5, 55, 0, 0, 2204, 2205, 3, 654, 327, 0, 2205, 2207, 3, 284, 142, 0, 2206, 2208, 3, 342, 171, 0, 2207, 2206, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 283, 1, 0, 0, 0, 2209, 2212, 3, 286, 143, 0, 2210, 2212, 3, 288, 144, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2210, 1, 0, 0, 0, 2212, 285, 1, 0, 0, 0, 2213, 2214, 3, 338, 169, 0, 2214, 2215, 3, 268, 134, 0, 2215, 287, 1, 0, 0, 0, 2216, 2217, 5, 40, 0, 0, 2217, 2218, 5, 399, 0, 0, 2218, 2219, 3, 596, 298, 0, 2219, 2220, 5, 400, 0, 0, 2220, 289, 1, 0, 0, 0, 2221, 2222, 5, 55, 0, 0, 2222, 2224, 3, 654, 327, 0, 2223, 2221, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2226, 5, 136, 0, 0, 2226, 2227, 5, 173, 0, 0, 2227, 2228, 3, 268, 134, 0, 2228, 2229, 5, 269, 0, 0, 2229, 2230, 3, 482, 241, 0, 2230, 2232, 3, 268, 134, 0, 2231, 2233, 3, 340, 170, 0, 2232, 2231, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 291, 1, 0, 0, 0, 2234, 2235, 5, 55, 0, 0, 2235, 2236, 3, 654, 327, 0, 2236, 2237, 5, 136, 0, 0, 2237, 2238, 5, 173, 0, 0, 2238, 2239, 3, 268, 134, 0, 2239, 2240, 5, 269, 0, 0, 2240, 2241, 3, 482, 241, 0, 2241, 2243, 3, 268, 134, 0, 2242, 2244, 3, 342, 171, 0, 2243, 2242, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 293, 1, 0, 0, 0, 2245, 2248, 3, 300, 150, 0, 2246, 2248, 3, 296, 148, 0, 2247, 2245, 1, 0, 0, 0, 2247, 2246, 1, 0, 0, 0, 2248, 295, 1, 0, 0, 0, 2249, 2254, 3, 298, 149, 0, 2250, 2251, 5, 397, 0, 0, 2251, 2253, 3, 298, 149, 0, 2252, 2250, 1, 0, 0, 0, 2253, 2256, 1, 0, 0, 0, 2254, 2252, 1, 0, 0, 0, 2254, 2255, 1, 0, 0, 0, 2255, 297, 1, 0, 0, 0, 2256, 2254, 1, 0, 0, 0, 2257, 2258, 5, 399, 0, 0, 2258, 2259, 3, 300, 150, 0, 2259, 2260, 5, 400, 0, 0, 2260, 299, 1, 0, 0, 0, 2261, 2266, 3, 588, 294, 0, 2262, 2263, 5, 397, 0, 0, 2263, 2265, 3, 588, 294, 0, 2264, 2262, 1, 0, 0, 0, 2265, 2268, 1, 0, 0, 0, 2266, 2264, 1, 0, 0, 0, 2266, 2267, 1, 0, 0, 0, 2267, 301, 1, 0, 0, 0, 2268, 2266, 1, 0, 0, 0, 2269, 2270, 7, 18, 0, 0, 2270, 303, 1, 0, 0, 0, 2271, 2272, 5, 220, 0, 0, 2272, 2273, 7, 19, 0, 0, 2273, 305, 1, 0, 0, 0, 2274, 2276, 3, 256, 128, 0, 2275, 2277, 3, 302, 151, 0, 2276, 2275, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2279, 1, 0, 0, 0, 2278, 2280, 3, 304, 152, 0, 2279, 2278, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 307, 1, 0, 0, 0, 2281, 2286, 3, 310, 155, 0, 2282, 2283, 5, 397, 0, 0, 2283, 2285, 3, 310, 155, 0, 2284, 2282, 1, 0, 0, 0, 2285, 2288, 1, 0, 0, 0, 2286, 2284, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 309, 1, 0, 0, 0, 2288, 2286, 1, 0, 0, 0, 2289, 2292, 3, 262, 131, 0, 2290, 2291, 5, 47, 0, 0, 2291, 2293, 5, 426, 0, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 311, 1, 0, 0, 0, 2294, 2297, 3, 256, 128, 0, 2295, 2297, 3, 596, 298, 0, 2296, 2294, 1, 0, 0, 0, 2296, 2295, 1, 0, 0, 0, 2297, 2299, 1, 0, 0, 0, 2298, 2300, 3, 302, 151, 0, 2299, 2298, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 2302, 1, 0, 0, 0, 2301, 2303, 3, 304, 152, 0, 2302, 2301, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 313, 1, 0, 0, 0, 2304, 2305, 3, 262, 131, 0, 2305, 2308, 3, 346, 173, 0, 2306, 2307, 5, 47, 0, 0, 2307, 2309, 5, 426, 0, 0, 2308, 2306, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 315, 1, 0, 0, 0, 2310, 2313, 3, 318, 159, 0, 2311, 2313, 3, 320, 160, 0, 2312, 2310, 1, 0, 0, 0, 2312, 2311, 1, 0, 0, 0, 2313, 317, 1, 0, 0, 0, 2314, 2317, 3, 290, 145, 0, 2315, 2317, 3, 280, 140, 0, 2316, 2314, 1, 0, 0, 0, 2316, 2315, 1, 0, 0, 0, 2317, 319, 1, 0, 0, 0, 2318, 2319, 3, 262, 131, 0, 2319, 2321, 3, 346, 173, 0, 2320, 2322, 3, 322, 161, 0, 2321, 2320, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2325, 1, 0, 0, 0, 2323, 2324, 5, 47, 0, 0, 2324, 2326, 5, 426, 0, 0, 2325, 2323, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 321, 1, 0, 0, 0, 2327, 2330, 3, 324, 162, 0, 2328, 2330, 3, 326, 163, 0, 2329, 2327, 1, 0, 0, 0, 2329, 2328, 1, 0, 0, 0, 2330, 323, 1, 0, 0, 0, 2331, 2332, 5, 55, 0, 0, 2332, 2334, 3, 654, 327, 0, 2333, 2331, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2335, 1, 0, 0, 0, 2335, 2336, 5, 269, 0, 0, 2336, 2337, 3, 482, 241, 0, 2337, 2338, 5, 399, 0, 0, 2338, 2339, 3, 256, 128, 0, 2339, 2341, 5, 400, 0, 0, 2340, 2342, 3, 340, 170, 0, 2341, 2340, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 325, 1, 0, 0, 0, 2343, 2344, 5, 55, 0, 0, 2344, 2346, 3, 654, 327, 0, 2345, 2343, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2349, 3, 334, 167, 0, 2348, 2350, 3, 340, 170, 0, 2349, 2348, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 327, 1, 0, 0, 0, 2351, 2354, 3, 330, 165, 0, 2352, 2354, 3, 332, 166, 0, 2353, 2351, 1, 0, 0, 0, 2353, 2352, 1, 0, 0, 0, 2354, 329, 1, 0, 0, 0, 2355, 2356, 5, 55, 0, 0, 2356, 2358, 3, 654, 327, 0, 2357, 2355, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2360, 5, 269, 0, 0, 2360, 2361, 3, 482, 241, 0, 2361, 2362, 5, 399, 0, 0, 2362, 2363, 3, 256, 128, 0, 2363, 2365, 5, 400, 0, 0, 2364, 2366, 3, 342, 171, 0, 2365, 2364, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 331, 1, 0, 0, 0, 2367, 2368, 5, 55, 0, 0, 2368, 2370, 3, 654, 327, 0, 2369, 2367, 1, 0, 0, 0, 2369, 2370, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2373, 3, 334, 167, 0, 2372, 2374, 3, 342, 171, 0, 2373, 2372, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 333, 1, 0, 0, 0, 2375, 2376, 5, 216, 0, 0, 2376, 2382, 5, 219, 0, 0, 2377, 2378, 5, 83, 0, 0, 2378, 2382, 3, 336, 168, 0, 2379, 2382, 3, 288, 144, 0, 2380, 2382, 3, 338, 169, 0, 2381, 2375, 1, 0, 0, 0, 2381, 2377, 1, 0, 0, 0, 2381, 2379, 1, 0, 0, 0, 2381, 2380, 1, 0, 0, 0, 2382, 335, 1, 0, 0, 0, 2383, 2387, 3, 588, 294, 0, 2384, 2387, 3, 566, 283, 0, 2385, 2387, 3, 576, 288, 0, 2386, 2383, 1, 0, 0, 0, 2386, 2384, 1, 0, 0, 0, 2386, 2385, 1, 0, 0, 0, 2387, 337, 1, 0, 0, 0, 2388, 2389, 5, 251, 0, 0, 2389, 2392, 5, 173, 0, 0, 2390, 2392, 5, 358, 0, 0, 2391, 2388, 1, 0, 0, 0, 2391, 2390, 1, 0, 0, 0, 2392, 339, 1, 0, 0, 0, 2393, 2395, 3, 270, 135, 0, 2394, 2396, 3, 278, 139, 0, 2395, 2394, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 341, 1, 0, 0, 0, 2397, 2399, 3, 270, 135, 0, 2398, 2400, 3, 278, 139, 0, 2399, 2398, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 343, 1, 0, 0, 0, 2401, 2402, 3, 262, 131, 0, 2402, 2403, 5, 396, 0, 0, 2403, 2406, 3, 346, 173, 0, 2404, 2405, 5, 47, 0, 0, 2405, 2407, 5, 426, 0, 0, 2406, 2404, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 345, 1, 0, 0, 0, 2408, 2409, 3, 350, 175, 0, 2409, 347, 1, 0, 0, 0, 2410, 2415, 3, 346, 173, 0, 2411, 2412, 5, 397, 0, 0, 2412, 2414, 3, 346, 173, 0, 2413, 2411, 1, 0, 0, 0, 2414, 2417, 1, 0, 0, 0, 2415, 2413, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 349, 1, 0, 0, 0, 2417, 2415, 1, 0, 0, 0, 2418, 2424, 3, 352, 176, 0, 2419, 2424, 3, 354, 177, 0, 2420, 2424, 3, 356, 178, 0, 2421, 2424, 3, 358, 179, 0, 2422, 2424, 3, 360, 180, 0, 2423, 2418, 1, 0, 0, 0, 2423, 2419, 1, 0, 0, 0, 2423, 2420, 1, 0, 0, 0, 2423, 2421, 1, 0, 0, 0, 2423, 2422, 1, 0, 0, 0, 2424, 351, 1, 0, 0, 0, 2425, 2463, 5, 340, 0, 0, 2426, 2463, 5, 311, 0, 0, 2427, 2463, 5, 162, 0, 0, 2428, 2463, 5, 163, 0, 0, 2429, 2463, 5, 26, 0, 0, 2430, 2463, 5, 28, 0, 0, 2431, 2463, 5, 131, 0, 0, 2432, 2463, 5, 264, 0, 0, 2433, 2435, 5, 100, 0, 0, 2434, 2436, 5, 248, 0, 0, 2435, 2434, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2463, 1, 0, 0, 0, 2437, 2463, 5, 71, 0, 0, 2438, 2463, 5, 72, 0, 0, 2439, 2463, 5, 337, 0, 0, 2440, 2463, 5, 338, 0, 0, 2441, 2442, 5, 337, 0, 0, 2442, 2443, 5, 387, 0, 0, 2443, 2444, 5, 188, 0, 0, 2444, 2445, 5, 336, 0, 0, 2445, 2463, 5, 394, 0, 0, 2446, 2463, 5, 323, 0, 0, 2447, 2463, 5, 27, 0, 0, 2448, 2456, 3, 696, 348, 0, 2449, 2450, 5, 399, 0, 0, 2450, 2453, 5, 431, 0, 0, 2451, 2452, 5, 397, 0, 0, 2452, 2454, 5, 431, 0, 0, 2453, 2451, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2457, 5, 400, 0, 0, 2456, 2449, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 2463, 1, 0, 0, 0, 2458, 2459, 7, 20, 0, 0, 2459, 2460, 5, 399, 0, 0, 2460, 2461, 5, 431, 0, 0, 2461, 2463, 5, 400, 0, 0, 2462, 2425, 1, 0, 0, 0, 2462, 2426, 1, 0, 0, 0, 2462, 2427, 1, 0, 0, 0, 2462, 2428, 1, 0, 0, 0, 2462, 2429, 1, 0, 0, 0, 2462, 2430, 1, 0, 0, 0, 2462, 2431, 1, 0, 0, 0, 2462, 2432, 1, 0, 0, 0, 2462, 2433, 1, 0, 0, 0, 2462, 2437, 1, 0, 0, 0, 2462, 2438, 1, 0, 0, 0, 2462, 2439, 1, 0, 0, 0, 2462, 2440, 1, 0, 0, 0, 2462, 2441, 1, 0, 0, 0, 2462, 2446, 1, 0, 0, 0, 2462, 2447, 1, 0, 0, 0, 2462, 2448, 1, 0, 0, 0, 2462, 2458, 1, 0, 0, 0, 2463, 353, 1, 0, 0, 0, 2464, 2465, 5, 16, 0, 0, 2465, 2466, 5, 409, 0, 0, 2466, 2467, 3, 350, 175, 0, 2467, 2468, 5, 411, 0, 0, 2468, 355, 1, 0, 0, 0, 2469, 2470, 5, 324, 0, 0, 2470, 2471, 5, 409, 0, 0, 2471, 2472, 3, 252, 126, 0, 2472, 2473, 5, 411, 0, 0, 2473, 357, 1, 0, 0, 0, 2474, 2475, 5, 198, 0, 0, 2475, 2476, 5, 409, 0, 0, 2476, 2477, 3, 352, 176, 0, 2477, 2478, 5, 397, 0, 0, 2478, 2479, 3, 350, 175, 0, 2479, 2480, 5, 411, 0, 0, 2480, 359, 1, 0, 0, 0, 2481, 2482, 5, 357, 0, 0, 2482, 2483, 5, 409, 0, 0, 2483, 2484, 3, 348, 174, 0, 2484, 2485, 5, 411, 0, 0, 2485, 361, 1, 0, 0, 0, 2486, 2488, 7, 21, 0, 0, 2487, 2489, 7, 22, 0, 0, 2488, 2487, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 363, 1, 0, 0, 0, 2490, 2492, 3, 368, 184, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2494, 3, 366, 183, 0, 2494, 365, 1, 0, 0, 0, 2495, 2498, 3, 372, 186, 0, 2496, 2498, 3, 376, 188, 0, 2497, 2495, 1, 0, 0, 0, 2497, 2496, 1, 0, 0, 0, 2498, 367, 1, 0, 0, 0, 2499, 2500, 5, 387, 0, 0, 2500, 2505, 3, 370, 185, 0, 2501, 2502, 5, 397, 0, 0, 2502, 2504, 3, 370, 185, 0, 2503, 2501, 1, 0, 0, 0, 2504, 2507, 1, 0, 0, 0, 2505, 2503, 1, 0, 0, 0, 2505, 2506, 1, 0, 0, 0, 2506, 369, 1, 0, 0, 0, 2507, 2505, 1, 0, 0, 0, 2508, 2513, 3, 654, 327, 0, 2509, 2510, 5, 399, 0, 0, 2510, 2511, 3, 254, 127, 0, 2511, 2512, 5, 400, 0, 0, 2512, 2514, 1, 0, 0, 0, 2513, 2509, 1, 0, 0, 0, 2513, 2514, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2516, 5, 17, 0, 0, 2516, 2517, 5, 399, 0, 0, 2517, 2518, 3, 364, 182, 0, 2518, 2519, 5, 400, 0, 0, 2519, 371, 1, 0, 0, 0, 2520, 2526, 3, 374, 187, 0, 2521, 2522, 3, 362, 181, 0, 2522, 2523, 3, 374, 187, 0, 2523, 2525, 1, 0, 0, 0, 2524, 2521, 1, 0, 0, 0, 2525, 2528, 1, 0, 0, 0, 2526, 2524, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 373, 1, 0, 0, 0, 2528, 2526, 1, 0, 0, 0, 2529, 2530, 3, 452, 226, 0, 2530, 2531, 3, 386, 193, 0, 2531, 2533, 3, 508, 254, 0, 2532, 2534, 3, 466, 233, 0, 2533, 2532, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2536, 1, 0, 0, 0, 2535, 2537, 3, 500, 250, 0, 2536, 2535, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2539, 1, 0, 0, 0, 2538, 2540, 3, 534, 267, 0, 2539, 2538, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2543, 3, 542, 271, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2546, 3, 526, 263, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 2548, 1, 0, 0, 0, 2547, 2549, 3, 544, 272, 0, 2548, 2547, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2551, 1, 0, 0, 0, 2550, 2552, 3, 556, 278, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2554, 1, 0, 0, 0, 2553, 2555, 3, 560, 280, 0, 2554, 2553, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2557, 1, 0, 0, 0, 2556, 2558, 3, 562, 281, 0, 2557, 2556, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2560, 1, 0, 0, 0, 2559, 2561, 3, 564, 282, 0, 2560, 2559, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 2563, 1, 0, 0, 0, 2562, 2564, 3, 390, 195, 0, 2563, 2562, 1, 0, 0, 0, 2563, 2564, 1, 0, 0, 0, 2564, 2601, 1, 0, 0, 0, 2565, 2566, 3, 452, 226, 0, 2566, 2568, 3, 508, 254, 0, 2567, 2569, 3, 466, 233, 0, 2568, 2567, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2571, 1, 0, 0, 0, 2570, 2572, 3, 500, 250, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2574, 1, 0, 0, 0, 2573, 2575, 3, 534, 267, 0, 2574, 2573, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2577, 1, 0, 0, 0, 2576, 2578, 3, 542, 271, 0, 2577, 2576, 1, 0, 0, 0, 2577, 2578, 1, 0, 0, 0, 2578, 2580, 1, 0, 0, 0, 2579, 2581, 3, 526, 263, 0, 2580, 2579, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2583, 1, 0, 0, 0, 2582, 2584, 3, 544, 272, 0, 2583, 2582, 1, 0, 0, 0, 2583, 2584, 1, 0, 0, 0, 2584, 2586, 1, 0, 0, 0, 2585, 2587, 3, 556, 278, 0, 2586, 2585, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2589, 1, 0, 0, 0, 2588, 2590, 3, 560, 280, 0, 2589, 2588, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 2592, 1, 0, 0, 0, 2591, 2593, 3, 562, 281, 0, 2592, 2591, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2595, 1, 0, 0, 0, 2594, 2596, 3, 564, 282, 0, 2595, 2594, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2598, 1, 0, 0, 0, 2597, 2599, 3, 390, 195, 0, 2598, 2597, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2601, 1, 0, 0, 0, 2600, 2529, 1, 0, 0, 0, 2600, 2565, 1, 0, 0, 0, 2601, 375, 1, 0, 0, 0, 2602, 2603, 3, 386, 193, 0, 2603, 2604, 3, 380, 190, 0, 2604, 2607, 1, 0, 0, 0, 2605, 2607, 3, 380, 190, 0, 2606, 2602, 1, 0, 0, 0, 2606, 2605, 1, 0, 0, 0, 2607, 377, 1, 0, 0, 0, 2608, 2610, 3, 508, 254, 0, 2609, 2611, 3, 452, 226, 0, 2610, 2609, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2613, 1, 0, 0, 0, 2612, 2614, 3, 500, 250, 0, 2613, 2612, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2616, 1, 0, 0, 0, 2615, 2617, 3, 534, 267, 0, 2616, 2615, 1, 0, 0, 0, 2616, 2617, 1, 0, 0, 0, 2617, 2619, 1, 0, 0, 0, 2618, 2620, 3, 542, 271, 0, 2619, 2618, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2622, 1, 0, 0, 0, 2621, 2623, 3, 526, 263, 0, 2622, 2621, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2625, 1, 0, 0, 0, 2624, 2626, 3, 544, 272, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2633, 1, 0, 0, 0, 2627, 2628, 5, 399, 0, 0, 2628, 2629, 3, 380, 190, 0, 2629, 2630, 5, 400, 0, 0, 2630, 2633, 1, 0, 0, 0, 2631, 2633, 3, 502, 251, 0, 2632, 2608, 1, 0, 0, 0, 2632, 2627, 1, 0, 0, 0, 2632, 2631, 1, 0, 0, 0, 2633, 379, 1, 0, 0, 0, 2634, 2636, 3, 378, 189, 0, 2635, 2637, 3, 382, 191, 0, 2636, 2635, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2639, 1, 0, 0, 0, 2638, 2640, 3, 556, 278, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 1, 0, 0, 0, 2641, 2643, 3, 560, 280, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2645, 1, 0, 0, 0, 2644, 2646, 3, 562, 281, 0, 2645, 2644, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2648, 1, 0, 0, 0, 2647, 2649, 3, 564, 282, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2651, 1, 0, 0, 0, 2650, 2652, 3, 390, 195, 0, 2651, 2650, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 381, 1, 0, 0, 0, 2653, 2654, 3, 362, 181, 0, 2654, 2655, 3, 378, 189, 0, 2655, 2657, 1, 0, 0, 0, 2656, 2653, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2656, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 383, 1, 0, 0, 0, 2660, 2662, 3, 368, 184, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2664, 3, 380, 190, 0, 2664, 385, 1, 0, 0, 0, 2665, 2682, 5, 161, 0, 0, 2666, 2667, 5, 235, 0, 0, 2667, 2669, 3, 388, 194, 0, 2668, 2670, 3, 32, 16, 0, 2669, 2668, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2683, 1, 0, 0, 0, 2671, 2673, 5, 166, 0, 0, 2672, 2674, 5, 329, 0, 0, 2673, 2672, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2680, 3, 640, 320, 0, 2676, 2677, 5, 399, 0, 0, 2677, 2678, 3, 254, 127, 0, 2678, 2679, 5, 400, 0, 0, 2679, 2681, 1, 0, 0, 0, 2680, 2676, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 2683, 1, 0, 0, 0, 2682, 2666, 1, 0, 0, 0, 2682, 2671, 1, 0, 0, 0, 2683, 387, 1, 0, 0, 0, 2684, 2686, 5, 188, 0, 0, 2685, 2684, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2688, 5, 93, 0, 0, 2688, 2690, 5, 426, 0, 0, 2689, 2691, 3, 222, 111, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2693, 1, 0, 0, 0, 2692, 2694, 3, 246, 123, 0, 2693, 2692, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 2698, 1, 0, 0, 0, 2695, 2696, 5, 329, 0, 0, 2696, 2698, 3, 640, 320, 0, 2697, 2685, 1, 0, 0, 0, 2697, 2695, 1, 0, 0, 0, 2698, 389, 1, 0, 0, 0, 2699, 2708, 5, 185, 0, 0, 2700, 2701, 5, 431, 0, 0, 2701, 2703, 5, 397, 0, 0, 2702, 2700, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2709, 5, 431, 0, 0, 2705, 2706, 5, 431, 0, 0, 2706, 2707, 5, 223, 0, 0, 2707, 2709, 5, 431, 0, 0, 2708, 2702, 1, 0, 0, 0, 2708, 2705, 1, 0, 0, 0, 2709, 391, 1, 0, 0, 0, 2710, 2711, 3, 256, 128, 0, 2711, 2712, 5, 405, 0, 0, 2712, 2713, 3, 394, 197, 0, 2713, 393, 1, 0, 0, 0, 2714, 2717, 5, 83, 0, 0, 2715, 2717, 3, 606, 303, 0, 2716, 2714, 1, 0, 0, 0, 2716, 2715, 1, 0, 0, 0, 2717, 395, 1, 0, 0, 0, 2718, 2719, 5, 304, 0, 0, 2719, 2724, 3, 392, 196, 0, 2720, 2721, 5, 397, 0, 0, 2721, 2723, 3, 392, 196, 0, 2722, 2720, 1, 0, 0, 0, 2723, 2726, 1, 0, 0, 0, 2724, 2722, 1, 0, 0, 0, 2724, 2725, 1, 0, 0, 0, 2725, 397, 1, 0, 0, 0, 2726, 2724, 1, 0, 0, 0, 2727, 2728, 5, 318, 0, 0, 2728, 2737, 5, 344, 0, 0, 2729, 2734, 3, 400, 200, 0, 2730, 2731, 5, 397, 0, 0, 2731, 2733, 3, 400, 200, 0, 2732, 2730, 1, 0, 0, 0, 2733, 2736, 1, 0, 0, 0, 2734, 2732, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2738, 1, 0, 0, 0, 2736, 2734, 1, 0, 0, 0, 2737, 2729, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2751, 1, 0, 0, 0, 2739, 2741, 5, 48, 0, 0, 2740, 2742, 5, 389, 0, 0, 2741, 2740, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2751, 1, 0, 0, 0, 2743, 2745, 5, 289, 0, 0, 2744, 2746, 5, 389, 0, 0, 2745, 2744, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2751, 1, 0, 0, 0, 2747, 2748, 5, 304, 0, 0, 2748, 2749, 5, 22, 0, 0, 2749, 2751, 7, 23, 0, 0, 2750, 2727, 1, 0, 0, 0, 2750, 2739, 1, 0, 0, 0, 2750, 2743, 1, 0, 0, 0, 2750, 2747, 1, 0, 0, 0, 2751, 399, 1, 0, 0, 0, 2752, 2753, 5, 168, 0, 0, 2753, 2754, 5, 182, 0, 0, 2754, 2758, 5, 312, 0, 0, 2755, 2756, 5, 261, 0, 0, 2756, 2758, 7, 24, 0, 0, 2757, 2752, 1, 0, 0, 0, 2757, 2755, 1, 0, 0, 0, 2758, 401, 1, 0, 0, 0, 2759, 2762, 3, 406, 203, 0, 2760, 2762, 3, 408, 204, 0, 2761, 2759, 1, 0, 0, 0, 2761, 2760, 1, 0, 0, 0, 2762, 2765, 1, 0, 0, 0, 2763, 2761, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2767, 1, 0, 0, 0, 2765, 2763, 1, 0, 0, 0, 2766, 2768, 3, 404, 202, 0, 2767, 2766, 1, 0, 0, 0, 2767, 2768, 1, 0, 0, 0, 2768, 403, 1, 0, 0, 0, 2769, 2770, 5, 383, 0, 0, 2770, 2771, 5, 216, 0, 0, 2771, 2774, 5, 201, 0, 0, 2772, 2773, 5, 11, 0, 0, 2773, 2775, 3, 596, 298, 0, 2774, 2772, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2777, 5, 335, 0, 0, 2777, 2779, 5, 161, 0, 0, 2778, 2780, 3, 268, 134, 0, 2779, 2778, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2781, 1, 0, 0, 0, 2781, 2782, 5, 374, 0, 0, 2782, 2783, 3, 552, 276, 0, 2783, 405, 1, 0, 0, 0, 2784, 2785, 5, 383, 0, 0, 2785, 2786, 5, 201, 0, 0, 2786, 2787, 5, 11, 0, 0, 2787, 2788, 3, 596, 298, 0, 2788, 2792, 5, 335, 0, 0, 2789, 2790, 5, 365, 0, 0, 2790, 2793, 3, 396, 198, 0, 2791, 2793, 5, 86, 0, 0, 2792, 2789, 1, 0, 0, 0, 2792, 2791, 1, 0, 0, 0, 2793, 407, 1, 0, 0, 0, 2794, 2795, 5, 383, 0, 0, 2795, 2796, 5, 201, 0, 0, 2796, 2800, 5, 335, 0, 0, 2797, 2798, 5, 365, 0, 0, 2798, 2801, 3, 396, 198, 0, 2799, 2801, 5, 86, 0, 0, 2800, 2797, 1, 0, 0, 0, 2800, 2799, 1, 0, 0, 0, 2801, 409, 1, 0, 0, 0, 2802, 2803, 5, 246, 0, 0, 2803, 2804, 5, 426, 0, 0, 2804, 411, 1, 0, 0, 0, 2805, 2806, 5, 352, 0, 0, 2806, 2807, 5, 426, 0, 0, 2807, 413, 1, 0, 0, 0, 2808, 2809, 5, 320, 0, 0, 2809, 2810, 5, 426, 0, 0, 2810, 415, 1, 0, 0, 0, 2811, 2842, 5, 9, 0, 0, 2812, 2813, 5, 329, 0, 0, 2813, 2814, 3, 482, 241, 0, 2814, 2815, 3, 418, 209, 0, 2815, 2843, 1, 0, 0, 0, 2816, 2817, 5, 378, 0, 0, 2817, 2819, 3, 486, 243, 0, 2818, 2820, 5, 17, 0, 0, 2819, 2818, 1, 0, 0, 0, 2819, 2820, 1, 0, 0, 0, 2820, 2821, 1, 0, 0, 0, 2821, 2822, 3, 422, 211, 0, 2822, 2843, 1, 0, 0, 0, 2823, 2824, 5, 202, 0, 0, 2824, 2825, 5, 378, 0, 0, 2825, 2829, 3, 486, 243, 0, 2826, 2830, 3, 36, 18, 0, 2827, 2830, 3, 38, 19, 0, 2828, 2830, 5, 265, 0, 0, 2829, 2826, 1, 0, 0, 0, 2829, 2827, 1, 0, 0, 0, 2829, 2828, 1, 0, 0, 0, 2830, 2843, 1, 0, 0, 0, 2831, 2832, 3, 70, 35, 0, 2832, 2833, 3, 424, 212, 0, 2833, 2843, 1, 0, 0, 0, 2834, 2835, 5, 69, 0, 0, 2835, 2843, 3, 426, 213, 0, 2836, 2837, 5, 155, 0, 0, 2837, 2838, 3, 654, 327, 0, 2838, 2839, 5, 224, 0, 0, 2839, 2840, 3, 640, 320, 0, 2840, 2841, 5, 265, 0, 0, 2841, 2843, 1, 0, 0, 0, 2842, 2812, 1, 0, 0, 0, 2842, 2816, 1, 0, 0, 0, 2842, 2823, 1, 0, 0, 0, 2842, 2831, 1, 0, 0, 0, 2842, 2834, 1, 0, 0, 0, 2842, 2836, 1, 0, 0, 0, 2843, 417, 1, 0, 0, 0, 2844, 2845, 5, 274, 0, 0, 2845, 2846, 5, 341, 0, 0, 2846, 2934, 3, 484, 242, 0, 2847, 2848, 5, 102, 0, 0, 2848, 2934, 5, 239, 0, 0, 2849, 2934, 3, 430, 215, 0, 2850, 2852, 5, 4, 0, 0, 2851, 2853, 3, 32, 16, 0, 2852, 2851, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2858, 1, 0, 0, 0, 2854, 2856, 3, 642, 321, 0, 2855, 2857, 3, 428, 214, 0, 2856, 2855, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 2859, 1, 0, 0, 0, 2858, 2854, 1, 0, 0, 0, 2859, 2860, 1, 0, 0, 0, 2860, 2858, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, 0, 2861, 2934, 1, 0, 0, 0, 2862, 2866, 5, 342, 0, 0, 2863, 2865, 3, 642, 321, 0, 2864, 2863, 1, 0, 0, 0, 2865, 2868, 1, 0, 0, 0, 2866, 2864, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2934, 1, 0, 0, 0, 2868, 2866, 1, 0, 0, 0, 2869, 2873, 5, 15, 0, 0, 2870, 2872, 3, 642, 321, 0, 2871, 2870, 1, 0, 0, 0, 2872, 2875, 1, 0, 0, 0, 2873, 2871, 1, 0, 0, 0, 2873, 2874, 1, 0, 0, 0, 2874, 2934, 1, 0, 0, 0, 2875, 2873, 1, 0, 0, 0, 2876, 2880, 5, 353, 0, 0, 2877, 2879, 3, 642, 321, 0, 2878, 2877, 1, 0, 0, 0, 2879, 2882, 1, 0, 0, 0, 2880, 2878, 1, 0, 0, 0, 2880, 2881, 1, 0, 0, 0, 2881, 2934, 1, 0, 0, 0, 2882, 2880, 1, 0, 0, 0, 2883, 2884, 5, 304, 0, 0, 2884, 2885, 5, 332, 0, 0, 2885, 2934, 3, 226, 113, 0, 2886, 2887, 5, 363, 0, 0, 2887, 2889, 5, 332, 0, 0, 2888, 2890, 3, 30, 15, 0, 2889, 2888, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2934, 3, 226, 113, 0, 2892, 2934, 3, 210, 105, 0, 2893, 2896, 5, 216, 0, 0, 2894, 2897, 5, 310, 0, 0, 2895, 2897, 3, 40, 20, 0, 2896, 2894, 1, 0, 0, 0, 2896, 2895, 1, 0, 0, 0, 2897, 2934, 1, 0, 0, 0, 2898, 2899, 5, 113, 0, 0, 2899, 2900, 3, 642, 321, 0, 2900, 2901, 5, 387, 0, 0, 2901, 2902, 5, 329, 0, 0, 2902, 2903, 3, 482, 241, 0, 2903, 2934, 1, 0, 0, 0, 2904, 2905, 5, 237, 0, 0, 2905, 2906, 5, 45, 0, 0, 2906, 2907, 5, 399, 0, 0, 2907, 2908, 3, 314, 157, 0, 2908, 2909, 5, 400, 0, 0, 2909, 2934, 1, 0, 0, 0, 2910, 2911, 5, 101, 0, 0, 2911, 2912, 5, 55, 0, 0, 2912, 2934, 3, 654, 327, 0, 2913, 2916, 5, 4, 0, 0, 2914, 2917, 3, 292, 146, 0, 2915, 2917, 3, 282, 141, 0, 2916, 2914, 1, 0, 0, 0, 2916, 2915, 1, 0, 0, 0, 2917, 2934, 1, 0, 0, 0, 2918, 2920, 3, 642, 321, 0, 2919, 2918, 1, 0, 0, 0, 2919, 2920, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2934, 3, 420, 210, 0, 2922, 2923, 5, 304, 0, 0, 2923, 2924, 5, 236, 0, 0, 2924, 2934, 3, 126, 63, 0, 2925, 2926, 5, 304, 0, 0, 2926, 2927, 5, 237, 0, 0, 2927, 2928, 5, 316, 0, 0, 2928, 2929, 5, 399, 0, 0, 2929, 2930, 3, 204, 102, 0, 2930, 2931, 5, 400, 0, 0, 2931, 2934, 1, 0, 0, 0, 2932, 2934, 3, 434, 217, 0, 2933, 2844, 1, 0, 0, 0, 2933, 2847, 1, 0, 0, 0, 2933, 2849, 1, 0, 0, 0, 2933, 2850, 1, 0, 0, 0, 2933, 2862, 1, 0, 0, 0, 2933, 2869, 1, 0, 0, 0, 2933, 2876, 1, 0, 0, 0, 2933, 2883, 1, 0, 0, 0, 2933, 2886, 1, 0, 0, 0, 2933, 2892, 1, 0, 0, 0, 2933, 2893, 1, 0, 0, 0, 2933, 2898, 1, 0, 0, 0, 2933, 2904, 1, 0, 0, 0, 2933, 2910, 1, 0, 0, 0, 2933, 2913, 1, 0, 0, 0, 2933, 2919, 1, 0, 0, 0, 2933, 2922, 1, 0, 0, 0, 2933, 2925, 1, 0, 0, 0, 2933, 2932, 1, 0, 0, 0, 2934, 419, 1, 0, 0, 0, 2935, 2936, 5, 304, 0, 0, 2936, 2937, 5, 129, 0, 0, 2937, 3068, 3, 436, 218, 0, 2938, 2939, 5, 304, 0, 0, 2939, 2940, 5, 189, 0, 0, 2940, 3068, 5, 426, 0, 0, 2941, 3068, 5, 53, 0, 0, 2942, 2952, 5, 304, 0, 0, 2943, 2944, 5, 301, 0, 0, 2944, 2948, 5, 426, 0, 0, 2945, 2946, 5, 387, 0, 0, 2946, 2947, 5, 302, 0, 0, 2947, 2949, 3, 226, 113, 0, 2948, 2945, 1, 0, 0, 0, 2948, 2949, 1, 0, 0, 0, 2949, 2953, 1, 0, 0, 0, 2950, 2951, 5, 302, 0, 0, 2951, 2953, 3, 226, 113, 0, 2952, 2943, 1, 0, 0, 0, 2952, 2950, 1, 0, 0, 0, 2953, 3068, 1, 0, 0, 0, 2954, 2955, 5, 363, 0, 0, 2955, 2956, 5, 302, 0, 0, 2956, 3068, 3, 226, 113, 0, 2957, 2958, 5, 274, 0, 0, 2958, 2959, 5, 341, 0, 0, 2959, 3068, 3, 642, 321, 0, 2960, 2961, 5, 166, 0, 0, 2961, 2962, 5, 431, 0, 0, 2962, 3068, 5, 31, 0, 0, 2963, 2964, 5, 304, 0, 0, 2964, 2965, 5, 310, 0, 0, 2965, 2966, 5, 189, 0, 0, 2966, 2967, 5, 399, 0, 0, 2967, 2972, 3, 432, 216, 0, 2968, 2969, 5, 397, 0, 0, 2969, 2971, 3, 432, 216, 0, 2970, 2968, 1, 0, 0, 0, 2971, 2974, 1, 0, 0, 0, 2972, 2970, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 2975, 1, 0, 0, 0, 2974, 2972, 1, 0, 0, 0, 2975, 2976, 5, 400, 0, 0, 2976, 3068, 1, 0, 0, 0, 2977, 2978, 5, 216, 0, 0, 2978, 3068, 7, 25, 0, 0, 2979, 3068, 3, 208, 104, 0, 2980, 2981, 5, 49, 0, 0, 2981, 2984, 5, 426, 0, 0, 2982, 2983, 5, 11, 0, 0, 2983, 2985, 5, 380, 0, 0, 2984, 2982, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 2990, 1, 0, 0, 0, 2986, 2987, 5, 42, 0, 0, 2987, 2988, 5, 166, 0, 0, 2988, 2989, 5, 431, 0, 0, 2989, 2991, 5, 31, 0, 0, 2990, 2986, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2993, 1, 0, 0, 0, 2992, 2994, 3, 556, 278, 0, 2993, 2992, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2996, 1, 0, 0, 0, 2995, 2997, 3, 410, 205, 0, 2996, 2995, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 3002, 1, 0, 0, 0, 2998, 2999, 5, 387, 0, 0, 2999, 3000, 5, 235, 0, 0, 3000, 3001, 5, 332, 0, 0, 3001, 3003, 3, 226, 113, 0, 3002, 2998, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 3068, 1, 0, 0, 0, 3004, 3005, 5, 365, 0, 0, 3005, 3006, 5, 319, 0, 0, 3006, 3008, 5, 134, 0, 0, 3007, 3009, 5, 45, 0, 0, 3008, 3007, 1, 0, 0, 0, 3008, 3009, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3011, 3, 256, 128, 0, 3011, 3012, 5, 304, 0, 0, 3012, 3015, 3, 226, 113, 0, 3013, 3014, 5, 47, 0, 0, 3014, 3016, 5, 426, 0, 0, 3015, 3013, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3068, 1, 0, 0, 0, 3017, 3018, 5, 365, 0, 0, 3018, 3019, 5, 319, 0, 0, 3019, 3020, 5, 304, 0, 0, 3020, 3068, 3, 226, 113, 0, 3021, 3023, 5, 38, 0, 0, 3022, 3024, 5, 45, 0, 0, 3023, 3022, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 3026, 3, 256, 128, 0, 3026, 3027, 3, 262, 131, 0, 3027, 3029, 3, 346, 173, 0, 3028, 3030, 3, 328, 164, 0, 3029, 3028, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3033, 1, 0, 0, 0, 3031, 3032, 5, 47, 0, 0, 3032, 3034, 5, 426, 0, 0, 3033, 3031, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3038, 1, 0, 0, 0, 3035, 3039, 5, 130, 0, 0, 3036, 3037, 5, 6, 0, 0, 3037, 3039, 3, 654, 327, 0, 3038, 3035, 1, 0, 0, 0, 3038, 3036, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 3041, 1, 0, 0, 0, 3040, 3042, 3, 34, 17, 0, 3041, 3040, 1, 0, 0, 0, 3041, 3042, 1, 0, 0, 0, 3042, 3068, 1, 0, 0, 0, 3043, 3046, 5, 4, 0, 0, 3044, 3046, 5, 278, 0, 0, 3045, 3043, 1, 0, 0, 0, 3045, 3044, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3048, 5, 46, 0, 0, 3048, 3049, 5, 399, 0, 0, 3049, 3050, 3, 248, 124, 0, 3050, 3052, 5, 400, 0, 0, 3051, 3053, 3, 34, 17, 0, 3052, 3051, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 3068, 1, 0, 0, 0, 3054, 3055, 5, 365, 0, 0, 3055, 3057, 5, 46, 0, 0, 3056, 3058, 3, 34, 17, 0, 3057, 3056, 1, 0, 0, 0, 3057, 3058, 1, 0, 0, 0, 3058, 3068, 1, 0, 0, 0, 3059, 3065, 3, 272, 136, 0, 3060, 3062, 5, 218, 0, 0, 3061, 3063, 5, 34, 0, 0, 3062, 3061, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 3066, 1, 0, 0, 0, 3064, 3066, 5, 222, 0, 0, 3065, 3060, 1, 0, 0, 0, 3065, 3064, 1, 0, 0, 0, 3066, 3068, 1, 0, 0, 0, 3067, 2935, 1, 0, 0, 0, 3067, 2938, 1, 0, 0, 0, 3067, 2941, 1, 0, 0, 0, 3067, 2942, 1, 0, 0, 0, 3067, 2954, 1, 0, 0, 0, 3067, 2957, 1, 0, 0, 0, 3067, 2960, 1, 0, 0, 0, 3067, 2963, 1, 0, 0, 0, 3067, 2977, 1, 0, 0, 0, 3067, 2979, 1, 0, 0, 0, 3067, 2980, 1, 0, 0, 0, 3067, 3004, 1, 0, 0, 0, 3067, 3017, 1, 0, 0, 0, 3067, 3021, 1, 0, 0, 0, 3067, 3045, 1, 0, 0, 0, 3067, 3054, 1, 0, 0, 0, 3067, 3059, 1, 0, 0, 0, 3068, 421, 1, 0, 0, 0, 3069, 3070, 5, 304, 0, 0, 3070, 3071, 5, 332, 0, 0, 3071, 3096, 3, 226, 113, 0, 3072, 3073, 5, 363, 0, 0, 3073, 3075, 5, 332, 0, 0, 3074, 3076, 3, 30, 15, 0, 3075, 3074, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 3096, 3, 226, 113, 0, 3078, 3079, 5, 274, 0, 0, 3079, 3080, 5, 341, 0, 0, 3080, 3096, 3, 484, 242, 0, 3081, 3083, 5, 4, 0, 0, 3082, 3084, 3, 32, 16, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3089, 1, 0, 0, 0, 3085, 3087, 3, 642, 321, 0, 3086, 3088, 3, 428, 214, 0, 3087, 3086, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3090, 1, 0, 0, 0, 3089, 3085, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3089, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3096, 1, 0, 0, 0, 3093, 3096, 3, 430, 215, 0, 3094, 3096, 3, 384, 192, 0, 3095, 3069, 1, 0, 0, 0, 3095, 3072, 1, 0, 0, 0, 3095, 3078, 1, 0, 0, 0, 3095, 3081, 1, 0, 0, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3094, 1, 0, 0, 0, 3096, 423, 1, 0, 0, 0, 3097, 3098, 3, 476, 238, 0, 3098, 3099, 5, 304, 0, 0, 3099, 3100, 5, 76, 0, 0, 3100, 3101, 3, 230, 115, 0, 3101, 3113, 1, 0, 0, 0, 3102, 3103, 3, 476, 238, 0, 3103, 3104, 5, 304, 0, 0, 3104, 3105, 5, 236, 0, 0, 3105, 3106, 3, 128, 64, 0, 3106, 3113, 1, 0, 0, 0, 3107, 3108, 3, 476, 238, 0, 3108, 3109, 5, 304, 0, 0, 3109, 3110, 7, 26, 0, 0, 3110, 3111, 5, 426, 0, 0, 3111, 3113, 1, 0, 0, 0, 3112, 3097, 1, 0, 0, 0, 3112, 3102, 1, 0, 0, 0, 3112, 3107, 1, 0, 0, 0, 3113, 425, 1, 0, 0, 0, 3114, 3115, 3, 476, 238, 0, 3115, 3116, 5, 304, 0, 0, 3116, 3117, 5, 77, 0, 0, 3117, 3118, 3, 230, 115, 0, 3118, 3130, 1, 0, 0, 0, 3119, 3120, 3, 476, 238, 0, 3120, 3121, 5, 304, 0, 0, 3121, 3122, 5, 236, 0, 0, 3122, 3123, 3, 128, 64, 0, 3123, 3130, 1, 0, 0, 0, 3124, 3125, 3, 476, 238, 0, 3125, 3126, 5, 304, 0, 0, 3126, 3127, 5, 367, 0, 0, 3127, 3128, 5, 426, 0, 0, 3128, 3130, 1, 0, 0, 0, 3129, 3114, 1, 0, 0, 0, 3129, 3119, 1, 0, 0, 0, 3129, 3124, 1, 0, 0, 0, 3130, 427, 1, 0, 0, 0, 3131, 3132, 5, 189, 0, 0, 3132, 3133, 5, 426, 0, 0, 3133, 429, 1, 0, 0, 0, 3134, 3136, 5, 101, 0, 0, 3135, 3137, 3, 30, 15, 0, 3136, 3135, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 3139, 5, 237, 0, 0, 3139, 3145, 3, 646, 323, 0, 3140, 3141, 5, 397, 0, 0, 3141, 3142, 5, 237, 0, 0, 3142, 3144, 3, 646, 323, 0, 3143, 3140, 1, 0, 0, 0, 3144, 3147, 1, 0, 0, 0, 3145, 3143, 1, 0, 0, 0, 3145, 3146, 1, 0, 0, 0, 3146, 3150, 1, 0, 0, 0, 3147, 3145, 1, 0, 0, 0, 3148, 3149, 5, 152, 0, 0, 3149, 3151, 5, 254, 0, 0, 3150, 3148, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3153, 1, 0, 0, 0, 3152, 3154, 5, 255, 0, 0, 3153, 3152, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3156, 1, 0, 0, 0, 3155, 3157, 3, 14, 7, 0, 3156, 3155, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 431, 1, 0, 0, 0, 3158, 3161, 3, 588, 294, 0, 3159, 3161, 3, 298, 149, 0, 3160, 3158, 1, 0, 0, 0, 3160, 3159, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3163, 5, 405, 0, 0, 3163, 3164, 5, 426, 0, 0, 3164, 433, 1, 0, 0, 0, 3165, 3175, 5, 115, 0, 0, 3166, 3167, 5, 289, 0, 0, 3167, 3168, 5, 399, 0, 0, 3168, 3176, 7, 27, 0, 0, 3169, 3170, 5, 118, 0, 0, 3170, 3171, 5, 399, 0, 0, 3171, 3176, 5, 426, 0, 0, 3172, 3173, 5, 306, 0, 0, 3173, 3174, 5, 399, 0, 0, 3174, 3176, 5, 431, 0, 0, 3175, 3166, 1, 0, 0, 0, 3175, 3169, 1, 0, 0, 0, 3175, 3172, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3178, 5, 400, 0, 0, 3178, 435, 1, 0, 0, 0, 3179, 3180, 5, 160, 0, 0, 3180, 3181, 5, 426, 0, 0, 3181, 3182, 5, 233, 0, 0, 3182, 3183, 5, 426, 0, 0, 3183, 3184, 5, 301, 0, 0, 3184, 3189, 5, 426, 0, 0, 3185, 3186, 5, 159, 0, 0, 3186, 3187, 5, 426, 0, 0, 3187, 3188, 5, 232, 0, 0, 3188, 3190, 5, 426, 0, 0, 3189, 3185, 1, 0, 0, 0, 3189, 3190, 1, 0, 0, 0, 3190, 3193, 1, 0, 0, 0, 3191, 3193, 3, 654, 327, 0, 3192, 3179, 1, 0, 0, 0, 3192, 3191, 1, 0, 0, 0, 3193, 437, 1, 0, 0, 0, 3194, 3195, 5, 184, 0, 0, 3195, 3204, 5, 128, 0, 0, 3196, 3197, 5, 184, 0, 0, 3197, 3198, 5, 128, 0, 0, 3198, 3199, 3, 654, 327, 0, 3199, 3200, 5, 426, 0, 0, 3200, 3204, 1, 0, 0, 0, 3201, 3202, 5, 184, 0, 0, 3202, 3204, 3, 482, 241, 0, 3203, 3194, 1, 0, 0, 0, 3203, 3196, 1, 0, 0, 0, 3203, 3201, 1, 0, 0, 0, 3204, 439, 1, 0, 0, 0, 3205, 3207, 5, 58, 0, 0, 3206, 3208, 5, 333, 0, 0, 3207, 3206, 1, 0, 0, 0, 3207, 3208, 1, 0, 0, 0, 3208, 3210, 1, 0, 0, 0, 3209, 3211, 5, 345, 0, 0, 3210, 3209, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3213, 1, 0, 0, 0, 3212, 3214, 5, 123, 0, 0, 3213, 3212, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3217, 5, 329, 0, 0, 3216, 3218, 3, 32, 16, 0, 3217, 3216, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3276, 3, 484, 242, 0, 3220, 3222, 3, 438, 219, 0, 3221, 3223, 3, 200, 100, 0, 3222, 3221, 1, 0, 0, 0, 3222, 3223, 1, 0, 0, 0, 3223, 3225, 1, 0, 0, 0, 3224, 3226, 3, 222, 111, 0, 3225, 3224, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3228, 1, 0, 0, 0, 3227, 3229, 3, 246, 123, 0, 3228, 3227, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3231, 1, 0, 0, 0, 3230, 3232, 3, 428, 214, 0, 3231, 3230, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3234, 1, 0, 0, 0, 3233, 3235, 3, 224, 112, 0, 3234, 3233, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3237, 1, 0, 0, 0, 3236, 3238, 3, 198, 99, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3277, 1, 0, 0, 0, 3239, 3240, 5, 399, 0, 0, 3240, 3241, 3, 250, 125, 0, 3241, 3242, 5, 400, 0, 0, 3242, 3244, 1, 0, 0, 0, 3243, 3239, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3246, 1, 0, 0, 0, 3245, 3247, 3, 196, 98, 0, 3246, 3245, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3249, 1, 0, 0, 0, 3248, 3250, 3, 200, 100, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3252, 1, 0, 0, 0, 3251, 3253, 3, 208, 104, 0, 3252, 3251, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 1, 0, 0, 0, 3254, 3256, 3, 210, 105, 0, 3255, 3254, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3258, 1, 0, 0, 0, 3257, 3259, 3, 222, 111, 0, 3258, 3257, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3261, 1, 0, 0, 0, 3260, 3262, 3, 246, 123, 0, 3261, 3260, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3264, 1, 0, 0, 0, 3263, 3265, 3, 428, 214, 0, 3264, 3263, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3267, 1, 0, 0, 0, 3266, 3268, 3, 224, 112, 0, 3267, 3266, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3270, 1, 0, 0, 0, 3269, 3271, 3, 198, 99, 0, 3270, 3269, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3274, 1, 0, 0, 0, 3272, 3273, 5, 17, 0, 0, 3273, 3275, 3, 384, 192, 0, 3274, 3272, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3277, 1, 0, 0, 0, 3276, 3220, 1, 0, 0, 0, 3276, 3243, 1, 0, 0, 0, 3277, 3341, 1, 0, 0, 0, 3278, 3279, 5, 58, 0, 0, 3279, 3280, 5, 195, 0, 0, 3280, 3282, 5, 329, 0, 0, 3281, 3283, 3, 32, 16, 0, 3282, 3281, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3338, 3, 484, 242, 0, 3285, 3287, 3, 438, 219, 0, 3286, 3288, 3, 222, 111, 0, 3287, 3286, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3290, 1, 0, 0, 0, 3289, 3291, 3, 246, 123, 0, 3290, 3289, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3293, 1, 0, 0, 0, 3292, 3294, 3, 428, 214, 0, 3293, 3292, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3296, 1, 0, 0, 0, 3295, 3297, 3, 224, 112, 0, 3296, 3295, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3299, 1, 0, 0, 0, 3298, 3300, 3, 198, 99, 0, 3299, 3298, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 3339, 1, 0, 0, 0, 3301, 3302, 5, 399, 0, 0, 3302, 3303, 3, 250, 125, 0, 3303, 3304, 5, 400, 0, 0, 3304, 3306, 1, 0, 0, 0, 3305, 3301, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3308, 1, 0, 0, 0, 3307, 3309, 3, 196, 98, 0, 3308, 3307, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3312, 3, 200, 100, 0, 3311, 3310, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, 3314, 1, 0, 0, 0, 3313, 3315, 3, 208, 104, 0, 3314, 3313, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3317, 1, 0, 0, 0, 3316, 3318, 3, 210, 105, 0, 3317, 3316, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 3320, 1, 0, 0, 0, 3319, 3321, 3, 222, 111, 0, 3320, 3319, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3323, 1, 0, 0, 0, 3322, 3324, 3, 246, 123, 0, 3323, 3322, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3326, 1, 0, 0, 0, 3325, 3327, 3, 428, 214, 0, 3326, 3325, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3329, 1, 0, 0, 0, 3328, 3330, 3, 224, 112, 0, 3329, 3328, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3332, 1, 0, 0, 0, 3331, 3333, 3, 198, 99, 0, 3332, 3331, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3336, 1, 0, 0, 0, 3334, 3335, 5, 17, 0, 0, 3335, 3337, 3, 384, 192, 0, 3336, 3334, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3339, 1, 0, 0, 0, 3338, 3285, 1, 0, 0, 0, 3338, 3305, 1, 0, 0, 0, 3339, 3341, 1, 0, 0, 0, 3340, 3205, 1, 0, 0, 0, 3340, 3278, 1, 0, 0, 0, 3341, 441, 1, 0, 0, 0, 3342, 3343, 5, 58, 0, 0, 3343, 3345, 5, 69, 0, 0, 3344, 3346, 3, 32, 16, 0, 3345, 3344, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3350, 3, 654, 327, 0, 3348, 3349, 5, 352, 0, 0, 3349, 3351, 5, 426, 0, 0, 3350, 3348, 1, 0, 0, 0, 3350, 3351, 1, 0, 0, 0, 3351, 3354, 1, 0, 0, 0, 3352, 3353, 5, 367, 0, 0, 3353, 3355, 5, 426, 0, 0, 3354, 3352, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3358, 1, 0, 0, 0, 3356, 3357, 5, 47, 0, 0, 3357, 3359, 5, 426, 0, 0, 3358, 3356, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3363, 1, 0, 0, 0, 3360, 3361, 5, 387, 0, 0, 3361, 3362, 5, 77, 0, 0, 3362, 3364, 3, 230, 115, 0, 3363, 3360, 1, 0, 0, 0, 3363, 3364, 1, 0, 0, 0, 3364, 443, 1, 0, 0, 0, 3365, 3366, 5, 101, 0, 0, 3366, 3368, 5, 69, 0, 0, 3367, 3369, 3, 30, 15, 0, 3368, 3367, 1, 0, 0, 0, 3368, 3369, 1, 0, 0, 0, 3369, 3370, 1, 0, 0, 0, 3370, 3371, 3, 654, 327, 0, 3371, 445, 1, 0, 0, 0, 3372, 3373, 3, 654, 327, 0, 3373, 3374, 5, 395, 0, 0, 3374, 3376, 1, 0, 0, 0, 3375, 3372, 1, 0, 0, 0, 3376, 3379, 1, 0, 0, 0, 3377, 3375, 1, 0, 0, 0, 3377, 3378, 1, 0, 0, 0, 3378, 3380, 1, 0, 0, 0, 3379, 3377, 1, 0, 0, 0, 3380, 3381, 5, 415, 0, 0, 3381, 447, 1, 0, 0, 0, 3382, 3387, 3, 596, 298, 0, 3383, 3384, 5, 397, 0, 0, 3384, 3386, 3, 596, 298, 0, 3385, 3383, 1, 0, 0, 0, 3386, 3389, 1, 0, 0, 0, 3387, 3385, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 449, 1, 0, 0, 0, 3389, 3387, 1, 0, 0, 0, 3390, 3395, 3, 654, 327, 0, 3391, 3392, 5, 397, 0, 0, 3392, 3394, 3, 654, 327, 0, 3393, 3391, 1, 0, 0, 0, 3394, 3397, 1, 0, 0, 0, 3395, 3393, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 451, 1, 0, 0, 0, 3397, 3395, 1, 0, 0, 0, 3398, 3399, 5, 139, 0, 0, 3399, 3400, 3, 454, 227, 0, 3400, 453, 1, 0, 0, 0, 3401, 3402, 5, 359, 0, 0, 3402, 3405, 3, 462, 231, 0, 3403, 3404, 5, 397, 0, 0, 3404, 3406, 3, 462, 231, 0, 3405, 3403, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3405, 1, 0, 0, 0, 3407, 3408, 1, 0, 0, 0, 3408, 3411, 1, 0, 0, 0, 3409, 3411, 3, 458, 229, 0, 3410, 3401, 1, 0, 0, 0, 3410, 3409, 1, 0, 0, 0, 3411, 455, 1, 0, 0, 0, 3412, 3416, 3, 472, 236, 0, 3413, 3415, 3, 466, 233, 0, 3414, 3413, 1, 0, 0, 0, 3415, 3418, 1, 0, 0, 0, 3416, 3414, 1, 0, 0, 0, 3416, 3417, 1, 0, 0, 0, 3417, 3445, 1, 0, 0, 0, 3418, 3416, 1, 0, 0, 0, 3419, 3423, 3, 506, 253, 0, 3420, 3422, 3, 466, 233, 0, 3421, 3420, 1, 0, 0, 0, 3422, 3425, 1, 0, 0, 0, 3423, 3421, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3445, 1, 0, 0, 0, 3425, 3423, 1, 0, 0, 0, 3426, 3430, 3, 490, 245, 0, 3427, 3429, 3, 466, 233, 0, 3428, 3427, 1, 0, 0, 0, 3429, 3432, 1, 0, 0, 0, 3430, 3428, 1, 0, 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3445, 1, 0, 0, 0, 3432, 3430, 1, 0, 0, 0, 3433, 3437, 3, 496, 248, 0, 3434, 3436, 3, 466, 233, 0, 3435, 3434, 1, 0, 0, 0, 3436, 3439, 1, 0, 0, 0, 3437, 3435, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3445, 1, 0, 0, 0, 3439, 3437, 1, 0, 0, 0, 3440, 3441, 5, 399, 0, 0, 3441, 3442, 3, 458, 229, 0, 3442, 3443, 5, 400, 0, 0, 3443, 3445, 1, 0, 0, 0, 3444, 3412, 1, 0, 0, 0, 3444, 3419, 1, 0, 0, 0, 3444, 3426, 1, 0, 0, 0, 3444, 3433, 1, 0, 0, 0, 3444, 3440, 1, 0, 0, 0, 3445, 457, 1, 0, 0, 0, 3446, 3464, 3, 456, 228, 0, 3447, 3448, 3, 464, 232, 0, 3448, 3460, 3, 460, 230, 0, 3449, 3456, 5, 224, 0, 0, 3450, 3457, 3, 596, 298, 0, 3451, 3454, 3, 260, 130, 0, 3452, 3453, 5, 405, 0, 0, 3453, 3455, 3, 260, 130, 0, 3454, 3452, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3457, 1, 0, 0, 0, 3456, 3450, 1, 0, 0, 0, 3456, 3451, 1, 0, 0, 0, 3457, 3461, 1, 0, 0, 0, 3458, 3459, 5, 370, 0, 0, 3459, 3461, 3, 268, 134, 0, 3460, 3449, 1, 0, 0, 0, 3460, 3458, 1, 0, 0, 0, 3460, 3461, 1, 0, 0, 0, 3461, 3463, 1, 0, 0, 0, 3462, 3447, 1, 0, 0, 0, 3463, 3466, 1, 0, 0, 0, 3464, 3462, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 459, 1, 0, 0, 0, 3466, 3464, 1, 0, 0, 0, 3467, 3472, 3, 472, 236, 0, 3468, 3472, 3, 506, 253, 0, 3469, 3472, 3, 490, 245, 0, 3470, 3472, 3, 496, 248, 0, 3471, 3467, 1, 0, 0, 0, 3471, 3468, 1, 0, 0, 0, 3471, 3469, 1, 0, 0, 0, 3471, 3470, 1, 0, 0, 0, 3472, 3476, 1, 0, 0, 0, 3473, 3475, 3, 466, 233, 0, 3474, 3473, 1, 0, 0, 0, 3475, 3478, 1, 0, 0, 0, 3476, 3474, 1, 0, 0, 0, 3476, 3477, 1, 0, 0, 0, 3477, 461, 1, 0, 0, 0, 3478, 3476, 1, 0, 0, 0, 3479, 3481, 5, 250, 0, 0, 3480, 3479, 1, 0, 0, 0, 3480, 3481, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3484, 3, 480, 240, 0, 3483, 3485, 3, 470, 235, 0, 3484, 3483, 1, 0, 0, 0, 3484, 3485, 1, 0, 0, 0, 3485, 3490, 1, 0, 0, 0, 3486, 3488, 5, 17, 0, 0, 3487, 3486, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3491, 3, 654, 327, 0, 3490, 3487, 1, 0, 0, 0, 3490, 3491, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 3493, 5, 399, 0, 0, 3493, 3494, 3, 448, 224, 0, 3494, 3495, 5, 400, 0, 0, 3495, 463, 1, 0, 0, 0, 3496, 3511, 5, 397, 0, 0, 3497, 3508, 5, 157, 0, 0, 3498, 3508, 5, 60, 0, 0, 3499, 3501, 7, 28, 0, 0, 3500, 3502, 5, 231, 0, 0, 3501, 3500, 1, 0, 0, 0, 3501, 3502, 1, 0, 0, 0, 3502, 3508, 1, 0, 0, 0, 3503, 3505, 5, 180, 0, 0, 3504, 3506, 7, 29, 0, 0, 3505, 3504, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3508, 1, 0, 0, 0, 3507, 3497, 1, 0, 0, 0, 3507, 3498, 1, 0, 0, 0, 3507, 3499, 1, 0, 0, 0, 3507, 3503, 1, 0, 0, 0, 3507, 3508, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 3511, 5, 171, 0, 0, 3510, 3496, 1, 0, 0, 0, 3510, 3507, 1, 0, 0, 0, 3511, 465, 1, 0, 0, 0, 3512, 3513, 5, 178, 0, 0, 3513, 3514, 5, 378, 0, 0, 3514, 3515, 5, 231, 0, 0, 3515, 3516, 3, 566, 283, 0, 3516, 3526, 3, 468, 234, 0, 3517, 3518, 5, 17, 0, 0, 3518, 3523, 3, 654, 327, 0, 3519, 3520, 5, 397, 0, 0, 3520, 3522, 3, 654, 327, 0, 3521, 3519, 1, 0, 0, 0, 3522, 3525, 1, 0, 0, 0, 3523, 3521, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3527, 1, 0, 0, 0, 3525, 3523, 1, 0, 0, 0, 3526, 3517, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 3570, 1, 0, 0, 0, 3528, 3530, 5, 397, 0, 0, 3529, 3528, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3531, 1, 0, 0, 0, 3531, 3567, 5, 178, 0, 0, 3532, 3533, 5, 378, 0, 0, 3533, 3534, 3, 566, 283, 0, 3534, 3544, 3, 468, 234, 0, 3535, 3536, 5, 17, 0, 0, 3536, 3541, 3, 654, 327, 0, 3537, 3538, 5, 397, 0, 0, 3538, 3540, 3, 654, 327, 0, 3539, 3537, 1, 0, 0, 0, 3540, 3543, 1, 0, 0, 0, 3541, 3539, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 3545, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3544, 3535, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 3568, 1, 0, 0, 0, 3546, 3547, 5, 329, 0, 0, 3547, 3548, 5, 399, 0, 0, 3548, 3549, 3, 502, 251, 0, 3549, 3551, 5, 400, 0, 0, 3550, 3552, 5, 17, 0, 0, 3551, 3550, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3553, 1, 0, 0, 0, 3553, 3565, 3, 468, 234, 0, 3554, 3555, 5, 399, 0, 0, 3555, 3560, 3, 654, 327, 0, 3556, 3557, 5, 397, 0, 0, 3557, 3559, 3, 654, 327, 0, 3558, 3556, 1, 0, 0, 0, 3559, 3562, 1, 0, 0, 0, 3560, 3558, 1, 0, 0, 0, 3560, 3561, 1, 0, 0, 0, 3561, 3563, 1, 0, 0, 0, 3562, 3560, 1, 0, 0, 0, 3563, 3564, 5, 400, 0, 0, 3564, 3566, 1, 0, 0, 0, 3565, 3554, 1, 0, 0, 0, 3565, 3566, 1, 0, 0, 0, 3566, 3568, 1, 0, 0, 0, 3567, 3532, 1, 0, 0, 0, 3567, 3546, 1, 0, 0, 0, 3568, 3570, 1, 0, 0, 0, 3569, 3512, 1, 0, 0, 0, 3569, 3529, 1, 0, 0, 0, 3570, 467, 1, 0, 0, 0, 3571, 3572, 3, 654, 327, 0, 3572, 469, 1, 0, 0, 0, 3573, 3574, 5, 331, 0, 0, 3574, 3575, 5, 399, 0, 0, 3575, 3576, 5, 30, 0, 0, 3576, 3577, 5, 431, 0, 0, 3577, 3578, 5, 230, 0, 0, 3578, 3579, 5, 221, 0, 0, 3579, 3589, 5, 431, 0, 0, 3580, 3581, 5, 224, 0, 0, 3581, 3586, 3, 596, 298, 0, 3582, 3583, 5, 397, 0, 0, 3583, 3585, 3, 596, 298, 0, 3584, 3582, 1, 0, 0, 0, 3585, 3588, 1, 0, 0, 0, 3586, 3584, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 3590, 1, 0, 0, 0, 3588, 3586, 1, 0, 0, 0, 3589, 3580, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 3591, 1, 0, 0, 0, 3591, 3601, 5, 400, 0, 0, 3592, 3593, 5, 331, 0, 0, 3593, 3597, 5, 399, 0, 0, 3594, 3595, 5, 431, 0, 0, 3595, 3598, 7, 30, 0, 0, 3596, 3598, 5, 430, 0, 0, 3597, 3594, 1, 0, 0, 0, 3597, 3596, 1, 0, 0, 0, 3598, 3599, 1, 0, 0, 0, 3599, 3601, 5, 400, 0, 0, 3600, 3573, 1, 0, 0, 0, 3600, 3592, 1, 0, 0, 0, 3601, 471, 1, 0, 0, 0, 3602, 3604, 3, 480, 240, 0, 3603, 3605, 3, 226, 113, 0, 3604, 3603, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, 3605, 3607, 1, 0, 0, 0, 3606, 3608, 3, 470, 235, 0, 3607, 3606, 1, 0, 0, 0, 3607, 3608, 1, 0, 0, 0, 3608, 3610, 1, 0, 0, 0, 3609, 3611, 3, 474, 237, 0, 3610, 3609, 1, 0, 0, 0, 3610, 3611, 1, 0, 0, 0, 3611, 3616, 1, 0, 0, 0, 3612, 3614, 5, 17, 0, 0, 3613, 3612, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 3615, 1, 0, 0, 0, 3615, 3617, 3, 654, 327, 0, 3616, 3613, 1, 0, 0, 0, 3616, 3617, 1, 0, 0, 0, 3617, 473, 1, 0, 0, 0, 3618, 3628, 5, 134, 0, 0, 3619, 3620, 5, 327, 0, 0, 3620, 3621, 5, 17, 0, 0, 3621, 3622, 5, 221, 0, 0, 3622, 3629, 3, 596, 298, 0, 3623, 3624, 5, 134, 0, 0, 3624, 3625, 5, 328, 0, 0, 3625, 3626, 5, 17, 0, 0, 3626, 3627, 5, 221, 0, 0, 3627, 3629, 5, 431, 0, 0, 3628, 3619, 1, 0, 0, 0, 3628, 3623, 1, 0, 0, 0, 3629, 475, 1, 0, 0, 0, 3630, 3631, 3, 654, 327, 0, 3631, 477, 1, 0, 0, 0, 3632, 3633, 3, 654, 327, 0, 3633, 479, 1, 0, 0, 0, 3634, 3637, 3, 482, 241, 0, 3635, 3637, 3, 486, 243, 0, 3636, 3634, 1, 0, 0, 0, 3636, 3635, 1, 0, 0, 0, 3637, 481, 1, 0, 0, 0, 3638, 3639, 3, 654, 327, 0, 3639, 3640, 5, 395, 0, 0, 3640, 3643, 3, 654, 327, 0, 3641, 3642, 5, 395, 0, 0, 3642, 3644, 3, 654, 327, 0, 3643, 3641, 1, 0, 0, 0, 3643, 3644, 1, 0, 0, 0, 3644, 3647, 1, 0, 0, 0, 3645, 3647, 3, 654, 327, 0, 3646, 3638, 1, 0, 0, 0, 3646, 3645, 1, 0, 0, 0, 3647, 483, 1, 0, 0, 0, 3648, 3649, 3, 654, 327, 0, 3649, 3650, 5, 395, 0, 0, 3650, 3653, 3, 654, 327, 0, 3651, 3652, 5, 395, 0, 0, 3652, 3654, 3, 654, 327, 0, 3653, 3651, 1, 0, 0, 0, 3653, 3654, 1, 0, 0, 0, 3654, 3657, 1, 0, 0, 0, 3655, 3657, 3, 654, 327, 0, 3656, 3648, 1, 0, 0, 0, 3656, 3655, 1, 0, 0, 0, 3657, 485, 1, 0, 0, 0, 3658, 3659, 3, 654, 327, 0, 3659, 3660, 5, 395, 0, 0, 3660, 3662, 1, 0, 0, 0, 3661, 3658, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3664, 3, 654, 327, 0, 3664, 487, 1, 0, 0, 0, 3665, 3666, 3, 654, 327, 0, 3666, 3667, 5, 395, 0, 0, 3667, 3669, 1, 0, 0, 0, 3668, 3665, 1, 0, 0, 0, 3668, 3669, 1, 0, 0, 0, 3669, 3670, 1, 0, 0, 0, 3670, 3671, 3, 654, 327, 0, 3671, 489, 1, 0, 0, 0, 3672, 3673, 5, 399, 0, 0, 3673, 3674, 3, 364, 182, 0, 3674, 3676, 5, 400, 0, 0, 3675, 3677, 5, 17, 0, 0, 3676, 3675, 1, 0, 0, 0, 3676, 3677, 1, 0, 0, 0, 3677, 3678, 1, 0, 0, 0, 3678, 3679, 3, 654, 327, 0, 3679, 491, 1, 0, 0, 0, 3680, 3682, 3, 558, 279, 0, 3681, 3683, 3, 556, 278, 0, 3682, 3681, 1, 0, 0, 0, 3682, 3683, 1, 0, 0, 0, 3683, 3692, 1, 0, 0, 0, 3684, 3692, 3, 556, 278, 0, 3685, 3687, 3, 562, 281, 0, 3686, 3688, 3, 564, 282, 0, 3687, 3686, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3692, 1, 0, 0, 0, 3689, 3692, 3, 564, 282, 0, 3690, 3692, 3, 560, 280, 0, 3691, 3680, 1, 0, 0, 0, 3691, 3684, 1, 0, 0, 0, 3691, 3685, 1, 0, 0, 0, 3691, 3689, 1, 0, 0, 0, 3691, 3690, 1, 0, 0, 0, 3692, 493, 1, 0, 0, 0, 3693, 3697, 3, 490, 245, 0, 3694, 3697, 3, 472, 236, 0, 3695, 3697, 3, 496, 248, 0, 3696, 3693, 1, 0, 0, 0, 3696, 3694, 1, 0, 0, 0, 3696, 3695, 1, 0, 0, 0, 3697, 495, 1, 0, 0, 0, 3698, 3700, 3, 498, 249, 0, 3699, 3701, 3, 654, 327, 0, 3700, 3699, 1, 0, 0, 0, 3700, 3701, 1, 0, 0, 0, 3701, 497, 1, 0, 0, 0, 3702, 3703, 3, 654, 327, 0, 3703, 3704, 5, 399, 0, 0, 3704, 3705, 5, 224, 0, 0, 3705, 3707, 3, 494, 247, 0, 3706, 3708, 3, 492, 246, 0, 3707, 3706, 1, 0, 0, 0, 3707, 3708, 1, 0, 0, 0, 3708, 3724, 1, 0, 0, 0, 3709, 3710, 5, 432, 0, 0, 3710, 3711, 5, 399, 0, 0, 3711, 3712, 3, 596, 298, 0, 3712, 3721, 5, 400, 0, 0, 3713, 3714, 5, 397, 0, 0, 3714, 3715, 5, 432, 0, 0, 3715, 3716, 5, 399, 0, 0, 3716, 3717, 3, 596, 298, 0, 3717, 3718, 5, 400, 0, 0, 3718, 3720, 1, 0, 0, 0, 3719, 3713, 1, 0, 0, 0, 3720, 3723, 1, 0, 0, 0, 3721, 3719, 1, 0, 0, 0, 3721, 3722, 1, 0, 0, 0, 3722, 3725, 1, 0, 0, 0, 3723, 3721, 1, 0, 0, 0, 3724, 3709, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3726, 1, 0, 0, 0, 3726, 3727, 5, 400, 0, 0, 3727, 499, 1, 0, 0, 0, 3728, 3731, 5, 384, 0, 0, 3729, 3732, 3, 596, 298, 0, 3730, 3732, 3, 260, 130, 0, 3731, 3729, 1, 0, 0, 0, 3731, 3730, 1, 0, 0, 0, 3732, 501, 1, 0, 0, 0, 3733, 3752, 5, 374, 0, 0, 3734, 3739, 3, 552, 276, 0, 3735, 3736, 5, 397, 0, 0, 3736, 3738, 3, 552, 276, 0, 3737, 3735, 1, 0, 0, 0, 3738, 3741, 1, 0, 0, 0, 3739, 3737, 1, 0, 0, 0, 3739, 3740, 1, 0, 0, 0, 3740, 3753, 1, 0, 0, 0, 3741, 3739, 1, 0, 0, 0, 3742, 3743, 5, 399, 0, 0, 3743, 3744, 3, 548, 274, 0, 3744, 3749, 5, 400, 0, 0, 3745, 3746, 5, 397, 0, 0, 3746, 3748, 3, 552, 276, 0, 3747, 3745, 1, 0, 0, 0, 3748, 3751, 1, 0, 0, 0, 3749, 3747, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 3753, 1, 0, 0, 0, 3751, 3749, 1, 0, 0, 0, 3752, 3734, 1, 0, 0, 0, 3752, 3742, 1, 0, 0, 0, 3753, 503, 1, 0, 0, 0, 3754, 3755, 5, 329, 0, 0, 3755, 3756, 5, 399, 0, 0, 3756, 3757, 3, 502, 251, 0, 3757, 3758, 5, 400, 0, 0, 3758, 505, 1, 0, 0, 0, 3759, 3761, 3, 504, 252, 0, 3760, 3762, 5, 17, 0, 0, 3761, 3760, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3763, 1, 0, 0, 0, 3763, 3773, 3, 468, 234, 0, 3764, 3765, 5, 399, 0, 0, 3765, 3770, 3, 654, 327, 0, 3766, 3767, 5, 397, 0, 0, 3767, 3769, 3, 654, 327, 0, 3768, 3766, 1, 0, 0, 0, 3769, 3772, 1, 0, 0, 0, 3770, 3768, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3774, 1, 0, 0, 0, 3772, 3770, 1, 0, 0, 0, 3773, 3764, 1, 0, 0, 0, 3773, 3774, 1, 0, 0, 0, 3774, 3775, 1, 0, 0, 0, 3775, 3776, 5, 400, 0, 0, 3776, 507, 1, 0, 0, 0, 3777, 3779, 5, 299, 0, 0, 3778, 3780, 5, 436, 0, 0, 3779, 3778, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3787, 1, 0, 0, 0, 3781, 3783, 7, 22, 0, 0, 3782, 3781, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3788, 3, 512, 256, 0, 3785, 3786, 5, 347, 0, 0, 3786, 3788, 3, 510, 255, 0, 3787, 3782, 1, 0, 0, 0, 3787, 3785, 1, 0, 0, 0, 3788, 3791, 1, 0, 0, 0, 3789, 3791, 3, 520, 260, 0, 3790, 3777, 1, 0, 0, 0, 3790, 3789, 1, 0, 0, 0, 3791, 509, 1, 0, 0, 0, 3792, 3793, 5, 399, 0, 0, 3793, 3794, 3, 524, 262, 0, 3794, 3795, 5, 400, 0, 0, 3795, 3796, 3, 212, 106, 0, 3796, 3797, 3, 216, 108, 0, 3797, 3798, 5, 370, 0, 0, 3798, 3811, 5, 426, 0, 0, 3799, 3809, 5, 17, 0, 0, 3800, 3803, 5, 399, 0, 0, 3801, 3804, 3, 450, 225, 0, 3802, 3804, 3, 248, 124, 0, 3803, 3801, 1, 0, 0, 0, 3803, 3802, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3806, 5, 400, 0, 0, 3806, 3810, 1, 0, 0, 0, 3807, 3810, 3, 450, 225, 0, 3808, 3810, 3, 248, 124, 0, 3809, 3800, 1, 0, 0, 0, 3809, 3807, 1, 0, 0, 0, 3809, 3808, 1, 0, 0, 0, 3810, 3812, 1, 0, 0, 0, 3811, 3799, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3814, 3, 212, 106, 0, 3814, 3815, 3, 214, 107, 0, 3815, 511, 1, 0, 0, 0, 3816, 3821, 3, 514, 257, 0, 3817, 3818, 5, 397, 0, 0, 3818, 3820, 3, 514, 257, 0, 3819, 3817, 1, 0, 0, 0, 3820, 3823, 1, 0, 0, 0, 3821, 3819, 1, 0, 0, 0, 3821, 3822, 1, 0, 0, 0, 3822, 513, 1, 0, 0, 0, 3823, 3821, 1, 0, 0, 0, 3824, 3850, 3, 446, 223, 0, 3825, 3828, 3, 516, 258, 0, 3826, 3828, 3, 518, 259, 0, 3827, 3825, 1, 0, 0, 0, 3827, 3826, 1, 0, 0, 0, 3828, 3845, 1, 0, 0, 0, 3829, 3831, 5, 17, 0, 0, 3830, 3829, 1, 0, 0, 0, 3830, 3831, 1, 0, 0, 0, 3831, 3832, 1, 0, 0, 0, 3832, 3846, 3, 654, 327, 0, 3833, 3834, 5, 17, 0, 0, 3834, 3835, 5, 399, 0, 0, 3835, 3840, 3, 654, 327, 0, 3836, 3837, 5, 397, 0, 0, 3837, 3839, 3, 654, 327, 0, 3838, 3836, 1, 0, 0, 0, 3839, 3842, 1, 0, 0, 0, 3840, 3838, 1, 0, 0, 0, 3840, 3841, 1, 0, 0, 0, 3841, 3843, 1, 0, 0, 0, 3842, 3840, 1, 0, 0, 0, 3843, 3844, 5, 400, 0, 0, 3844, 3846, 1, 0, 0, 0, 3845, 3830, 1, 0, 0, 0, 3845, 3833, 1, 0, 0, 0, 3845, 3846, 1, 0, 0, 0, 3846, 3850, 1, 0, 0, 0, 3847, 3848, 4, 257, 2, 0, 3848, 3850, 3, 698, 349, 0, 3849, 3824, 1, 0, 0, 0, 3849, 3827, 1, 0, 0, 0, 3849, 3847, 1, 0, 0, 0, 3850, 515, 1, 0, 0, 0, 3851, 3852, 3, 256, 128, 0, 3852, 517, 1, 0, 0, 0, 3853, 3854, 3, 596, 298, 0, 3854, 519, 1, 0, 0, 0, 3855, 3856, 7, 31, 0, 0, 3856, 3857, 3, 524, 262, 0, 3857, 3858, 3, 212, 106, 0, 3858, 3859, 3, 216, 108, 0, 3859, 3860, 5, 370, 0, 0, 3860, 3873, 5, 426, 0, 0, 3861, 3871, 5, 17, 0, 0, 3862, 3865, 5, 399, 0, 0, 3863, 3866, 3, 450, 225, 0, 3864, 3866, 3, 248, 124, 0, 3865, 3863, 1, 0, 0, 0, 3865, 3864, 1, 0, 0, 0, 3866, 3867, 1, 0, 0, 0, 3867, 3868, 5, 400, 0, 0, 3868, 3872, 1, 0, 0, 0, 3869, 3872, 3, 450, 225, 0, 3870, 3872, 3, 248, 124, 0, 3871, 3862, 1, 0, 0, 0, 3871, 3869, 1, 0, 0, 0, 3871, 3870, 1, 0, 0, 0, 3872, 3874, 1, 0, 0, 0, 3873, 3861, 1, 0, 0, 0, 3873, 3874, 1, 0, 0, 0, 3874, 3875, 1, 0, 0, 0, 3875, 3876, 3, 212, 106, 0, 3876, 3877, 3, 214, 107, 0, 3877, 521, 1, 0, 0, 0, 3878, 3881, 3, 446, 223, 0, 3879, 3881, 3, 596, 298, 0, 3880, 3878, 1, 0, 0, 0, 3880, 3879, 1, 0, 0, 0, 3881, 523, 1, 0, 0, 0, 3882, 3887, 3, 522, 261, 0, 3883, 3884, 5, 397, 0, 0, 3884, 3886, 3, 522, 261, 0, 3885, 3883, 1, 0, 0, 0, 3886, 3889, 1, 0, 0, 0, 3887, 3885, 1, 0, 0, 0, 3887, 3888, 1, 0, 0, 0, 3888, 525, 1, 0, 0, 0, 3889, 3887, 1, 0, 0, 0, 3890, 3891, 5, 386, 0, 0, 3891, 3892, 3, 654, 327, 0, 3892, 3893, 5, 17, 0, 0, 3893, 3901, 3, 528, 264, 0, 3894, 3895, 5, 397, 0, 0, 3895, 3896, 3, 654, 327, 0, 3896, 3897, 5, 17, 0, 0, 3897, 3898, 3, 528, 264, 0, 3898, 3900, 1, 0, 0, 0, 3899, 3894, 1, 0, 0, 0, 3900, 3903, 1, 0, 0, 0, 3901, 3899, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 527, 1, 0, 0, 0, 3903, 3901, 1, 0, 0, 0, 3904, 3917, 3, 654, 327, 0, 3905, 3907, 5, 399, 0, 0, 3906, 3908, 3, 654, 327, 0, 3907, 3906, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 3910, 1, 0, 0, 0, 3909, 3911, 3, 492, 246, 0, 3910, 3909, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 3913, 1, 0, 0, 0, 3912, 3914, 3, 530, 265, 0, 3913, 3912, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3915, 1, 0, 0, 0, 3915, 3917, 5, 400, 0, 0, 3916, 3904, 1, 0, 0, 0, 3916, 3905, 1, 0, 0, 0, 3917, 529, 1, 0, 0, 0, 3918, 3932, 7, 32, 0, 0, 3919, 3920, 5, 354, 0, 0, 3920, 3926, 5, 247, 0, 0, 3921, 3922, 5, 62, 0, 0, 3922, 3926, 5, 291, 0, 0, 3923, 3924, 5, 431, 0, 0, 3924, 3926, 5, 247, 0, 0, 3925, 3919, 1, 0, 0, 0, 3925, 3921, 1, 0, 0, 0, 3925, 3923, 1, 0, 0, 0, 3926, 3933, 1, 0, 0, 0, 3927, 3928, 5, 25, 0, 0, 3928, 3929, 3, 532, 266, 0, 3929, 3930, 5, 11, 0, 0, 3930, 3931, 3, 532, 266, 0, 3931, 3933, 1, 0, 0, 0, 3932, 3925, 1, 0, 0, 0, 3932, 3927, 1, 0, 0, 0, 3933, 531, 1, 0, 0, 0, 3934, 3935, 7, 33, 0, 0, 3935, 3939, 7, 34, 0, 0, 3936, 3937, 5, 62, 0, 0, 3937, 3939, 5, 291, 0, 0, 3938, 3934, 1, 0, 0, 0, 3938, 3936, 1, 0, 0, 0, 3939, 533, 1, 0, 0, 0, 3940, 3941, 5, 144, 0, 0, 3941, 3947, 5, 32, 0, 0, 3942, 3948, 3, 256, 128, 0, 3943, 3948, 3, 536, 268, 0, 3944, 3948, 3, 538, 269, 0, 3945, 3946, 5, 399, 0, 0, 3946, 3948, 5, 400, 0, 0, 3947, 3942, 1, 0, 0, 0, 3947, 3943, 1, 0, 0, 0, 3947, 3944, 1, 0, 0, 0, 3947, 3945, 1, 0, 0, 0, 3948, 535, 1, 0, 0, 0, 3949, 3952, 5, 290, 0, 0, 3950, 3952, 5, 61, 0, 0, 3951, 3949, 1, 0, 0, 0, 3951, 3950, 1, 0, 0, 0, 3952, 3953, 1, 0, 0, 0, 3953, 3954, 5, 399, 0, 0, 3954, 3959, 3, 596, 298, 0, 3955, 3956, 5, 397, 0, 0, 3956, 3958, 3, 596, 298, 0, 3957, 3955, 1, 0, 0, 0, 3958, 3961, 1, 0, 0, 0, 3959, 3957, 1, 0, 0, 0, 3959, 3960, 1, 0, 0, 0, 3960, 3962, 1, 0, 0, 0, 3961, 3959, 1, 0, 0, 0, 3962, 3963, 5, 400, 0, 0, 3963, 537, 1, 0, 0, 0, 3964, 3969, 3, 554, 277, 0, 3965, 3966, 5, 387, 0, 0, 3966, 3970, 5, 290, 0, 0, 3967, 3968, 5, 387, 0, 0, 3968, 3970, 5, 61, 0, 0, 3969, 3965, 1, 0, 0, 0, 3969, 3967, 1, 0, 0, 0, 3969, 3970, 1, 0, 0, 0, 3970, 3984, 1, 0, 0, 0, 3971, 3972, 5, 145, 0, 0, 3972, 3973, 5, 305, 0, 0, 3973, 3974, 5, 399, 0, 0, 3974, 3979, 3, 540, 270, 0, 3975, 3976, 5, 397, 0, 0, 3976, 3978, 3, 540, 270, 0, 3977, 3975, 1, 0, 0, 0, 3978, 3981, 1, 0, 0, 0, 3979, 3977, 1, 0, 0, 0, 3979, 3980, 1, 0, 0, 0, 3980, 3982, 1, 0, 0, 0, 3981, 3979, 1, 0, 0, 0, 3982, 3983, 5, 400, 0, 0, 3983, 3985, 1, 0, 0, 0, 3984, 3971, 1, 0, 0, 0, 3984, 3985, 1, 0, 0, 0, 3985, 539, 1, 0, 0, 0, 3986, 3988, 5, 399, 0, 0, 3987, 3989, 3, 596, 298, 0, 3988, 3987, 1, 0, 0, 0, 3988, 3989, 1, 0, 0, 0, 3989, 3994, 1, 0, 0, 0, 3990, 3991, 5, 397, 0, 0, 3991, 3993, 3, 596, 298, 0, 3992, 3990, 1, 0, 0, 0, 3993, 3996, 1, 0, 0, 0, 3994, 3992, 1, 0, 0, 0, 3994, 3995, 1, 0, 0, 0, 3995, 3997, 1, 0, 0, 0, 3996, 3994, 1, 0, 0, 0, 3997, 4000, 5, 400, 0, 0, 3998, 4000, 3, 596, 298, 0, 3999, 3986, 1, 0, 0, 0, 3999, 3998, 1, 0, 0, 0, 4000, 541, 1, 0, 0, 0, 4001, 4004, 5, 146, 0, 0, 4002, 4005, 3, 596, 298, 0, 4003, 4005, 3, 260, 130, 0, 4004, 4002, 1, 0, 0, 0, 4004, 4003, 1, 0, 0, 0, 4005, 543, 1, 0, 0, 0, 4006, 4007, 5, 256, 0, 0, 4007, 4008, 3, 596, 298, 0, 4008, 545, 1, 0, 0, 0, 4009, 4012, 5, 83, 0, 0, 4010, 4012, 3, 596, 298, 0, 4011, 4009, 1, 0, 0, 0, 4011, 4010, 1, 0, 0, 0, 4012, 547, 1, 0, 0, 0, 4013, 4015, 3, 596, 298, 0, 4014, 4016, 5, 17, 0, 0, 4015, 4014, 1, 0, 0, 0, 4015, 4016, 1, 0, 0, 0, 4016, 4018, 1, 0, 0, 0, 4017, 4019, 3, 654, 327, 0, 4018, 4017, 1, 0, 0, 0, 4018, 4019, 1, 0, 0, 0, 4019, 4030, 1, 0, 0, 0, 4020, 4021, 5, 397, 0, 0, 4021, 4023, 3, 596, 298, 0, 4022, 4024, 5, 17, 0, 0, 4023, 4022, 1, 0, 0, 0, 4023, 4024, 1, 0, 0, 0, 4024, 4026, 1, 0, 0, 0, 4025, 4027, 3, 654, 327, 0, 4026, 4025, 1, 0, 0, 0, 4026, 4027, 1, 0, 0, 0, 4027, 4029, 1, 0, 0, 0, 4028, 4020, 1, 0, 0, 0, 4029, 4032, 1, 0, 0, 0, 4030, 4028, 1, 0, 0, 0, 4030, 4031, 1, 0, 0, 0, 4031, 549, 1, 0, 0, 0, 4032, 4030, 1, 0, 0, 0, 4033, 4036, 3, 552, 276, 0, 4034, 4036, 3, 554, 277, 0, 4035, 4033, 1, 0, 0, 0, 4035, 4034, 1, 0, 0, 0, 4036, 551, 1, 0, 0, 0, 4037, 4038, 5, 399, 0, 0, 4038, 4039, 3, 554, 277, 0, 4039, 4040, 5, 400, 0, 0, 4040, 553, 1, 0, 0, 0, 4041, 4048, 3, 546, 273, 0, 4042, 4043, 5, 397, 0, 0, 4043, 4045, 3, 546, 273, 0, 4044, 4042, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4044, 1, 0, 0, 0, 4046, 4047, 1, 0, 0, 0, 4047, 4049, 1, 0, 0, 0, 4048, 4044, 1, 0, 0, 0, 4048, 4049, 1, 0, 0, 0, 4049, 555, 1, 0, 0, 0, 4050, 4051, 5, 229, 0, 0, 4051, 4052, 5, 32, 0, 0, 4052, 4057, 3, 312, 156, 0, 4053, 4054, 5, 397, 0, 0, 4054, 4056, 3, 312, 156, 0, 4055, 4053, 1, 0, 0, 0, 4056, 4059, 1, 0, 0, 0, 4057, 4055, 1, 0, 0, 0, 4057, 4058, 1, 0, 0, 0, 4058, 557, 1, 0, 0, 0, 4059, 4057, 1, 0, 0, 0, 4060, 4061, 5, 237, 0, 0, 4061, 4062, 5, 32, 0, 0, 4062, 4063, 3, 550, 275, 0, 4063, 559, 1, 0, 0, 0, 4064, 4065, 5, 41, 0, 0, 4065, 4066, 5, 32, 0, 0, 4066, 4067, 3, 550, 275, 0, 4067, 561, 1, 0, 0, 0, 4068, 4069, 5, 97, 0, 0, 4069, 4070, 5, 32, 0, 0, 4070, 4071, 3, 550, 275, 0, 4071, 563, 1, 0, 0, 0, 4072, 4073, 5, 314, 0, 0, 4073, 4093, 5, 32, 0, 0, 4074, 4075, 5, 399, 0, 0, 4075, 4080, 3, 312, 156, 0, 4076, 4077, 5, 397, 0, 0, 4077, 4079, 3, 312, 156, 0, 4078, 4076, 1, 0, 0, 0, 4079, 4082, 1, 0, 0, 0, 4080, 4078, 1, 0, 0, 0, 4080, 4081, 1, 0, 0, 0, 4081, 4083, 1, 0, 0, 0, 4082, 4080, 1, 0, 0, 0, 4083, 4084, 5, 400, 0, 0, 4084, 4094, 1, 0, 0, 0, 4085, 4090, 3, 312, 156, 0, 4086, 4087, 5, 397, 0, 0, 4087, 4089, 3, 312, 156, 0, 4088, 4086, 1, 0, 0, 0, 4089, 4092, 1, 0, 0, 0, 4090, 4088, 1, 0, 0, 0, 4090, 4091, 1, 0, 0, 0, 4091, 4094, 1, 0, 0, 0, 4092, 4090, 1, 0, 0, 0, 4093, 4074, 1, 0, 0, 0, 4093, 4085, 1, 0, 0, 0, 4094, 565, 1, 0, 0, 0, 4095, 4096, 5, 349, 0, 0, 4096, 4100, 5, 399, 0, 0, 4097, 4101, 5, 179, 0, 0, 4098, 4101, 5, 343, 0, 0, 4099, 4101, 5, 29, 0, 0, 4100, 4097, 1, 0, 0, 0, 4100, 4098, 1, 0, 0, 0, 4100, 4099, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 4103, 1, 0, 0, 0, 4102, 4104, 3, 522, 261, 0, 4103, 4102, 1, 0, 0, 0, 4103, 4104, 1, 0, 0, 0, 4104, 4105, 1, 0, 0, 0, 4105, 4106, 5, 139, 0, 0, 4106, 4107, 3, 522, 261, 0, 4107, 4108, 5, 400, 0, 0, 4108, 4149, 1, 0, 0, 0, 4109, 4110, 3, 574, 287, 0, 4110, 4125, 5, 399, 0, 0, 4111, 4126, 5, 415, 0, 0, 4112, 4114, 7, 22, 0, 0, 4113, 4112, 1, 0, 0, 0, 4113, 4114, 1, 0, 0, 0, 4114, 4123, 1, 0, 0, 0, 4115, 4120, 3, 522, 261, 0, 4116, 4117, 5, 397, 0, 0, 4117, 4119, 3, 522, 261, 0, 4118, 4116, 1, 0, 0, 0, 4119, 4122, 1, 0, 0, 0, 4120, 4118, 1, 0, 0, 0, 4120, 4121, 1, 0, 0, 0, 4121, 4124, 1, 0, 0, 0, 4122, 4120, 1, 0, 0, 0, 4123, 4115, 1, 0, 0, 0, 4123, 4124, 1, 0, 0, 0, 4124, 4126, 1, 0, 0, 0, 4125, 4111, 1, 0, 0, 0, 4125, 4113, 1, 0, 0, 0, 4126, 4146, 1, 0, 0, 0, 4127, 4128, 5, 400, 0, 0, 4128, 4129, 5, 388, 0, 0, 4129, 4130, 5, 144, 0, 0, 4130, 4131, 5, 399, 0, 0, 4131, 4132, 3, 556, 278, 0, 4132, 4133, 5, 400, 0, 0, 4133, 4147, 1, 0, 0, 0, 4134, 4136, 5, 400, 0, 0, 4135, 4137, 3, 568, 284, 0, 4136, 4135, 1, 0, 0, 0, 4136, 4137, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4139, 5, 234, 0, 0, 4139, 4147, 3, 528, 264, 0, 4140, 4141, 3, 568, 284, 0, 4141, 4142, 5, 400, 0, 0, 4142, 4143, 5, 234, 0, 0, 4143, 4144, 3, 528, 264, 0, 4144, 4147, 1, 0, 0, 0, 4145, 4147, 5, 400, 0, 0, 4146, 4127, 1, 0, 0, 0, 4146, 4134, 1, 0, 0, 0, 4146, 4140, 1, 0, 0, 0, 4146, 4145, 1, 0, 0, 0, 4147, 4149, 1, 0, 0, 0, 4148, 4095, 1, 0, 0, 0, 4148, 4109, 1, 0, 0, 0, 4149, 567, 1, 0, 0, 0, 4150, 4151, 7, 35, 0, 0, 4151, 4152, 5, 220, 0, 0, 4152, 569, 1, 0, 0, 0, 4153, 4154, 3, 656, 328, 0, 4154, 571, 1, 0, 0, 0, 4155, 4158, 3, 656, 328, 0, 4156, 4158, 5, 426, 0, 0, 4157, 4155, 1, 0, 0, 0, 4157, 4156, 1, 0, 0, 0, 4158, 573, 1, 0, 0, 0, 4159, 4163, 3, 656, 328, 0, 4160, 4163, 3, 662, 331, 0, 4161, 4163, 3, 652, 326, 0, 4162, 4159, 1, 0, 0, 0, 4162, 4160, 1, 0, 0, 0, 4162, 4161, 1, 0, 0, 0, 4163, 575, 1, 0, 0, 0, 4164, 4165, 5, 36, 0, 0, 4165, 4166, 5, 399, 0, 0, 4166, 4167, 3, 596, 298, 0, 4167, 4168, 5, 17, 0, 0, 4168, 4171, 3, 352, 176, 0, 4169, 4170, 5, 137, 0, 0, 4170, 4172, 5, 426, 0, 0, 4171, 4169, 1, 0, 0, 0, 4171, 4172, 1, 0, 0, 0, 4172, 4173, 1, 0, 0, 0, 4173, 4174, 5, 400, 0, 0, 4174, 577, 1, 0, 0, 0, 4175, 4176, 5, 35, 0, 0, 4176, 4182, 3, 596, 298, 0, 4177, 4178, 5, 383, 0, 0, 4178, 4179, 3, 596, 298, 0, 4179, 4180, 5, 335, 0, 0, 4180, 4181, 3, 596, 298, 0, 4181, 4183, 1, 0, 0, 0, 4182, 4177, 1, 0, 0, 0, 4183, 4184, 1, 0, 0, 0, 4184, 4182, 1, 0, 0, 0, 4184, 4185, 1, 0, 0, 0, 4185, 4188, 1, 0, 0, 0, 4186, 4187, 5, 105, 0, 0, 4187, 4189, 3, 596, 298, 0, 4188, 4186, 1, 0, 0, 0, 4188, 4189, 1, 0, 0, 0, 4189, 4190, 1, 0, 0, 0, 4190, 4191, 5, 108, 0, 0, 4191, 579, 1, 0, 0, 0, 4192, 4198, 5, 35, 0, 0, 4193, 4194, 5, 383, 0, 0, 4194, 4195, 3, 596, 298, 0, 4195, 4196, 5, 335, 0, 0, 4196, 4197, 3, 596, 298, 0, 4197, 4199, 1, 0, 0, 0, 4198, 4193, 1, 0, 0, 0, 4199, 4200, 1, 0, 0, 0, 4200, 4198, 1, 0, 0, 0, 4200, 4201, 1, 0, 0, 0, 4201, 4204, 1, 0, 0, 0, 4202, 4203, 5, 105, 0, 0, 4203, 4205, 3, 596, 298, 0, 4204, 4202, 1, 0, 0, 0, 4204, 4205, 1, 0, 0, 0, 4205, 4206, 1, 0, 0, 0, 4206, 4207, 5, 108, 0, 0, 4207, 581, 1, 0, 0, 0, 4208, 4209, 5, 132, 0, 0, 4209, 4210, 5, 399, 0, 0, 4210, 4213, 3, 596, 298, 0, 4211, 4212, 5, 341, 0, 0, 4212, 4214, 3, 586, 293, 0, 4213, 4211, 1, 0, 0, 0, 4213, 4214, 1, 0, 0, 0, 4214, 4215, 1, 0, 0, 0, 4215, 4216, 5, 400, 0, 0, 4216, 583, 1, 0, 0, 0, 4217, 4218, 5, 124, 0, 0, 4218, 4219, 5, 399, 0, 0, 4219, 4220, 3, 586, 293, 0, 4220, 4221, 5, 139, 0, 0, 4221, 4222, 3, 596, 298, 0, 4222, 4223, 5, 400, 0, 0, 4223, 585, 1, 0, 0, 0, 4224, 4233, 3, 682, 341, 0, 4225, 4233, 5, 257, 0, 0, 4226, 4233, 3, 684, 342, 0, 4227, 4233, 3, 686, 343, 0, 4228, 4233, 3, 688, 344, 0, 4229, 4233, 3, 690, 345, 0, 4230, 4233, 3, 692, 346, 0, 4231, 4233, 3, 694, 347, 0, 4232, 4224, 1, 0, 0, 0, 4232, 4225, 1, 0, 0, 0, 4232, 4226, 1, 0, 0, 0, 4232, 4227, 1, 0, 0, 0, 4232, 4228, 1, 0, 0, 0, 4232, 4229, 1, 0, 0, 0, 4232, 4230, 1, 0, 0, 0, 4232, 4231, 1, 0, 0, 0, 4233, 587, 1, 0, 0, 0, 4234, 4235, 3, 590, 295, 0, 4235, 4236, 3, 594, 297, 0, 4236, 4263, 1, 0, 0, 0, 4237, 4263, 5, 431, 0, 0, 4238, 4239, 5, 71, 0, 0, 4239, 4263, 5, 426, 0, 0, 4240, 4263, 5, 63, 0, 0, 4241, 4242, 5, 337, 0, 0, 4242, 4263, 5, 426, 0, 0, 4243, 4263, 5, 64, 0, 0, 4244, 4245, 5, 338, 0, 0, 4245, 4263, 5, 426, 0, 0, 4246, 4250, 5, 426, 0, 0, 4247, 4249, 5, 426, 0, 0, 4248, 4247, 1, 0, 0, 0, 4249, 4252, 1, 0, 0, 0, 4250, 4248, 1, 0, 0, 0, 4250, 4251, 1, 0, 0, 0, 4251, 4263, 1, 0, 0, 0, 4252, 4250, 1, 0, 0, 0, 4253, 4263, 5, 428, 0, 0, 4254, 4263, 5, 429, 0, 0, 4255, 4256, 5, 433, 0, 0, 4256, 4263, 5, 427, 0, 0, 4257, 4263, 5, 350, 0, 0, 4258, 4263, 5, 125, 0, 0, 4259, 4263, 5, 219, 0, 0, 4260, 4263, 5, 424, 0, 0, 4261, 4263, 3, 258, 129, 0, 4262, 4234, 1, 0, 0, 0, 4262, 4237, 1, 0, 0, 0, 4262, 4238, 1, 0, 0, 0, 4262, 4240, 1, 0, 0, 0, 4262, 4241, 1, 0, 0, 0, 4262, 4243, 1, 0, 0, 0, 4262, 4244, 1, 0, 0, 0, 4262, 4246, 1, 0, 0, 0, 4262, 4253, 1, 0, 0, 0, 4262, 4254, 1, 0, 0, 0, 4262, 4255, 1, 0, 0, 0, 4262, 4257, 1, 0, 0, 0, 4262, 4258, 1, 0, 0, 0, 4262, 4259, 1, 0, 0, 0, 4262, 4260, 1, 0, 0, 0, 4262, 4261, 1, 0, 0, 0, 4263, 589, 1, 0, 0, 0, 4264, 4265, 7, 27, 0, 0, 4265, 591, 1, 0, 0, 0, 4266, 4267, 5, 399, 0, 0, 4267, 4268, 3, 590, 295, 0, 4268, 4269, 5, 400, 0, 0, 4269, 4270, 3, 594, 297, 0, 4270, 4282, 1, 0, 0, 0, 4271, 4277, 5, 165, 0, 0, 4272, 4278, 3, 590, 295, 0, 4273, 4274, 5, 399, 0, 0, 4274, 4275, 3, 596, 298, 0, 4275, 4276, 5, 400, 0, 0, 4276, 4278, 1, 0, 0, 0, 4277, 4272, 1, 0, 0, 0, 4277, 4273, 1, 0, 0, 0, 4278, 4279, 1, 0, 0, 0, 4279, 4280, 3, 594, 297, 0, 4280, 4282, 1, 0, 0, 0, 4281, 4266, 1, 0, 0, 0, 4281, 4271, 1, 0, 0, 0, 4282, 593, 1, 0, 0, 0, 4283, 4284, 3, 682, 341, 0, 4284, 4285, 5, 341, 0, 0, 4285, 4286, 3, 684, 342, 0, 4286, 4298, 1, 0, 0, 0, 4287, 4288, 3, 688, 344, 0, 4288, 4289, 5, 341, 0, 0, 4289, 4290, 3, 694, 347, 0, 4290, 4298, 1, 0, 0, 0, 4291, 4298, 3, 682, 341, 0, 4292, 4298, 3, 684, 342, 0, 4293, 4298, 3, 688, 344, 0, 4294, 4298, 3, 690, 345, 0, 4295, 4298, 3, 692, 346, 0, 4296, 4298, 3, 694, 347, 0, 4297, 4283, 1, 0, 0, 0, 4297, 4287, 1, 0, 0, 0, 4297, 4291, 1, 0, 0, 0, 4297, 4292, 1, 0, 0, 0, 4297, 4293, 1, 0, 0, 0, 4297, 4294, 1, 0, 0, 0, 4297, 4295, 1, 0, 0, 0, 4297, 4296, 1, 0, 0, 0, 4298, 595, 1, 0, 0, 0, 4299, 4304, 3, 638, 319, 0, 4300, 4301, 5, 228, 0, 0, 4301, 4303, 3, 638, 319, 0, 4302, 4300, 1, 0, 0, 0, 4303, 4306, 1, 0, 0, 0, 4304, 4302, 1, 0, 0, 0, 4304, 4305, 1, 0, 0, 0, 4305, 597, 1, 0, 0, 0, 4306, 4304, 1, 0, 0, 0, 4307, 4319, 3, 588, 294, 0, 4308, 4319, 3, 592, 296, 0, 4309, 4319, 3, 576, 288, 0, 4310, 4319, 3, 584, 292, 0, 4311, 4319, 3, 582, 291, 0, 4312, 4319, 3, 578, 289, 0, 4313, 4319, 3, 580, 290, 0, 4314, 4319, 3, 616, 308, 0, 4315, 4319, 3, 566, 283, 0, 4316, 4319, 3, 552, 276, 0, 4317, 4319, 3, 654, 327, 0, 4318, 4307, 1, 0, 0, 0, 4318, 4308, 1, 0, 0, 0, 4318, 4309, 1, 0, 0, 0, 4318, 4310, 1, 0, 0, 0, 4318, 4311, 1, 0, 0, 0, 4318, 4312, 1, 0, 0, 0, 4318, 4313, 1, 0, 0, 0, 4318, 4314, 1, 0, 0, 0, 4318, 4315, 1, 0, 0, 0, 4318, 4316, 1, 0, 0, 0, 4318, 4317, 1, 0, 0, 0, 4319, 599, 1, 0, 0, 0, 4320, 4322, 7, 36, 0, 0, 4321, 4320, 1, 0, 0, 0, 4322, 4325, 1, 0, 0, 0, 4323, 4321, 1, 0, 0, 0, 4323, 4324, 1, 0, 0, 0, 4324, 4326, 1, 0, 0, 0, 4325, 4323, 1, 0, 0, 0, 4326, 4335, 3, 598, 299, 0, 4327, 4328, 5, 401, 0, 0, 4328, 4329, 3, 596, 298, 0, 4329, 4330, 5, 402, 0, 0, 4330, 4334, 1, 0, 0, 0, 4331, 4332, 5, 395, 0, 0, 4332, 4334, 3, 654, 327, 0, 4333, 4327, 1, 0, 0, 0, 4333, 4331, 1, 0, 0, 0, 4334, 4337, 1, 0, 0, 0, 4335, 4333, 1, 0, 0, 0, 4335, 4336, 1, 0, 0, 0, 4336, 601, 1, 0, 0, 0, 4337, 4335, 1, 0, 0, 0, 4338, 4343, 3, 600, 300, 0, 4339, 4340, 5, 423, 0, 0, 4340, 4342, 3, 600, 300, 0, 4341, 4339, 1, 0, 0, 0, 4342, 4345, 1, 0, 0, 0, 4343, 4341, 1, 0, 0, 0, 4343, 4344, 1, 0, 0, 0, 4344, 603, 1, 0, 0, 0, 4345, 4343, 1, 0, 0, 0, 4346, 4351, 3, 602, 301, 0, 4347, 4348, 7, 37, 0, 0, 4348, 4350, 3, 602, 301, 0, 4349, 4347, 1, 0, 0, 0, 4350, 4353, 1, 0, 0, 0, 4351, 4349, 1, 0, 0, 0, 4351, 4352, 1, 0, 0, 0, 4352, 605, 1, 0, 0, 0, 4353, 4351, 1, 0, 0, 0, 4354, 4359, 3, 604, 302, 0, 4355, 4356, 7, 38, 0, 0, 4356, 4358, 3, 604, 302, 0, 4357, 4355, 1, 0, 0, 0, 4358, 4361, 1, 0, 0, 0, 4359, 4357, 1, 0, 0, 0, 4359, 4360, 1, 0, 0, 0, 4360, 607, 1, 0, 0, 0, 4361, 4359, 1, 0, 0, 0, 4362, 4367, 3, 606, 303, 0, 4363, 4364, 5, 422, 0, 0, 4364, 4366, 3, 606, 303, 0, 4365, 4363, 1, 0, 0, 0, 4366, 4369, 1, 0, 0, 0, 4367, 4365, 1, 0, 0, 0, 4367, 4368, 1, 0, 0, 0, 4368, 609, 1, 0, 0, 0, 4369, 4367, 1, 0, 0, 0, 4370, 4375, 3, 608, 304, 0, 4371, 4372, 5, 419, 0, 0, 4372, 4374, 3, 608, 304, 0, 4373, 4371, 1, 0, 0, 0, 4374, 4377, 1, 0, 0, 0, 4375, 4373, 1, 0, 0, 0, 4375, 4376, 1, 0, 0, 0, 4376, 611, 1, 0, 0, 0, 4377, 4375, 1, 0, 0, 0, 4378, 4383, 3, 610, 305, 0, 4379, 4380, 5, 421, 0, 0, 4380, 4382, 3, 610, 305, 0, 4381, 4379, 1, 0, 0, 0, 4382, 4385, 1, 0, 0, 0, 4383, 4381, 1, 0, 0, 0, 4383, 4384, 1, 0, 0, 0, 4384, 613, 1, 0, 0, 0, 4385, 4383, 1, 0, 0, 0, 4386, 4387, 7, 39, 0, 0, 4387, 615, 1, 0, 0, 0, 4388, 4389, 5, 399, 0, 0, 4389, 4390, 3, 380, 190, 0, 4390, 4391, 5, 400, 0, 0, 4391, 617, 1, 0, 0, 0, 4392, 4394, 3, 612, 306, 0, 4393, 4395, 3, 620, 310, 0, 4394, 4393, 1, 0, 0, 0, 4394, 4395, 1, 0, 0, 0, 4395, 4399, 1, 0, 0, 0, 4396, 4397, 5, 117, 0, 0, 4397, 4399, 3, 616, 308, 0, 4398, 4392, 1, 0, 0, 0, 4398, 4396, 1, 0, 0, 0, 4399, 619, 1, 0, 0, 0, 4400, 4401, 3, 614, 307, 0, 4401, 4402, 3, 612, 306, 0, 4402, 4407, 1, 0, 0, 0, 4403, 4407, 3, 622, 311, 0, 4404, 4405, 5, 216, 0, 0, 4405, 4407, 3, 626, 313, 0, 4406, 4400, 1, 0, 0, 0, 4406, 4403, 1, 0, 0, 0, 4406, 4404, 1, 0, 0, 0, 4407, 621, 1, 0, 0, 0, 4408, 4409, 5, 154, 0, 0, 4409, 4423, 3, 624, 312, 0, 4410, 4411, 5, 25, 0, 0, 4411, 4412, 3, 612, 306, 0, 4412, 4413, 5, 11, 0, 0, 4413, 4414, 3, 612, 306, 0, 4414, 4423, 1, 0, 0, 0, 4415, 4416, 5, 184, 0, 0, 4416, 4417, 7, 40, 0, 0, 4417, 4423, 3, 552, 276, 0, 4418, 4419, 3, 650, 325, 0, 4419, 4420, 7, 41, 0, 0, 4420, 4421, 3, 616, 308, 0, 4421, 4423, 1, 0, 0, 0, 4422, 4408, 1, 0, 0, 0, 4422, 4410, 1, 0, 0, 0, 4422, 4415, 1, 0, 0, 0, 4422, 4418, 1, 0, 0, 0, 4423, 623, 1, 0, 0, 0, 4424, 4427, 3, 616, 308, 0, 4425, 4427, 3, 552, 276, 0, 4426, 4424, 1, 0, 0, 0, 4426, 4425, 1, 0, 0, 0, 4427, 625, 1, 0, 0, 0, 4428, 4429, 7, 42, 0, 0, 4429, 4432, 3, 612, 306, 0, 4430, 4432, 3, 622, 311, 0, 4431, 4428, 1, 0, 0, 0, 4431, 4430, 1, 0, 0, 0, 4432, 627, 1, 0, 0, 0, 4433, 4434, 5, 167, 0, 0, 4434, 4435, 5, 96, 0, 0, 4435, 4436, 5, 139, 0, 0, 4436, 629, 1, 0, 0, 0, 4437, 4445, 5, 405, 0, 0, 4438, 4445, 5, 406, 0, 0, 4439, 4445, 5, 407, 0, 0, 4440, 4441, 5, 167, 0, 0, 4441, 4442, 5, 216, 0, 0, 4442, 4443, 5, 96, 0, 0, 4443, 4445, 5, 139, 0, 0, 4444, 4437, 1, 0, 0, 0, 4444, 4438, 1, 0, 0, 0, 4444, 4439, 1, 0, 0, 0, 4444, 4440, 1, 0, 0, 0, 4445, 631, 1, 0, 0, 0, 4446, 4455, 3, 618, 309, 0, 4447, 4448, 3, 630, 315, 0, 4448, 4449, 3, 618, 309, 0, 4449, 4454, 1, 0, 0, 0, 4450, 4451, 3, 628, 314, 0, 4451, 4452, 3, 618, 309, 0, 4452, 4454, 1, 0, 0, 0, 4453, 4447, 1, 0, 0, 0, 4453, 4450, 1, 0, 0, 0, 4454, 4457, 1, 0, 0, 0, 4455, 4453, 1, 0, 0, 0, 4455, 4456, 1, 0, 0, 0, 4456, 633, 1, 0, 0, 0, 4457, 4455, 1, 0, 0, 0, 4458, 4465, 5, 219, 0, 0, 4459, 4465, 5, 350, 0, 0, 4460, 4465, 5, 125, 0, 0, 4461, 4465, 5, 360, 0, 0, 4462, 4463, 5, 216, 0, 0, 4463, 4465, 7, 43, 0, 0, 4464, 4458, 1, 0, 0, 0, 4464, 4459, 1, 0, 0, 0, 4464, 4460, 1, 0, 0, 0, 4464, 4461, 1, 0, 0, 0, 4464, 4462, 1, 0, 0, 0, 4465, 635, 1, 0, 0, 0, 4466, 4468, 5, 216, 0, 0, 4467, 4466, 1, 0, 0, 0, 4468, 4471, 1, 0, 0, 0, 4469, 4467, 1, 0, 0, 0, 4469, 4470, 1, 0, 0, 0, 4470, 4472, 1, 0, 0, 0, 4471, 4469, 1, 0, 0, 0, 4472, 4475, 3, 632, 316, 0, 4473, 4474, 5, 167, 0, 0, 4474, 4476, 3, 634, 317, 0, 4475, 4473, 1, 0, 0, 0, 4475, 4476, 1, 0, 0, 0, 4476, 637, 1, 0, 0, 0, 4477, 4482, 3, 636, 318, 0, 4478, 4479, 5, 11, 0, 0, 4479, 4481, 3, 636, 318, 0, 4480, 4478, 1, 0, 0, 0, 4481, 4484, 1, 0, 0, 0, 4482, 4480, 1, 0, 0, 0, 4482, 4483, 1, 0, 0, 0, 4483, 639, 1, 0, 0, 0, 4484, 4482, 1, 0, 0, 0, 4485, 4487, 3, 482, 241, 0, 4486, 4488, 3, 642, 321, 0, 4487, 4486, 1, 0, 0, 0, 4487, 4488, 1, 0, 0, 0, 4488, 641, 1, 0, 0, 0, 4489, 4490, 5, 237, 0, 0, 4490, 4491, 5, 399, 0, 0, 4491, 4496, 3, 644, 322, 0, 4492, 4493, 5, 397, 0, 0, 4493, 4495, 3, 644, 322, 0, 4494, 4492, 1, 0, 0, 0, 4495, 4498, 1, 0, 0, 0, 4496, 4494, 1, 0, 0, 0, 4496, 4497, 1, 0, 0, 0, 4497, 4499, 1, 0, 0, 0, 4498, 4496, 1, 0, 0, 0, 4499, 4500, 5, 400, 0, 0, 4500, 643, 1, 0, 0, 0, 4501, 4504, 3, 654, 327, 0, 4502, 4503, 5, 405, 0, 0, 4503, 4505, 3, 588, 294, 0, 4504, 4502, 1, 0, 0, 0, 4504, 4505, 1, 0, 0, 0, 4505, 645, 1, 0, 0, 0, 4506, 4507, 5, 399, 0, 0, 4507, 4512, 3, 648, 324, 0, 4508, 4509, 5, 397, 0, 0, 4509, 4511, 3, 648, 324, 0, 4510, 4508, 1, 0, 0, 0, 4511, 4514, 1, 0, 0, 0, 4512, 4510, 1, 0, 0, 0, 4512, 4513, 1, 0, 0, 0, 4513, 4515, 1, 0, 0, 0, 4514, 4512, 1, 0, 0, 0, 4515, 4516, 5, 400, 0, 0, 4516, 647, 1, 0, 0, 0, 4517, 4520, 3, 654, 327, 0, 4518, 4521, 5, 184, 0, 0, 4519, 4521, 3, 650, 325, 0, 4520, 4518, 1, 0, 0, 0, 4520, 4519, 1, 0, 0, 0, 4521, 4522, 1, 0, 0, 0, 4522, 4523, 3, 588, 294, 0, 4523, 649, 1, 0, 0, 0, 4524, 4525, 7, 44, 0, 0, 4525, 651, 1, 0, 0, 0, 4526, 4527, 7, 45, 0, 0, 4527, 653, 1, 0, 0, 0, 4528, 4531, 5, 432, 0, 0, 4529, 4531, 3, 660, 330, 0, 4530, 4528, 1, 0, 0, 0, 4530, 4529, 1, 0, 0, 0, 4531, 655, 1, 0, 0, 0, 4532, 4535, 3, 654, 327, 0, 4533, 4534, 5, 395, 0, 0, 4534, 4536, 3, 654, 327, 0, 4535, 4533, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 657, 1, 0, 0, 0, 4537, 4538, 3, 654, 327, 0, 4538, 659, 1, 0, 0, 0, 4539, 4540, 7, 46, 0, 0, 4540, 661, 1, 0, 0, 0, 4541, 4542, 7, 47, 0, 0, 4542, 663, 1, 0, 0, 0, 4543, 4595, 3, 654, 327, 0, 4544, 4595, 5, 299, 0, 0, 4545, 4595, 5, 171, 0, 0, 4546, 4595, 5, 237, 0, 0, 4547, 4595, 5, 198, 0, 0, 4548, 4595, 5, 268, 0, 0, 4549, 4595, 5, 369, 0, 0, 4550, 4595, 5, 241, 0, 0, 4551, 4595, 5, 165, 0, 0, 4552, 4595, 5, 292, 0, 0, 4553, 4595, 5, 356, 0, 0, 4554, 4595, 5, 144, 0, 0, 4555, 4595, 5, 203, 0, 0, 4556, 4595, 5, 219, 0, 0, 4557, 4595, 5, 126, 0, 0, 4558, 4595, 5, 188, 0, 0, 4559, 4595, 5, 101, 0, 0, 4560, 4595, 5, 329, 0, 0, 4561, 4595, 5, 224, 0, 0, 4562, 4595, 5, 291, 0, 0, 4563, 4595, 5, 145, 0, 0, 4564, 4595, 5, 304, 0, 0, 4565, 4595, 5, 135, 0, 0, 4566, 4595, 5, 318, 0, 0, 4567, 4595, 5, 161, 0, 0, 4568, 4595, 5, 54, 0, 0, 4569, 4595, 5, 166, 0, 0, 4570, 4595, 5, 358, 0, 0, 4571, 4595, 5, 45, 0, 0, 4572, 4595, 5, 347, 0, 0, 4573, 4595, 5, 96, 0, 0, 4574, 4595, 5, 154, 0, 0, 4575, 4595, 5, 269, 0, 0, 4576, 4595, 5, 337, 0, 0, 4577, 4595, 5, 225, 0, 0, 4578, 4595, 5, 108, 0, 0, 4579, 4595, 5, 141, 0, 0, 4580, 4595, 5, 365, 0, 0, 4581, 4595, 5, 21, 0, 0, 4582, 4595, 5, 78, 0, 0, 4583, 4595, 5, 374, 0, 0, 4584, 4595, 5, 336, 0, 0, 4585, 4595, 5, 167, 0, 0, 4586, 4595, 5, 134, 0, 0, 4587, 4595, 5, 216, 0, 0, 4588, 4595, 5, 27, 0, 0, 4589, 4595, 5, 370, 0, 0, 4590, 4595, 5, 263, 0, 0, 4591, 4595, 5, 25, 0, 0, 4592, 4595, 5, 62, 0, 0, 4593, 4595, 5, 17, 0, 0, 4594, 4543, 1, 0, 0, 0, 4594, 4544, 1, 0, 0, 0, 4594, 4545, 1, 0, 0, 0, 4594, 4546, 1, 0, 0, 0, 4594, 4547, 1, 0, 0, 0, 4594, 4548, 1, 0, 0, 0, 4594, 4549, 1, 0, 0, 0, 4594, 4550, 1, 0, 0, 0, 4594, 4551, 1, 0, 0, 0, 4594, 4552, 1, 0, 0, 0, 4594, 4553, 1, 0, 0, 0, 4594, 4554, 1, 0, 0, 0, 4594, 4555, 1, 0, 0, 0, 4594, 4556, 1, 0, 0, 0, 4594, 4557, 1, 0, 0, 0, 4594, 4558, 1, 0, 0, 0, 4594, 4559, 1, 0, 0, 0, 4594, 4560, 1, 0, 0, 0, 4594, 4561, 1, 0, 0, 0, 4594, 4562, 1, 0, 0, 0, 4594, 4563, 1, 0, 0, 0, 4594, 4564, 1, 0, 0, 0, 4594, 4565, 1, 0, 0, 0, 4594, 4566, 1, 0, 0, 0, 4594, 4567, 1, 0, 0, 0, 4594, 4568, 1, 0, 0, 0, 4594, 4569, 1, 0, 0, 0, 4594, 4570, 1, 0, 0, 0, 4594, 4571, 1, 0, 0, 0, 4594, 4572, 1, 0, 0, 0, 4594, 4573, 1, 0, 0, 0, 4594, 4574, 1, 0, 0, 0, 4594, 4575, 1, 0, 0, 0, 4594, 4576, 1, 0, 0, 0, 4594, 4577, 1, 0, 0, 0, 4594, 4578, 1, 0, 0, 0, 4594, 4579, 1, 0, 0, 0, 4594, 4580, 1, 0, 0, 0, 4594, 4581, 1, 0, 0, 0, 4594, 4582, 1, 0, 0, 0, 4594, 4583, 1, 0, 0, 0, 4594, 4584, 1, 0, 0, 0, 4594, 4585, 1, 0, 0, 0, 4594, 4586, 1, 0, 0, 0, 4594, 4587, 1, 0, 0, 0, 4594, 4588, 1, 0, 0, 0, 4594, 4589, 1, 0, 0, 0, 4594, 4590, 1, 0, 0, 0, 4594, 4591, 1, 0, 0, 0, 4594, 4592, 1, 0, 0, 0, 4594, 4593, 1, 0, 0, 0, 4595, 665, 1, 0, 0, 0, 4596, 4597, 5, 58, 0, 0, 4597, 4598, 5, 280, 0, 0, 4598, 4600, 5, 243, 0, 0, 4599, 4601, 3, 32, 16, 0, 4600, 4599, 1, 0, 0, 0, 4600, 4601, 1, 0, 0, 0, 4601, 4611, 1, 0, 0, 0, 4602, 4603, 3, 654, 327, 0, 4603, 4604, 5, 184, 0, 0, 4604, 4605, 3, 654, 327, 0, 4605, 4612, 1, 0, 0, 0, 4606, 4609, 3, 654, 327, 0, 4607, 4608, 5, 387, 0, 0, 4608, 4610, 3, 672, 336, 0, 4609, 4607, 1, 0, 0, 0, 4609, 4610, 1, 0, 0, 0, 4610, 4612, 1, 0, 0, 0, 4611, 4602, 1, 0, 0, 0, 4611, 4606, 1, 0, 0, 0, 4612, 4762, 1, 0, 0, 0, 4613, 4614, 5, 9, 0, 0, 4614, 4615, 5, 280, 0, 0, 4615, 4616, 5, 243, 0, 0, 4616, 4641, 3, 654, 327, 0, 4617, 4642, 5, 373, 0, 0, 4618, 4642, 3, 680, 340, 0, 4619, 4620, 5, 304, 0, 0, 4620, 4642, 3, 672, 336, 0, 4621, 4622, 5, 363, 0, 0, 4622, 4627, 3, 674, 337, 0, 4623, 4624, 5, 397, 0, 0, 4624, 4626, 3, 674, 337, 0, 4625, 4623, 1, 0, 0, 0, 4626, 4629, 1, 0, 0, 0, 4627, 4625, 1, 0, 0, 0, 4627, 4628, 1, 0, 0, 0, 4628, 4642, 1, 0, 0, 0, 4629, 4627, 1, 0, 0, 0, 4630, 4631, 5, 274, 0, 0, 4631, 4632, 5, 341, 0, 0, 4632, 4642, 3, 654, 327, 0, 4633, 4635, 3, 676, 338, 0, 4634, 4636, 3, 678, 339, 0, 4635, 4634, 1, 0, 0, 0, 4635, 4636, 1, 0, 0, 0, 4636, 4642, 1, 0, 0, 0, 4637, 4639, 3, 678, 339, 0, 4638, 4640, 3, 676, 338, 0, 4639, 4638, 1, 0, 0, 0, 4639, 4640, 1, 0, 0, 0, 4640, 4642, 1, 0, 0, 0, 4641, 4617, 1, 0, 0, 0, 4641, 4618, 1, 0, 0, 0, 4641, 4619, 1, 0, 0, 0, 4641, 4621, 1, 0, 0, 0, 4641, 4630, 1, 0, 0, 0, 4641, 4633, 1, 0, 0, 0, 4641, 4637, 1, 0, 0, 0, 4642, 4762, 1, 0, 0, 0, 4643, 4644, 5, 101, 0, 0, 4644, 4645, 5, 280, 0, 0, 4645, 4647, 5, 243, 0, 0, 4646, 4648, 3, 30, 15, 0, 4647, 4646, 1, 0, 0, 0, 4647, 4648, 1, 0, 0, 0, 4648, 4649, 1, 0, 0, 0, 4649, 4762, 3, 654, 327, 0, 4650, 4653, 3, 678, 339, 0, 4651, 4653, 3, 680, 340, 0, 4652, 4650, 1, 0, 0, 0, 4652, 4651, 1, 0, 0, 0, 4653, 4654, 1, 0, 0, 0, 4654, 4655, 5, 390, 0, 0, 4655, 4656, 5, 197, 0, 0, 4656, 4762, 1, 0, 0, 0, 4657, 4669, 5, 278, 0, 0, 4658, 4659, 5, 3, 0, 0, 4659, 4660, 5, 280, 0, 0, 4660, 4661, 5, 243, 0, 0, 4661, 4662, 5, 387, 0, 0, 4662, 4670, 3, 654, 327, 0, 4663, 4664, 5, 280, 0, 0, 4664, 4665, 5, 243, 0, 0, 4665, 4666, 3, 654, 327, 0, 4666, 4667, 5, 387, 0, 0, 4667, 4668, 3, 654, 327, 0, 4668, 4670, 1, 0, 0, 0, 4669, 4658, 1, 0, 0, 0, 4669, 4663, 1, 0, 0, 0, 4670, 4762, 1, 0, 0, 0, 4671, 4672, 5, 58, 0, 0, 4672, 4673, 5, 348, 0, 0, 4673, 4674, 3, 654, 327, 0, 4674, 4675, 5, 395, 0, 0, 4675, 4676, 3, 654, 327, 0, 4676, 4677, 5, 383, 0, 0, 4677, 4678, 3, 704, 352, 0, 4678, 4679, 5, 99, 0, 0, 4679, 4680, 3, 706, 353, 0, 4680, 4762, 1, 0, 0, 0, 4681, 4682, 5, 9, 0, 0, 4682, 4683, 5, 348, 0, 0, 4683, 4684, 3, 654, 327, 0, 4684, 4685, 5, 395, 0, 0, 4685, 4702, 3, 654, 327, 0, 4686, 4687, 5, 383, 0, 0, 4687, 4688, 3, 704, 352, 0, 4688, 4689, 5, 99, 0, 0, 4689, 4690, 3, 706, 353, 0, 4690, 4703, 1, 0, 0, 0, 4691, 4692, 5, 4, 0, 0, 4692, 4696, 5, 341, 0, 0, 4693, 4694, 5, 101, 0, 0, 4694, 4696, 5, 139, 0, 0, 4695, 4691, 1, 0, 0, 0, 4695, 4693, 1, 0, 0, 0, 4696, 4700, 1, 0, 0, 0, 4697, 4698, 5, 246, 0, 0, 4698, 4701, 3, 700, 350, 0, 4699, 4701, 5, 362, 0, 0, 4700, 4697, 1, 0, 0, 0, 4700, 4699, 1, 0, 0, 0, 4701, 4703, 1, 0, 0, 0, 4702, 4686, 1, 0, 0, 0, 4702, 4695, 1, 0, 0, 0, 4703, 4762, 1, 0, 0, 0, 4704, 4705, 5, 101, 0, 0, 4705, 4706, 5, 348, 0, 0, 4706, 4707, 3, 654, 327, 0, 4707, 4708, 5, 395, 0, 0, 4708, 4709, 3, 654, 327, 0, 4709, 4762, 1, 0, 0, 0, 4710, 4711, 5, 58, 0, 0, 4711, 4712, 5, 246, 0, 0, 4712, 4713, 3, 654, 327, 0, 4713, 4714, 5, 395, 0, 0, 4714, 4715, 3, 700, 350, 0, 4715, 4716, 5, 387, 0, 0, 4716, 4717, 3, 710, 355, 0, 4717, 4762, 1, 0, 0, 0, 4718, 4719, 5, 9, 0, 0, 4719, 4720, 5, 246, 0, 0, 4720, 4721, 3, 654, 327, 0, 4721, 4722, 5, 395, 0, 0, 4722, 4730, 3, 700, 350, 0, 4723, 4724, 5, 304, 0, 0, 4724, 4731, 3, 710, 355, 0, 4725, 4726, 5, 363, 0, 0, 4726, 4731, 5, 294, 0, 0, 4727, 4728, 7, 48, 0, 0, 4728, 4729, 5, 348, 0, 0, 4729, 4731, 3, 654, 327, 0, 4730, 4723, 1, 0, 0, 0, 4730, 4725, 1, 0, 0, 0, 4730, 4727, 1, 0, 0, 0, 4731, 4762, 1, 0, 0, 0, 4732, 4733, 5, 101, 0, 0, 4733, 4734, 5, 246, 0, 0, 4734, 4735, 3, 654, 327, 0, 4735, 4736, 5, 395, 0, 0, 4736, 4737, 3, 700, 350, 0, 4737, 4762, 1, 0, 0, 0, 4738, 4739, 7, 49, 0, 0, 4739, 4740, 3, 668, 334, 0, 4740, 4741, 5, 200, 0, 0, 4741, 4742, 5, 426, 0, 0, 4742, 4743, 5, 154, 0, 0, 4743, 4747, 3, 654, 327, 0, 4744, 4745, 5, 341, 0, 0, 4745, 4748, 3, 700, 350, 0, 4746, 4748, 5, 362, 0, 0, 4747, 4744, 1, 0, 0, 0, 4747, 4746, 1, 0, 0, 0, 4748, 4752, 1, 0, 0, 0, 4749, 4750, 5, 387, 0, 0, 4750, 4751, 5, 229, 0, 0, 4751, 4753, 5, 431, 0, 0, 4752, 4749, 1, 0, 0, 0, 4752, 4753, 1, 0, 0, 0, 4753, 4762, 1, 0, 0, 0, 4754, 4755, 5, 101, 0, 0, 4755, 4756, 3, 668, 334, 0, 4756, 4757, 5, 200, 0, 0, 4757, 4758, 5, 426, 0, 0, 4758, 4759, 5, 154, 0, 0, 4759, 4760, 3, 654, 327, 0, 4760, 4762, 1, 0, 0, 0, 4761, 4596, 1, 0, 0, 0, 4761, 4613, 1, 0, 0, 0, 4761, 4643, 1, 0, 0, 0, 4761, 4652, 1, 0, 0, 0, 4761, 4657, 1, 0, 0, 0, 4761, 4671, 1, 0, 0, 0, 4761, 4681, 1, 0, 0, 0, 4761, 4704, 1, 0, 0, 0, 4761, 4710, 1, 0, 0, 0, 4761, 4718, 1, 0, 0, 0, 4761, 4732, 1, 0, 0, 0, 4761, 4738, 1, 0, 0, 0, 4761, 4754, 1, 0, 0, 0, 4762, 667, 1, 0, 0, 0, 4763, 4764, 7, 50, 0, 0, 4764, 669, 1, 0, 0, 0, 4765, 4766, 5, 259, 0, 0, 4766, 4767, 5, 405, 0, 0, 4767, 4773, 5, 431, 0, 0, 4768, 4769, 5, 83, 0, 0, 4769, 4770, 5, 246, 0, 0, 4770, 4771, 5, 405, 0, 0, 4771, 4773, 3, 700, 350, 0, 4772, 4765, 1, 0, 0, 0, 4772, 4768, 1, 0, 0, 0, 4773, 671, 1, 0, 0, 0, 4774, 4779, 3, 670, 335, 0, 4775, 4776, 5, 397, 0, 0, 4776, 4778, 3, 670, 335, 0, 4777, 4775, 1, 0, 0, 0, 4778, 4781, 1, 0, 0, 0, 4779, 4777, 1, 0, 0, 0, 4779, 4780, 1, 0, 0, 0, 4780, 673, 1, 0, 0, 0, 4781, 4779, 1, 0, 0, 0, 4782, 4786, 5, 259, 0, 0, 4783, 4784, 5, 83, 0, 0, 4784, 4786, 5, 246, 0, 0, 4785, 4782, 1, 0, 0, 0, 4785, 4783, 1, 0, 0, 0, 4786, 675, 1, 0, 0, 0, 4787, 4790, 5, 2, 0, 0, 4788, 4789, 5, 387, 0, 0, 4789, 4791, 5, 278, 0, 0, 4790, 4788, 1, 0, 0, 0, 4790, 4791, 1, 0, 0, 0, 4791, 677, 1, 0, 0, 0, 4792, 4793, 7, 51, 0, 0, 4793, 679, 1, 0, 0, 0, 4794, 4795, 7, 52, 0, 0, 4795, 681, 1, 0, 0, 0, 4796, 4797, 7, 53, 0, 0, 4797, 683, 1, 0, 0, 0, 4798, 4799, 7, 54, 0, 0, 4799, 685, 1, 0, 0, 0, 4800, 4801, 7, 55, 0, 0, 4801, 687, 1, 0, 0, 0, 4802, 4803, 7, 56, 0, 0, 4803, 689, 1, 0, 0, 0, 4804, 4805, 7, 57, 0, 0, 4805, 691, 1, 0, 0, 0, 4806, 4807, 7, 58, 0, 0, 4807, 693, 1, 0, 0, 0, 4808, 4809, 7, 59, 0, 0, 4809, 695, 1, 0, 0, 0, 4810, 4811, 7, 60, 0, 0, 4811, 697, 1, 0, 0, 0, 4812, 4813, 1, 0, 0, 0, 4813, 699, 1, 0, 0, 0, 4814, 4819, 3, 654, 327, 0, 4815, 4816, 5, 395, 0, 0, 4816, 4818, 3, 654, 327, 0, 4817, 4815, 1, 0, 0, 0, 4818, 4821, 1, 0, 0, 0, 4819, 4817, 1, 0, 0, 0, 4819, 4820, 1, 0, 0, 0, 4820, 701, 1, 0, 0, 0, 4821, 4819, 1, 0, 0, 0, 4822, 4827, 3, 654, 327, 0, 4823, 4824, 5, 395, 0, 0, 4824, 4826, 3, 654, 327, 0, 4825, 4823, 1, 0, 0, 0, 4826, 4829, 1, 0, 0, 0, 4827, 4825, 1, 0, 0, 0, 4827, 4828, 1, 0, 0, 0, 4828, 4840, 1, 0, 0, 0, 4829, 4827, 1, 0, 0, 0, 4830, 4831, 4, 351, 3, 0, 4831, 4836, 3, 654, 327, 0, 4832, 4833, 5, 395, 0, 0, 4833, 4835, 3, 698, 349, 0, 4834, 4832, 1, 0, 0, 0, 4835, 4838, 1, 0, 0, 0, 4836, 4834, 1, 0, 0, 0, 4836, 4837, 1, 0, 0, 0, 4837, 4840, 1, 0, 0, 0, 4838, 4836, 1, 0, 0, 0, 4839, 4822, 1, 0, 0, 0, 4839, 4830, 1, 0, 0, 0, 4840, 703, 1, 0, 0, 0, 4841, 4842, 3, 654, 327, 0, 4842, 4843, 5, 411, 0, 0, 4843, 4844, 7, 27, 0, 0, 4844, 705, 1, 0, 0, 0, 4845, 4850, 5, 176, 0, 0, 4846, 4847, 5, 211, 0, 0, 4847, 4848, 5, 341, 0, 0, 4848, 4850, 3, 700, 350, 0, 4849, 4845, 1, 0, 0, 0, 4849, 4846, 1, 0, 0, 0, 4850, 707, 1, 0, 0, 0, 4851, 4852, 5, 8, 0, 0, 4852, 4853, 5, 405, 0, 0, 4853, 4864, 5, 431, 0, 0, 4854, 4855, 5, 259, 0, 0, 4855, 4856, 5, 405, 0, 0, 4856, 4864, 5, 431, 0, 0, 4857, 4858, 5, 294, 0, 0, 4858, 4859, 5, 405, 0, 0, 4859, 4864, 5, 426, 0, 0, 4860, 4861, 5, 240, 0, 0, 4861, 4862, 5, 405, 0, 0, 4862, 4864, 3, 700, 350, 0, 4863, 4851, 1, 0, 0, 0, 4863, 4854, 1, 0, 0, 0, 4863, 4857, 1, 0, 0, 0, 4863, 4860, 1, 0, 0, 0, 4864, 709, 1, 0, 0, 0, 4865, 4870, 3, 708, 354, 0, 4866, 4867, 5, 397, 0, 0, 4867, 4869, 3, 708, 354, 0, 4868, 4866, 1, 0, 0, 0, 4869, 4872, 1, 0, 0, 0, 4870, 4868, 1, 0, 0, 0, 4870, 4871, 1, 0, 0, 0, 4871, 711, 1, 0, 0, 0, 4872, 4870, 1, 0, 0, 0, 629, 715, 722, 725, 731, 737, 744, 754, 757, 761, 776, 783, 789, 794, 799, 802, 826, 833, 836, 841, 846, 852, 856, 869, 873, 877, 882, 889, 893, 898, 905, 909, 914, 962, 969, 974, 997, 1001, 1005, 1008, 1012, 1017, 1023, 1027, 1033, 1035, 1046, 1050, 1057, 1065, 1068, 1073, 1077, 1080, 1090, 1098, 1102, 1105, 1109, 1113, 1116, 1121, 1127, 1132, 1137, 1141, 1152, 1154, 1158, 1168, 1172, 1178, 1181, 1188, 1193, 1201, 1206, 1210, 1218, 1223, 1229, 1235, 1238, 1241, 1244, 1253, 1261, 1266, 1274, 1281, 1284, 1287, 1289, 1300, 1302, 1305, 1308, 1311, 1314, 1317, 1319, 1331, 1337, 1345, 1347, 1357, 1390, 1395, 1399, 1403, 1410, 1417, 1423, 1427, 1430, 1437, 1460, 1465, 1469, 1477, 1486, 1493, 1499, 1506, 1509, 1515, 1522, 1530, 1539, 1548, 1555, 1575, 1582, 1584, 1591, 1601, 1609, 1613, 1617, 1630, 1639, 1655, 1659, 1664, 1669, 1672, 1675, 1678, 1681, 1684, 1689, 1698, 1702, 1709, 1712, 1715, 1718, 1730, 1736, 1762, 1770, 1774, 1777, 1780, 1783, 1786, 1789, 1792, 1795, 1804, 1814, 1817, 1837, 1843, 1849, 1852, 1854, 1861, 1868, 1881, 1886, 1895, 1903, 1911, 1924, 1937, 1953, 1957, 1972, 1978, 1981, 1984, 1987, 1990, 1994, 2009, 2012, 2023, 2037, 2071, 2079, 2084, 2092, 2097, 2102, 2109, 2117, 2125, 2133, 2139, 2146, 2156, 2160, 2168, 2177, 2180, 2184, 2191, 2197, 2201, 2207, 2211, 2223, 2232, 2243, 2247, 2254, 2266, 2276, 2279, 2286, 2292, 2296, 2299, 2302, 2308, 2312, 2316, 2321, 2325, 2329, 2333, 2341, 2345, 2349, 2353, 2357, 2365, 2369, 2373, 2381, 2386, 2391, 2395, 2399, 2406, 2415, 2423, 2435, 2453, 2456, 2462, 2488, 2491, 2497, 2505, 2513, 2526, 2533, 2536, 2539, 2542, 2545, 2548, 2551, 2554, 2557, 2560, 2563, 2568, 2571, 2574, 2577, 2580, 2583, 2586, 2589, 2592, 2595, 2598, 2600, 2606, 2610, 2613, 2616, 2619, 2622, 2625, 2632, 2636, 2639, 2642, 2645, 2648, 2651, 2658, 2661, 2669, 2673, 2680, 2682, 2685, 2690, 2693, 2697, 2702, 2708, 2716, 2724, 2734, 2737, 2741, 2745, 2750, 2757, 2761, 2763, 2767, 2774, 2779, 2792, 2800, 2819, 2829, 2842, 2852, 2856, 2860, 2866, 2873, 2880, 2889, 2896, 2916, 2919, 2933, 2948, 2952, 2972, 2984, 2990, 2993, 2996, 3002, 3008, 3015, 3023, 3029, 3033, 3038, 3041, 3045, 3052, 3057, 3062, 3065, 3067, 3075, 3083, 3087, 3091, 3095, 3112, 3129, 3136, 3145, 3150, 3153, 3156, 3160, 3175, 3189, 3192, 3203, 3207, 3210, 3213, 3217, 3222, 3225, 3228, 3231, 3234, 3237, 3243, 3246, 3249, 3252, 3255, 3258, 3261, 3264, 3267, 3270, 3274, 3276, 3282, 3287, 3290, 3293, 3296, 3299, 3305, 3308, 3311, 3314, 3317, 3320, 3323, 3326, 3329, 3332, 3336, 3338, 3340, 3345, 3350, 3354, 3358, 3363, 3368, 3377, 3387, 3395, 3407, 3410, 3416, 3423, 3430, 3437, 3444, 3454, 3456, 3460, 3464, 3471, 3476, 3480, 3484, 3487, 3490, 3501, 3505, 3507, 3510, 3523, 3526, 3529, 3541, 3544, 3551, 3560, 3565, 3567, 3569, 3586, 3589, 3597, 3600, 3604, 3607, 3610, 3613, 3616, 3628, 3636, 3643, 3646, 3653, 3656, 3661, 3668, 3676, 3682, 3687, 3691, 3696, 3700, 3707, 3721, 3724, 3731, 3739, 3749, 3752, 3761, 3770, 3773, 3779, 3782, 3787, 3790, 3803, 3809, 3811, 3821, 3827, 3830, 3840, 3845, 3849, 3865, 3871, 3873, 3880, 3887, 3901, 3907, 3910, 3913, 3916, 3925, 3932, 3938, 3947, 3951, 3959, 3969, 3979, 3984, 3988, 3994, 3999, 4004, 4011, 4015, 4018, 4023, 4026, 4030, 4035, 4046, 4048, 4057, 4080, 4090, 4093, 4100, 4103, 4113, 4120, 4123, 4125, 4136, 4146, 4148, 4157, 4162, 4171, 4184, 4188, 4200, 4204, 4213, 4232, 4250, 4262, 4277, 4281, 4297, 4304, 4318, 4323, 4333, 4335, 4343, 4351, 4359, 4367, 4375, 4383, 4394, 4398, 4406, 4422, 4426, 4431, 4444, 4453, 4455, 4464, 4469, 4475, 4482, 4487, 4496, 4504, 4512, 4520, 4530, 4535, 4594, 4600, 4609, 4611, 4627, 4635, 4639, 4641, 4647, 4652, 4669, 4695, 4700, 4702, 4730, 4747, 4752, 4761, 4772, 4779, 4785, 4790, 4819, 4827, 4836, 4839, 4849, 4863, 4870] \ No newline at end of file +[4, 1, 438, 4889, 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, 1, 0, 5, 0, 718, 8, 0, 10, 0, 12, 0, 721, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 727, 8, 1, 1, 1, 3, 1, 730, 8, 1, 1, 2, 1, 2, 5, 2, 734, 8, 2, 10, 2, 12, 2, 737, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 742, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 749, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 759, 8, 3, 1, 3, 3, 3, 762, 8, 3, 1, 3, 1, 3, 3, 3, 766, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 781, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 788, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 794, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 799, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 804, 8, 5, 1, 5, 3, 5, 807, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 829, 8, 5, 10, 5, 12, 5, 832, 9, 5, 3, 5, 834, 8, 5, 1, 6, 1, 6, 1, 6, 3, 6, 839, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 844, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 850, 8, 6, 1, 7, 1, 7, 3, 7, 854, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 867, 8, 8, 1, 9, 1, 9, 3, 9, 871, 8, 9, 1, 9, 1, 9, 3, 9, 875, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 880, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 887, 8, 10, 1, 10, 1, 10, 3, 10, 891, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 896, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 903, 8, 12, 1, 12, 1, 12, 3, 12, 907, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 912, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 958, 8, 14, 11, 14, 12, 14, 959, 1, 14, 1, 14, 1, 14, 4, 14, 965, 8, 14, 11, 14, 12, 14, 966, 1, 14, 1, 14, 1, 14, 3, 14, 972, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 995, 8, 21, 1, 21, 1, 21, 3, 21, 999, 8, 21, 1, 21, 1, 21, 3, 21, 1003, 8, 21, 1, 21, 3, 21, 1006, 8, 21, 1, 21, 1, 21, 3, 21, 1010, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1015, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1021, 8, 21, 1, 21, 1, 21, 3, 21, 1025, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1031, 8, 21, 3, 21, 1033, 8, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 3, 24, 1044, 8, 24, 1, 24, 1, 24, 3, 24, 1048, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1055, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1063, 8, 26, 1, 26, 3, 26, 1066, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 1071, 8, 27, 1, 27, 1, 27, 3, 27, 1075, 8, 27, 1, 27, 3, 27, 1078, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 1088, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1096, 8, 29, 5, 29, 1098, 8, 29, 10, 29, 12, 29, 1101, 9, 29, 3, 29, 1103, 8, 29, 1, 30, 1, 30, 3, 30, 1107, 8, 30, 1, 31, 1, 31, 3, 31, 1111, 8, 31, 1, 31, 3, 31, 1114, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1119, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1125, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1130, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1135, 8, 32, 1, 32, 1, 32, 3, 32, 1139, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1150, 8, 33, 3, 33, 1152, 8, 33, 1, 33, 1, 33, 3, 33, 1156, 8, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1166, 8, 36, 1, 36, 1, 36, 3, 36, 1170, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1176, 8, 36, 1, 36, 3, 36, 1179, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1186, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1191, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1199, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1204, 8, 36, 1, 36, 1, 36, 3, 36, 1208, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1216, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1221, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1227, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1233, 8, 36, 1, 36, 3, 36, 1236, 8, 36, 1, 36, 3, 36, 1239, 8, 36, 1, 36, 3, 36, 1242, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1251, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1259, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1264, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1272, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1279, 8, 36, 1, 36, 3, 36, 1282, 8, 36, 1, 36, 3, 36, 1285, 8, 36, 3, 36, 1287, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1298, 8, 36, 3, 36, 1300, 8, 36, 1, 36, 3, 36, 1303, 8, 36, 1, 36, 3, 36, 1306, 8, 36, 1, 36, 3, 36, 1309, 8, 36, 1, 36, 3, 36, 1312, 8, 36, 1, 36, 3, 36, 1315, 8, 36, 3, 36, 1317, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1329, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1335, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1343, 8, 36, 3, 36, 1345, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1355, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1388, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1393, 8, 45, 1, 46, 1, 46, 3, 46, 1397, 8, 46, 1, 46, 1, 46, 3, 46, 1401, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1408, 8, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1413, 8, 47, 10, 47, 12, 47, 1416, 9, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1421, 8, 47, 1, 48, 1, 48, 3, 48, 1425, 8, 48, 1, 48, 3, 48, 1428, 8, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1433, 8, 48, 10, 48, 12, 48, 1436, 9, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1458, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1463, 8, 53, 1, 53, 1, 53, 3, 53, 1467, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 1475, 8, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1484, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1491, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1497, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1504, 8, 58, 1, 58, 3, 58, 1507, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1513, 8, 58, 1, 59, 1, 59, 1, 59, 5, 59, 1518, 8, 59, 10, 59, 12, 59, 1521, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1528, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1535, 8, 62, 10, 62, 12, 62, 1538, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1546, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1553, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 1573, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1580, 8, 69, 3, 69, 1582, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1587, 8, 70, 10, 70, 12, 70, 1590, 9, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 1599, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1607, 8, 73, 1, 74, 1, 74, 3, 74, 1611, 8, 74, 1, 74, 1, 74, 3, 74, 1615, 8, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 1628, 8, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1637, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1653, 8, 78, 1, 78, 1, 78, 3, 78, 1657, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1662, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1667, 8, 78, 1, 78, 3, 78, 1670, 8, 78, 1, 78, 3, 78, 1673, 8, 78, 1, 78, 3, 78, 1676, 8, 78, 1, 78, 3, 78, 1679, 8, 78, 1, 78, 3, 78, 1682, 8, 78, 1, 79, 1, 79, 1, 79, 3, 79, 1687, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 1696, 8, 80, 1, 80, 1, 80, 3, 80, 1700, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1707, 8, 80, 1, 80, 3, 80, 1710, 8, 80, 1, 80, 3, 80, 1713, 8, 80, 1, 80, 3, 80, 1716, 8, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1728, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 1734, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1760, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1768, 8, 88, 1, 88, 1, 88, 3, 88, 1772, 8, 88, 1, 88, 3, 88, 1775, 8, 88, 1, 88, 3, 88, 1778, 8, 88, 1, 88, 3, 88, 1781, 8, 88, 1, 88, 3, 88, 1784, 8, 88, 1, 88, 3, 88, 1787, 8, 88, 1, 88, 3, 88, 1790, 8, 88, 1, 88, 3, 88, 1793, 8, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1802, 8, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1812, 8, 90, 1, 90, 3, 90, 1815, 8, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1835, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1841, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1847, 8, 94, 1, 94, 3, 94, 1850, 8, 94, 3, 94, 1852, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 3, 96, 1859, 8, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 3, 97, 1866, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1879, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1884, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 5, 101, 1891, 8, 101, 10, 101, 12, 101, 1894, 9, 101, 1, 102, 1, 102, 1, 102, 5, 102, 1899, 8, 102, 10, 102, 12, 102, 1902, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1909, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1922, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1935, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1951, 8, 105, 1, 106, 1, 106, 3, 106, 1955, 8, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1970, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1976, 8, 110, 1, 110, 3, 110, 1979, 8, 110, 1, 110, 3, 110, 1982, 8, 110, 1, 110, 3, 110, 1985, 8, 110, 1, 110, 3, 110, 1988, 8, 110, 1, 111, 1, 111, 3, 111, 1992, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2005, 8, 114, 10, 114, 12, 114, 2008, 9, 114, 3, 114, 2010, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2019, 8, 116, 10, 116, 12, 116, 2022, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2035, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2069, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2077, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2082, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2090, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2095, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2100, 8, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2105, 8, 124, 10, 124, 12, 124, 2108, 9, 124, 1, 125, 1, 125, 1, 125, 5, 125, 2113, 8, 125, 10, 125, 12, 125, 2116, 9, 125, 1, 126, 1, 126, 1, 126, 5, 126, 2121, 8, 126, 10, 126, 12, 126, 2124, 9, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2129, 8, 127, 10, 127, 12, 127, 2132, 9, 127, 1, 128, 1, 128, 1, 128, 3, 128, 2137, 8, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 3, 130, 2144, 8, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 2154, 8, 132, 5, 132, 2156, 8, 132, 10, 132, 12, 132, 2159, 9, 132, 1, 133, 1, 133, 1, 133, 5, 133, 2164, 8, 133, 10, 133, 12, 133, 2167, 9, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 3, 135, 2175, 8, 135, 1, 135, 3, 135, 2178, 8, 135, 1, 136, 1, 136, 3, 136, 2182, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 3, 138, 2189, 8, 138, 1, 139, 1, 139, 1, 140, 1, 140, 3, 140, 2195, 8, 140, 1, 140, 1, 140, 3, 140, 2199, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2205, 8, 141, 1, 142, 1, 142, 3, 142, 2209, 8, 142, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 3, 145, 2221, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2230, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 2241, 8, 146, 1, 147, 1, 147, 3, 147, 2245, 8, 147, 1, 148, 1, 148, 1, 148, 5, 148, 2250, 8, 148, 10, 148, 12, 148, 2253, 9, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 5, 150, 2262, 8, 150, 10, 150, 12, 150, 2265, 9, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 3, 153, 2274, 8, 153, 1, 153, 3, 153, 2277, 8, 153, 1, 154, 1, 154, 1, 154, 5, 154, 2282, 8, 154, 10, 154, 12, 154, 2285, 9, 154, 1, 155, 1, 155, 1, 155, 3, 155, 2290, 8, 155, 1, 156, 1, 156, 3, 156, 2294, 8, 156, 1, 156, 3, 156, 2297, 8, 156, 1, 156, 3, 156, 2300, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2306, 8, 157, 1, 158, 1, 158, 3, 158, 2310, 8, 158, 1, 159, 1, 159, 3, 159, 2314, 8, 159, 1, 160, 1, 160, 1, 160, 3, 160, 2319, 8, 160, 1, 160, 1, 160, 3, 160, 2323, 8, 160, 1, 161, 1, 161, 3, 161, 2327, 8, 161, 1, 162, 1, 162, 3, 162, 2331, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2339, 8, 162, 1, 163, 1, 163, 3, 163, 2343, 8, 163, 1, 163, 1, 163, 3, 163, 2347, 8, 163, 1, 164, 1, 164, 3, 164, 2351, 8, 164, 1, 165, 1, 165, 3, 165, 2355, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2363, 8, 165, 1, 166, 1, 166, 3, 166, 2367, 8, 166, 1, 166, 1, 166, 3, 166, 2371, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2379, 8, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2384, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2389, 8, 169, 1, 170, 1, 170, 3, 170, 2393, 8, 170, 1, 171, 1, 171, 3, 171, 2397, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2404, 8, 172, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 5, 174, 2411, 8, 174, 10, 174, 12, 174, 2414, 9, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2421, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2433, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2451, 8, 176, 1, 176, 3, 176, 2454, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2460, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 2486, 8, 181, 1, 182, 3, 182, 2489, 8, 182, 1, 182, 1, 182, 1, 183, 1, 183, 3, 183, 2495, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 2501, 8, 184, 10, 184, 12, 184, 2504, 9, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2511, 8, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 5, 186, 2522, 8, 186, 10, 186, 12, 186, 2525, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2531, 8, 187, 1, 187, 3, 187, 2534, 8, 187, 1, 187, 3, 187, 2537, 8, 187, 1, 187, 3, 187, 2540, 8, 187, 1, 187, 3, 187, 2543, 8, 187, 1, 187, 3, 187, 2546, 8, 187, 1, 187, 3, 187, 2549, 8, 187, 1, 187, 3, 187, 2552, 8, 187, 1, 187, 3, 187, 2555, 8, 187, 1, 187, 3, 187, 2558, 8, 187, 1, 187, 3, 187, 2561, 8, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2566, 8, 187, 1, 187, 3, 187, 2569, 8, 187, 1, 187, 3, 187, 2572, 8, 187, 1, 187, 3, 187, 2575, 8, 187, 1, 187, 3, 187, 2578, 8, 187, 1, 187, 3, 187, 2581, 8, 187, 1, 187, 3, 187, 2584, 8, 187, 1, 187, 3, 187, 2587, 8, 187, 1, 187, 3, 187, 2590, 8, 187, 1, 187, 3, 187, 2593, 8, 187, 1, 187, 3, 187, 2596, 8, 187, 3, 187, 2598, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2604, 8, 188, 1, 189, 1, 189, 3, 189, 2608, 8, 189, 1, 189, 3, 189, 2611, 8, 189, 1, 189, 3, 189, 2614, 8, 189, 1, 189, 3, 189, 2617, 8, 189, 1, 189, 3, 189, 2620, 8, 189, 1, 189, 3, 189, 2623, 8, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 2630, 8, 189, 1, 190, 1, 190, 3, 190, 2634, 8, 190, 1, 190, 3, 190, 2637, 8, 190, 1, 190, 3, 190, 2640, 8, 190, 1, 190, 3, 190, 2643, 8, 190, 1, 190, 3, 190, 2646, 8, 190, 1, 190, 3, 190, 2649, 8, 190, 1, 191, 1, 191, 1, 191, 4, 191, 2654, 8, 191, 11, 191, 12, 191, 2655, 1, 192, 3, 192, 2659, 8, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2667, 8, 193, 1, 193, 1, 193, 3, 193, 2671, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2678, 8, 193, 3, 193, 2680, 8, 193, 1, 194, 3, 194, 2683, 8, 194, 1, 194, 1, 194, 1, 194, 3, 194, 2688, 8, 194, 1, 194, 3, 194, 2691, 8, 194, 1, 194, 1, 194, 3, 194, 2695, 8, 194, 1, 195, 1, 195, 1, 195, 3, 195, 2700, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 2706, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 3, 197, 2714, 8, 197, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2720, 8, 198, 10, 198, 12, 198, 2723, 9, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 5, 199, 2730, 8, 199, 10, 199, 12, 199, 2733, 9, 199, 3, 199, 2735, 8, 199, 1, 199, 1, 199, 3, 199, 2739, 8, 199, 1, 199, 1, 199, 3, 199, 2743, 8, 199, 1, 199, 1, 199, 1, 199, 3, 199, 2748, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 2755, 8, 200, 1, 201, 1, 201, 5, 201, 2759, 8, 201, 10, 201, 12, 201, 2762, 9, 201, 1, 201, 3, 201, 2765, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2772, 8, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2777, 8, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 2790, 8, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 2798, 8, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2817, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2827, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2840, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2850, 8, 209, 1, 209, 1, 209, 3, 209, 2854, 8, 209, 4, 209, 2856, 8, 209, 11, 209, 12, 209, 2857, 1, 209, 1, 209, 5, 209, 2862, 8, 209, 10, 209, 12, 209, 2865, 9, 209, 1, 209, 1, 209, 5, 209, 2869, 8, 209, 10, 209, 12, 209, 2872, 9, 209, 1, 209, 1, 209, 5, 209, 2876, 8, 209, 10, 209, 12, 209, 2879, 9, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2887, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2894, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2914, 8, 209, 1, 209, 3, 209, 2917, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2931, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2946, 8, 210, 1, 210, 1, 210, 3, 210, 2950, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 5, 210, 2968, 8, 210, 10, 210, 12, 210, 2971, 9, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2982, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2988, 8, 210, 1, 210, 3, 210, 2991, 8, 210, 1, 210, 3, 210, 2994, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3000, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3006, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3013, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3021, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3027, 8, 210, 1, 210, 1, 210, 3, 210, 3031, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3036, 8, 210, 1, 210, 3, 210, 3039, 8, 210, 1, 210, 1, 210, 3, 210, 3043, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3050, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3055, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3060, 8, 210, 1, 210, 3, 210, 3063, 8, 210, 3, 210, 3065, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3073, 8, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3081, 8, 211, 1, 211, 1, 211, 3, 211, 3085, 8, 211, 4, 211, 3087, 8, 211, 11, 211, 12, 211, 3088, 1, 211, 1, 211, 3, 211, 3093, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 3110, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 3127, 8, 213, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 3, 215, 3134, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 5, 215, 3141, 8, 215, 10, 215, 12, 215, 3144, 9, 215, 1, 215, 1, 215, 3, 215, 3148, 8, 215, 1, 215, 3, 215, 3151, 8, 215, 1, 215, 3, 215, 3154, 8, 215, 1, 216, 1, 216, 3, 216, 3158, 8, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 3173, 8, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 3187, 8, 218, 1, 218, 3, 218, 3190, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3201, 8, 219, 1, 220, 1, 220, 3, 220, 3205, 8, 220, 1, 220, 3, 220, 3208, 8, 220, 1, 220, 3, 220, 3211, 8, 220, 1, 220, 1, 220, 3, 220, 3215, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3220, 8, 220, 1, 220, 3, 220, 3223, 8, 220, 1, 220, 3, 220, 3226, 8, 220, 1, 220, 3, 220, 3229, 8, 220, 1, 220, 3, 220, 3232, 8, 220, 1, 220, 3, 220, 3235, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3241, 8, 220, 1, 220, 3, 220, 3244, 8, 220, 1, 220, 3, 220, 3247, 8, 220, 1, 220, 3, 220, 3250, 8, 220, 1, 220, 3, 220, 3253, 8, 220, 1, 220, 3, 220, 3256, 8, 220, 1, 220, 3, 220, 3259, 8, 220, 1, 220, 3, 220, 3262, 8, 220, 1, 220, 3, 220, 3265, 8, 220, 1, 220, 3, 220, 3268, 8, 220, 1, 220, 1, 220, 3, 220, 3272, 8, 220, 3, 220, 3274, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3280, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3285, 8, 220, 1, 220, 3, 220, 3288, 8, 220, 1, 220, 3, 220, 3291, 8, 220, 1, 220, 3, 220, 3294, 8, 220, 1, 220, 3, 220, 3297, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3303, 8, 220, 1, 220, 3, 220, 3306, 8, 220, 1, 220, 3, 220, 3309, 8, 220, 1, 220, 3, 220, 3312, 8, 220, 1, 220, 3, 220, 3315, 8, 220, 1, 220, 3, 220, 3318, 8, 220, 1, 220, 3, 220, 3321, 8, 220, 1, 220, 3, 220, 3324, 8, 220, 1, 220, 3, 220, 3327, 8, 220, 1, 220, 3, 220, 3330, 8, 220, 1, 220, 1, 220, 3, 220, 3334, 8, 220, 3, 220, 3336, 8, 220, 3, 220, 3338, 8, 220, 1, 221, 1, 221, 1, 221, 3, 221, 3343, 8, 221, 1, 221, 1, 221, 1, 221, 3, 221, 3348, 8, 221, 1, 221, 1, 221, 3, 221, 3352, 8, 221, 1, 221, 1, 221, 3, 221, 3356, 8, 221, 1, 221, 1, 221, 1, 221, 3, 221, 3361, 8, 221, 1, 222, 1, 222, 1, 222, 3, 222, 3366, 8, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 5, 223, 3373, 8, 223, 10, 223, 12, 223, 3376, 9, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 5, 224, 3383, 8, 224, 10, 224, 12, 224, 3386, 9, 224, 1, 225, 1, 225, 1, 225, 5, 225, 3391, 8, 225, 10, 225, 12, 225, 3394, 9, 225, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 4, 227, 3403, 8, 227, 11, 227, 12, 227, 3404, 1, 227, 3, 227, 3408, 8, 227, 1, 228, 1, 228, 5, 228, 3412, 8, 228, 10, 228, 12, 228, 3415, 9, 228, 1, 228, 1, 228, 5, 228, 3419, 8, 228, 10, 228, 12, 228, 3422, 9, 228, 1, 228, 1, 228, 5, 228, 3426, 8, 228, 10, 228, 12, 228, 3429, 9, 228, 1, 228, 1, 228, 5, 228, 3433, 8, 228, 10, 228, 12, 228, 3436, 9, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3442, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 3452, 8, 229, 3, 229, 3454, 8, 229, 1, 229, 1, 229, 3, 229, 3458, 8, 229, 5, 229, 3460, 8, 229, 10, 229, 12, 229, 3463, 9, 229, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 3469, 8, 230, 1, 230, 5, 230, 3472, 8, 230, 10, 230, 12, 230, 3475, 9, 230, 1, 231, 3, 231, 3478, 8, 231, 1, 231, 1, 231, 3, 231, 3482, 8, 231, 1, 231, 3, 231, 3485, 8, 231, 1, 231, 3, 231, 3488, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 3499, 8, 232, 1, 232, 1, 232, 3, 232, 3503, 8, 232, 3, 232, 3505, 8, 232, 1, 232, 3, 232, 3508, 8, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3519, 8, 233, 10, 233, 12, 233, 3522, 9, 233, 3, 233, 3524, 8, 233, 1, 233, 3, 233, 3527, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3537, 8, 233, 10, 233, 12, 233, 3540, 9, 233, 3, 233, 3542, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 3549, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3556, 8, 233, 10, 233, 12, 233, 3559, 9, 233, 1, 233, 1, 233, 3, 233, 3563, 8, 233, 3, 233, 3565, 8, 233, 3, 233, 3567, 8, 233, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 5, 235, 3582, 8, 235, 10, 235, 12, 235, 3585, 9, 235, 3, 235, 3587, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 3595, 8, 235, 1, 235, 3, 235, 3598, 8, 235, 1, 236, 1, 236, 3, 236, 3602, 8, 236, 1, 236, 3, 236, 3605, 8, 236, 1, 236, 3, 236, 3608, 8, 236, 1, 236, 3, 236, 3611, 8, 236, 1, 236, 3, 236, 3614, 8, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 3626, 8, 237, 1, 238, 1, 238, 1, 239, 1, 239, 1, 240, 1, 240, 3, 240, 3634, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 3641, 8, 241, 1, 241, 3, 241, 3644, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 3651, 8, 242, 1, 242, 3, 242, 3654, 8, 242, 1, 243, 1, 243, 1, 243, 3, 243, 3659, 8, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 3, 244, 3666, 8, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 3674, 8, 245, 1, 245, 1, 245, 1, 246, 1, 246, 3, 246, 3680, 8, 246, 1, 246, 1, 246, 1, 246, 3, 246, 3685, 8, 246, 1, 246, 1, 246, 3, 246, 3689, 8, 246, 1, 247, 1, 247, 1, 247, 3, 247, 3694, 8, 247, 1, 248, 1, 248, 3, 248, 3698, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 3705, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 5, 249, 3717, 8, 249, 10, 249, 12, 249, 3720, 9, 249, 3, 249, 3722, 8, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 3, 250, 3729, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 3735, 8, 251, 10, 251, 12, 251, 3738, 9, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 3745, 8, 251, 10, 251, 12, 251, 3748, 9, 251, 3, 251, 3750, 8, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 3, 253, 3759, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 3766, 8, 253, 10, 253, 12, 253, 3769, 9, 253, 3, 253, 3771, 8, 253, 1, 253, 1, 253, 1, 254, 1, 254, 3, 254, 3777, 8, 254, 1, 254, 3, 254, 3780, 8, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3785, 8, 254, 1, 254, 3, 254, 3788, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 3801, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 3807, 8, 255, 3, 255, 3809, 8, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 5, 256, 3817, 8, 256, 10, 256, 12, 256, 3820, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 3825, 8, 257, 1, 257, 3, 257, 3828, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 5, 257, 3836, 8, 257, 10, 257, 12, 257, 3839, 9, 257, 1, 257, 1, 257, 3, 257, 3843, 8, 257, 1, 257, 1, 257, 3, 257, 3847, 8, 257, 1, 258, 1, 258, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3863, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3869, 8, 260, 3, 260, 3871, 8, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 3, 261, 3878, 8, 261, 1, 262, 1, 262, 1, 262, 5, 262, 3883, 8, 262, 10, 262, 12, 262, 3886, 9, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 5, 263, 3897, 8, 263, 10, 263, 12, 263, 3900, 9, 263, 1, 264, 1, 264, 1, 264, 3, 264, 3905, 8, 264, 1, 264, 3, 264, 3908, 8, 264, 1, 264, 3, 264, 3911, 8, 264, 1, 264, 3, 264, 3914, 8, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 3923, 8, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 3930, 8, 265, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 3936, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 3945, 8, 267, 1, 268, 1, 268, 3, 268, 3949, 8, 268, 1, 268, 1, 268, 1, 268, 1, 268, 5, 268, 3955, 8, 268, 10, 268, 12, 268, 3958, 9, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 3967, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 3975, 8, 269, 10, 269, 12, 269, 3978, 9, 269, 1, 269, 1, 269, 3, 269, 3982, 8, 269, 1, 270, 1, 270, 3, 270, 3986, 8, 270, 1, 270, 1, 270, 5, 270, 3990, 8, 270, 10, 270, 12, 270, 3993, 9, 270, 1, 270, 1, 270, 3, 270, 3997, 8, 270, 1, 271, 1, 271, 1, 271, 3, 271, 4002, 8, 271, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 3, 273, 4009, 8, 273, 1, 274, 1, 274, 3, 274, 4013, 8, 274, 1, 274, 3, 274, 4016, 8, 274, 1, 274, 1, 274, 1, 274, 3, 274, 4021, 8, 274, 1, 274, 3, 274, 4024, 8, 274, 5, 274, 4026, 8, 274, 10, 274, 12, 274, 4029, 9, 274, 1, 275, 1, 275, 3, 275, 4033, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 4, 277, 4042, 8, 277, 11, 277, 12, 277, 4043, 3, 277, 4046, 8, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 4053, 8, 278, 10, 278, 12, 278, 4056, 9, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 4076, 8, 282, 10, 282, 12, 282, 4079, 9, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 4086, 8, 282, 10, 282, 12, 282, 4089, 9, 282, 3, 282, 4091, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4098, 8, 283, 1, 283, 3, 283, 4101, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4111, 8, 283, 1, 283, 1, 283, 1, 283, 5, 283, 4116, 8, 283, 10, 283, 12, 283, 4119, 9, 283, 3, 283, 4121, 8, 283, 3, 283, 4123, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4134, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4144, 8, 283, 3, 283, 4146, 8, 283, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 286, 1, 286, 3, 286, 4155, 8, 286, 1, 287, 1, 287, 1, 287, 3, 287, 4160, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 4169, 8, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 4, 289, 4180, 8, 289, 11, 289, 12, 289, 4181, 1, 289, 1, 289, 3, 289, 4186, 8, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 4, 290, 4196, 8, 290, 11, 290, 12, 290, 4197, 1, 290, 1, 290, 3, 290, 4202, 8, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 4211, 8, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 4230, 8, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 5, 294, 4246, 8, 294, 10, 294, 12, 294, 4249, 9, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 4260, 8, 294, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 4275, 8, 296, 1, 296, 1, 296, 3, 296, 4279, 8, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 4295, 8, 297, 1, 298, 1, 298, 1, 298, 5, 298, 4300, 8, 298, 10, 298, 12, 298, 4303, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 4316, 8, 299, 1, 300, 5, 300, 4319, 8, 300, 10, 300, 12, 300, 4322, 9, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 5, 300, 4331, 8, 300, 10, 300, 12, 300, 4334, 9, 300, 1, 301, 1, 301, 1, 301, 5, 301, 4339, 8, 301, 10, 301, 12, 301, 4342, 9, 301, 1, 302, 1, 302, 1, 302, 5, 302, 4347, 8, 302, 10, 302, 12, 302, 4350, 9, 302, 1, 303, 1, 303, 1, 303, 5, 303, 4355, 8, 303, 10, 303, 12, 303, 4358, 9, 303, 1, 304, 1, 304, 1, 304, 5, 304, 4363, 8, 304, 10, 304, 12, 304, 4366, 9, 304, 1, 305, 1, 305, 1, 305, 5, 305, 4371, 8, 305, 10, 305, 12, 305, 4374, 9, 305, 1, 306, 1, 306, 1, 306, 5, 306, 4379, 8, 306, 10, 306, 12, 306, 4382, 9, 306, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 3, 309, 4392, 8, 309, 1, 309, 1, 309, 3, 309, 4396, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 4404, 8, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 4420, 8, 311, 1, 312, 1, 312, 3, 312, 4424, 8, 312, 1, 313, 1, 313, 1, 313, 3, 313, 4429, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 3, 315, 4442, 8, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 5, 316, 4451, 8, 316, 10, 316, 12, 316, 4454, 9, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 4462, 8, 317, 1, 318, 5, 318, 4465, 8, 318, 10, 318, 12, 318, 4468, 9, 318, 1, 318, 1, 318, 1, 318, 3, 318, 4473, 8, 318, 1, 319, 1, 319, 1, 319, 5, 319, 4478, 8, 319, 10, 319, 12, 319, 4481, 9, 319, 1, 320, 1, 320, 3, 320, 4485, 8, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 4492, 8, 321, 10, 321, 12, 321, 4495, 9, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 3, 322, 4502, 8, 322, 1, 323, 1, 323, 1, 323, 1, 323, 5, 323, 4508, 8, 323, 10, 323, 12, 323, 4511, 9, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 3, 324, 4518, 8, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 326, 1, 326, 1, 327, 1, 327, 3, 327, 4528, 8, 327, 1, 328, 1, 328, 1, 328, 3, 328, 4533, 8, 328, 1, 329, 1, 329, 1, 330, 1, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 5, 332, 4544, 8, 332, 10, 332, 12, 332, 4547, 9, 332, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 5, 333, 4554, 8, 333, 10, 333, 12, 333, 4557, 9, 333, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 1, 334, 3, 334, 4610, 8, 334, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4616, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4625, 8, 335, 3, 335, 4627, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 5, 335, 4641, 8, 335, 10, 335, 12, 335, 4644, 9, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4651, 8, 335, 1, 335, 1, 335, 3, 335, 4655, 8, 335, 3, 335, 4657, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4663, 8, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4668, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4685, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4711, 8, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4716, 8, 335, 3, 335, 4718, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4746, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4763, 8, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4768, 8, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4777, 8, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 4788, 8, 337, 1, 338, 1, 338, 1, 338, 5, 338, 4793, 8, 338, 10, 338, 12, 338, 4796, 9, 338, 1, 339, 1, 339, 1, 339, 3, 339, 4801, 8, 339, 1, 340, 1, 340, 1, 340, 3, 340, 4806, 8, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 345, 1, 345, 1, 346, 1, 346, 1, 347, 1, 347, 1, 348, 1, 348, 1, 349, 1, 349, 1, 350, 1, 350, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 5, 352, 4833, 8, 352, 10, 352, 12, 352, 4836, 9, 352, 1, 353, 1, 353, 1, 353, 5, 353, 4841, 8, 353, 10, 353, 12, 353, 4844, 9, 353, 1, 353, 1, 353, 1, 353, 1, 353, 5, 353, 4850, 8, 353, 10, 353, 12, 353, 4853, 9, 353, 3, 353, 4855, 8, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 1, 355, 1, 355, 3, 355, 4865, 8, 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, 3, 356, 4879, 8, 356, 1, 357, 1, 357, 1, 357, 5, 357, 4884, 8, 357, 10, 357, 12, 357, 4887, 9, 357, 1, 357, 1, 830, 0, 358, 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, 0, 61, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 226, 226, 325, 325, 2, 0, 50, 50, 346, 346, 2, 0, 34, 34, 282, 282, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 295, 295, 2, 0, 68, 68, 296, 296, 1, 0, 155, 156, 2, 0, 114, 114, 307, 307, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 190, 190, 299, 299, 309, 309, 365, 365, 3, 0, 4, 4, 101, 101, 326, 326, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 351, 351, 2, 0, 217, 217, 373, 373, 2, 0, 214, 214, 272, 272, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 376, 376, 4, 0, 112, 112, 164, 164, 205, 205, 356, 356, 2, 0, 7, 7, 96, 96, 2, 0, 125, 125, 350, 350, 2, 0, 225, 225, 391, 391, 2, 0, 42, 42, 315, 315, 2, 0, 189, 189, 196, 196, 2, 0, 426, 426, 431, 431, 2, 0, 140, 140, 285, 285, 3, 0, 12, 12, 231, 231, 300, 300, 2, 0, 241, 241, 292, 292, 2, 0, 198, 198, 268, 268, 2, 0, 260, 260, 292, 292, 2, 0, 354, 354, 431, 431, 2, 0, 133, 133, 247, 247, 2, 0, 152, 152, 281, 281, 3, 0, 413, 414, 418, 418, 420, 420, 2, 0, 412, 412, 415, 417, 1, 0, 413, 414, 4, 0, 184, 184, 270, 270, 286, 286, 408, 411, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 313, 313, 3, 0, 184, 184, 270, 270, 286, 286, 4, 0, 125, 125, 219, 219, 350, 350, 360, 360, 2, 0, 405, 405, 407, 411, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 184, 184, 198, 198, 216, 216, 228, 228, 264, 264, 270, 270, 286, 286, 311, 311, 323, 324, 340, 340, 357, 357, 383, 383, 405, 417, 419, 421, 423, 423, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 183, 185, 187, 189, 193, 195, 197, 199, 202, 204, 204, 206, 209, 211, 212, 214, 215, 217, 218, 220, 220, 222, 223, 226, 227, 232, 233, 235, 236, 238, 240, 243, 246, 252, 252, 254, 255, 257, 259, 261, 262, 265, 267, 271, 282, 284, 284, 287, 288, 293, 298, 300, 303, 305, 310, 312, 312, 314, 317, 319, 325, 327, 328, 330, 330, 332, 334, 339, 340, 342, 342, 344, 346, 349, 349, 352, 353, 355, 355, 357, 357, 360, 364, 366, 368, 371, 373, 375, 375, 377, 382, 385, 385, 388, 394, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 198, 198, 264, 264, 311, 311, 337, 337, 1, 0, 395, 396, 2, 0, 4, 4, 101, 101, 2, 0, 9, 9, 58, 58, 3, 0, 14, 14, 144, 144, 369, 369, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 392, 393, 1, 0, 208, 209, 1, 0, 381, 382, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 206, 207, 1, 0, 297, 298, 1, 0, 80, 82, 5478, 0, 719, 1, 0, 0, 0, 2, 726, 1, 0, 0, 0, 4, 731, 1, 0, 0, 0, 6, 765, 1, 0, 0, 0, 8, 767, 1, 0, 0, 0, 10, 833, 1, 0, 0, 0, 12, 835, 1, 0, 0, 0, 14, 851, 1, 0, 0, 0, 16, 860, 1, 0, 0, 0, 18, 868, 1, 0, 0, 0, 20, 881, 1, 0, 0, 0, 22, 892, 1, 0, 0, 0, 24, 897, 1, 0, 0, 0, 26, 908, 1, 0, 0, 0, 28, 971, 1, 0, 0, 0, 30, 973, 1, 0, 0, 0, 32, 976, 1, 0, 0, 0, 34, 980, 1, 0, 0, 0, 36, 982, 1, 0, 0, 0, 38, 985, 1, 0, 0, 0, 40, 988, 1, 0, 0, 0, 42, 1032, 1, 0, 0, 0, 44, 1034, 1, 0, 0, 0, 46, 1037, 1, 0, 0, 0, 48, 1040, 1, 0, 0, 0, 50, 1049, 1, 0, 0, 0, 52, 1052, 1, 0, 0, 0, 54, 1067, 1, 0, 0, 0, 56, 1079, 1, 0, 0, 0, 58, 1084, 1, 0, 0, 0, 60, 1104, 1, 0, 0, 0, 62, 1108, 1, 0, 0, 0, 64, 1115, 1, 0, 0, 0, 66, 1140, 1, 0, 0, 0, 68, 1157, 1, 0, 0, 0, 70, 1159, 1, 0, 0, 0, 72, 1344, 1, 0, 0, 0, 74, 1354, 1, 0, 0, 0, 76, 1356, 1, 0, 0, 0, 78, 1361, 1, 0, 0, 0, 80, 1366, 1, 0, 0, 0, 82, 1368, 1, 0, 0, 0, 84, 1372, 1, 0, 0, 0, 86, 1376, 1, 0, 0, 0, 88, 1380, 1, 0, 0, 0, 90, 1384, 1, 0, 0, 0, 92, 1394, 1, 0, 0, 0, 94, 1405, 1, 0, 0, 0, 96, 1422, 1, 0, 0, 0, 98, 1440, 1, 0, 0, 0, 100, 1445, 1, 0, 0, 0, 102, 1448, 1, 0, 0, 0, 104, 1452, 1, 0, 0, 0, 106, 1459, 1, 0, 0, 0, 108, 1468, 1, 0, 0, 0, 110, 1474, 1, 0, 0, 0, 112, 1476, 1, 0, 0, 0, 114, 1490, 1, 0, 0, 0, 116, 1512, 1, 0, 0, 0, 118, 1514, 1, 0, 0, 0, 120, 1522, 1, 0, 0, 0, 122, 1529, 1, 0, 0, 0, 124, 1531, 1, 0, 0, 0, 126, 1545, 1, 0, 0, 0, 128, 1552, 1, 0, 0, 0, 130, 1554, 1, 0, 0, 0, 132, 1558, 1, 0, 0, 0, 134, 1562, 1, 0, 0, 0, 136, 1566, 1, 0, 0, 0, 138, 1570, 1, 0, 0, 0, 140, 1583, 1, 0, 0, 0, 142, 1591, 1, 0, 0, 0, 144, 1594, 1, 0, 0, 0, 146, 1596, 1, 0, 0, 0, 148, 1608, 1, 0, 0, 0, 150, 1618, 1, 0, 0, 0, 152, 1621, 1, 0, 0, 0, 154, 1632, 1, 0, 0, 0, 156, 1640, 1, 0, 0, 0, 158, 1683, 1, 0, 0, 0, 160, 1692, 1, 0, 0, 0, 162, 1720, 1, 0, 0, 0, 164, 1733, 1, 0, 0, 0, 166, 1735, 1, 0, 0, 0, 168, 1741, 1, 0, 0, 0, 170, 1744, 1, 0, 0, 0, 172, 1750, 1, 0, 0, 0, 174, 1756, 1, 0, 0, 0, 176, 1763, 1, 0, 0, 0, 178, 1797, 1, 0, 0, 0, 180, 1805, 1, 0, 0, 0, 182, 1818, 1, 0, 0, 0, 184, 1823, 1, 0, 0, 0, 186, 1834, 1, 0, 0, 0, 188, 1851, 1, 0, 0, 0, 190, 1853, 1, 0, 0, 0, 192, 1858, 1, 0, 0, 0, 194, 1865, 1, 0, 0, 0, 196, 1867, 1, 0, 0, 0, 198, 1870, 1, 0, 0, 0, 200, 1873, 1, 0, 0, 0, 202, 1887, 1, 0, 0, 0, 204, 1895, 1, 0, 0, 0, 206, 1921, 1, 0, 0, 0, 208, 1923, 1, 0, 0, 0, 210, 1940, 1, 0, 0, 0, 212, 1954, 1, 0, 0, 0, 214, 1956, 1, 0, 0, 0, 216, 1959, 1, 0, 0, 0, 218, 1962, 1, 0, 0, 0, 220, 1971, 1, 0, 0, 0, 222, 1991, 1, 0, 0, 0, 224, 1993, 1, 0, 0, 0, 226, 1996, 1, 0, 0, 0, 228, 2009, 1, 0, 0, 0, 230, 2011, 1, 0, 0, 0, 232, 2015, 1, 0, 0, 0, 234, 2023, 1, 0, 0, 0, 236, 2027, 1, 0, 0, 0, 238, 2036, 1, 0, 0, 0, 240, 2042, 1, 0, 0, 0, 242, 2048, 1, 0, 0, 0, 244, 2053, 1, 0, 0, 0, 246, 2099, 1, 0, 0, 0, 248, 2101, 1, 0, 0, 0, 250, 2109, 1, 0, 0, 0, 252, 2117, 1, 0, 0, 0, 254, 2125, 1, 0, 0, 0, 256, 2136, 1, 0, 0, 0, 258, 2138, 1, 0, 0, 0, 260, 2143, 1, 0, 0, 0, 262, 2145, 1, 0, 0, 0, 264, 2147, 1, 0, 0, 0, 266, 2160, 1, 0, 0, 0, 268, 2168, 1, 0, 0, 0, 270, 2177, 1, 0, 0, 0, 272, 2181, 1, 0, 0, 0, 274, 2183, 1, 0, 0, 0, 276, 2188, 1, 0, 0, 0, 278, 2190, 1, 0, 0, 0, 280, 2194, 1, 0, 0, 0, 282, 2200, 1, 0, 0, 0, 284, 2208, 1, 0, 0, 0, 286, 2210, 1, 0, 0, 0, 288, 2213, 1, 0, 0, 0, 290, 2220, 1, 0, 0, 0, 292, 2231, 1, 0, 0, 0, 294, 2244, 1, 0, 0, 0, 296, 2246, 1, 0, 0, 0, 298, 2254, 1, 0, 0, 0, 300, 2258, 1, 0, 0, 0, 302, 2266, 1, 0, 0, 0, 304, 2268, 1, 0, 0, 0, 306, 2271, 1, 0, 0, 0, 308, 2278, 1, 0, 0, 0, 310, 2286, 1, 0, 0, 0, 312, 2293, 1, 0, 0, 0, 314, 2301, 1, 0, 0, 0, 316, 2309, 1, 0, 0, 0, 318, 2313, 1, 0, 0, 0, 320, 2315, 1, 0, 0, 0, 322, 2326, 1, 0, 0, 0, 324, 2330, 1, 0, 0, 0, 326, 2342, 1, 0, 0, 0, 328, 2350, 1, 0, 0, 0, 330, 2354, 1, 0, 0, 0, 332, 2366, 1, 0, 0, 0, 334, 2378, 1, 0, 0, 0, 336, 2383, 1, 0, 0, 0, 338, 2388, 1, 0, 0, 0, 340, 2390, 1, 0, 0, 0, 342, 2394, 1, 0, 0, 0, 344, 2398, 1, 0, 0, 0, 346, 2405, 1, 0, 0, 0, 348, 2407, 1, 0, 0, 0, 350, 2420, 1, 0, 0, 0, 352, 2459, 1, 0, 0, 0, 354, 2461, 1, 0, 0, 0, 356, 2466, 1, 0, 0, 0, 358, 2471, 1, 0, 0, 0, 360, 2478, 1, 0, 0, 0, 362, 2483, 1, 0, 0, 0, 364, 2488, 1, 0, 0, 0, 366, 2494, 1, 0, 0, 0, 368, 2496, 1, 0, 0, 0, 370, 2505, 1, 0, 0, 0, 372, 2517, 1, 0, 0, 0, 374, 2597, 1, 0, 0, 0, 376, 2603, 1, 0, 0, 0, 378, 2629, 1, 0, 0, 0, 380, 2631, 1, 0, 0, 0, 382, 2653, 1, 0, 0, 0, 384, 2658, 1, 0, 0, 0, 386, 2662, 1, 0, 0, 0, 388, 2694, 1, 0, 0, 0, 390, 2696, 1, 0, 0, 0, 392, 2707, 1, 0, 0, 0, 394, 2713, 1, 0, 0, 0, 396, 2715, 1, 0, 0, 0, 398, 2747, 1, 0, 0, 0, 400, 2754, 1, 0, 0, 0, 402, 2760, 1, 0, 0, 0, 404, 2766, 1, 0, 0, 0, 406, 2781, 1, 0, 0, 0, 408, 2791, 1, 0, 0, 0, 410, 2799, 1, 0, 0, 0, 412, 2802, 1, 0, 0, 0, 414, 2805, 1, 0, 0, 0, 416, 2808, 1, 0, 0, 0, 418, 2930, 1, 0, 0, 0, 420, 3064, 1, 0, 0, 0, 422, 3092, 1, 0, 0, 0, 424, 3109, 1, 0, 0, 0, 426, 3126, 1, 0, 0, 0, 428, 3128, 1, 0, 0, 0, 430, 3131, 1, 0, 0, 0, 432, 3157, 1, 0, 0, 0, 434, 3162, 1, 0, 0, 0, 436, 3189, 1, 0, 0, 0, 438, 3200, 1, 0, 0, 0, 440, 3337, 1, 0, 0, 0, 442, 3339, 1, 0, 0, 0, 444, 3362, 1, 0, 0, 0, 446, 3374, 1, 0, 0, 0, 448, 3379, 1, 0, 0, 0, 450, 3387, 1, 0, 0, 0, 452, 3395, 1, 0, 0, 0, 454, 3407, 1, 0, 0, 0, 456, 3441, 1, 0, 0, 0, 458, 3443, 1, 0, 0, 0, 460, 3468, 1, 0, 0, 0, 462, 3477, 1, 0, 0, 0, 464, 3507, 1, 0, 0, 0, 466, 3566, 1, 0, 0, 0, 468, 3568, 1, 0, 0, 0, 470, 3597, 1, 0, 0, 0, 472, 3599, 1, 0, 0, 0, 474, 3615, 1, 0, 0, 0, 476, 3627, 1, 0, 0, 0, 478, 3629, 1, 0, 0, 0, 480, 3633, 1, 0, 0, 0, 482, 3643, 1, 0, 0, 0, 484, 3653, 1, 0, 0, 0, 486, 3658, 1, 0, 0, 0, 488, 3665, 1, 0, 0, 0, 490, 3669, 1, 0, 0, 0, 492, 3688, 1, 0, 0, 0, 494, 3693, 1, 0, 0, 0, 496, 3695, 1, 0, 0, 0, 498, 3699, 1, 0, 0, 0, 500, 3725, 1, 0, 0, 0, 502, 3730, 1, 0, 0, 0, 504, 3751, 1, 0, 0, 0, 506, 3756, 1, 0, 0, 0, 508, 3787, 1, 0, 0, 0, 510, 3789, 1, 0, 0, 0, 512, 3813, 1, 0, 0, 0, 514, 3846, 1, 0, 0, 0, 516, 3848, 1, 0, 0, 0, 518, 3850, 1, 0, 0, 0, 520, 3852, 1, 0, 0, 0, 522, 3877, 1, 0, 0, 0, 524, 3879, 1, 0, 0, 0, 526, 3887, 1, 0, 0, 0, 528, 3913, 1, 0, 0, 0, 530, 3915, 1, 0, 0, 0, 532, 3935, 1, 0, 0, 0, 534, 3937, 1, 0, 0, 0, 536, 3948, 1, 0, 0, 0, 538, 3961, 1, 0, 0, 0, 540, 3996, 1, 0, 0, 0, 542, 3998, 1, 0, 0, 0, 544, 4003, 1, 0, 0, 0, 546, 4008, 1, 0, 0, 0, 548, 4010, 1, 0, 0, 0, 550, 4032, 1, 0, 0, 0, 552, 4034, 1, 0, 0, 0, 554, 4038, 1, 0, 0, 0, 556, 4047, 1, 0, 0, 0, 558, 4057, 1, 0, 0, 0, 560, 4061, 1, 0, 0, 0, 562, 4065, 1, 0, 0, 0, 564, 4069, 1, 0, 0, 0, 566, 4145, 1, 0, 0, 0, 568, 4147, 1, 0, 0, 0, 570, 4150, 1, 0, 0, 0, 572, 4154, 1, 0, 0, 0, 574, 4159, 1, 0, 0, 0, 576, 4161, 1, 0, 0, 0, 578, 4172, 1, 0, 0, 0, 580, 4189, 1, 0, 0, 0, 582, 4205, 1, 0, 0, 0, 584, 4214, 1, 0, 0, 0, 586, 4229, 1, 0, 0, 0, 588, 4259, 1, 0, 0, 0, 590, 4261, 1, 0, 0, 0, 592, 4278, 1, 0, 0, 0, 594, 4294, 1, 0, 0, 0, 596, 4296, 1, 0, 0, 0, 598, 4315, 1, 0, 0, 0, 600, 4320, 1, 0, 0, 0, 602, 4335, 1, 0, 0, 0, 604, 4343, 1, 0, 0, 0, 606, 4351, 1, 0, 0, 0, 608, 4359, 1, 0, 0, 0, 610, 4367, 1, 0, 0, 0, 612, 4375, 1, 0, 0, 0, 614, 4383, 1, 0, 0, 0, 616, 4385, 1, 0, 0, 0, 618, 4395, 1, 0, 0, 0, 620, 4403, 1, 0, 0, 0, 622, 4419, 1, 0, 0, 0, 624, 4423, 1, 0, 0, 0, 626, 4428, 1, 0, 0, 0, 628, 4430, 1, 0, 0, 0, 630, 4441, 1, 0, 0, 0, 632, 4443, 1, 0, 0, 0, 634, 4461, 1, 0, 0, 0, 636, 4466, 1, 0, 0, 0, 638, 4474, 1, 0, 0, 0, 640, 4482, 1, 0, 0, 0, 642, 4486, 1, 0, 0, 0, 644, 4498, 1, 0, 0, 0, 646, 4503, 1, 0, 0, 0, 648, 4514, 1, 0, 0, 0, 650, 4521, 1, 0, 0, 0, 652, 4523, 1, 0, 0, 0, 654, 4527, 1, 0, 0, 0, 656, 4529, 1, 0, 0, 0, 658, 4534, 1, 0, 0, 0, 660, 4536, 1, 0, 0, 0, 662, 4538, 1, 0, 0, 0, 664, 4540, 1, 0, 0, 0, 666, 4548, 1, 0, 0, 0, 668, 4609, 1, 0, 0, 0, 670, 4776, 1, 0, 0, 0, 672, 4778, 1, 0, 0, 0, 674, 4787, 1, 0, 0, 0, 676, 4789, 1, 0, 0, 0, 678, 4800, 1, 0, 0, 0, 680, 4802, 1, 0, 0, 0, 682, 4807, 1, 0, 0, 0, 684, 4809, 1, 0, 0, 0, 686, 4811, 1, 0, 0, 0, 688, 4813, 1, 0, 0, 0, 690, 4815, 1, 0, 0, 0, 692, 4817, 1, 0, 0, 0, 694, 4819, 1, 0, 0, 0, 696, 4821, 1, 0, 0, 0, 698, 4823, 1, 0, 0, 0, 700, 4825, 1, 0, 0, 0, 702, 4827, 1, 0, 0, 0, 704, 4829, 1, 0, 0, 0, 706, 4854, 1, 0, 0, 0, 708, 4856, 1, 0, 0, 0, 710, 4864, 1, 0, 0, 0, 712, 4878, 1, 0, 0, 0, 714, 4880, 1, 0, 0, 0, 716, 718, 3, 2, 1, 0, 717, 716, 1, 0, 0, 0, 718, 721, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 722, 1, 0, 0, 0, 721, 719, 1, 0, 0, 0, 722, 723, 5, 0, 0, 1, 723, 1, 1, 0, 0, 0, 724, 727, 3, 4, 2, 0, 725, 727, 3, 10, 5, 0, 726, 724, 1, 0, 0, 0, 726, 725, 1, 0, 0, 0, 727, 729, 1, 0, 0, 0, 728, 730, 5, 398, 0, 0, 729, 728, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 3, 1, 0, 0, 0, 731, 741, 5, 119, 0, 0, 732, 734, 3, 6, 3, 0, 733, 732, 1, 0, 0, 0, 734, 737, 1, 0, 0, 0, 735, 733, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 738, 1, 0, 0, 0, 737, 735, 1, 0, 0, 0, 738, 742, 3, 10, 5, 0, 739, 740, 5, 284, 0, 0, 740, 742, 3, 364, 182, 0, 741, 735, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 5, 1, 0, 0, 0, 743, 766, 5, 122, 0, 0, 744, 766, 5, 138, 0, 0, 745, 766, 5, 88, 0, 0, 746, 748, 5, 37, 0, 0, 747, 749, 7, 0, 0, 0, 748, 747, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 766, 1, 0, 0, 0, 750, 766, 5, 192, 0, 0, 751, 766, 5, 21, 0, 0, 752, 766, 5, 10, 0, 0, 753, 766, 5, 275, 0, 0, 754, 766, 5, 191, 0, 0, 755, 766, 5, 19, 0, 0, 756, 758, 5, 377, 0, 0, 757, 759, 5, 225, 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 761, 1, 0, 0, 0, 760, 762, 3, 8, 4, 0, 761, 760, 1, 0, 0, 0, 761, 762, 1, 0, 0, 0, 762, 766, 1, 0, 0, 0, 763, 766, 5, 79, 0, 0, 764, 766, 5, 78, 0, 0, 765, 743, 1, 0, 0, 0, 765, 744, 1, 0, 0, 0, 765, 745, 1, 0, 0, 0, 765, 746, 1, 0, 0, 0, 765, 750, 1, 0, 0, 0, 765, 751, 1, 0, 0, 0, 765, 752, 1, 0, 0, 0, 765, 753, 1, 0, 0, 0, 765, 754, 1, 0, 0, 0, 765, 755, 1, 0, 0, 0, 765, 756, 1, 0, 0, 0, 765, 763, 1, 0, 0, 0, 765, 764, 1, 0, 0, 0, 766, 7, 1, 0, 0, 0, 767, 768, 7, 1, 0, 0, 768, 9, 1, 0, 0, 0, 769, 834, 3, 364, 182, 0, 770, 834, 3, 12, 6, 0, 771, 834, 3, 16, 8, 0, 772, 834, 3, 18, 9, 0, 773, 834, 3, 20, 10, 0, 774, 834, 3, 24, 12, 0, 775, 776, 5, 277, 0, 0, 776, 777, 5, 320, 0, 0, 777, 780, 3, 476, 238, 0, 778, 779, 5, 387, 0, 0, 779, 781, 3, 230, 115, 0, 780, 778, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 834, 1, 0, 0, 0, 782, 834, 3, 28, 14, 0, 783, 784, 5, 86, 0, 0, 784, 785, 5, 139, 0, 0, 785, 787, 3, 482, 241, 0, 786, 788, 3, 500, 250, 0, 787, 786, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 834, 1, 0, 0, 0, 789, 790, 5, 365, 0, 0, 790, 791, 3, 482, 241, 0, 791, 793, 3, 396, 198, 0, 792, 794, 3, 500, 250, 0, 793, 792, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 834, 1, 0, 0, 0, 795, 834, 3, 398, 199, 0, 796, 798, 5, 203, 0, 0, 797, 799, 5, 436, 0, 0, 798, 797, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 5, 166, 0, 0, 801, 806, 3, 482, 241, 0, 802, 804, 5, 17, 0, 0, 803, 802, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 807, 3, 654, 327, 0, 806, 803, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 809, 5, 370, 0, 0, 809, 810, 3, 460, 230, 0, 810, 811, 5, 224, 0, 0, 811, 812, 3, 596, 298, 0, 812, 813, 3, 402, 201, 0, 813, 834, 1, 0, 0, 0, 814, 815, 5, 249, 0, 0, 815, 816, 3, 654, 327, 0, 816, 817, 5, 139, 0, 0, 817, 818, 3, 364, 182, 0, 818, 834, 1, 0, 0, 0, 819, 820, 5, 115, 0, 0, 820, 821, 3, 654, 327, 0, 821, 822, 5, 370, 0, 0, 822, 823, 3, 300, 150, 0, 823, 834, 1, 0, 0, 0, 824, 825, 5, 304, 0, 0, 825, 826, 3, 664, 332, 0, 826, 830, 5, 405, 0, 0, 827, 829, 9, 0, 0, 0, 828, 827, 1, 0, 0, 0, 829, 832, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 831, 834, 1, 0, 0, 0, 832, 830, 1, 0, 0, 0, 833, 769, 1, 0, 0, 0, 833, 770, 1, 0, 0, 0, 833, 771, 1, 0, 0, 0, 833, 772, 1, 0, 0, 0, 833, 773, 1, 0, 0, 0, 833, 774, 1, 0, 0, 0, 833, 775, 1, 0, 0, 0, 833, 782, 1, 0, 0, 0, 833, 783, 1, 0, 0, 0, 833, 789, 1, 0, 0, 0, 833, 795, 1, 0, 0, 0, 833, 796, 1, 0, 0, 0, 833, 814, 1, 0, 0, 0, 833, 819, 1, 0, 0, 0, 833, 824, 1, 0, 0, 0, 834, 11, 1, 0, 0, 0, 835, 836, 5, 187, 0, 0, 836, 838, 5, 66, 0, 0, 837, 839, 5, 188, 0, 0, 838, 837, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 5, 158, 0, 0, 841, 843, 5, 426, 0, 0, 842, 844, 5, 235, 0, 0, 843, 842, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 846, 5, 166, 0, 0, 846, 847, 5, 329, 0, 0, 847, 849, 3, 640, 320, 0, 848, 850, 3, 56, 28, 0, 849, 848, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 13, 1, 0, 0, 0, 851, 853, 5, 134, 0, 0, 852, 854, 5, 204, 0, 0, 853, 852, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 5, 279, 0, 0, 856, 857, 5, 399, 0, 0, 857, 858, 5, 426, 0, 0, 858, 859, 5, 400, 0, 0, 859, 15, 1, 0, 0, 0, 860, 861, 5, 120, 0, 0, 861, 862, 5, 329, 0, 0, 862, 863, 3, 640, 320, 0, 863, 864, 5, 341, 0, 0, 864, 866, 5, 426, 0, 0, 865, 867, 3, 14, 7, 0, 866, 865, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 17, 1, 0, 0, 0, 868, 874, 5, 153, 0, 0, 869, 871, 5, 123, 0, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 873, 5, 329, 0, 0, 873, 875, 3, 640, 320, 0, 874, 870, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 877, 5, 139, 0, 0, 877, 879, 5, 426, 0, 0, 878, 880, 3, 428, 214, 0, 879, 878, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 19, 1, 0, 0, 0, 881, 882, 5, 277, 0, 0, 882, 883, 5, 103, 0, 0, 883, 886, 3, 22, 11, 0, 884, 885, 5, 278, 0, 0, 885, 887, 3, 22, 11, 0, 886, 884, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 890, 1, 0, 0, 0, 888, 889, 5, 387, 0, 0, 889, 891, 3, 230, 115, 0, 890, 888, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 21, 1, 0, 0, 0, 892, 895, 3, 476, 238, 0, 893, 894, 5, 395, 0, 0, 894, 896, 3, 26, 13, 0, 895, 893, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 23, 1, 0, 0, 0, 897, 898, 5, 277, 0, 0, 898, 899, 5, 187, 0, 0, 899, 902, 3, 22, 11, 0, 900, 901, 5, 166, 0, 0, 901, 903, 3, 476, 238, 0, 902, 900, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 906, 1, 0, 0, 0, 904, 905, 5, 387, 0, 0, 905, 907, 3, 230, 115, 0, 906, 904, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 25, 1, 0, 0, 0, 908, 911, 5, 426, 0, 0, 909, 910, 5, 395, 0, 0, 910, 912, 5, 426, 0, 0, 911, 909, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 27, 1, 0, 0, 0, 913, 972, 3, 42, 21, 0, 914, 972, 3, 46, 23, 0, 915, 972, 3, 48, 24, 0, 916, 972, 3, 440, 220, 0, 917, 972, 3, 54, 27, 0, 918, 972, 3, 52, 26, 0, 919, 972, 3, 416, 208, 0, 920, 972, 3, 64, 32, 0, 921, 972, 3, 72, 36, 0, 922, 972, 3, 138, 69, 0, 923, 972, 3, 160, 80, 0, 924, 972, 3, 176, 88, 0, 925, 972, 3, 180, 90, 0, 926, 972, 3, 184, 92, 0, 927, 972, 3, 182, 91, 0, 928, 972, 3, 174, 87, 0, 929, 972, 3, 178, 89, 0, 930, 972, 3, 146, 73, 0, 931, 972, 3, 152, 76, 0, 932, 972, 3, 148, 74, 0, 933, 972, 3, 150, 75, 0, 934, 972, 3, 154, 77, 0, 935, 972, 3, 156, 78, 0, 936, 972, 3, 158, 79, 0, 937, 972, 3, 66, 33, 0, 938, 972, 3, 76, 38, 0, 939, 972, 3, 82, 41, 0, 940, 972, 3, 78, 39, 0, 941, 972, 3, 84, 42, 0, 942, 972, 3, 86, 43, 0, 943, 972, 3, 88, 44, 0, 944, 972, 3, 90, 45, 0, 945, 972, 3, 92, 46, 0, 946, 972, 3, 106, 53, 0, 947, 972, 3, 98, 49, 0, 948, 972, 3, 108, 54, 0, 949, 972, 3, 100, 50, 0, 950, 972, 3, 94, 47, 0, 951, 972, 3, 96, 48, 0, 952, 972, 3, 104, 52, 0, 953, 972, 3, 102, 51, 0, 954, 955, 5, 1, 0, 0, 955, 957, 7, 2, 0, 0, 956, 958, 5, 431, 0, 0, 957, 956, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 957, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 972, 1, 0, 0, 0, 961, 962, 5, 176, 0, 0, 962, 964, 5, 258, 0, 0, 963, 965, 5, 426, 0, 0, 964, 963, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 964, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 972, 1, 0, 0, 0, 968, 972, 3, 670, 335, 0, 969, 972, 3, 442, 221, 0, 970, 972, 3, 444, 222, 0, 971, 913, 1, 0, 0, 0, 971, 914, 1, 0, 0, 0, 971, 915, 1, 0, 0, 0, 971, 916, 1, 0, 0, 0, 971, 917, 1, 0, 0, 0, 971, 918, 1, 0, 0, 0, 971, 919, 1, 0, 0, 0, 971, 920, 1, 0, 0, 0, 971, 921, 1, 0, 0, 0, 971, 922, 1, 0, 0, 0, 971, 923, 1, 0, 0, 0, 971, 924, 1, 0, 0, 0, 971, 925, 1, 0, 0, 0, 971, 926, 1, 0, 0, 0, 971, 927, 1, 0, 0, 0, 971, 928, 1, 0, 0, 0, 971, 929, 1, 0, 0, 0, 971, 930, 1, 0, 0, 0, 971, 931, 1, 0, 0, 0, 971, 932, 1, 0, 0, 0, 971, 933, 1, 0, 0, 0, 971, 934, 1, 0, 0, 0, 971, 935, 1, 0, 0, 0, 971, 936, 1, 0, 0, 0, 971, 937, 1, 0, 0, 0, 971, 938, 1, 0, 0, 0, 971, 939, 1, 0, 0, 0, 971, 940, 1, 0, 0, 0, 971, 941, 1, 0, 0, 0, 971, 942, 1, 0, 0, 0, 971, 943, 1, 0, 0, 0, 971, 944, 1, 0, 0, 0, 971, 945, 1, 0, 0, 0, 971, 946, 1, 0, 0, 0, 971, 947, 1, 0, 0, 0, 971, 948, 1, 0, 0, 0, 971, 949, 1, 0, 0, 0, 971, 950, 1, 0, 0, 0, 971, 951, 1, 0, 0, 0, 971, 952, 1, 0, 0, 0, 971, 953, 1, 0, 0, 0, 971, 954, 1, 0, 0, 0, 971, 961, 1, 0, 0, 0, 971, 968, 1, 0, 0, 0, 971, 969, 1, 0, 0, 0, 971, 970, 1, 0, 0, 0, 972, 29, 1, 0, 0, 0, 973, 974, 5, 151, 0, 0, 974, 975, 5, 117, 0, 0, 975, 31, 1, 0, 0, 0, 976, 977, 5, 151, 0, 0, 977, 978, 5, 216, 0, 0, 978, 979, 5, 117, 0, 0, 979, 33, 1, 0, 0, 0, 980, 981, 7, 3, 0, 0, 981, 35, 1, 0, 0, 0, 982, 983, 3, 682, 341, 0, 983, 984, 5, 284, 0, 0, 984, 37, 1, 0, 0, 0, 985, 986, 3, 684, 342, 0, 986, 987, 5, 284, 0, 0, 987, 39, 1, 0, 0, 0, 988, 989, 5, 321, 0, 0, 989, 990, 5, 17, 0, 0, 990, 991, 5, 92, 0, 0, 991, 41, 1, 0, 0, 0, 992, 994, 5, 58, 0, 0, 993, 995, 5, 273, 0, 0, 994, 993, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 998, 3, 70, 35, 0, 997, 999, 3, 32, 16, 0, 998, 997, 1, 0, 0, 0, 998, 999, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1002, 3, 478, 239, 0, 1001, 1003, 3, 50, 25, 0, 1002, 1001, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1005, 1, 0, 0, 0, 1004, 1006, 3, 428, 214, 0, 1005, 1004, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1009, 1, 0, 0, 0, 1007, 1008, 5, 196, 0, 0, 1008, 1010, 5, 426, 0, 0, 1009, 1007, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1014, 1, 0, 0, 0, 1011, 1012, 5, 387, 0, 0, 1012, 1013, 5, 76, 0, 0, 1013, 1015, 3, 230, 115, 0, 1014, 1011, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1033, 1, 0, 0, 0, 1016, 1017, 5, 58, 0, 0, 1017, 1018, 5, 273, 0, 0, 1018, 1020, 3, 70, 35, 0, 1019, 1021, 3, 32, 16, 0, 1020, 1019, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1024, 3, 478, 239, 0, 1023, 1025, 3, 50, 25, 0, 1024, 1023, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1030, 3, 44, 22, 0, 1027, 1028, 5, 387, 0, 0, 1028, 1029, 5, 76, 0, 0, 1029, 1031, 3, 230, 115, 0, 1030, 1027, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1033, 1, 0, 0, 0, 1032, 992, 1, 0, 0, 0, 1032, 1016, 1, 0, 0, 0, 1033, 43, 1, 0, 0, 0, 1034, 1035, 5, 370, 0, 0, 1035, 1036, 3, 476, 238, 0, 1036, 45, 1, 0, 0, 0, 1037, 1038, 5, 368, 0, 0, 1038, 1039, 3, 476, 238, 0, 1039, 47, 1, 0, 0, 0, 1040, 1041, 5, 101, 0, 0, 1041, 1043, 3, 70, 35, 0, 1042, 1044, 3, 30, 15, 0, 1043, 1042, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1047, 3, 476, 238, 0, 1046, 1048, 3, 34, 17, 0, 1047, 1046, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 49, 1, 0, 0, 0, 1049, 1050, 5, 47, 0, 0, 1050, 1051, 5, 426, 0, 0, 1051, 51, 1, 0, 0, 0, 1052, 1054, 5, 351, 0, 0, 1053, 1055, 5, 329, 0, 0, 1054, 1053, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1062, 3, 640, 320, 0, 1057, 1058, 5, 46, 0, 0, 1058, 1059, 5, 399, 0, 0, 1059, 1060, 3, 254, 127, 0, 1060, 1061, 5, 400, 0, 0, 1061, 1063, 1, 0, 0, 0, 1062, 1057, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1065, 1, 0, 0, 0, 1064, 1066, 5, 135, 0, 0, 1065, 1064, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 53, 1, 0, 0, 0, 1067, 1068, 5, 101, 0, 0, 1068, 1070, 5, 329, 0, 0, 1069, 1071, 3, 30, 15, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1074, 3, 482, 241, 0, 1073, 1075, 5, 255, 0, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1077, 1, 0, 0, 0, 1076, 1078, 3, 14, 7, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 55, 1, 0, 0, 0, 1079, 1080, 5, 160, 0, 0, 1080, 1081, 5, 426, 0, 0, 1081, 1082, 5, 301, 0, 0, 1082, 1083, 5, 426, 0, 0, 1083, 57, 1, 0, 0, 0, 1084, 1087, 3, 654, 327, 0, 1085, 1086, 5, 395, 0, 0, 1086, 1088, 3, 654, 327, 0, 1087, 1085, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1102, 1, 0, 0, 0, 1089, 1099, 3, 654, 327, 0, 1090, 1095, 5, 395, 0, 0, 1091, 1096, 5, 104, 0, 0, 1092, 1096, 5, 175, 0, 0, 1093, 1096, 5, 375, 0, 0, 1094, 1096, 3, 654, 327, 0, 1095, 1091, 1, 0, 0, 0, 1095, 1092, 1, 0, 0, 0, 1095, 1093, 1, 0, 0, 0, 1095, 1094, 1, 0, 0, 0, 1096, 1098, 1, 0, 0, 0, 1097, 1090, 1, 0, 0, 0, 1098, 1101, 1, 0, 0, 0, 1099, 1097, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1103, 1, 0, 0, 0, 1101, 1099, 1, 0, 0, 0, 1102, 1089, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 59, 1, 0, 0, 0, 1104, 1106, 3, 58, 29, 0, 1105, 1107, 3, 642, 321, 0, 1106, 1105, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 61, 1, 0, 0, 0, 1108, 1110, 3, 480, 240, 0, 1109, 1111, 3, 642, 321, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1113, 1, 0, 0, 0, 1112, 1114, 3, 264, 132, 0, 1113, 1112, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 63, 1, 0, 0, 0, 1115, 1138, 7, 4, 0, 0, 1116, 1118, 3, 70, 35, 0, 1117, 1119, 5, 122, 0, 0, 1118, 1117, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1121, 3, 476, 238, 0, 1121, 1139, 1, 0, 0, 0, 1122, 1124, 5, 69, 0, 0, 1123, 1125, 5, 122, 0, 0, 1124, 1123, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1139, 3, 476, 238, 0, 1127, 1129, 5, 141, 0, 0, 1128, 1130, 5, 122, 0, 0, 1129, 1128, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1131, 1, 0, 0, 0, 1131, 1139, 3, 572, 286, 0, 1132, 1135, 5, 138, 0, 0, 1133, 1135, 5, 122, 0, 0, 1134, 1132, 1, 0, 0, 0, 1134, 1133, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1139, 3, 62, 31, 0, 1137, 1139, 3, 62, 31, 0, 1138, 1116, 1, 0, 0, 0, 1138, 1122, 1, 0, 0, 0, 1138, 1127, 1, 0, 0, 0, 1138, 1134, 1, 0, 0, 0, 1138, 1137, 1, 0, 0, 0, 1139, 65, 1, 0, 0, 0, 1140, 1141, 5, 10, 0, 0, 1141, 1142, 5, 329, 0, 0, 1142, 1155, 3, 640, 320, 0, 1143, 1144, 5, 52, 0, 0, 1144, 1151, 5, 319, 0, 0, 1145, 1152, 5, 215, 0, 0, 1146, 1147, 5, 134, 0, 0, 1147, 1149, 5, 46, 0, 0, 1148, 1150, 3, 254, 127, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1152, 1, 0, 0, 0, 1151, 1145, 1, 0, 0, 0, 1151, 1146, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1156, 1, 0, 0, 0, 1153, 1154, 5, 33, 0, 0, 1154, 1156, 5, 204, 0, 0, 1155, 1143, 1, 0, 0, 0, 1155, 1153, 1, 0, 0, 0, 1156, 67, 1, 0, 0, 0, 1157, 1158, 7, 5, 0, 0, 1158, 69, 1, 0, 0, 0, 1159, 1160, 7, 6, 0, 0, 1160, 71, 1, 0, 0, 0, 1161, 1162, 5, 308, 0, 0, 1162, 1165, 7, 7, 0, 0, 1163, 1164, 5, 184, 0, 0, 1164, 1166, 3, 194, 97, 0, 1165, 1163, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1345, 1, 0, 0, 0, 1167, 1169, 5, 308, 0, 0, 1168, 1170, 5, 122, 0, 0, 1169, 1168, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1175, 5, 330, 0, 0, 1172, 1173, 3, 68, 34, 0, 1173, 1174, 3, 476, 238, 0, 1174, 1176, 1, 0, 0, 0, 1175, 1172, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1178, 1, 0, 0, 0, 1177, 1179, 3, 74, 37, 0, 1178, 1177, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1345, 1, 0, 0, 0, 1180, 1181, 5, 308, 0, 0, 1181, 1185, 5, 379, 0, 0, 1182, 1183, 3, 68, 34, 0, 1183, 1184, 3, 476, 238, 0, 1184, 1186, 1, 0, 0, 0, 1185, 1182, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1190, 1, 0, 0, 0, 1187, 1188, 5, 184, 0, 0, 1188, 1191, 3, 194, 97, 0, 1189, 1191, 3, 194, 97, 0, 1190, 1187, 1, 0, 0, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1345, 1, 0, 0, 0, 1192, 1193, 5, 308, 0, 0, 1193, 1194, 5, 202, 0, 0, 1194, 1198, 5, 379, 0, 0, 1195, 1196, 3, 68, 34, 0, 1196, 1197, 3, 476, 238, 0, 1197, 1199, 1, 0, 0, 0, 1198, 1195, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1203, 1, 0, 0, 0, 1200, 1201, 5, 184, 0, 0, 1201, 1204, 3, 194, 97, 0, 1202, 1204, 3, 194, 97, 0, 1203, 1200, 1, 0, 0, 0, 1203, 1202, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1345, 1, 0, 0, 0, 1205, 1207, 5, 308, 0, 0, 1206, 1208, 5, 315, 0, 0, 1207, 1206, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1210, 5, 46, 0, 0, 1210, 1211, 3, 68, 34, 0, 1211, 1215, 3, 480, 240, 0, 1212, 1213, 3, 68, 34, 0, 1213, 1214, 3, 476, 238, 0, 1214, 1216, 1, 0, 0, 0, 1215, 1212, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1220, 1, 0, 0, 0, 1217, 1218, 5, 184, 0, 0, 1218, 1221, 3, 194, 97, 0, 1219, 1221, 3, 194, 97, 0, 1220, 1217, 1, 0, 0, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1345, 1, 0, 0, 0, 1222, 1223, 5, 308, 0, 0, 1223, 1226, 5, 142, 0, 0, 1224, 1225, 5, 184, 0, 0, 1225, 1227, 3, 572, 286, 0, 1226, 1224, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1345, 1, 0, 0, 0, 1228, 1229, 5, 308, 0, 0, 1229, 1230, 5, 239, 0, 0, 1230, 1232, 3, 480, 240, 0, 1231, 1233, 3, 642, 321, 0, 1232, 1231, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1235, 1, 0, 0, 0, 1234, 1236, 3, 500, 250, 0, 1235, 1234, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1238, 1, 0, 0, 0, 1237, 1239, 3, 556, 278, 0, 1238, 1237, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1241, 1, 0, 0, 0, 1240, 1242, 3, 390, 195, 0, 1241, 1240, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1345, 1, 0, 0, 0, 1243, 1244, 5, 308, 0, 0, 1244, 1250, 5, 58, 0, 0, 1245, 1246, 3, 70, 35, 0, 1246, 1247, 3, 476, 238, 0, 1247, 1251, 1, 0, 0, 0, 1248, 1249, 5, 329, 0, 0, 1249, 1251, 3, 482, 241, 0, 1250, 1245, 1, 0, 0, 0, 1250, 1248, 1, 0, 0, 0, 1251, 1345, 1, 0, 0, 0, 1252, 1253, 5, 308, 0, 0, 1253, 1254, 5, 329, 0, 0, 1254, 1258, 5, 122, 0, 0, 1255, 1256, 3, 68, 34, 0, 1256, 1257, 3, 476, 238, 0, 1257, 1259, 1, 0, 0, 0, 1258, 1255, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1261, 5, 184, 0, 0, 1261, 1263, 3, 194, 97, 0, 1262, 1264, 3, 642, 321, 0, 1263, 1262, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1345, 1, 0, 0, 0, 1265, 1266, 5, 308, 0, 0, 1266, 1267, 5, 332, 0, 0, 1267, 1271, 3, 482, 241, 0, 1268, 1269, 5, 399, 0, 0, 1269, 1270, 5, 426, 0, 0, 1270, 1272, 5, 400, 0, 0, 1271, 1268, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1345, 1, 0, 0, 0, 1273, 1274, 5, 308, 0, 0, 1274, 1286, 5, 191, 0, 0, 1275, 1276, 3, 70, 35, 0, 1276, 1278, 3, 476, 238, 0, 1277, 1279, 5, 122, 0, 0, 1278, 1277, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1287, 1, 0, 0, 0, 1280, 1282, 3, 60, 30, 0, 1281, 1280, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1284, 1, 0, 0, 0, 1283, 1285, 5, 122, 0, 0, 1284, 1283, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1275, 1, 0, 0, 0, 1286, 1281, 1, 0, 0, 0, 1287, 1345, 1, 0, 0, 0, 1288, 1289, 5, 308, 0, 0, 1289, 1316, 5, 50, 0, 0, 1290, 1291, 5, 51, 0, 0, 1291, 1292, 5, 405, 0, 0, 1292, 1317, 5, 431, 0, 0, 1293, 1294, 3, 70, 35, 0, 1294, 1295, 3, 476, 238, 0, 1295, 1300, 1, 0, 0, 0, 1296, 1298, 3, 60, 30, 0, 1297, 1296, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1300, 1, 0, 0, 0, 1299, 1293, 1, 0, 0, 0, 1299, 1297, 1, 0, 0, 0, 1300, 1302, 1, 0, 0, 0, 1301, 1303, 3, 410, 205, 0, 1302, 1301, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1305, 1, 0, 0, 0, 1304, 1306, 3, 412, 206, 0, 1305, 1304, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1309, 3, 414, 207, 0, 1308, 1307, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1311, 1, 0, 0, 0, 1310, 1312, 3, 556, 278, 0, 1311, 1310, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1314, 1, 0, 0, 0, 1313, 1315, 3, 390, 195, 0, 1314, 1313, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1317, 1, 0, 0, 0, 1316, 1290, 1, 0, 0, 0, 1316, 1299, 1, 0, 0, 0, 1317, 1345, 1, 0, 0, 0, 1318, 1319, 5, 308, 0, 0, 1319, 1345, 5, 346, 0, 0, 1320, 1321, 5, 308, 0, 0, 1321, 1322, 5, 54, 0, 0, 1322, 1345, 5, 426, 0, 0, 1323, 1324, 5, 308, 0, 0, 1324, 1328, 5, 280, 0, 0, 1325, 1326, 5, 243, 0, 0, 1326, 1329, 3, 654, 327, 0, 1327, 1329, 5, 244, 0, 0, 1328, 1325, 1, 0, 0, 0, 1328, 1327, 1, 0, 0, 0, 1329, 1345, 1, 0, 0, 0, 1330, 1331, 5, 308, 0, 0, 1331, 1345, 5, 70, 0, 0, 1332, 1334, 5, 308, 0, 0, 1333, 1335, 5, 138, 0, 0, 1334, 1333, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1337, 7, 8, 0, 0, 1337, 1338, 5, 224, 0, 0, 1338, 1342, 3, 482, 241, 0, 1339, 1340, 3, 68, 34, 0, 1340, 1341, 3, 476, 238, 0, 1341, 1343, 1, 0, 0, 0, 1342, 1339, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1345, 1, 0, 0, 0, 1344, 1161, 1, 0, 0, 0, 1344, 1167, 1, 0, 0, 0, 1344, 1180, 1, 0, 0, 0, 1344, 1192, 1, 0, 0, 0, 1344, 1205, 1, 0, 0, 0, 1344, 1222, 1, 0, 0, 0, 1344, 1228, 1, 0, 0, 0, 1344, 1243, 1, 0, 0, 0, 1344, 1252, 1, 0, 0, 0, 1344, 1265, 1, 0, 0, 0, 1344, 1273, 1, 0, 0, 0, 1344, 1288, 1, 0, 0, 0, 1344, 1318, 1, 0, 0, 0, 1344, 1320, 1, 0, 0, 0, 1344, 1323, 1, 0, 0, 0, 1344, 1330, 1, 0, 0, 0, 1344, 1332, 1, 0, 0, 0, 1345, 73, 1, 0, 0, 0, 1346, 1347, 5, 384, 0, 0, 1347, 1348, 3, 654, 327, 0, 1348, 1349, 5, 405, 0, 0, 1349, 1350, 5, 426, 0, 0, 1350, 1355, 1, 0, 0, 0, 1351, 1352, 5, 184, 0, 0, 1352, 1355, 3, 194, 97, 0, 1353, 1355, 3, 194, 97, 0, 1354, 1346, 1, 0, 0, 0, 1354, 1351, 1, 0, 0, 0, 1354, 1353, 1, 0, 0, 0, 1355, 75, 1, 0, 0, 0, 1356, 1357, 5, 190, 0, 0, 1357, 1358, 5, 329, 0, 0, 1358, 1359, 3, 640, 320, 0, 1359, 1360, 3, 80, 40, 0, 1360, 77, 1, 0, 0, 0, 1361, 1362, 5, 190, 0, 0, 1362, 1363, 3, 70, 35, 0, 1363, 1364, 3, 476, 238, 0, 1364, 1365, 3, 80, 40, 0, 1365, 79, 1, 0, 0, 0, 1366, 1367, 7, 9, 0, 0, 1367, 81, 1, 0, 0, 0, 1368, 1369, 5, 361, 0, 0, 1369, 1370, 5, 329, 0, 0, 1370, 1371, 3, 640, 320, 0, 1371, 83, 1, 0, 0, 0, 1372, 1373, 5, 361, 0, 0, 1373, 1374, 3, 70, 35, 0, 1374, 1375, 3, 476, 238, 0, 1375, 85, 1, 0, 0, 0, 1376, 1377, 5, 58, 0, 0, 1377, 1378, 5, 287, 0, 0, 1378, 1379, 3, 654, 327, 0, 1379, 87, 1, 0, 0, 0, 1380, 1381, 5, 101, 0, 0, 1381, 1382, 5, 287, 0, 0, 1382, 1383, 3, 654, 327, 0, 1383, 89, 1, 0, 0, 0, 1384, 1385, 5, 143, 0, 0, 1385, 1387, 3, 118, 59, 0, 1386, 1388, 3, 112, 56, 0, 1387, 1386, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1389, 1, 0, 0, 0, 1389, 1390, 5, 341, 0, 0, 1390, 1392, 3, 124, 62, 0, 1391, 1393, 3, 130, 65, 0, 1392, 1391, 1, 0, 0, 0, 1392, 1393, 1, 0, 0, 0, 1393, 91, 1, 0, 0, 0, 1394, 1396, 5, 283, 0, 0, 1395, 1397, 3, 132, 66, 0, 1396, 1395, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1400, 3, 118, 59, 0, 1399, 1401, 3, 112, 56, 0, 1400, 1399, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1403, 5, 139, 0, 0, 1403, 1404, 3, 124, 62, 0, 1404, 93, 1, 0, 0, 0, 1405, 1407, 5, 143, 0, 0, 1406, 1408, 5, 287, 0, 0, 1407, 1406, 1, 0, 0, 0, 1407, 1408, 1, 0, 0, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1414, 3, 654, 327, 0, 1410, 1411, 5, 397, 0, 0, 1411, 1413, 3, 654, 327, 0, 1412, 1410, 1, 0, 0, 0, 1413, 1416, 1, 0, 0, 0, 1414, 1412, 1, 0, 0, 0, 1414, 1415, 1, 0, 0, 0, 1415, 1417, 1, 0, 0, 0, 1416, 1414, 1, 0, 0, 0, 1417, 1418, 5, 341, 0, 0, 1418, 1420, 3, 124, 62, 0, 1419, 1421, 3, 136, 68, 0, 1420, 1419, 1, 0, 0, 0, 1420, 1421, 1, 0, 0, 0, 1421, 95, 1, 0, 0, 0, 1422, 1424, 5, 283, 0, 0, 1423, 1425, 3, 134, 67, 0, 1424, 1423, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1427, 1, 0, 0, 0, 1426, 1428, 5, 287, 0, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1434, 3, 654, 327, 0, 1430, 1431, 5, 397, 0, 0, 1431, 1433, 3, 654, 327, 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, 1437, 1, 0, 0, 0, 1436, 1434, 1, 0, 0, 0, 1437, 1438, 5, 139, 0, 0, 1438, 1439, 3, 124, 62, 0, 1439, 97, 1, 0, 0, 0, 1440, 1441, 5, 308, 0, 0, 1441, 1442, 5, 287, 0, 0, 1442, 1443, 5, 143, 0, 0, 1443, 1444, 3, 126, 63, 0, 1444, 99, 1, 0, 0, 0, 1445, 1446, 5, 308, 0, 0, 1446, 1447, 5, 288, 0, 0, 1447, 101, 1, 0, 0, 0, 1448, 1449, 5, 308, 0, 0, 1449, 1450, 5, 62, 0, 0, 1450, 1451, 5, 288, 0, 0, 1451, 103, 1, 0, 0, 0, 1452, 1453, 5, 304, 0, 0, 1453, 1457, 5, 287, 0, 0, 1454, 1458, 5, 7, 0, 0, 1455, 1458, 5, 213, 0, 0, 1456, 1458, 3, 654, 327, 0, 1457, 1454, 1, 0, 0, 0, 1457, 1455, 1, 0, 0, 0, 1457, 1456, 1, 0, 0, 0, 1458, 105, 1, 0, 0, 0, 1459, 1460, 5, 308, 0, 0, 1460, 1462, 5, 143, 0, 0, 1461, 1463, 3, 126, 63, 0, 1462, 1461, 1, 0, 0, 0, 1462, 1463, 1, 0, 0, 0, 1463, 1466, 1, 0, 0, 0, 1464, 1465, 5, 224, 0, 0, 1465, 1467, 3, 110, 55, 0, 1466, 1464, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 107, 1, 0, 0, 0, 1468, 1469, 5, 308, 0, 0, 1469, 1470, 5, 252, 0, 0, 1470, 1471, 3, 654, 327, 0, 1471, 109, 1, 0, 0, 0, 1472, 1475, 5, 7, 0, 0, 1473, 1475, 3, 116, 58, 0, 1474, 1472, 1, 0, 0, 0, 1474, 1473, 1, 0, 0, 0, 1475, 111, 1, 0, 0, 0, 1476, 1477, 5, 224, 0, 0, 1477, 1478, 3, 114, 57, 0, 1478, 113, 1, 0, 0, 0, 1479, 1480, 3, 70, 35, 0, 1480, 1481, 3, 476, 238, 0, 1481, 1491, 1, 0, 0, 0, 1482, 1484, 5, 329, 0, 0, 1483, 1482, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 1491, 3, 640, 320, 0, 1486, 1487, 5, 366, 0, 0, 1487, 1491, 5, 426, 0, 0, 1488, 1489, 5, 303, 0, 0, 1489, 1491, 3, 654, 327, 0, 1490, 1479, 1, 0, 0, 0, 1490, 1483, 1, 0, 0, 0, 1490, 1486, 1, 0, 0, 0, 1490, 1488, 1, 0, 0, 0, 1491, 115, 1, 0, 0, 0, 1492, 1493, 3, 70, 35, 0, 1493, 1494, 3, 476, 238, 0, 1494, 1513, 1, 0, 0, 0, 1495, 1497, 5, 329, 0, 0, 1496, 1495, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1503, 3, 482, 241, 0, 1499, 1500, 5, 399, 0, 0, 1500, 1501, 3, 254, 127, 0, 1501, 1502, 5, 400, 0, 0, 1502, 1504, 1, 0, 0, 0, 1503, 1499, 1, 0, 0, 0, 1503, 1504, 1, 0, 0, 0, 1504, 1506, 1, 0, 0, 0, 1505, 1507, 3, 642, 321, 0, 1506, 1505, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1513, 1, 0, 0, 0, 1508, 1509, 5, 366, 0, 0, 1509, 1513, 5, 426, 0, 0, 1510, 1511, 5, 303, 0, 0, 1511, 1513, 3, 654, 327, 0, 1512, 1492, 1, 0, 0, 0, 1512, 1496, 1, 0, 0, 0, 1512, 1508, 1, 0, 0, 0, 1512, 1510, 1, 0, 0, 0, 1513, 117, 1, 0, 0, 0, 1514, 1519, 3, 120, 60, 0, 1515, 1516, 5, 397, 0, 0, 1516, 1518, 3, 120, 60, 0, 1517, 1515, 1, 0, 0, 0, 1518, 1521, 1, 0, 0, 0, 1519, 1517, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 119, 1, 0, 0, 0, 1521, 1519, 1, 0, 0, 0, 1522, 1527, 3, 122, 61, 0, 1523, 1524, 5, 399, 0, 0, 1524, 1525, 3, 254, 127, 0, 1525, 1526, 5, 400, 0, 0, 1526, 1528, 1, 0, 0, 0, 1527, 1523, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 121, 1, 0, 0, 0, 1529, 1530, 7, 10, 0, 0, 1530, 123, 1, 0, 0, 0, 1531, 1536, 3, 126, 63, 0, 1532, 1533, 5, 397, 0, 0, 1533, 1535, 3, 126, 63, 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, 125, 1, 0, 0, 0, 1538, 1536, 1, 0, 0, 0, 1539, 1540, 5, 369, 0, 0, 1540, 1546, 3, 658, 329, 0, 1541, 1542, 5, 144, 0, 0, 1542, 1546, 3, 658, 329, 0, 1543, 1544, 5, 287, 0, 0, 1544, 1546, 3, 654, 327, 0, 1545, 1539, 1, 0, 0, 0, 1545, 1541, 1, 0, 0, 0, 1545, 1543, 1, 0, 0, 0, 1546, 127, 1, 0, 0, 0, 1547, 1548, 5, 369, 0, 0, 1548, 1553, 3, 658, 329, 0, 1549, 1550, 5, 287, 0, 0, 1550, 1553, 3, 654, 327, 0, 1551, 1553, 3, 654, 327, 0, 1552, 1547, 1, 0, 0, 0, 1552, 1549, 1, 0, 0, 0, 1552, 1551, 1, 0, 0, 0, 1553, 129, 1, 0, 0, 0, 1554, 1555, 5, 387, 0, 0, 1555, 1556, 5, 143, 0, 0, 1556, 1557, 5, 227, 0, 0, 1557, 131, 1, 0, 0, 0, 1558, 1559, 5, 143, 0, 0, 1559, 1560, 5, 227, 0, 0, 1560, 1561, 5, 134, 0, 0, 1561, 133, 1, 0, 0, 0, 1562, 1563, 5, 5, 0, 0, 1563, 1564, 5, 227, 0, 0, 1564, 1565, 5, 134, 0, 0, 1565, 135, 1, 0, 0, 0, 1566, 1567, 5, 387, 0, 0, 1567, 1568, 5, 5, 0, 0, 1568, 1569, 5, 227, 0, 0, 1569, 137, 1, 0, 0, 0, 1570, 1572, 5, 212, 0, 0, 1571, 1573, 5, 276, 0, 0, 1572, 1571, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1575, 5, 329, 0, 0, 1575, 1581, 3, 482, 241, 0, 1576, 1577, 7, 11, 0, 0, 1577, 1579, 5, 239, 0, 0, 1578, 1580, 3, 646, 323, 0, 1579, 1578, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1582, 1, 0, 0, 0, 1581, 1576, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 139, 1, 0, 0, 0, 1583, 1588, 3, 142, 71, 0, 1584, 1585, 5, 397, 0, 0, 1585, 1587, 3, 142, 71, 0, 1586, 1584, 1, 0, 0, 0, 1587, 1590, 1, 0, 0, 0, 1588, 1586, 1, 0, 0, 0, 1588, 1589, 1, 0, 0, 0, 1589, 141, 1, 0, 0, 0, 1590, 1588, 1, 0, 0, 0, 1591, 1592, 3, 144, 72, 0, 1592, 1593, 5, 426, 0, 0, 1593, 143, 1, 0, 0, 0, 1594, 1595, 7, 12, 0, 0, 1595, 145, 1, 0, 0, 0, 1596, 1598, 5, 58, 0, 0, 1597, 1599, 5, 333, 0, 0, 1598, 1597, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1601, 5, 141, 0, 0, 1601, 1602, 3, 570, 285, 0, 1602, 1603, 5, 17, 0, 0, 1603, 1606, 5, 426, 0, 0, 1604, 1605, 5, 370, 0, 0, 1605, 1607, 3, 140, 70, 0, 1606, 1604, 1, 0, 0, 0, 1606, 1607, 1, 0, 0, 0, 1607, 147, 1, 0, 0, 0, 1608, 1610, 5, 101, 0, 0, 1609, 1611, 5, 333, 0, 0, 1610, 1609, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1614, 5, 141, 0, 0, 1613, 1615, 3, 30, 15, 0, 1614, 1613, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 1617, 3, 572, 286, 0, 1617, 149, 1, 0, 0, 0, 1618, 1619, 5, 271, 0, 0, 1619, 1620, 7, 13, 0, 0, 1620, 151, 1, 0, 0, 0, 1621, 1622, 5, 58, 0, 0, 1622, 1623, 5, 333, 0, 0, 1623, 1624, 5, 194, 0, 0, 1624, 1625, 5, 432, 0, 0, 1625, 1627, 5, 399, 0, 0, 1626, 1628, 3, 248, 124, 0, 1627, 1626, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1630, 5, 400, 0, 0, 1630, 1631, 3, 596, 298, 0, 1631, 153, 1, 0, 0, 0, 1632, 1633, 5, 101, 0, 0, 1633, 1634, 5, 333, 0, 0, 1634, 1636, 5, 194, 0, 0, 1635, 1637, 3, 30, 15, 0, 1636, 1635, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1639, 5, 432, 0, 0, 1639, 155, 1, 0, 0, 0, 1640, 1641, 5, 58, 0, 0, 1641, 1642, 5, 155, 0, 0, 1642, 1643, 3, 654, 327, 0, 1643, 1644, 5, 224, 0, 0, 1644, 1645, 5, 329, 0, 0, 1645, 1646, 3, 482, 241, 0, 1646, 1647, 3, 268, 134, 0, 1647, 1648, 5, 17, 0, 0, 1648, 1652, 5, 426, 0, 0, 1649, 1650, 5, 387, 0, 0, 1650, 1651, 5, 84, 0, 0, 1651, 1653, 5, 265, 0, 0, 1652, 1649, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1656, 1, 0, 0, 0, 1654, 1655, 5, 150, 0, 0, 1655, 1657, 3, 226, 113, 0, 1656, 1654, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1657, 1661, 1, 0, 0, 0, 1658, 1659, 5, 154, 0, 0, 1659, 1660, 5, 329, 0, 0, 1660, 1662, 3, 482, 241, 0, 1661, 1658, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1666, 1, 0, 0, 0, 1663, 1664, 5, 238, 0, 0, 1664, 1665, 5, 32, 0, 0, 1665, 1667, 3, 268, 134, 0, 1666, 1663, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1672, 1, 0, 0, 0, 1668, 1670, 3, 222, 111, 0, 1669, 1668, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1673, 3, 246, 123, 0, 1672, 1669, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1675, 1, 0, 0, 0, 1674, 1676, 3, 428, 214, 0, 1675, 1674, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1678, 1, 0, 0, 0, 1677, 1679, 3, 224, 112, 0, 1678, 1677, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1681, 1, 0, 0, 0, 1680, 1682, 3, 196, 98, 0, 1681, 1680, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 157, 1, 0, 0, 0, 1683, 1684, 5, 101, 0, 0, 1684, 1686, 5, 155, 0, 0, 1685, 1687, 3, 30, 15, 0, 1686, 1685, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1689, 3, 654, 327, 0, 1689, 1690, 5, 224, 0, 0, 1690, 1691, 3, 482, 241, 0, 1691, 159, 1, 0, 0, 0, 1692, 1695, 5, 58, 0, 0, 1693, 1694, 5, 228, 0, 0, 1694, 1696, 5, 278, 0, 0, 1695, 1693, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1699, 5, 378, 0, 0, 1698, 1700, 3, 32, 16, 0, 1699, 1698, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1706, 3, 488, 244, 0, 1702, 1703, 5, 399, 0, 0, 1703, 1704, 3, 308, 154, 0, 1704, 1705, 5, 400, 0, 0, 1705, 1707, 1, 0, 0, 0, 1706, 1702, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1709, 1, 0, 0, 0, 1708, 1710, 3, 196, 98, 0, 1709, 1708, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1713, 3, 162, 81, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1715, 1, 0, 0, 0, 1714, 1716, 3, 224, 112, 0, 1715, 1714, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1717, 1, 0, 0, 0, 1717, 1718, 5, 17, 0, 0, 1718, 1719, 3, 384, 192, 0, 1719, 161, 1, 0, 0, 0, 1720, 1721, 5, 238, 0, 0, 1721, 1727, 5, 224, 0, 0, 1722, 1723, 5, 399, 0, 0, 1723, 1728, 3, 254, 127, 0, 1724, 1725, 5, 316, 0, 0, 1725, 1726, 5, 399, 0, 0, 1726, 1728, 3, 204, 102, 0, 1727, 1722, 1, 0, 0, 0, 1727, 1724, 1, 0, 0, 0, 1728, 1729, 1, 0, 0, 0, 1729, 1730, 5, 400, 0, 0, 1730, 163, 1, 0, 0, 0, 1731, 1734, 3, 166, 83, 0, 1732, 1734, 3, 168, 84, 0, 1733, 1731, 1, 0, 0, 0, 1733, 1732, 1, 0, 0, 0, 1734, 165, 1, 0, 0, 0, 1735, 1736, 5, 42, 0, 0, 1736, 1737, 5, 224, 0, 0, 1737, 1738, 5, 399, 0, 0, 1738, 1739, 3, 254, 127, 0, 1739, 1740, 5, 400, 0, 0, 1740, 167, 1, 0, 0, 0, 1741, 1742, 3, 170, 85, 0, 1742, 1743, 3, 172, 86, 0, 1743, 169, 1, 0, 0, 0, 1744, 1745, 5, 98, 0, 0, 1745, 1746, 5, 224, 0, 0, 1746, 1747, 5, 399, 0, 0, 1747, 1748, 3, 254, 127, 0, 1748, 1749, 5, 400, 0, 0, 1749, 171, 1, 0, 0, 0, 1750, 1751, 5, 315, 0, 0, 1751, 1752, 5, 224, 0, 0, 1752, 1753, 5, 399, 0, 0, 1753, 1754, 3, 254, 127, 0, 1754, 1755, 5, 400, 0, 0, 1755, 173, 1, 0, 0, 0, 1756, 1757, 5, 101, 0, 0, 1757, 1759, 5, 378, 0, 0, 1758, 1760, 3, 30, 15, 0, 1759, 1758, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 3, 486, 243, 0, 1762, 175, 1, 0, 0, 0, 1763, 1764, 5, 58, 0, 0, 1764, 1765, 5, 202, 0, 0, 1765, 1767, 5, 378, 0, 0, 1766, 1768, 3, 32, 16, 0, 1767, 1766, 1, 0, 0, 0, 1767, 1768, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1771, 3, 488, 244, 0, 1770, 1772, 3, 38, 19, 0, 1771, 1770, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1774, 1, 0, 0, 0, 1773, 1775, 3, 196, 98, 0, 1774, 1773, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1777, 1, 0, 0, 0, 1776, 1778, 3, 162, 81, 0, 1777, 1776, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1780, 1, 0, 0, 0, 1779, 1781, 3, 164, 82, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1783, 1, 0, 0, 0, 1782, 1784, 3, 222, 111, 0, 1783, 1782, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1786, 1, 0, 0, 0, 1785, 1787, 3, 246, 123, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 1, 0, 0, 0, 1788, 1790, 3, 428, 214, 0, 1789, 1788, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1792, 1, 0, 0, 0, 1791, 1793, 3, 224, 112, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1795, 5, 17, 0, 0, 1795, 1796, 3, 384, 192, 0, 1796, 177, 1, 0, 0, 0, 1797, 1798, 5, 101, 0, 0, 1798, 1799, 5, 202, 0, 0, 1799, 1801, 5, 378, 0, 0, 1800, 1802, 3, 30, 15, 0, 1801, 1800, 1, 0, 0, 0, 1801, 1802, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1804, 3, 486, 243, 0, 1804, 179, 1, 0, 0, 0, 1805, 1806, 5, 58, 0, 0, 1806, 1807, 5, 293, 0, 0, 1807, 1808, 5, 258, 0, 0, 1808, 1809, 3, 654, 327, 0, 1809, 1811, 3, 188, 94, 0, 1810, 1812, 3, 190, 95, 0, 1811, 1810, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1814, 1, 0, 0, 0, 1813, 1815, 3, 272, 136, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 3, 192, 96, 0, 1817, 181, 1, 0, 0, 0, 1818, 1819, 5, 101, 0, 0, 1819, 1820, 5, 293, 0, 0, 1820, 1821, 5, 258, 0, 0, 1821, 1822, 3, 654, 327, 0, 1822, 183, 1, 0, 0, 0, 1823, 1824, 5, 9, 0, 0, 1824, 1825, 5, 293, 0, 0, 1825, 1826, 5, 258, 0, 0, 1826, 1827, 3, 654, 327, 0, 1827, 1828, 3, 186, 93, 0, 1828, 185, 1, 0, 0, 0, 1829, 1835, 3, 188, 94, 0, 1830, 1835, 3, 190, 95, 0, 1831, 1835, 3, 272, 136, 0, 1832, 1835, 3, 192, 96, 0, 1833, 1835, 5, 115, 0, 0, 1834, 1829, 1, 0, 0, 0, 1834, 1830, 1, 0, 0, 0, 1834, 1831, 1, 0, 0, 0, 1834, 1832, 1, 0, 0, 0, 1834, 1833, 1, 0, 0, 0, 1835, 187, 1, 0, 0, 0, 1836, 1837, 5, 59, 0, 0, 1837, 1852, 5, 426, 0, 0, 1838, 1840, 5, 111, 0, 0, 1839, 1841, 5, 431, 0, 0, 1840, 1839, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1842, 1, 0, 0, 0, 1842, 1849, 3, 594, 297, 0, 1843, 1847, 5, 20, 0, 0, 1844, 1845, 5, 223, 0, 0, 1845, 1847, 5, 32, 0, 0, 1846, 1843, 1, 0, 0, 0, 1846, 1844, 1, 0, 0, 0, 1847, 1848, 1, 0, 0, 0, 1848, 1850, 5, 426, 0, 0, 1849, 1846, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1852, 1, 0, 0, 0, 1851, 1836, 1, 0, 0, 0, 1851, 1838, 1, 0, 0, 0, 1852, 189, 1, 0, 0, 0, 1853, 1854, 5, 116, 0, 0, 1854, 1855, 5, 17, 0, 0, 1855, 1856, 5, 426, 0, 0, 1856, 191, 1, 0, 0, 0, 1857, 1859, 5, 85, 0, 0, 1858, 1857, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1861, 5, 17, 0, 0, 1861, 1862, 3, 2, 1, 0, 1862, 193, 1, 0, 0, 0, 1863, 1866, 3, 654, 327, 0, 1864, 1866, 5, 426, 0, 0, 1865, 1863, 1, 0, 0, 0, 1865, 1864, 1, 0, 0, 0, 1866, 195, 1, 0, 0, 0, 1867, 1868, 5, 47, 0, 0, 1868, 1869, 5, 426, 0, 0, 1869, 197, 1, 0, 0, 0, 1870, 1871, 5, 183, 0, 0, 1871, 1872, 5, 431, 0, 0, 1872, 199, 1, 0, 0, 0, 1873, 1874, 5, 238, 0, 0, 1874, 1883, 5, 32, 0, 0, 1875, 1878, 5, 399, 0, 0, 1876, 1879, 3, 202, 101, 0, 1877, 1879, 3, 254, 127, 0, 1878, 1876, 1, 0, 0, 0, 1878, 1877, 1, 0, 0, 0, 1879, 1884, 1, 0, 0, 0, 1880, 1881, 5, 316, 0, 0, 1881, 1882, 5, 399, 0, 0, 1882, 1884, 3, 204, 102, 0, 1883, 1875, 1, 0, 0, 0, 1883, 1880, 1, 0, 0, 0, 1884, 1885, 1, 0, 0, 0, 1885, 1886, 5, 400, 0, 0, 1886, 201, 1, 0, 0, 0, 1887, 1892, 3, 320, 160, 0, 1888, 1889, 5, 397, 0, 0, 1889, 1891, 3, 320, 160, 0, 1890, 1888, 1, 0, 0, 0, 1891, 1894, 1, 0, 0, 0, 1892, 1890, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 203, 1, 0, 0, 0, 1894, 1892, 1, 0, 0, 0, 1895, 1900, 3, 206, 103, 0, 1896, 1897, 5, 397, 0, 0, 1897, 1899, 3, 206, 103, 0, 1898, 1896, 1, 0, 0, 0, 1899, 1902, 1, 0, 0, 0, 1900, 1898, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 205, 1, 0, 0, 0, 1902, 1900, 1, 0, 0, 0, 1903, 1922, 3, 256, 128, 0, 1904, 1909, 3, 686, 343, 0, 1905, 1909, 3, 688, 344, 0, 1906, 1909, 3, 692, 346, 0, 1907, 1909, 3, 694, 347, 0, 1908, 1904, 1, 0, 0, 0, 1908, 1905, 1, 0, 0, 0, 1908, 1906, 1, 0, 0, 0, 1908, 1907, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1911, 5, 399, 0, 0, 1911, 1912, 3, 256, 128, 0, 1912, 1913, 5, 400, 0, 0, 1913, 1922, 1, 0, 0, 0, 1914, 1915, 7, 14, 0, 0, 1915, 1916, 5, 399, 0, 0, 1916, 1917, 5, 431, 0, 0, 1917, 1918, 5, 397, 0, 0, 1918, 1919, 3, 256, 128, 0, 1919, 1920, 5, 400, 0, 0, 1920, 1922, 1, 0, 0, 0, 1921, 1903, 1, 0, 0, 0, 1921, 1908, 1, 0, 0, 0, 1921, 1914, 1, 0, 0, 0, 1922, 207, 1, 0, 0, 0, 1923, 1924, 5, 42, 0, 0, 1924, 1925, 5, 32, 0, 0, 1925, 1926, 5, 399, 0, 0, 1926, 1927, 3, 254, 127, 0, 1927, 1934, 5, 400, 0, 0, 1928, 1929, 5, 315, 0, 0, 1929, 1930, 5, 32, 0, 0, 1930, 1931, 5, 399, 0, 0, 1931, 1932, 3, 266, 133, 0, 1932, 1933, 5, 400, 0, 0, 1933, 1935, 1, 0, 0, 0, 1934, 1928, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 5, 166, 0, 0, 1937, 1938, 5, 431, 0, 0, 1938, 1939, 5, 31, 0, 0, 1939, 209, 1, 0, 0, 0, 1940, 1941, 5, 310, 0, 0, 1941, 1942, 5, 32, 0, 0, 1942, 1943, 5, 399, 0, 0, 1943, 1944, 3, 254, 127, 0, 1944, 1945, 5, 400, 0, 0, 1945, 1946, 5, 224, 0, 0, 1946, 1947, 5, 399, 0, 0, 1947, 1948, 3, 294, 147, 0, 1948, 1950, 5, 400, 0, 0, 1949, 1951, 3, 40, 20, 0, 1950, 1949, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 211, 1, 0, 0, 0, 1952, 1955, 3, 218, 109, 0, 1953, 1955, 3, 220, 110, 0, 1954, 1952, 1, 0, 0, 0, 1954, 1953, 1, 0, 0, 0, 1955, 213, 1, 0, 0, 0, 1956, 1957, 5, 266, 0, 0, 1957, 1958, 5, 426, 0, 0, 1958, 215, 1, 0, 0, 0, 1959, 1960, 5, 267, 0, 0, 1960, 1961, 5, 426, 0, 0, 1961, 217, 1, 0, 0, 0, 1962, 1963, 5, 291, 0, 0, 1963, 1964, 5, 137, 0, 0, 1964, 1965, 5, 301, 0, 0, 1965, 1969, 5, 426, 0, 0, 1966, 1967, 5, 387, 0, 0, 1967, 1968, 5, 302, 0, 0, 1968, 1970, 3, 226, 113, 0, 1969, 1966, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 219, 1, 0, 0, 0, 1971, 1972, 5, 291, 0, 0, 1972, 1973, 5, 137, 0, 0, 1973, 1975, 5, 87, 0, 0, 1974, 1976, 3, 236, 118, 0, 1975, 1974, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1978, 1, 0, 0, 0, 1977, 1979, 3, 238, 119, 0, 1978, 1977, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1981, 1, 0, 0, 0, 1980, 1982, 3, 240, 120, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1984, 1, 0, 0, 0, 1983, 1985, 3, 242, 121, 0, 1984, 1983, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1987, 1, 0, 0, 0, 1986, 1988, 3, 244, 122, 0, 1987, 1986, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 221, 1, 0, 0, 0, 1989, 1992, 3, 220, 110, 0, 1990, 1992, 3, 218, 109, 0, 1991, 1989, 1, 0, 0, 0, 1991, 1990, 1, 0, 0, 0, 1992, 223, 1, 0, 0, 0, 1993, 1994, 5, 332, 0, 0, 1994, 1995, 3, 226, 113, 0, 1995, 225, 1, 0, 0, 0, 1996, 1997, 5, 399, 0, 0, 1997, 1998, 3, 228, 114, 0, 1998, 1999, 5, 400, 0, 0, 1999, 227, 1, 0, 0, 0, 2000, 2010, 3, 232, 116, 0, 2001, 2006, 5, 426, 0, 0, 2002, 2003, 5, 397, 0, 0, 2003, 2005, 5, 426, 0, 0, 2004, 2002, 1, 0, 0, 0, 2005, 2008, 1, 0, 0, 0, 2006, 2004, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2010, 1, 0, 0, 0, 2008, 2006, 1, 0, 0, 0, 2009, 2000, 1, 0, 0, 0, 2009, 2001, 1, 0, 0, 0, 2010, 229, 1, 0, 0, 0, 2011, 2012, 5, 399, 0, 0, 2012, 2013, 3, 232, 116, 0, 2013, 2014, 5, 400, 0, 0, 2014, 231, 1, 0, 0, 0, 2015, 2020, 3, 234, 117, 0, 2016, 2017, 5, 397, 0, 0, 2017, 2019, 3, 234, 117, 0, 2018, 2016, 1, 0, 0, 0, 2019, 2022, 1, 0, 0, 0, 2020, 2018, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 233, 1, 0, 0, 0, 2022, 2020, 1, 0, 0, 0, 2023, 2024, 5, 426, 0, 0, 2024, 2025, 5, 405, 0, 0, 2025, 2026, 5, 426, 0, 0, 2026, 235, 1, 0, 0, 0, 2027, 2028, 5, 127, 0, 0, 2028, 2029, 5, 334, 0, 0, 2029, 2030, 5, 32, 0, 0, 2030, 2034, 5, 426, 0, 0, 2031, 2032, 5, 110, 0, 0, 2032, 2033, 5, 32, 0, 0, 2033, 2035, 5, 426, 0, 0, 2034, 2031, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 237, 1, 0, 0, 0, 2036, 2037, 5, 44, 0, 0, 2037, 2038, 5, 169, 0, 0, 2038, 2039, 5, 334, 0, 0, 2039, 2040, 5, 32, 0, 0, 2040, 2041, 5, 426, 0, 0, 2041, 239, 1, 0, 0, 0, 2042, 2043, 5, 198, 0, 0, 2043, 2044, 5, 174, 0, 0, 2044, 2045, 5, 334, 0, 0, 2045, 2046, 5, 32, 0, 0, 2046, 2047, 5, 426, 0, 0, 2047, 241, 1, 0, 0, 0, 2048, 2049, 5, 186, 0, 0, 2049, 2050, 5, 334, 0, 0, 2050, 2051, 5, 32, 0, 0, 2051, 2052, 5, 426, 0, 0, 2052, 243, 1, 0, 0, 0, 2053, 2054, 5, 219, 0, 0, 2054, 2055, 5, 85, 0, 0, 2055, 2056, 5, 17, 0, 0, 2056, 2057, 5, 426, 0, 0, 2057, 245, 1, 0, 0, 0, 2058, 2059, 5, 321, 0, 0, 2059, 2060, 5, 17, 0, 0, 2060, 2061, 5, 160, 0, 0, 2061, 2062, 5, 426, 0, 0, 2062, 2063, 5, 233, 0, 0, 2063, 2068, 5, 426, 0, 0, 2064, 2065, 5, 159, 0, 0, 2065, 2066, 5, 426, 0, 0, 2066, 2067, 5, 232, 0, 0, 2067, 2069, 5, 426, 0, 0, 2068, 2064, 1, 0, 0, 0, 2068, 2069, 1, 0, 0, 0, 2069, 2100, 1, 0, 0, 0, 2070, 2071, 5, 321, 0, 0, 2071, 2072, 5, 32, 0, 0, 2072, 2076, 5, 426, 0, 0, 2073, 2074, 5, 387, 0, 0, 2074, 2075, 5, 302, 0, 0, 2075, 2077, 3, 226, 113, 0, 2076, 2073, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2081, 1, 0, 0, 0, 2078, 2079, 5, 321, 0, 0, 2079, 2080, 5, 17, 0, 0, 2080, 2082, 3, 654, 327, 0, 2081, 2078, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2100, 1, 0, 0, 0, 2083, 2084, 5, 321, 0, 0, 2084, 2085, 5, 32, 0, 0, 2085, 2089, 3, 654, 327, 0, 2086, 2087, 5, 387, 0, 0, 2087, 2088, 5, 302, 0, 0, 2088, 2090, 3, 226, 113, 0, 2089, 2086, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2094, 1, 0, 0, 0, 2091, 2092, 5, 321, 0, 0, 2092, 2093, 5, 17, 0, 0, 2093, 2095, 3, 654, 327, 0, 2094, 2091, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2100, 1, 0, 0, 0, 2096, 2097, 5, 321, 0, 0, 2097, 2098, 5, 17, 0, 0, 2098, 2100, 3, 654, 327, 0, 2099, 2058, 1, 0, 0, 0, 2099, 2070, 1, 0, 0, 0, 2099, 2083, 1, 0, 0, 0, 2099, 2096, 1, 0, 0, 0, 2100, 247, 1, 0, 0, 0, 2101, 2106, 3, 314, 157, 0, 2102, 2103, 5, 397, 0, 0, 2103, 2105, 3, 314, 157, 0, 2104, 2102, 1, 0, 0, 0, 2105, 2108, 1, 0, 0, 0, 2106, 2104, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 249, 1, 0, 0, 0, 2108, 2106, 1, 0, 0, 0, 2109, 2114, 3, 316, 158, 0, 2110, 2111, 5, 397, 0, 0, 2111, 2113, 3, 316, 158, 0, 2112, 2110, 1, 0, 0, 0, 2113, 2116, 1, 0, 0, 0, 2114, 2112, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 251, 1, 0, 0, 0, 2116, 2114, 1, 0, 0, 0, 2117, 2122, 3, 344, 172, 0, 2118, 2119, 5, 397, 0, 0, 2119, 2121, 3, 344, 172, 0, 2120, 2118, 1, 0, 0, 0, 2121, 2124, 1, 0, 0, 0, 2122, 2120, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 253, 1, 0, 0, 0, 2124, 2122, 1, 0, 0, 0, 2125, 2130, 3, 256, 128, 0, 2126, 2127, 5, 397, 0, 0, 2127, 2129, 3, 256, 128, 0, 2128, 2126, 1, 0, 0, 0, 2129, 2132, 1, 0, 0, 0, 2130, 2128, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 255, 1, 0, 0, 0, 2132, 2130, 1, 0, 0, 0, 2133, 2137, 3, 706, 353, 0, 2134, 2135, 4, 128, 0, 0, 2135, 2137, 3, 702, 351, 0, 2136, 2133, 1, 0, 0, 0, 2136, 2134, 1, 0, 0, 0, 2137, 257, 1, 0, 0, 0, 2138, 2139, 3, 704, 352, 0, 2139, 259, 1, 0, 0, 0, 2140, 2144, 3, 706, 353, 0, 2141, 2142, 4, 130, 1, 0, 2142, 2144, 3, 702, 351, 0, 2143, 2140, 1, 0, 0, 0, 2143, 2141, 1, 0, 0, 0, 2144, 261, 1, 0, 0, 0, 2145, 2146, 3, 654, 327, 0, 2146, 263, 1, 0, 0, 0, 2147, 2157, 3, 256, 128, 0, 2148, 2153, 5, 395, 0, 0, 2149, 2154, 5, 104, 0, 0, 2150, 2154, 5, 175, 0, 0, 2151, 2154, 5, 375, 0, 0, 2152, 2154, 3, 654, 327, 0, 2153, 2149, 1, 0, 0, 0, 2153, 2150, 1, 0, 0, 0, 2153, 2151, 1, 0, 0, 0, 2153, 2152, 1, 0, 0, 0, 2154, 2156, 1, 0, 0, 0, 2155, 2148, 1, 0, 0, 0, 2156, 2159, 1, 0, 0, 0, 2157, 2155, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 265, 1, 0, 0, 0, 2159, 2157, 1, 0, 0, 0, 2160, 2165, 3, 306, 153, 0, 2161, 2162, 5, 397, 0, 0, 2162, 2164, 3, 306, 153, 0, 2163, 2161, 1, 0, 0, 0, 2164, 2167, 1, 0, 0, 0, 2165, 2163, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 267, 1, 0, 0, 0, 2167, 2165, 1, 0, 0, 0, 2168, 2169, 5, 399, 0, 0, 2169, 2170, 3, 254, 127, 0, 2170, 2171, 5, 400, 0, 0, 2171, 269, 1, 0, 0, 0, 2172, 2174, 3, 272, 136, 0, 2173, 2175, 3, 274, 137, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2178, 1, 0, 0, 0, 2176, 2178, 3, 276, 138, 0, 2177, 2172, 1, 0, 0, 0, 2177, 2176, 1, 0, 0, 0, 2178, 271, 1, 0, 0, 0, 2179, 2182, 3, 682, 341, 0, 2180, 2182, 3, 684, 342, 0, 2181, 2179, 1, 0, 0, 0, 2181, 2180, 1, 0, 0, 0, 2182, 273, 1, 0, 0, 0, 2183, 2184, 7, 15, 0, 0, 2184, 275, 1, 0, 0, 0, 2185, 2189, 5, 109, 0, 0, 2186, 2187, 5, 216, 0, 0, 2187, 2189, 5, 109, 0, 0, 2188, 2185, 1, 0, 0, 0, 2188, 2186, 1, 0, 0, 0, 2189, 277, 1, 0, 0, 0, 2190, 2191, 7, 16, 0, 0, 2191, 279, 1, 0, 0, 0, 2192, 2193, 5, 55, 0, 0, 2193, 2195, 3, 654, 327, 0, 2194, 2192, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2198, 3, 284, 142, 0, 2197, 2199, 3, 340, 170, 0, 2198, 2197, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 281, 1, 0, 0, 0, 2200, 2201, 5, 55, 0, 0, 2201, 2202, 3, 654, 327, 0, 2202, 2204, 3, 284, 142, 0, 2203, 2205, 3, 342, 171, 0, 2204, 2203, 1, 0, 0, 0, 2204, 2205, 1, 0, 0, 0, 2205, 283, 1, 0, 0, 0, 2206, 2209, 3, 286, 143, 0, 2207, 2209, 3, 288, 144, 0, 2208, 2206, 1, 0, 0, 0, 2208, 2207, 1, 0, 0, 0, 2209, 285, 1, 0, 0, 0, 2210, 2211, 3, 338, 169, 0, 2211, 2212, 3, 268, 134, 0, 2212, 287, 1, 0, 0, 0, 2213, 2214, 5, 40, 0, 0, 2214, 2215, 5, 399, 0, 0, 2215, 2216, 3, 596, 298, 0, 2216, 2217, 5, 400, 0, 0, 2217, 289, 1, 0, 0, 0, 2218, 2219, 5, 55, 0, 0, 2219, 2221, 3, 654, 327, 0, 2220, 2218, 1, 0, 0, 0, 2220, 2221, 1, 0, 0, 0, 2221, 2222, 1, 0, 0, 0, 2222, 2223, 5, 136, 0, 0, 2223, 2224, 5, 173, 0, 0, 2224, 2225, 3, 268, 134, 0, 2225, 2226, 5, 269, 0, 0, 2226, 2227, 3, 482, 241, 0, 2227, 2229, 3, 268, 134, 0, 2228, 2230, 3, 340, 170, 0, 2229, 2228, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 291, 1, 0, 0, 0, 2231, 2232, 5, 55, 0, 0, 2232, 2233, 3, 654, 327, 0, 2233, 2234, 5, 136, 0, 0, 2234, 2235, 5, 173, 0, 0, 2235, 2236, 3, 268, 134, 0, 2236, 2237, 5, 269, 0, 0, 2237, 2238, 3, 482, 241, 0, 2238, 2240, 3, 268, 134, 0, 2239, 2241, 3, 342, 171, 0, 2240, 2239, 1, 0, 0, 0, 2240, 2241, 1, 0, 0, 0, 2241, 293, 1, 0, 0, 0, 2242, 2245, 3, 300, 150, 0, 2243, 2245, 3, 296, 148, 0, 2244, 2242, 1, 0, 0, 0, 2244, 2243, 1, 0, 0, 0, 2245, 295, 1, 0, 0, 0, 2246, 2251, 3, 298, 149, 0, 2247, 2248, 5, 397, 0, 0, 2248, 2250, 3, 298, 149, 0, 2249, 2247, 1, 0, 0, 0, 2250, 2253, 1, 0, 0, 0, 2251, 2249, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 297, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2254, 2255, 5, 399, 0, 0, 2255, 2256, 3, 300, 150, 0, 2256, 2257, 5, 400, 0, 0, 2257, 299, 1, 0, 0, 0, 2258, 2263, 3, 588, 294, 0, 2259, 2260, 5, 397, 0, 0, 2260, 2262, 3, 588, 294, 0, 2261, 2259, 1, 0, 0, 0, 2262, 2265, 1, 0, 0, 0, 2263, 2261, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 301, 1, 0, 0, 0, 2265, 2263, 1, 0, 0, 0, 2266, 2267, 7, 17, 0, 0, 2267, 303, 1, 0, 0, 0, 2268, 2269, 5, 220, 0, 0, 2269, 2270, 7, 18, 0, 0, 2270, 305, 1, 0, 0, 0, 2271, 2273, 3, 256, 128, 0, 2272, 2274, 3, 302, 151, 0, 2273, 2272, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2276, 1, 0, 0, 0, 2275, 2277, 3, 304, 152, 0, 2276, 2275, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 307, 1, 0, 0, 0, 2278, 2283, 3, 310, 155, 0, 2279, 2280, 5, 397, 0, 0, 2280, 2282, 3, 310, 155, 0, 2281, 2279, 1, 0, 0, 0, 2282, 2285, 1, 0, 0, 0, 2283, 2281, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 309, 1, 0, 0, 0, 2285, 2283, 1, 0, 0, 0, 2286, 2289, 3, 262, 131, 0, 2287, 2288, 5, 47, 0, 0, 2288, 2290, 5, 426, 0, 0, 2289, 2287, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 311, 1, 0, 0, 0, 2291, 2294, 3, 256, 128, 0, 2292, 2294, 3, 596, 298, 0, 2293, 2291, 1, 0, 0, 0, 2293, 2292, 1, 0, 0, 0, 2294, 2296, 1, 0, 0, 0, 2295, 2297, 3, 302, 151, 0, 2296, 2295, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 2299, 1, 0, 0, 0, 2298, 2300, 3, 304, 152, 0, 2299, 2298, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 313, 1, 0, 0, 0, 2301, 2302, 3, 262, 131, 0, 2302, 2305, 3, 346, 173, 0, 2303, 2304, 5, 47, 0, 0, 2304, 2306, 5, 426, 0, 0, 2305, 2303, 1, 0, 0, 0, 2305, 2306, 1, 0, 0, 0, 2306, 315, 1, 0, 0, 0, 2307, 2310, 3, 318, 159, 0, 2308, 2310, 3, 320, 160, 0, 2309, 2307, 1, 0, 0, 0, 2309, 2308, 1, 0, 0, 0, 2310, 317, 1, 0, 0, 0, 2311, 2314, 3, 290, 145, 0, 2312, 2314, 3, 280, 140, 0, 2313, 2311, 1, 0, 0, 0, 2313, 2312, 1, 0, 0, 0, 2314, 319, 1, 0, 0, 0, 2315, 2316, 3, 262, 131, 0, 2316, 2318, 3, 346, 173, 0, 2317, 2319, 3, 322, 161, 0, 2318, 2317, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2322, 1, 0, 0, 0, 2320, 2321, 5, 47, 0, 0, 2321, 2323, 5, 426, 0, 0, 2322, 2320, 1, 0, 0, 0, 2322, 2323, 1, 0, 0, 0, 2323, 321, 1, 0, 0, 0, 2324, 2327, 3, 324, 162, 0, 2325, 2327, 3, 326, 163, 0, 2326, 2324, 1, 0, 0, 0, 2326, 2325, 1, 0, 0, 0, 2327, 323, 1, 0, 0, 0, 2328, 2329, 5, 55, 0, 0, 2329, 2331, 3, 654, 327, 0, 2330, 2328, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2333, 5, 269, 0, 0, 2333, 2334, 3, 482, 241, 0, 2334, 2335, 5, 399, 0, 0, 2335, 2336, 3, 256, 128, 0, 2336, 2338, 5, 400, 0, 0, 2337, 2339, 3, 340, 170, 0, 2338, 2337, 1, 0, 0, 0, 2338, 2339, 1, 0, 0, 0, 2339, 325, 1, 0, 0, 0, 2340, 2341, 5, 55, 0, 0, 2341, 2343, 3, 654, 327, 0, 2342, 2340, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2346, 3, 334, 167, 0, 2345, 2347, 3, 340, 170, 0, 2346, 2345, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 327, 1, 0, 0, 0, 2348, 2351, 3, 330, 165, 0, 2349, 2351, 3, 332, 166, 0, 2350, 2348, 1, 0, 0, 0, 2350, 2349, 1, 0, 0, 0, 2351, 329, 1, 0, 0, 0, 2352, 2353, 5, 55, 0, 0, 2353, 2355, 3, 654, 327, 0, 2354, 2352, 1, 0, 0, 0, 2354, 2355, 1, 0, 0, 0, 2355, 2356, 1, 0, 0, 0, 2356, 2357, 5, 269, 0, 0, 2357, 2358, 3, 482, 241, 0, 2358, 2359, 5, 399, 0, 0, 2359, 2360, 3, 256, 128, 0, 2360, 2362, 5, 400, 0, 0, 2361, 2363, 3, 342, 171, 0, 2362, 2361, 1, 0, 0, 0, 2362, 2363, 1, 0, 0, 0, 2363, 331, 1, 0, 0, 0, 2364, 2365, 5, 55, 0, 0, 2365, 2367, 3, 654, 327, 0, 2366, 2364, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 2370, 3, 334, 167, 0, 2369, 2371, 3, 342, 171, 0, 2370, 2369, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 333, 1, 0, 0, 0, 2372, 2373, 5, 216, 0, 0, 2373, 2379, 5, 219, 0, 0, 2374, 2375, 5, 83, 0, 0, 2375, 2379, 3, 336, 168, 0, 2376, 2379, 3, 288, 144, 0, 2377, 2379, 3, 338, 169, 0, 2378, 2372, 1, 0, 0, 0, 2378, 2374, 1, 0, 0, 0, 2378, 2376, 1, 0, 0, 0, 2378, 2377, 1, 0, 0, 0, 2379, 335, 1, 0, 0, 0, 2380, 2384, 3, 588, 294, 0, 2381, 2384, 3, 566, 283, 0, 2382, 2384, 3, 576, 288, 0, 2383, 2380, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2382, 1, 0, 0, 0, 2384, 337, 1, 0, 0, 0, 2385, 2386, 5, 251, 0, 0, 2386, 2389, 5, 173, 0, 0, 2387, 2389, 5, 358, 0, 0, 2388, 2385, 1, 0, 0, 0, 2388, 2387, 1, 0, 0, 0, 2389, 339, 1, 0, 0, 0, 2390, 2392, 3, 270, 135, 0, 2391, 2393, 3, 278, 139, 0, 2392, 2391, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 341, 1, 0, 0, 0, 2394, 2396, 3, 270, 135, 0, 2395, 2397, 3, 278, 139, 0, 2396, 2395, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 343, 1, 0, 0, 0, 2398, 2399, 3, 262, 131, 0, 2399, 2400, 5, 396, 0, 0, 2400, 2403, 3, 346, 173, 0, 2401, 2402, 5, 47, 0, 0, 2402, 2404, 5, 426, 0, 0, 2403, 2401, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 345, 1, 0, 0, 0, 2405, 2406, 3, 350, 175, 0, 2406, 347, 1, 0, 0, 0, 2407, 2412, 3, 346, 173, 0, 2408, 2409, 5, 397, 0, 0, 2409, 2411, 3, 346, 173, 0, 2410, 2408, 1, 0, 0, 0, 2411, 2414, 1, 0, 0, 0, 2412, 2410, 1, 0, 0, 0, 2412, 2413, 1, 0, 0, 0, 2413, 349, 1, 0, 0, 0, 2414, 2412, 1, 0, 0, 0, 2415, 2421, 3, 352, 176, 0, 2416, 2421, 3, 354, 177, 0, 2417, 2421, 3, 356, 178, 0, 2418, 2421, 3, 358, 179, 0, 2419, 2421, 3, 360, 180, 0, 2420, 2415, 1, 0, 0, 0, 2420, 2416, 1, 0, 0, 0, 2420, 2417, 1, 0, 0, 0, 2420, 2418, 1, 0, 0, 0, 2420, 2419, 1, 0, 0, 0, 2421, 351, 1, 0, 0, 0, 2422, 2460, 5, 340, 0, 0, 2423, 2460, 5, 311, 0, 0, 2424, 2460, 5, 162, 0, 0, 2425, 2460, 5, 163, 0, 0, 2426, 2460, 5, 26, 0, 0, 2427, 2460, 5, 28, 0, 0, 2428, 2460, 5, 131, 0, 0, 2429, 2460, 5, 264, 0, 0, 2430, 2432, 5, 100, 0, 0, 2431, 2433, 5, 248, 0, 0, 2432, 2431, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2460, 1, 0, 0, 0, 2434, 2460, 5, 71, 0, 0, 2435, 2460, 5, 72, 0, 0, 2436, 2460, 5, 337, 0, 0, 2437, 2460, 5, 338, 0, 0, 2438, 2439, 5, 337, 0, 0, 2439, 2440, 5, 387, 0, 0, 2440, 2441, 5, 188, 0, 0, 2441, 2442, 5, 336, 0, 0, 2442, 2460, 5, 394, 0, 0, 2443, 2460, 5, 323, 0, 0, 2444, 2460, 5, 27, 0, 0, 2445, 2453, 3, 700, 350, 0, 2446, 2447, 5, 399, 0, 0, 2447, 2450, 5, 431, 0, 0, 2448, 2449, 5, 397, 0, 0, 2449, 2451, 5, 431, 0, 0, 2450, 2448, 1, 0, 0, 0, 2450, 2451, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2454, 5, 400, 0, 0, 2453, 2446, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2460, 1, 0, 0, 0, 2455, 2456, 7, 19, 0, 0, 2456, 2457, 5, 399, 0, 0, 2457, 2458, 5, 431, 0, 0, 2458, 2460, 5, 400, 0, 0, 2459, 2422, 1, 0, 0, 0, 2459, 2423, 1, 0, 0, 0, 2459, 2424, 1, 0, 0, 0, 2459, 2425, 1, 0, 0, 0, 2459, 2426, 1, 0, 0, 0, 2459, 2427, 1, 0, 0, 0, 2459, 2428, 1, 0, 0, 0, 2459, 2429, 1, 0, 0, 0, 2459, 2430, 1, 0, 0, 0, 2459, 2434, 1, 0, 0, 0, 2459, 2435, 1, 0, 0, 0, 2459, 2436, 1, 0, 0, 0, 2459, 2437, 1, 0, 0, 0, 2459, 2438, 1, 0, 0, 0, 2459, 2443, 1, 0, 0, 0, 2459, 2444, 1, 0, 0, 0, 2459, 2445, 1, 0, 0, 0, 2459, 2455, 1, 0, 0, 0, 2460, 353, 1, 0, 0, 0, 2461, 2462, 5, 16, 0, 0, 2462, 2463, 5, 409, 0, 0, 2463, 2464, 3, 350, 175, 0, 2464, 2465, 5, 411, 0, 0, 2465, 355, 1, 0, 0, 0, 2466, 2467, 5, 324, 0, 0, 2467, 2468, 5, 409, 0, 0, 2468, 2469, 3, 252, 126, 0, 2469, 2470, 5, 411, 0, 0, 2470, 357, 1, 0, 0, 0, 2471, 2472, 5, 198, 0, 0, 2472, 2473, 5, 409, 0, 0, 2473, 2474, 3, 352, 176, 0, 2474, 2475, 5, 397, 0, 0, 2475, 2476, 3, 350, 175, 0, 2476, 2477, 5, 411, 0, 0, 2477, 359, 1, 0, 0, 0, 2478, 2479, 5, 357, 0, 0, 2479, 2480, 5, 409, 0, 0, 2480, 2481, 3, 348, 174, 0, 2481, 2482, 5, 411, 0, 0, 2482, 361, 1, 0, 0, 0, 2483, 2485, 7, 20, 0, 0, 2484, 2486, 7, 21, 0, 0, 2485, 2484, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 363, 1, 0, 0, 0, 2487, 2489, 3, 368, 184, 0, 2488, 2487, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 2490, 1, 0, 0, 0, 2490, 2491, 3, 366, 183, 0, 2491, 365, 1, 0, 0, 0, 2492, 2495, 3, 372, 186, 0, 2493, 2495, 3, 376, 188, 0, 2494, 2492, 1, 0, 0, 0, 2494, 2493, 1, 0, 0, 0, 2495, 367, 1, 0, 0, 0, 2496, 2497, 5, 387, 0, 0, 2497, 2502, 3, 370, 185, 0, 2498, 2499, 5, 397, 0, 0, 2499, 2501, 3, 370, 185, 0, 2500, 2498, 1, 0, 0, 0, 2501, 2504, 1, 0, 0, 0, 2502, 2500, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 369, 1, 0, 0, 0, 2504, 2502, 1, 0, 0, 0, 2505, 2510, 3, 654, 327, 0, 2506, 2507, 5, 399, 0, 0, 2507, 2508, 3, 254, 127, 0, 2508, 2509, 5, 400, 0, 0, 2509, 2511, 1, 0, 0, 0, 2510, 2506, 1, 0, 0, 0, 2510, 2511, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2513, 5, 17, 0, 0, 2513, 2514, 5, 399, 0, 0, 2514, 2515, 3, 364, 182, 0, 2515, 2516, 5, 400, 0, 0, 2516, 371, 1, 0, 0, 0, 2517, 2523, 3, 374, 187, 0, 2518, 2519, 3, 362, 181, 0, 2519, 2520, 3, 374, 187, 0, 2520, 2522, 1, 0, 0, 0, 2521, 2518, 1, 0, 0, 0, 2522, 2525, 1, 0, 0, 0, 2523, 2521, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 373, 1, 0, 0, 0, 2525, 2523, 1, 0, 0, 0, 2526, 2527, 3, 452, 226, 0, 2527, 2528, 3, 386, 193, 0, 2528, 2530, 3, 508, 254, 0, 2529, 2531, 3, 466, 233, 0, 2530, 2529, 1, 0, 0, 0, 2530, 2531, 1, 0, 0, 0, 2531, 2533, 1, 0, 0, 0, 2532, 2534, 3, 500, 250, 0, 2533, 2532, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2536, 1, 0, 0, 0, 2535, 2537, 3, 534, 267, 0, 2536, 2535, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2539, 1, 0, 0, 0, 2538, 2540, 3, 542, 271, 0, 2539, 2538, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2543, 3, 526, 263, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2546, 3, 544, 272, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 2548, 1, 0, 0, 0, 2547, 2549, 3, 556, 278, 0, 2548, 2547, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2551, 1, 0, 0, 0, 2550, 2552, 3, 560, 280, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2554, 1, 0, 0, 0, 2553, 2555, 3, 562, 281, 0, 2554, 2553, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2557, 1, 0, 0, 0, 2556, 2558, 3, 564, 282, 0, 2557, 2556, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2560, 1, 0, 0, 0, 2559, 2561, 3, 390, 195, 0, 2560, 2559, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 2598, 1, 0, 0, 0, 2562, 2563, 3, 452, 226, 0, 2563, 2565, 3, 508, 254, 0, 2564, 2566, 3, 466, 233, 0, 2565, 2564, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2568, 1, 0, 0, 0, 2567, 2569, 3, 500, 250, 0, 2568, 2567, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2571, 1, 0, 0, 0, 2570, 2572, 3, 534, 267, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2574, 1, 0, 0, 0, 2573, 2575, 3, 542, 271, 0, 2574, 2573, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2577, 1, 0, 0, 0, 2576, 2578, 3, 526, 263, 0, 2577, 2576, 1, 0, 0, 0, 2577, 2578, 1, 0, 0, 0, 2578, 2580, 1, 0, 0, 0, 2579, 2581, 3, 544, 272, 0, 2580, 2579, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2583, 1, 0, 0, 0, 2582, 2584, 3, 556, 278, 0, 2583, 2582, 1, 0, 0, 0, 2583, 2584, 1, 0, 0, 0, 2584, 2586, 1, 0, 0, 0, 2585, 2587, 3, 560, 280, 0, 2586, 2585, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2589, 1, 0, 0, 0, 2588, 2590, 3, 562, 281, 0, 2589, 2588, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 2592, 1, 0, 0, 0, 2591, 2593, 3, 564, 282, 0, 2592, 2591, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2595, 1, 0, 0, 0, 2594, 2596, 3, 390, 195, 0, 2595, 2594, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2598, 1, 0, 0, 0, 2597, 2526, 1, 0, 0, 0, 2597, 2562, 1, 0, 0, 0, 2598, 375, 1, 0, 0, 0, 2599, 2600, 3, 386, 193, 0, 2600, 2601, 3, 380, 190, 0, 2601, 2604, 1, 0, 0, 0, 2602, 2604, 3, 380, 190, 0, 2603, 2599, 1, 0, 0, 0, 2603, 2602, 1, 0, 0, 0, 2604, 377, 1, 0, 0, 0, 2605, 2607, 3, 508, 254, 0, 2606, 2608, 3, 452, 226, 0, 2607, 2606, 1, 0, 0, 0, 2607, 2608, 1, 0, 0, 0, 2608, 2610, 1, 0, 0, 0, 2609, 2611, 3, 500, 250, 0, 2610, 2609, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2613, 1, 0, 0, 0, 2612, 2614, 3, 534, 267, 0, 2613, 2612, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2616, 1, 0, 0, 0, 2615, 2617, 3, 542, 271, 0, 2616, 2615, 1, 0, 0, 0, 2616, 2617, 1, 0, 0, 0, 2617, 2619, 1, 0, 0, 0, 2618, 2620, 3, 526, 263, 0, 2619, 2618, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2622, 1, 0, 0, 0, 2621, 2623, 3, 544, 272, 0, 2622, 2621, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2630, 1, 0, 0, 0, 2624, 2625, 5, 399, 0, 0, 2625, 2626, 3, 380, 190, 0, 2626, 2627, 5, 400, 0, 0, 2627, 2630, 1, 0, 0, 0, 2628, 2630, 3, 502, 251, 0, 2629, 2605, 1, 0, 0, 0, 2629, 2624, 1, 0, 0, 0, 2629, 2628, 1, 0, 0, 0, 2630, 379, 1, 0, 0, 0, 2631, 2633, 3, 378, 189, 0, 2632, 2634, 3, 382, 191, 0, 2633, 2632, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2636, 1, 0, 0, 0, 2635, 2637, 3, 556, 278, 0, 2636, 2635, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2639, 1, 0, 0, 0, 2638, 2640, 3, 560, 280, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 1, 0, 0, 0, 2641, 2643, 3, 562, 281, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2645, 1, 0, 0, 0, 2644, 2646, 3, 564, 282, 0, 2645, 2644, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2648, 1, 0, 0, 0, 2647, 2649, 3, 390, 195, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 381, 1, 0, 0, 0, 2650, 2651, 3, 362, 181, 0, 2651, 2652, 3, 378, 189, 0, 2652, 2654, 1, 0, 0, 0, 2653, 2650, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2653, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 383, 1, 0, 0, 0, 2657, 2659, 3, 368, 184, 0, 2658, 2657, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2661, 3, 380, 190, 0, 2661, 385, 1, 0, 0, 0, 2662, 2679, 5, 161, 0, 0, 2663, 2664, 5, 235, 0, 0, 2664, 2666, 3, 388, 194, 0, 2665, 2667, 3, 32, 16, 0, 2666, 2665, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2680, 1, 0, 0, 0, 2668, 2670, 5, 166, 0, 0, 2669, 2671, 5, 329, 0, 0, 2670, 2669, 1, 0, 0, 0, 2670, 2671, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2677, 3, 640, 320, 0, 2673, 2674, 5, 399, 0, 0, 2674, 2675, 3, 254, 127, 0, 2675, 2676, 5, 400, 0, 0, 2676, 2678, 1, 0, 0, 0, 2677, 2673, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2680, 1, 0, 0, 0, 2679, 2663, 1, 0, 0, 0, 2679, 2668, 1, 0, 0, 0, 2680, 387, 1, 0, 0, 0, 2681, 2683, 5, 188, 0, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2685, 5, 93, 0, 0, 2685, 2687, 5, 426, 0, 0, 2686, 2688, 3, 222, 111, 0, 2687, 2686, 1, 0, 0, 0, 2687, 2688, 1, 0, 0, 0, 2688, 2690, 1, 0, 0, 0, 2689, 2691, 3, 246, 123, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2695, 1, 0, 0, 0, 2692, 2693, 5, 329, 0, 0, 2693, 2695, 3, 640, 320, 0, 2694, 2682, 1, 0, 0, 0, 2694, 2692, 1, 0, 0, 0, 2695, 389, 1, 0, 0, 0, 2696, 2705, 5, 185, 0, 0, 2697, 2698, 5, 431, 0, 0, 2698, 2700, 5, 397, 0, 0, 2699, 2697, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2706, 5, 431, 0, 0, 2702, 2703, 5, 431, 0, 0, 2703, 2704, 5, 223, 0, 0, 2704, 2706, 5, 431, 0, 0, 2705, 2699, 1, 0, 0, 0, 2705, 2702, 1, 0, 0, 0, 2706, 391, 1, 0, 0, 0, 2707, 2708, 3, 256, 128, 0, 2708, 2709, 5, 405, 0, 0, 2709, 2710, 3, 394, 197, 0, 2710, 393, 1, 0, 0, 0, 2711, 2714, 5, 83, 0, 0, 2712, 2714, 3, 606, 303, 0, 2713, 2711, 1, 0, 0, 0, 2713, 2712, 1, 0, 0, 0, 2714, 395, 1, 0, 0, 0, 2715, 2716, 5, 304, 0, 0, 2716, 2721, 3, 392, 196, 0, 2717, 2718, 5, 397, 0, 0, 2718, 2720, 3, 392, 196, 0, 2719, 2717, 1, 0, 0, 0, 2720, 2723, 1, 0, 0, 0, 2721, 2719, 1, 0, 0, 0, 2721, 2722, 1, 0, 0, 0, 2722, 397, 1, 0, 0, 0, 2723, 2721, 1, 0, 0, 0, 2724, 2725, 5, 318, 0, 0, 2725, 2734, 5, 344, 0, 0, 2726, 2731, 3, 400, 200, 0, 2727, 2728, 5, 397, 0, 0, 2728, 2730, 3, 400, 200, 0, 2729, 2727, 1, 0, 0, 0, 2730, 2733, 1, 0, 0, 0, 2731, 2729, 1, 0, 0, 0, 2731, 2732, 1, 0, 0, 0, 2732, 2735, 1, 0, 0, 0, 2733, 2731, 1, 0, 0, 0, 2734, 2726, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2748, 1, 0, 0, 0, 2736, 2738, 5, 48, 0, 0, 2737, 2739, 5, 389, 0, 0, 2738, 2737, 1, 0, 0, 0, 2738, 2739, 1, 0, 0, 0, 2739, 2748, 1, 0, 0, 0, 2740, 2742, 5, 289, 0, 0, 2741, 2743, 5, 389, 0, 0, 2742, 2741, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 2748, 1, 0, 0, 0, 2744, 2745, 5, 304, 0, 0, 2745, 2746, 5, 22, 0, 0, 2746, 2748, 7, 22, 0, 0, 2747, 2724, 1, 0, 0, 0, 2747, 2736, 1, 0, 0, 0, 2747, 2740, 1, 0, 0, 0, 2747, 2744, 1, 0, 0, 0, 2748, 399, 1, 0, 0, 0, 2749, 2750, 5, 168, 0, 0, 2750, 2751, 5, 182, 0, 0, 2751, 2755, 5, 312, 0, 0, 2752, 2753, 5, 261, 0, 0, 2753, 2755, 7, 23, 0, 0, 2754, 2749, 1, 0, 0, 0, 2754, 2752, 1, 0, 0, 0, 2755, 401, 1, 0, 0, 0, 2756, 2759, 3, 406, 203, 0, 2757, 2759, 3, 408, 204, 0, 2758, 2756, 1, 0, 0, 0, 2758, 2757, 1, 0, 0, 0, 2759, 2762, 1, 0, 0, 0, 2760, 2758, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2764, 1, 0, 0, 0, 2762, 2760, 1, 0, 0, 0, 2763, 2765, 3, 404, 202, 0, 2764, 2763, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 403, 1, 0, 0, 0, 2766, 2767, 5, 383, 0, 0, 2767, 2768, 5, 216, 0, 0, 2768, 2771, 5, 201, 0, 0, 2769, 2770, 5, 11, 0, 0, 2770, 2772, 3, 596, 298, 0, 2771, 2769, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2774, 5, 335, 0, 0, 2774, 2776, 5, 161, 0, 0, 2775, 2777, 3, 268, 134, 0, 2776, 2775, 1, 0, 0, 0, 2776, 2777, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 2779, 5, 374, 0, 0, 2779, 2780, 3, 552, 276, 0, 2780, 405, 1, 0, 0, 0, 2781, 2782, 5, 383, 0, 0, 2782, 2783, 5, 201, 0, 0, 2783, 2784, 5, 11, 0, 0, 2784, 2785, 3, 596, 298, 0, 2785, 2789, 5, 335, 0, 0, 2786, 2787, 5, 365, 0, 0, 2787, 2790, 3, 396, 198, 0, 2788, 2790, 5, 86, 0, 0, 2789, 2786, 1, 0, 0, 0, 2789, 2788, 1, 0, 0, 0, 2790, 407, 1, 0, 0, 0, 2791, 2792, 5, 383, 0, 0, 2792, 2793, 5, 201, 0, 0, 2793, 2797, 5, 335, 0, 0, 2794, 2795, 5, 365, 0, 0, 2795, 2798, 3, 396, 198, 0, 2796, 2798, 5, 86, 0, 0, 2797, 2794, 1, 0, 0, 0, 2797, 2796, 1, 0, 0, 0, 2798, 409, 1, 0, 0, 0, 2799, 2800, 5, 246, 0, 0, 2800, 2801, 5, 426, 0, 0, 2801, 411, 1, 0, 0, 0, 2802, 2803, 5, 352, 0, 0, 2803, 2804, 5, 426, 0, 0, 2804, 413, 1, 0, 0, 0, 2805, 2806, 5, 320, 0, 0, 2806, 2807, 5, 426, 0, 0, 2807, 415, 1, 0, 0, 0, 2808, 2839, 5, 9, 0, 0, 2809, 2810, 5, 329, 0, 0, 2810, 2811, 3, 482, 241, 0, 2811, 2812, 3, 418, 209, 0, 2812, 2840, 1, 0, 0, 0, 2813, 2814, 5, 378, 0, 0, 2814, 2816, 3, 486, 243, 0, 2815, 2817, 5, 17, 0, 0, 2816, 2815, 1, 0, 0, 0, 2816, 2817, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 2819, 3, 422, 211, 0, 2819, 2840, 1, 0, 0, 0, 2820, 2821, 5, 202, 0, 0, 2821, 2822, 5, 378, 0, 0, 2822, 2826, 3, 486, 243, 0, 2823, 2827, 3, 36, 18, 0, 2824, 2827, 3, 38, 19, 0, 2825, 2827, 5, 265, 0, 0, 2826, 2823, 1, 0, 0, 0, 2826, 2824, 1, 0, 0, 0, 2826, 2825, 1, 0, 0, 0, 2827, 2840, 1, 0, 0, 0, 2828, 2829, 3, 70, 35, 0, 2829, 2830, 3, 424, 212, 0, 2830, 2840, 1, 0, 0, 0, 2831, 2832, 5, 69, 0, 0, 2832, 2840, 3, 426, 213, 0, 2833, 2834, 5, 155, 0, 0, 2834, 2835, 3, 654, 327, 0, 2835, 2836, 5, 224, 0, 0, 2836, 2837, 3, 640, 320, 0, 2837, 2838, 5, 265, 0, 0, 2838, 2840, 1, 0, 0, 0, 2839, 2809, 1, 0, 0, 0, 2839, 2813, 1, 0, 0, 0, 2839, 2820, 1, 0, 0, 0, 2839, 2828, 1, 0, 0, 0, 2839, 2831, 1, 0, 0, 0, 2839, 2833, 1, 0, 0, 0, 2840, 417, 1, 0, 0, 0, 2841, 2842, 5, 274, 0, 0, 2842, 2843, 5, 341, 0, 0, 2843, 2931, 3, 484, 242, 0, 2844, 2845, 5, 102, 0, 0, 2845, 2931, 5, 239, 0, 0, 2846, 2931, 3, 430, 215, 0, 2847, 2849, 5, 4, 0, 0, 2848, 2850, 3, 32, 16, 0, 2849, 2848, 1, 0, 0, 0, 2849, 2850, 1, 0, 0, 0, 2850, 2855, 1, 0, 0, 0, 2851, 2853, 3, 642, 321, 0, 2852, 2854, 3, 428, 214, 0, 2853, 2852, 1, 0, 0, 0, 2853, 2854, 1, 0, 0, 0, 2854, 2856, 1, 0, 0, 0, 2855, 2851, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 2855, 1, 0, 0, 0, 2857, 2858, 1, 0, 0, 0, 2858, 2931, 1, 0, 0, 0, 2859, 2863, 5, 342, 0, 0, 2860, 2862, 3, 642, 321, 0, 2861, 2860, 1, 0, 0, 0, 2862, 2865, 1, 0, 0, 0, 2863, 2861, 1, 0, 0, 0, 2863, 2864, 1, 0, 0, 0, 2864, 2931, 1, 0, 0, 0, 2865, 2863, 1, 0, 0, 0, 2866, 2870, 5, 15, 0, 0, 2867, 2869, 3, 642, 321, 0, 2868, 2867, 1, 0, 0, 0, 2869, 2872, 1, 0, 0, 0, 2870, 2868, 1, 0, 0, 0, 2870, 2871, 1, 0, 0, 0, 2871, 2931, 1, 0, 0, 0, 2872, 2870, 1, 0, 0, 0, 2873, 2877, 5, 353, 0, 0, 2874, 2876, 3, 642, 321, 0, 2875, 2874, 1, 0, 0, 0, 2876, 2879, 1, 0, 0, 0, 2877, 2875, 1, 0, 0, 0, 2877, 2878, 1, 0, 0, 0, 2878, 2931, 1, 0, 0, 0, 2879, 2877, 1, 0, 0, 0, 2880, 2881, 5, 304, 0, 0, 2881, 2882, 5, 332, 0, 0, 2882, 2931, 3, 226, 113, 0, 2883, 2884, 5, 363, 0, 0, 2884, 2886, 5, 332, 0, 0, 2885, 2887, 3, 30, 15, 0, 2886, 2885, 1, 0, 0, 0, 2886, 2887, 1, 0, 0, 0, 2887, 2888, 1, 0, 0, 0, 2888, 2931, 3, 226, 113, 0, 2889, 2931, 3, 210, 105, 0, 2890, 2893, 5, 216, 0, 0, 2891, 2894, 5, 310, 0, 0, 2892, 2894, 3, 40, 20, 0, 2893, 2891, 1, 0, 0, 0, 2893, 2892, 1, 0, 0, 0, 2894, 2931, 1, 0, 0, 0, 2895, 2896, 5, 113, 0, 0, 2896, 2897, 3, 642, 321, 0, 2897, 2898, 5, 387, 0, 0, 2898, 2899, 5, 329, 0, 0, 2899, 2900, 3, 482, 241, 0, 2900, 2931, 1, 0, 0, 0, 2901, 2902, 5, 237, 0, 0, 2902, 2903, 5, 45, 0, 0, 2903, 2904, 5, 399, 0, 0, 2904, 2905, 3, 314, 157, 0, 2905, 2906, 5, 400, 0, 0, 2906, 2931, 1, 0, 0, 0, 2907, 2908, 5, 101, 0, 0, 2908, 2909, 5, 55, 0, 0, 2909, 2931, 3, 654, 327, 0, 2910, 2913, 5, 4, 0, 0, 2911, 2914, 3, 292, 146, 0, 2912, 2914, 3, 282, 141, 0, 2913, 2911, 1, 0, 0, 0, 2913, 2912, 1, 0, 0, 0, 2914, 2931, 1, 0, 0, 0, 2915, 2917, 3, 642, 321, 0, 2916, 2915, 1, 0, 0, 0, 2916, 2917, 1, 0, 0, 0, 2917, 2918, 1, 0, 0, 0, 2918, 2931, 3, 420, 210, 0, 2919, 2920, 5, 304, 0, 0, 2920, 2921, 5, 236, 0, 0, 2921, 2931, 3, 126, 63, 0, 2922, 2923, 5, 304, 0, 0, 2923, 2924, 5, 237, 0, 0, 2924, 2925, 5, 316, 0, 0, 2925, 2926, 5, 399, 0, 0, 2926, 2927, 3, 204, 102, 0, 2927, 2928, 5, 400, 0, 0, 2928, 2931, 1, 0, 0, 0, 2929, 2931, 3, 434, 217, 0, 2930, 2841, 1, 0, 0, 0, 2930, 2844, 1, 0, 0, 0, 2930, 2846, 1, 0, 0, 0, 2930, 2847, 1, 0, 0, 0, 2930, 2859, 1, 0, 0, 0, 2930, 2866, 1, 0, 0, 0, 2930, 2873, 1, 0, 0, 0, 2930, 2880, 1, 0, 0, 0, 2930, 2883, 1, 0, 0, 0, 2930, 2889, 1, 0, 0, 0, 2930, 2890, 1, 0, 0, 0, 2930, 2895, 1, 0, 0, 0, 2930, 2901, 1, 0, 0, 0, 2930, 2907, 1, 0, 0, 0, 2930, 2910, 1, 0, 0, 0, 2930, 2916, 1, 0, 0, 0, 2930, 2919, 1, 0, 0, 0, 2930, 2922, 1, 0, 0, 0, 2930, 2929, 1, 0, 0, 0, 2931, 419, 1, 0, 0, 0, 2932, 2933, 5, 304, 0, 0, 2933, 2934, 5, 129, 0, 0, 2934, 3065, 3, 436, 218, 0, 2935, 2936, 5, 304, 0, 0, 2936, 2937, 5, 189, 0, 0, 2937, 3065, 5, 426, 0, 0, 2938, 3065, 5, 53, 0, 0, 2939, 2949, 5, 304, 0, 0, 2940, 2941, 5, 301, 0, 0, 2941, 2945, 5, 426, 0, 0, 2942, 2943, 5, 387, 0, 0, 2943, 2944, 5, 302, 0, 0, 2944, 2946, 3, 226, 113, 0, 2945, 2942, 1, 0, 0, 0, 2945, 2946, 1, 0, 0, 0, 2946, 2950, 1, 0, 0, 0, 2947, 2948, 5, 302, 0, 0, 2948, 2950, 3, 226, 113, 0, 2949, 2940, 1, 0, 0, 0, 2949, 2947, 1, 0, 0, 0, 2950, 3065, 1, 0, 0, 0, 2951, 2952, 5, 363, 0, 0, 2952, 2953, 5, 302, 0, 0, 2953, 3065, 3, 226, 113, 0, 2954, 2955, 5, 274, 0, 0, 2955, 2956, 5, 341, 0, 0, 2956, 3065, 3, 642, 321, 0, 2957, 2958, 5, 166, 0, 0, 2958, 2959, 5, 431, 0, 0, 2959, 3065, 5, 31, 0, 0, 2960, 2961, 5, 304, 0, 0, 2961, 2962, 5, 310, 0, 0, 2962, 2963, 5, 189, 0, 0, 2963, 2964, 5, 399, 0, 0, 2964, 2969, 3, 432, 216, 0, 2965, 2966, 5, 397, 0, 0, 2966, 2968, 3, 432, 216, 0, 2967, 2965, 1, 0, 0, 0, 2968, 2971, 1, 0, 0, 0, 2969, 2967, 1, 0, 0, 0, 2969, 2970, 1, 0, 0, 0, 2970, 2972, 1, 0, 0, 0, 2971, 2969, 1, 0, 0, 0, 2972, 2973, 5, 400, 0, 0, 2973, 3065, 1, 0, 0, 0, 2974, 2975, 5, 216, 0, 0, 2975, 3065, 7, 24, 0, 0, 2976, 3065, 3, 208, 104, 0, 2977, 2978, 5, 49, 0, 0, 2978, 2981, 5, 426, 0, 0, 2979, 2980, 5, 11, 0, 0, 2980, 2982, 5, 380, 0, 0, 2981, 2979, 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 2987, 1, 0, 0, 0, 2983, 2984, 5, 42, 0, 0, 2984, 2985, 5, 166, 0, 0, 2985, 2986, 5, 431, 0, 0, 2986, 2988, 5, 31, 0, 0, 2987, 2983, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 2990, 1, 0, 0, 0, 2989, 2991, 3, 556, 278, 0, 2990, 2989, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2993, 1, 0, 0, 0, 2992, 2994, 3, 410, 205, 0, 2993, 2992, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2999, 1, 0, 0, 0, 2995, 2996, 5, 387, 0, 0, 2996, 2997, 5, 235, 0, 0, 2997, 2998, 5, 332, 0, 0, 2998, 3000, 3, 226, 113, 0, 2999, 2995, 1, 0, 0, 0, 2999, 3000, 1, 0, 0, 0, 3000, 3065, 1, 0, 0, 0, 3001, 3002, 5, 365, 0, 0, 3002, 3003, 5, 319, 0, 0, 3003, 3005, 5, 134, 0, 0, 3004, 3006, 5, 45, 0, 0, 3005, 3004, 1, 0, 0, 0, 3005, 3006, 1, 0, 0, 0, 3006, 3007, 1, 0, 0, 0, 3007, 3008, 3, 256, 128, 0, 3008, 3009, 5, 304, 0, 0, 3009, 3012, 3, 226, 113, 0, 3010, 3011, 5, 47, 0, 0, 3011, 3013, 5, 426, 0, 0, 3012, 3010, 1, 0, 0, 0, 3012, 3013, 1, 0, 0, 0, 3013, 3065, 1, 0, 0, 0, 3014, 3015, 5, 365, 0, 0, 3015, 3016, 5, 319, 0, 0, 3016, 3017, 5, 304, 0, 0, 3017, 3065, 3, 226, 113, 0, 3018, 3020, 5, 38, 0, 0, 3019, 3021, 5, 45, 0, 0, 3020, 3019, 1, 0, 0, 0, 3020, 3021, 1, 0, 0, 0, 3021, 3022, 1, 0, 0, 0, 3022, 3023, 3, 256, 128, 0, 3023, 3024, 3, 262, 131, 0, 3024, 3026, 3, 346, 173, 0, 3025, 3027, 3, 328, 164, 0, 3026, 3025, 1, 0, 0, 0, 3026, 3027, 1, 0, 0, 0, 3027, 3030, 1, 0, 0, 0, 3028, 3029, 5, 47, 0, 0, 3029, 3031, 5, 426, 0, 0, 3030, 3028, 1, 0, 0, 0, 3030, 3031, 1, 0, 0, 0, 3031, 3035, 1, 0, 0, 0, 3032, 3036, 5, 130, 0, 0, 3033, 3034, 5, 6, 0, 0, 3034, 3036, 3, 654, 327, 0, 3035, 3032, 1, 0, 0, 0, 3035, 3033, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3038, 1, 0, 0, 0, 3037, 3039, 3, 34, 17, 0, 3038, 3037, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 3065, 1, 0, 0, 0, 3040, 3043, 5, 4, 0, 0, 3041, 3043, 5, 278, 0, 0, 3042, 3040, 1, 0, 0, 0, 3042, 3041, 1, 0, 0, 0, 3043, 3044, 1, 0, 0, 0, 3044, 3045, 5, 46, 0, 0, 3045, 3046, 5, 399, 0, 0, 3046, 3047, 3, 248, 124, 0, 3047, 3049, 5, 400, 0, 0, 3048, 3050, 3, 34, 17, 0, 3049, 3048, 1, 0, 0, 0, 3049, 3050, 1, 0, 0, 0, 3050, 3065, 1, 0, 0, 0, 3051, 3052, 5, 365, 0, 0, 3052, 3054, 5, 46, 0, 0, 3053, 3055, 3, 34, 17, 0, 3054, 3053, 1, 0, 0, 0, 3054, 3055, 1, 0, 0, 0, 3055, 3065, 1, 0, 0, 0, 3056, 3062, 3, 272, 136, 0, 3057, 3059, 5, 218, 0, 0, 3058, 3060, 5, 34, 0, 0, 3059, 3058, 1, 0, 0, 0, 3059, 3060, 1, 0, 0, 0, 3060, 3063, 1, 0, 0, 0, 3061, 3063, 5, 222, 0, 0, 3062, 3057, 1, 0, 0, 0, 3062, 3061, 1, 0, 0, 0, 3063, 3065, 1, 0, 0, 0, 3064, 2932, 1, 0, 0, 0, 3064, 2935, 1, 0, 0, 0, 3064, 2938, 1, 0, 0, 0, 3064, 2939, 1, 0, 0, 0, 3064, 2951, 1, 0, 0, 0, 3064, 2954, 1, 0, 0, 0, 3064, 2957, 1, 0, 0, 0, 3064, 2960, 1, 0, 0, 0, 3064, 2974, 1, 0, 0, 0, 3064, 2976, 1, 0, 0, 0, 3064, 2977, 1, 0, 0, 0, 3064, 3001, 1, 0, 0, 0, 3064, 3014, 1, 0, 0, 0, 3064, 3018, 1, 0, 0, 0, 3064, 3042, 1, 0, 0, 0, 3064, 3051, 1, 0, 0, 0, 3064, 3056, 1, 0, 0, 0, 3065, 421, 1, 0, 0, 0, 3066, 3067, 5, 304, 0, 0, 3067, 3068, 5, 332, 0, 0, 3068, 3093, 3, 226, 113, 0, 3069, 3070, 5, 363, 0, 0, 3070, 3072, 5, 332, 0, 0, 3071, 3073, 3, 30, 15, 0, 3072, 3071, 1, 0, 0, 0, 3072, 3073, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3074, 3093, 3, 226, 113, 0, 3075, 3076, 5, 274, 0, 0, 3076, 3077, 5, 341, 0, 0, 3077, 3093, 3, 484, 242, 0, 3078, 3080, 5, 4, 0, 0, 3079, 3081, 3, 32, 16, 0, 3080, 3079, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3086, 1, 0, 0, 0, 3082, 3084, 3, 642, 321, 0, 3083, 3085, 3, 428, 214, 0, 3084, 3083, 1, 0, 0, 0, 3084, 3085, 1, 0, 0, 0, 3085, 3087, 1, 0, 0, 0, 3086, 3082, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3086, 1, 0, 0, 0, 3088, 3089, 1, 0, 0, 0, 3089, 3093, 1, 0, 0, 0, 3090, 3093, 3, 430, 215, 0, 3091, 3093, 3, 384, 192, 0, 3092, 3066, 1, 0, 0, 0, 3092, 3069, 1, 0, 0, 0, 3092, 3075, 1, 0, 0, 0, 3092, 3078, 1, 0, 0, 0, 3092, 3090, 1, 0, 0, 0, 3092, 3091, 1, 0, 0, 0, 3093, 423, 1, 0, 0, 0, 3094, 3095, 3, 476, 238, 0, 3095, 3096, 5, 304, 0, 0, 3096, 3097, 5, 76, 0, 0, 3097, 3098, 3, 230, 115, 0, 3098, 3110, 1, 0, 0, 0, 3099, 3100, 3, 476, 238, 0, 3100, 3101, 5, 304, 0, 0, 3101, 3102, 5, 236, 0, 0, 3102, 3103, 3, 128, 64, 0, 3103, 3110, 1, 0, 0, 0, 3104, 3105, 3, 476, 238, 0, 3105, 3106, 5, 304, 0, 0, 3106, 3107, 7, 25, 0, 0, 3107, 3108, 5, 426, 0, 0, 3108, 3110, 1, 0, 0, 0, 3109, 3094, 1, 0, 0, 0, 3109, 3099, 1, 0, 0, 0, 3109, 3104, 1, 0, 0, 0, 3110, 425, 1, 0, 0, 0, 3111, 3112, 3, 476, 238, 0, 3112, 3113, 5, 304, 0, 0, 3113, 3114, 5, 77, 0, 0, 3114, 3115, 3, 230, 115, 0, 3115, 3127, 1, 0, 0, 0, 3116, 3117, 3, 476, 238, 0, 3117, 3118, 5, 304, 0, 0, 3118, 3119, 5, 236, 0, 0, 3119, 3120, 3, 128, 64, 0, 3120, 3127, 1, 0, 0, 0, 3121, 3122, 3, 476, 238, 0, 3122, 3123, 5, 304, 0, 0, 3123, 3124, 5, 367, 0, 0, 3124, 3125, 5, 426, 0, 0, 3125, 3127, 1, 0, 0, 0, 3126, 3111, 1, 0, 0, 0, 3126, 3116, 1, 0, 0, 0, 3126, 3121, 1, 0, 0, 0, 3127, 427, 1, 0, 0, 0, 3128, 3129, 5, 189, 0, 0, 3129, 3130, 5, 426, 0, 0, 3130, 429, 1, 0, 0, 0, 3131, 3133, 5, 101, 0, 0, 3132, 3134, 3, 30, 15, 0, 3133, 3132, 1, 0, 0, 0, 3133, 3134, 1, 0, 0, 0, 3134, 3135, 1, 0, 0, 0, 3135, 3136, 5, 237, 0, 0, 3136, 3142, 3, 646, 323, 0, 3137, 3138, 5, 397, 0, 0, 3138, 3139, 5, 237, 0, 0, 3139, 3141, 3, 646, 323, 0, 3140, 3137, 1, 0, 0, 0, 3141, 3144, 1, 0, 0, 0, 3142, 3140, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3147, 1, 0, 0, 0, 3144, 3142, 1, 0, 0, 0, 3145, 3146, 5, 152, 0, 0, 3146, 3148, 5, 254, 0, 0, 3147, 3145, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3150, 1, 0, 0, 0, 3149, 3151, 5, 255, 0, 0, 3150, 3149, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3153, 1, 0, 0, 0, 3152, 3154, 3, 14, 7, 0, 3153, 3152, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 431, 1, 0, 0, 0, 3155, 3158, 3, 588, 294, 0, 3156, 3158, 3, 298, 149, 0, 3157, 3155, 1, 0, 0, 0, 3157, 3156, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 3160, 5, 405, 0, 0, 3160, 3161, 5, 426, 0, 0, 3161, 433, 1, 0, 0, 0, 3162, 3172, 5, 115, 0, 0, 3163, 3164, 5, 289, 0, 0, 3164, 3165, 5, 399, 0, 0, 3165, 3173, 7, 26, 0, 0, 3166, 3167, 5, 118, 0, 0, 3167, 3168, 5, 399, 0, 0, 3168, 3173, 5, 426, 0, 0, 3169, 3170, 5, 306, 0, 0, 3170, 3171, 5, 399, 0, 0, 3171, 3173, 5, 431, 0, 0, 3172, 3163, 1, 0, 0, 0, 3172, 3166, 1, 0, 0, 0, 3172, 3169, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 3175, 5, 400, 0, 0, 3175, 435, 1, 0, 0, 0, 3176, 3177, 5, 160, 0, 0, 3177, 3178, 5, 426, 0, 0, 3178, 3179, 5, 233, 0, 0, 3179, 3180, 5, 426, 0, 0, 3180, 3181, 5, 301, 0, 0, 3181, 3186, 5, 426, 0, 0, 3182, 3183, 5, 159, 0, 0, 3183, 3184, 5, 426, 0, 0, 3184, 3185, 5, 232, 0, 0, 3185, 3187, 5, 426, 0, 0, 3186, 3182, 1, 0, 0, 0, 3186, 3187, 1, 0, 0, 0, 3187, 3190, 1, 0, 0, 0, 3188, 3190, 3, 654, 327, 0, 3189, 3176, 1, 0, 0, 0, 3189, 3188, 1, 0, 0, 0, 3190, 437, 1, 0, 0, 0, 3191, 3192, 5, 184, 0, 0, 3192, 3201, 5, 128, 0, 0, 3193, 3194, 5, 184, 0, 0, 3194, 3195, 5, 128, 0, 0, 3195, 3196, 3, 654, 327, 0, 3196, 3197, 5, 426, 0, 0, 3197, 3201, 1, 0, 0, 0, 3198, 3199, 5, 184, 0, 0, 3199, 3201, 3, 482, 241, 0, 3200, 3191, 1, 0, 0, 0, 3200, 3193, 1, 0, 0, 0, 3200, 3198, 1, 0, 0, 0, 3201, 439, 1, 0, 0, 0, 3202, 3204, 5, 58, 0, 0, 3203, 3205, 5, 333, 0, 0, 3204, 3203, 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 3207, 1, 0, 0, 0, 3206, 3208, 5, 345, 0, 0, 3207, 3206, 1, 0, 0, 0, 3207, 3208, 1, 0, 0, 0, 3208, 3210, 1, 0, 0, 0, 3209, 3211, 5, 123, 0, 0, 3210, 3209, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3212, 1, 0, 0, 0, 3212, 3214, 5, 329, 0, 0, 3213, 3215, 3, 32, 16, 0, 3214, 3213, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3216, 1, 0, 0, 0, 3216, 3273, 3, 484, 242, 0, 3217, 3219, 3, 438, 219, 0, 3218, 3220, 3, 200, 100, 0, 3219, 3218, 1, 0, 0, 0, 3219, 3220, 1, 0, 0, 0, 3220, 3222, 1, 0, 0, 0, 3221, 3223, 3, 222, 111, 0, 3222, 3221, 1, 0, 0, 0, 3222, 3223, 1, 0, 0, 0, 3223, 3225, 1, 0, 0, 0, 3224, 3226, 3, 246, 123, 0, 3225, 3224, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3228, 1, 0, 0, 0, 3227, 3229, 3, 428, 214, 0, 3228, 3227, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3231, 1, 0, 0, 0, 3230, 3232, 3, 224, 112, 0, 3231, 3230, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3234, 1, 0, 0, 0, 3233, 3235, 3, 198, 99, 0, 3234, 3233, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3274, 1, 0, 0, 0, 3236, 3237, 5, 399, 0, 0, 3237, 3238, 3, 250, 125, 0, 3238, 3239, 5, 400, 0, 0, 3239, 3241, 1, 0, 0, 0, 3240, 3236, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3243, 1, 0, 0, 0, 3242, 3244, 3, 196, 98, 0, 3243, 3242, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3246, 1, 0, 0, 0, 3245, 3247, 3, 200, 100, 0, 3246, 3245, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3249, 1, 0, 0, 0, 3248, 3250, 3, 208, 104, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3252, 1, 0, 0, 0, 3251, 3253, 3, 210, 105, 0, 3252, 3251, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 1, 0, 0, 0, 3254, 3256, 3, 222, 111, 0, 3255, 3254, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3258, 1, 0, 0, 0, 3257, 3259, 3, 246, 123, 0, 3258, 3257, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3261, 1, 0, 0, 0, 3260, 3262, 3, 428, 214, 0, 3261, 3260, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3264, 1, 0, 0, 0, 3263, 3265, 3, 224, 112, 0, 3264, 3263, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3267, 1, 0, 0, 0, 3266, 3268, 3, 198, 99, 0, 3267, 3266, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3271, 1, 0, 0, 0, 3269, 3270, 5, 17, 0, 0, 3270, 3272, 3, 384, 192, 0, 3271, 3269, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3274, 1, 0, 0, 0, 3273, 3217, 1, 0, 0, 0, 3273, 3240, 1, 0, 0, 0, 3274, 3338, 1, 0, 0, 0, 3275, 3276, 5, 58, 0, 0, 3276, 3277, 5, 195, 0, 0, 3277, 3279, 5, 329, 0, 0, 3278, 3280, 3, 32, 16, 0, 3279, 3278, 1, 0, 0, 0, 3279, 3280, 1, 0, 0, 0, 3280, 3281, 1, 0, 0, 0, 3281, 3335, 3, 484, 242, 0, 3282, 3284, 3, 438, 219, 0, 3283, 3285, 3, 222, 111, 0, 3284, 3283, 1, 0, 0, 0, 3284, 3285, 1, 0, 0, 0, 3285, 3287, 1, 0, 0, 0, 3286, 3288, 3, 246, 123, 0, 3287, 3286, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3290, 1, 0, 0, 0, 3289, 3291, 3, 428, 214, 0, 3290, 3289, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3293, 1, 0, 0, 0, 3292, 3294, 3, 224, 112, 0, 3293, 3292, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3296, 1, 0, 0, 0, 3295, 3297, 3, 198, 99, 0, 3296, 3295, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3336, 1, 0, 0, 0, 3298, 3299, 5, 399, 0, 0, 3299, 3300, 3, 250, 125, 0, 3300, 3301, 5, 400, 0, 0, 3301, 3303, 1, 0, 0, 0, 3302, 3298, 1, 0, 0, 0, 3302, 3303, 1, 0, 0, 0, 3303, 3305, 1, 0, 0, 0, 3304, 3306, 3, 196, 98, 0, 3305, 3304, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3308, 1, 0, 0, 0, 3307, 3309, 3, 200, 100, 0, 3308, 3307, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3312, 3, 208, 104, 0, 3311, 3310, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, 3314, 1, 0, 0, 0, 3313, 3315, 3, 210, 105, 0, 3314, 3313, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3317, 1, 0, 0, 0, 3316, 3318, 3, 222, 111, 0, 3317, 3316, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 3320, 1, 0, 0, 0, 3319, 3321, 3, 246, 123, 0, 3320, 3319, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3323, 1, 0, 0, 0, 3322, 3324, 3, 428, 214, 0, 3323, 3322, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3326, 1, 0, 0, 0, 3325, 3327, 3, 224, 112, 0, 3326, 3325, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3329, 1, 0, 0, 0, 3328, 3330, 3, 198, 99, 0, 3329, 3328, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3333, 1, 0, 0, 0, 3331, 3332, 5, 17, 0, 0, 3332, 3334, 3, 384, 192, 0, 3333, 3331, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3336, 1, 0, 0, 0, 3335, 3282, 1, 0, 0, 0, 3335, 3302, 1, 0, 0, 0, 3336, 3338, 1, 0, 0, 0, 3337, 3202, 1, 0, 0, 0, 3337, 3275, 1, 0, 0, 0, 3338, 441, 1, 0, 0, 0, 3339, 3340, 5, 58, 0, 0, 3340, 3342, 5, 69, 0, 0, 3341, 3343, 3, 32, 16, 0, 3342, 3341, 1, 0, 0, 0, 3342, 3343, 1, 0, 0, 0, 3343, 3344, 1, 0, 0, 0, 3344, 3347, 3, 654, 327, 0, 3345, 3346, 5, 352, 0, 0, 3346, 3348, 5, 426, 0, 0, 3347, 3345, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3351, 1, 0, 0, 0, 3349, 3350, 5, 367, 0, 0, 3350, 3352, 5, 426, 0, 0, 3351, 3349, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3355, 1, 0, 0, 0, 3353, 3354, 5, 47, 0, 0, 3354, 3356, 5, 426, 0, 0, 3355, 3353, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3360, 1, 0, 0, 0, 3357, 3358, 5, 387, 0, 0, 3358, 3359, 5, 77, 0, 0, 3359, 3361, 3, 230, 115, 0, 3360, 3357, 1, 0, 0, 0, 3360, 3361, 1, 0, 0, 0, 3361, 443, 1, 0, 0, 0, 3362, 3363, 5, 101, 0, 0, 3363, 3365, 5, 69, 0, 0, 3364, 3366, 3, 30, 15, 0, 3365, 3364, 1, 0, 0, 0, 3365, 3366, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3368, 3, 654, 327, 0, 3368, 445, 1, 0, 0, 0, 3369, 3370, 3, 654, 327, 0, 3370, 3371, 5, 395, 0, 0, 3371, 3373, 1, 0, 0, 0, 3372, 3369, 1, 0, 0, 0, 3373, 3376, 1, 0, 0, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3377, 1, 0, 0, 0, 3376, 3374, 1, 0, 0, 0, 3377, 3378, 5, 415, 0, 0, 3378, 447, 1, 0, 0, 0, 3379, 3384, 3, 596, 298, 0, 3380, 3381, 5, 397, 0, 0, 3381, 3383, 3, 596, 298, 0, 3382, 3380, 1, 0, 0, 0, 3383, 3386, 1, 0, 0, 0, 3384, 3382, 1, 0, 0, 0, 3384, 3385, 1, 0, 0, 0, 3385, 449, 1, 0, 0, 0, 3386, 3384, 1, 0, 0, 0, 3387, 3392, 3, 654, 327, 0, 3388, 3389, 5, 397, 0, 0, 3389, 3391, 3, 654, 327, 0, 3390, 3388, 1, 0, 0, 0, 3391, 3394, 1, 0, 0, 0, 3392, 3390, 1, 0, 0, 0, 3392, 3393, 1, 0, 0, 0, 3393, 451, 1, 0, 0, 0, 3394, 3392, 1, 0, 0, 0, 3395, 3396, 5, 139, 0, 0, 3396, 3397, 3, 454, 227, 0, 3397, 453, 1, 0, 0, 0, 3398, 3399, 5, 359, 0, 0, 3399, 3402, 3, 462, 231, 0, 3400, 3401, 5, 397, 0, 0, 3401, 3403, 3, 462, 231, 0, 3402, 3400, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3402, 1, 0, 0, 0, 3404, 3405, 1, 0, 0, 0, 3405, 3408, 1, 0, 0, 0, 3406, 3408, 3, 458, 229, 0, 3407, 3398, 1, 0, 0, 0, 3407, 3406, 1, 0, 0, 0, 3408, 455, 1, 0, 0, 0, 3409, 3413, 3, 472, 236, 0, 3410, 3412, 3, 466, 233, 0, 3411, 3410, 1, 0, 0, 0, 3412, 3415, 1, 0, 0, 0, 3413, 3411, 1, 0, 0, 0, 3413, 3414, 1, 0, 0, 0, 3414, 3442, 1, 0, 0, 0, 3415, 3413, 1, 0, 0, 0, 3416, 3420, 3, 506, 253, 0, 3417, 3419, 3, 466, 233, 0, 3418, 3417, 1, 0, 0, 0, 3419, 3422, 1, 0, 0, 0, 3420, 3418, 1, 0, 0, 0, 3420, 3421, 1, 0, 0, 0, 3421, 3442, 1, 0, 0, 0, 3422, 3420, 1, 0, 0, 0, 3423, 3427, 3, 490, 245, 0, 3424, 3426, 3, 466, 233, 0, 3425, 3424, 1, 0, 0, 0, 3426, 3429, 1, 0, 0, 0, 3427, 3425, 1, 0, 0, 0, 3427, 3428, 1, 0, 0, 0, 3428, 3442, 1, 0, 0, 0, 3429, 3427, 1, 0, 0, 0, 3430, 3434, 3, 496, 248, 0, 3431, 3433, 3, 466, 233, 0, 3432, 3431, 1, 0, 0, 0, 3433, 3436, 1, 0, 0, 0, 3434, 3432, 1, 0, 0, 0, 3434, 3435, 1, 0, 0, 0, 3435, 3442, 1, 0, 0, 0, 3436, 3434, 1, 0, 0, 0, 3437, 3438, 5, 399, 0, 0, 3438, 3439, 3, 458, 229, 0, 3439, 3440, 5, 400, 0, 0, 3440, 3442, 1, 0, 0, 0, 3441, 3409, 1, 0, 0, 0, 3441, 3416, 1, 0, 0, 0, 3441, 3423, 1, 0, 0, 0, 3441, 3430, 1, 0, 0, 0, 3441, 3437, 1, 0, 0, 0, 3442, 457, 1, 0, 0, 0, 3443, 3461, 3, 456, 228, 0, 3444, 3445, 3, 464, 232, 0, 3445, 3457, 3, 460, 230, 0, 3446, 3453, 5, 224, 0, 0, 3447, 3454, 3, 596, 298, 0, 3448, 3451, 3, 260, 130, 0, 3449, 3450, 5, 405, 0, 0, 3450, 3452, 3, 260, 130, 0, 3451, 3449, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 3454, 1, 0, 0, 0, 3453, 3447, 1, 0, 0, 0, 3453, 3448, 1, 0, 0, 0, 3454, 3458, 1, 0, 0, 0, 3455, 3456, 5, 370, 0, 0, 3456, 3458, 3, 268, 134, 0, 3457, 3446, 1, 0, 0, 0, 3457, 3455, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3460, 1, 0, 0, 0, 3459, 3444, 1, 0, 0, 0, 3460, 3463, 1, 0, 0, 0, 3461, 3459, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 459, 1, 0, 0, 0, 3463, 3461, 1, 0, 0, 0, 3464, 3469, 3, 472, 236, 0, 3465, 3469, 3, 506, 253, 0, 3466, 3469, 3, 490, 245, 0, 3467, 3469, 3, 496, 248, 0, 3468, 3464, 1, 0, 0, 0, 3468, 3465, 1, 0, 0, 0, 3468, 3466, 1, 0, 0, 0, 3468, 3467, 1, 0, 0, 0, 3469, 3473, 1, 0, 0, 0, 3470, 3472, 3, 466, 233, 0, 3471, 3470, 1, 0, 0, 0, 3472, 3475, 1, 0, 0, 0, 3473, 3471, 1, 0, 0, 0, 3473, 3474, 1, 0, 0, 0, 3474, 461, 1, 0, 0, 0, 3475, 3473, 1, 0, 0, 0, 3476, 3478, 5, 250, 0, 0, 3477, 3476, 1, 0, 0, 0, 3477, 3478, 1, 0, 0, 0, 3478, 3479, 1, 0, 0, 0, 3479, 3481, 3, 480, 240, 0, 3480, 3482, 3, 470, 235, 0, 3481, 3480, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3487, 1, 0, 0, 0, 3483, 3485, 5, 17, 0, 0, 3484, 3483, 1, 0, 0, 0, 3484, 3485, 1, 0, 0, 0, 3485, 3486, 1, 0, 0, 0, 3486, 3488, 3, 654, 327, 0, 3487, 3484, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3490, 5, 399, 0, 0, 3490, 3491, 3, 448, 224, 0, 3491, 3492, 5, 400, 0, 0, 3492, 463, 1, 0, 0, 0, 3493, 3508, 5, 397, 0, 0, 3494, 3505, 5, 157, 0, 0, 3495, 3505, 5, 60, 0, 0, 3496, 3498, 7, 27, 0, 0, 3497, 3499, 5, 231, 0, 0, 3498, 3497, 1, 0, 0, 0, 3498, 3499, 1, 0, 0, 0, 3499, 3505, 1, 0, 0, 0, 3500, 3502, 5, 180, 0, 0, 3501, 3503, 7, 28, 0, 0, 3502, 3501, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3505, 1, 0, 0, 0, 3504, 3494, 1, 0, 0, 0, 3504, 3495, 1, 0, 0, 0, 3504, 3496, 1, 0, 0, 0, 3504, 3500, 1, 0, 0, 0, 3504, 3505, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3508, 5, 171, 0, 0, 3507, 3493, 1, 0, 0, 0, 3507, 3504, 1, 0, 0, 0, 3508, 465, 1, 0, 0, 0, 3509, 3510, 5, 178, 0, 0, 3510, 3511, 5, 378, 0, 0, 3511, 3512, 5, 231, 0, 0, 3512, 3513, 3, 566, 283, 0, 3513, 3523, 3, 468, 234, 0, 3514, 3515, 5, 17, 0, 0, 3515, 3520, 3, 654, 327, 0, 3516, 3517, 5, 397, 0, 0, 3517, 3519, 3, 654, 327, 0, 3518, 3516, 1, 0, 0, 0, 3519, 3522, 1, 0, 0, 0, 3520, 3518, 1, 0, 0, 0, 3520, 3521, 1, 0, 0, 0, 3521, 3524, 1, 0, 0, 0, 3522, 3520, 1, 0, 0, 0, 3523, 3514, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3567, 1, 0, 0, 0, 3525, 3527, 5, 397, 0, 0, 3526, 3525, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 3528, 1, 0, 0, 0, 3528, 3564, 5, 178, 0, 0, 3529, 3530, 5, 378, 0, 0, 3530, 3531, 3, 566, 283, 0, 3531, 3541, 3, 468, 234, 0, 3532, 3533, 5, 17, 0, 0, 3533, 3538, 3, 654, 327, 0, 3534, 3535, 5, 397, 0, 0, 3535, 3537, 3, 654, 327, 0, 3536, 3534, 1, 0, 0, 0, 3537, 3540, 1, 0, 0, 0, 3538, 3536, 1, 0, 0, 0, 3538, 3539, 1, 0, 0, 0, 3539, 3542, 1, 0, 0, 0, 3540, 3538, 1, 0, 0, 0, 3541, 3532, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 3565, 1, 0, 0, 0, 3543, 3544, 5, 329, 0, 0, 3544, 3545, 5, 399, 0, 0, 3545, 3546, 3, 502, 251, 0, 3546, 3548, 5, 400, 0, 0, 3547, 3549, 5, 17, 0, 0, 3548, 3547, 1, 0, 0, 0, 3548, 3549, 1, 0, 0, 0, 3549, 3550, 1, 0, 0, 0, 3550, 3562, 3, 468, 234, 0, 3551, 3552, 5, 399, 0, 0, 3552, 3557, 3, 654, 327, 0, 3553, 3554, 5, 397, 0, 0, 3554, 3556, 3, 654, 327, 0, 3555, 3553, 1, 0, 0, 0, 3556, 3559, 1, 0, 0, 0, 3557, 3555, 1, 0, 0, 0, 3557, 3558, 1, 0, 0, 0, 3558, 3560, 1, 0, 0, 0, 3559, 3557, 1, 0, 0, 0, 3560, 3561, 5, 400, 0, 0, 3561, 3563, 1, 0, 0, 0, 3562, 3551, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 3565, 1, 0, 0, 0, 3564, 3529, 1, 0, 0, 0, 3564, 3543, 1, 0, 0, 0, 3565, 3567, 1, 0, 0, 0, 3566, 3509, 1, 0, 0, 0, 3566, 3526, 1, 0, 0, 0, 3567, 467, 1, 0, 0, 0, 3568, 3569, 3, 654, 327, 0, 3569, 469, 1, 0, 0, 0, 3570, 3571, 5, 331, 0, 0, 3571, 3572, 5, 399, 0, 0, 3572, 3573, 5, 30, 0, 0, 3573, 3574, 5, 431, 0, 0, 3574, 3575, 5, 230, 0, 0, 3575, 3576, 5, 221, 0, 0, 3576, 3586, 5, 431, 0, 0, 3577, 3578, 5, 224, 0, 0, 3578, 3583, 3, 596, 298, 0, 3579, 3580, 5, 397, 0, 0, 3580, 3582, 3, 596, 298, 0, 3581, 3579, 1, 0, 0, 0, 3582, 3585, 1, 0, 0, 0, 3583, 3581, 1, 0, 0, 0, 3583, 3584, 1, 0, 0, 0, 3584, 3587, 1, 0, 0, 0, 3585, 3583, 1, 0, 0, 0, 3586, 3577, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 3588, 1, 0, 0, 0, 3588, 3598, 5, 400, 0, 0, 3589, 3590, 5, 331, 0, 0, 3590, 3594, 5, 399, 0, 0, 3591, 3592, 5, 431, 0, 0, 3592, 3595, 7, 29, 0, 0, 3593, 3595, 5, 430, 0, 0, 3594, 3591, 1, 0, 0, 0, 3594, 3593, 1, 0, 0, 0, 3595, 3596, 1, 0, 0, 0, 3596, 3598, 5, 400, 0, 0, 3597, 3570, 1, 0, 0, 0, 3597, 3589, 1, 0, 0, 0, 3598, 471, 1, 0, 0, 0, 3599, 3601, 3, 480, 240, 0, 3600, 3602, 3, 226, 113, 0, 3601, 3600, 1, 0, 0, 0, 3601, 3602, 1, 0, 0, 0, 3602, 3604, 1, 0, 0, 0, 3603, 3605, 3, 470, 235, 0, 3604, 3603, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, 3605, 3607, 1, 0, 0, 0, 3606, 3608, 3, 474, 237, 0, 3607, 3606, 1, 0, 0, 0, 3607, 3608, 1, 0, 0, 0, 3608, 3613, 1, 0, 0, 0, 3609, 3611, 5, 17, 0, 0, 3610, 3609, 1, 0, 0, 0, 3610, 3611, 1, 0, 0, 0, 3611, 3612, 1, 0, 0, 0, 3612, 3614, 3, 654, 327, 0, 3613, 3610, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 473, 1, 0, 0, 0, 3615, 3625, 5, 134, 0, 0, 3616, 3617, 5, 327, 0, 0, 3617, 3618, 5, 17, 0, 0, 3618, 3619, 5, 221, 0, 0, 3619, 3626, 3, 596, 298, 0, 3620, 3621, 5, 134, 0, 0, 3621, 3622, 5, 328, 0, 0, 3622, 3623, 5, 17, 0, 0, 3623, 3624, 5, 221, 0, 0, 3624, 3626, 5, 431, 0, 0, 3625, 3616, 1, 0, 0, 0, 3625, 3620, 1, 0, 0, 0, 3626, 475, 1, 0, 0, 0, 3627, 3628, 3, 654, 327, 0, 3628, 477, 1, 0, 0, 0, 3629, 3630, 3, 654, 327, 0, 3630, 479, 1, 0, 0, 0, 3631, 3634, 3, 482, 241, 0, 3632, 3634, 3, 486, 243, 0, 3633, 3631, 1, 0, 0, 0, 3633, 3632, 1, 0, 0, 0, 3634, 481, 1, 0, 0, 0, 3635, 3636, 3, 654, 327, 0, 3636, 3637, 5, 395, 0, 0, 3637, 3640, 3, 654, 327, 0, 3638, 3639, 5, 395, 0, 0, 3639, 3641, 3, 654, 327, 0, 3640, 3638, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3644, 1, 0, 0, 0, 3642, 3644, 3, 654, 327, 0, 3643, 3635, 1, 0, 0, 0, 3643, 3642, 1, 0, 0, 0, 3644, 483, 1, 0, 0, 0, 3645, 3646, 3, 654, 327, 0, 3646, 3647, 5, 395, 0, 0, 3647, 3650, 3, 654, 327, 0, 3648, 3649, 5, 395, 0, 0, 3649, 3651, 3, 654, 327, 0, 3650, 3648, 1, 0, 0, 0, 3650, 3651, 1, 0, 0, 0, 3651, 3654, 1, 0, 0, 0, 3652, 3654, 3, 654, 327, 0, 3653, 3645, 1, 0, 0, 0, 3653, 3652, 1, 0, 0, 0, 3654, 485, 1, 0, 0, 0, 3655, 3656, 3, 654, 327, 0, 3656, 3657, 5, 395, 0, 0, 3657, 3659, 1, 0, 0, 0, 3658, 3655, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 3660, 1, 0, 0, 0, 3660, 3661, 3, 654, 327, 0, 3661, 487, 1, 0, 0, 0, 3662, 3663, 3, 654, 327, 0, 3663, 3664, 5, 395, 0, 0, 3664, 3666, 1, 0, 0, 0, 3665, 3662, 1, 0, 0, 0, 3665, 3666, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3668, 3, 654, 327, 0, 3668, 489, 1, 0, 0, 0, 3669, 3670, 5, 399, 0, 0, 3670, 3671, 3, 364, 182, 0, 3671, 3673, 5, 400, 0, 0, 3672, 3674, 5, 17, 0, 0, 3673, 3672, 1, 0, 0, 0, 3673, 3674, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3676, 3, 654, 327, 0, 3676, 491, 1, 0, 0, 0, 3677, 3679, 3, 558, 279, 0, 3678, 3680, 3, 556, 278, 0, 3679, 3678, 1, 0, 0, 0, 3679, 3680, 1, 0, 0, 0, 3680, 3689, 1, 0, 0, 0, 3681, 3689, 3, 556, 278, 0, 3682, 3684, 3, 562, 281, 0, 3683, 3685, 3, 564, 282, 0, 3684, 3683, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3689, 1, 0, 0, 0, 3686, 3689, 3, 564, 282, 0, 3687, 3689, 3, 560, 280, 0, 3688, 3677, 1, 0, 0, 0, 3688, 3681, 1, 0, 0, 0, 3688, 3682, 1, 0, 0, 0, 3688, 3686, 1, 0, 0, 0, 3688, 3687, 1, 0, 0, 0, 3689, 493, 1, 0, 0, 0, 3690, 3694, 3, 490, 245, 0, 3691, 3694, 3, 472, 236, 0, 3692, 3694, 3, 496, 248, 0, 3693, 3690, 1, 0, 0, 0, 3693, 3691, 1, 0, 0, 0, 3693, 3692, 1, 0, 0, 0, 3694, 495, 1, 0, 0, 0, 3695, 3697, 3, 498, 249, 0, 3696, 3698, 3, 654, 327, 0, 3697, 3696, 1, 0, 0, 0, 3697, 3698, 1, 0, 0, 0, 3698, 497, 1, 0, 0, 0, 3699, 3700, 3, 654, 327, 0, 3700, 3701, 5, 399, 0, 0, 3701, 3702, 5, 224, 0, 0, 3702, 3704, 3, 494, 247, 0, 3703, 3705, 3, 492, 246, 0, 3704, 3703, 1, 0, 0, 0, 3704, 3705, 1, 0, 0, 0, 3705, 3721, 1, 0, 0, 0, 3706, 3707, 5, 432, 0, 0, 3707, 3708, 5, 399, 0, 0, 3708, 3709, 3, 596, 298, 0, 3709, 3718, 5, 400, 0, 0, 3710, 3711, 5, 397, 0, 0, 3711, 3712, 5, 432, 0, 0, 3712, 3713, 5, 399, 0, 0, 3713, 3714, 3, 596, 298, 0, 3714, 3715, 5, 400, 0, 0, 3715, 3717, 1, 0, 0, 0, 3716, 3710, 1, 0, 0, 0, 3717, 3720, 1, 0, 0, 0, 3718, 3716, 1, 0, 0, 0, 3718, 3719, 1, 0, 0, 0, 3719, 3722, 1, 0, 0, 0, 3720, 3718, 1, 0, 0, 0, 3721, 3706, 1, 0, 0, 0, 3721, 3722, 1, 0, 0, 0, 3722, 3723, 1, 0, 0, 0, 3723, 3724, 5, 400, 0, 0, 3724, 499, 1, 0, 0, 0, 3725, 3728, 5, 384, 0, 0, 3726, 3729, 3, 596, 298, 0, 3727, 3729, 3, 260, 130, 0, 3728, 3726, 1, 0, 0, 0, 3728, 3727, 1, 0, 0, 0, 3729, 501, 1, 0, 0, 0, 3730, 3749, 5, 374, 0, 0, 3731, 3736, 3, 552, 276, 0, 3732, 3733, 5, 397, 0, 0, 3733, 3735, 3, 552, 276, 0, 3734, 3732, 1, 0, 0, 0, 3735, 3738, 1, 0, 0, 0, 3736, 3734, 1, 0, 0, 0, 3736, 3737, 1, 0, 0, 0, 3737, 3750, 1, 0, 0, 0, 3738, 3736, 1, 0, 0, 0, 3739, 3740, 5, 399, 0, 0, 3740, 3741, 3, 548, 274, 0, 3741, 3746, 5, 400, 0, 0, 3742, 3743, 5, 397, 0, 0, 3743, 3745, 3, 552, 276, 0, 3744, 3742, 1, 0, 0, 0, 3745, 3748, 1, 0, 0, 0, 3746, 3744, 1, 0, 0, 0, 3746, 3747, 1, 0, 0, 0, 3747, 3750, 1, 0, 0, 0, 3748, 3746, 1, 0, 0, 0, 3749, 3731, 1, 0, 0, 0, 3749, 3739, 1, 0, 0, 0, 3750, 503, 1, 0, 0, 0, 3751, 3752, 5, 329, 0, 0, 3752, 3753, 5, 399, 0, 0, 3753, 3754, 3, 502, 251, 0, 3754, 3755, 5, 400, 0, 0, 3755, 505, 1, 0, 0, 0, 3756, 3758, 3, 504, 252, 0, 3757, 3759, 5, 17, 0, 0, 3758, 3757, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 3760, 1, 0, 0, 0, 3760, 3770, 3, 468, 234, 0, 3761, 3762, 5, 399, 0, 0, 3762, 3767, 3, 654, 327, 0, 3763, 3764, 5, 397, 0, 0, 3764, 3766, 3, 654, 327, 0, 3765, 3763, 1, 0, 0, 0, 3766, 3769, 1, 0, 0, 0, 3767, 3765, 1, 0, 0, 0, 3767, 3768, 1, 0, 0, 0, 3768, 3771, 1, 0, 0, 0, 3769, 3767, 1, 0, 0, 0, 3770, 3761, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3772, 1, 0, 0, 0, 3772, 3773, 5, 400, 0, 0, 3773, 507, 1, 0, 0, 0, 3774, 3776, 5, 299, 0, 0, 3775, 3777, 5, 436, 0, 0, 3776, 3775, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3784, 1, 0, 0, 0, 3778, 3780, 7, 21, 0, 0, 3779, 3778, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3781, 1, 0, 0, 0, 3781, 3785, 3, 512, 256, 0, 3782, 3783, 5, 347, 0, 0, 3783, 3785, 3, 510, 255, 0, 3784, 3779, 1, 0, 0, 0, 3784, 3782, 1, 0, 0, 0, 3785, 3788, 1, 0, 0, 0, 3786, 3788, 3, 520, 260, 0, 3787, 3774, 1, 0, 0, 0, 3787, 3786, 1, 0, 0, 0, 3788, 509, 1, 0, 0, 0, 3789, 3790, 5, 399, 0, 0, 3790, 3791, 3, 524, 262, 0, 3791, 3792, 5, 400, 0, 0, 3792, 3793, 3, 212, 106, 0, 3793, 3794, 3, 216, 108, 0, 3794, 3795, 5, 370, 0, 0, 3795, 3808, 5, 426, 0, 0, 3796, 3806, 5, 17, 0, 0, 3797, 3800, 5, 399, 0, 0, 3798, 3801, 3, 450, 225, 0, 3799, 3801, 3, 248, 124, 0, 3800, 3798, 1, 0, 0, 0, 3800, 3799, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 3803, 5, 400, 0, 0, 3803, 3807, 1, 0, 0, 0, 3804, 3807, 3, 450, 225, 0, 3805, 3807, 3, 248, 124, 0, 3806, 3797, 1, 0, 0, 0, 3806, 3804, 1, 0, 0, 0, 3806, 3805, 1, 0, 0, 0, 3807, 3809, 1, 0, 0, 0, 3808, 3796, 1, 0, 0, 0, 3808, 3809, 1, 0, 0, 0, 3809, 3810, 1, 0, 0, 0, 3810, 3811, 3, 212, 106, 0, 3811, 3812, 3, 214, 107, 0, 3812, 511, 1, 0, 0, 0, 3813, 3818, 3, 514, 257, 0, 3814, 3815, 5, 397, 0, 0, 3815, 3817, 3, 514, 257, 0, 3816, 3814, 1, 0, 0, 0, 3817, 3820, 1, 0, 0, 0, 3818, 3816, 1, 0, 0, 0, 3818, 3819, 1, 0, 0, 0, 3819, 513, 1, 0, 0, 0, 3820, 3818, 1, 0, 0, 0, 3821, 3847, 3, 446, 223, 0, 3822, 3825, 3, 516, 258, 0, 3823, 3825, 3, 518, 259, 0, 3824, 3822, 1, 0, 0, 0, 3824, 3823, 1, 0, 0, 0, 3825, 3842, 1, 0, 0, 0, 3826, 3828, 5, 17, 0, 0, 3827, 3826, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3843, 3, 654, 327, 0, 3830, 3831, 5, 17, 0, 0, 3831, 3832, 5, 399, 0, 0, 3832, 3837, 3, 654, 327, 0, 3833, 3834, 5, 397, 0, 0, 3834, 3836, 3, 654, 327, 0, 3835, 3833, 1, 0, 0, 0, 3836, 3839, 1, 0, 0, 0, 3837, 3835, 1, 0, 0, 0, 3837, 3838, 1, 0, 0, 0, 3838, 3840, 1, 0, 0, 0, 3839, 3837, 1, 0, 0, 0, 3840, 3841, 5, 400, 0, 0, 3841, 3843, 1, 0, 0, 0, 3842, 3827, 1, 0, 0, 0, 3842, 3830, 1, 0, 0, 0, 3842, 3843, 1, 0, 0, 0, 3843, 3847, 1, 0, 0, 0, 3844, 3845, 4, 257, 2, 0, 3845, 3847, 3, 702, 351, 0, 3846, 3821, 1, 0, 0, 0, 3846, 3824, 1, 0, 0, 0, 3846, 3844, 1, 0, 0, 0, 3847, 515, 1, 0, 0, 0, 3848, 3849, 3, 256, 128, 0, 3849, 517, 1, 0, 0, 0, 3850, 3851, 3, 596, 298, 0, 3851, 519, 1, 0, 0, 0, 3852, 3853, 7, 30, 0, 0, 3853, 3854, 3, 524, 262, 0, 3854, 3855, 3, 212, 106, 0, 3855, 3856, 3, 216, 108, 0, 3856, 3857, 5, 370, 0, 0, 3857, 3870, 5, 426, 0, 0, 3858, 3868, 5, 17, 0, 0, 3859, 3862, 5, 399, 0, 0, 3860, 3863, 3, 450, 225, 0, 3861, 3863, 3, 248, 124, 0, 3862, 3860, 1, 0, 0, 0, 3862, 3861, 1, 0, 0, 0, 3863, 3864, 1, 0, 0, 0, 3864, 3865, 5, 400, 0, 0, 3865, 3869, 1, 0, 0, 0, 3866, 3869, 3, 450, 225, 0, 3867, 3869, 3, 248, 124, 0, 3868, 3859, 1, 0, 0, 0, 3868, 3866, 1, 0, 0, 0, 3868, 3867, 1, 0, 0, 0, 3869, 3871, 1, 0, 0, 0, 3870, 3858, 1, 0, 0, 0, 3870, 3871, 1, 0, 0, 0, 3871, 3872, 1, 0, 0, 0, 3872, 3873, 3, 212, 106, 0, 3873, 3874, 3, 214, 107, 0, 3874, 521, 1, 0, 0, 0, 3875, 3878, 3, 446, 223, 0, 3876, 3878, 3, 596, 298, 0, 3877, 3875, 1, 0, 0, 0, 3877, 3876, 1, 0, 0, 0, 3878, 523, 1, 0, 0, 0, 3879, 3884, 3, 522, 261, 0, 3880, 3881, 5, 397, 0, 0, 3881, 3883, 3, 522, 261, 0, 3882, 3880, 1, 0, 0, 0, 3883, 3886, 1, 0, 0, 0, 3884, 3882, 1, 0, 0, 0, 3884, 3885, 1, 0, 0, 0, 3885, 525, 1, 0, 0, 0, 3886, 3884, 1, 0, 0, 0, 3887, 3888, 5, 386, 0, 0, 3888, 3889, 3, 654, 327, 0, 3889, 3890, 5, 17, 0, 0, 3890, 3898, 3, 528, 264, 0, 3891, 3892, 5, 397, 0, 0, 3892, 3893, 3, 654, 327, 0, 3893, 3894, 5, 17, 0, 0, 3894, 3895, 3, 528, 264, 0, 3895, 3897, 1, 0, 0, 0, 3896, 3891, 1, 0, 0, 0, 3897, 3900, 1, 0, 0, 0, 3898, 3896, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 527, 1, 0, 0, 0, 3900, 3898, 1, 0, 0, 0, 3901, 3914, 3, 654, 327, 0, 3902, 3904, 5, 399, 0, 0, 3903, 3905, 3, 654, 327, 0, 3904, 3903, 1, 0, 0, 0, 3904, 3905, 1, 0, 0, 0, 3905, 3907, 1, 0, 0, 0, 3906, 3908, 3, 492, 246, 0, 3907, 3906, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 3910, 1, 0, 0, 0, 3909, 3911, 3, 530, 265, 0, 3910, 3909, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 3912, 1, 0, 0, 0, 3912, 3914, 5, 400, 0, 0, 3913, 3901, 1, 0, 0, 0, 3913, 3902, 1, 0, 0, 0, 3914, 529, 1, 0, 0, 0, 3915, 3929, 7, 31, 0, 0, 3916, 3917, 5, 354, 0, 0, 3917, 3923, 5, 247, 0, 0, 3918, 3919, 5, 62, 0, 0, 3919, 3923, 5, 291, 0, 0, 3920, 3921, 5, 431, 0, 0, 3921, 3923, 5, 247, 0, 0, 3922, 3916, 1, 0, 0, 0, 3922, 3918, 1, 0, 0, 0, 3922, 3920, 1, 0, 0, 0, 3923, 3930, 1, 0, 0, 0, 3924, 3925, 5, 25, 0, 0, 3925, 3926, 3, 532, 266, 0, 3926, 3927, 5, 11, 0, 0, 3927, 3928, 3, 532, 266, 0, 3928, 3930, 1, 0, 0, 0, 3929, 3922, 1, 0, 0, 0, 3929, 3924, 1, 0, 0, 0, 3930, 531, 1, 0, 0, 0, 3931, 3932, 7, 32, 0, 0, 3932, 3936, 7, 33, 0, 0, 3933, 3934, 5, 62, 0, 0, 3934, 3936, 5, 291, 0, 0, 3935, 3931, 1, 0, 0, 0, 3935, 3933, 1, 0, 0, 0, 3936, 533, 1, 0, 0, 0, 3937, 3938, 5, 144, 0, 0, 3938, 3944, 5, 32, 0, 0, 3939, 3945, 3, 256, 128, 0, 3940, 3945, 3, 536, 268, 0, 3941, 3945, 3, 538, 269, 0, 3942, 3943, 5, 399, 0, 0, 3943, 3945, 5, 400, 0, 0, 3944, 3939, 1, 0, 0, 0, 3944, 3940, 1, 0, 0, 0, 3944, 3941, 1, 0, 0, 0, 3944, 3942, 1, 0, 0, 0, 3945, 535, 1, 0, 0, 0, 3946, 3949, 5, 290, 0, 0, 3947, 3949, 5, 61, 0, 0, 3948, 3946, 1, 0, 0, 0, 3948, 3947, 1, 0, 0, 0, 3949, 3950, 1, 0, 0, 0, 3950, 3951, 5, 399, 0, 0, 3951, 3956, 3, 596, 298, 0, 3952, 3953, 5, 397, 0, 0, 3953, 3955, 3, 596, 298, 0, 3954, 3952, 1, 0, 0, 0, 3955, 3958, 1, 0, 0, 0, 3956, 3954, 1, 0, 0, 0, 3956, 3957, 1, 0, 0, 0, 3957, 3959, 1, 0, 0, 0, 3958, 3956, 1, 0, 0, 0, 3959, 3960, 5, 400, 0, 0, 3960, 537, 1, 0, 0, 0, 3961, 3966, 3, 554, 277, 0, 3962, 3963, 5, 387, 0, 0, 3963, 3967, 5, 290, 0, 0, 3964, 3965, 5, 387, 0, 0, 3965, 3967, 5, 61, 0, 0, 3966, 3962, 1, 0, 0, 0, 3966, 3964, 1, 0, 0, 0, 3966, 3967, 1, 0, 0, 0, 3967, 3981, 1, 0, 0, 0, 3968, 3969, 5, 145, 0, 0, 3969, 3970, 5, 305, 0, 0, 3970, 3971, 5, 399, 0, 0, 3971, 3976, 3, 540, 270, 0, 3972, 3973, 5, 397, 0, 0, 3973, 3975, 3, 540, 270, 0, 3974, 3972, 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, 400, 0, 0, 3980, 3982, 1, 0, 0, 0, 3981, 3968, 1, 0, 0, 0, 3981, 3982, 1, 0, 0, 0, 3982, 539, 1, 0, 0, 0, 3983, 3985, 5, 399, 0, 0, 3984, 3986, 3, 596, 298, 0, 3985, 3984, 1, 0, 0, 0, 3985, 3986, 1, 0, 0, 0, 3986, 3991, 1, 0, 0, 0, 3987, 3988, 5, 397, 0, 0, 3988, 3990, 3, 596, 298, 0, 3989, 3987, 1, 0, 0, 0, 3990, 3993, 1, 0, 0, 0, 3991, 3989, 1, 0, 0, 0, 3991, 3992, 1, 0, 0, 0, 3992, 3994, 1, 0, 0, 0, 3993, 3991, 1, 0, 0, 0, 3994, 3997, 5, 400, 0, 0, 3995, 3997, 3, 596, 298, 0, 3996, 3983, 1, 0, 0, 0, 3996, 3995, 1, 0, 0, 0, 3997, 541, 1, 0, 0, 0, 3998, 4001, 5, 146, 0, 0, 3999, 4002, 3, 596, 298, 0, 4000, 4002, 3, 260, 130, 0, 4001, 3999, 1, 0, 0, 0, 4001, 4000, 1, 0, 0, 0, 4002, 543, 1, 0, 0, 0, 4003, 4004, 5, 256, 0, 0, 4004, 4005, 3, 596, 298, 0, 4005, 545, 1, 0, 0, 0, 4006, 4009, 5, 83, 0, 0, 4007, 4009, 3, 596, 298, 0, 4008, 4006, 1, 0, 0, 0, 4008, 4007, 1, 0, 0, 0, 4009, 547, 1, 0, 0, 0, 4010, 4012, 3, 596, 298, 0, 4011, 4013, 5, 17, 0, 0, 4012, 4011, 1, 0, 0, 0, 4012, 4013, 1, 0, 0, 0, 4013, 4015, 1, 0, 0, 0, 4014, 4016, 3, 654, 327, 0, 4015, 4014, 1, 0, 0, 0, 4015, 4016, 1, 0, 0, 0, 4016, 4027, 1, 0, 0, 0, 4017, 4018, 5, 397, 0, 0, 4018, 4020, 3, 596, 298, 0, 4019, 4021, 5, 17, 0, 0, 4020, 4019, 1, 0, 0, 0, 4020, 4021, 1, 0, 0, 0, 4021, 4023, 1, 0, 0, 0, 4022, 4024, 3, 654, 327, 0, 4023, 4022, 1, 0, 0, 0, 4023, 4024, 1, 0, 0, 0, 4024, 4026, 1, 0, 0, 0, 4025, 4017, 1, 0, 0, 0, 4026, 4029, 1, 0, 0, 0, 4027, 4025, 1, 0, 0, 0, 4027, 4028, 1, 0, 0, 0, 4028, 549, 1, 0, 0, 0, 4029, 4027, 1, 0, 0, 0, 4030, 4033, 3, 552, 276, 0, 4031, 4033, 3, 554, 277, 0, 4032, 4030, 1, 0, 0, 0, 4032, 4031, 1, 0, 0, 0, 4033, 551, 1, 0, 0, 0, 4034, 4035, 5, 399, 0, 0, 4035, 4036, 3, 554, 277, 0, 4036, 4037, 5, 400, 0, 0, 4037, 553, 1, 0, 0, 0, 4038, 4045, 3, 546, 273, 0, 4039, 4040, 5, 397, 0, 0, 4040, 4042, 3, 546, 273, 0, 4041, 4039, 1, 0, 0, 0, 4042, 4043, 1, 0, 0, 0, 4043, 4041, 1, 0, 0, 0, 4043, 4044, 1, 0, 0, 0, 4044, 4046, 1, 0, 0, 0, 4045, 4041, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 555, 1, 0, 0, 0, 4047, 4048, 5, 229, 0, 0, 4048, 4049, 5, 32, 0, 0, 4049, 4054, 3, 312, 156, 0, 4050, 4051, 5, 397, 0, 0, 4051, 4053, 3, 312, 156, 0, 4052, 4050, 1, 0, 0, 0, 4053, 4056, 1, 0, 0, 0, 4054, 4052, 1, 0, 0, 0, 4054, 4055, 1, 0, 0, 0, 4055, 557, 1, 0, 0, 0, 4056, 4054, 1, 0, 0, 0, 4057, 4058, 5, 237, 0, 0, 4058, 4059, 5, 32, 0, 0, 4059, 4060, 3, 550, 275, 0, 4060, 559, 1, 0, 0, 0, 4061, 4062, 5, 41, 0, 0, 4062, 4063, 5, 32, 0, 0, 4063, 4064, 3, 550, 275, 0, 4064, 561, 1, 0, 0, 0, 4065, 4066, 5, 97, 0, 0, 4066, 4067, 5, 32, 0, 0, 4067, 4068, 3, 550, 275, 0, 4068, 563, 1, 0, 0, 0, 4069, 4070, 5, 314, 0, 0, 4070, 4090, 5, 32, 0, 0, 4071, 4072, 5, 399, 0, 0, 4072, 4077, 3, 312, 156, 0, 4073, 4074, 5, 397, 0, 0, 4074, 4076, 3, 312, 156, 0, 4075, 4073, 1, 0, 0, 0, 4076, 4079, 1, 0, 0, 0, 4077, 4075, 1, 0, 0, 0, 4077, 4078, 1, 0, 0, 0, 4078, 4080, 1, 0, 0, 0, 4079, 4077, 1, 0, 0, 0, 4080, 4081, 5, 400, 0, 0, 4081, 4091, 1, 0, 0, 0, 4082, 4087, 3, 312, 156, 0, 4083, 4084, 5, 397, 0, 0, 4084, 4086, 3, 312, 156, 0, 4085, 4083, 1, 0, 0, 0, 4086, 4089, 1, 0, 0, 0, 4087, 4085, 1, 0, 0, 0, 4087, 4088, 1, 0, 0, 0, 4088, 4091, 1, 0, 0, 0, 4089, 4087, 1, 0, 0, 0, 4090, 4071, 1, 0, 0, 0, 4090, 4082, 1, 0, 0, 0, 4091, 565, 1, 0, 0, 0, 4092, 4093, 5, 349, 0, 0, 4093, 4097, 5, 399, 0, 0, 4094, 4098, 5, 179, 0, 0, 4095, 4098, 5, 343, 0, 0, 4096, 4098, 5, 29, 0, 0, 4097, 4094, 1, 0, 0, 0, 4097, 4095, 1, 0, 0, 0, 4097, 4096, 1, 0, 0, 0, 4097, 4098, 1, 0, 0, 0, 4098, 4100, 1, 0, 0, 0, 4099, 4101, 3, 522, 261, 0, 4100, 4099, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 4102, 1, 0, 0, 0, 4102, 4103, 5, 139, 0, 0, 4103, 4104, 3, 522, 261, 0, 4104, 4105, 5, 400, 0, 0, 4105, 4146, 1, 0, 0, 0, 4106, 4107, 3, 574, 287, 0, 4107, 4122, 5, 399, 0, 0, 4108, 4123, 5, 415, 0, 0, 4109, 4111, 7, 21, 0, 0, 4110, 4109, 1, 0, 0, 0, 4110, 4111, 1, 0, 0, 0, 4111, 4120, 1, 0, 0, 0, 4112, 4117, 3, 522, 261, 0, 4113, 4114, 5, 397, 0, 0, 4114, 4116, 3, 522, 261, 0, 4115, 4113, 1, 0, 0, 0, 4116, 4119, 1, 0, 0, 0, 4117, 4115, 1, 0, 0, 0, 4117, 4118, 1, 0, 0, 0, 4118, 4121, 1, 0, 0, 0, 4119, 4117, 1, 0, 0, 0, 4120, 4112, 1, 0, 0, 0, 4120, 4121, 1, 0, 0, 0, 4121, 4123, 1, 0, 0, 0, 4122, 4108, 1, 0, 0, 0, 4122, 4110, 1, 0, 0, 0, 4123, 4143, 1, 0, 0, 0, 4124, 4125, 5, 400, 0, 0, 4125, 4126, 5, 388, 0, 0, 4126, 4127, 5, 144, 0, 0, 4127, 4128, 5, 399, 0, 0, 4128, 4129, 3, 556, 278, 0, 4129, 4130, 5, 400, 0, 0, 4130, 4144, 1, 0, 0, 0, 4131, 4133, 5, 400, 0, 0, 4132, 4134, 3, 568, 284, 0, 4133, 4132, 1, 0, 0, 0, 4133, 4134, 1, 0, 0, 0, 4134, 4135, 1, 0, 0, 0, 4135, 4136, 5, 234, 0, 0, 4136, 4144, 3, 528, 264, 0, 4137, 4138, 3, 568, 284, 0, 4138, 4139, 5, 400, 0, 0, 4139, 4140, 5, 234, 0, 0, 4140, 4141, 3, 528, 264, 0, 4141, 4144, 1, 0, 0, 0, 4142, 4144, 5, 400, 0, 0, 4143, 4124, 1, 0, 0, 0, 4143, 4131, 1, 0, 0, 0, 4143, 4137, 1, 0, 0, 0, 4143, 4142, 1, 0, 0, 0, 4144, 4146, 1, 0, 0, 0, 4145, 4092, 1, 0, 0, 0, 4145, 4106, 1, 0, 0, 0, 4146, 567, 1, 0, 0, 0, 4147, 4148, 7, 34, 0, 0, 4148, 4149, 5, 220, 0, 0, 4149, 569, 1, 0, 0, 0, 4150, 4151, 3, 656, 328, 0, 4151, 571, 1, 0, 0, 0, 4152, 4155, 3, 656, 328, 0, 4153, 4155, 5, 426, 0, 0, 4154, 4152, 1, 0, 0, 0, 4154, 4153, 1, 0, 0, 0, 4155, 573, 1, 0, 0, 0, 4156, 4160, 3, 656, 328, 0, 4157, 4160, 3, 662, 331, 0, 4158, 4160, 3, 652, 326, 0, 4159, 4156, 1, 0, 0, 0, 4159, 4157, 1, 0, 0, 0, 4159, 4158, 1, 0, 0, 0, 4160, 575, 1, 0, 0, 0, 4161, 4162, 5, 36, 0, 0, 4162, 4163, 5, 399, 0, 0, 4163, 4164, 3, 596, 298, 0, 4164, 4165, 5, 17, 0, 0, 4165, 4168, 3, 352, 176, 0, 4166, 4167, 5, 137, 0, 0, 4167, 4169, 5, 426, 0, 0, 4168, 4166, 1, 0, 0, 0, 4168, 4169, 1, 0, 0, 0, 4169, 4170, 1, 0, 0, 0, 4170, 4171, 5, 400, 0, 0, 4171, 577, 1, 0, 0, 0, 4172, 4173, 5, 35, 0, 0, 4173, 4179, 3, 596, 298, 0, 4174, 4175, 5, 383, 0, 0, 4175, 4176, 3, 596, 298, 0, 4176, 4177, 5, 335, 0, 0, 4177, 4178, 3, 596, 298, 0, 4178, 4180, 1, 0, 0, 0, 4179, 4174, 1, 0, 0, 0, 4180, 4181, 1, 0, 0, 0, 4181, 4179, 1, 0, 0, 0, 4181, 4182, 1, 0, 0, 0, 4182, 4185, 1, 0, 0, 0, 4183, 4184, 5, 105, 0, 0, 4184, 4186, 3, 596, 298, 0, 4185, 4183, 1, 0, 0, 0, 4185, 4186, 1, 0, 0, 0, 4186, 4187, 1, 0, 0, 0, 4187, 4188, 5, 108, 0, 0, 4188, 579, 1, 0, 0, 0, 4189, 4195, 5, 35, 0, 0, 4190, 4191, 5, 383, 0, 0, 4191, 4192, 3, 596, 298, 0, 4192, 4193, 5, 335, 0, 0, 4193, 4194, 3, 596, 298, 0, 4194, 4196, 1, 0, 0, 0, 4195, 4190, 1, 0, 0, 0, 4196, 4197, 1, 0, 0, 0, 4197, 4195, 1, 0, 0, 0, 4197, 4198, 1, 0, 0, 0, 4198, 4201, 1, 0, 0, 0, 4199, 4200, 5, 105, 0, 0, 4200, 4202, 3, 596, 298, 0, 4201, 4199, 1, 0, 0, 0, 4201, 4202, 1, 0, 0, 0, 4202, 4203, 1, 0, 0, 0, 4203, 4204, 5, 108, 0, 0, 4204, 581, 1, 0, 0, 0, 4205, 4206, 5, 132, 0, 0, 4206, 4207, 5, 399, 0, 0, 4207, 4210, 3, 596, 298, 0, 4208, 4209, 5, 341, 0, 0, 4209, 4211, 3, 586, 293, 0, 4210, 4208, 1, 0, 0, 0, 4210, 4211, 1, 0, 0, 0, 4211, 4212, 1, 0, 0, 0, 4212, 4213, 5, 400, 0, 0, 4213, 583, 1, 0, 0, 0, 4214, 4215, 5, 124, 0, 0, 4215, 4216, 5, 399, 0, 0, 4216, 4217, 3, 586, 293, 0, 4217, 4218, 5, 139, 0, 0, 4218, 4219, 3, 596, 298, 0, 4219, 4220, 5, 400, 0, 0, 4220, 585, 1, 0, 0, 0, 4221, 4230, 3, 686, 343, 0, 4222, 4230, 5, 257, 0, 0, 4223, 4230, 3, 688, 344, 0, 4224, 4230, 3, 690, 345, 0, 4225, 4230, 3, 692, 346, 0, 4226, 4230, 3, 694, 347, 0, 4227, 4230, 3, 696, 348, 0, 4228, 4230, 3, 698, 349, 0, 4229, 4221, 1, 0, 0, 0, 4229, 4222, 1, 0, 0, 0, 4229, 4223, 1, 0, 0, 0, 4229, 4224, 1, 0, 0, 0, 4229, 4225, 1, 0, 0, 0, 4229, 4226, 1, 0, 0, 0, 4229, 4227, 1, 0, 0, 0, 4229, 4228, 1, 0, 0, 0, 4230, 587, 1, 0, 0, 0, 4231, 4232, 3, 590, 295, 0, 4232, 4233, 3, 594, 297, 0, 4233, 4260, 1, 0, 0, 0, 4234, 4260, 5, 431, 0, 0, 4235, 4236, 5, 71, 0, 0, 4236, 4260, 5, 426, 0, 0, 4237, 4260, 5, 63, 0, 0, 4238, 4239, 5, 337, 0, 0, 4239, 4260, 5, 426, 0, 0, 4240, 4260, 5, 64, 0, 0, 4241, 4242, 5, 338, 0, 0, 4242, 4260, 5, 426, 0, 0, 4243, 4247, 5, 426, 0, 0, 4244, 4246, 5, 426, 0, 0, 4245, 4244, 1, 0, 0, 0, 4246, 4249, 1, 0, 0, 0, 4247, 4245, 1, 0, 0, 0, 4247, 4248, 1, 0, 0, 0, 4248, 4260, 1, 0, 0, 0, 4249, 4247, 1, 0, 0, 0, 4250, 4260, 5, 428, 0, 0, 4251, 4260, 5, 429, 0, 0, 4252, 4253, 5, 433, 0, 0, 4253, 4260, 5, 427, 0, 0, 4254, 4260, 5, 350, 0, 0, 4255, 4260, 5, 125, 0, 0, 4256, 4260, 5, 219, 0, 0, 4257, 4260, 5, 424, 0, 0, 4258, 4260, 3, 258, 129, 0, 4259, 4231, 1, 0, 0, 0, 4259, 4234, 1, 0, 0, 0, 4259, 4235, 1, 0, 0, 0, 4259, 4237, 1, 0, 0, 0, 4259, 4238, 1, 0, 0, 0, 4259, 4240, 1, 0, 0, 0, 4259, 4241, 1, 0, 0, 0, 4259, 4243, 1, 0, 0, 0, 4259, 4250, 1, 0, 0, 0, 4259, 4251, 1, 0, 0, 0, 4259, 4252, 1, 0, 0, 0, 4259, 4254, 1, 0, 0, 0, 4259, 4255, 1, 0, 0, 0, 4259, 4256, 1, 0, 0, 0, 4259, 4257, 1, 0, 0, 0, 4259, 4258, 1, 0, 0, 0, 4260, 589, 1, 0, 0, 0, 4261, 4262, 7, 26, 0, 0, 4262, 591, 1, 0, 0, 0, 4263, 4264, 5, 399, 0, 0, 4264, 4265, 3, 590, 295, 0, 4265, 4266, 5, 400, 0, 0, 4266, 4267, 3, 594, 297, 0, 4267, 4279, 1, 0, 0, 0, 4268, 4274, 5, 165, 0, 0, 4269, 4275, 3, 590, 295, 0, 4270, 4271, 5, 399, 0, 0, 4271, 4272, 3, 596, 298, 0, 4272, 4273, 5, 400, 0, 0, 4273, 4275, 1, 0, 0, 0, 4274, 4269, 1, 0, 0, 0, 4274, 4270, 1, 0, 0, 0, 4275, 4276, 1, 0, 0, 0, 4276, 4277, 3, 594, 297, 0, 4277, 4279, 1, 0, 0, 0, 4278, 4263, 1, 0, 0, 0, 4278, 4268, 1, 0, 0, 0, 4279, 593, 1, 0, 0, 0, 4280, 4281, 3, 686, 343, 0, 4281, 4282, 5, 341, 0, 0, 4282, 4283, 3, 688, 344, 0, 4283, 4295, 1, 0, 0, 0, 4284, 4285, 3, 692, 346, 0, 4285, 4286, 5, 341, 0, 0, 4286, 4287, 3, 698, 349, 0, 4287, 4295, 1, 0, 0, 0, 4288, 4295, 3, 686, 343, 0, 4289, 4295, 3, 688, 344, 0, 4290, 4295, 3, 692, 346, 0, 4291, 4295, 3, 694, 347, 0, 4292, 4295, 3, 696, 348, 0, 4293, 4295, 3, 698, 349, 0, 4294, 4280, 1, 0, 0, 0, 4294, 4284, 1, 0, 0, 0, 4294, 4288, 1, 0, 0, 0, 4294, 4289, 1, 0, 0, 0, 4294, 4290, 1, 0, 0, 0, 4294, 4291, 1, 0, 0, 0, 4294, 4292, 1, 0, 0, 0, 4294, 4293, 1, 0, 0, 0, 4295, 595, 1, 0, 0, 0, 4296, 4301, 3, 638, 319, 0, 4297, 4298, 5, 228, 0, 0, 4298, 4300, 3, 638, 319, 0, 4299, 4297, 1, 0, 0, 0, 4300, 4303, 1, 0, 0, 0, 4301, 4299, 1, 0, 0, 0, 4301, 4302, 1, 0, 0, 0, 4302, 597, 1, 0, 0, 0, 4303, 4301, 1, 0, 0, 0, 4304, 4316, 3, 588, 294, 0, 4305, 4316, 3, 592, 296, 0, 4306, 4316, 3, 576, 288, 0, 4307, 4316, 3, 584, 292, 0, 4308, 4316, 3, 582, 291, 0, 4309, 4316, 3, 578, 289, 0, 4310, 4316, 3, 580, 290, 0, 4311, 4316, 3, 616, 308, 0, 4312, 4316, 3, 566, 283, 0, 4313, 4316, 3, 552, 276, 0, 4314, 4316, 3, 654, 327, 0, 4315, 4304, 1, 0, 0, 0, 4315, 4305, 1, 0, 0, 0, 4315, 4306, 1, 0, 0, 0, 4315, 4307, 1, 0, 0, 0, 4315, 4308, 1, 0, 0, 0, 4315, 4309, 1, 0, 0, 0, 4315, 4310, 1, 0, 0, 0, 4315, 4311, 1, 0, 0, 0, 4315, 4312, 1, 0, 0, 0, 4315, 4313, 1, 0, 0, 0, 4315, 4314, 1, 0, 0, 0, 4316, 599, 1, 0, 0, 0, 4317, 4319, 7, 35, 0, 0, 4318, 4317, 1, 0, 0, 0, 4319, 4322, 1, 0, 0, 0, 4320, 4318, 1, 0, 0, 0, 4320, 4321, 1, 0, 0, 0, 4321, 4323, 1, 0, 0, 0, 4322, 4320, 1, 0, 0, 0, 4323, 4332, 3, 598, 299, 0, 4324, 4325, 5, 401, 0, 0, 4325, 4326, 3, 596, 298, 0, 4326, 4327, 5, 402, 0, 0, 4327, 4331, 1, 0, 0, 0, 4328, 4329, 5, 395, 0, 0, 4329, 4331, 3, 654, 327, 0, 4330, 4324, 1, 0, 0, 0, 4330, 4328, 1, 0, 0, 0, 4331, 4334, 1, 0, 0, 0, 4332, 4330, 1, 0, 0, 0, 4332, 4333, 1, 0, 0, 0, 4333, 601, 1, 0, 0, 0, 4334, 4332, 1, 0, 0, 0, 4335, 4340, 3, 600, 300, 0, 4336, 4337, 5, 423, 0, 0, 4337, 4339, 3, 600, 300, 0, 4338, 4336, 1, 0, 0, 0, 4339, 4342, 1, 0, 0, 0, 4340, 4338, 1, 0, 0, 0, 4340, 4341, 1, 0, 0, 0, 4341, 603, 1, 0, 0, 0, 4342, 4340, 1, 0, 0, 0, 4343, 4348, 3, 602, 301, 0, 4344, 4345, 7, 36, 0, 0, 4345, 4347, 3, 602, 301, 0, 4346, 4344, 1, 0, 0, 0, 4347, 4350, 1, 0, 0, 0, 4348, 4346, 1, 0, 0, 0, 4348, 4349, 1, 0, 0, 0, 4349, 605, 1, 0, 0, 0, 4350, 4348, 1, 0, 0, 0, 4351, 4356, 3, 604, 302, 0, 4352, 4353, 7, 37, 0, 0, 4353, 4355, 3, 604, 302, 0, 4354, 4352, 1, 0, 0, 0, 4355, 4358, 1, 0, 0, 0, 4356, 4354, 1, 0, 0, 0, 4356, 4357, 1, 0, 0, 0, 4357, 607, 1, 0, 0, 0, 4358, 4356, 1, 0, 0, 0, 4359, 4364, 3, 606, 303, 0, 4360, 4361, 5, 422, 0, 0, 4361, 4363, 3, 606, 303, 0, 4362, 4360, 1, 0, 0, 0, 4363, 4366, 1, 0, 0, 0, 4364, 4362, 1, 0, 0, 0, 4364, 4365, 1, 0, 0, 0, 4365, 609, 1, 0, 0, 0, 4366, 4364, 1, 0, 0, 0, 4367, 4372, 3, 608, 304, 0, 4368, 4369, 5, 419, 0, 0, 4369, 4371, 3, 608, 304, 0, 4370, 4368, 1, 0, 0, 0, 4371, 4374, 1, 0, 0, 0, 4372, 4370, 1, 0, 0, 0, 4372, 4373, 1, 0, 0, 0, 4373, 611, 1, 0, 0, 0, 4374, 4372, 1, 0, 0, 0, 4375, 4380, 3, 610, 305, 0, 4376, 4377, 5, 421, 0, 0, 4377, 4379, 3, 610, 305, 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, 613, 1, 0, 0, 0, 4382, 4380, 1, 0, 0, 0, 4383, 4384, 7, 38, 0, 0, 4384, 615, 1, 0, 0, 0, 4385, 4386, 5, 399, 0, 0, 4386, 4387, 3, 380, 190, 0, 4387, 4388, 5, 400, 0, 0, 4388, 617, 1, 0, 0, 0, 4389, 4391, 3, 612, 306, 0, 4390, 4392, 3, 620, 310, 0, 4391, 4390, 1, 0, 0, 0, 4391, 4392, 1, 0, 0, 0, 4392, 4396, 1, 0, 0, 0, 4393, 4394, 5, 117, 0, 0, 4394, 4396, 3, 616, 308, 0, 4395, 4389, 1, 0, 0, 0, 4395, 4393, 1, 0, 0, 0, 4396, 619, 1, 0, 0, 0, 4397, 4398, 3, 614, 307, 0, 4398, 4399, 3, 612, 306, 0, 4399, 4404, 1, 0, 0, 0, 4400, 4404, 3, 622, 311, 0, 4401, 4402, 5, 216, 0, 0, 4402, 4404, 3, 626, 313, 0, 4403, 4397, 1, 0, 0, 0, 4403, 4400, 1, 0, 0, 0, 4403, 4401, 1, 0, 0, 0, 4404, 621, 1, 0, 0, 0, 4405, 4406, 5, 154, 0, 0, 4406, 4420, 3, 624, 312, 0, 4407, 4408, 5, 25, 0, 0, 4408, 4409, 3, 612, 306, 0, 4409, 4410, 5, 11, 0, 0, 4410, 4411, 3, 612, 306, 0, 4411, 4420, 1, 0, 0, 0, 4412, 4413, 5, 184, 0, 0, 4413, 4414, 7, 39, 0, 0, 4414, 4420, 3, 552, 276, 0, 4415, 4416, 3, 650, 325, 0, 4416, 4417, 7, 40, 0, 0, 4417, 4418, 3, 616, 308, 0, 4418, 4420, 1, 0, 0, 0, 4419, 4405, 1, 0, 0, 0, 4419, 4407, 1, 0, 0, 0, 4419, 4412, 1, 0, 0, 0, 4419, 4415, 1, 0, 0, 0, 4420, 623, 1, 0, 0, 0, 4421, 4424, 3, 616, 308, 0, 4422, 4424, 3, 552, 276, 0, 4423, 4421, 1, 0, 0, 0, 4423, 4422, 1, 0, 0, 0, 4424, 625, 1, 0, 0, 0, 4425, 4426, 7, 41, 0, 0, 4426, 4429, 3, 612, 306, 0, 4427, 4429, 3, 622, 311, 0, 4428, 4425, 1, 0, 0, 0, 4428, 4427, 1, 0, 0, 0, 4429, 627, 1, 0, 0, 0, 4430, 4431, 5, 167, 0, 0, 4431, 4432, 5, 96, 0, 0, 4432, 4433, 5, 139, 0, 0, 4433, 629, 1, 0, 0, 0, 4434, 4442, 5, 405, 0, 0, 4435, 4442, 5, 406, 0, 0, 4436, 4442, 5, 407, 0, 0, 4437, 4438, 5, 167, 0, 0, 4438, 4439, 5, 216, 0, 0, 4439, 4440, 5, 96, 0, 0, 4440, 4442, 5, 139, 0, 0, 4441, 4434, 1, 0, 0, 0, 4441, 4435, 1, 0, 0, 0, 4441, 4436, 1, 0, 0, 0, 4441, 4437, 1, 0, 0, 0, 4442, 631, 1, 0, 0, 0, 4443, 4452, 3, 618, 309, 0, 4444, 4445, 3, 630, 315, 0, 4445, 4446, 3, 618, 309, 0, 4446, 4451, 1, 0, 0, 0, 4447, 4448, 3, 628, 314, 0, 4448, 4449, 3, 618, 309, 0, 4449, 4451, 1, 0, 0, 0, 4450, 4444, 1, 0, 0, 0, 4450, 4447, 1, 0, 0, 0, 4451, 4454, 1, 0, 0, 0, 4452, 4450, 1, 0, 0, 0, 4452, 4453, 1, 0, 0, 0, 4453, 633, 1, 0, 0, 0, 4454, 4452, 1, 0, 0, 0, 4455, 4462, 5, 219, 0, 0, 4456, 4462, 5, 350, 0, 0, 4457, 4462, 5, 125, 0, 0, 4458, 4462, 5, 360, 0, 0, 4459, 4460, 5, 216, 0, 0, 4460, 4462, 7, 42, 0, 0, 4461, 4455, 1, 0, 0, 0, 4461, 4456, 1, 0, 0, 0, 4461, 4457, 1, 0, 0, 0, 4461, 4458, 1, 0, 0, 0, 4461, 4459, 1, 0, 0, 0, 4462, 635, 1, 0, 0, 0, 4463, 4465, 5, 216, 0, 0, 4464, 4463, 1, 0, 0, 0, 4465, 4468, 1, 0, 0, 0, 4466, 4464, 1, 0, 0, 0, 4466, 4467, 1, 0, 0, 0, 4467, 4469, 1, 0, 0, 0, 4468, 4466, 1, 0, 0, 0, 4469, 4472, 3, 632, 316, 0, 4470, 4471, 5, 167, 0, 0, 4471, 4473, 3, 634, 317, 0, 4472, 4470, 1, 0, 0, 0, 4472, 4473, 1, 0, 0, 0, 4473, 637, 1, 0, 0, 0, 4474, 4479, 3, 636, 318, 0, 4475, 4476, 5, 11, 0, 0, 4476, 4478, 3, 636, 318, 0, 4477, 4475, 1, 0, 0, 0, 4478, 4481, 1, 0, 0, 0, 4479, 4477, 1, 0, 0, 0, 4479, 4480, 1, 0, 0, 0, 4480, 639, 1, 0, 0, 0, 4481, 4479, 1, 0, 0, 0, 4482, 4484, 3, 482, 241, 0, 4483, 4485, 3, 642, 321, 0, 4484, 4483, 1, 0, 0, 0, 4484, 4485, 1, 0, 0, 0, 4485, 641, 1, 0, 0, 0, 4486, 4487, 5, 237, 0, 0, 4487, 4488, 5, 399, 0, 0, 4488, 4493, 3, 644, 322, 0, 4489, 4490, 5, 397, 0, 0, 4490, 4492, 3, 644, 322, 0, 4491, 4489, 1, 0, 0, 0, 4492, 4495, 1, 0, 0, 0, 4493, 4491, 1, 0, 0, 0, 4493, 4494, 1, 0, 0, 0, 4494, 4496, 1, 0, 0, 0, 4495, 4493, 1, 0, 0, 0, 4496, 4497, 5, 400, 0, 0, 4497, 643, 1, 0, 0, 0, 4498, 4501, 3, 654, 327, 0, 4499, 4500, 5, 405, 0, 0, 4500, 4502, 3, 588, 294, 0, 4501, 4499, 1, 0, 0, 0, 4501, 4502, 1, 0, 0, 0, 4502, 645, 1, 0, 0, 0, 4503, 4504, 5, 399, 0, 0, 4504, 4509, 3, 648, 324, 0, 4505, 4506, 5, 397, 0, 0, 4506, 4508, 3, 648, 324, 0, 4507, 4505, 1, 0, 0, 0, 4508, 4511, 1, 0, 0, 0, 4509, 4507, 1, 0, 0, 0, 4509, 4510, 1, 0, 0, 0, 4510, 4512, 1, 0, 0, 0, 4511, 4509, 1, 0, 0, 0, 4512, 4513, 5, 400, 0, 0, 4513, 647, 1, 0, 0, 0, 4514, 4517, 3, 654, 327, 0, 4515, 4518, 5, 184, 0, 0, 4516, 4518, 3, 650, 325, 0, 4517, 4515, 1, 0, 0, 0, 4517, 4516, 1, 0, 0, 0, 4518, 4519, 1, 0, 0, 0, 4519, 4520, 3, 588, 294, 0, 4520, 649, 1, 0, 0, 0, 4521, 4522, 7, 43, 0, 0, 4522, 651, 1, 0, 0, 0, 4523, 4524, 7, 44, 0, 0, 4524, 653, 1, 0, 0, 0, 4525, 4528, 5, 432, 0, 0, 4526, 4528, 3, 660, 330, 0, 4527, 4525, 1, 0, 0, 0, 4527, 4526, 1, 0, 0, 0, 4528, 655, 1, 0, 0, 0, 4529, 4532, 3, 654, 327, 0, 4530, 4531, 5, 395, 0, 0, 4531, 4533, 3, 654, 327, 0, 4532, 4530, 1, 0, 0, 0, 4532, 4533, 1, 0, 0, 0, 4533, 657, 1, 0, 0, 0, 4534, 4535, 3, 654, 327, 0, 4535, 659, 1, 0, 0, 0, 4536, 4537, 7, 45, 0, 0, 4537, 661, 1, 0, 0, 0, 4538, 4539, 7, 46, 0, 0, 4539, 663, 1, 0, 0, 0, 4540, 4545, 3, 666, 333, 0, 4541, 4542, 7, 47, 0, 0, 4542, 4544, 3, 666, 333, 0, 4543, 4541, 1, 0, 0, 0, 4544, 4547, 1, 0, 0, 0, 4545, 4543, 1, 0, 0, 0, 4545, 4546, 1, 0, 0, 0, 4546, 665, 1, 0, 0, 0, 4547, 4545, 1, 0, 0, 0, 4548, 4555, 3, 668, 334, 0, 4549, 4550, 4, 333, 3, 0, 4550, 4551, 5, 414, 0, 0, 4551, 4552, 4, 333, 4, 0, 4552, 4554, 3, 668, 334, 0, 4553, 4549, 1, 0, 0, 0, 4554, 4557, 1, 0, 0, 0, 4555, 4553, 1, 0, 0, 0, 4555, 4556, 1, 0, 0, 0, 4556, 667, 1, 0, 0, 0, 4557, 4555, 1, 0, 0, 0, 4558, 4610, 3, 654, 327, 0, 4559, 4610, 5, 299, 0, 0, 4560, 4610, 5, 171, 0, 0, 4561, 4610, 5, 237, 0, 0, 4562, 4610, 5, 198, 0, 0, 4563, 4610, 5, 268, 0, 0, 4564, 4610, 5, 369, 0, 0, 4565, 4610, 5, 241, 0, 0, 4566, 4610, 5, 165, 0, 0, 4567, 4610, 5, 292, 0, 0, 4568, 4610, 5, 356, 0, 0, 4569, 4610, 5, 144, 0, 0, 4570, 4610, 5, 203, 0, 0, 4571, 4610, 5, 219, 0, 0, 4572, 4610, 5, 126, 0, 0, 4573, 4610, 5, 188, 0, 0, 4574, 4610, 5, 101, 0, 0, 4575, 4610, 5, 329, 0, 0, 4576, 4610, 5, 224, 0, 0, 4577, 4610, 5, 291, 0, 0, 4578, 4610, 5, 145, 0, 0, 4579, 4610, 5, 304, 0, 0, 4580, 4610, 5, 135, 0, 0, 4581, 4610, 5, 318, 0, 0, 4582, 4610, 5, 161, 0, 0, 4583, 4610, 5, 54, 0, 0, 4584, 4610, 5, 166, 0, 0, 4585, 4610, 5, 358, 0, 0, 4586, 4610, 5, 45, 0, 0, 4587, 4610, 5, 347, 0, 0, 4588, 4610, 5, 96, 0, 0, 4589, 4610, 5, 154, 0, 0, 4590, 4610, 5, 269, 0, 0, 4591, 4610, 5, 337, 0, 0, 4592, 4610, 5, 225, 0, 0, 4593, 4610, 5, 108, 0, 0, 4594, 4610, 5, 141, 0, 0, 4595, 4610, 5, 365, 0, 0, 4596, 4610, 5, 21, 0, 0, 4597, 4610, 5, 78, 0, 0, 4598, 4610, 5, 374, 0, 0, 4599, 4610, 5, 336, 0, 0, 4600, 4610, 5, 167, 0, 0, 4601, 4610, 5, 134, 0, 0, 4602, 4610, 5, 216, 0, 0, 4603, 4610, 5, 27, 0, 0, 4604, 4610, 5, 370, 0, 0, 4605, 4610, 5, 263, 0, 0, 4606, 4610, 5, 25, 0, 0, 4607, 4610, 5, 62, 0, 0, 4608, 4610, 5, 17, 0, 0, 4609, 4558, 1, 0, 0, 0, 4609, 4559, 1, 0, 0, 0, 4609, 4560, 1, 0, 0, 0, 4609, 4561, 1, 0, 0, 0, 4609, 4562, 1, 0, 0, 0, 4609, 4563, 1, 0, 0, 0, 4609, 4564, 1, 0, 0, 0, 4609, 4565, 1, 0, 0, 0, 4609, 4566, 1, 0, 0, 0, 4609, 4567, 1, 0, 0, 0, 4609, 4568, 1, 0, 0, 0, 4609, 4569, 1, 0, 0, 0, 4609, 4570, 1, 0, 0, 0, 4609, 4571, 1, 0, 0, 0, 4609, 4572, 1, 0, 0, 0, 4609, 4573, 1, 0, 0, 0, 4609, 4574, 1, 0, 0, 0, 4609, 4575, 1, 0, 0, 0, 4609, 4576, 1, 0, 0, 0, 4609, 4577, 1, 0, 0, 0, 4609, 4578, 1, 0, 0, 0, 4609, 4579, 1, 0, 0, 0, 4609, 4580, 1, 0, 0, 0, 4609, 4581, 1, 0, 0, 0, 4609, 4582, 1, 0, 0, 0, 4609, 4583, 1, 0, 0, 0, 4609, 4584, 1, 0, 0, 0, 4609, 4585, 1, 0, 0, 0, 4609, 4586, 1, 0, 0, 0, 4609, 4587, 1, 0, 0, 0, 4609, 4588, 1, 0, 0, 0, 4609, 4589, 1, 0, 0, 0, 4609, 4590, 1, 0, 0, 0, 4609, 4591, 1, 0, 0, 0, 4609, 4592, 1, 0, 0, 0, 4609, 4593, 1, 0, 0, 0, 4609, 4594, 1, 0, 0, 0, 4609, 4595, 1, 0, 0, 0, 4609, 4596, 1, 0, 0, 0, 4609, 4597, 1, 0, 0, 0, 4609, 4598, 1, 0, 0, 0, 4609, 4599, 1, 0, 0, 0, 4609, 4600, 1, 0, 0, 0, 4609, 4601, 1, 0, 0, 0, 4609, 4602, 1, 0, 0, 0, 4609, 4603, 1, 0, 0, 0, 4609, 4604, 1, 0, 0, 0, 4609, 4605, 1, 0, 0, 0, 4609, 4606, 1, 0, 0, 0, 4609, 4607, 1, 0, 0, 0, 4609, 4608, 1, 0, 0, 0, 4610, 669, 1, 0, 0, 0, 4611, 4612, 5, 58, 0, 0, 4612, 4613, 5, 280, 0, 0, 4613, 4615, 5, 243, 0, 0, 4614, 4616, 3, 32, 16, 0, 4615, 4614, 1, 0, 0, 0, 4615, 4616, 1, 0, 0, 0, 4616, 4626, 1, 0, 0, 0, 4617, 4618, 3, 654, 327, 0, 4618, 4619, 5, 184, 0, 0, 4619, 4620, 3, 654, 327, 0, 4620, 4627, 1, 0, 0, 0, 4621, 4624, 3, 654, 327, 0, 4622, 4623, 5, 387, 0, 0, 4623, 4625, 3, 676, 338, 0, 4624, 4622, 1, 0, 0, 0, 4624, 4625, 1, 0, 0, 0, 4625, 4627, 1, 0, 0, 0, 4626, 4617, 1, 0, 0, 0, 4626, 4621, 1, 0, 0, 0, 4627, 4777, 1, 0, 0, 0, 4628, 4629, 5, 9, 0, 0, 4629, 4630, 5, 280, 0, 0, 4630, 4631, 5, 243, 0, 0, 4631, 4656, 3, 654, 327, 0, 4632, 4657, 5, 373, 0, 0, 4633, 4657, 3, 684, 342, 0, 4634, 4635, 5, 304, 0, 0, 4635, 4657, 3, 676, 338, 0, 4636, 4637, 5, 363, 0, 0, 4637, 4642, 3, 678, 339, 0, 4638, 4639, 5, 397, 0, 0, 4639, 4641, 3, 678, 339, 0, 4640, 4638, 1, 0, 0, 0, 4641, 4644, 1, 0, 0, 0, 4642, 4640, 1, 0, 0, 0, 4642, 4643, 1, 0, 0, 0, 4643, 4657, 1, 0, 0, 0, 4644, 4642, 1, 0, 0, 0, 4645, 4646, 5, 274, 0, 0, 4646, 4647, 5, 341, 0, 0, 4647, 4657, 3, 654, 327, 0, 4648, 4650, 3, 680, 340, 0, 4649, 4651, 3, 682, 341, 0, 4650, 4649, 1, 0, 0, 0, 4650, 4651, 1, 0, 0, 0, 4651, 4657, 1, 0, 0, 0, 4652, 4654, 3, 682, 341, 0, 4653, 4655, 3, 680, 340, 0, 4654, 4653, 1, 0, 0, 0, 4654, 4655, 1, 0, 0, 0, 4655, 4657, 1, 0, 0, 0, 4656, 4632, 1, 0, 0, 0, 4656, 4633, 1, 0, 0, 0, 4656, 4634, 1, 0, 0, 0, 4656, 4636, 1, 0, 0, 0, 4656, 4645, 1, 0, 0, 0, 4656, 4648, 1, 0, 0, 0, 4656, 4652, 1, 0, 0, 0, 4657, 4777, 1, 0, 0, 0, 4658, 4659, 5, 101, 0, 0, 4659, 4660, 5, 280, 0, 0, 4660, 4662, 5, 243, 0, 0, 4661, 4663, 3, 30, 15, 0, 4662, 4661, 1, 0, 0, 0, 4662, 4663, 1, 0, 0, 0, 4663, 4664, 1, 0, 0, 0, 4664, 4777, 3, 654, 327, 0, 4665, 4668, 3, 682, 341, 0, 4666, 4668, 3, 684, 342, 0, 4667, 4665, 1, 0, 0, 0, 4667, 4666, 1, 0, 0, 0, 4668, 4669, 1, 0, 0, 0, 4669, 4670, 5, 390, 0, 0, 4670, 4671, 5, 197, 0, 0, 4671, 4777, 1, 0, 0, 0, 4672, 4684, 5, 278, 0, 0, 4673, 4674, 5, 3, 0, 0, 4674, 4675, 5, 280, 0, 0, 4675, 4676, 5, 243, 0, 0, 4676, 4677, 5, 387, 0, 0, 4677, 4685, 3, 654, 327, 0, 4678, 4679, 5, 280, 0, 0, 4679, 4680, 5, 243, 0, 0, 4680, 4681, 3, 654, 327, 0, 4681, 4682, 5, 387, 0, 0, 4682, 4683, 3, 654, 327, 0, 4683, 4685, 1, 0, 0, 0, 4684, 4673, 1, 0, 0, 0, 4684, 4678, 1, 0, 0, 0, 4685, 4777, 1, 0, 0, 0, 4686, 4687, 5, 58, 0, 0, 4687, 4688, 5, 348, 0, 0, 4688, 4689, 3, 654, 327, 0, 4689, 4690, 5, 395, 0, 0, 4690, 4691, 3, 654, 327, 0, 4691, 4692, 5, 383, 0, 0, 4692, 4693, 3, 708, 354, 0, 4693, 4694, 5, 99, 0, 0, 4694, 4695, 3, 710, 355, 0, 4695, 4777, 1, 0, 0, 0, 4696, 4697, 5, 9, 0, 0, 4697, 4698, 5, 348, 0, 0, 4698, 4699, 3, 654, 327, 0, 4699, 4700, 5, 395, 0, 0, 4700, 4717, 3, 654, 327, 0, 4701, 4702, 5, 383, 0, 0, 4702, 4703, 3, 708, 354, 0, 4703, 4704, 5, 99, 0, 0, 4704, 4705, 3, 710, 355, 0, 4705, 4718, 1, 0, 0, 0, 4706, 4707, 5, 4, 0, 0, 4707, 4711, 5, 341, 0, 0, 4708, 4709, 5, 101, 0, 0, 4709, 4711, 5, 139, 0, 0, 4710, 4706, 1, 0, 0, 0, 4710, 4708, 1, 0, 0, 0, 4711, 4715, 1, 0, 0, 0, 4712, 4713, 5, 246, 0, 0, 4713, 4716, 3, 704, 352, 0, 4714, 4716, 5, 362, 0, 0, 4715, 4712, 1, 0, 0, 0, 4715, 4714, 1, 0, 0, 0, 4716, 4718, 1, 0, 0, 0, 4717, 4701, 1, 0, 0, 0, 4717, 4710, 1, 0, 0, 0, 4718, 4777, 1, 0, 0, 0, 4719, 4720, 5, 101, 0, 0, 4720, 4721, 5, 348, 0, 0, 4721, 4722, 3, 654, 327, 0, 4722, 4723, 5, 395, 0, 0, 4723, 4724, 3, 654, 327, 0, 4724, 4777, 1, 0, 0, 0, 4725, 4726, 5, 58, 0, 0, 4726, 4727, 5, 246, 0, 0, 4727, 4728, 3, 654, 327, 0, 4728, 4729, 5, 395, 0, 0, 4729, 4730, 3, 704, 352, 0, 4730, 4731, 5, 387, 0, 0, 4731, 4732, 3, 714, 357, 0, 4732, 4777, 1, 0, 0, 0, 4733, 4734, 5, 9, 0, 0, 4734, 4735, 5, 246, 0, 0, 4735, 4736, 3, 654, 327, 0, 4736, 4737, 5, 395, 0, 0, 4737, 4745, 3, 704, 352, 0, 4738, 4739, 5, 304, 0, 0, 4739, 4746, 3, 714, 357, 0, 4740, 4741, 5, 363, 0, 0, 4741, 4746, 5, 294, 0, 0, 4742, 4743, 7, 48, 0, 0, 4743, 4744, 5, 348, 0, 0, 4744, 4746, 3, 654, 327, 0, 4745, 4738, 1, 0, 0, 0, 4745, 4740, 1, 0, 0, 0, 4745, 4742, 1, 0, 0, 0, 4746, 4777, 1, 0, 0, 0, 4747, 4748, 5, 101, 0, 0, 4748, 4749, 5, 246, 0, 0, 4749, 4750, 3, 654, 327, 0, 4750, 4751, 5, 395, 0, 0, 4751, 4752, 3, 704, 352, 0, 4752, 4777, 1, 0, 0, 0, 4753, 4754, 7, 49, 0, 0, 4754, 4755, 3, 672, 336, 0, 4755, 4756, 5, 200, 0, 0, 4756, 4757, 5, 426, 0, 0, 4757, 4758, 5, 154, 0, 0, 4758, 4762, 3, 654, 327, 0, 4759, 4760, 5, 341, 0, 0, 4760, 4763, 3, 704, 352, 0, 4761, 4763, 5, 362, 0, 0, 4762, 4759, 1, 0, 0, 0, 4762, 4761, 1, 0, 0, 0, 4763, 4767, 1, 0, 0, 0, 4764, 4765, 5, 387, 0, 0, 4765, 4766, 5, 229, 0, 0, 4766, 4768, 5, 431, 0, 0, 4767, 4764, 1, 0, 0, 0, 4767, 4768, 1, 0, 0, 0, 4768, 4777, 1, 0, 0, 0, 4769, 4770, 5, 101, 0, 0, 4770, 4771, 3, 672, 336, 0, 4771, 4772, 5, 200, 0, 0, 4772, 4773, 5, 426, 0, 0, 4773, 4774, 5, 154, 0, 0, 4774, 4775, 3, 654, 327, 0, 4775, 4777, 1, 0, 0, 0, 4776, 4611, 1, 0, 0, 0, 4776, 4628, 1, 0, 0, 0, 4776, 4658, 1, 0, 0, 0, 4776, 4667, 1, 0, 0, 0, 4776, 4672, 1, 0, 0, 0, 4776, 4686, 1, 0, 0, 0, 4776, 4696, 1, 0, 0, 0, 4776, 4719, 1, 0, 0, 0, 4776, 4725, 1, 0, 0, 0, 4776, 4733, 1, 0, 0, 0, 4776, 4747, 1, 0, 0, 0, 4776, 4753, 1, 0, 0, 0, 4776, 4769, 1, 0, 0, 0, 4777, 671, 1, 0, 0, 0, 4778, 4779, 7, 50, 0, 0, 4779, 673, 1, 0, 0, 0, 4780, 4781, 5, 259, 0, 0, 4781, 4782, 5, 405, 0, 0, 4782, 4788, 5, 431, 0, 0, 4783, 4784, 5, 83, 0, 0, 4784, 4785, 5, 246, 0, 0, 4785, 4786, 5, 405, 0, 0, 4786, 4788, 3, 704, 352, 0, 4787, 4780, 1, 0, 0, 0, 4787, 4783, 1, 0, 0, 0, 4788, 675, 1, 0, 0, 0, 4789, 4794, 3, 674, 337, 0, 4790, 4791, 5, 397, 0, 0, 4791, 4793, 3, 674, 337, 0, 4792, 4790, 1, 0, 0, 0, 4793, 4796, 1, 0, 0, 0, 4794, 4792, 1, 0, 0, 0, 4794, 4795, 1, 0, 0, 0, 4795, 677, 1, 0, 0, 0, 4796, 4794, 1, 0, 0, 0, 4797, 4801, 5, 259, 0, 0, 4798, 4799, 5, 83, 0, 0, 4799, 4801, 5, 246, 0, 0, 4800, 4797, 1, 0, 0, 0, 4800, 4798, 1, 0, 0, 0, 4801, 679, 1, 0, 0, 0, 4802, 4805, 5, 2, 0, 0, 4803, 4804, 5, 387, 0, 0, 4804, 4806, 5, 278, 0, 0, 4805, 4803, 1, 0, 0, 0, 4805, 4806, 1, 0, 0, 0, 4806, 681, 1, 0, 0, 0, 4807, 4808, 7, 51, 0, 0, 4808, 683, 1, 0, 0, 0, 4809, 4810, 7, 52, 0, 0, 4810, 685, 1, 0, 0, 0, 4811, 4812, 7, 53, 0, 0, 4812, 687, 1, 0, 0, 0, 4813, 4814, 7, 54, 0, 0, 4814, 689, 1, 0, 0, 0, 4815, 4816, 7, 55, 0, 0, 4816, 691, 1, 0, 0, 0, 4817, 4818, 7, 56, 0, 0, 4818, 693, 1, 0, 0, 0, 4819, 4820, 7, 57, 0, 0, 4820, 695, 1, 0, 0, 0, 4821, 4822, 7, 58, 0, 0, 4822, 697, 1, 0, 0, 0, 4823, 4824, 7, 59, 0, 0, 4824, 699, 1, 0, 0, 0, 4825, 4826, 7, 60, 0, 0, 4826, 701, 1, 0, 0, 0, 4827, 4828, 1, 0, 0, 0, 4828, 703, 1, 0, 0, 0, 4829, 4834, 3, 654, 327, 0, 4830, 4831, 5, 395, 0, 0, 4831, 4833, 3, 654, 327, 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, 705, 1, 0, 0, 0, 4836, 4834, 1, 0, 0, 0, 4837, 4842, 3, 654, 327, 0, 4838, 4839, 5, 395, 0, 0, 4839, 4841, 3, 654, 327, 0, 4840, 4838, 1, 0, 0, 0, 4841, 4844, 1, 0, 0, 0, 4842, 4840, 1, 0, 0, 0, 4842, 4843, 1, 0, 0, 0, 4843, 4855, 1, 0, 0, 0, 4844, 4842, 1, 0, 0, 0, 4845, 4846, 4, 353, 5, 0, 4846, 4851, 3, 654, 327, 0, 4847, 4848, 5, 395, 0, 0, 4848, 4850, 3, 702, 351, 0, 4849, 4847, 1, 0, 0, 0, 4850, 4853, 1, 0, 0, 0, 4851, 4849, 1, 0, 0, 0, 4851, 4852, 1, 0, 0, 0, 4852, 4855, 1, 0, 0, 0, 4853, 4851, 1, 0, 0, 0, 4854, 4837, 1, 0, 0, 0, 4854, 4845, 1, 0, 0, 0, 4855, 707, 1, 0, 0, 0, 4856, 4857, 3, 654, 327, 0, 4857, 4858, 5, 411, 0, 0, 4858, 4859, 7, 26, 0, 0, 4859, 709, 1, 0, 0, 0, 4860, 4865, 5, 176, 0, 0, 4861, 4862, 5, 211, 0, 0, 4862, 4863, 5, 341, 0, 0, 4863, 4865, 3, 704, 352, 0, 4864, 4860, 1, 0, 0, 0, 4864, 4861, 1, 0, 0, 0, 4865, 711, 1, 0, 0, 0, 4866, 4867, 5, 8, 0, 0, 4867, 4868, 5, 405, 0, 0, 4868, 4879, 5, 431, 0, 0, 4869, 4870, 5, 259, 0, 0, 4870, 4871, 5, 405, 0, 0, 4871, 4879, 5, 431, 0, 0, 4872, 4873, 5, 294, 0, 0, 4873, 4874, 5, 405, 0, 0, 4874, 4879, 5, 426, 0, 0, 4875, 4876, 5, 240, 0, 0, 4876, 4877, 5, 405, 0, 0, 4877, 4879, 3, 704, 352, 0, 4878, 4866, 1, 0, 0, 0, 4878, 4869, 1, 0, 0, 0, 4878, 4872, 1, 0, 0, 0, 4878, 4875, 1, 0, 0, 0, 4879, 713, 1, 0, 0, 0, 4880, 4885, 3, 712, 356, 0, 4881, 4882, 5, 397, 0, 0, 4882, 4884, 3, 712, 356, 0, 4883, 4881, 1, 0, 0, 0, 4884, 4887, 1, 0, 0, 0, 4885, 4883, 1, 0, 0, 0, 4885, 4886, 1, 0, 0, 0, 4886, 715, 1, 0, 0, 0, 4887, 4885, 1, 0, 0, 0, 630, 719, 726, 729, 735, 741, 748, 758, 761, 765, 780, 787, 793, 798, 803, 806, 830, 833, 838, 843, 849, 853, 866, 870, 874, 879, 886, 890, 895, 902, 906, 911, 959, 966, 971, 994, 998, 1002, 1005, 1009, 1014, 1020, 1024, 1030, 1032, 1043, 1047, 1054, 1062, 1065, 1070, 1074, 1077, 1087, 1095, 1099, 1102, 1106, 1110, 1113, 1118, 1124, 1129, 1134, 1138, 1149, 1151, 1155, 1165, 1169, 1175, 1178, 1185, 1190, 1198, 1203, 1207, 1215, 1220, 1226, 1232, 1235, 1238, 1241, 1250, 1258, 1263, 1271, 1278, 1281, 1284, 1286, 1297, 1299, 1302, 1305, 1308, 1311, 1314, 1316, 1328, 1334, 1342, 1344, 1354, 1387, 1392, 1396, 1400, 1407, 1414, 1420, 1424, 1427, 1434, 1457, 1462, 1466, 1474, 1483, 1490, 1496, 1503, 1506, 1512, 1519, 1527, 1536, 1545, 1552, 1572, 1579, 1581, 1588, 1598, 1606, 1610, 1614, 1627, 1636, 1652, 1656, 1661, 1666, 1669, 1672, 1675, 1678, 1681, 1686, 1695, 1699, 1706, 1709, 1712, 1715, 1727, 1733, 1759, 1767, 1771, 1774, 1777, 1780, 1783, 1786, 1789, 1792, 1801, 1811, 1814, 1834, 1840, 1846, 1849, 1851, 1858, 1865, 1878, 1883, 1892, 1900, 1908, 1921, 1934, 1950, 1954, 1969, 1975, 1978, 1981, 1984, 1987, 1991, 2006, 2009, 2020, 2034, 2068, 2076, 2081, 2089, 2094, 2099, 2106, 2114, 2122, 2130, 2136, 2143, 2153, 2157, 2165, 2174, 2177, 2181, 2188, 2194, 2198, 2204, 2208, 2220, 2229, 2240, 2244, 2251, 2263, 2273, 2276, 2283, 2289, 2293, 2296, 2299, 2305, 2309, 2313, 2318, 2322, 2326, 2330, 2338, 2342, 2346, 2350, 2354, 2362, 2366, 2370, 2378, 2383, 2388, 2392, 2396, 2403, 2412, 2420, 2432, 2450, 2453, 2459, 2485, 2488, 2494, 2502, 2510, 2523, 2530, 2533, 2536, 2539, 2542, 2545, 2548, 2551, 2554, 2557, 2560, 2565, 2568, 2571, 2574, 2577, 2580, 2583, 2586, 2589, 2592, 2595, 2597, 2603, 2607, 2610, 2613, 2616, 2619, 2622, 2629, 2633, 2636, 2639, 2642, 2645, 2648, 2655, 2658, 2666, 2670, 2677, 2679, 2682, 2687, 2690, 2694, 2699, 2705, 2713, 2721, 2731, 2734, 2738, 2742, 2747, 2754, 2758, 2760, 2764, 2771, 2776, 2789, 2797, 2816, 2826, 2839, 2849, 2853, 2857, 2863, 2870, 2877, 2886, 2893, 2913, 2916, 2930, 2945, 2949, 2969, 2981, 2987, 2990, 2993, 2999, 3005, 3012, 3020, 3026, 3030, 3035, 3038, 3042, 3049, 3054, 3059, 3062, 3064, 3072, 3080, 3084, 3088, 3092, 3109, 3126, 3133, 3142, 3147, 3150, 3153, 3157, 3172, 3186, 3189, 3200, 3204, 3207, 3210, 3214, 3219, 3222, 3225, 3228, 3231, 3234, 3240, 3243, 3246, 3249, 3252, 3255, 3258, 3261, 3264, 3267, 3271, 3273, 3279, 3284, 3287, 3290, 3293, 3296, 3302, 3305, 3308, 3311, 3314, 3317, 3320, 3323, 3326, 3329, 3333, 3335, 3337, 3342, 3347, 3351, 3355, 3360, 3365, 3374, 3384, 3392, 3404, 3407, 3413, 3420, 3427, 3434, 3441, 3451, 3453, 3457, 3461, 3468, 3473, 3477, 3481, 3484, 3487, 3498, 3502, 3504, 3507, 3520, 3523, 3526, 3538, 3541, 3548, 3557, 3562, 3564, 3566, 3583, 3586, 3594, 3597, 3601, 3604, 3607, 3610, 3613, 3625, 3633, 3640, 3643, 3650, 3653, 3658, 3665, 3673, 3679, 3684, 3688, 3693, 3697, 3704, 3718, 3721, 3728, 3736, 3746, 3749, 3758, 3767, 3770, 3776, 3779, 3784, 3787, 3800, 3806, 3808, 3818, 3824, 3827, 3837, 3842, 3846, 3862, 3868, 3870, 3877, 3884, 3898, 3904, 3907, 3910, 3913, 3922, 3929, 3935, 3944, 3948, 3956, 3966, 3976, 3981, 3985, 3991, 3996, 4001, 4008, 4012, 4015, 4020, 4023, 4027, 4032, 4043, 4045, 4054, 4077, 4087, 4090, 4097, 4100, 4110, 4117, 4120, 4122, 4133, 4143, 4145, 4154, 4159, 4168, 4181, 4185, 4197, 4201, 4210, 4229, 4247, 4259, 4274, 4278, 4294, 4301, 4315, 4320, 4330, 4332, 4340, 4348, 4356, 4364, 4372, 4380, 4391, 4395, 4403, 4419, 4423, 4428, 4441, 4450, 4452, 4461, 4466, 4472, 4479, 4484, 4493, 4501, 4509, 4517, 4527, 4532, 4545, 4555, 4609, 4615, 4624, 4626, 4642, 4650, 4654, 4656, 4662, 4667, 4684, 4710, 4715, 4717, 4745, 4762, 4767, 4776, 4787, 4794, 4800, 4805, 4834, 4842, 4851, 4854, 4864, 4878, 4885] \ No newline at end of file diff --git a/src/lib/hive/HiveSqlParser.ts b/src/lib/hive/HiveSqlParser.ts index 571477e7..ab61ece9 100644 --- a/src/lib/hive/HiveSqlParser.ts +++ b/src/lib/hive/HiveSqlParser.ts @@ -787,30 +787,32 @@ export class HiveSqlParser extends SQLParserBase { public static readonly RULE_principalIdentifier = 329; public static readonly RULE_nonReserved = 330; public static readonly RULE_sql11ReservedKeywordsUsedAsFunctionName = 331; - public static readonly RULE_configPropertiesItem = 332; - public static readonly RULE_resourcePlanDdlStatements = 333; - public static readonly RULE_mappingTypes = 334; - public static readonly RULE_rpAssign = 335; - public static readonly RULE_rpAssignList = 336; - public static readonly RULE_rpUnassign = 337; - public static readonly RULE_activate = 338; - public static readonly RULE_enable = 339; - public static readonly RULE_disable = 340; - public static readonly RULE_year = 341; - public static readonly RULE_month = 342; - public static readonly RULE_week = 343; - public static readonly RULE_day = 344; - public static readonly RULE_hour = 345; - public static readonly RULE_minute = 346; - public static readonly RULE_second = 347; - public static readonly RULE_decimal = 348; - public static readonly RULE_emptyColumn = 349; - public static readonly RULE_poolPath = 350; - public static readonly RULE_poolPathAllowEmpty = 351; - public static readonly RULE_triggerAtomExpression = 352; - public static readonly RULE_triggerActionExpression = 353; - public static readonly RULE_poolAssign = 354; - public static readonly RULE_poolAssignList = 355; + public static readonly RULE_configProperty = 332; + public static readonly RULE_configPropertyPart = 333; + public static readonly RULE_configPropertiesItem = 334; + public static readonly RULE_resourcePlanDdlStatements = 335; + public static readonly RULE_mappingTypes = 336; + public static readonly RULE_rpAssign = 337; + public static readonly RULE_rpAssignList = 338; + public static readonly RULE_rpUnassign = 339; + public static readonly RULE_activate = 340; + public static readonly RULE_enable = 341; + public static readonly RULE_disable = 342; + public static readonly RULE_year = 343; + public static readonly RULE_month = 344; + public static readonly RULE_week = 345; + public static readonly RULE_day = 346; + public static readonly RULE_hour = 347; + public static readonly RULE_minute = 348; + public static readonly RULE_second = 349; + public static readonly RULE_decimal = 350; + public static readonly RULE_emptyColumn = 351; + public static readonly RULE_poolPath = 352; + public static readonly RULE_poolPathAllowEmpty = 353; + public static readonly RULE_triggerAtomExpression = 354; + public static readonly RULE_triggerActionExpression = 355; + public static readonly RULE_poolAssign = 356; + public static readonly RULE_poolAssignList = 357; public static readonly literalNames = [ null, "'ABORT'", "'ACTIVATE'", "'ACTIVE'", "'ADD'", "'ADMIN'", "'AFTER'", @@ -1071,12 +1073,12 @@ export class HiveSqlParser extends SQLParserBase { "tableOrPartition", "partitionSpec", "partitionVal", "partitionSelectorSpec", "partitionSelectorVal", "subQuerySelectorOperator", "sysFuncNames", "id_", "functionIdentifier", "principalIdentifier", "nonReserved", - "sql11ReservedKeywordsUsedAsFunctionName", "configPropertiesItem", - "resourcePlanDdlStatements", "mappingTypes", "rpAssign", "rpAssignList", - "rpUnassign", "activate", "enable", "disable", "year", "month", - "week", "day", "hour", "minute", "second", "decimal", "emptyColumn", - "poolPath", "poolPathAllowEmpty", "triggerAtomExpression", "triggerActionExpression", - "poolAssign", "poolAssignList", + "sql11ReservedKeywordsUsedAsFunctionName", "configProperty", "configPropertyPart", + "configPropertiesItem", "resourcePlanDdlStatements", "mappingTypes", + "rpAssign", "rpAssignList", "rpUnassign", "activate", "enable", + "disable", "year", "month", "week", "day", "hour", "minute", "second", + "decimal", "emptyColumn", "poolPath", "poolPathAllowEmpty", "triggerAtomExpression", + "triggerActionExpression", "poolAssign", "poolAssignList", ]; public get grammarFileName(): string { return "HiveSqlParser.g4"; } @@ -1100,21 +1102,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 715; + this.state = 719; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1538) !== 0) || _la === 48 || _la === 58 || ((((_la - 86)) & ~0x1F) === 0 && ((1 << (_la - 86)) & 540050201) !== 0) || ((((_la - 119)) & ~0x1F) === 0 && ((1 << (_la - 119)) & 17825795) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 8388865) !== 0) || ((((_la - 187)) & ~0x1F) === 0 && ((1 << (_la - 187)) & 33622025) !== 0) || ((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 810024961) !== 0) || ((((_la - 283)) & ~0x1F) === 0 && ((1 << (_la - 283)) & 35717185) !== 0) || _la === 318 || ((((_la - 351)) & ~0x1F) === 0 && ((1 << (_la - 351)) & 8537089) !== 0) || _la === 387 || _la === 399) { { { - this.state = 712; + this.state = 716; this.statement(); } } - this.state = 717; + this.state = 721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 718; + this.state = 722; this.match(HiveSqlParser.EOF); } } @@ -1138,12 +1140,12 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 722; + this.state = 726; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXPLAIN: { - this.state = 720; + this.state = 724; this.explainStatement(); } break; @@ -1191,19 +1193,19 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 721; + this.state = 725; this.execStatement(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 725; + this.state = 729; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: { - this.state = 724; + this.state = 728; this.match(HiveSqlParser.SEMICOLON); } break; @@ -1231,9 +1233,9 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 727; + this.state = 731; this.match(HiveSqlParser.KW_EXPLAIN); - this.state = 737; + this.state = 741; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -1292,31 +1294,31 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WITH: case HiveSqlParser.LPAREN: { - this.state = 731; + this.state = 735; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 3, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 728; + this.state = 732; this.explainOption(); } } } - this.state = 733; + this.state = 737; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 3, this.context); } - this.state = 734; + this.state = 738; this.execStatement(); } break; case HiveSqlParser.KW_REWRITE: { - this.state = 735; + this.state = 739; this.match(HiveSqlParser.KW_REWRITE); - this.state = 736; + this.state = 740; this.queryStatementExpression(); } break; @@ -1344,41 +1346,41 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 6, HiveSqlParser.RULE_explainOption); let _la: number; try { - this.state = 761; + this.state = 765; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_EXTENDED: this.enterOuterAlt(localContext, 1); { - this.state = 739; + this.state = 743; this.match(HiveSqlParser.KW_EXTENDED); } break; case HiveSqlParser.KW_FORMATTED: this.enterOuterAlt(localContext, 2); { - this.state = 740; + this.state = 744; this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_DEPENDENCY: this.enterOuterAlt(localContext, 3); { - this.state = 741; + this.state = 745; this.match(HiveSqlParser.KW_DEPENDENCY); } break; case HiveSqlParser.KW_CBO: this.enterOuterAlt(localContext, 4); { - this.state = 742; + this.state = 746; this.match(HiveSqlParser.KW_CBO); - this.state = 744; + this.state = 748; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57 || _la === 172) { { - this.state = 743; + this.state = 747; _la = this.tokenStream.LA(1); if(!(_la === 57 || _la === 172)) { this.errorHandler.recoverInline(this); @@ -1395,66 +1397,66 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_LOGICAL: this.enterOuterAlt(localContext, 5); { - this.state = 746; + this.state = 750; this.match(HiveSqlParser.KW_LOGICAL); } break; case HiveSqlParser.KW_AUTHORIZATION: this.enterOuterAlt(localContext, 6); { - this.state = 747; + this.state = 751; this.match(HiveSqlParser.KW_AUTHORIZATION); } break; case HiveSqlParser.KW_ANALYZE: this.enterOuterAlt(localContext, 7); { - this.state = 748; + this.state = 752; this.match(HiveSqlParser.KW_ANALYZE); } break; case HiveSqlParser.KW_REOPTIMIZATION: this.enterOuterAlt(localContext, 8); { - this.state = 749; + this.state = 753; this.match(HiveSqlParser.KW_REOPTIMIZATION); } break; case HiveSqlParser.KW_LOCKS: this.enterOuterAlt(localContext, 9); { - this.state = 750; + this.state = 754; this.match(HiveSqlParser.KW_LOCKS); } break; case HiveSqlParser.KW_AST: this.enterOuterAlt(localContext, 10); { - this.state = 751; + this.state = 755; this.match(HiveSqlParser.KW_AST); } break; case HiveSqlParser.KW_VECTORIZATION: this.enterOuterAlt(localContext, 11); { - this.state = 752; + this.state = 756; this.match(HiveSqlParser.KW_VECTORIZATION); - this.state = 754; + this.state = 758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 753; + this.state = 757; this.match(HiveSqlParser.KW_ONLY); } } - this.state = 757; + this.state = 761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91 || _la === 121 || _la === 226 || _la === 325) { { - this.state = 756; + this.state = 760; this.vectorizationDetail(); } } @@ -1464,14 +1466,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DEBUG: this.enterOuterAlt(localContext, 12); { - this.state = 759; + this.state = 763; this.match(HiveSqlParser.KW_DEBUG); } break; case HiveSqlParser.KW_DDL: this.enterOuterAlt(localContext, 13); { - this.state = 760; + this.state = 764; this.match(HiveSqlParser.KW_DDL); } break; @@ -1500,7 +1502,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 763; + this.state = 767; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 121 || _la === 226 || _la === 325)) { this.errorHandler.recoverInline(this); @@ -1531,68 +1533,68 @@ export class HiveSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 836; + this.state = 833; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 17, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 765; + this.state = 769; this.queryStatementExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 766; + this.state = 770; this.loadStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 767; + this.state = 771; this.exportStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 768; + this.state = 772; this.importStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 769; + this.state = 773; this.replDumpStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 770; + this.state = 774; this.replLoadStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 771; + this.state = 775; this.match(HiveSqlParser.KW_REPL); - this.state = 772; + this.state = 776; this.match(HiveSqlParser.KW_STATUS); - this.state = 773; + this.state = 777; localContext._dbName = this.dbSchemaName(); - this.state = 776; + this.state = 780; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 774; + this.state = 778; this.match(HiveSqlParser.KW_WITH); - this.state = 775; + this.state = 779; localContext._replConf = this.keyValueProperties(); } break; @@ -1602,25 +1604,25 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 778; + this.state = 782; this.ddlStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 779; + this.state = 783; this.match(HiveSqlParser.KW_DELETE); - this.state = 780; + this.state = 784; this.match(HiveSqlParser.KW_FROM); - this.state = 781; + this.state = 785; this.tableName(); - this.state = 783; + this.state = 787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 782; + this.state = 786; this.whereClause(); } } @@ -1630,18 +1632,18 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 785; + this.state = 789; this.match(HiveSqlParser.KW_UPDATE); - this.state = 786; + this.state = 790; this.tableName(); - this.state = 787; + this.state = 791; this.setColumnsClause(); - this.state = 789; + this.state = 793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 788; + this.state = 792; this.whereClause(); } } @@ -1651,134 +1653,111 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 791; + this.state = 795; this.sqlTransactionStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 792; + this.state = 796; this.match(HiveSqlParser.KW_MERGE); - this.state = 794; + this.state = 798; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 436) { { - this.state = 793; + this.state = 797; this.match(HiveSqlParser.QUERY_HINT); } } - this.state = 796; + this.state = 800; this.match(HiveSqlParser.KW_INTO); - this.state = 797; + this.state = 801; this.tableName(); - this.state = 802; + this.state = 806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252585854) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 799; + this.state = 803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 798; + this.state = 802; this.match(HiveSqlParser.KW_AS); } } - this.state = 801; + this.state = 805; this.id_(); } } - this.state = 804; + this.state = 808; this.match(HiveSqlParser.KW_USING); - this.state = 805; + this.state = 809; this.joinSourcePart(); - this.state = 806; + this.state = 810; this.match(HiveSqlParser.KW_ON); - this.state = 807; + this.state = 811; this.expression(); - this.state = 808; + this.state = 812; this.whenClauses(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 810; + this.state = 814; this.match(HiveSqlParser.KW_PREPARE); - this.state = 811; + this.state = 815; this.id_(); - this.state = 812; + this.state = 816; this.match(HiveSqlParser.KW_FROM); - this.state = 813; + this.state = 817; this.queryStatementExpression(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 815; + this.state = 819; this.match(HiveSqlParser.KW_EXECUTE); - this.state = 816; + this.state = 820; this.id_(); - this.state = 817; + this.state = 821; this.match(HiveSqlParser.KW_USING); - this.state = 818; + this.state = 822; this.constantList(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 820; + this.state = 824; this.match(HiveSqlParser.KW_SET); - this.state = 821; - this.configPropertiesItem(); + this.state = 825; + this.configProperty(); this.state = 826; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 395 || _la === 396) { - { - { - this.state = 822; - _la = this.tokenStream.LA(1); - if(!(_la === 395 || _la === 396)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 823; - this.configPropertiesItem(); - } - } - this.state = 828; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - this.state = 829; this.match(HiveSqlParser.EQUAL); - this.state = 833; + this.state = 830; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 16, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 15, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 830; + this.state = 827; this.matchWildcard(); } } } - this.state = 835; + this.state = 832; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 16, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 15, this.context); } } break; @@ -1805,46 +1784,46 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 838; + this.state = 835; this.match(HiveSqlParser.KW_LOAD); - this.state = 839; + this.state = 836; this.match(HiveSqlParser.KW_DATA); - this.state = 841; + this.state = 838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 840; + this.state = 837; this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 843; + this.state = 840; this.match(HiveSqlParser.KW_INPATH); - this.state = 844; + this.state = 841; this.match(HiveSqlParser.StringLiteral); - this.state = 846; + this.state = 843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 235) { { - this.state = 845; + this.state = 842; this.match(HiveSqlParser.KW_OVERWRITE); } } - this.state = 848; + this.state = 845; this.match(HiveSqlParser.KW_INTO); - this.state = 849; + this.state = 846; this.match(HiveSqlParser.KW_TABLE); - this.state = 850; + this.state = 847; this.tableOrPartition(); - this.state = 852; + this.state = 849; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 160) { { - this.state = 851; + this.state = 848; this.inputFileFormat(); } } @@ -1872,25 +1851,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 854; + this.state = 851; this.match(HiveSqlParser.KW_FOR); - this.state = 856; + this.state = 853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 204) { { - this.state = 855; + this.state = 852; this.match(HiveSqlParser.KW_METADATA); } } - this.state = 858; + this.state = 855; this.match(HiveSqlParser.KW_REPLICATION); - this.state = 859; + this.state = 856; this.match(HiveSqlParser.LPAREN); - this.state = 860; + this.state = 857; this.match(HiveSqlParser.StringLiteral); - this.state = 861; + this.state = 858; this.match(HiveSqlParser.RPAREN); } } @@ -1915,22 +1894,22 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 863; + this.state = 860; this.match(HiveSqlParser.KW_EXPORT); - this.state = 864; + this.state = 861; this.match(HiveSqlParser.KW_TABLE); - this.state = 865; + this.state = 862; this.tableOrPartition(); - this.state = 866; + this.state = 863; this.match(HiveSqlParser.KW_TO); - this.state = 867; + this.state = 864; this.match(HiveSqlParser.StringLiteral); - this.state = 869; + this.state = 866; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 868; + this.state = 865; this.replicationClause(); } } @@ -1958,40 +1937,40 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 871; + this.state = 868; this.match(HiveSqlParser.KW_IMPORT); - this.state = 877; + this.state = 874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123 || _la === 329) { { - this.state = 873; + this.state = 870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 872; + this.state = 869; this.match(HiveSqlParser.KW_EXTERNAL); } } - this.state = 875; + this.state = 872; this.match(HiveSqlParser.KW_TABLE); - this.state = 876; + this.state = 873; this.tableOrPartition(); } } - this.state = 879; + this.state = 876; this.match(HiveSqlParser.KW_FROM); - this.state = 880; + this.state = 877; localContext._path = this.match(HiveSqlParser.StringLiteral); - this.state = 882; + this.state = 879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 881; + this.state = 878; this.locationPath(); } } @@ -2018,32 +1997,32 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 884; + this.state = 881; this.match(HiveSqlParser.KW_REPL); - this.state = 885; + this.state = 882; this.match(HiveSqlParser.KW_DUMP); - this.state = 886; + this.state = 883; localContext._dbPolicy = this.replDbPolicy(); - this.state = 889; + this.state = 886; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: { - this.state = 887; + this.state = 884; this.match(HiveSqlParser.KW_REPLACE); - this.state = 888; + this.state = 885; localContext._oldDbPolicy = this.replDbPolicy(); } break; } - this.state = 893; + this.state = 890; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 27, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 891; + this.state = 888; this.match(HiveSqlParser.KW_WITH); - this.state = 892; + this.state = 889; localContext._replConf = this.keyValueProperties(); } break; @@ -2071,16 +2050,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 895; + this.state = 892; localContext._dbName = this.dbSchemaName(); - this.state = 898; + this.state = 895; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 896; + this.state = 893; this.match(HiveSqlParser.DOT); - this.state = 897; + this.state = 894; localContext._tablePolicy = this.replTableLevelPolicy(); } } @@ -2108,32 +2087,32 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 900; + this.state = 897; this.match(HiveSqlParser.KW_REPL); - this.state = 901; + this.state = 898; this.match(HiveSqlParser.KW_LOAD); - this.state = 902; + this.state = 899; localContext._sourceDbPolicy = this.replDbPolicy(); - this.state = 905; + this.state = 902; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 166) { { - this.state = 903; + this.state = 900; this.match(HiveSqlParser.KW_INTO); - this.state = 904; + this.state = 901; localContext._dbName = this.dbSchemaName(); } } - this.state = 909; + this.state = 906; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 29, this.context) ) { case 1: { - this.state = 907; + this.state = 904; this.match(HiveSqlParser.KW_WITH); - this.state = 908; + this.state = 905; localContext._replConf = this.keyValueProperties(); } break; @@ -2161,16 +2140,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 911; + this.state = 908; localContext._replTablesIncludeList = this.match(HiveSqlParser.StringLiteral); - this.state = 914; + this.state = 911; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 912; + this.state = 909; this.match(HiveSqlParser.DOT); - this.state = 913; + this.state = 910; localContext._replTablesExcludeList = this.match(HiveSqlParser.StringLiteral); } } @@ -2196,302 +2175,302 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 28, HiveSqlParser.RULE_ddlStatement); let _la: number; try { - this.state = 974; + this.state = 971; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 916; + this.state = 913; this.createDatabaseStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 917; + this.state = 914; this.switchDatabaseStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 918; + this.state = 915; this.dropDatabaseStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 919; + this.state = 916; this.createTableStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 920; + this.state = 917; this.dropTableStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 921; + this.state = 918; this.truncateTableStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 922; + this.state = 919; this.alterStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 923; + this.state = 920; this.descStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 924; + this.state = 921; this.showStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 925; + this.state = 922; this.metastoreCheck(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 926; + this.state = 923; this.createViewStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 927; + this.state = 924; this.createMaterializedViewStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 928; + this.state = 925; this.createScheduledQueryStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 929; + this.state = 926; this.alterScheduledQueryStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 930; + this.state = 927; this.dropScheduledQueryStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 931; + this.state = 928; this.dropViewStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 932; + this.state = 929; this.dropMaterializedViewStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 933; + this.state = 930; this.createFunctionStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 934; + this.state = 931; this.createMacroStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 935; + this.state = 932; this.dropFunctionStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 936; + this.state = 933; this.reloadFunctionsStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 937; + this.state = 934; this.dropMacroStatement(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 938; + this.state = 935; this.createIndexStatement(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 939; + this.state = 936; this.dropIndexStatement(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 940; + this.state = 937; this.analyzeStatement(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 941; + this.state = 938; this.lockStatement(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 942; + this.state = 939; this.unlockStatement(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 943; + this.state = 940; this.lockDatabase(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 944; + this.state = 941; this.unlockDatabase(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 945; + this.state = 942; this.createRoleStatement(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 946; + this.state = 943; this.dropRoleStatement(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 947; + this.state = 944; this.grantPrivileges(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 948; + this.state = 945; this.revokePrivileges(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 949; + this.state = 946; this.showGrants(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 950; + this.state = 947; this.showRoleGrants(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 951; + this.state = 948; this.showRolePrincipals(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 952; + this.state = 949; this.showRoles(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 953; + this.state = 950; this.grantRole(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 954; + this.state = 951; this.revokeRole(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 955; + this.state = 952; this.setRole(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 956; + this.state = 953; this.showCurrentRole(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 957; + this.state = 954; this.match(HiveSqlParser.KW_ABORT); - this.state = 958; + this.state = 955; _la = this.tokenStream.LA(1); if(!(_la === 50 || _la === 346)) { this.errorHandler.recoverInline(this); @@ -2500,17 +2479,17 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 960; + this.state = 957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 959; + this.state = 956; this.match(HiveSqlParser.Number); } } - this.state = 962; + this.state = 959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 431); @@ -2519,21 +2498,21 @@ export class HiveSqlParser extends SQLParserBase { case 43: this.enterOuterAlt(localContext, 43); { - this.state = 964; + this.state = 961; this.match(HiveSqlParser.KW_KILL); - this.state = 965; + this.state = 962; this.match(HiveSqlParser.KW_QUERY); - this.state = 967; + this.state = 964; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 966; + this.state = 963; this.match(HiveSqlParser.StringLiteral); } } - this.state = 969; + this.state = 966; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 426); @@ -2542,21 +2521,21 @@ export class HiveSqlParser extends SQLParserBase { case 44: this.enterOuterAlt(localContext, 44); { - this.state = 971; + this.state = 968; this.resourcePlanDdlStatements(); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 972; + this.state = 969; this.createDataConnectorStatement(); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 973; + this.state = 970; this.dropDataConnectorStatement(); } break; @@ -2582,9 +2561,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 976; + this.state = 973; this.match(HiveSqlParser.KW_IF); - this.state = 977; + this.state = 974; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2608,11 +2587,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 979; + this.state = 976; this.match(HiveSqlParser.KW_IF); - this.state = 980; + this.state = 977; this.match(HiveSqlParser.KW_NOT); - this.state = 981; + this.state = 978; this.match(HiveSqlParser.KW_EXISTS); } } @@ -2637,7 +2616,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 983; + this.state = 980; _la = this.tokenStream.LA(1); if(!(_la === 34 || _la === 282)) { this.errorHandler.recoverInline(this); @@ -2668,9 +2647,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 985; + this.state = 982; this.enable(); - this.state = 986; + this.state = 983; this.match(HiveSqlParser.KW_REWRITE); } } @@ -2694,9 +2673,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 988; + this.state = 985; this.disable(); - this.state = 989; + this.state = 986; this.match(HiveSqlParser.KW_REWRITE); } } @@ -2720,11 +2699,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 991; + this.state = 988; this.match(HiveSqlParser.KW_STORED); - this.state = 992; + this.state = 989; this.match(HiveSqlParser.KW_AS); - this.state = 993; + this.state = 990; this.match(HiveSqlParser.KW_DIRECTORIES); } } @@ -2747,80 +2726,80 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 42, HiveSqlParser.RULE_createDatabaseStatement); let _la: number; try { - this.state = 1035; + this.state = 1032; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 995; + this.state = 992; this.match(HiveSqlParser.KW_CREATE); - this.state = 997; + this.state = 994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 996; + this.state = 993; this.match(HiveSqlParser.KW_REMOTE); } } - this.state = 999; + this.state = 996; this.db_schema(); - this.state = 1001; + this.state = 998; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1000; + this.state = 997; this.ifNotExists(); } } - this.state = 1003; + this.state = 1000; localContext._name = this.dbSchemaNameCreate(); - this.state = 1005; + this.state = 1002; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1004; + this.state = 1001; this.databaseComment(); } } - this.state = 1008; + this.state = 1005; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1007; + this.state = 1004; this.locationPath(); } } - this.state = 1012; + this.state = 1009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 1010; + this.state = 1007; this.match(HiveSqlParser.KW_MANAGEDLOCATION); - this.state = 1011; + this.state = 1008; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } - this.state = 1017; + this.state = 1014; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: { - this.state = 1014; + this.state = 1011; this.match(HiveSqlParser.KW_WITH); - this.state = 1015; + this.state = 1012; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 1016; + this.state = 1013; localContext._dbprops = this.keyValueProperties(); } break; @@ -2830,46 +2809,46 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1019; + this.state = 1016; this.match(HiveSqlParser.KW_CREATE); - this.state = 1020; + this.state = 1017; this.match(HiveSqlParser.KW_REMOTE); - this.state = 1021; + this.state = 1018; this.db_schema(); - this.state = 1023; + this.state = 1020; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1022; + this.state = 1019; this.ifNotExists(); } } - this.state = 1025; + this.state = 1022; localContext._name = this.dbSchemaNameCreate(); - this.state = 1027; + this.state = 1024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1026; + this.state = 1023; this.databaseComment(); } } - this.state = 1029; + this.state = 1026; this.dbConnectorName(); - this.state = 1033; + this.state = 1030; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 42, this.context) ) { case 1: { - this.state = 1030; + this.state = 1027; this.match(HiveSqlParser.KW_WITH); - this.state = 1031; + this.state = 1028; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 1032; + this.state = 1029; localContext._dbprops = this.keyValueProperties(); } break; @@ -2898,9 +2877,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1037; + this.state = 1034; this.match(HiveSqlParser.KW_USING); - this.state = 1038; + this.state = 1035; localContext._dcName = this.dbSchemaName(); } } @@ -2924,9 +2903,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1040; + this.state = 1037; this.match(HiveSqlParser.KW_USE); - this.state = 1041; + this.state = 1038; this.dbSchemaName(); } } @@ -2951,28 +2930,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1043; + this.state = 1040; this.match(HiveSqlParser.KW_DROP); - this.state = 1044; + this.state = 1041; this.db_schema(); - this.state = 1046; + this.state = 1043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1045; + this.state = 1042; this.ifExists(); } } - this.state = 1048; + this.state = 1045; this.dbSchemaName(); - this.state = 1050; + this.state = 1047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 1049; + this.state = 1046; this.restrictOrCascade(); } } @@ -2999,9 +2978,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1052; + this.state = 1049; this.match(HiveSqlParser.KW_COMMENT); - this.state = 1053; + this.state = 1050; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -3026,42 +3005,42 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1055; + this.state = 1052; this.match(HiveSqlParser.KW_TRUNCATE); - this.state = 1057; + this.state = 1054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1056; + this.state = 1053; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1059; + this.state = 1056; this.tableOrPartition(); - this.state = 1065; + this.state = 1062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 1060; + this.state = 1057; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1061; + this.state = 1058; this.match(HiveSqlParser.LPAREN); - this.state = 1062; + this.state = 1059; this.columnNameList(); - this.state = 1063; + this.state = 1060; this.match(HiveSqlParser.RPAREN); } } - this.state = 1068; + this.state = 1065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 135) { { - this.state = 1067; + this.state = 1064; this.match(HiveSqlParser.KW_FORCE); } } @@ -3089,38 +3068,38 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1070; + this.state = 1067; this.match(HiveSqlParser.KW_DROP); - this.state = 1071; + this.state = 1068; this.match(HiveSqlParser.KW_TABLE); - this.state = 1073; + this.state = 1070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1072; + this.state = 1069; this.ifExists(); } } - this.state = 1075; + this.state = 1072; this.tableName(); - this.state = 1077; + this.state = 1074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 255) { { - this.state = 1076; + this.state = 1073; this.match(HiveSqlParser.KW_PURGE); } } - this.state = 1080; + this.state = 1077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 1079; + this.state = 1076; this.replicationClause(); } } @@ -3147,13 +3126,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1082; + this.state = 1079; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 1083; + this.state = 1080; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 1084; + this.state = 1081; this.match(HiveSqlParser.KW_SERDE); - this.state = 1085; + this.state = 1082; localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); } } @@ -3178,66 +3157,66 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1087; + this.state = 1084; this.id_(); - this.state = 1090; + this.state = 1087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 1088; + this.state = 1085; this.match(HiveSqlParser.DOT); - this.state = 1089; + this.state = 1086; this.id_(); } } - this.state = 1105; + this.state = 1102; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 56, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 55, this.context) ) { case 1: { - this.state = 1092; + this.state = 1089; this.id_(); - this.state = 1102; + this.state = 1099; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395) { { { - this.state = 1093; + this.state = 1090; this.match(HiveSqlParser.DOT); - this.state = 1098; + this.state = 1095; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { case 1: { - this.state = 1094; + this.state = 1091; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 1095; + this.state = 1092; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 1096; + this.state = 1093; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 1097; + this.state = 1094; this.id_(); } break; } } } - this.state = 1104; + this.state = 1101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3267,14 +3246,14 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1107; + this.state = 1104; this.tabTypeExpr(); - this.state = 1109; + this.state = 1106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1108; + this.state = 1105; this.partitionSpec(); } } @@ -3301,24 +3280,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1111; + this.state = 1108; this.tableOrView(); - this.state = 1113; + this.state = 1110; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 1112; + this.state = 1109; this.partitionSpec(); } break; } - this.state = 1116; + this.state = 1113; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1115; + this.state = 1112; this.extColumnName(); } break; @@ -3346,7 +3325,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1118; + this.state = 1115; _la = this.tokenStream.LA(1); if(!(_la === 89 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -3355,90 +3334,90 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1141; + this.state = 1138; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 63, this.context) ) { case 1: { - this.state = 1119; + this.state = 1116; this.db_schema(); - this.state = 1121; + this.state = 1118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1120; + this.state = 1117; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1123; + this.state = 1120; localContext._dbName = this.dbSchemaName(); } break; case 2: { - this.state = 1125; + this.state = 1122; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 1127; + this.state = 1124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1126; + this.state = 1123; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1129; + this.state = 1126; localContext._dcName = this.dbSchemaName(); } break; case 3: { - this.state = 1130; + this.state = 1127; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1132; + this.state = 1129; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1131; + this.state = 1128; this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1134; + this.state = 1131; localContext._name = this.functionNameForDDL(); } break; case 4: { - this.state = 1137; + this.state = 1134; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FORMATTED: { - this.state = 1135; + this.state = 1132; localContext._descOptions = this.match(HiveSqlParser.KW_FORMATTED); } break; case HiveSqlParser.KW_EXTENDED: { - this.state = 1136; + this.state = 1133; localContext._descOptions = this.match(HiveSqlParser.KW_EXTENDED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1139; + this.state = 1136; localContext._parttype = this.tabPartColTypeExpr(); } break; case 5: { - this.state = 1140; + this.state = 1137; localContext._parttype = this.tabPartColTypeExpr(); } break; @@ -3465,42 +3444,42 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1143; + this.state = 1140; this.match(HiveSqlParser.KW_ANALYZE); - this.state = 1144; + this.state = 1141; this.match(HiveSqlParser.KW_TABLE); - this.state = 1145; + this.state = 1142; localContext._parttype = this.tableOrPartition(); - this.state = 1158; + this.state = 1155; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_COMPUTE: { - this.state = 1146; + this.state = 1143; this.match(HiveSqlParser.KW_COMPUTE); - this.state = 1147; + this.state = 1144; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 1154; + this.state = 1151; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOSCAN: { - this.state = 1148; + this.state = 1145; localContext._noscan = this.match(HiveSqlParser.KW_NOSCAN); } break; case HiveSqlParser.KW_FOR: { - this.state = 1149; + this.state = 1146; this.match(HiveSqlParser.KW_FOR); - this.state = 1150; + this.state = 1147; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1152; + this.state = 1149; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { case 1: { - this.state = 1151; + this.state = 1148; localContext._statsColumnName = this.columnNameList(); } break; @@ -3561,9 +3540,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_CACHE: { - this.state = 1156; + this.state = 1153; this.match(HiveSqlParser.KW_CACHE); - this.state = 1157; + this.state = 1154; this.match(HiveSqlParser.KW_METADATA); } break; @@ -3593,7 +3572,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1160; + this.state = 1157; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 154)) { this.errorHandler.recoverInline(this); @@ -3625,7 +3604,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1162; + this.state = 1159; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 295)) { this.errorHandler.recoverInline(this); @@ -3655,15 +3634,15 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 72, HiveSqlParser.RULE_showStatement); let _la: number; try { - this.state = 1347; + this.state = 1344; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1164; + this.state = 1161; this.match(HiveSqlParser.KW_SHOW); - this.state = 1165; + this.state = 1162; _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 296)) { this.errorHandler.recoverInline(this); @@ -3672,14 +3651,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1168; + this.state = 1165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 1166; + this.state = 1163; this.match(HiveSqlParser.KW_LIKE); - this.state = 1167; + this.state = 1164; this.showStmtIdentifier(); } } @@ -3689,38 +3668,38 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1170; + this.state = 1167; this.match(HiveSqlParser.KW_SHOW); - this.state = 1172; + this.state = 1169; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1171; + this.state = 1168; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } - this.state = 1174; + this.state = 1171; this.match(HiveSqlParser.KW_TABLES); - this.state = 1178; + this.state = 1175; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: { - this.state = 1175; + this.state = 1172; this.from_in(); - this.state = 1176; + this.state = 1173; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1181; + this.state = 1178; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: { - this.state = 1180; + this.state = 1177; localContext._filter = this.showTablesFilterExpr(); } break; @@ -3730,36 +3709,36 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1183; + this.state = 1180; this.match(HiveSqlParser.KW_SHOW); - this.state = 1184; + this.state = 1181; this.match(HiveSqlParser.KW_VIEWS); - this.state = 1188; + this.state = 1185; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: { - this.state = 1185; + this.state = 1182; this.from_in(); - this.state = 1186; + this.state = 1183; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1193; + this.state = 1190; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 1190; + this.state = 1187; this.match(HiveSqlParser.KW_LIKE); - this.state = 1191; + this.state = 1188; this.showStmtIdentifier(); } break; case 2: { - this.state = 1192; + this.state = 1189; this.showStmtIdentifier(); } break; @@ -3769,38 +3748,38 @@ export class HiveSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1195; + this.state = 1192; this.match(HiveSqlParser.KW_SHOW); - this.state = 1196; + this.state = 1193; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1197; + this.state = 1194; this.match(HiveSqlParser.KW_VIEWS); - this.state = 1201; + this.state = 1198; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 73, this.context) ) { case 1: { - this.state = 1198; + this.state = 1195; this.from_in(); - this.state = 1199; + this.state = 1196; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1206; + this.state = 1203; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: { - this.state = 1203; + this.state = 1200; this.match(HiveSqlParser.KW_LIKE); - this.state = 1204; + this.state = 1201; this.showStmtIdentifier(); } break; case 2: { - this.state = 1205; + this.state = 1202; this.showStmtIdentifier(); } break; @@ -3810,50 +3789,50 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1208; + this.state = 1205; this.match(HiveSqlParser.KW_SHOW); - this.state = 1210; + this.state = 1207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 315) { { - this.state = 1209; + this.state = 1206; this.match(HiveSqlParser.KW_SORTED); } } - this.state = 1212; + this.state = 1209; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 1213; + this.state = 1210; this.from_in(); - this.state = 1214; + this.state = 1211; this.tableOrView(); - this.state = 1218; + this.state = 1215; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: { - this.state = 1215; + this.state = 1212; this.from_in(); - this.state = 1216; + this.state = 1213; localContext._db_name = this.dbSchemaName(); } break; } - this.state = 1223; + this.state = 1220; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 1220; + this.state = 1217; this.match(HiveSqlParser.KW_LIKE); - this.state = 1221; + this.state = 1218; this.showStmtIdentifier(); } break; case 2: { - this.state = 1222; + this.state = 1219; this.showStmtIdentifier(); } break; @@ -3863,18 +3842,18 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1225; + this.state = 1222; this.match(HiveSqlParser.KW_SHOW); - this.state = 1226; + this.state = 1223; this.match(HiveSqlParser.KW_FUNCTIONS); - this.state = 1229; + this.state = 1226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 184) { { - this.state = 1227; + this.state = 1224; this.match(HiveSqlParser.KW_LIKE); - this.state = 1228; + this.state = 1225; this.functionNameForDDL(); } } @@ -3884,48 +3863,48 @@ export class HiveSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1231; + this.state = 1228; this.match(HiveSqlParser.KW_SHOW); - this.state = 1232; + this.state = 1229; this.match(HiveSqlParser.KW_PARTITIONS); - this.state = 1233; + this.state = 1230; localContext._tabOrViewName = this.tableOrView(); - this.state = 1235; + this.state = 1232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1234; + this.state = 1231; this.partitionSpec(); } } - this.state = 1238; + this.state = 1235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 1237; + this.state = 1234; this.whereClause(); } } - this.state = 1241; + this.state = 1238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 1240; + this.state = 1237; this.orderByClause(); } } - this.state = 1244; + this.state = 1241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1243; + this.state = 1240; this.limitClause(); } } @@ -3935,27 +3914,27 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1246; + this.state = 1243; this.match(HiveSqlParser.KW_SHOW); - this.state = 1247; + this.state = 1244; this.match(HiveSqlParser.KW_CREATE); - this.state = 1253; + this.state = 1250; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 1248; + this.state = 1245; this.db_schema(); - this.state = 1249; + this.state = 1246; localContext._db_name = this.dbSchemaName(); } break; case HiveSqlParser.KW_TABLE: { - this.state = 1251; + this.state = 1248; this.match(HiveSqlParser.KW_TABLE); - this.state = 1252; + this.state = 1249; localContext._tabName = this.tableName(); } break; @@ -3967,34 +3946,34 @@ export class HiveSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1255; + this.state = 1252; this.match(HiveSqlParser.KW_SHOW); - this.state = 1256; + this.state = 1253; this.match(HiveSqlParser.KW_TABLE); - this.state = 1257; + this.state = 1254; this.match(HiveSqlParser.KW_EXTENDED); - this.state = 1261; + this.state = 1258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139 || _la === 154) { { - this.state = 1258; + this.state = 1255; this.from_in(); - this.state = 1259; + this.state = 1256; localContext._db_name = this.dbSchemaName(); } } - this.state = 1263; + this.state = 1260; this.match(HiveSqlParser.KW_LIKE); - this.state = 1264; + this.state = 1261; this.showStmtIdentifier(); - this.state = 1266; + this.state = 1263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1265; + this.state = 1262; this.partitionSpec(); } } @@ -4004,22 +3983,22 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1268; + this.state = 1265; this.match(HiveSqlParser.KW_SHOW); - this.state = 1269; + this.state = 1266; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 1270; + this.state = 1267; this.tableName(); - this.state = 1274; + this.state = 1271; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 87, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 1271; + this.state = 1268; this.match(HiveSqlParser.LPAREN); - this.state = 1272; + this.state = 1269; localContext._prptyName = this.match(HiveSqlParser.StringLiteral); - this.state = 1273; + this.state = 1270; this.match(HiveSqlParser.RPAREN); } break; @@ -4029,25 +4008,25 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1276; + this.state = 1273; this.match(HiveSqlParser.KW_SHOW); - this.state = 1277; + this.state = 1274; this.match(HiveSqlParser.KW_LOCKS); - this.state = 1289; + this.state = 1286; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 90, this.context) ) { case 1: { - this.state = 1278; + this.state = 1275; this.db_schema(); - this.state = 1279; + this.state = 1276; localContext._dbName = this.dbSchemaName(); - this.state = 1281; + this.state = 1278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1280; + this.state = 1277; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4056,22 +4035,22 @@ export class HiveSqlParser extends SQLParserBase { break; case 2: { - this.state = 1284; + this.state = 1281; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { case 1: { - this.state = 1283; + this.state = 1280; localContext._parttype = this.partTypeExpr(); } break; } - this.state = 1287; + this.state = 1284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 122) { { - this.state = 1286; + this.state = 1283; localContext._isExtended = this.match(HiveSqlParser.KW_EXTENDED); } } @@ -4084,20 +4063,20 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1291; + this.state = 1288; this.match(HiveSqlParser.KW_SHOW); - this.state = 1292; + this.state = 1289; this.match(HiveSqlParser.KW_COMPACTIONS); - this.state = 1319; + this.state = 1316; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_COMPACT_ID: { - this.state = 1293; + this.state = 1290; this.match(HiveSqlParser.KW_COMPACT_ID); - this.state = 1294; + this.state = 1291; this.match(HiveSqlParser.EQUAL); - this.state = 1295; + this.state = 1292; localContext._compactId = this.match(HiveSqlParser.Number); } break; @@ -4370,27 +4349,27 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: case HiveSqlParser.Identifier: { - this.state = 1302; + this.state = 1299; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { { - this.state = 1296; + this.state = 1293; this.db_schema(); - this.state = 1297; + this.state = 1294; localContext._dbName = this.dbSchemaName(); } } break; case 2: { - this.state = 1300; + this.state = 1297; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { case 1: { - this.state = 1299; + this.state = 1296; localContext._parttype = this.partTypeExpr(); } break; @@ -4398,52 +4377,52 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 1305; + this.state = 1302; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 1304; + this.state = 1301; this.compactionPool(); } } - this.state = 1308; + this.state = 1305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 1307; + this.state = 1304; this.compactionType(); } } - this.state = 1311; + this.state = 1308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 320) { { - this.state = 1310; + this.state = 1307; this.compactionStatus(); } } - this.state = 1314; + this.state = 1311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 1313; + this.state = 1310; this.orderByClause(); } } - this.state = 1317; + this.state = 1314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 1316; + this.state = 1313; this.limitClause(); } } @@ -4458,44 +4437,44 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1321; + this.state = 1318; this.match(HiveSqlParser.KW_SHOW); - this.state = 1322; + this.state = 1319; this.match(HiveSqlParser.KW_TRANSACTIONS); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1323; + this.state = 1320; this.match(HiveSqlParser.KW_SHOW); - this.state = 1324; + this.state = 1321; this.match(HiveSqlParser.KW_CONF); - this.state = 1325; + this.state = 1322; this.match(HiveSqlParser.StringLiteral); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1326; + this.state = 1323; this.match(HiveSqlParser.KW_SHOW); - this.state = 1327; + this.state = 1324; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 1331; + this.state = 1328; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PLAN: { - this.state = 1328; + this.state = 1325; this.match(HiveSqlParser.KW_PLAN); - this.state = 1329; + this.state = 1326; localContext._rp_name = this.id_(); } break; case HiveSqlParser.KW_PLANS: { - this.state = 1330; + this.state = 1327; this.match(HiveSqlParser.KW_PLANS); } break; @@ -4507,28 +4486,28 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1333; + this.state = 1330; this.match(HiveSqlParser.KW_SHOW); - this.state = 1334; + this.state = 1331; this.match(HiveSqlParser.KW_DATACONNECTORS); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1335; + this.state = 1332; this.match(HiveSqlParser.KW_SHOW); - this.state = 1337; + this.state = 1334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 1336; + this.state = 1333; this.match(HiveSqlParser.KW_FORMATTED); } } - this.state = 1339; + this.state = 1336; _la = this.tokenStream.LA(1); if(!(_la === 155 || _la === 156)) { this.errorHandler.recoverInline(this); @@ -4537,18 +4516,18 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1340; + this.state = 1337; this.match(HiveSqlParser.KW_ON); - this.state = 1341; + this.state = 1338; this.tableName(); - this.state = 1345; + this.state = 1342; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1342; + this.state = 1339; this.from_in(); - this.state = 1343; + this.state = 1340; this.dbSchemaName(); } break; @@ -4575,28 +4554,28 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ShowTablesFilterExprContext(this.context, this.state); this.enterRule(localContext, 74, HiveSqlParser.RULE_showTablesFilterExpr); try { - this.state = 1357; + this.state = 1354; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHERE: this.enterOuterAlt(localContext, 1); { - this.state = 1349; + this.state = 1346; this.match(HiveSqlParser.KW_WHERE); - this.state = 1350; + this.state = 1347; this.id_(); - this.state = 1351; + this.state = 1348; this.match(HiveSqlParser.EQUAL); - this.state = 1352; + this.state = 1349; this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 1354; + this.state = 1351; this.match(HiveSqlParser.KW_LIKE); - this.state = 1355; + this.state = 1352; this.showStmtIdentifier(); } break; @@ -4843,7 +4822,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 3); { - this.state = 1356; + this.state = 1353; this.showStmtIdentifier(); } break; @@ -4871,13 +4850,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1359; + this.state = 1356; this.match(HiveSqlParser.KW_LOCK); - this.state = 1360; + this.state = 1357; this.match(HiveSqlParser.KW_TABLE); - this.state = 1361; + this.state = 1358; this.tableOrPartition(); - this.state = 1362; + this.state = 1359; this.lockMode(); } } @@ -4901,13 +4880,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1364; + this.state = 1361; this.match(HiveSqlParser.KW_LOCK); - this.state = 1365; + this.state = 1362; this.db_schema(); - this.state = 1366; + this.state = 1363; localContext._dbName = this.dbSchemaName(); - this.state = 1367; + this.state = 1364; this.lockMode(); } } @@ -4932,7 +4911,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1369; + this.state = 1366; _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -4963,11 +4942,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1371; + this.state = 1368; this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1372; + this.state = 1369; this.match(HiveSqlParser.KW_TABLE); - this.state = 1373; + this.state = 1370; this.tableOrPartition(); } } @@ -4991,11 +4970,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1375; + this.state = 1372; this.match(HiveSqlParser.KW_UNLOCK); - this.state = 1376; + this.state = 1373; this.db_schema(); - this.state = 1377; + this.state = 1374; localContext._dbName = this.dbSchemaName(); } } @@ -5019,11 +4998,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1379; + this.state = 1376; this.match(HiveSqlParser.KW_CREATE); - this.state = 1380; + this.state = 1377; this.match(HiveSqlParser.KW_ROLE); - this.state = 1381; + this.state = 1378; localContext._roleName = this.id_(); } } @@ -5047,11 +5026,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1383; + this.state = 1380; this.match(HiveSqlParser.KW_DROP); - this.state = 1384; + this.state = 1381; this.match(HiveSqlParser.KW_ROLE); - this.state = 1385; + this.state = 1382; localContext._roleName = this.id_(); } } @@ -5076,30 +5055,30 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1387; + this.state = 1384; this.match(HiveSqlParser.KW_GRANT); - this.state = 1388; + this.state = 1385; localContext._privList = this.privilegeList(); - this.state = 1390; + this.state = 1387; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1389; + this.state = 1386; this.privilegeObject(); } } - this.state = 1392; + this.state = 1389; this.match(HiveSqlParser.KW_TO); - this.state = 1393; + this.state = 1390; this.principalSpecification(); - this.state = 1395; + this.state = 1392; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { case 1: { - this.state = 1394; + this.state = 1391; this.withGrantOption(); } break; @@ -5127,33 +5106,33 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1397; + this.state = 1394; this.match(HiveSqlParser.KW_REVOKE); - this.state = 1399; + this.state = 1396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 143) { { - this.state = 1398; + this.state = 1395; this.grantOptionFor(); } } - this.state = 1401; + this.state = 1398; this.privilegeList(); - this.state = 1403; + this.state = 1400; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1402; + this.state = 1399; this.privilegeObject(); } } - this.state = 1405; + this.state = 1402; this.match(HiveSqlParser.KW_FROM); - this.state = 1406; + this.state = 1403; this.principalSpecification(); } } @@ -5178,46 +5157,46 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1408; + this.state = 1405; this.match(HiveSqlParser.KW_GRANT); - this.state = 1410; + this.state = 1407; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1409; + this.state = 1406; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1412; + this.state = 1409; this.id_(); - this.state = 1417; + this.state = 1414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1413; + this.state = 1410; this.match(HiveSqlParser.COMMA); - this.state = 1414; + this.state = 1411; this.id_(); } } - this.state = 1419; + this.state = 1416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1420; + this.state = 1417; this.match(HiveSqlParser.KW_TO); - this.state = 1421; + this.state = 1418; this.principalSpecification(); - this.state = 1423; + this.state = 1420; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 110, this.context) ) { case 1: { - this.state = 1422; + this.state = 1419; this.withAdminOption(); } break; @@ -5245,49 +5224,49 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1425; + this.state = 1422; this.match(HiveSqlParser.KW_REVOKE); - this.state = 1427; + this.state = 1424; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { case 1: { - this.state = 1426; + this.state = 1423; this.adminOptionFor(); } break; } - this.state = 1430; + this.state = 1427; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 112, this.context) ) { case 1: { - this.state = 1429; + this.state = 1426; this.match(HiveSqlParser.KW_ROLE); } break; } - this.state = 1432; + this.state = 1429; this.id_(); - this.state = 1437; + this.state = 1434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1433; + this.state = 1430; this.match(HiveSqlParser.COMMA); - this.state = 1434; + this.state = 1431; this.id_(); } } - this.state = 1439; + this.state = 1436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1440; + this.state = 1437; this.match(HiveSqlParser.KW_FROM); - this.state = 1441; + this.state = 1438; this.principalSpecification(); } } @@ -5311,13 +5290,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1443; + this.state = 1440; this.match(HiveSqlParser.KW_SHOW); - this.state = 1444; + this.state = 1441; this.match(HiveSqlParser.KW_ROLE); - this.state = 1445; + this.state = 1442; this.match(HiveSqlParser.KW_GRANT); - this.state = 1446; + this.state = 1443; this.principalName(); } } @@ -5341,9 +5320,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1448; + this.state = 1445; this.match(HiveSqlParser.KW_SHOW); - this.state = 1449; + this.state = 1446; this.match(HiveSqlParser.KW_ROLES); } } @@ -5367,11 +5346,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1451; + this.state = 1448; this.match(HiveSqlParser.KW_SHOW); - this.state = 1452; + this.state = 1449; this.match(HiveSqlParser.KW_CURRENT); - this.state = 1453; + this.state = 1450; this.match(HiveSqlParser.KW_ROLES); } } @@ -5395,22 +5374,22 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1455; + this.state = 1452; this.match(HiveSqlParser.KW_SET); - this.state = 1456; + this.state = 1453; this.match(HiveSqlParser.KW_ROLE); - this.state = 1460; + this.state = 1457; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: { - this.state = 1457; + this.state = 1454; localContext._all = this.match(HiveSqlParser.KW_ALL); } break; case HiveSqlParser.KW_NONE: { - this.state = 1458; + this.state = 1455; localContext._none = this.match(HiveSqlParser.KW_NONE); } break; @@ -5655,7 +5634,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ZONE: case HiveSqlParser.Identifier: { - this.state = 1459; + this.state = 1456; this.id_(); } break; @@ -5685,28 +5664,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1462; + this.state = 1459; this.match(HiveSqlParser.KW_SHOW); - this.state = 1463; + this.state = 1460; this.match(HiveSqlParser.KW_GRANT); - this.state = 1465; + this.state = 1462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144 || _la === 287 || _la === 369) { { - this.state = 1464; + this.state = 1461; this.principalName(); } } - this.state = 1469; + this.state = 1466; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 1467; + this.state = 1464; this.match(HiveSqlParser.KW_ON); - this.state = 1468; + this.state = 1465; this.privilegeIncludeColObject(); } } @@ -5733,11 +5712,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1471; + this.state = 1468; this.match(HiveSqlParser.KW_SHOW); - this.state = 1472; + this.state = 1469; this.match(HiveSqlParser.KW_PRINCIPALS); - this.state = 1473; + this.state = 1470; localContext._roleName = this.id_(); } } @@ -5759,13 +5738,13 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrivilegeIncludeColObjectContext(this.context, this.state); this.enterRule(localContext, 110, HiveSqlParser.RULE_privilegeIncludeColObject); try { - this.state = 1477; + this.state = 1474; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1475; + this.state = 1472; this.match(HiveSqlParser.KW_ALL); } break; @@ -6013,7 +5992,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 2); { - this.state = 1476; + this.state = 1473; this.privObjectCols(); } break; @@ -6041,9 +6020,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1479; + this.state = 1476; this.match(HiveSqlParser.KW_ON); - this.state = 1480; + this.state = 1477; this.privObject(); } } @@ -6066,50 +6045,50 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 114, HiveSqlParser.RULE_privObject); let _la: number; try { - this.state = 1493; + this.state = 1490; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1482; + this.state = 1479; this.db_schema(); - this.state = 1483; + this.state = 1480; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1486; + this.state = 1483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1485; + this.state = 1482; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1488; + this.state = 1485; this.tableOrPartition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1489; + this.state = 1486; this.match(HiveSqlParser.KW_URI); - this.state = 1490; + this.state = 1487; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1491; + this.state = 1488; this.match(HiveSqlParser.KW_SERVER); - this.state = 1492; + this.state = 1489; this.id_(); } break; @@ -6134,53 +6113,53 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 116, HiveSqlParser.RULE_privObjectCols); let _la: number; try { - this.state = 1515; + this.state = 1512; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 123, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1495; + this.state = 1492; this.db_schema(); - this.state = 1496; + this.state = 1493; this.dbSchemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1499; + this.state = 1496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 1498; + this.state = 1495; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 1501; + this.state = 1498; this.tableName(); - this.state = 1506; + this.state = 1503; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 122, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: { - this.state = 1502; + this.state = 1499; this.match(HiveSqlParser.LPAREN); - this.state = 1503; + this.state = 1500; localContext._cols = this.columnNameList(); - this.state = 1504; + this.state = 1501; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 1509; + this.state = 1506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 1508; + this.state = 1505; this.partitionSpec(); } } @@ -6190,18 +6169,18 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1511; + this.state = 1508; this.match(HiveSqlParser.KW_URI); - this.state = 1512; + this.state = 1509; localContext._path = this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1513; + this.state = 1510; this.match(HiveSqlParser.KW_SERVER); - this.state = 1514; + this.state = 1511; this.id_(); } break; @@ -6228,21 +6207,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1517; + this.state = 1514; this.privilegeDef(); - this.state = 1522; + this.state = 1519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1518; + this.state = 1515; this.match(HiveSqlParser.COMMA); - this.state = 1519; + this.state = 1516; this.privilegeDef(); } } - this.state = 1524; + this.state = 1521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6269,18 +6248,18 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1525; + this.state = 1522; this.privilegeType(); - this.state = 1530; + this.state = 1527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1526; + this.state = 1523; this.match(HiveSqlParser.LPAREN); - this.state = 1527; + this.state = 1524; localContext._cols = this.columnNameList(); - this.state = 1528; + this.state = 1525; this.match(HiveSqlParser.RPAREN); } } @@ -6308,7 +6287,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1532; + this.state = 1529; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 9 || _la === 58 || _la === 86 || _la === 101 || _la === 155 || _la === 161 || _la === 190 || _la === 299 || _la === 309 || _la === 365)) { this.errorHandler.recoverInline(this); @@ -6340,21 +6319,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1534; + this.state = 1531; this.principalName(); - this.state = 1539; + this.state = 1536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1535; + this.state = 1532; this.match(HiveSqlParser.COMMA); - this.state = 1536; + this.state = 1533; this.principalName(); } } - this.state = 1541; + this.state = 1538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6378,33 +6357,33 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrincipalNameContext(this.context, this.state); this.enterRule(localContext, 126, HiveSqlParser.RULE_principalName); try { - this.state = 1548; + this.state = 1545; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_USER: this.enterOuterAlt(localContext, 1); { - this.state = 1542; + this.state = 1539; this.match(HiveSqlParser.KW_USER); - this.state = 1543; + this.state = 1540; this.principalIdentifier(); } break; case HiveSqlParser.KW_GROUP: this.enterOuterAlt(localContext, 2); { - this.state = 1544; + this.state = 1541; this.match(HiveSqlParser.KW_GROUP); - this.state = 1545; + this.state = 1542; this.principalIdentifier(); } break; case HiveSqlParser.KW_ROLE: this.enterOuterAlt(localContext, 3); { - this.state = 1546; + this.state = 1543; this.match(HiveSqlParser.KW_ROLE); - this.state = 1547; + this.state = 1544; this.id_(); } break; @@ -6430,31 +6409,31 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrincipalAlterNameContext(this.context, this.state); this.enterRule(localContext, 128, HiveSqlParser.RULE_principalAlterName); try { - this.state = 1555; + this.state = 1552; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1550; + this.state = 1547; this.match(HiveSqlParser.KW_USER); - this.state = 1551; + this.state = 1548; this.principalIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1552; + this.state = 1549; this.match(HiveSqlParser.KW_ROLE); - this.state = 1553; + this.state = 1550; this.id_(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1554; + this.state = 1551; this.id_(); } break; @@ -6480,11 +6459,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1557; + this.state = 1554; this.match(HiveSqlParser.KW_WITH); - this.state = 1558; + this.state = 1555; this.match(HiveSqlParser.KW_GRANT); - this.state = 1559; + this.state = 1556; this.match(HiveSqlParser.KW_OPTION); } } @@ -6508,11 +6487,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1561; + this.state = 1558; this.match(HiveSqlParser.KW_GRANT); - this.state = 1562; + this.state = 1559; this.match(HiveSqlParser.KW_OPTION); - this.state = 1563; + this.state = 1560; this.match(HiveSqlParser.KW_FOR); } } @@ -6536,11 +6515,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1565; + this.state = 1562; this.match(HiveSqlParser.KW_ADMIN); - this.state = 1566; + this.state = 1563; this.match(HiveSqlParser.KW_OPTION); - this.state = 1567; + this.state = 1564; this.match(HiveSqlParser.KW_FOR); } } @@ -6564,11 +6543,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1569; + this.state = 1566; this.match(HiveSqlParser.KW_WITH); - this.state = 1570; + this.state = 1567; this.match(HiveSqlParser.KW_ADMIN); - this.state = 1571; + this.state = 1568; this.match(HiveSqlParser.KW_OPTION); } } @@ -6593,29 +6572,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1573; + this.state = 1570; this.match(HiveSqlParser.KW_MSCK); - this.state = 1575; + this.state = 1572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 276) { { - this.state = 1574; + this.state = 1571; localContext._repair = this.match(HiveSqlParser.KW_REPAIR); } } { - this.state = 1577; + this.state = 1574; this.match(HiveSqlParser.KW_TABLE); - this.state = 1578; + this.state = 1575; this.tableName(); - this.state = 1584; + this.state = 1581; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: { - this.state = 1579; + this.state = 1576; localContext._opt = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 101 || _la === 326)) { @@ -6625,14 +6604,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1580; + this.state = 1577; localContext._parts = this.match(HiveSqlParser.KW_PARTITIONS); - this.state = 1582; + this.state = 1579; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { case 1: { - this.state = 1581; + this.state = 1578; this.partitionSelectorSpec(); } break; @@ -6664,21 +6643,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1586; + this.state = 1583; this.resource(); - this.state = 1591; + this.state = 1588; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1587; + this.state = 1584; this.match(HiveSqlParser.COMMA); - this.state = 1588; + this.state = 1585; this.resource(); } } - this.state = 1593; + this.state = 1590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6704,9 +6683,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1594; + this.state = 1591; localContext._resType = this.resourceType(); - this.state = 1595; + this.state = 1592; localContext._resPath = this.match(HiveSqlParser.StringLiteral); } } @@ -6731,7 +6710,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1597; + this.state = 1594; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 128 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -6763,34 +6742,34 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1599; + this.state = 1596; this.match(HiveSqlParser.KW_CREATE); - this.state = 1601; + this.state = 1598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1600; + this.state = 1597; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 1603; + this.state = 1600; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1604; + this.state = 1601; this.functionNameCreate(); - this.state = 1605; + this.state = 1602; this.match(HiveSqlParser.KW_AS); - this.state = 1606; + this.state = 1603; this.match(HiveSqlParser.StringLiteral); - this.state = 1609; + this.state = 1606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 370) { { - this.state = 1607; + this.state = 1604; this.match(HiveSqlParser.KW_USING); - this.state = 1608; + this.state = 1605; localContext._rList = this.resourceList(); } } @@ -6818,31 +6797,31 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1611; + this.state = 1608; this.match(HiveSqlParser.KW_DROP); - this.state = 1613; + this.state = 1610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1612; + this.state = 1609; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 1615; + this.state = 1612; this.match(HiveSqlParser.KW_FUNCTION); - this.state = 1617; + this.state = 1614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1616; + this.state = 1613; this.ifExists(); } } - this.state = 1619; + this.state = 1616; this.functionNameForDDL(); } } @@ -6867,9 +6846,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1621; + this.state = 1618; this.match(HiveSqlParser.KW_RELOAD); - this.state = 1622; + this.state = 1619; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 142)) { this.errorHandler.recoverInline(this); @@ -6901,29 +6880,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1624; + this.state = 1621; this.match(HiveSqlParser.KW_CREATE); - this.state = 1625; + this.state = 1622; this.match(HiveSqlParser.KW_TEMPORARY); - this.state = 1626; + this.state = 1623; this.match(HiveSqlParser.KW_MACRO); - this.state = 1627; + this.state = 1624; this.match(HiveSqlParser.Identifier); - this.state = 1628; + this.state = 1625; this.match(HiveSqlParser.LPAREN); - this.state = 1630; + this.state = 1627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 1629; + this.state = 1626; this.columnNameTypeList(); } } - this.state = 1632; + this.state = 1629; this.match(HiveSqlParser.RPAREN); - this.state = 1633; + this.state = 1630; this.expression(); } } @@ -6948,23 +6927,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1635; + this.state = 1632; this.match(HiveSqlParser.KW_DROP); - this.state = 1636; + this.state = 1633; this.match(HiveSqlParser.KW_TEMPORARY); - this.state = 1637; + this.state = 1634; this.match(HiveSqlParser.KW_MACRO); - this.state = 1639; + this.state = 1636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1638; + this.state = 1635; this.ifExists(); } } - this.state = 1641; + this.state = 1638; this.match(HiveSqlParser.Identifier); } } @@ -6989,124 +6968,124 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1643; + this.state = 1640; this.match(HiveSqlParser.KW_CREATE); - this.state = 1644; + this.state = 1641; this.match(HiveSqlParser.KW_INDEX); - this.state = 1645; + this.state = 1642; this.id_(); - this.state = 1646; + this.state = 1643; this.match(HiveSqlParser.KW_ON); - this.state = 1647; + this.state = 1644; this.match(HiveSqlParser.KW_TABLE); - this.state = 1648; + this.state = 1645; this.tableName(); - this.state = 1649; + this.state = 1646; this.columnParenthesesList(); - this.state = 1650; + this.state = 1647; this.match(HiveSqlParser.KW_AS); - this.state = 1651; + this.state = 1648; localContext._indextype = this.match(HiveSqlParser.StringLiteral); - this.state = 1655; + this.state = 1652; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { case 1: { - this.state = 1652; + this.state = 1649; this.match(HiveSqlParser.KW_WITH); - this.state = 1653; + this.state = 1650; this.match(HiveSqlParser.KW_DEFERRED); - this.state = 1654; + this.state = 1651; this.match(HiveSqlParser.KW_REBUILD); } break; } - this.state = 1659; + this.state = 1656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 150) { { - this.state = 1657; + this.state = 1654; this.match(HiveSqlParser.KW_IDXPROPERTIES); - this.state = 1658; + this.state = 1655; this.tableProperties(); } } - this.state = 1664; + this.state = 1661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154) { { - this.state = 1661; + this.state = 1658; this.match(HiveSqlParser.KW_IN); - this.state = 1662; + this.state = 1659; this.match(HiveSqlParser.KW_TABLE); - this.state = 1663; + this.state = 1660; this.tableName(); } } - this.state = 1669; + this.state = 1666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1666; + this.state = 1663; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1667; + this.state = 1664; this.match(HiveSqlParser.KW_BY); - this.state = 1668; + this.state = 1665; this.columnParenthesesList(); } } - this.state = 1675; + this.state = 1672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291 || _la === 321) { { - this.state = 1672; + this.state = 1669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 1671; + this.state = 1668; this.tableRowFormat(); } } - this.state = 1674; + this.state = 1671; this.tableFileFormat(); } } - this.state = 1678; + this.state = 1675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1677; + this.state = 1674; this.locationPath(); } } - this.state = 1681; + this.state = 1678; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1680; + this.state = 1677; this.tablePropertiesPrefixed(); } } - this.state = 1684; + this.state = 1681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1683; + this.state = 1680; this.tableComment(); } } @@ -7134,25 +7113,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1686; + this.state = 1683; this.match(HiveSqlParser.KW_DROP); - this.state = 1687; + this.state = 1684; this.match(HiveSqlParser.KW_INDEX); - this.state = 1689; + this.state = 1686; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1688; + this.state = 1685; this.ifExists(); } } - this.state = 1691; + this.state = 1688; this.id_(); - this.state = 1692; + this.state = 1689; this.match(HiveSqlParser.KW_ON); - this.state = 1693; + this.state = 1690; this.tableName(); } } @@ -7177,81 +7156,81 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1695; + this.state = 1692; this.match(HiveSqlParser.KW_CREATE); - this.state = 1698; + this.state = 1695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228) { { - this.state = 1696; + this.state = 1693; this.match(HiveSqlParser.KW_OR); - this.state = 1697; + this.state = 1694; this.match(HiveSqlParser.KW_REPLACE); } } - this.state = 1700; + this.state = 1697; this.match(HiveSqlParser.KW_VIEW); - this.state = 1702; + this.state = 1699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1701; + this.state = 1698; this.ifNotExists(); } } - this.state = 1704; + this.state = 1701; localContext._name = this.viewNameCreate(); - this.state = 1709; + this.state = 1706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1705; + this.state = 1702; this.match(HiveSqlParser.LPAREN); - this.state = 1706; + this.state = 1703; this.columnNameCommentList(); - this.state = 1707; + this.state = 1704; this.match(HiveSqlParser.RPAREN); } } - this.state = 1712; + this.state = 1709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1711; + this.state = 1708; this.tableComment(); } } - this.state = 1715; + this.state = 1712; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1714; + this.state = 1711; this.viewPartition(); } } - this.state = 1718; + this.state = 1715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1717; + this.state = 1714; this.tablePropertiesPrefixed(); } } - this.state = 1720; + this.state = 1717; this.match(HiveSqlParser.KW_AS); - this.state = 1721; + this.state = 1718; this.selectStatementWithCTE(); } } @@ -7275,35 +7254,35 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1723; + this.state = 1720; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1724; + this.state = 1721; this.match(HiveSqlParser.KW_ON); - this.state = 1730; + this.state = 1727; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 1725; + this.state = 1722; this.match(HiveSqlParser.LPAREN); - this.state = 1726; + this.state = 1723; this.columnNameList(); } break; case HiveSqlParser.KW_SPEC: { - this.state = 1727; + this.state = 1724; this.match(HiveSqlParser.KW_SPEC); - this.state = 1728; + this.state = 1725; this.match(HiveSqlParser.LPAREN); - this.state = 1729; + this.state = 1726; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1732; + this.state = 1729; this.match(HiveSqlParser.RPAREN); } } @@ -7325,20 +7304,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ViewOrganizationContext(this.context, this.state); this.enterRule(localContext, 164, HiveSqlParser.RULE_viewOrganization); try { - this.state = 1736; + this.state = 1733; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CLUSTERED: this.enterOuterAlt(localContext, 1); { - this.state = 1734; + this.state = 1731; this.viewClusterSpec(); } break; case HiveSqlParser.KW_DISTRIBUTED: this.enterOuterAlt(localContext, 2); { - this.state = 1735; + this.state = 1732; this.viewComplexSpec(); } break; @@ -7366,15 +7345,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1738; + this.state = 1735; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 1739; + this.state = 1736; this.match(HiveSqlParser.KW_ON); - this.state = 1740; + this.state = 1737; this.match(HiveSqlParser.LPAREN); - this.state = 1741; + this.state = 1738; this.columnNameList(); - this.state = 1742; + this.state = 1739; this.match(HiveSqlParser.RPAREN); } } @@ -7398,9 +7377,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1744; + this.state = 1741; this.viewDistSpec(); - this.state = 1745; + this.state = 1742; this.viewSortSpec(); } } @@ -7424,15 +7403,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1747; + this.state = 1744; this.match(HiveSqlParser.KW_DISTRIBUTED); - this.state = 1748; + this.state = 1745; this.match(HiveSqlParser.KW_ON); - this.state = 1749; + this.state = 1746; this.match(HiveSqlParser.LPAREN); - this.state = 1750; + this.state = 1747; localContext._colList = this.columnNameList(); - this.state = 1751; + this.state = 1748; this.match(HiveSqlParser.RPAREN); } } @@ -7456,15 +7435,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1753; + this.state = 1750; this.match(HiveSqlParser.KW_SORTED); - this.state = 1754; + this.state = 1751; this.match(HiveSqlParser.KW_ON); - this.state = 1755; + this.state = 1752; this.match(HiveSqlParser.LPAREN); - this.state = 1756; + this.state = 1753; localContext._colList = this.columnNameList(); - this.state = 1757; + this.state = 1754; this.match(HiveSqlParser.RPAREN); } } @@ -7489,21 +7468,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1759; + this.state = 1756; this.match(HiveSqlParser.KW_DROP); - this.state = 1760; + this.state = 1757; this.match(HiveSqlParser.KW_VIEW); - this.state = 1762; + this.state = 1759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1761; + this.state = 1758; this.ifExists(); } } - this.state = 1764; + this.state = 1761; this.viewName(); } } @@ -7528,107 +7507,107 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1766; + this.state = 1763; this.match(HiveSqlParser.KW_CREATE); - this.state = 1767; + this.state = 1764; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1768; + this.state = 1765; this.match(HiveSqlParser.KW_VIEW); - this.state = 1770; + this.state = 1767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1769; + this.state = 1766; this.ifNotExists(); } } - this.state = 1772; + this.state = 1769; localContext._name = this.viewNameCreate(); - this.state = 1774; + this.state = 1771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94 || _la === 95) { { - this.state = 1773; + this.state = 1770; this.rewriteDisabled(); } } - this.state = 1777; + this.state = 1774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 1776; + this.state = 1773; this.tableComment(); } } - this.state = 1780; + this.state = 1777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 1779; + this.state = 1776; this.viewPartition(); } } - this.state = 1783; + this.state = 1780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 98) { { - this.state = 1782; + this.state = 1779; this.viewOrganization(); } } - this.state = 1786; + this.state = 1783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 1785; + this.state = 1782; this.tableRowFormat(); } } - this.state = 1789; + this.state = 1786; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 1788; + this.state = 1785; this.tableFileFormat(); } } - this.state = 1792; + this.state = 1789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 1791; + this.state = 1788; this.locationPath(); } } - this.state = 1795; + this.state = 1792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 1794; + this.state = 1791; this.tablePropertiesPrefixed(); } } - this.state = 1797; + this.state = 1794; this.match(HiveSqlParser.KW_AS); - this.state = 1798; + this.state = 1795; this.selectStatementWithCTE(); } } @@ -7653,23 +7632,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1800; + this.state = 1797; this.match(HiveSqlParser.KW_DROP); - this.state = 1801; + this.state = 1798; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 1802; + this.state = 1799; this.match(HiveSqlParser.KW_VIEW); - this.state = 1804; + this.state = 1801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 1803; + this.state = 1800; this.ifExists(); } } - this.state = 1806; + this.state = 1803; this.viewName(); } } @@ -7694,37 +7673,37 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1808; + this.state = 1805; this.match(HiveSqlParser.KW_CREATE); - this.state = 1809; + this.state = 1806; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1810; + this.state = 1807; this.match(HiveSqlParser.KW_QUERY); - this.state = 1811; + this.state = 1808; localContext._name = this.id_(); - this.state = 1812; + this.state = 1809; this.scheduleSpec(); - this.state = 1814; + this.state = 1811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116) { { - this.state = 1813; + this.state = 1810; this.executedAsSpec(); } } - this.state = 1817; + this.state = 1814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 12291) !== 0)) { { - this.state = 1816; + this.state = 1813; this.enableSpecification(); } } - this.state = 1819; + this.state = 1816; this.definedAsSpec(); } } @@ -7748,13 +7727,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1821; + this.state = 1818; this.match(HiveSqlParser.KW_DROP); - this.state = 1822; + this.state = 1819; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1823; + this.state = 1820; this.match(HiveSqlParser.KW_QUERY); - this.state = 1824; + this.state = 1821; localContext._name = this.id_(); } } @@ -7778,15 +7757,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1826; + this.state = 1823; this.match(HiveSqlParser.KW_ALTER); - this.state = 1827; + this.state = 1824; this.match(HiveSqlParser.KW_SCHEDULED); - this.state = 1828; + this.state = 1825; this.match(HiveSqlParser.KW_QUERY); - this.state = 1829; + this.state = 1826; localContext._name = this.id_(); - this.state = 1830; + this.state = 1827; localContext._mod = this.alterScheduledQueryChange(); } } @@ -7808,21 +7787,21 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new AlterScheduledQueryChangeContext(this.context, this.state); this.enterRule(localContext, 186, HiveSqlParser.RULE_alterScheduledQueryChange); try { - this.state = 1837; + this.state = 1834; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 1); { - this.state = 1832; + this.state = 1829; this.scheduleSpec(); } break; case HiveSqlParser.KW_EXECUTED: this.enterOuterAlt(localContext, 2); { - this.state = 1833; + this.state = 1830; this.executedAsSpec(); } break; @@ -7832,7 +7811,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 3); { - this.state = 1834; + this.state = 1831; this.enableSpecification(); } break; @@ -7840,14 +7819,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DEFINED: this.enterOuterAlt(localContext, 4); { - this.state = 1835; + this.state = 1832; this.definedAsSpec(); } break; case HiveSqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 5); { - this.state = 1836; + this.state = 1833; this.match(HiveSqlParser.KW_EXECUTE); } break; @@ -7874,61 +7853,61 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 188, HiveSqlParser.RULE_scheduleSpec); let _la: number; try { - this.state = 1854; + this.state = 1851; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CRON: this.enterOuterAlt(localContext, 1); { - this.state = 1839; + this.state = 1836; this.match(HiveSqlParser.KW_CRON); - this.state = 1840; + this.state = 1837; localContext._cronString = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_EVERY: this.enterOuterAlt(localContext, 2); { - this.state = 1841; + this.state = 1838; this.match(HiveSqlParser.KW_EVERY); - this.state = 1843; + this.state = 1840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 431) { { - this.state = 1842; + this.state = 1839; localContext._value = this.match(HiveSqlParser.Number); } } - this.state = 1845; + this.state = 1842; localContext._qualifier = this.intervalQualifiers(); - this.state = 1852; + this.state = 1849; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20 || _la === 223) { { - this.state = 1849; + this.state = 1846; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_AT: { - this.state = 1846; + this.state = 1843; this.match(HiveSqlParser.KW_AT); } break; case HiveSqlParser.KW_OFFSET: { - this.state = 1847; + this.state = 1844; this.match(HiveSqlParser.KW_OFFSET); - this.state = 1848; + this.state = 1845; this.match(HiveSqlParser.KW_BY); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1851; + this.state = 1848; localContext._offsetTs = this.match(HiveSqlParser.StringLiteral); } } @@ -7959,11 +7938,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1856; + this.state = 1853; this.match(HiveSqlParser.KW_EXECUTED); - this.state = 1857; + this.state = 1854; this.match(HiveSqlParser.KW_AS); - this.state = 1858; + this.state = 1855; localContext._executedAs = this.match(HiveSqlParser.StringLiteral); } } @@ -7988,19 +7967,19 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1861; + this.state = 1858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 85) { { - this.state = 1860; + this.state = 1857; this.match(HiveSqlParser.KW_DEFINED); } } - this.state = 1863; + this.state = 1860; this.match(HiveSqlParser.KW_AS); - this.state = 1864; + this.state = 1861; this.statement(); } } @@ -8022,7 +8001,7 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ShowStmtIdentifierContext(this.context, this.state); this.enterRule(localContext, 194, HiveSqlParser.RULE_showStmtIdentifier); try { - this.state = 1868; + this.state = 1865; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -8267,14 +8246,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 1866; + this.state = 1863; this.id_(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 1867; + this.state = 1864; this.match(HiveSqlParser.StringLiteral); } break; @@ -8302,9 +8281,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1870; + this.state = 1867; this.match(HiveSqlParser.KW_COMMENT); - this.state = 1871; + this.state = 1868; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -8328,9 +8307,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1873; + this.state = 1870; this.match(HiveSqlParser.KW_LIFECYCLE); - this.state = 1874; + this.state = 1871; this.match(HiveSqlParser.Number); } } @@ -8354,29 +8333,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1876; + this.state = 1873; this.match(HiveSqlParser.KW_PARTITIONED); - this.state = 1877; + this.state = 1874; this.match(HiveSqlParser.KW_BY); - this.state = 1886; + this.state = 1883; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: { - this.state = 1878; + this.state = 1875; this.match(HiveSqlParser.LPAREN); - this.state = 1881; + this.state = 1878; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: { - this.state = 1879; + this.state = 1876; localContext._opt1 = this.createTablePartitionColumnTypeSpec(); } break; case 2: { - this.state = 1880; + this.state = 1877; localContext._opt2 = this.columnNameList(); } break; @@ -8385,18 +8364,18 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_SPEC: { - this.state = 1883; + this.state = 1880; this.match(HiveSqlParser.KW_SPEC); - this.state = 1884; + this.state = 1881; this.match(HiveSqlParser.LPAREN); - this.state = 1885; + this.state = 1882; localContext._spec = this.partitionTransformSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1888; + this.state = 1885; this.match(HiveSqlParser.RPAREN); } } @@ -8421,21 +8400,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1890; + this.state = 1887; this.columnNameTypeConstraint(); - this.state = 1895; + this.state = 1892; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1891; + this.state = 1888; this.match(HiveSqlParser.COMMA); - this.state = 1892; + this.state = 1889; this.columnNameTypeConstraint(); } } - this.state = 1897; + this.state = 1894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8462,21 +8441,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1898; + this.state = 1895; this.partitionTransformType(); - this.state = 1903; + this.state = 1900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 1899; + this.state = 1896; this.match(HiveSqlParser.COMMA); - this.state = 1900; + this.state = 1897; this.partitionTransformType(); } } - this.state = 1905; + this.state = 1902; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8501,65 +8480,65 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 206, HiveSqlParser.RULE_partitionTransformType); let _la: number; try { - this.state = 1924; + this.state = 1921; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1906; + this.state = 1903; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1911; + this.state = 1908; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_YEAR: case HiveSqlParser.KW_YEARS: { - this.state = 1907; + this.state = 1904; this.year(); } break; case HiveSqlParser.KW_MONTH: case HiveSqlParser.KW_MONTHS: { - this.state = 1908; + this.state = 1905; this.month(); } break; case HiveSqlParser.KW_DAY: case HiveSqlParser.KW_DAYS: { - this.state = 1909; + this.state = 1906; this.day(); } break; case HiveSqlParser.KW_HOUR: case HiveSqlParser.KW_HOURS: { - this.state = 1910; + this.state = 1907; this.hour(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1913; + this.state = 1910; this.match(HiveSqlParser.LPAREN); - this.state = 1914; + this.state = 1911; this.columnName(); - this.state = 1915; + this.state = 1912; this.match(HiveSqlParser.RPAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1917; + this.state = 1914; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 351)) { this.errorHandler.recoverInline(this); @@ -8568,15 +8547,15 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1918; + this.state = 1915; this.match(HiveSqlParser.LPAREN); - this.state = 1919; + this.state = 1916; localContext._value = this.match(HiveSqlParser.Number); - this.state = 1920; + this.state = 1917; this.match(HiveSqlParser.COMMA); - this.state = 1921; + this.state = 1918; this.columnName(); - this.state = 1922; + this.state = 1919; this.match(HiveSqlParser.RPAREN); } break; @@ -8603,39 +8582,39 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1926; + this.state = 1923; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 1927; + this.state = 1924; this.match(HiveSqlParser.KW_BY); - this.state = 1928; + this.state = 1925; this.match(HiveSqlParser.LPAREN); - this.state = 1929; + this.state = 1926; localContext._bucketCols = this.columnNameList(); - this.state = 1930; + this.state = 1927; this.match(HiveSqlParser.RPAREN); - this.state = 1937; + this.state = 1934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 315) { { - this.state = 1931; + this.state = 1928; this.match(HiveSqlParser.KW_SORTED); - this.state = 1932; + this.state = 1929; this.match(HiveSqlParser.KW_BY); - this.state = 1933; + this.state = 1930; this.match(HiveSqlParser.LPAREN); - this.state = 1934; + this.state = 1931; localContext._sortCols = this.columnNameOrderList(); - this.state = 1935; + this.state = 1932; this.match(HiveSqlParser.RPAREN); } } - this.state = 1939; + this.state = 1936; this.match(HiveSqlParser.KW_INTO); - this.state = 1940; + this.state = 1937; localContext._num = this.match(HiveSqlParser.Number); - this.state = 1941; + this.state = 1938; this.match(HiveSqlParser.KW_BUCKETS); } } @@ -8659,30 +8638,30 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1943; + this.state = 1940; this.match(HiveSqlParser.KW_SKEWED); - this.state = 1944; + this.state = 1941; this.match(HiveSqlParser.KW_BY); - this.state = 1945; + this.state = 1942; this.match(HiveSqlParser.LPAREN); - this.state = 1946; + this.state = 1943; localContext._skewedCols = this.columnNameList(); - this.state = 1947; + this.state = 1944; this.match(HiveSqlParser.RPAREN); - this.state = 1948; + this.state = 1945; this.match(HiveSqlParser.KW_ON); - this.state = 1949; + this.state = 1946; this.match(HiveSqlParser.LPAREN); - this.state = 1950; + this.state = 1947; localContext._skewedValues = this.skewedValueElement(); - this.state = 1951; + this.state = 1948; this.match(HiveSqlParser.RPAREN); - this.state = 1953; + this.state = 1950; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { case 1: { - this.state = 1952; + this.state = 1949; this.storedAsDirs(); } break; @@ -8707,20 +8686,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new RowFormatContext(this.context, this.state); this.enterRule(localContext, 212, HiveSqlParser.RULE_rowFormat); try { - this.state = 1957; + this.state = 1954; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1955; + this.state = 1952; this.rowFormatSerde(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1956; + this.state = 1953; this.rowFormatDelimited(); } break; @@ -8746,9 +8725,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1959; + this.state = 1956; this.match(HiveSqlParser.KW_RECORDREADER); - this.state = 1960; + this.state = 1957; this.match(HiveSqlParser.StringLiteral); } } @@ -8772,9 +8751,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1962; + this.state = 1959; this.match(HiveSqlParser.KW_RECORDWRITER); - this.state = 1963; + this.state = 1960; this.match(HiveSqlParser.StringLiteral); } } @@ -8798,24 +8777,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1965; + this.state = 1962; this.match(HiveSqlParser.KW_ROW); - this.state = 1966; + this.state = 1963; this.match(HiveSqlParser.KW_FORMAT); - this.state = 1967; + this.state = 1964; this.match(HiveSqlParser.KW_SERDE); - this.state = 1968; + this.state = 1965; localContext._name = this.match(HiveSqlParser.StringLiteral); - this.state = 1972; + this.state = 1969; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: { - this.state = 1969; + this.state = 1966; this.match(HiveSqlParser.KW_WITH); - this.state = 1970; + this.state = 1967; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 1971; + this.state = 1968; localContext._serderops = this.tableProperties(); } break; @@ -8843,58 +8822,58 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1974; + this.state = 1971; this.match(HiveSqlParser.KW_ROW); - this.state = 1975; + this.state = 1972; this.match(HiveSqlParser.KW_FORMAT); - this.state = 1976; + this.state = 1973; this.match(HiveSqlParser.KW_DELIMITED); - this.state = 1978; + this.state = 1975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 1977; + this.state = 1974; this.tableRowFormatFieldIdentifier(); } } - this.state = 1981; + this.state = 1978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 44) { { - this.state = 1980; + this.state = 1977; this.tableRowFormatCollItemsIdentifier(); } } - this.state = 1984; + this.state = 1981; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 189, this.context) ) { case 1: { - this.state = 1983; + this.state = 1980; this.tableRowFormatMapKeysIdentifier(); } break; } - this.state = 1987; + this.state = 1984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 186) { { - this.state = 1986; + this.state = 1983; this.tableRowFormatLinesIdentifier(); } } - this.state = 1990; + this.state = 1987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 219) { { - this.state = 1989; + this.state = 1986; this.tableRowNullFormat(); } } @@ -8919,20 +8898,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableRowFormatContext(this.context, this.state); this.enterRule(localContext, 222, HiveSqlParser.RULE_tableRowFormat); try { - this.state = 1994; + this.state = 1991; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 192, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1992; + this.state = 1989; this.rowFormatDelimited(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1993; + this.state = 1990; this.rowFormatSerde(); } break; @@ -8958,9 +8937,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1996; + this.state = 1993; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 1997; + this.state = 1994; this.tableProperties(); } } @@ -8984,11 +8963,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1999; + this.state = 1996; this.match(HiveSqlParser.LPAREN); - this.state = 2000; + this.state = 1997; this.tablePropertiesList(); - this.state = 2001; + this.state = 1998; this.match(HiveSqlParser.RPAREN); } } @@ -9011,34 +8990,34 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 228, HiveSqlParser.RULE_tablePropertiesList); let _la: number; try { - this.state = 2012; + this.state = 2009; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2003; + this.state = 2000; this.keyValuePropertyList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2004; + this.state = 2001; localContext._key = this.match(HiveSqlParser.StringLiteral); - this.state = 2009; + this.state = 2006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2005; + this.state = 2002; this.match(HiveSqlParser.COMMA); - this.state = 2006; + this.state = 2003; localContext._key = this.match(HiveSqlParser.StringLiteral); } } - this.state = 2011; + this.state = 2008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9066,11 +9045,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2014; + this.state = 2011; this.match(HiveSqlParser.LPAREN); - this.state = 2015; + this.state = 2012; this.keyValuePropertyList(); - this.state = 2016; + this.state = 2013; this.match(HiveSqlParser.RPAREN); } } @@ -9095,21 +9074,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2018; + this.state = 2015; this.keyValueProperty(); - this.state = 2023; + this.state = 2020; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2019; + this.state = 2016; this.match(HiveSqlParser.COMMA); - this.state = 2020; + this.state = 2017; this.keyValueProperty(); } } - this.state = 2025; + this.state = 2022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9135,11 +9114,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2026; + this.state = 2023; localContext._key = this.match(HiveSqlParser.StringLiteral); - this.state = 2027; + this.state = 2024; this.match(HiveSqlParser.EQUAL); - this.state = 2028; + this.state = 2025; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -9164,24 +9143,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2030; + this.state = 2027; this.match(HiveSqlParser.KW_FIELDS); - this.state = 2031; + this.state = 2028; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2032; + this.state = 2029; this.match(HiveSqlParser.KW_BY); - this.state = 2033; + this.state = 2030; localContext._fldIdnt = this.match(HiveSqlParser.StringLiteral); - this.state = 2037; + this.state = 2034; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 2034; + this.state = 2031; this.match(HiveSqlParser.KW_ESCAPED); - this.state = 2035; + this.state = 2032; this.match(HiveSqlParser.KW_BY); - this.state = 2036; + this.state = 2033; localContext._fldEscape = this.match(HiveSqlParser.StringLiteral); } } @@ -9208,15 +9187,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2039; + this.state = 2036; this.match(HiveSqlParser.KW_COLLECTION); - this.state = 2040; + this.state = 2037; this.match(HiveSqlParser.KW_ITEMS); - this.state = 2041; + this.state = 2038; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2042; + this.state = 2039; this.match(HiveSqlParser.KW_BY); - this.state = 2043; + this.state = 2040; localContext._collIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9240,15 +9219,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2045; + this.state = 2042; this.match(HiveSqlParser.KW_MAP); - this.state = 2046; + this.state = 2043; this.match(HiveSqlParser.KW_KEYS); - this.state = 2047; + this.state = 2044; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2048; + this.state = 2045; this.match(HiveSqlParser.KW_BY); - this.state = 2049; + this.state = 2046; localContext._mapKeysIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9272,13 +9251,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2051; + this.state = 2048; this.match(HiveSqlParser.KW_LINES); - this.state = 2052; + this.state = 2049; this.match(HiveSqlParser.KW_TERMINATED); - this.state = 2053; + this.state = 2050; this.match(HiveSqlParser.KW_BY); - this.state = 2054; + this.state = 2051; localContext._linesIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9302,13 +9281,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2056; + this.state = 2053; this.match(HiveSqlParser.KW_NULL); - this.state = 2057; + this.state = 2054; this.match(HiveSqlParser.KW_DEFINED); - this.state = 2058; + this.state = 2055; this.match(HiveSqlParser.KW_AS); - this.state = 2059; + this.state = 2056; localContext._nullIdnt = this.match(HiveSqlParser.StringLiteral); } } @@ -9331,36 +9310,36 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 246, HiveSqlParser.RULE_tableFileFormat); let _la: number; try { - this.state = 2102; + this.state = 2099; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2061; + this.state = 2058; this.match(HiveSqlParser.KW_STORED); - this.state = 2062; + this.state = 2059; this.match(HiveSqlParser.KW_AS); - this.state = 2063; + this.state = 2060; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 2064; + this.state = 2061; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 2065; + this.state = 2062; this.match(HiveSqlParser.KW_OUTPUTFORMAT); - this.state = 2066; + this.state = 2063; localContext._outFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 2071; + this.state = 2068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 2067; + this.state = 2064; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 2068; + this.state = 2065; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 2069; + this.state = 2066; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 2070; + this.state = 2067; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -9370,36 +9349,36 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2073; + this.state = 2070; this.match(HiveSqlParser.KW_STORED); - this.state = 2074; + this.state = 2071; this.match(HiveSqlParser.KW_BY); - this.state = 2075; + this.state = 2072; localContext._storageHandler = this.match(HiveSqlParser.StringLiteral); - this.state = 2079; + this.state = 2076; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 199, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { case 1: { - this.state = 2076; + this.state = 2073; this.match(HiveSqlParser.KW_WITH); - this.state = 2077; + this.state = 2074; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2078; + this.state = 2075; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2084; + this.state = 2081; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2081; + this.state = 2078; this.match(HiveSqlParser.KW_STORED); - this.state = 2082; + this.state = 2079; this.match(HiveSqlParser.KW_AS); - this.state = 2083; + this.state = 2080; localContext._fileformat = this.id_(); } } @@ -9409,36 +9388,36 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2086; + this.state = 2083; this.match(HiveSqlParser.KW_STORED); - this.state = 2087; + this.state = 2084; this.match(HiveSqlParser.KW_BY); - this.state = 2088; + this.state = 2085; localContext._genericSpec = this.id_(); - this.state = 2092; + this.state = 2089; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 200, this.context) ) { case 1: { - this.state = 2089; + this.state = 2086; this.match(HiveSqlParser.KW_WITH); - this.state = 2090; + this.state = 2087; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2091; + this.state = 2088; localContext._serdeprops = this.tableProperties(); } break; } - this.state = 2097; + this.state = 2094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2094; + this.state = 2091; this.match(HiveSqlParser.KW_STORED); - this.state = 2095; + this.state = 2092; this.match(HiveSqlParser.KW_AS); - this.state = 2096; + this.state = 2093; localContext._fileformat = this.id_(); } } @@ -9448,11 +9427,11 @@ export class HiveSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2099; + this.state = 2096; this.match(HiveSqlParser.KW_STORED); - this.state = 2100; + this.state = 2097; this.match(HiveSqlParser.KW_AS); - this.state = 2101; + this.state = 2098; localContext._genericSpec = this.id_(); } break; @@ -9479,21 +9458,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2104; + this.state = 2101; this.columnNameType(); - this.state = 2109; + this.state = 2106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2105; + this.state = 2102; this.match(HiveSqlParser.COMMA); - this.state = 2106; + this.state = 2103; this.columnNameType(); } } - this.state = 2111; + this.state = 2108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9520,21 +9499,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2112; + this.state = 2109; this.columnNameTypeOrConstraint(); - this.state = 2117; + this.state = 2114; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2113; + this.state = 2110; this.match(HiveSqlParser.COMMA); - this.state = 2114; + this.state = 2111; this.columnNameTypeOrConstraint(); } } - this.state = 2119; + this.state = 2116; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9561,21 +9540,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2120; + this.state = 2117; this.columnNameColonType(); - this.state = 2125; + this.state = 2122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2121; + this.state = 2118; this.match(HiveSqlParser.COMMA); - this.state = 2122; + this.state = 2119; this.columnNameColonType(); } } - this.state = 2127; + this.state = 2124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9602,21 +9581,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2128; + this.state = 2125; this.columnName(); - this.state = 2133; + this.state = 2130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2129; + this.state = 2126; this.match(HiveSqlParser.COMMA); - this.state = 2130; + this.state = 2127; this.columnName(); } } - this.state = 2135; + this.state = 2132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9640,24 +9619,24 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 256, HiveSqlParser.RULE_columnName); try { - this.state = 2139; + this.state = 2136; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2136; + this.state = 2133; this.poolPathAllowEmpty(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2137; + this.state = 2134; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 2138; + this.state = 2135; this.emptyColumn(); } break; @@ -9683,7 +9662,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2141; + this.state = 2138; this.poolPath(); } } @@ -9705,24 +9684,24 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ColumnNamePathAllowEmptyContext(this.context, this.state); this.enterRule(localContext, 260, HiveSqlParser.RULE_columnNamePathAllowEmpty); try { - this.state = 2146; + this.state = 2143; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2143; + this.state = 2140; this.poolPathAllowEmpty(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2144; + this.state = 2141; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 2145; + this.state = 2142; this.emptyColumn(); } break; @@ -9748,7 +9727,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2148; + this.state = 2145; this.id_(); } } @@ -9773,47 +9752,47 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2150; + this.state = 2147; this.columnName(); - this.state = 2160; + this.state = 2157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395) { { { - this.state = 2151; + this.state = 2148; this.match(HiveSqlParser.DOT); - this.state = 2156; + this.state = 2153; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 210, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: { - this.state = 2152; + this.state = 2149; this.match(HiveSqlParser.KW_ELEM_TYPE); } break; case 2: { - this.state = 2153; + this.state = 2150; this.match(HiveSqlParser.KW_KEY_TYPE); } break; case 3: { - this.state = 2154; + this.state = 2151; this.match(HiveSqlParser.KW_VALUE_TYPE); } break; case 4: { - this.state = 2155; + this.state = 2152; this.id_(); } break; } } } - this.state = 2162; + this.state = 2159; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9840,21 +9819,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2163; + this.state = 2160; this.columnNameOrder(); - this.state = 2168; + this.state = 2165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2164; + this.state = 2161; this.match(HiveSqlParser.COMMA); - this.state = 2165; + this.state = 2162; this.columnNameOrder(); } } - this.state = 2170; + this.state = 2167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9880,11 +9859,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2171; + this.state = 2168; this.match(HiveSqlParser.LPAREN); - this.state = 2172; + this.state = 2169; this.columnNameList(); - this.state = 2173; + this.state = 2170; this.match(HiveSqlParser.RPAREN); } } @@ -9907,7 +9886,7 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 270, HiveSqlParser.RULE_enableValidateSpecification); let _la: number; try { - this.state = 2180; + this.state = 2177; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DISABLE: @@ -9916,14 +9895,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2175; + this.state = 2172; this.enableSpecification(); - this.state = 2177; + this.state = 2174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 217 || _la === 373) { { - this.state = 2176; + this.state = 2173; this.validateSpecification(); } } @@ -9934,7 +9913,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2179; + this.state = 2176; this.enforcedSpecification(); } break; @@ -9960,14 +9939,14 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new EnableSpecificationContext(this.context, this.state); this.enterRule(localContext, 272, HiveSqlParser.RULE_enableSpecification); try { - this.state = 2184; + this.state = 2181; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: this.enterOuterAlt(localContext, 1); { - this.state = 2182; + this.state = 2179; this.enable(); } break; @@ -9975,7 +9954,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DISABLED: this.enterOuterAlt(localContext, 2); { - this.state = 2183; + this.state = 2180; this.disable(); } break; @@ -10004,7 +9983,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2186; + this.state = 2183; _la = this.tokenStream.LA(1); if(!(_la === 217 || _la === 373)) { this.errorHandler.recoverInline(this); @@ -10033,22 +10012,22 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new EnforcedSpecificationContext(this.context, this.state); this.enterRule(localContext, 276, HiveSqlParser.RULE_enforcedSpecification); try { - this.state = 2191; + this.state = 2188; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENFORCED: this.enterOuterAlt(localContext, 1); { - this.state = 2188; + this.state = 2185; this.match(HiveSqlParser.KW_ENFORCED); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 2); { - this.state = 2189; + this.state = 2186; this.match(HiveSqlParser.KW_NOT); - this.state = 2190; + this.state = 2187; this.match(HiveSqlParser.KW_ENFORCED); } break; @@ -10077,7 +10056,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2193; + this.state = 2190; _la = this.tokenStream.LA(1); if(!(_la === 214 || _la === 272)) { this.errorHandler.recoverInline(this); @@ -10109,26 +10088,26 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2197; + this.state = 2194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2195; + this.state = 2192; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2196; + this.state = 2193; localContext._constraintName = this.id_(); } } - this.state = 2199; + this.state = 2196; this.tableLevelConstraint(); - this.state = 2201; + this.state = 2198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2200; + this.state = 2197; this.constraintOptsCreate(); } } @@ -10155,18 +10134,18 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2203; + this.state = 2200; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2204; + this.state = 2201; localContext._constraintName = this.id_(); - this.state = 2205; + this.state = 2202; this.tableLevelConstraint(); - this.state = 2207; + this.state = 2204; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: { - this.state = 2206; + this.state = 2203; this.constraintOptsAlter(); } break; @@ -10191,21 +10170,21 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableLevelConstraintContext(this.context, this.state); this.enterRule(localContext, 284, HiveSqlParser.RULE_tableLevelConstraint); try { - this.state = 2211; + this.state = 2208; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 1); { - this.state = 2209; + this.state = 2206; this.pkUkConstraint(); } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 2210; + this.state = 2207; this.checkConstraint(); } break; @@ -10233,9 +10212,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2213; + this.state = 2210; this.tableConstraintType(); - this.state = 2214; + this.state = 2211; localContext._pkCols = this.columnParenthesesList(); } } @@ -10259,13 +10238,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2216; + this.state = 2213; this.match(HiveSqlParser.KW_CHECK); - this.state = 2217; + this.state = 2214; this.match(HiveSqlParser.LPAREN); - this.state = 2218; + this.state = 2215; this.expression(); - this.state = 2219; + this.state = 2216; this.match(HiveSqlParser.RPAREN); } } @@ -10290,36 +10269,36 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2223; + this.state = 2220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2221; + this.state = 2218; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2222; + this.state = 2219; localContext._constraintName = this.id_(); } } - this.state = 2225; + this.state = 2222; this.match(HiveSqlParser.KW_FOREIGN); - this.state = 2226; + this.state = 2223; this.match(HiveSqlParser.KW_KEY); - this.state = 2227; + this.state = 2224; localContext._fkCols = this.columnParenthesesList(); - this.state = 2228; + this.state = 2225; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2229; + this.state = 2226; localContext._tabName = this.tableName(); - this.state = 2230; + this.state = 2227; localContext._parCols = this.columnParenthesesList(); - this.state = 2232; + this.state = 2229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2231; + this.state = 2228; this.constraintOptsCreate(); } } @@ -10346,28 +10325,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2234; + this.state = 2231; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2235; + this.state = 2232; localContext._constraintName = this.id_(); - this.state = 2236; + this.state = 2233; this.match(HiveSqlParser.KW_FOREIGN); - this.state = 2237; + this.state = 2234; this.match(HiveSqlParser.KW_KEY); - this.state = 2238; + this.state = 2235; localContext._fkCols = this.columnParenthesesList(); - this.state = 2239; + this.state = 2236; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2240; + this.state = 2237; localContext._tabName = this.tableName(); - this.state = 2241; + this.state = 2238; localContext._parCols = this.columnParenthesesList(); - this.state = 2243; + this.state = 2240; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: { - this.state = 2242; + this.state = 2239; this.constraintOptsAlter(); } break; @@ -10392,7 +10371,7 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new SkewedValueElementContext(this.context, this.state); this.enterRule(localContext, 294, HiveSqlParser.RULE_skewedValueElement); try { - this.state = 2247; + this.state = 2244; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -10651,14 +10630,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 2245; + this.state = 2242; this.constantList(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2246; + this.state = 2243; this.skewedColumnValuePairList(); } break; @@ -10687,21 +10666,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2249; + this.state = 2246; this.skewedColumnValuePair(); - this.state = 2254; + this.state = 2251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2250; + this.state = 2247; this.match(HiveSqlParser.COMMA); - this.state = 2251; + this.state = 2248; this.skewedColumnValuePair(); } } - this.state = 2256; + this.state = 2253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10727,11 +10706,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2257; + this.state = 2254; this.match(HiveSqlParser.LPAREN); - this.state = 2258; + this.state = 2255; localContext._colValues = this.constantList(); - this.state = 2259; + this.state = 2256; this.match(HiveSqlParser.RPAREN); } } @@ -10756,21 +10735,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2261; + this.state = 2258; this.constant(); - this.state = 2266; + this.state = 2263; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2262; + this.state = 2259; this.match(HiveSqlParser.COMMA); - this.state = 2263; + this.state = 2260; this.constant(); } } - this.state = 2268; + this.state = 2265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10797,7 +10776,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2269; + this.state = 2266; _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 89)) { this.errorHandler.recoverInline(this); @@ -10829,9 +10808,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2271; + this.state = 2268; this.match(HiveSqlParser.KW_NULLS); - this.state = 2272; + this.state = 2269; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 177)) { this.errorHandler.recoverInline(this); @@ -10863,24 +10842,24 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2274; + this.state = 2271; this.columnName(); - this.state = 2276; + this.state = 2273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18 || _la === 89) { { - this.state = 2275; + this.state = 2272; localContext._orderSpec = this.orderSpecification(); } } - this.state = 2279; + this.state = 2276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 2278; + this.state = 2275; localContext._nullSpec = this.nullOrdering(); } } @@ -10908,21 +10887,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2281; + this.state = 2278; this.columnNameComment(); - this.state = 2286; + this.state = 2283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2282; + this.state = 2279; this.match(HiveSqlParser.COMMA); - this.state = 2283; + this.state = 2280; this.columnNameComment(); } } - this.state = 2288; + this.state = 2285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10949,16 +10928,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2289; + this.state = 2286; localContext._colName = this.columnNameCreate(); - this.state = 2292; + this.state = 2289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2290; + this.state = 2287; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2291; + this.state = 2288; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -10986,38 +10965,38 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2296; + this.state = 2293; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { case 1: { - this.state = 2294; + this.state = 2291; this.columnName(); } break; case 2: { - this.state = 2295; + this.state = 2292; this.expression(); } break; } - this.state = 2299; + this.state = 2296; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { - this.state = 2298; + this.state = 2295; localContext._orderSpec = this.orderSpecification(); } break; } - this.state = 2302; + this.state = 2299; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 2301; + this.state = 2298; localContext._nullSpec = this.nullOrdering(); } } @@ -11045,18 +11024,18 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2304; + this.state = 2301; localContext._colName = this.columnNameCreate(); - this.state = 2305; + this.state = 2302; this.columnType(); - this.state = 2308; + this.state = 2305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2306; + this.state = 2303; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2307; + this.state = 2304; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11081,20 +11060,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ColumnNameTypeOrConstraintContext(this.context, this.state); this.enterRule(localContext, 316, HiveSqlParser.RULE_columnNameTypeOrConstraint); try { - this.state = 2312; + this.state = 2309; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2310; + this.state = 2307; this.tableConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2311; + this.state = 2308; this.columnNameTypeConstraint(); } break; @@ -11118,20 +11097,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableConstraintContext(this.context, this.state); this.enterRule(localContext, 318, HiveSqlParser.RULE_tableConstraint); try { - this.state = 2316; + this.state = 2313; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2314; + this.state = 2311; this.createForeignKey(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2315; + this.state = 2312; this.createConstraint(); } break; @@ -11158,28 +11137,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2318; + this.state = 2315; localContext._colName = this.columnNameCreate(); - this.state = 2319; + this.state = 2316; localContext._colType = this.columnType(); - this.state = 2321; + this.state = 2318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 40 || _la === 55 || _la === 83 || _la === 216 || _la === 251 || _la === 269 || _la === 358) { { - this.state = 2320; + this.state = 2317; this.columnConstraint(); } } - this.state = 2325; + this.state = 2322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2323; + this.state = 2320; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2324; + this.state = 2321; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11204,20 +11183,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ColumnConstraintContext(this.context, this.state); this.enterRule(localContext, 322, HiveSqlParser.RULE_columnConstraint); try { - this.state = 2329; + this.state = 2326; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2327; + this.state = 2324; this.foreignKeyConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2328; + this.state = 2325; this.colConstraint(); } break; @@ -11244,34 +11223,34 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2333; + this.state = 2330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2331; + this.state = 2328; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2332; + this.state = 2329; localContext._constraintName = this.id_(); } } - this.state = 2335; + this.state = 2332; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2336; + this.state = 2333; localContext._tabName = this.tableName(); - this.state = 2337; + this.state = 2334; this.match(HiveSqlParser.LPAREN); - this.state = 2338; + this.state = 2335; localContext._colName = this.columnName(); - this.state = 2339; + this.state = 2336; this.match(HiveSqlParser.RPAREN); - this.state = 2341; + this.state = 2338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2340; + this.state = 2337; this.constraintOptsCreate(); } } @@ -11299,26 +11278,26 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2345; + this.state = 2342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2343; + this.state = 2340; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2344; + this.state = 2341; localContext._constraintName = this.id_(); } } - this.state = 2347; + this.state = 2344; this.columnConstraintType(); - this.state = 2349; + this.state = 2346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 94)) & ~0x1F) === 0 && ((1 << (_la - 94)) & 45059) !== 0) || _la === 216) { { - this.state = 2348; + this.state = 2345; this.constraintOptsCreate(); } } @@ -11343,20 +11322,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new AlterColumnConstraintContext(this.context, this.state); this.enterRule(localContext, 328, HiveSqlParser.RULE_alterColumnConstraint); try { - this.state = 2353; + this.state = 2350; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2351; + this.state = 2348; this.alterForeignKeyConstraint(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2352; + this.state = 2349; this.alterColConstraint(); } break; @@ -11383,34 +11362,34 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2357; + this.state = 2354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2355; + this.state = 2352; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2356; + this.state = 2353; localContext._constraintName = this.id_(); } } - this.state = 2359; + this.state = 2356; this.match(HiveSqlParser.KW_REFERENCES); - this.state = 2360; + this.state = 2357; localContext._tabName = this.tableName(); - this.state = 2361; + this.state = 2358; this.match(HiveSqlParser.LPAREN); - this.state = 2362; + this.state = 2359; localContext._colName = this.columnName(); - this.state = 2363; + this.state = 2360; this.match(HiveSqlParser.RPAREN); - this.state = 2365; + this.state = 2362; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 2364; + this.state = 2361; this.constraintOptsAlter(); } break; @@ -11438,26 +11417,26 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2369; + this.state = 2366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 55) { { - this.state = 2367; + this.state = 2364; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2368; + this.state = 2365; localContext._constraintName = this.id_(); } } - this.state = 2371; + this.state = 2368; this.columnConstraintType(); - this.state = 2373; + this.state = 2370; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: { - this.state = 2372; + this.state = 2369; this.constraintOptsAlter(); } break; @@ -11482,31 +11461,31 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ColumnConstraintTypeContext(this.context, this.state); this.enterRule(localContext, 334, HiveSqlParser.RULE_columnConstraintType); try { - this.state = 2381; + this.state = 2378; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 2375; + this.state = 2372; this.match(HiveSqlParser.KW_NOT); - this.state = 2376; + this.state = 2373; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 2377; + this.state = 2374; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 2378; + this.state = 2375; this.defaultVal(); } break; case HiveSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 3); { - this.state = 2379; + this.state = 2376; this.checkConstraint(); } break; @@ -11514,7 +11493,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 4); { - this.state = 2380; + this.state = 2377; this.tableConstraintType(); } break; @@ -11540,27 +11519,27 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new DefaultValContext(this.context, this.state); this.enterRule(localContext, 336, HiveSqlParser.RULE_defaultVal); try { - this.state = 2386; + this.state = 2383; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2383; + this.state = 2380; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2384; + this.state = 2381; this.function_(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2385; + this.state = 2382; this.castExpression(); } break; @@ -11584,22 +11563,22 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableConstraintTypeContext(this.context, this.state); this.enterRule(localContext, 338, HiveSqlParser.RULE_tableConstraintType); try { - this.state = 2391; + this.state = 2388; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 2388; + this.state = 2385; this.match(HiveSqlParser.KW_PRIMARY); - this.state = 2389; + this.state = 2386; this.match(HiveSqlParser.KW_KEY); } break; case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 2); { - this.state = 2390; + this.state = 2387; this.match(HiveSqlParser.KW_UNIQUE); } break; @@ -11628,14 +11607,14 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2393; + this.state = 2390; this.enableValidateSpecification(); - this.state = 2395; + this.state = 2392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 214 || _la === 272) { { - this.state = 2394; + this.state = 2391; this.relySpecification(); } } @@ -11663,14 +11642,14 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2397; + this.state = 2394; this.enableValidateSpecification(); - this.state = 2399; + this.state = 2396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 214 || _la === 272) { { - this.state = 2398; + this.state = 2395; this.relySpecification(); } } @@ -11698,20 +11677,20 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2401; + this.state = 2398; localContext._colName = this.columnNameCreate(); - this.state = 2402; + this.state = 2399; this.match(HiveSqlParser.COLON); - this.state = 2403; + this.state = 2400; this.columnType(); - this.state = 2406; + this.state = 2403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 2404; + this.state = 2401; this.match(HiveSqlParser.KW_COMMENT); - this.state = 2405; + this.state = 2402; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -11738,7 +11717,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2408; + this.state = 2405; this.type_(); } } @@ -11763,21 +11742,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2410; + this.state = 2407; this.columnType(); - this.state = 2415; + this.state = 2412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2411; + this.state = 2408; this.match(HiveSqlParser.COMMA); - this.state = 2412; + this.state = 2409; this.columnType(); } } - this.state = 2417; + this.state = 2414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11801,7 +11780,7 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TypeContext(this.context, this.state); this.enterRule(localContext, 350, HiveSqlParser.RULE_type); try { - this.state = 2423; + this.state = 2420; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_BIGINT: @@ -11826,35 +11805,35 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 1); { - this.state = 2418; + this.state = 2415; this.primitiveType(); } break; case HiveSqlParser.KW_ARRAY: this.enterOuterAlt(localContext, 2); { - this.state = 2419; + this.state = 2416; this.listType(); } break; case HiveSqlParser.KW_STRUCT: this.enterOuterAlt(localContext, 3); { - this.state = 2420; + this.state = 2417; this.structType(); } break; case HiveSqlParser.KW_MAP: this.enterOuterAlt(localContext, 4); { - this.state = 2421; + this.state = 2418; this.mapType(); } break; case HiveSqlParser.KW_UNIONTYPE: this.enterOuterAlt(localContext, 5); { - this.state = 2422; + this.state = 2419; this.unionType(); } break; @@ -11881,76 +11860,76 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 352, HiveSqlParser.RULE_primitiveType); let _la: number; try { - this.state = 2462; + this.state = 2459; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 260, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2425; + this.state = 2422; this.match(HiveSqlParser.KW_TINYINT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2426; + this.state = 2423; this.match(HiveSqlParser.KW_SMALLINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2427; + this.state = 2424; this.match(HiveSqlParser.KW_INT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2428; + this.state = 2425; this.match(HiveSqlParser.KW_INTEGER); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2429; + this.state = 2426; this.match(HiveSqlParser.KW_BIGINT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2430; + this.state = 2427; this.match(HiveSqlParser.KW_BOOLEAN); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2431; + this.state = 2428; this.match(HiveSqlParser.KW_FLOAT); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2432; + this.state = 2429; this.match(HiveSqlParser.KW_REAL); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2433; + this.state = 2430; this.match(HiveSqlParser.KW_DOUBLE); - this.state = 2435; + this.state = 2432; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 248) { { - this.state = 2434; + this.state = 2431; this.match(HiveSqlParser.KW_PRECISION); } } @@ -11960,87 +11939,87 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2437; + this.state = 2434; this.match(HiveSqlParser.KW_DATE); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2438; + this.state = 2435; this.match(HiveSqlParser.KW_DATETIME); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2439; + this.state = 2436; this.match(HiveSqlParser.KW_TIMESTAMP); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2440; + this.state = 2437; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2441; + this.state = 2438; this.match(HiveSqlParser.KW_TIMESTAMP); - this.state = 2442; + this.state = 2439; this.match(HiveSqlParser.KW_WITH); - this.state = 2443; + this.state = 2440; this.match(HiveSqlParser.KW_LOCAL); - this.state = 2444; + this.state = 2441; this.match(HiveSqlParser.KW_TIME); - this.state = 2445; + this.state = 2442; this.match(HiveSqlParser.KW_ZONE); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2446; + this.state = 2443; this.match(HiveSqlParser.KW_STRING); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2447; + this.state = 2444; this.match(HiveSqlParser.KW_BINARY); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2448; + this.state = 2445; this.decimal(); - this.state = 2456; + this.state = 2453; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { - this.state = 2449; + this.state = 2446; this.match(HiveSqlParser.LPAREN); - this.state = 2450; + this.state = 2447; localContext._prec = this.match(HiveSqlParser.Number); - this.state = 2453; + this.state = 2450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 2451; + this.state = 2448; this.match(HiveSqlParser.COMMA); - this.state = 2452; + this.state = 2449; localContext._scale = this.match(HiveSqlParser.Number); } } - this.state = 2455; + this.state = 2452; this.match(HiveSqlParser.RPAREN); } break; @@ -12050,7 +12029,7 @@ export class HiveSqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2458; + this.state = 2455; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 376)) { this.errorHandler.recoverInline(this); @@ -12059,11 +12038,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2459; + this.state = 2456; this.match(HiveSqlParser.LPAREN); - this.state = 2460; + this.state = 2457; localContext._length = this.match(HiveSqlParser.Number); - this.state = 2461; + this.state = 2458; this.match(HiveSqlParser.RPAREN); } break; @@ -12089,13 +12068,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2464; + this.state = 2461; this.match(HiveSqlParser.KW_ARRAY); - this.state = 2465; + this.state = 2462; this.match(HiveSqlParser.LESSTHAN); - this.state = 2466; + this.state = 2463; this.type_(); - this.state = 2467; + this.state = 2464; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12119,13 +12098,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2469; + this.state = 2466; this.match(HiveSqlParser.KW_STRUCT); - this.state = 2470; + this.state = 2467; this.match(HiveSqlParser.LESSTHAN); - this.state = 2471; + this.state = 2468; this.columnNameColonTypeList(); - this.state = 2472; + this.state = 2469; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12149,17 +12128,17 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2474; + this.state = 2471; this.match(HiveSqlParser.KW_MAP); - this.state = 2475; + this.state = 2472; this.match(HiveSqlParser.LESSTHAN); - this.state = 2476; + this.state = 2473; localContext._left = this.primitiveType(); - this.state = 2477; + this.state = 2474; this.match(HiveSqlParser.COMMA); - this.state = 2478; + this.state = 2475; localContext._right = this.type_(); - this.state = 2479; + this.state = 2476; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12183,13 +12162,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2481; + this.state = 2478; this.match(HiveSqlParser.KW_UNIONTYPE); - this.state = 2482; + this.state = 2479; this.match(HiveSqlParser.LESSTHAN); - this.state = 2483; + this.state = 2480; this.columnTypeList(); - this.state = 2484; + this.state = 2481; this.match(HiveSqlParser.GREATERTHAN); } } @@ -12214,7 +12193,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2486; + this.state = 2483; _la = this.tokenStream.LA(1); if(!(_la === 112 || _la === 164 || _la === 205 || _la === 356)) { this.errorHandler.recoverInline(this); @@ -12223,12 +12202,12 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2488; + this.state = 2485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 2487; + this.state = 2484; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -12263,17 +12242,17 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2491; + this.state = 2488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 387) { { - this.state = 2490; + this.state = 2487; localContext._w = this.withClause(); } } - this.state = 2493; + this.state = 2490; this.queryStatementExpressionBody(); } } @@ -12295,13 +12274,13 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new QueryStatementExpressionBodyContext(this.context, this.state); this.enterRule(localContext, 366, HiveSqlParser.RULE_queryStatementExpressionBody); try { - this.state = 2497; + this.state = 2494; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FROM: this.enterOuterAlt(localContext, 1); { - this.state = 2495; + this.state = 2492; this.fromStatement(); } break; @@ -12313,7 +12292,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2496; + this.state = 2493; this.regularBody(); } break; @@ -12342,23 +12321,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2499; + this.state = 2496; this.match(HiveSqlParser.KW_WITH); - this.state = 2500; + this.state = 2497; this.cteStatement(); - this.state = 2505; + this.state = 2502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2501; + this.state = 2498; this.match(HiveSqlParser.COMMA); - this.state = 2502; + this.state = 2499; this.cteStatement(); } } - this.state = 2507; + this.state = 2504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12385,29 +12364,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2508; + this.state = 2505; this.id_(); - this.state = 2513; + this.state = 2510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 2509; + this.state = 2506; this.match(HiveSqlParser.LPAREN); - this.state = 2510; + this.state = 2507; localContext._colAliases = this.columnNameList(); - this.state = 2511; + this.state = 2508; this.match(HiveSqlParser.RPAREN); } } - this.state = 2515; + this.state = 2512; this.match(HiveSqlParser.KW_AS); - this.state = 2516; + this.state = 2513; this.match(HiveSqlParser.LPAREN); - this.state = 2517; + this.state = 2514; this.queryStatementExpression(); - this.state = 2518; + this.state = 2515; this.match(HiveSqlParser.RPAREN); } } @@ -12432,21 +12411,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2520; + this.state = 2517; this.singleFromStatement(); - this.state = 2526; + this.state = 2523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 112 || _la === 164 || _la === 205 || _la === 356) { { { - this.state = 2521; + this.state = 2518; localContext._u = this.setOperator(); - this.state = 2522; + this.state = 2519; localContext._r = this.singleFromStatement(); } } - this.state = 2528; + this.state = 2525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12471,125 +12450,125 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 374, HiveSqlParser.RULE_singleFromStatement); let _la: number; try { - this.state = 2600; + this.state = 2597; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { case 1: localContext = new FromInsertStmtContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2529; + this.state = 2526; this.fromClause(); - this.state = 2530; + this.state = 2527; this.insertClause(); - this.state = 2531; + this.state = 2528; this.selectClause(); - this.state = 2533; + this.state = 2530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178 || _la === 397) { { - this.state = 2532; + this.state = 2529; this.lateralView(); } } - this.state = 2536; + this.state = 2533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2535; + this.state = 2532; this.whereClause(); } } - this.state = 2539; + this.state = 2536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2538; + this.state = 2535; this.groupByClause(); } } - this.state = 2542; + this.state = 2539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2541; + this.state = 2538; this.havingClause(); } } - this.state = 2545; + this.state = 2542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2544; + this.state = 2541; this.window_clause(); } } - this.state = 2548; + this.state = 2545; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2547; + this.state = 2544; this.qualifyClause(); } } - this.state = 2551; + this.state = 2548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2550; + this.state = 2547; this.orderByClause(); } } - this.state = 2554; + this.state = 2551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2553; + this.state = 2550; this.clusterByClause(); } } - this.state = 2557; + this.state = 2554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2556; + this.state = 2553; this.distributeByClause(); } } - this.state = 2560; + this.state = 2557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2559; + this.state = 2556; this.sortByClause(); } } - this.state = 2563; + this.state = 2560; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2562; + this.state = 2559; this.limitClause(); } } @@ -12600,116 +12579,116 @@ export class HiveSqlParser extends SQLParserBase { localContext = new FromSelectStmtContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2565; + this.state = 2562; this.fromClause(); - this.state = 2566; + this.state = 2563; this.selectClause(); - this.state = 2568; + this.state = 2565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178 || _la === 397) { { - this.state = 2567; + this.state = 2564; this.lateralView(); } } - this.state = 2571; + this.state = 2568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2570; + this.state = 2567; this.whereClause(); } } - this.state = 2574; + this.state = 2571; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2573; + this.state = 2570; this.groupByClause(); } } - this.state = 2577; + this.state = 2574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2576; + this.state = 2573; this.havingClause(); } } - this.state = 2580; + this.state = 2577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2579; + this.state = 2576; this.window_clause(); } } - this.state = 2583; + this.state = 2580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2582; + this.state = 2579; this.qualifyClause(); } } - this.state = 2586; + this.state = 2583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2585; + this.state = 2582; this.orderByClause(); } } - this.state = 2589; + this.state = 2586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2588; + this.state = 2585; this.clusterByClause(); } } - this.state = 2592; + this.state = 2589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2591; + this.state = 2588; this.distributeByClause(); } } - this.state = 2595; + this.state = 2592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2594; + this.state = 2591; this.sortByClause(); } } - this.state = 2598; + this.state = 2595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2597; + this.state = 2594; this.limitClause(); } } @@ -12736,16 +12715,16 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new RegularBodyContext(this.context, this.state); this.enterRule(localContext, 376, HiveSqlParser.RULE_regularBody); try { - this.state = 2606; + this.state = 2603; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_INSERT: localContext = new InsertStmtContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2602; + this.state = 2599; (localContext as InsertStmtContext)._i = this.insertClause(); - this.state = 2603; + this.state = 2600; (localContext as InsertStmtContext)._s = this.selectStatement(); } break; @@ -12757,7 +12736,7 @@ export class HiveSqlParser extends SQLParserBase { localContext = new SelectStmtContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2605; + this.state = 2602; this.selectStatement(); } break; @@ -12784,7 +12763,7 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 378, HiveSqlParser.RULE_atomSelectStatement); let _la: number; try { - this.state = 2632; + this.state = 2629; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_MAP: @@ -12792,64 +12771,64 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 2608; + this.state = 2605; localContext._s = this.selectClause(); - this.state = 2610; + this.state = 2607; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: { - this.state = 2609; + this.state = 2606; localContext._f = this.fromClause(); } break; } - this.state = 2613; + this.state = 2610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 384) { { - this.state = 2612; + this.state = 2609; localContext._w = this.whereClause(); } } - this.state = 2616; + this.state = 2613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 2615; + this.state = 2612; localContext._g = this.groupByClause(); } } - this.state = 2619; + this.state = 2616; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 146) { { - this.state = 2618; + this.state = 2615; localContext._h = this.havingClause(); } } - this.state = 2622; + this.state = 2619; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 386) { { - this.state = 2621; + this.state = 2618; localContext._win = this.window_clause(); } } - this.state = 2625; + this.state = 2622; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2624; + this.state = 2621; localContext._q = this.qualifyClause(); } } @@ -12859,18 +12838,18 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 2627; + this.state = 2624; this.match(HiveSqlParser.LPAREN); - this.state = 2628; + this.state = 2625; this.selectStatement(); - this.state = 2629; + this.state = 2626; this.match(HiveSqlParser.RPAREN); } break; case HiveSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 2631; + this.state = 2628; this.valuesClause(); } break; @@ -12899,64 +12878,64 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2634; + this.state = 2631; localContext._a = this.atomSelectStatement(); - this.state = 2636; + this.state = 2633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 112 || _la === 164 || _la === 205 || _la === 356) { { - this.state = 2635; + this.state = 2632; localContext._set_ = this.setOpSelectStatement(); } } - this.state = 2639; + this.state = 2636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2638; + this.state = 2635; localContext._o = this.orderByClause(); } } - this.state = 2642; + this.state = 2639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41) { { - this.state = 2641; + this.state = 2638; localContext._c = this.clusterByClause(); } } - this.state = 2645; + this.state = 2642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2644; + this.state = 2641; localContext._d = this.distributeByClause(); } } - this.state = 2648; + this.state = 2645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2647; + this.state = 2644; localContext._sort = this.sortByClause(); } } - this.state = 2651; + this.state = 2648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 185) { { - this.state = 2650; + this.state = 2647; localContext._l = this.limitClause(); } } @@ -12984,19 +12963,19 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2656; + this.state = 2653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2653; + this.state = 2650; localContext._u = this.setOperator(); - this.state = 2654; + this.state = 2651; localContext._b = this.atomSelectStatement(); } } - this.state = 2658; + this.state = 2655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 112 || _la === 164 || _la === 205 || _la === 356); @@ -13023,17 +13002,17 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2661; + this.state = 2658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 387) { { - this.state = 2660; + this.state = 2657; localContext._w = this.withClause(); } } - this.state = 2663; + this.state = 2660; this.selectStatement(); } } @@ -13058,23 +13037,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2665; + this.state = 2662; this.match(HiveSqlParser.KW_INSERT); - this.state = 2682; + this.state = 2679; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_OVERWRITE: { - this.state = 2666; + this.state = 2663; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 2667; + this.state = 2664; this.destination(); - this.state = 2669; + this.state = 2666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2668; + this.state = 2665; this.ifNotExists(); } } @@ -13083,30 +13062,30 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_INTO: { - this.state = 2671; + this.state = 2668; this.match(HiveSqlParser.KW_INTO); - this.state = 2673; + this.state = 2670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 329) { { - this.state = 2672; + this.state = 2669; this.match(HiveSqlParser.KW_TABLE); } } - this.state = 2675; + this.state = 2672; this.tableOrPartition(); - this.state = 2680; + this.state = 2677; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 308, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 307, this.context) ) { case 1: { - this.state = 2676; + this.state = 2673; this.match(HiveSqlParser.LPAREN); - this.state = 2677; + this.state = 2674; localContext._targetCols = this.columnNameList(); - this.state = 2678; + this.state = 2675; this.match(HiveSqlParser.RPAREN); } break; @@ -13137,43 +13116,43 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 388, HiveSqlParser.RULE_destination); let _la: number; try { - this.state = 2697; + this.state = 2694; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_DIRECTORY: case HiveSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 1); { - this.state = 2685; + this.state = 2682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2684; + this.state = 2681; localContext._local = this.match(HiveSqlParser.KW_LOCAL); } } - this.state = 2687; + this.state = 2684; this.match(HiveSqlParser.KW_DIRECTORY); - this.state = 2688; + this.state = 2685; this.match(HiveSqlParser.StringLiteral); - this.state = 2690; + this.state = 2687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 2689; + this.state = 2686; this.tableRowFormat(); } } - this.state = 2693; + this.state = 2690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 2692; + this.state = 2689; this.tableFileFormat(); } } @@ -13183,9 +13162,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 2695; + this.state = 2692; this.match(HiveSqlParser.KW_TABLE); - this.state = 2696; + this.state = 2693; this.tableOrPartition(); } break; @@ -13213,36 +13192,36 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2699; + this.state = 2696; this.match(HiveSqlParser.KW_LIMIT); - this.state = 2708; + this.state = 2705; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2702; + this.state = 2699; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { case 1: { - this.state = 2700; + this.state = 2697; localContext._offset = this.match(HiveSqlParser.Number); - this.state = 2701; + this.state = 2698; this.match(HiveSqlParser.COMMA); } break; } - this.state = 2704; + this.state = 2701; localContext._num = this.match(HiveSqlParser.Number); } break; case 2: { - this.state = 2705; + this.state = 2702; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2706; + this.state = 2703; this.match(HiveSqlParser.KW_OFFSET); - this.state = 2707; + this.state = 2704; localContext._offset = this.match(HiveSqlParser.Number); } break; @@ -13269,11 +13248,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2710; + this.state = 2707; this.columnName(); - this.state = 2711; + this.state = 2708; this.match(HiveSqlParser.EQUAL); - this.state = 2712; + this.state = 2709; this.precedencePlusExpressionOrDefault(); } } @@ -13295,20 +13274,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrecedencePlusExpressionOrDefaultContext(this.context, this.state); this.enterRule(localContext, 394, HiveSqlParser.RULE_precedencePlusExpressionOrDefault); try { - this.state = 2716; + this.state = 2713; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2714; + this.state = 2711; this.match(HiveSqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2715; + this.state = 2712; this.precedencePlusExpression(); } break; @@ -13335,23 +13314,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2718; + this.state = 2715; this.match(HiveSqlParser.KW_SET); - this.state = 2719; + this.state = 2716; this.columnAssignmentClause(); - this.state = 2724; + this.state = 2721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2720; + this.state = 2717; this.match(HiveSqlParser.COMMA); - this.state = 2721; + this.state = 2718; this.columnAssignmentClause(); } } - this.state = 2726; + this.state = 2723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13376,36 +13355,36 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 398, HiveSqlParser.RULE_sqlTransactionStatement); let _la: number; try { - this.state = 2750; + this.state = 2747; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_START: this.enterOuterAlt(localContext, 1); { - this.state = 2727; + this.state = 2724; this.match(HiveSqlParser.KW_START); - this.state = 2728; + this.state = 2725; this.match(HiveSqlParser.KW_TRANSACTION); - this.state = 2737; + this.state = 2734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 168 || _la === 261) { { - this.state = 2729; + this.state = 2726; this.transactionMode(); - this.state = 2734; + this.state = 2731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2730; + this.state = 2727; this.match(HiveSqlParser.COMMA); - this.state = 2731; + this.state = 2728; this.transactionMode(); } } - this.state = 2736; + this.state = 2733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13417,14 +13396,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_COMMIT: this.enterOuterAlt(localContext, 2); { - this.state = 2739; + this.state = 2736; this.match(HiveSqlParser.KW_COMMIT); - this.state = 2741; + this.state = 2738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 389) { { - this.state = 2740; + this.state = 2737; this.match(HiveSqlParser.KW_WORK); } } @@ -13434,14 +13413,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ROLLBACK: this.enterOuterAlt(localContext, 3); { - this.state = 2743; + this.state = 2740; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 2745; + this.state = 2742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 389) { { - this.state = 2744; + this.state = 2741; this.match(HiveSqlParser.KW_WORK); } } @@ -13451,11 +13430,11 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 4); { - this.state = 2747; + this.state = 2744; this.match(HiveSqlParser.KW_SET); - this.state = 2748; + this.state = 2745; this.match(HiveSqlParser.KW_AUTOCOMMIT); - this.state = 2749; + this.state = 2746; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 350)) { this.errorHandler.recoverInline(this); @@ -13489,26 +13468,26 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 400, HiveSqlParser.RULE_transactionMode); let _la: number; try { - this.state = 2757; + this.state = 2754; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ISOLATION: this.enterOuterAlt(localContext, 1); { - this.state = 2752; + this.state = 2749; this.match(HiveSqlParser.KW_ISOLATION); - this.state = 2753; + this.state = 2750; this.match(HiveSqlParser.KW_LEVEL); - this.state = 2754; + this.state = 2751; this.match(HiveSqlParser.KW_SNAPSHOT); } break; case HiveSqlParser.KW_READ: this.enterOuterAlt(localContext, 2); { - this.state = 2755; + this.state = 2752; this.match(HiveSqlParser.KW_READ); - this.state = 2756; + this.state = 2753; _la = this.tokenStream.LA(1); if(!(_la === 225 || _la === 391)) { this.errorHandler.recoverInline(this); @@ -13545,40 +13524,40 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2763; + this.state = 2760; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2761; + this.state = 2758; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { - this.state = 2759; + this.state = 2756; this.whenMatchedAndClause(); } break; case 2: { - this.state = 2760; + this.state = 2757; this.whenMatchedThenClause(); } break; } } } - this.state = 2765; + this.state = 2762; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 325, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 324, this.context); } - this.state = 2767; + this.state = 2764; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 383) { { - this.state = 2766; + this.state = 2763; this.whenNotMatchedClause(); } } @@ -13606,41 +13585,41 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2769; + this.state = 2766; this.match(HiveSqlParser.KW_WHEN); - this.state = 2770; + this.state = 2767; this.match(HiveSqlParser.KW_NOT); - this.state = 2771; + this.state = 2768; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2774; + this.state = 2771; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 2772; + this.state = 2769; this.match(HiveSqlParser.KW_AND); - this.state = 2773; + this.state = 2770; this.expression(); } } - this.state = 2776; + this.state = 2773; this.match(HiveSqlParser.KW_THEN); - this.state = 2777; + this.state = 2774; this.match(HiveSqlParser.KW_INSERT); - this.state = 2779; + this.state = 2776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 2778; + this.state = 2775; localContext._targetCols = this.columnParenthesesList(); } } - this.state = 2781; + this.state = 2778; this.match(HiveSqlParser.KW_VALUES); - this.state = 2782; + this.state = 2779; this.expressionsInParenthesis(); } } @@ -13664,30 +13643,30 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2784; + this.state = 2781; this.match(HiveSqlParser.KW_WHEN); - this.state = 2785; + this.state = 2782; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2786; + this.state = 2783; this.match(HiveSqlParser.KW_AND); - this.state = 2787; + this.state = 2784; this.expression(); - this.state = 2788; + this.state = 2785; this.match(HiveSqlParser.KW_THEN); - this.state = 2792; + this.state = 2789; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UPDATE: { - this.state = 2789; + this.state = 2786; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2790; + this.state = 2787; this.setColumnsClause(); } break; case HiveSqlParser.KW_DELETE: { - this.state = 2791; + this.state = 2788; this.match(HiveSqlParser.KW_DELETE); } break; @@ -13716,26 +13695,26 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2794; + this.state = 2791; this.match(HiveSqlParser.KW_WHEN); - this.state = 2795; + this.state = 2792; this.match(HiveSqlParser.KW_MATCHED); - this.state = 2796; + this.state = 2793; this.match(HiveSqlParser.KW_THEN); - this.state = 2800; + this.state = 2797; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UPDATE: { - this.state = 2797; + this.state = 2794; this.match(HiveSqlParser.KW_UPDATE); - this.state = 2798; + this.state = 2795; this.setColumnsClause(); } break; case HiveSqlParser.KW_DELETE: { - this.state = 2799; + this.state = 2796; this.match(HiveSqlParser.KW_DELETE); } break; @@ -13764,9 +13743,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2802; + this.state = 2799; this.match(HiveSqlParser.KW_POOL); - this.state = 2803; + this.state = 2800; localContext._poolName = this.match(HiveSqlParser.StringLiteral); } } @@ -13790,9 +13769,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2805; + this.state = 2802; this.match(HiveSqlParser.KW_TYPE); - this.state = 2806; + this.state = 2803; localContext._compactType = this.match(HiveSqlParser.StringLiteral); } } @@ -13816,9 +13795,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2808; + this.state = 2805; this.match(HiveSqlParser.KW_STATUS); - this.state = 2809; + this.state = 2806; localContext._status = this.match(HiveSqlParser.StringLiteral); } } @@ -13843,69 +13822,69 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2811; + this.state = 2808; this.match(HiveSqlParser.KW_ALTER); - this.state = 2842; + this.state = 2839; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TABLE: { - this.state = 2812; + this.state = 2809; this.match(HiveSqlParser.KW_TABLE); - this.state = 2813; + this.state = 2810; this.tableName(); - this.state = 2814; + this.state = 2811; this.alterTableStatementSuffix(); } break; case HiveSqlParser.KW_VIEW: { - this.state = 2816; + this.state = 2813; this.match(HiveSqlParser.KW_VIEW); - this.state = 2817; + this.state = 2814; this.viewName(); - this.state = 2819; + this.state = 2816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2818; + this.state = 2815; this.match(HiveSqlParser.KW_AS); } } - this.state = 2821; + this.state = 2818; this.alterViewStatementSuffix(); } break; case HiveSqlParser.KW_MATERIALIZED: { - this.state = 2823; + this.state = 2820; this.match(HiveSqlParser.KW_MATERIALIZED); - this.state = 2824; + this.state = 2821; this.match(HiveSqlParser.KW_VIEW); - this.state = 2825; + this.state = 2822; localContext._tableNameTree = this.viewName(); - this.state = 2829; + this.state = 2826; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 2826; + this.state = 2823; localContext._mvRewriteFlag = this.rewriteEnabled(); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 2827; + this.state = 2824; localContext._mvRewriteFlag2 = this.rewriteDisabled(); } break; case HiveSqlParser.KW_REBUILD: { - this.state = 2828; + this.state = 2825; this.match(HiveSqlParser.KW_REBUILD); } break; @@ -13917,31 +13896,31 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DATABASE: case HiveSqlParser.KW_SCHEMA: { - this.state = 2831; + this.state = 2828; this.db_schema(); - this.state = 2832; + this.state = 2829; this.alterDatabaseStatementSuffix(); } break; case HiveSqlParser.KW_DATACONNECTOR: { - this.state = 2834; + this.state = 2831; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 2835; + this.state = 2832; this.alterDataConnectorStatementSuffix(); } break; case HiveSqlParser.KW_INDEX: { - this.state = 2836; + this.state = 2833; this.match(HiveSqlParser.KW_INDEX); - this.state = 2837; + this.state = 2834; this.id_(); - this.state = 2838; + this.state = 2835; this.match(HiveSqlParser.KW_ON); - this.state = 2839; + this.state = 2836; this.tableOrPartition(); - this.state = 2840; + this.state = 2837; this.match(HiveSqlParser.KW_REBUILD); } break; @@ -13969,72 +13948,72 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 418, HiveSqlParser.RULE_alterTableStatementSuffix); let _la: number; try { - this.state = 2933; + this.state = 2930; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2844; + this.state = 2841; this.match(HiveSqlParser.KW_RENAME); - this.state = 2845; + this.state = 2842; this.match(HiveSqlParser.KW_TO); - this.state = 2846; + this.state = 2843; this.tableNameCreate(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2847; + this.state = 2844; this.match(HiveSqlParser.KW_RECOVER); - this.state = 2848; + this.state = 2845; this.match(HiveSqlParser.KW_PARTITIONS); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2849; + this.state = 2846; this.alterStatementSuffixDropPartitions(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2850; + this.state = 2847; this.match(HiveSqlParser.KW_ADD); - this.state = 2852; + this.state = 2849; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2851; + this.state = 2848; this.ifNotExists(); } } - this.state = 2858; + this.state = 2855; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2854; + this.state = 2851; this.partitionSpec(); - this.state = 2856; + this.state = 2853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 2855; + this.state = 2852; this.locationPath(); } } } } - this.state = 2860; + this.state = 2857; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 237); @@ -14043,19 +14022,19 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2862; + this.state = 2859; this.match(HiveSqlParser.KW_TOUCH); - this.state = 2866; + this.state = 2863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2863; + this.state = 2860; this.partitionSpec(); } } - this.state = 2868; + this.state = 2865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14064,19 +14043,19 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2869; + this.state = 2866; this.match(HiveSqlParser.KW_ARCHIVE); - this.state = 2873; + this.state = 2870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2870; + this.state = 2867; this.partitionSpec(); } } - this.state = 2875; + this.state = 2872; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14085,19 +14064,19 @@ export class HiveSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2876; + this.state = 2873; this.match(HiveSqlParser.KW_UNARCHIVE); - this.state = 2880; + this.state = 2877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 237) { { { - this.state = 2877; + this.state = 2874; this.partitionSpec(); } } - this.state = 2882; + this.state = 2879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14106,59 +14085,59 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2883; + this.state = 2880; this.match(HiveSqlParser.KW_SET); - this.state = 2884; + this.state = 2881; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2885; + this.state = 2882; this.tableProperties(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2886; + this.state = 2883; this.match(HiveSqlParser.KW_UNSET); - this.state = 2887; + this.state = 2884; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 2889; + this.state = 2886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 2888; + this.state = 2885; this.ifExists(); } } - this.state = 2891; + this.state = 2888; this.tableProperties(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2892; + this.state = 2889; this.tableSkewed(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2893; + this.state = 2890; this.match(HiveSqlParser.KW_NOT); - this.state = 2896; + this.state = 2893; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SKEWED: { - this.state = 2894; + this.state = 2891; this.match(HiveSqlParser.KW_SKEWED); } break; case HiveSqlParser.KW_STORED: { - this.state = 2895; + this.state = 2892; this.storedAsDirs(); } break; @@ -14170,61 +14149,61 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 2898; + this.state = 2895; this.match(HiveSqlParser.KW_EXCHANGE); - this.state = 2899; + this.state = 2896; this.partitionSpec(); - this.state = 2900; + this.state = 2897; this.match(HiveSqlParser.KW_WITH); - this.state = 2901; + this.state = 2898; this.match(HiveSqlParser.KW_TABLE); - this.state = 2902; + this.state = 2899; localContext._exchangename = this.tableName(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 2904; + this.state = 2901; this.match(HiveSqlParser.KW_PARTITION); - this.state = 2905; + this.state = 2902; this.match(HiveSqlParser.KW_COLUMN); - this.state = 2906; + this.state = 2903; this.match(HiveSqlParser.LPAREN); - this.state = 2907; + this.state = 2904; this.columnNameType(); - this.state = 2908; + this.state = 2905; this.match(HiveSqlParser.RPAREN); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 2910; + this.state = 2907; this.match(HiveSqlParser.KW_DROP); - this.state = 2911; + this.state = 2908; this.match(HiveSqlParser.KW_CONSTRAINT); - this.state = 2912; + this.state = 2909; localContext._cName = this.id_(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 2913; + this.state = 2910; this.match(HiveSqlParser.KW_ADD); - this.state = 2916; + this.state = 2913; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { case 1: { - this.state = 2914; + this.state = 2911; localContext._fk = this.alterForeignKeyWithName(); } break; case 2: { - this.state = 2915; + this.state = 2912; this.alterConstraintWithName(); } break; @@ -14234,52 +14213,52 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 2919; + this.state = 2916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 2918; + this.state = 2915; this.partitionSpec(); } } - this.state = 2921; + this.state = 2918; this.alterTblPartitionStatementSuffix(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 2922; + this.state = 2919; this.match(HiveSqlParser.KW_SET); - this.state = 2923; + this.state = 2920; this.match(HiveSqlParser.KW_OWNER); - this.state = 2924; + this.state = 2921; this.principalName(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 2925; + this.state = 2922; this.match(HiveSqlParser.KW_SET); - this.state = 2926; + this.state = 2923; this.match(HiveSqlParser.KW_PARTITION); - this.state = 2927; + this.state = 2924; this.match(HiveSqlParser.KW_SPEC); - this.state = 2928; + this.state = 2925; this.match(HiveSqlParser.LPAREN); - this.state = 2929; + this.state = 2926; localContext._spec = this.partitionTransformSpec(); - this.state = 2930; + this.state = 2927; this.match(HiveSqlParser.RPAREN); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 2932; + this.state = 2929; this.alterStatementSuffixExecute(); } break; @@ -14304,62 +14283,62 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 420, HiveSqlParser.RULE_alterTblPartitionStatementSuffix); let _la: number; try { - this.state = 3067; + this.state = 3064; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 365, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 364, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2935; + this.state = 2932; this.match(HiveSqlParser.KW_SET); - this.state = 2936; + this.state = 2933; this.match(HiveSqlParser.KW_FILEFORMAT); - this.state = 2937; + this.state = 2934; this.fileFormat(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2938; + this.state = 2935; this.match(HiveSqlParser.KW_SET); - this.state = 2939; + this.state = 2936; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2940; + this.state = 2937; localContext._newLoc = this.match(HiveSqlParser.StringLiteral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2941; + this.state = 2938; this.match(HiveSqlParser.KW_CONCATENATE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2942; + this.state = 2939; this.match(HiveSqlParser.KW_SET); - this.state = 2952; + this.state = 2949; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SERDE: { - this.state = 2943; + this.state = 2940; this.match(HiveSqlParser.KW_SERDE); - this.state = 2944; + this.state = 2941; localContext._serdeName = this.match(HiveSqlParser.StringLiteral); - this.state = 2948; + this.state = 2945; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: { - this.state = 2945; + this.state = 2942; this.match(HiveSqlParser.KW_WITH); - this.state = 2946; + this.state = 2943; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2947; + this.state = 2944; this.tableProperties(); } break; @@ -14368,9 +14347,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_SERDEPROPERTIES: { - this.state = 2950; + this.state = 2947; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2951; + this.state = 2948; this.tableProperties(); } break; @@ -14382,75 +14361,75 @@ export class HiveSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2954; + this.state = 2951; this.match(HiveSqlParser.KW_UNSET); - this.state = 2955; + this.state = 2952; this.match(HiveSqlParser.KW_SERDEPROPERTIES); - this.state = 2956; + this.state = 2953; this.tableProperties(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2957; + this.state = 2954; this.match(HiveSqlParser.KW_RENAME); - this.state = 2958; + this.state = 2955; this.match(HiveSqlParser.KW_TO); - this.state = 2959; + this.state = 2956; this.partitionSpec(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2960; + this.state = 2957; this.match(HiveSqlParser.KW_INTO); - this.state = 2961; + this.state = 2958; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2962; + this.state = 2959; this.match(HiveSqlParser.KW_BUCKETS); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2963; + this.state = 2960; this.match(HiveSqlParser.KW_SET); - this.state = 2964; + this.state = 2961; this.match(HiveSqlParser.KW_SKEWED); - this.state = 2965; + this.state = 2962; this.match(HiveSqlParser.KW_LOCATION); - this.state = 2966; + this.state = 2963; this.match(HiveSqlParser.LPAREN); - this.state = 2967; + this.state = 2964; this.skewedLocationMap(); - this.state = 2972; + this.state = 2969; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 2968; + this.state = 2965; this.match(HiveSqlParser.COMMA); - this.state = 2969; + this.state = 2966; this.skewedLocationMap(); } } - this.state = 2974; + this.state = 2971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2975; + this.state = 2972; this.match(HiveSqlParser.RPAREN); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2977; + this.state = 2974; this.match(HiveSqlParser.KW_NOT); - this.state = 2978; + this.state = 2975; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 315)) { this.errorHandler.recoverInline(this); @@ -14464,77 +14443,77 @@ export class HiveSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2979; + this.state = 2976; this.tableBuckets(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 2980; + this.state = 2977; this.match(HiveSqlParser.KW_COMPACT); - this.state = 2981; + this.state = 2978; localContext._compactType = this.match(HiveSqlParser.StringLiteral); - this.state = 2984; + this.state = 2981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 2982; + this.state = 2979; this.match(HiveSqlParser.KW_AND); - this.state = 2983; + this.state = 2980; this.match(HiveSqlParser.KW_WAIT); } } - this.state = 2990; + this.state = 2987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2986; + this.state = 2983; this.match(HiveSqlParser.KW_CLUSTERED); - this.state = 2987; + this.state = 2984; this.match(HiveSqlParser.KW_INTO); - this.state = 2988; + this.state = 2985; localContext._num = this.match(HiveSqlParser.Number); - this.state = 2989; + this.state = 2986; this.match(HiveSqlParser.KW_BUCKETS); } } - this.state = 2993; + this.state = 2990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 2992; + this.state = 2989; this.orderByClause(); } } - this.state = 2996; + this.state = 2993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 246) { { - this.state = 2995; + this.state = 2992; this.compactionPool(); } } - this.state = 3002; + this.state = 2999; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { case 1: { - this.state = 2998; + this.state = 2995; this.match(HiveSqlParser.KW_WITH); - this.state = 2999; + this.state = 2996; this.match(HiveSqlParser.KW_OVERWRITE); - this.state = 3000; + this.state = 2997; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3001; + this.state = 2998; this.tableProperties(); } break; @@ -14544,36 +14523,36 @@ export class HiveSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3004; + this.state = 3001; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3005; + this.state = 3002; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 3006; + this.state = 3003; this.match(HiveSqlParser.KW_FOR); - this.state = 3008; + this.state = 3005; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { case 1: { - this.state = 3007; + this.state = 3004; this.match(HiveSqlParser.KW_COLUMN); } break; } - this.state = 3010; + this.state = 3007; localContext._colName = this.columnName(); - this.state = 3011; + this.state = 3008; this.match(HiveSqlParser.KW_SET); - this.state = 3012; + this.state = 3009; this.tableProperties(); - this.state = 3015; + this.state = 3012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3013; + this.state = 3010; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3014; + this.state = 3011; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } @@ -14583,73 +14562,73 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3017; + this.state = 3014; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3018; + this.state = 3015; this.match(HiveSqlParser.KW_STATISTICS); - this.state = 3019; + this.state = 3016; this.match(HiveSqlParser.KW_SET); - this.state = 3020; + this.state = 3017; this.tableProperties(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3021; + this.state = 3018; this.match(HiveSqlParser.KW_CHANGE); - this.state = 3023; + this.state = 3020; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: { - this.state = 3022; + this.state = 3019; this.match(HiveSqlParser.KW_COLUMN); } break; } - this.state = 3025; + this.state = 3022; localContext._oldName = this.columnName(); - this.state = 3026; + this.state = 3023; localContext._newName = this.columnNameCreate(); - this.state = 3027; + this.state = 3024; this.columnType(); - this.state = 3029; + this.state = 3026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 40 || _la === 55 || _la === 83 || _la === 216 || _la === 251 || _la === 269 || _la === 358) { { - this.state = 3028; + this.state = 3025; this.alterColumnConstraint(); } } - this.state = 3033; + this.state = 3030; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3031; + this.state = 3028; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3032; + this.state = 3029; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3038; + this.state = 3035; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_FIRST: { - this.state = 3035; + this.state = 3032; localContext._first = this.match(HiveSqlParser.KW_FIRST); } break; case HiveSqlParser.KW_AFTER: { - this.state = 3036; + this.state = 3033; this.match(HiveSqlParser.KW_AFTER); - this.state = 3037; + this.state = 3034; localContext._afterCol = this.id_(); } break; @@ -14705,12 +14684,12 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 3041; + this.state = 3038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3040; + this.state = 3037; this.restrictOrCascade(); } } @@ -14720,38 +14699,38 @@ export class HiveSqlParser extends SQLParserBase { case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3045; + this.state = 3042; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 3043; + this.state = 3040; localContext._add = this.match(HiveSqlParser.KW_ADD); } break; case HiveSqlParser.KW_REPLACE: { - this.state = 3044; + this.state = 3041; localContext._replace = this.match(HiveSqlParser.KW_REPLACE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3047; + this.state = 3044; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3048; + this.state = 3045; this.match(HiveSqlParser.LPAREN); - this.state = 3049; + this.state = 3046; this.columnNameTypeList(); - this.state = 3050; + this.state = 3047; this.match(HiveSqlParser.RPAREN); - this.state = 3052; + this.state = 3049; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3051; + this.state = 3048; this.restrictOrCascade(); } } @@ -14761,16 +14740,16 @@ export class HiveSqlParser extends SQLParserBase { case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3054; + this.state = 3051; this.match(HiveSqlParser.KW_UPDATE); - this.state = 3055; + this.state = 3052; this.match(HiveSqlParser.KW_COLUMNS); - this.state = 3057; + this.state = 3054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34 || _la === 282) { { - this.state = 3056; + this.state = 3053; this.restrictOrCascade(); } } @@ -14780,22 +14759,22 @@ export class HiveSqlParser extends SQLParserBase { case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3059; + this.state = 3056; this.enableSpecification(); - this.state = 3065; + this.state = 3062; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NO_DROP: { { - this.state = 3060; + this.state = 3057; this.match(HiveSqlParser.KW_NO_DROP); - this.state = 3062; + this.state = 3059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 3061; + this.state = 3058; this.match(HiveSqlParser.KW_CASCADE); } } @@ -14805,7 +14784,7 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_OFFLINE: { - this.state = 3064; + this.state = 3061; this.match(HiveSqlParser.KW_OFFLINE); } break; @@ -14835,88 +14814,88 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 422, HiveSqlParser.RULE_alterViewStatementSuffix); let _la: number; try { - this.state = 3095; + this.state = 3092; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 3069; + this.state = 3066; this.match(HiveSqlParser.KW_SET); - this.state = 3070; + this.state = 3067; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3071; + this.state = 3068; this.tableProperties(); } break; case HiveSqlParser.KW_UNSET: this.enterOuterAlt(localContext, 2); { - this.state = 3072; + this.state = 3069; this.match(HiveSqlParser.KW_UNSET); - this.state = 3073; + this.state = 3070; this.match(HiveSqlParser.KW_TBLPROPERTIES); - this.state = 3075; + this.state = 3072; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3074; + this.state = 3071; this.ifExists(); } } - this.state = 3077; + this.state = 3074; this.tableProperties(); } break; case HiveSqlParser.KW_RENAME: this.enterOuterAlt(localContext, 3); { - this.state = 3078; + this.state = 3075; this.match(HiveSqlParser.KW_RENAME); - this.state = 3079; + this.state = 3076; this.match(HiveSqlParser.KW_TO); - this.state = 3080; + this.state = 3077; this.tableNameCreate(); } break; case HiveSqlParser.KW_ADD: this.enterOuterAlt(localContext, 4); { - this.state = 3081; + this.state = 3078; this.match(HiveSqlParser.KW_ADD); - this.state = 3083; + this.state = 3080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3082; + this.state = 3079; this.ifNotExists(); } } - this.state = 3089; + this.state = 3086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3085; + this.state = 3082; this.partitionSpec(); - this.state = 3087; + this.state = 3084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3086; + this.state = 3083; this.locationPath(); } } } } - this.state = 3091; + this.state = 3088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 237); @@ -14925,7 +14904,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DROP: this.enterOuterAlt(localContext, 5); { - this.state = 3093; + this.state = 3090; this.alterStatementSuffixDropPartitions(); } break; @@ -14937,7 +14916,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 6); { - this.state = 3094; + this.state = 3091; this.selectStatementWithCTE(); } break; @@ -14964,43 +14943,43 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 424, HiveSqlParser.RULE_alterDatabaseStatementSuffix); let _la: number; try { - this.state = 3112; + this.state = 3109; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 370, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3097; + this.state = 3094; localContext._name = this.dbSchemaName(); - this.state = 3098; + this.state = 3095; this.match(HiveSqlParser.KW_SET); - this.state = 3099; + this.state = 3096; this.match(HiveSqlParser.KW_DBPROPERTIES); - this.state = 3100; + this.state = 3097; this.keyValueProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3102; + this.state = 3099; localContext._dbName = this.dbSchemaName(); - this.state = 3103; + this.state = 3100; this.match(HiveSqlParser.KW_SET); - this.state = 3104; + this.state = 3101; this.match(HiveSqlParser.KW_OWNER); - this.state = 3105; + this.state = 3102; this.principalAlterName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3107; + this.state = 3104; localContext._dbName = this.dbSchemaName(); - this.state = 3108; + this.state = 3105; this.match(HiveSqlParser.KW_SET); - this.state = 3109; + this.state = 3106; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 196)) { this.errorHandler.recoverInline(this); @@ -15009,7 +14988,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3110; + this.state = 3107; localContext._newLocation = this.match(HiveSqlParser.StringLiteral); } break; @@ -15033,45 +15012,45 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new AlterDataConnectorStatementSuffixContext(this.context, this.state); this.enterRule(localContext, 426, HiveSqlParser.RULE_alterDataConnectorStatementSuffix); try { - this.state = 3129; + this.state = 3126; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3114; + this.state = 3111; localContext._name = this.dbSchemaName(); - this.state = 3115; + this.state = 3112; this.match(HiveSqlParser.KW_SET); - this.state = 3116; + this.state = 3113; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3117; + this.state = 3114; this.keyValueProperties(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3119; + this.state = 3116; localContext._dcName = this.dbSchemaName(); - this.state = 3120; + this.state = 3117; this.match(HiveSqlParser.KW_SET); - this.state = 3121; + this.state = 3118; this.match(HiveSqlParser.KW_OWNER); - this.state = 3122; + this.state = 3119; this.principalAlterName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3124; + this.state = 3121; localContext._dcName = this.dbSchemaName(); - this.state = 3125; + this.state = 3122; this.match(HiveSqlParser.KW_SET); - this.state = 3126; + this.state = 3123; this.match(HiveSqlParser.KW_URL); - this.state = 3127; + this.state = 3124; localContext._newUri = this.match(HiveSqlParser.StringLiteral); } break; @@ -15097,9 +15076,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3131; + this.state = 3128; this.match(HiveSqlParser.KW_LOCATION); - this.state = 3132; + this.state = 3129; localContext._locn = this.match(HiveSqlParser.StringLiteral); } } @@ -15124,68 +15103,68 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3134; + this.state = 3131; this.match(HiveSqlParser.KW_DROP); - this.state = 3136; + this.state = 3133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3135; + this.state = 3132; this.ifExists(); } } - this.state = 3138; + this.state = 3135; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3139; + this.state = 3136; this.partitionSelectorSpec(); - this.state = 3145; + this.state = 3142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3140; + this.state = 3137; this.match(HiveSqlParser.COMMA); - this.state = 3141; + this.state = 3138; this.match(HiveSqlParser.KW_PARTITION); - this.state = 3142; + this.state = 3139; this.partitionSelectorSpec(); } } - this.state = 3147; + this.state = 3144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3150; + this.state = 3147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 3148; + this.state = 3145; this.match(HiveSqlParser.KW_IGNORE); - this.state = 3149; + this.state = 3146; this.match(HiveSqlParser.KW_PROTECTION); } } - this.state = 3153; + this.state = 3150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 255) { { - this.state = 3152; + this.state = 3149; this.match(HiveSqlParser.KW_PURGE); } } - this.state = 3156; + this.state = 3153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 3155; + this.state = 3152; this.replicationClause(); } } @@ -15212,7 +15191,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3160; + this.state = 3157; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -15470,22 +15449,22 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: case HiveSqlParser.CharSetName: { - this.state = 3158; + this.state = 3155; this.constant(); } break; case HiveSqlParser.LPAREN: { - this.state = 3159; + this.state = 3156; this.skewedColumnValuePair(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3162; + this.state = 3159; this.match(HiveSqlParser.EQUAL); - this.state = 3163; + this.state = 3160; localContext._value = this.match(HiveSqlParser.StringLiteral); } } @@ -15510,18 +15489,18 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3165; + this.state = 3162; this.match(HiveSqlParser.KW_EXECUTE); - this.state = 3175; + this.state = 3172; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLBACK: { - this.state = 3166; + this.state = 3163; this.match(HiveSqlParser.KW_ROLLBACK); - this.state = 3167; + this.state = 3164; this.match(HiveSqlParser.LPAREN); - this.state = 3168; + this.state = 3165; localContext._rollbackParam = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { @@ -15535,28 +15514,28 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_EXPIRE_SNAPSHOTS: { - this.state = 3169; + this.state = 3166; this.match(HiveSqlParser.KW_EXPIRE_SNAPSHOTS); - this.state = 3170; + this.state = 3167; this.match(HiveSqlParser.LPAREN); - this.state = 3171; + this.state = 3168; localContext._expireParam = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_SET_CURRENT_SNAPSHOT: { - this.state = 3172; + this.state = 3169; this.match(HiveSqlParser.KW_SET_CURRENT_SNAPSHOT); - this.state = 3173; + this.state = 3170; this.match(HiveSqlParser.LPAREN); - this.state = 3174; + this.state = 3171; localContext._snapshotParam = this.match(HiveSqlParser.Number); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3177; + this.state = 3174; this.match(HiveSqlParser.RPAREN); } } @@ -15579,36 +15558,36 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 436, HiveSqlParser.RULE_fileFormat); let _la: number; try { - this.state = 3192; + this.state = 3189; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3179; + this.state = 3176; this.match(HiveSqlParser.KW_INPUTFORMAT); - this.state = 3180; + this.state = 3177; localContext._inFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3181; + this.state = 3178; this.match(HiveSqlParser.KW_OUTPUTFORMAT); - this.state = 3182; + this.state = 3179; localContext._outFmt = this.match(HiveSqlParser.StringLiteral); - this.state = 3183; + this.state = 3180; this.match(HiveSqlParser.KW_SERDE); - this.state = 3184; + this.state = 3181; localContext._serdeCls = this.match(HiveSqlParser.StringLiteral); - this.state = 3189; + this.state = 3186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 159) { { - this.state = 3185; + this.state = 3182; this.match(HiveSqlParser.KW_INPUTDRIVER); - this.state = 3186; + this.state = 3183; localContext._inDriver = this.match(HiveSqlParser.StringLiteral); - this.state = 3187; + this.state = 3184; this.match(HiveSqlParser.KW_OUTPUTDRIVER); - this.state = 3188; + this.state = 3185; localContext._outDriver = this.match(HiveSqlParser.StringLiteral); } } @@ -15618,7 +15597,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3191; + this.state = 3188; localContext._genericSpec = this.id_(); } break; @@ -15642,37 +15621,37 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new LikeTableOrFileContext(this.context, this.state); this.enterRule(localContext, 438, HiveSqlParser.RULE_likeTableOrFile); try { - this.state = 3203; + this.state = 3200; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 382, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3194; + this.state = 3191; this.match(HiveSqlParser.KW_LIKE); - this.state = 3195; + this.state = 3192; this.match(HiveSqlParser.KW_FILE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3196; + this.state = 3193; this.match(HiveSqlParser.KW_LIKE); - this.state = 3197; + this.state = 3194; this.match(HiveSqlParser.KW_FILE); - this.state = 3198; + this.state = 3195; localContext._format = this.id_(); - this.state = 3199; + this.state = 3196; localContext._uri = this.match(HiveSqlParser.StringLiteral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3201; + this.state = 3198; this.match(HiveSqlParser.KW_LIKE); - this.state = 3202; + this.state = 3199; localContext._likeName = this.tableName(); } break; @@ -15697,121 +15676,121 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 440, HiveSqlParser.RULE_createTableStatement); let _la: number; try { - this.state = 3340; + this.state = 3337; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3205; + this.state = 3202; this.match(HiveSqlParser.KW_CREATE); - this.state = 3207; + this.state = 3204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 3206; + this.state = 3203; localContext._temp = this.match(HiveSqlParser.KW_TEMPORARY); } } - this.state = 3210; + this.state = 3207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 345) { { - this.state = 3209; + this.state = 3206; localContext._trans = this.match(HiveSqlParser.KW_TRANSACTIONAL); } } - this.state = 3213; + this.state = 3210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 3212; + this.state = 3209; localContext._ext = this.match(HiveSqlParser.KW_EXTERNAL); } } - this.state = 3215; + this.state = 3212; this.match(HiveSqlParser.KW_TABLE); - this.state = 3217; + this.state = 3214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3216; + this.state = 3213; this.ifNotExists(); } } - this.state = 3219; + this.state = 3216; localContext._name = this.tableNameCreate(); - this.state = 3276; + this.state = 3273; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 3220; + this.state = 3217; this.likeTableOrFile(); - this.state = 3222; + this.state = 3219; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3221; + this.state = 3218; this.createTablePartitionSpec(); } } - this.state = 3225; + this.state = 3222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3224; + this.state = 3221; this.tableRowFormat(); } } - this.state = 3228; + this.state = 3225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3227; + this.state = 3224; this.tableFileFormat(); } } - this.state = 3231; + this.state = 3228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3230; + this.state = 3227; this.locationPath(); } } - this.state = 3234; + this.state = 3231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3233; + this.state = 3230; this.tablePropertiesPrefixed(); } } - this.state = 3237; + this.state = 3234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3236; + this.state = 3233; this.tableLifecycle(); } } @@ -15875,118 +15854,118 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.SEMICOLON: case HiveSqlParser.LPAREN: { - this.state = 3243; + this.state = 3240; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 393, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 392, this.context) ) { case 1: { - this.state = 3239; + this.state = 3236; this.match(HiveSqlParser.LPAREN); - this.state = 3240; + this.state = 3237; this.columnNameTypeOrConstraintList(); - this.state = 3241; + this.state = 3238; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 3246; + this.state = 3243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3245; + this.state = 3242; this.tableComment(); } } - this.state = 3249; + this.state = 3246; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3248; + this.state = 3245; this.createTablePartitionSpec(); } } - this.state = 3252; + this.state = 3249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 3251; + this.state = 3248; this.tableBuckets(); } } - this.state = 3255; + this.state = 3252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 310) { { - this.state = 3254; + this.state = 3251; this.tableSkewed(); } } - this.state = 3258; + this.state = 3255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3257; + this.state = 3254; this.tableRowFormat(); } } - this.state = 3261; + this.state = 3258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3260; + this.state = 3257; this.tableFileFormat(); } } - this.state = 3264; + this.state = 3261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3263; + this.state = 3260; this.locationPath(); } } - this.state = 3267; + this.state = 3264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3266; + this.state = 3263; this.tablePropertiesPrefixed(); } } - this.state = 3270; + this.state = 3267; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3269; + this.state = 3266; this.tableLifecycle(); } } - this.state = 3274; + this.state = 3271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3272; + this.state = 3269; this.match(HiveSqlParser.KW_AS); - this.state = 3273; + this.state = 3270; this.selectStatementWithCTE(); } } @@ -16001,77 +15980,77 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3278; + this.state = 3275; this.match(HiveSqlParser.KW_CREATE); - this.state = 3279; + this.state = 3276; localContext._mgd = this.match(HiveSqlParser.KW_MANAGED); - this.state = 3280; + this.state = 3277; this.match(HiveSqlParser.KW_TABLE); - this.state = 3282; + this.state = 3279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3281; + this.state = 3278; this.ifNotExists(); } } - this.state = 3284; + this.state = 3281; localContext._name = this.tableNameCreate(); - this.state = 3338; + this.state = 3335; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 3285; + this.state = 3282; this.likeTableOrFile(); - this.state = 3287; + this.state = 3284; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3286; + this.state = 3283; this.tableRowFormat(); } } - this.state = 3290; + this.state = 3287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3289; + this.state = 3286; this.tableFileFormat(); } } - this.state = 3293; + this.state = 3290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3292; + this.state = 3289; this.locationPath(); } } - this.state = 3296; + this.state = 3293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3295; + this.state = 3292; this.tablePropertiesPrefixed(); } } - this.state = 3299; + this.state = 3296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3298; + this.state = 3295; this.tableLifecycle(); } } @@ -16135,118 +16114,118 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.SEMICOLON: case HiveSqlParser.LPAREN: { - this.state = 3305; + this.state = 3302; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 411, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: { - this.state = 3301; + this.state = 3298; this.match(HiveSqlParser.LPAREN); - this.state = 3302; + this.state = 3299; this.columnNameTypeOrConstraintList(); - this.state = 3303; + this.state = 3300; this.match(HiveSqlParser.RPAREN); } break; } - this.state = 3308; + this.state = 3305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3307; + this.state = 3304; this.tableComment(); } } - this.state = 3311; + this.state = 3308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 3310; + this.state = 3307; this.createTablePartitionSpec(); } } - this.state = 3314; + this.state = 3311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 3313; + this.state = 3310; this.tableBuckets(); } } - this.state = 3317; + this.state = 3314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 310) { { - this.state = 3316; + this.state = 3313; this.tableSkewed(); } } - this.state = 3320; + this.state = 3317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 291) { { - this.state = 3319; + this.state = 3316; this.tableRowFormat(); } } - this.state = 3323; + this.state = 3320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 321) { { - this.state = 3322; + this.state = 3319; this.tableFileFormat(); } } - this.state = 3326; + this.state = 3323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 189) { { - this.state = 3325; + this.state = 3322; this.locationPath(); } } - this.state = 3329; + this.state = 3326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 332) { { - this.state = 3328; + this.state = 3325; this.tablePropertiesPrefixed(); } } - this.state = 3332; + this.state = 3329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 183) { { - this.state = 3331; + this.state = 3328; this.tableLifecycle(); } } - this.state = 3336; + this.state = 3333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3334; + this.state = 3331; this.match(HiveSqlParser.KW_AS); - this.state = 3335; + this.state = 3332; this.selectStatementWithCTE(); } } @@ -16281,68 +16260,68 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3342; + this.state = 3339; this.match(HiveSqlParser.KW_CREATE); - this.state = 3343; + this.state = 3340; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3345; + this.state = 3342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3344; + this.state = 3341; this.ifNotExists(); } } - this.state = 3347; + this.state = 3344; localContext._name = this.id_(); - this.state = 3350; + this.state = 3347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 352) { { - this.state = 3348; + this.state = 3345; this.match(HiveSqlParser.KW_TYPE); - this.state = 3349; + this.state = 3346; localContext._dcType = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3354; + this.state = 3351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 367) { { - this.state = 3352; + this.state = 3349; this.match(HiveSqlParser.KW_URL); - this.state = 3353; + this.state = 3350; localContext._url = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3358; + this.state = 3355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 47) { { - this.state = 3356; + this.state = 3353; this.match(HiveSqlParser.KW_COMMENT); - this.state = 3357; + this.state = 3354; localContext._comment = this.match(HiveSqlParser.StringLiteral); } } - this.state = 3363; + this.state = 3360; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { case 1: { - this.state = 3360; + this.state = 3357; this.match(HiveSqlParser.KW_WITH); - this.state = 3361; + this.state = 3358; this.match(HiveSqlParser.KW_DCPROPERTIES); - this.state = 3362; + this.state = 3359; localContext._dcprops = this.keyValueProperties(); } break; @@ -16370,21 +16349,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3365; + this.state = 3362; this.match(HiveSqlParser.KW_DROP); - this.state = 3366; + this.state = 3363; this.match(HiveSqlParser.KW_DATACONNECTOR); - this.state = 3368; + this.state = 3365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 3367; + this.state = 3364; this.ifExists(); } } - this.state = 3370; + this.state = 3367; this.id_(); } } @@ -16409,23 +16388,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3377; + this.state = 3374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { { - this.state = 3372; + this.state = 3369; this.id_(); - this.state = 3373; + this.state = 3370; this.match(HiveSqlParser.DOT); } } - this.state = 3379; + this.state = 3376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3380; + this.state = 3377; this.match(HiveSqlParser.STAR); } } @@ -16450,21 +16429,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3382; + this.state = 3379; this.expression(); - this.state = 3387; + this.state = 3384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3383; + this.state = 3380; this.match(HiveSqlParser.COMMA); - this.state = 3384; + this.state = 3381; this.expression(); } } - this.state = 3389; + this.state = 3386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16491,21 +16470,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3390; + this.state = 3387; this.id_(); - this.state = 3395; + this.state = 3392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3391; + this.state = 3388; this.match(HiveSqlParser.COMMA); - this.state = 3392; + this.state = 3389; this.id_(); } } - this.state = 3397; + this.state = 3394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16531,9 +16510,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3398; + this.state = 3395; this.match(HiveSqlParser.KW_FROM); - this.state = 3399; + this.state = 3396; this.fromSource(); } } @@ -16556,29 +16535,29 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 454, HiveSqlParser.RULE_fromSource); let _la: number; try { - this.state = 3410; + this.state = 3407; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNIQUEJOIN: this.enterOuterAlt(localContext, 1); { - this.state = 3401; + this.state = 3398; this.match(HiveSqlParser.KW_UNIQUEJOIN); - this.state = 3402; + this.state = 3399; this.uniqueJoinSource(); - this.state = 3405; + this.state = 3402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3403; + this.state = 3400; this.match(HiveSqlParser.COMMA); - this.state = 3404; + this.state = 3401; this.uniqueJoinSource(); } } - this.state = 3407; + this.state = 3404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 397); @@ -16828,7 +16807,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 2); { - this.state = 3409; + this.state = 3406; this.joinSource(); } break; @@ -16855,109 +16834,109 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 456, HiveSqlParser.RULE_atomjoinSource); try { let alternative: number; - this.state = 3444; + this.state = 3441; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3412; + this.state = 3409; this.tableSource(); - this.state = 3416; + this.state = 3413; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 434, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3413; + this.state = 3410; this.lateralView(); } } } - this.state = 3418; + this.state = 3415; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 434, this.context); } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3419; + this.state = 3416; this.virtualTableSource(); - this.state = 3423; + this.state = 3420; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, 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 = 3420; + this.state = 3417; this.lateralView(); } } } - this.state = 3425; + this.state = 3422; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 435, this.context); } } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3426; + this.state = 3423; this.subQuerySource(); - this.state = 3430; + this.state = 3427; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3427; + this.state = 3424; this.lateralView(); } } } - this.state = 3432; + this.state = 3429; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 436, this.context); } } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3433; + this.state = 3430; this.partitionedTableFunction(); - this.state = 3437; + this.state = 3434; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 438, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3434; + this.state = 3431; this.lateralView(); } } } - this.state = 3439; + this.state = 3436; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 438, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 437, this.context); } } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3440; + this.state = 3437; this.match(HiveSqlParser.LPAREN); - this.state = 3441; + this.state = 3438; this.joinSource(); - this.state = 3442; + this.state = 3439; this.match(HiveSqlParser.RPAREN); } break; @@ -16984,46 +16963,46 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3446; + this.state = 3443; this.atomjoinSource(); - this.state = 3464; + this.state = 3461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 60 || ((((_la - 140)) & ~0x1F) === 0 && ((1 << (_la - 140)) & 2147614721) !== 0) || _la === 180 || _la === 285 || _la === 397) { { { - this.state = 3447; + this.state = 3444; this.joinToken(); - this.state = 3448; + this.state = 3445; this.joinSourcePart(); - this.state = 3460; + this.state = 3457; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ON: { - this.state = 3449; + this.state = 3446; this.match(HiveSqlParser.KW_ON); - this.state = 3456; + this.state = 3453; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { case 1: { - this.state = 3450; + this.state = 3447; this.expression(); } break; case 2: { - this.state = 3451; + this.state = 3448; this.columnNamePathAllowEmpty(); - this.state = 3454; + this.state = 3451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 405) { { - this.state = 3452; + this.state = 3449; this.match(HiveSqlParser.EQUAL); - this.state = 3453; + this.state = 3450; this.columnNamePathAllowEmpty(); } } @@ -17035,9 +17014,9 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_USING: { - this.state = 3458; + this.state = 3455; this.match(HiveSqlParser.KW_USING); - this.state = 3459; + this.state = 3456; this.columnParenthesesList(); } break; @@ -17115,7 +17094,7 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 3466; + this.state = 3463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17142,49 +17121,49 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3471; + this.state = 3468; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 443, this.context) ) { case 1: { - this.state = 3467; + this.state = 3464; this.tableSource(); } break; case 2: { - this.state = 3468; + this.state = 3465; this.virtualTableSource(); } break; case 3: { - this.state = 3469; + this.state = 3466; this.subQuerySource(); } break; case 4: { - this.state = 3470; + this.state = 3467; this.partitionedTableFunction(); } break; } - this.state = 3476; + this.state = 3473; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 445, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 444, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3473; + this.state = 3470; this.lateralView(); } } } - this.state = 3478; + this.state = 3475; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 445, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 444, this.context); } } } @@ -17209,53 +17188,53 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3480; + this.state = 3477; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 250) { { - this.state = 3479; + this.state = 3476; this.match(HiveSqlParser.KW_PRESERVE); } } - this.state = 3482; + this.state = 3479; localContext._tabname = this.tableOrView(); - this.state = 3484; + this.state = 3481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3483; + this.state = 3480; localContext._ts = this.tableSample(); } } - this.state = 3490; + this.state = 3487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252585854) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 3487; + this.state = 3484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3486; + this.state = 3483; this.match(HiveSqlParser.KW_AS); } } - this.state = 3489; + this.state = 3486; localContext._alias = this.id_(); } } - this.state = 3492; + this.state = 3489; this.match(HiveSqlParser.LPAREN); - this.state = 3493; + this.state = 3490; this.expressionList(); - this.state = 3494; + this.state = 3491; this.match(HiveSqlParser.RPAREN); } } @@ -17278,13 +17257,13 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 464, HiveSqlParser.RULE_joinToken); let _la: number; try { - this.state = 3510; + this.state = 3507; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.COMMA: this.enterOuterAlt(localContext, 1); { - this.state = 3496; + this.state = 3493; this.match(HiveSqlParser.COMMA); } break; @@ -17296,25 +17275,25 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_RIGHT: this.enterOuterAlt(localContext, 2); { - this.state = 3507; + this.state = 3504; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_INNER: { - this.state = 3497; + this.state = 3494; this.match(HiveSqlParser.KW_INNER); } break; case HiveSqlParser.KW_CROSS: { - this.state = 3498; + this.state = 3495; this.match(HiveSqlParser.KW_CROSS); } break; case HiveSqlParser.KW_FULL: case HiveSqlParser.KW_RIGHT: { - this.state = 3499; + this.state = 3496; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 285)) { this.errorHandler.recoverInline(this); @@ -17323,12 +17302,12 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3501; + this.state = 3498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 231) { { - this.state = 3500; + this.state = 3497; this.match(HiveSqlParser.KW_OUTER); } } @@ -17337,14 +17316,14 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_LEFT: { - this.state = 3503; + this.state = 3500; this.match(HiveSqlParser.KW_LEFT); - this.state = 3505; + this.state = 3502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 231 || _la === 300) { { - this.state = 3504; + this.state = 3501; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 231 || _la === 300)) { this.errorHandler.recoverInline(this); @@ -17363,7 +17342,7 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 3509; + this.state = 3506; this.match(HiveSqlParser.KW_JOIN); } break; @@ -17391,48 +17370,48 @@ export class HiveSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 3569; + this.state = 3566; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3512; + this.state = 3509; this.match(HiveSqlParser.KW_LATERAL); - this.state = 3513; + this.state = 3510; this.match(HiveSqlParser.KW_VIEW); - this.state = 3514; + this.state = 3511; this.match(HiveSqlParser.KW_OUTER); - this.state = 3515; + this.state = 3512; this.function_(); - this.state = 3516; + this.state = 3513; localContext._alias = this.tableAlias(); - this.state = 3526; + this.state = 3523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3517; + this.state = 3514; this.match(HiveSqlParser.KW_AS); - this.state = 3518; + this.state = 3515; this.id_(); - this.state = 3523; + this.state = 3520; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 453, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3519; + this.state = 3516; this.match(HiveSqlParser.COMMA); - this.state = 3520; + this.state = 3517; this.id_(); } } } - this.state = 3525; + this.state = 3522; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 454, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 453, this.context); } } } @@ -17442,55 +17421,55 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3529; + this.state = 3526; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 3528; + this.state = 3525; this.match(HiveSqlParser.COMMA); } } - this.state = 3531; + this.state = 3528; this.match(HiveSqlParser.KW_LATERAL); - this.state = 3567; + this.state = 3564; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_VIEW: { - this.state = 3532; + this.state = 3529; this.match(HiveSqlParser.KW_VIEW); - this.state = 3533; + this.state = 3530; this.function_(); - this.state = 3534; + this.state = 3531; localContext._alias = this.tableAlias(); - this.state = 3544; + this.state = 3541; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3535; + this.state = 3532; this.match(HiveSqlParser.KW_AS); - this.state = 3536; + this.state = 3533; this.id_(); - this.state = 3541; + this.state = 3538; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 456, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3537; + this.state = 3534; this.match(HiveSqlParser.COMMA); - this.state = 3538; + this.state = 3535; this.id_(); } } } - this.state = 3543; + this.state = 3540; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 456, this.context); } } } @@ -17499,52 +17478,52 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_TABLE: { - this.state = 3546; + this.state = 3543; this.match(HiveSqlParser.KW_TABLE); - this.state = 3547; + this.state = 3544; this.match(HiveSqlParser.LPAREN); - this.state = 3548; + this.state = 3545; this.valuesClause(); - this.state = 3549; + this.state = 3546; this.match(HiveSqlParser.RPAREN); - this.state = 3551; + this.state = 3548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3550; + this.state = 3547; this.match(HiveSqlParser.KW_AS); } } - this.state = 3553; + this.state = 3550; localContext._alias = this.tableAlias(); - this.state = 3565; + this.state = 3562; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: { - this.state = 3554; + this.state = 3551; this.match(HiveSqlParser.LPAREN); - this.state = 3555; + this.state = 3552; this.id_(); - this.state = 3560; + this.state = 3557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3556; + this.state = 3553; this.match(HiveSqlParser.COMMA); - this.state = 3557; + this.state = 3554; this.id_(); } } - this.state = 3562; + this.state = 3559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3563; + this.state = 3560; this.match(HiveSqlParser.RPAREN); } break; @@ -17578,7 +17557,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3571; + this.state = 3568; this.id_(); } } @@ -17601,75 +17580,75 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 470, HiveSqlParser.RULE_tableSample); let _la: number; try { - this.state = 3600; + this.state = 3597; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3573; + this.state = 3570; this.match(HiveSqlParser.KW_TABLESAMPLE); - this.state = 3574; + this.state = 3571; this.match(HiveSqlParser.LPAREN); - this.state = 3575; + this.state = 3572; this.match(HiveSqlParser.KW_BUCKET); - this.state = 3576; + this.state = 3573; localContext._numerator = this.match(HiveSqlParser.Number); - this.state = 3577; + this.state = 3574; this.match(HiveSqlParser.KW_OUT); - this.state = 3578; + this.state = 3575; this.match(HiveSqlParser.KW_OF); - this.state = 3579; + this.state = 3576; localContext._denominator = this.match(HiveSqlParser.Number); - this.state = 3589; + this.state = 3586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 224) { { - this.state = 3580; + this.state = 3577; this.match(HiveSqlParser.KW_ON); - this.state = 3581; + this.state = 3578; localContext._expression = this.expression(); localContext._expr.push(localContext._expression); - this.state = 3586; + this.state = 3583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3582; + this.state = 3579; this.match(HiveSqlParser.COMMA); - this.state = 3583; + this.state = 3580; localContext._expression = this.expression(); localContext._expr.push(localContext._expression); } } - this.state = 3588; + this.state = 3585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3591; + this.state = 3588; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3592; + this.state = 3589; this.match(HiveSqlParser.KW_TABLESAMPLE); - this.state = 3593; + this.state = 3590; this.match(HiveSqlParser.LPAREN); - this.state = 3597; + this.state = 3594; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.Number: { - this.state = 3594; + this.state = 3591; this.match(HiveSqlParser.Number); - this.state = 3595; + this.state = 3592; _la = this.tokenStream.LA(1); if(!(_la === 241 || _la === 292)) { this.errorHandler.recoverInline(this); @@ -17682,14 +17661,14 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.ByteLengthLiteral: { - this.state = 3596; + this.state = 3593; this.match(HiveSqlParser.ByteLengthLiteral); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3599; + this.state = 3596; this.match(HiveSqlParser.RPAREN); } break; @@ -17716,54 +17695,54 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3602; + this.state = 3599; localContext._tabname = this.tableOrView(); - this.state = 3604; + this.state = 3601; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { case 1: { - this.state = 3603; + this.state = 3600; localContext._props = this.tableProperties(); } break; } - this.state = 3607; + this.state = 3604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 331) { { - this.state = 3606; + this.state = 3603; localContext._ts = this.tableSample(); } } - this.state = 3610; + this.state = 3607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134) { { - this.state = 3609; + this.state = 3606; localContext._asOf = this.asOfClause(); } } - this.state = 3616; + this.state = 3613; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: { - this.state = 3613; + this.state = 3610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3612; + this.state = 3609; this.match(HiveSqlParser.KW_AS); } } - this.state = 3615; + this.state = 3612; localContext._alias = this.id_(); } break; @@ -17790,34 +17769,34 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3618; + this.state = 3615; this.match(HiveSqlParser.KW_FOR); - this.state = 3628; + this.state = 3625; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SYSTEM_TIME: { - this.state = 3619; + this.state = 3616; this.match(HiveSqlParser.KW_SYSTEM_TIME); - this.state = 3620; + this.state = 3617; this.match(HiveSqlParser.KW_AS); - this.state = 3621; + this.state = 3618; this.match(HiveSqlParser.KW_OF); - this.state = 3622; + this.state = 3619; localContext._asOfTime = this.expression(); } break; case HiveSqlParser.KW_FOR: { - this.state = 3623; + this.state = 3620; this.match(HiveSqlParser.KW_FOR); - this.state = 3624; + this.state = 3621; this.match(HiveSqlParser.KW_SYSTEM_VERSION); - this.state = 3625; + this.state = 3622; this.match(HiveSqlParser.KW_AS); - this.state = 3626; + this.state = 3623; this.match(HiveSqlParser.KW_OF); - this.state = 3627; + this.state = 3624; localContext._asOfVersion = this.match(HiveSqlParser.Number); } break; @@ -17846,7 +17825,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3630; + this.state = 3627; this.id_(); } } @@ -17870,7 +17849,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3632; + this.state = 3629; this.id_(); } } @@ -17892,20 +17871,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableOrViewContext(this.context, this.state); this.enterRule(localContext, 480, HiveSqlParser.RULE_tableOrView); try { - this.state = 3636; + this.state = 3633; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3634; + this.state = 3631; this.tableName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3635; + this.state = 3632; this.viewName(); } break; @@ -17929,26 +17908,26 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TableNameContext(this.context, this.state); this.enterRule(localContext, 482, HiveSqlParser.RULE_tableName); try { - this.state = 3646; + this.state = 3643; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3638; + this.state = 3635; localContext._db = this.id_(); - this.state = 3639; + this.state = 3636; this.match(HiveSqlParser.DOT); - this.state = 3640; + this.state = 3637; localContext._tab = this.id_(); - this.state = 3643; + this.state = 3640; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { case 1: { - this.state = 3641; + this.state = 3638; this.match(HiveSqlParser.DOT); - this.state = 3642; + this.state = 3639; localContext._meta = this.id_(); } break; @@ -17958,7 +17937,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3645; + this.state = 3642; localContext._tab = this.id_(); } break; @@ -17983,26 +17962,26 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 484, HiveSqlParser.RULE_tableNameCreate); let _la: number; try { - this.state = 3656; + this.state = 3653; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3648; + this.state = 3645; localContext._db = this.id_(); - this.state = 3649; + this.state = 3646; this.match(HiveSqlParser.DOT); - this.state = 3650; + this.state = 3647; localContext._tab = this.id_(); - this.state = 3653; + this.state = 3650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 3651; + this.state = 3648; this.match(HiveSqlParser.DOT); - this.state = 3652; + this.state = 3649; localContext._meta = this.id_(); } } @@ -18012,7 +17991,7 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3655; + this.state = 3652; localContext._tab = this.id_(); } break; @@ -18038,19 +18017,19 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3661; + this.state = 3658; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 478, this.context) ) { case 1: { - this.state = 3658; + this.state = 3655; localContext._db = this.id_(); - this.state = 3659; + this.state = 3656; this.match(HiveSqlParser.DOT); } break; } - this.state = 3663; + this.state = 3660; localContext._view = this.id_(); } } @@ -18074,19 +18053,19 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3668; + this.state = 3665; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 480, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { case 1: { - this.state = 3665; + this.state = 3662; localContext._db = this.id_(); - this.state = 3666; + this.state = 3663; this.match(HiveSqlParser.DOT); } break; } - this.state = 3670; + this.state = 3667; localContext._view = this.id_(); } } @@ -18111,23 +18090,23 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3672; + this.state = 3669; this.match(HiveSqlParser.LPAREN); - this.state = 3673; + this.state = 3670; this.queryStatementExpression(); - this.state = 3674; + this.state = 3671; this.match(HiveSqlParser.RPAREN); - this.state = 3676; + this.state = 3673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3675; + this.state = 3672; this.match(HiveSqlParser.KW_AS); } } - this.state = 3678; + this.state = 3675; localContext._alias = this.id_(); } } @@ -18150,20 +18129,20 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 492, HiveSqlParser.RULE_partitioningSpec); let _la: number; try { - this.state = 3691; + this.state = 3688; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_PARTITION: this.enterOuterAlt(localContext, 1); { - this.state = 3680; + this.state = 3677; this.partitionByClause(); - this.state = 3682; + this.state = 3679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 229) { { - this.state = 3681; + this.state = 3678; this.orderByClause(); } } @@ -18173,21 +18152,21 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ORDER: this.enterOuterAlt(localContext, 2); { - this.state = 3684; + this.state = 3681; this.orderByClause(); } break; case HiveSqlParser.KW_DISTRIBUTE: this.enterOuterAlt(localContext, 3); { - this.state = 3685; + this.state = 3682; this.distributeByClause(); - this.state = 3687; + this.state = 3684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 3686; + this.state = 3683; this.sortByClause(); } } @@ -18197,14 +18176,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SORT: this.enterOuterAlt(localContext, 4); { - this.state = 3689; + this.state = 3686; this.sortByClause(); } break; case HiveSqlParser.KW_CLUSTER: this.enterOuterAlt(localContext, 5); { - this.state = 3690; + this.state = 3687; this.clusterByClause(); } break; @@ -18230,27 +18209,27 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PartitionTableFunctionSourceContext(this.context, this.state); this.enterRule(localContext, 494, HiveSqlParser.RULE_partitionTableFunctionSource); try { - this.state = 3696; + this.state = 3693; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 485, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 484, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3693; + this.state = 3690; this.subQuerySource(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3694; + this.state = 3691; this.tableSource(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3695; + this.state = 3692; this.partitionedTableFunction(); } break; @@ -18276,14 +18255,14 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3698; + this.state = 3695; this.atomPartitionedTableFunction(); - this.state = 3700; + this.state = 3697; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 486, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 485, this.context) ) { case 1: { - this.state = 3699; + this.state = 3696; localContext._alias = this.id_(); } break; @@ -18311,63 +18290,63 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3702; + this.state = 3699; localContext._n = this.id_(); - this.state = 3703; + this.state = 3700; this.match(HiveSqlParser.LPAREN); - this.state = 3704; + this.state = 3701; this.match(HiveSqlParser.KW_ON); - this.state = 3705; + this.state = 3702; localContext._ptfsrc = this.partitionTableFunctionSource(); - this.state = 3707; + this.state = 3704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { { - this.state = 3706; + this.state = 3703; localContext._spec = this.partitioningSpec(); } } - this.state = 3724; + this.state = 3721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 432) { { - this.state = 3709; + this.state = 3706; this.match(HiveSqlParser.Identifier); - this.state = 3710; + this.state = 3707; this.match(HiveSqlParser.LPAREN); - this.state = 3711; + this.state = 3708; this.expression(); - this.state = 3712; + this.state = 3709; this.match(HiveSqlParser.RPAREN); - this.state = 3721; + this.state = 3718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3713; + this.state = 3710; this.match(HiveSqlParser.COMMA); - this.state = 3714; + this.state = 3711; this.match(HiveSqlParser.Identifier); - this.state = 3715; + this.state = 3712; this.match(HiveSqlParser.LPAREN); - this.state = 3716; + this.state = 3713; this.expression(); - this.state = 3717; + this.state = 3714; this.match(HiveSqlParser.RPAREN); } } - this.state = 3723; + this.state = 3720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3726; + this.state = 3723; this.match(HiveSqlParser.RPAREN); } } @@ -18391,20 +18370,20 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3728; + this.state = 3725; this.match(HiveSqlParser.KW_WHERE); - this.state = 3731; + this.state = 3728; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 490, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { case 1: { - this.state = 3729; + this.state = 3726; this.expression(); } break; case 2: { - this.state = 3730; + this.state = 3727; this.columnNamePathAllowEmpty(); } break; @@ -18432,28 +18411,28 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3733; + this.state = 3730; this.match(HiveSqlParser.KW_VALUES); - this.state = 3752; + this.state = 3749; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 493, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 492, this.context) ) { case 1: { - this.state = 3734; + this.state = 3731; this.expressionsInParenthesis(); - this.state = 3739; + this.state = 3736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3735; + this.state = 3732; this.match(HiveSqlParser.COMMA); - this.state = 3736; + this.state = 3733; this.expressionsInParenthesis(); } } - this.state = 3741; + this.state = 3738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18461,25 +18440,25 @@ export class HiveSqlParser extends SQLParserBase { break; case 2: { - this.state = 3742; + this.state = 3739; this.match(HiveSqlParser.LPAREN); - this.state = 3743; + this.state = 3740; this.firstExpressionsWithAlias(); - this.state = 3744; + this.state = 3741; this.match(HiveSqlParser.RPAREN); - this.state = 3749; + this.state = 3746; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3745; + this.state = 3742; this.match(HiveSqlParser.COMMA); - this.state = 3746; + this.state = 3743; this.expressionsInParenthesis(); } } - this.state = 3751; + this.state = 3748; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18508,13 +18487,13 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3754; + this.state = 3751; this.match(HiveSqlParser.KW_TABLE); - this.state = 3755; + this.state = 3752; this.match(HiveSqlParser.LPAREN); - this.state = 3756; + this.state = 3753; this.valuesClause(); - this.state = 3757; + this.state = 3754; this.match(HiveSqlParser.RPAREN); } } @@ -18539,49 +18518,49 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3759; + this.state = 3756; this.atomValuesClause(); - this.state = 3761; + this.state = 3758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3760; + this.state = 3757; this.match(HiveSqlParser.KW_AS); } } - this.state = 3763; + this.state = 3760; localContext._alias = this.tableAlias(); - this.state = 3773; + this.state = 3770; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 3764; + this.state = 3761; this.match(HiveSqlParser.LPAREN); - this.state = 3765; + this.state = 3762; this.id_(); - this.state = 3770; + this.state = 3767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3766; + this.state = 3763; this.match(HiveSqlParser.COMMA); - this.state = 3767; + this.state = 3764; this.id_(); } } - this.state = 3772; + this.state = 3769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3775; + this.state = 3772; this.match(HiveSqlParser.RPAREN); } } @@ -18604,35 +18583,35 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 508, HiveSqlParser.RULE_selectClause); let _la: number; try { - this.state = 3790; + this.state = 3787; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 1); { - this.state = 3777; + this.state = 3774; this.match(HiveSqlParser.KW_SELECT); - this.state = 3779; + this.state = 3776; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 496, this.context) ) { case 1: { - this.state = 3778; + this.state = 3775; this.match(HiveSqlParser.QUERY_HINT); } break; } - this.state = 3787; + this.state = 3784; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { case 1: { - this.state = 3782; + this.state = 3779; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { case 1: { - this.state = 3781; + this.state = 3778; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -18644,15 +18623,15 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 3784; + this.state = 3781; this.selectList(); } break; case 2: { - this.state = 3785; + this.state = 3782; this.match(HiveSqlParser.KW_TRANSFORM); - this.state = 3786; + this.state = 3783; this.selectTrfmClause(); } break; @@ -18663,7 +18642,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_REDUCE: this.enterOuterAlt(localContext, 2); { - this.state = 3789; + this.state = 3786; this.trfmClause(); } break; @@ -18692,63 +18671,63 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3792; + this.state = 3789; this.match(HiveSqlParser.LPAREN); - this.state = 3793; + this.state = 3790; this.selectExpressionList(); - this.state = 3794; + this.state = 3791; this.match(HiveSqlParser.RPAREN); - this.state = 3795; + this.state = 3792; this.rowFormat(); - this.state = 3796; + this.state = 3793; this.recordWriter(); - this.state = 3797; + this.state = 3794; this.match(HiveSqlParser.KW_USING); - this.state = 3798; + this.state = 3795; this.match(HiveSqlParser.StringLiteral); - this.state = 3811; + this.state = 3808; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3799; + this.state = 3796; this.match(HiveSqlParser.KW_AS); - this.state = 3809; + this.state = 3806; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { case 1: { - this.state = 3800; + this.state = 3797; this.match(HiveSqlParser.LPAREN); - this.state = 3803; + this.state = 3800; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { case 1: { - this.state = 3801; + this.state = 3798; this.aliasList(); } break; case 2: { - this.state = 3802; + this.state = 3799; this.columnNameTypeList(); } break; } - this.state = 3805; + this.state = 3802; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 3807; + this.state = 3804; this.aliasList(); } break; case 3: { - this.state = 3808; + this.state = 3805; this.columnNameTypeList(); } break; @@ -18756,9 +18735,9 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 3813; + this.state = 3810; this.rowFormat(); - this.state = 3814; + this.state = 3811; this.recordReader(); } } @@ -18783,25 +18762,25 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3816; + this.state = 3813; this.selectItem(); - this.state = 3821; + this.state = 3818; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 504, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 503, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3817; + this.state = 3814; this.match(HiveSqlParser.COMMA); - this.state = 3818; + this.state = 3815; this.selectItem(); } } } - this.state = 3823; + this.state = 3820; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 504, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 503, this.context); } } } @@ -18824,13 +18803,13 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 514, HiveSqlParser.RULE_selectItem); let _la: number; try { - this.state = 3849; + this.state = 3846; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 509, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 508, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3824; + this.state = 3821; this.tableAllColumns(); } break; @@ -18838,66 +18817,66 @@ export class HiveSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 3827; + this.state = 3824; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 505, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 504, this.context) ) { case 1: { - this.state = 3825; + this.state = 3822; this.selectLiteralColumnName(); } break; case 2: { - this.state = 3826; + this.state = 3823; this.selectExpressionColumnName(); } break; } - this.state = 3845; + this.state = 3842; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 508, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { case 1: { - this.state = 3830; + this.state = 3827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3829; + this.state = 3826; this.match(HiveSqlParser.KW_AS); } } - this.state = 3832; + this.state = 3829; localContext._alias = this.id_(); } break; case 2: { - this.state = 3833; + this.state = 3830; this.match(HiveSqlParser.KW_AS); - this.state = 3834; + this.state = 3831; this.match(HiveSqlParser.LPAREN); - this.state = 3835; + this.state = 3832; localContext._alias = this.id_(); - this.state = 3840; + this.state = 3837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3836; + this.state = 3833; this.match(HiveSqlParser.COMMA); - this.state = 3837; + this.state = 3834; localContext._alias = this.id_(); } } - this.state = 3842; + this.state = 3839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3843; + this.state = 3840; this.match(HiveSqlParser.RPAREN); } break; @@ -18908,11 +18887,11 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3847; + this.state = 3844; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 3848; + this.state = 3845; this.emptyColumn(); } break; @@ -18938,7 +18917,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3851; + this.state = 3848; this.columnName(); } } @@ -18962,7 +18941,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3853; + this.state = 3850; this.expression(); } } @@ -18987,7 +18966,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3855; + this.state = 3852; _la = this.tokenStream.LA(1); if(!(_la === 198 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -18996,59 +18975,59 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3856; + this.state = 3853; this.selectExpressionList(); - this.state = 3857; + this.state = 3854; this.rowFormat(); - this.state = 3858; + this.state = 3855; this.recordWriter(); - this.state = 3859; + this.state = 3856; this.match(HiveSqlParser.KW_USING); - this.state = 3860; + this.state = 3857; this.match(HiveSqlParser.StringLiteral); - this.state = 3873; + this.state = 3870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3861; + this.state = 3858; this.match(HiveSqlParser.KW_AS); - this.state = 3871; + this.state = 3868; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 511, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 510, this.context) ) { case 1: { - this.state = 3862; + this.state = 3859; this.match(HiveSqlParser.LPAREN); - this.state = 3865; + this.state = 3862; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 510, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 509, this.context) ) { case 1: { - this.state = 3863; + this.state = 3860; this.aliasList(); } break; case 2: { - this.state = 3864; + this.state = 3861; this.columnNameTypeList(); } break; } - this.state = 3867; + this.state = 3864; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 3869; + this.state = 3866; this.aliasList(); } break; case 3: { - this.state = 3870; + this.state = 3867; this.columnNameTypeList(); } break; @@ -19056,9 +19035,9 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 3875; + this.state = 3872; this.rowFormat(); - this.state = 3876; + this.state = 3873; this.recordReader(); } } @@ -19080,20 +19059,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new SelectExpressionContext(this.context, this.state); this.enterRule(localContext, 522, HiveSqlParser.RULE_selectExpression); try { - this.state = 3880; + this.state = 3877; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 512, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3878; + this.state = 3875; this.tableAllColumns(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3879; + this.state = 3876; this.expression(); } break; @@ -19120,21 +19099,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3882; + this.state = 3879; this.selectExpression(); - this.state = 3887; + this.state = 3884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3883; + this.state = 3880; this.match(HiveSqlParser.COMMA); - this.state = 3884; + this.state = 3881; this.selectExpression(); } } - this.state = 3889; + this.state = 3886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19161,31 +19140,31 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3890; + this.state = 3887; this.match(HiveSqlParser.KW_WINDOW); - this.state = 3891; + this.state = 3888; this.id_(); - this.state = 3892; + this.state = 3889; this.match(HiveSqlParser.KW_AS); - this.state = 3893; + this.state = 3890; this.window_specification(); - this.state = 3901; + this.state = 3898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3894; + this.state = 3891; this.match(HiveSqlParser.COMMA); - this.state = 3895; + this.state = 3892; this.id_(); - this.state = 3896; + this.state = 3893; this.match(HiveSqlParser.KW_AS); - this.state = 3897; + this.state = 3894; this.window_specification(); } } - this.state = 3903; + this.state = 3900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19210,7 +19189,7 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 528, HiveSqlParser.RULE_window_specification); let _la: number; try { - this.state = 3916; + this.state = 3913; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -19455,46 +19434,46 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 3904; + this.state = 3901; this.id_(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 3905; + this.state = 3902; this.match(HiveSqlParser.LPAREN); - this.state = 3907; + this.state = 3904; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 516, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 515, this.context) ) { case 1: { - this.state = 3906; + this.state = 3903; this.id_(); } break; } - this.state = 3910; + this.state = 3907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { { - this.state = 3909; + this.state = 3906; this.partitioningSpec(); } } - this.state = 3913; + this.state = 3910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 260 || _la === 292) { { - this.state = 3912; + this.state = 3909; this.window_frame(); } } - this.state = 3915; + this.state = 3912; this.match(HiveSqlParser.RPAREN); } break; @@ -19523,7 +19502,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3918; + this.state = 3915; _la = this.tokenStream.LA(1); if(!(_la === 260 || _la === 292)) { this.errorHandler.recoverInline(this); @@ -19532,22 +19511,22 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3932; + this.state = 3929; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CURRENT: case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: { - this.state = 3925; + this.state = 3922; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: { { - this.state = 3919; + this.state = 3916; this.match(HiveSqlParser.KW_UNBOUNDED); - this.state = 3920; + this.state = 3917; this.match(HiveSqlParser.KW_PRECEDING); } } @@ -19555,9 +19534,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CURRENT: { { - this.state = 3921; + this.state = 3918; this.match(HiveSqlParser.KW_CURRENT); - this.state = 3922; + this.state = 3919; this.match(HiveSqlParser.KW_ROW); } } @@ -19565,9 +19544,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Number: { { - this.state = 3923; + this.state = 3920; this.match(HiveSqlParser.Number); - this.state = 3924; + this.state = 3921; this.match(HiveSqlParser.KW_PRECEDING); } } @@ -19579,13 +19558,13 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_BETWEEN: { - this.state = 3927; + this.state = 3924; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 3928; + this.state = 3925; this.window_frame_boundary(); - this.state = 3929; + this.state = 3926; this.match(HiveSqlParser.KW_AND); - this.state = 3930; + this.state = 3927; this.window_frame_boundary(); } break; @@ -19613,14 +19592,14 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 532, HiveSqlParser.RULE_window_frame_boundary); let _la: number; try { - this.state = 3938; + this.state = 3935; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: this.enterOuterAlt(localContext, 1); { - this.state = 3934; + this.state = 3931; _la = this.tokenStream.LA(1); if(!(_la === 354 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -19629,7 +19608,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3935; + this.state = 3932; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -19643,9 +19622,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 2); { - this.state = 3936; + this.state = 3933; this.match(HiveSqlParser.KW_CURRENT); - this.state = 3937; + this.state = 3934; this.match(HiveSqlParser.KW_ROW); } break; @@ -19673,37 +19652,37 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3940; + this.state = 3937; this.match(HiveSqlParser.KW_GROUP); - this.state = 3941; + this.state = 3938; this.match(HiveSqlParser.KW_BY); - this.state = 3947; + this.state = 3944; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 523, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 522, this.context) ) { case 1: { - this.state = 3942; + this.state = 3939; this.columnName(); } break; case 2: { - this.state = 3943; + this.state = 3940; this.rollupStandard(); } break; case 3: { - this.state = 3944; + this.state = 3941; this.rollupOldSyntax(); } break; case 4: { { - this.state = 3945; + this.state = 3942; this.match(HiveSqlParser.LPAREN); - this.state = 3946; + this.state = 3943; this.match(HiveSqlParser.RPAREN); } } @@ -19732,45 +19711,45 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3951; + this.state = 3948; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLUP: { - this.state = 3949; + this.state = 3946; localContext._rollup = this.match(HiveSqlParser.KW_ROLLUP); } break; case HiveSqlParser.KW_CUBE: { - this.state = 3950; + this.state = 3947; localContext._cube = this.match(HiveSqlParser.KW_CUBE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3953; + this.state = 3950; this.match(HiveSqlParser.LPAREN); - this.state = 3954; + this.state = 3951; this.expression(); - this.state = 3959; + this.state = 3956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3955; + this.state = 3952; this.match(HiveSqlParser.COMMA); - this.state = 3956; + this.state = 3953; this.expression(); } } - this.state = 3961; + this.state = 3958; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3962; + this.state = 3959; this.match(HiveSqlParser.RPAREN); } } @@ -19795,58 +19774,58 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3964; + this.state = 3961; localContext._expr = this.expressionsNotInParenthesis(); - this.state = 3969; + this.state = 3966; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 526, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 525, this.context) ) { case 1: { - this.state = 3965; + this.state = 3962; localContext._rollup = this.match(HiveSqlParser.KW_WITH); - this.state = 3966; + this.state = 3963; this.match(HiveSqlParser.KW_ROLLUP); } break; case 2: { - this.state = 3967; + this.state = 3964; localContext._cube = this.match(HiveSqlParser.KW_WITH); - this.state = 3968; + this.state = 3965; this.match(HiveSqlParser.KW_CUBE); } break; } - this.state = 3984; + this.state = 3981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 3971; + this.state = 3968; localContext._sets = this.match(HiveSqlParser.KW_GROUPING); - this.state = 3972; + this.state = 3969; this.match(HiveSqlParser.KW_SETS); - this.state = 3973; + this.state = 3970; this.match(HiveSqlParser.LPAREN); - this.state = 3974; + this.state = 3971; this.groupingSetExpression(); - this.state = 3979; + this.state = 3976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3975; + this.state = 3972; this.match(HiveSqlParser.COMMA); - this.state = 3976; + this.state = 3973; this.groupingSetExpression(); } } - this.state = 3981; + this.state = 3978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3982; + this.state = 3979; this.match(HiveSqlParser.RPAREN); } } @@ -19872,48 +19851,48 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 540, HiveSqlParser.RULE_groupingSetExpression); let _la: number; try { - this.state = 3999; + this.state = 3996; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 531, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 530, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3986; + this.state = 3983; this.match(HiveSqlParser.LPAREN); - this.state = 3988; + this.state = 3985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 3987; + this.state = 3984; this.expression(); } } - this.state = 3994; + this.state = 3991; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3990; + this.state = 3987; this.match(HiveSqlParser.COMMA); - this.state = 3991; + this.state = 3988; this.expression(); } } - this.state = 3996; + this.state = 3993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3997; + this.state = 3994; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3998; + this.state = 3995; this.expression(); } break; @@ -19939,20 +19918,20 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4001; + this.state = 3998; this.match(HiveSqlParser.KW_HAVING); - this.state = 4004; + this.state = 4001; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 532, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 531, this.context) ) { case 1: { - this.state = 4002; + this.state = 3999; this.expression(); } break; case 2: { - this.state = 4003; + this.state = 4000; this.columnNamePathAllowEmpty(); } break; @@ -19979,9 +19958,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4006; + this.state = 4003; this.match(HiveSqlParser.KW_QUALIFY); - this.state = 4007; + this.state = 4004; this.expression(); } } @@ -20003,20 +19982,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ExpressionOrDefaultContext(this.context, this.state); this.enterRule(localContext, 546, HiveSqlParser.RULE_expressionOrDefault); try { - this.state = 4011; + this.state = 4008; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 533, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 532, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4009; + this.state = 4006; this.match(HiveSqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4010; + this.state = 4007; this.expression(); } break; @@ -20043,61 +20022,61 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4013; + this.state = 4010; localContext._first = this.expression(); - this.state = 4015; + this.state = 4012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4014; + this.state = 4011; this.match(HiveSqlParser.KW_AS); } } - this.state = 4018; + this.state = 4015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 4017; + this.state = 4014; localContext._colAlias = this.id_(); } } - this.state = 4030; + this.state = 4027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4020; + this.state = 4017; this.match(HiveSqlParser.COMMA); - this.state = 4021; + this.state = 4018; this.expression(); - this.state = 4023; + this.state = 4020; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4022; + this.state = 4019; this.match(HiveSqlParser.KW_AS); } } - this.state = 4026; + this.state = 4023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 4025; + this.state = 4022; localContext._alias = this.id_(); } } } } - this.state = 4032; + this.state = 4029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20121,20 +20100,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ExpressionsContext(this.context, this.state); this.enterRule(localContext, 550, HiveSqlParser.RULE_expressions); try { - this.state = 4035; + this.state = 4032; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 539, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 538, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4033; + this.state = 4030; this.expressionsInParenthesis(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4034; + this.state = 4031; this.expressionsNotInParenthesis(); } break; @@ -20160,11 +20139,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4037; + this.state = 4034; this.match(HiveSqlParser.LPAREN); - this.state = 4038; + this.state = 4035; this.expressionsNotInParenthesis(); - this.state = 4039; + this.state = 4036; this.match(HiveSqlParser.RPAREN); } } @@ -20189,26 +20168,26 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4041; + this.state = 4038; localContext._first = this.expressionOrDefault(); - this.state = 4048; + this.state = 4045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 4044; + this.state = 4041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4042; + this.state = 4039; this.match(HiveSqlParser.COMMA); - this.state = 4043; + this.state = 4040; this.expressionOrDefault(); } } - this.state = 4046; + this.state = 4043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 397); @@ -20238,25 +20217,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4050; + this.state = 4047; this.match(HiveSqlParser.KW_ORDER); - this.state = 4051; + this.state = 4048; this.match(HiveSqlParser.KW_BY); - this.state = 4052; + this.state = 4049; this.columnRefOrder(); - this.state = 4057; + this.state = 4054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4053; + this.state = 4050; this.match(HiveSqlParser.COMMA); - this.state = 4054; + this.state = 4051; this.columnRefOrder(); } } - this.state = 4059; + this.state = 4056; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20282,11 +20261,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4060; + this.state = 4057; this.match(HiveSqlParser.KW_PARTITION); - this.state = 4061; + this.state = 4058; this.match(HiveSqlParser.KW_BY); - this.state = 4062; + this.state = 4059; this.expressions(); } } @@ -20310,11 +20289,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4064; + this.state = 4061; this.match(HiveSqlParser.KW_CLUSTER); - this.state = 4065; + this.state = 4062; this.match(HiveSqlParser.KW_BY); - this.state = 4066; + this.state = 4063; this.expressions(); } } @@ -20338,11 +20317,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4068; + this.state = 4065; this.match(HiveSqlParser.KW_DISTRIBUTE); - this.state = 4069; + this.state = 4066; this.match(HiveSqlParser.KW_BY); - this.state = 4070; + this.state = 4067; this.expressions(); } } @@ -20367,37 +20346,37 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4072; + this.state = 4069; this.match(HiveSqlParser.KW_SORT); - this.state = 4073; + this.state = 4070; this.match(HiveSqlParser.KW_BY); - this.state = 4093; + this.state = 4090; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { case 1: { { - this.state = 4074; + this.state = 4071; this.match(HiveSqlParser.LPAREN); - this.state = 4075; + this.state = 4072; this.columnRefOrder(); - this.state = 4080; + this.state = 4077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4076; + this.state = 4073; this.match(HiveSqlParser.COMMA); - this.state = 4077; + this.state = 4074; this.columnRefOrder(); } } - this.state = 4082; + this.state = 4079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4083; + this.state = 4080; this.match(HiveSqlParser.RPAREN); } } @@ -20405,21 +20384,21 @@ export class HiveSqlParser extends SQLParserBase { case 2: { { - this.state = 4085; + this.state = 4082; this.columnRefOrder(); - this.state = 4090; + this.state = 4087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4086; + this.state = 4083; this.match(HiveSqlParser.COMMA); - this.state = 4087; + this.state = 4084; this.columnRefOrder(); } } - this.state = 4092; + this.state = 4089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20448,34 +20427,34 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 566, HiveSqlParser.RULE_function_); let _la: number; try { - this.state = 4148; + this.state = 4145; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 554, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 553, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4095; + this.state = 4092; this.match(HiveSqlParser.KW_TRIM); - this.state = 4096; + this.state = 4093; this.match(HiveSqlParser.LPAREN); - this.state = 4100; + this.state = 4097; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LEADING: { - this.state = 4097; + this.state = 4094; localContext._leading = this.match(HiveSqlParser.KW_LEADING); } break; case HiveSqlParser.KW_TRAILING: { - this.state = 4098; + this.state = 4095; localContext._trailing = this.match(HiveSqlParser.KW_TRAILING); } break; case HiveSqlParser.KW_BOTH: { - this.state = 4099; + this.state = 4096; this.match(HiveSqlParser.KW_BOTH); } break; @@ -20785,48 +20764,48 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 4103; + this.state = 4100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 4102; + this.state = 4099; localContext._trim_characters = this.selectExpression(); } } - this.state = 4105; + this.state = 4102; this.match(HiveSqlParser.KW_FROM); - this.state = 4106; + this.state = 4103; localContext._str = this.selectExpression(); - this.state = 4107; + this.state = 4104; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4109; + this.state = 4106; this.functionNameForInvoke(); - this.state = 4110; + this.state = 4107; this.match(HiveSqlParser.LPAREN); - this.state = 4125; + this.state = 4122; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { case 1: { - this.state = 4111; + this.state = 4108; localContext._star = this.match(HiveSqlParser.STAR); } break; case 2: { - this.state = 4113; + this.state = 4110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 4112; + this.state = 4109; localContext._dist = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { @@ -20839,26 +20818,26 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 4123; + this.state = 4120; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { case 1: { - this.state = 4115; + this.state = 4112; this.selectExpression(); - this.state = 4120; + this.state = 4117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4116; + this.state = 4113; this.match(HiveSqlParser.COMMA); - this.state = 4117; + this.state = 4114; this.selectExpression(); } } - this.state = 4122; + this.state = 4119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20868,60 +20847,60 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 4146; + this.state = 4143; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 553, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 552, this.context) ) { case 1: { - this.state = 4127; + this.state = 4124; this.match(HiveSqlParser.RPAREN); - this.state = 4128; + this.state = 4125; localContext._within = this.match(HiveSqlParser.KW_WITHIN); - this.state = 4129; + this.state = 4126; this.match(HiveSqlParser.KW_GROUP); - this.state = 4130; + this.state = 4127; this.match(HiveSqlParser.LPAREN); - this.state = 4131; + this.state = 4128; localContext._ordBy = this.orderByClause(); - this.state = 4132; + this.state = 4129; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 4134; + this.state = 4131; this.match(HiveSqlParser.RPAREN); - this.state = 4136; + this.state = 4133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 281) { { - this.state = 4135; + this.state = 4132; localContext._nt = this.null_treatment(); } } - this.state = 4138; + this.state = 4135; this.match(HiveSqlParser.KW_OVER); - this.state = 4139; + this.state = 4136; localContext._ws = this.window_specification(); } break; case 3: { - this.state = 4140; + this.state = 4137; localContext._nt = this.null_treatment(); - this.state = 4141; + this.state = 4138; this.match(HiveSqlParser.RPAREN); - this.state = 4142; + this.state = 4139; this.match(HiveSqlParser.KW_OVER); - this.state = 4143; + this.state = 4140; localContext._ws = this.window_specification(); } break; case 4: { - this.state = 4145; + this.state = 4142; this.match(HiveSqlParser.RPAREN); } break; @@ -20951,7 +20930,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4150; + this.state = 4147; _la = this.tokenStream.LA(1); if(!(_la === 152 || _la === 281)) { this.errorHandler.recoverInline(this); @@ -20960,7 +20939,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4151; + this.state = 4148; this.match(HiveSqlParser.KW_NULLS); } } @@ -20984,7 +20963,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4153; + this.state = 4150; this.functionIdentifier(); } } @@ -21006,7 +20985,7 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new FunctionNameForDDLContext(this.context, this.state); this.enterRule(localContext, 572, HiveSqlParser.RULE_functionNameForDDL); try { - this.state = 4157; + this.state = 4154; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -21251,14 +21230,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4155; + this.state = 4152; this.functionIdentifier(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 4156; + this.state = 4153; this.match(HiveSqlParser.StringLiteral); } break; @@ -21284,27 +21263,27 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new FunctionNameForInvokeContext(this.context, this.state); this.enterRule(localContext, 574, HiveSqlParser.RULE_functionNameForInvoke); try { - this.state = 4162; + this.state = 4159; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 555, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4159; + this.state = 4156; this.functionIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4160; + this.state = 4157; this.sql11ReservedKeywordsUsedAsFunctionName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4161; + this.state = 4158; this.sysFuncNames(); } break; @@ -21331,29 +21310,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4164; + this.state = 4161; this.match(HiveSqlParser.KW_CAST); - this.state = 4165; + this.state = 4162; this.match(HiveSqlParser.LPAREN); - this.state = 4166; + this.state = 4163; this.expression(); - this.state = 4167; + this.state = 4164; this.match(HiveSqlParser.KW_AS); - this.state = 4168; + this.state = 4165; localContext._toType = this.primitiveType(); - this.state = 4171; + this.state = 4168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 4169; + this.state = 4166; localContext._fmt = this.match(HiveSqlParser.KW_FORMAT); - this.state = 4170; + this.state = 4167; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4173; + this.state = 4170; this.match(HiveSqlParser.RPAREN); } } @@ -21378,43 +21357,43 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4175; + this.state = 4172; this.match(HiveSqlParser.KW_CASE); - this.state = 4176; + this.state = 4173; this.expression(); - this.state = 4182; + this.state = 4179; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4177; + this.state = 4174; this.match(HiveSqlParser.KW_WHEN); - this.state = 4178; + this.state = 4175; this.expression(); - this.state = 4179; + this.state = 4176; this.match(HiveSqlParser.KW_THEN); - this.state = 4180; + this.state = 4177; this.expression(); } } - this.state = 4184; + this.state = 4181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 383); - this.state = 4188; + this.state = 4185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4186; + this.state = 4183; this.match(HiveSqlParser.KW_ELSE); - this.state = 4187; + this.state = 4184; this.expression(); } } - this.state = 4190; + this.state = 4187; this.match(HiveSqlParser.KW_END); } } @@ -21439,41 +21418,41 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4192; + this.state = 4189; this.match(HiveSqlParser.KW_CASE); - this.state = 4198; + this.state = 4195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4193; + this.state = 4190; this.match(HiveSqlParser.KW_WHEN); - this.state = 4194; + this.state = 4191; this.expression(); - this.state = 4195; + this.state = 4192; this.match(HiveSqlParser.KW_THEN); - this.state = 4196; + this.state = 4193; this.expression(); } } - this.state = 4200; + this.state = 4197; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 383); - this.state = 4204; + this.state = 4201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4202; + this.state = 4199; this.match(HiveSqlParser.KW_ELSE); - this.state = 4203; + this.state = 4200; this.expression(); } } - this.state = 4206; + this.state = 4203; this.match(HiveSqlParser.KW_END); } } @@ -21498,25 +21477,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4208; + this.state = 4205; this.match(HiveSqlParser.KW_FLOOR); - this.state = 4209; + this.state = 4206; this.match(HiveSqlParser.LPAREN); - this.state = 4210; + this.state = 4207; this.expression(); - this.state = 4213; + this.state = 4210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 341) { { - this.state = 4211; + this.state = 4208; this.match(HiveSqlParser.KW_TO); - this.state = 4212; + this.state = 4209; localContext._floorUnit = this.timeQualifiers(); } } - this.state = 4215; + this.state = 4212; this.match(HiveSqlParser.RPAREN); } } @@ -21540,17 +21519,17 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4217; + this.state = 4214; this.match(HiveSqlParser.KW_EXTRACT); - this.state = 4218; + this.state = 4215; this.match(HiveSqlParser.LPAREN); - this.state = 4219; + this.state = 4216; localContext._timeUnit = this.timeQualifiers(); - this.state = 4220; + this.state = 4217; this.match(HiveSqlParser.KW_FROM); - this.state = 4221; + this.state = 4218; this.expression(); - this.state = 4222; + this.state = 4219; this.match(HiveSqlParser.RPAREN); } } @@ -21572,21 +21551,21 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TimeQualifiersContext(this.context, this.state); this.enterRule(localContext, 586, HiveSqlParser.RULE_timeQualifiers); try { - this.state = 4232; + this.state = 4229; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_YEAR: case HiveSqlParser.KW_YEARS: this.enterOuterAlt(localContext, 1); { - this.state = 4224; + this.state = 4221; this.year(); } break; case HiveSqlParser.KW_QUARTER: this.enterOuterAlt(localContext, 2); { - this.state = 4225; + this.state = 4222; this.match(HiveSqlParser.KW_QUARTER); } break; @@ -21594,7 +21573,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MONTHS: this.enterOuterAlt(localContext, 3); { - this.state = 4226; + this.state = 4223; this.month(); } break; @@ -21602,7 +21581,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WEEKS: this.enterOuterAlt(localContext, 4); { - this.state = 4227; + this.state = 4224; this.week(); } break; @@ -21610,7 +21589,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DAYS: this.enterOuterAlt(localContext, 5); { - this.state = 4228; + this.state = 4225; this.day(); } break; @@ -21618,7 +21597,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_HOURS: this.enterOuterAlt(localContext, 6); { - this.state = 4229; + this.state = 4226; this.hour(); } break; @@ -21626,7 +21605,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MINUTES: this.enterOuterAlt(localContext, 7); { - this.state = 4230; + this.state = 4227; this.minute(); } break; @@ -21634,7 +21613,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SECONDS: this.enterOuterAlt(localContext, 8); { - this.state = 4231; + this.state = 4228; this.second(); } break; @@ -21661,82 +21640,82 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 588, HiveSqlParser.RULE_constant); let _la: number; try { - this.state = 4262; + this.state = 4259; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 565, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 564, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4234; + this.state = 4231; localContext._value = this.intervalValue(); - this.state = 4235; + this.state = 4232; localContext._qualifiers = this.intervalQualifiers(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4237; + this.state = 4234; this.match(HiveSqlParser.Number); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4238; + this.state = 4235; this.match(HiveSqlParser.KW_DATE); - this.state = 4239; + this.state = 4236; this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4240; + this.state = 4237; this.match(HiveSqlParser.KW_CURRENT_DATE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4241; + this.state = 4238; this.match(HiveSqlParser.KW_TIMESTAMP); - this.state = 4242; + this.state = 4239; this.match(HiveSqlParser.StringLiteral); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4243; + this.state = 4240; this.match(HiveSqlParser.KW_CURRENT_TIMESTAMP); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4244; + this.state = 4241; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); - this.state = 4245; + this.state = 4242; this.match(HiveSqlParser.StringLiteral); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4246; + this.state = 4243; this.match(HiveSqlParser.StringLiteral); - this.state = 4250; + this.state = 4247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 426) { { { - this.state = 4247; + this.state = 4244; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4252; + this.state = 4249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21745,58 +21724,58 @@ export class HiveSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4253; + this.state = 4250; this.match(HiveSqlParser.IntegralLiteral); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4254; + this.state = 4251; this.match(HiveSqlParser.NumberLiteral); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4255; + this.state = 4252; localContext._csName = this.match(HiveSqlParser.CharSetName); - this.state = 4256; + this.state = 4253; localContext._csLiteral = this.match(HiveSqlParser.CharSetLiteral); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4257; + this.state = 4254; this.match(HiveSqlParser.KW_TRUE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4258; + this.state = 4255; this.match(HiveSqlParser.KW_FALSE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4259; + this.state = 4256; this.match(HiveSqlParser.KW_NULL); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 4260; + this.state = 4257; localContext._p = this.match(HiveSqlParser.QUESTION); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 4261; + this.state = 4258; this.columnNamePath(); } break; @@ -21823,7 +21802,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4264; + this.state = 4261; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -21852,51 +21831,51 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new IntervalExpressionContext(this.context, this.state); this.enterRule(localContext, 592, HiveSqlParser.RULE_intervalExpression); try { - this.state = 4281; + this.state = 4278; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 1); { - this.state = 4266; + this.state = 4263; this.match(HiveSqlParser.LPAREN); - this.state = 4267; + this.state = 4264; localContext._value = this.intervalValue(); - this.state = 4268; + this.state = 4265; this.match(HiveSqlParser.RPAREN); - this.state = 4269; + this.state = 4266; localContext._qualifiers = this.intervalQualifiers(); } break; case HiveSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 2); { - this.state = 4271; + this.state = 4268; this.match(HiveSqlParser.KW_INTERVAL); - this.state = 4277; + this.state = 4274; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.StringLiteral: case HiveSqlParser.Number: { - this.state = 4272; + this.state = 4269; localContext._value = this.intervalValue(); } break; case HiveSqlParser.LPAREN: { - this.state = 4273; + this.state = 4270; this.match(HiveSqlParser.LPAREN); - this.state = 4274; + this.state = 4271; localContext._expr = this.expression(); - this.state = 4275; + this.state = 4272; this.match(HiveSqlParser.RPAREN); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4279; + this.state = 4276; localContext._qualifiers = this.intervalQualifiers(); } break; @@ -21922,70 +21901,70 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new IntervalQualifiersContext(this.context, this.state); this.enterRule(localContext, 594, HiveSqlParser.RULE_intervalQualifiers); try { - this.state = 4297; + this.state = 4294; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 568, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 567, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4283; + this.state = 4280; this.year(); - this.state = 4284; + this.state = 4281; this.match(HiveSqlParser.KW_TO); - this.state = 4285; + this.state = 4282; this.month(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4287; + this.state = 4284; this.day(); - this.state = 4288; + this.state = 4285; this.match(HiveSqlParser.KW_TO); - this.state = 4289; + this.state = 4286; this.second(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4291; + this.state = 4288; this.year(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4292; + this.state = 4289; this.month(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4293; + this.state = 4290; this.day(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4294; + this.state = 4291; this.hour(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4295; + this.state = 4292; this.minute(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4296; + this.state = 4293; this.second(); } break; @@ -22012,21 +21991,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4299; + this.state = 4296; this.precedenceAndExpression(); - this.state = 4304; + this.state = 4301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 228) { { { - this.state = 4300; + this.state = 4297; this.match(HiveSqlParser.KW_OR); - this.state = 4301; + this.state = 4298; this.precedenceAndExpression(); } } - this.state = 4306; + this.state = 4303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22050,83 +22029,83 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new AtomExpressionContext(this.context, this.state); this.enterRule(localContext, 598, HiveSqlParser.RULE_atomExpression); try { - this.state = 4318; + this.state = 4315; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 570, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 569, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4307; + this.state = 4304; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4308; + this.state = 4305; this.intervalExpression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4309; + this.state = 4306; this.castExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4310; + this.state = 4307; this.extractExpression(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4311; + this.state = 4308; this.floorExpression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4312; + this.state = 4309; this.caseExpression(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4313; + this.state = 4310; this.whenExpression(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4314; + this.state = 4311; this.subQueryExpression(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4315; + this.state = 4312; this.function_(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4316; + this.state = 4313; this.expressionsInParenthesis(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4317; + this.state = 4314; this.id_(); } break; @@ -22154,14 +22133,14 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4323; + this.state = 4320; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 571, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 570, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4320; + this.state = 4317; _la = this.tokenStream.LA(1); if(!(((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 163) !== 0))) { this.errorHandler.recoverInline(this); @@ -22173,35 +22152,35 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 4325; + this.state = 4322; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 571, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 570, this.context); } - this.state = 4326; + this.state = 4323; this.atomExpression(); - this.state = 4335; + this.state = 4332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395 || _la === 401) { { - this.state = 4333; + this.state = 4330; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LSQUARE: { - this.state = 4327; + this.state = 4324; this.match(HiveSqlParser.LSQUARE); - this.state = 4328; + this.state = 4325; this.expression(); - this.state = 4329; + this.state = 4326; this.match(HiveSqlParser.RSQUARE); } break; case HiveSqlParser.DOT: { - this.state = 4331; + this.state = 4328; this.match(HiveSqlParser.DOT); - this.state = 4332; + this.state = 4329; this.id_(); } break; @@ -22209,7 +22188,7 @@ export class HiveSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 4337; + this.state = 4334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22236,21 +22215,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4338; + this.state = 4335; this.precedenceUnaryPrefixExpression(); - this.state = 4343; + this.state = 4340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 423) { { { - this.state = 4339; + this.state = 4336; this.match(HiveSqlParser.BITWISEXOR); - this.state = 4340; + this.state = 4337; this.precedenceUnaryPrefixExpression(); } } - this.state = 4345; + this.state = 4342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22277,15 +22256,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4346; + this.state = 4343; this.precedenceBitwiseXorExpression(); - this.state = 4351; + this.state = 4348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0)) { { { - this.state = 4347; + this.state = 4344; _la = this.tokenStream.LA(1); if(!(((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0))) { this.errorHandler.recoverInline(this); @@ -22294,11 +22273,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4348; + this.state = 4345; this.precedenceBitwiseXorExpression(); } } - this.state = 4353; + this.state = 4350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22325,15 +22304,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4354; + this.state = 4351; this.precedenceStarExpression(); - this.state = 4359; + this.state = 4356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 413 || _la === 414) { { { - this.state = 4355; + this.state = 4352; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -22342,11 +22321,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4356; + this.state = 4353; this.precedenceStarExpression(); } } - this.state = 4361; + this.state = 4358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22373,21 +22352,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4362; + this.state = 4359; this.precedencePlusExpression(); - this.state = 4367; + this.state = 4364; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 422) { { { - this.state = 4363; + this.state = 4360; this.match(HiveSqlParser.CONCATENATE); - this.state = 4364; + this.state = 4361; localContext._plus = this.precedencePlusExpression(); } } - this.state = 4369; + this.state = 4366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22414,21 +22393,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4370; + this.state = 4367; this.precedenceConcatenateExpression(); - this.state = 4375; + this.state = 4372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 419) { { { - this.state = 4371; + this.state = 4368; this.match(HiveSqlParser.AMPERSAND); - this.state = 4372; + this.state = 4369; this.precedenceConcatenateExpression(); } } - this.state = 4377; + this.state = 4374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22455,21 +22434,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4378; + this.state = 4375; this.precedenceAmpersandExpression(); - this.state = 4383; + this.state = 4380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 421) { { { - this.state = 4379; + this.state = 4376; this.match(HiveSqlParser.BITWISEOR); - this.state = 4380; + this.state = 4377; this.precedenceAmpersandExpression(); } } - this.state = 4385; + this.state = 4382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22496,7 +22475,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4386; + this.state = 4383; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 270 || _la === 286 || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -22527,11 +22506,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4388; + this.state = 4385; this.match(HiveSqlParser.LPAREN); - this.state = 4389; + this.state = 4386; this.selectStatement(); - this.state = 4390; + this.state = 4387; this.match(HiveSqlParser.RPAREN); } } @@ -22553,7 +22532,7 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrecedenceSimilarExpressionContext(this.context, this.state); this.enterRule(localContext, 618, HiveSqlParser.RULE_precedenceSimilarExpression); try { - this.state = 4398; + this.state = 4395; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -22858,14 +22837,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 4392; + this.state = 4389; localContext._a = this.precedenceBitwiseOrExpression(); - this.state = 4394; + this.state = 4391; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: { - this.state = 4393; + this.state = 4390; localContext._part = this.precedenceSimilarExpressionPart(); } break; @@ -22875,9 +22854,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_EXISTS: this.enterOuterAlt(localContext, 2); { - this.state = 4396; + this.state = 4393; this.match(HiveSqlParser.KW_EXISTS); - this.state = 4397; + this.state = 4394; this.subQueryExpression(); } break; @@ -22903,31 +22882,31 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrecedenceSimilarExpressionPartContext(this.context, this.state); this.enterRule(localContext, 620, HiveSqlParser.RULE_precedenceSimilarExpressionPart); try { - this.state = 4406; + this.state = 4403; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 581, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4400; + this.state = 4397; this.precedenceSimilarOperator(); - this.state = 4401; + this.state = 4398; localContext._equalExpr = this.precedenceBitwiseOrExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4403; + this.state = 4400; this.precedenceSimilarExpressionAtom(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4404; + this.state = 4401; this.match(HiveSqlParser.KW_NOT); - this.state = 4405; + this.state = 4402; this.precedenceSimilarExpressionPartNot(); } break; @@ -22952,37 +22931,37 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 622, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); let _la: number; try { - this.state = 4422; + this.state = 4419; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 4408; + this.state = 4405; this.match(HiveSqlParser.KW_IN); - this.state = 4409; + this.state = 4406; this.precedenceSimilarExpressionIn(); } break; case HiveSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 2); { - this.state = 4410; + this.state = 4407; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 4411; + this.state = 4408; localContext._min = this.precedenceBitwiseOrExpression(); - this.state = 4412; + this.state = 4409; this.match(HiveSqlParser.KW_AND); - this.state = 4413; + this.state = 4410; localContext._max = this.precedenceBitwiseOrExpression(); } break; case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 3); { - this.state = 4415; + this.state = 4412; this.match(HiveSqlParser.KW_LIKE); - this.state = 4416; + this.state = 4413; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -22991,7 +22970,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4417; + this.state = 4414; localContext._expr = this.expressionsInParenthesis(); } break; @@ -23003,9 +22982,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.GREATERTHAN: this.enterOuterAlt(localContext, 4); { - this.state = 4418; + this.state = 4415; this.subQuerySelectorOperator(); - this.state = 4419; + this.state = 4416; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 13 || _la === 313)) { this.errorHandler.recoverInline(this); @@ -23014,7 +22993,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4420; + this.state = 4417; this.subQueryExpression(); } break; @@ -23040,20 +23019,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrecedenceSimilarExpressionInContext(this.context, this.state); this.enterRule(localContext, 624, HiveSqlParser.RULE_precedenceSimilarExpressionIn); try { - this.state = 4426; + this.state = 4423; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 584, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 583, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4424; + this.state = 4421; this.subQueryExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4425; + this.state = 4422; localContext._expr = this.expressionsInParenthesis(); } break; @@ -23078,13 +23057,13 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 626, HiveSqlParser.RULE_precedenceSimilarExpressionPartNot); let _la: number; try { - this.state = 4431; + this.state = 4428; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 585, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 584, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4428; + this.state = 4425; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 270 || _la === 286)) { this.errorHandler.recoverInline(this); @@ -23093,14 +23072,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4429; + this.state = 4426; localContext._notExpr = this.precedenceBitwiseOrExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4430; + this.state = 4427; this.precedenceSimilarExpressionAtom(); } break; @@ -23126,11 +23105,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4433; + this.state = 4430; this.match(HiveSqlParser.KW_IS); - this.state = 4434; + this.state = 4431; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 4435; + this.state = 4432; this.match(HiveSqlParser.KW_FROM); } } @@ -23152,40 +23131,40 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrecedenceEqualOperatorContext(this.context, this.state); this.enterRule(localContext, 630, HiveSqlParser.RULE_precedenceEqualOperator); try { - this.state = 4444; + this.state = 4441; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.EQUAL: this.enterOuterAlt(localContext, 1); { - this.state = 4437; + this.state = 4434; this.match(HiveSqlParser.EQUAL); } break; case HiveSqlParser.EQUAL_NS: this.enterOuterAlt(localContext, 2); { - this.state = 4438; + this.state = 4435; this.match(HiveSqlParser.EQUAL_NS); } break; case HiveSqlParser.NOTEQUAL: this.enterOuterAlt(localContext, 3); { - this.state = 4439; + this.state = 4436; this.match(HiveSqlParser.NOTEQUAL); } break; case HiveSqlParser.KW_IS: this.enterOuterAlt(localContext, 4); { - this.state = 4440; + this.state = 4437; this.match(HiveSqlParser.KW_IS); - this.state = 4441; + this.state = 4438; this.match(HiveSqlParser.KW_NOT); - this.state = 4442; + this.state = 4439; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 4443; + this.state = 4440; this.match(HiveSqlParser.KW_FROM); } break; @@ -23214,33 +23193,33 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4446; + this.state = 4443; this.precedenceSimilarExpression(); - this.state = 4455; + this.state = 4452; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 588, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 587, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 4453; + this.state = 4450; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 587, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 586, this.context) ) { case 1: { - this.state = 4447; + this.state = 4444; localContext._precedenceEqualOperator = this.precedenceEqualOperator(); localContext._equal.push(localContext._precedenceEqualOperator); - this.state = 4448; + this.state = 4445; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } break; case 2: { - this.state = 4450; + this.state = 4447; localContext._precedenceDistinctOperator = this.precedenceDistinctOperator(); localContext._dist.push(localContext._precedenceDistinctOperator); - this.state = 4451; + this.state = 4448; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } @@ -23248,9 +23227,9 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 4457; + this.state = 4454; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 588, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 587, this.context); } } } @@ -23273,43 +23252,43 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 634, HiveSqlParser.RULE_isCondition); let _la: number; try { - this.state = 4464; + this.state = 4461; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 4458; + this.state = 4455; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 2); { - this.state = 4459; + this.state = 4456; this.match(HiveSqlParser.KW_TRUE); } break; case HiveSqlParser.KW_FALSE: this.enterOuterAlt(localContext, 3); { - this.state = 4460; + this.state = 4457; this.match(HiveSqlParser.KW_FALSE); } break; case HiveSqlParser.KW_UNKNOWN: this.enterOuterAlt(localContext, 4); { - this.state = 4461; + this.state = 4458; this.match(HiveSqlParser.KW_UNKNOWN); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 5); { - this.state = 4462; + this.state = 4459; this.match(HiveSqlParser.KW_NOT); - this.state = 4463; + this.state = 4460; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 219 || _la === 350 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -23346,32 +23325,32 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4469; + this.state = 4466; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 590, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 589, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4466; + this.state = 4463; this.match(HiveSqlParser.KW_NOT); } } } - this.state = 4471; + this.state = 4468; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 590, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 589, this.context); } - this.state = 4472; + this.state = 4469; this.precedenceEqualExpression(); - this.state = 4475; + this.state = 4472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 4473; + this.state = 4470; localContext._a = this.match(HiveSqlParser.KW_IS); - this.state = 4474; + this.state = 4471; this.isCondition(); } } @@ -23399,21 +23378,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4477; + this.state = 4474; this.precedenceNotExpression(); - this.state = 4482; + this.state = 4479; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11) { { { - this.state = 4478; + this.state = 4475; this.match(HiveSqlParser.KW_AND); - this.state = 4479; + this.state = 4476; this.precedenceNotExpression(); } } - this.state = 4484; + this.state = 4481; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23440,14 +23419,14 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4485; + this.state = 4482; this.tableName(); - this.state = 4487; + this.state = 4484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 4486; + this.state = 4483; this.partitionSpec(); } } @@ -23475,29 +23454,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4489; + this.state = 4486; this.match(HiveSqlParser.KW_PARTITION); - this.state = 4490; + this.state = 4487; this.match(HiveSqlParser.LPAREN); - this.state = 4491; + this.state = 4488; this.partitionVal(); - this.state = 4496; + this.state = 4493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4492; + this.state = 4489; this.match(HiveSqlParser.COMMA); - this.state = 4493; + this.state = 4490; this.partitionVal(); } } - this.state = 4498; + this.state = 4495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4499; + this.state = 4496; this.match(HiveSqlParser.RPAREN); } } @@ -23522,16 +23501,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4501; + this.state = 4498; this.id_(); - this.state = 4504; + this.state = 4501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 405) { { - this.state = 4502; + this.state = 4499; this.match(HiveSqlParser.EQUAL); - this.state = 4503; + this.state = 4500; this.constant(); } } @@ -23559,27 +23538,27 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4506; + this.state = 4503; this.match(HiveSqlParser.LPAREN); - this.state = 4507; + this.state = 4504; this.partitionSelectorVal(); - this.state = 4512; + this.state = 4509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4508; + this.state = 4505; this.match(HiveSqlParser.COMMA); - this.state = 4509; + this.state = 4506; this.partitionSelectorVal(); } } - this.state = 4514; + this.state = 4511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4515; + this.state = 4512; this.match(HiveSqlParser.RPAREN); } } @@ -23603,14 +23582,14 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4517; + this.state = 4514; this.id_(); - this.state = 4520; + this.state = 4517; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 4518; + this.state = 4515; this.match(HiveSqlParser.KW_LIKE); } break; @@ -23621,14 +23600,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.GREATERTHANOREQUALTO: case HiveSqlParser.GREATERTHAN: { - this.state = 4519; + this.state = 4516; this.subQuerySelectorOperator(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4522; + this.state = 4519; this.constant(); } } @@ -23653,7 +23632,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4524; + this.state = 4521; _la = this.tokenStream.LA(1); if(!(((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 125) !== 0))) { this.errorHandler.recoverInline(this); @@ -23685,7 +23664,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4526; + this.state = 4523; _la = this.tokenStream.LA(1); if(!(((((_la - 11)) & ~0x1F) === 0 && ((1 << (_la - 11)) & 17023009) !== 0) || _la === 100 || _la === 131 || ((((_la - 132)) & ~0x1F) === 0 && ((1 << (_la - 132)) & 3225944065) !== 0) || _la === 184 || _la === 198 || _la === 216 || _la === 228 || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4194369) !== 0) || ((((_la - 311)) & ~0x1F) === 0 && ((1 << (_la - 311)) & 536883201) !== 0) || _la === 357 || _la === 383 || ((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 385023) !== 0))) { this.errorHandler.recoverInline(this); @@ -23714,13 +23693,13 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new Id_Context(this.context, this.state); this.enterRule(localContext, 654, HiveSqlParser.RULE_id_); try { - this.state = 4530; + this.state = 4527; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4528; + this.state = 4525; this.match(HiveSqlParser.Identifier); } break; @@ -23965,7 +23944,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 4529; + this.state = 4526; this.nonReserved(); } break; @@ -23994,16 +23973,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4532; + this.state = 4529; this.id_(); - this.state = 4535; + this.state = 4532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 4533; + this.state = 4530; this.match(HiveSqlParser.DOT); - this.state = 4534; + this.state = 4531; localContext._fn = this.id_(); } } @@ -24030,7 +24009,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4537; + this.state = 4534; this.id_(); } } @@ -24055,7 +24034,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4539; + this.state = 4536; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394)) { this.errorHandler.recoverInline(this); @@ -24087,7 +24066,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4541; + this.state = 4538; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 469827584) !== 0) || ((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 259) !== 0) || _la === 100 || _la === 131 || ((((_la - 145)) & ~0x1F) === 0 && ((1 << (_la - 145)) & 393281) !== 0) || _la === 198 || _la === 264 || _la === 311 || _la === 337)) { this.errorHandler.recoverInline(this); @@ -24112,11 +24091,110 @@ export class HiveSqlParser extends SQLParserBase { } return localContext; } + public configProperty(): ConfigPropertyContext { + let localContext = new ConfigPropertyContext(this.context, this.state); + this.enterRule(localContext, 664, HiveSqlParser.RULE_configProperty); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 4540; + this.configPropertyPart(); + this.state = 4545; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 395 || _la === 396) { + { + { + this.state = 4541; + _la = this.tokenStream.LA(1); + if(!(_la === 395 || _la === 396)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 4542; + this.configPropertyPart(); + } + } + this.state = 4547; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public configPropertyPart(): ConfigPropertyPartContext { + let localContext = new ConfigPropertyPartContext(this.context, this.state); + this.enterRule(localContext, 666, HiveSqlParser.RULE_configPropertyPart); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 4548; + this.configPropertiesItem(); + this.state = 4555; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 600, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 4549; + if (!(this.isNextTokenAdjacent())) { + throw this.createFailedPredicateException("this.isNextTokenAdjacent()"); + } + this.state = 4550; + this.match(HiveSqlParser.MINUS); + this.state = 4551; + if (!(this.isNextTokenAdjacent())) { + throw this.createFailedPredicateException("this.isNextTokenAdjacent()"); + } + this.state = 4552; + this.configPropertiesItem(); + } + } + } + this.state = 4557; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 600, this.context); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public configPropertiesItem(): ConfigPropertiesItemContext { let localContext = new ConfigPropertiesItemContext(this.context, this.state); - this.enterRule(localContext, 664, HiveSqlParser.RULE_configPropertiesItem); + this.enterRule(localContext, 668, HiveSqlParser.RULE_configPropertiesItem); try { - this.state = 4594; + this.state = 4609; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -24361,357 +24439,357 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4543; + this.state = 4558; this.id_(); } break; case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 2); { - this.state = 4544; + this.state = 4559; this.match(HiveSqlParser.KW_SELECT); } break; case HiveSqlParser.KW_JOIN: this.enterOuterAlt(localContext, 3); { - this.state = 4545; + this.state = 4560; this.match(HiveSqlParser.KW_JOIN); } break; case HiveSqlParser.KW_PARTITION: this.enterOuterAlt(localContext, 4); { - this.state = 4546; + this.state = 4561; this.match(HiveSqlParser.KW_PARTITION); } break; case HiveSqlParser.KW_MAP: this.enterOuterAlt(localContext, 5); { - this.state = 4547; + this.state = 4562; this.match(HiveSqlParser.KW_MAP); } break; case HiveSqlParser.KW_REDUCE: this.enterOuterAlt(localContext, 6); { - this.state = 4548; + this.state = 4563; this.match(HiveSqlParser.KW_REDUCE); } break; case HiveSqlParser.KW_USER: this.enterOuterAlt(localContext, 7); { - this.state = 4549; + this.state = 4564; this.match(HiveSqlParser.KW_USER); } break; case HiveSqlParser.KW_PERCENT: this.enterOuterAlt(localContext, 8); { - this.state = 4550; + this.state = 4565; this.match(HiveSqlParser.KW_PERCENT); } break; case HiveSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 9); { - this.state = 4551; + this.state = 4566; this.match(HiveSqlParser.KW_INTERVAL); } break; case HiveSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 10); { - this.state = 4552; + this.state = 4567; this.match(HiveSqlParser.KW_ROWS); } break; case HiveSqlParser.KW_UNION: this.enterOuterAlt(localContext, 11); { - this.state = 4553; + this.state = 4568; this.match(HiveSqlParser.KW_UNION); } break; case HiveSqlParser.KW_GROUP: this.enterOuterAlt(localContext, 12); { - this.state = 4554; + this.state = 4569; this.match(HiveSqlParser.KW_GROUP); } break; case HiveSqlParser.KW_MERGE: this.enterOuterAlt(localContext, 13); { - this.state = 4555; + this.state = 4570; this.match(HiveSqlParser.KW_MERGE); } break; case HiveSqlParser.KW_NULL: this.enterOuterAlt(localContext, 14); { - this.state = 4556; + this.state = 4571; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_FETCH: this.enterOuterAlt(localContext, 15); { - this.state = 4557; + this.state = 4572; this.match(HiveSqlParser.KW_FETCH); } break; case HiveSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 16); { - this.state = 4558; + this.state = 4573; this.match(HiveSqlParser.KW_LOCAL); } break; case HiveSqlParser.KW_DROP: this.enterOuterAlt(localContext, 17); { - this.state = 4559; + this.state = 4574; this.match(HiveSqlParser.KW_DROP); } break; case HiveSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 18); { - this.state = 4560; + this.state = 4575; this.match(HiveSqlParser.KW_TABLE); } break; case HiveSqlParser.KW_ON: this.enterOuterAlt(localContext, 19); { - this.state = 4561; + this.state = 4576; this.match(HiveSqlParser.KW_ON); } break; case HiveSqlParser.KW_ROW: this.enterOuterAlt(localContext, 20); { - this.state = 4562; + this.state = 4577; this.match(HiveSqlParser.KW_ROW); } break; case HiveSqlParser.KW_GROUPING: this.enterOuterAlt(localContext, 21); { - this.state = 4563; + this.state = 4578; this.match(HiveSqlParser.KW_GROUPING); } break; case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 22); { - this.state = 4564; + this.state = 4579; this.match(HiveSqlParser.KW_SET); } break; case HiveSqlParser.KW_FORCE: this.enterOuterAlt(localContext, 23); { - this.state = 4565; + this.state = 4580; this.match(HiveSqlParser.KW_FORCE); } break; case HiveSqlParser.KW_START: this.enterOuterAlt(localContext, 24); { - this.state = 4566; + this.state = 4581; this.match(HiveSqlParser.KW_START); } break; case HiveSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 25); { - this.state = 4567; + this.state = 4582; this.match(HiveSqlParser.KW_INSERT); } break; case HiveSqlParser.KW_CONF: this.enterOuterAlt(localContext, 26); { - this.state = 4568; + this.state = 4583; this.match(HiveSqlParser.KW_CONF); } break; case HiveSqlParser.KW_INTO: this.enterOuterAlt(localContext, 27); { - this.state = 4569; + this.state = 4584; this.match(HiveSqlParser.KW_INTO); } break; case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 28); { - this.state = 4570; + this.state = 4585; this.match(HiveSqlParser.KW_UNIQUE); } break; case HiveSqlParser.KW_COLUMN: this.enterOuterAlt(localContext, 29); { - this.state = 4571; + this.state = 4586; this.match(HiveSqlParser.KW_COLUMN); } break; case HiveSqlParser.KW_TRANSFORM: this.enterOuterAlt(localContext, 30); { - this.state = 4572; + this.state = 4587; this.match(HiveSqlParser.KW_TRANSFORM); } break; case HiveSqlParser.KW_DISTINCT: this.enterOuterAlt(localContext, 31); { - this.state = 4573; + this.state = 4588; this.match(HiveSqlParser.KW_DISTINCT); } break; case HiveSqlParser.KW_IN: this.enterOuterAlt(localContext, 32); { - this.state = 4574; + this.state = 4589; this.match(HiveSqlParser.KW_IN); } break; case HiveSqlParser.KW_REFERENCES: this.enterOuterAlt(localContext, 33); { - this.state = 4575; + this.state = 4590; this.match(HiveSqlParser.KW_REFERENCES); } break; case HiveSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 34); { - this.state = 4576; + this.state = 4591; this.match(HiveSqlParser.KW_TIMESTAMP); } break; case HiveSqlParser.KW_ONLY: this.enterOuterAlt(localContext, 35); { - this.state = 4577; + this.state = 4592; this.match(HiveSqlParser.KW_ONLY); } break; case HiveSqlParser.KW_END: this.enterOuterAlt(localContext, 36); { - this.state = 4578; + this.state = 4593; this.match(HiveSqlParser.KW_END); } break; case HiveSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 37); { - this.state = 4579; + this.state = 4594; this.match(HiveSqlParser.KW_FUNCTION); } break; case HiveSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 38); { - this.state = 4580; + this.state = 4595; this.match(HiveSqlParser.KW_UPDATE); } break; case HiveSqlParser.KW_AUTHORIZATION: this.enterOuterAlt(localContext, 39); { - this.state = 4581; + this.state = 4596; this.match(HiveSqlParser.KW_AUTHORIZATION); } break; case HiveSqlParser.KW_DDL: this.enterOuterAlt(localContext, 40); { - this.state = 4582; + this.state = 4597; this.match(HiveSqlParser.KW_DDL); } break; case HiveSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 41); { - this.state = 4583; + this.state = 4598; this.match(HiveSqlParser.KW_VALUES); } break; case HiveSqlParser.KW_TIME: this.enterOuterAlt(localContext, 42); { - this.state = 4584; + this.state = 4599; this.match(HiveSqlParser.KW_TIME); } break; case HiveSqlParser.KW_IS: this.enterOuterAlt(localContext, 43); { - this.state = 4585; + this.state = 4600; this.match(HiveSqlParser.KW_IS); } break; case HiveSqlParser.KW_FOR: this.enterOuterAlt(localContext, 44); { - this.state = 4586; + this.state = 4601; this.match(HiveSqlParser.KW_FOR); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 45); { - this.state = 4587; + this.state = 4602; this.match(HiveSqlParser.KW_NOT); } break; case HiveSqlParser.KW_BINARY: this.enterOuterAlt(localContext, 46); { - this.state = 4588; + this.state = 4603; this.match(HiveSqlParser.KW_BINARY); } break; case HiveSqlParser.KW_USING: this.enterOuterAlt(localContext, 47); { - this.state = 4589; + this.state = 4604; this.match(HiveSqlParser.KW_USING); } break; case HiveSqlParser.KW_READS: this.enterOuterAlt(localContext, 48); { - this.state = 4590; + this.state = 4605; this.match(HiveSqlParser.KW_READS); } break; case HiveSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 49); { - this.state = 4591; + this.state = 4606; this.match(HiveSqlParser.KW_BETWEEN); } break; case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 50); { - this.state = 4592; + this.state = 4607; this.match(HiveSqlParser.KW_CURRENT); } break; case HiveSqlParser.KW_AS: this.enterOuterAlt(localContext, 51); { - this.state = 4593; + this.state = 4608; this.match(HiveSqlParser.KW_AS); } break; @@ -24735,56 +24813,56 @@ export class HiveSqlParser extends SQLParserBase { } public resourcePlanDdlStatements(): ResourcePlanDdlStatementsContext { let localContext = new ResourcePlanDdlStatementsContext(this.context, this.state); - this.enterRule(localContext, 666, HiveSqlParser.RULE_resourcePlanDdlStatements); + this.enterRule(localContext, 670, HiveSqlParser.RULE_resourcePlanDdlStatements); let _la: number; try { - this.state = 4761; + this.state = 4776; 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.enterOuterAlt(localContext, 1); { - this.state = 4596; + this.state = 4611; this.match(HiveSqlParser.KW_CREATE); - this.state = 4597; + this.state = 4612; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4598; + this.state = 4613; this.match(HiveSqlParser.KW_PLAN); - this.state = 4600; + this.state = 4615; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 4599; + this.state = 4614; this.ifNotExists(); } } - this.state = 4611; + this.state = 4626; 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 = 4602; + this.state = 4617; localContext._name = this.id_(); - this.state = 4603; + this.state = 4618; this.match(HiveSqlParser.KW_LIKE); - this.state = 4604; + this.state = 4619; localContext._likeName = this.id_(); } break; case 2: { - this.state = 4606; + this.state = 4621; localContext._name = this.id_(); - this.state = 4609; + this.state = 4624; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 602, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 603, this.context) ) { case 1: { - this.state = 4607; + this.state = 4622; this.match(HiveSqlParser.KW_WITH); - this.state = 4608; + this.state = 4623; this.rpAssignList(); } break; @@ -24797,57 +24875,57 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4613; + this.state = 4628; this.match(HiveSqlParser.KW_ALTER); - this.state = 4614; + this.state = 4629; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4615; + this.state = 4630; this.match(HiveSqlParser.KW_PLAN); - this.state = 4616; + this.state = 4631; localContext._name = this.id_(); - this.state = 4641; + this.state = 4656; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_VALIDATE: { - this.state = 4617; + this.state = 4632; this.match(HiveSqlParser.KW_VALIDATE); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 4618; + this.state = 4633; this.disable(); } break; case HiveSqlParser.KW_SET: { - this.state = 4619; + this.state = 4634; this.match(HiveSqlParser.KW_SET); - this.state = 4620; + this.state = 4635; this.rpAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 4621; + this.state = 4636; this.match(HiveSqlParser.KW_UNSET); - this.state = 4622; + this.state = 4637; this.rpUnassign(); - this.state = 4627; + this.state = 4642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4623; + this.state = 4638; this.match(HiveSqlParser.COMMA); - this.state = 4624; + this.state = 4639; this.rpUnassign(); } } - this.state = 4629; + this.state = 4644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24855,24 +24933,24 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_RENAME: { - this.state = 4630; + this.state = 4645; this.match(HiveSqlParser.KW_RENAME); - this.state = 4631; + this.state = 4646; this.match(HiveSqlParser.KW_TO); - this.state = 4632; + this.state = 4647; localContext._newName = this.id_(); } break; case HiveSqlParser.KW_ACTIVATE: { - this.state = 4633; + this.state = 4648; this.activate(); - this.state = 4635; + this.state = 4650; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 605, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 606, this.context) ) { case 1: { - this.state = 4634; + this.state = 4649; this.enable(); } break; @@ -24882,14 +24960,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 4637; + this.state = 4652; this.enable(); - this.state = 4639; + this.state = 4654; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4638; + this.state = 4653; this.activate(); } } @@ -24904,88 +24982,88 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4643; + this.state = 4658; this.match(HiveSqlParser.KW_DROP); - this.state = 4644; + this.state = 4659; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4645; + this.state = 4660; this.match(HiveSqlParser.KW_PLAN); - this.state = 4647; + this.state = 4662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 4646; + this.state = 4661; this.ifExists(); } } - this.state = 4649; + this.state = 4664; localContext._name = this.id_(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4652; + this.state = 4667; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 4650; + this.state = 4665; this.enable(); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 4651; + this.state = 4666; this.disable(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4654; + this.state = 4669; this.match(HiveSqlParser.KW_WORKLOAD); - this.state = 4655; + this.state = 4670; this.match(HiveSqlParser.KW_MANAGEMENT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4657; + this.state = 4672; this.match(HiveSqlParser.KW_REPLACE); - this.state = 4669; + this.state = 4684; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ACTIVE: { - this.state = 4658; + this.state = 4673; this.match(HiveSqlParser.KW_ACTIVE); - this.state = 4659; + this.state = 4674; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4660; + this.state = 4675; this.match(HiveSqlParser.KW_PLAN); - this.state = 4661; + this.state = 4676; this.match(HiveSqlParser.KW_WITH); - this.state = 4662; + this.state = 4677; localContext._src = this.id_(); } break; case HiveSqlParser.KW_RESOURCE: { - this.state = 4663; + this.state = 4678; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4664; + this.state = 4679; this.match(HiveSqlParser.KW_PLAN); - this.state = 4665; + this.state = 4680; localContext._dest = this.id_(); - this.state = 4666; + this.state = 4681; this.match(HiveSqlParser.KW_WITH); - this.state = 4667; + this.state = 4682; localContext._src = this.id_(); } break; @@ -24997,93 +25075,93 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4671; + this.state = 4686; this.match(HiveSqlParser.KW_CREATE); - this.state = 4672; + this.state = 4687; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4673; + this.state = 4688; localContext._rpName = this.id_(); - this.state = 4674; + this.state = 4689; this.match(HiveSqlParser.DOT); - this.state = 4675; + this.state = 4690; localContext._triggerName = this.id_(); - this.state = 4676; + this.state = 4691; this.match(HiveSqlParser.KW_WHEN); - this.state = 4677; + this.state = 4692; this.triggerAtomExpression(); - this.state = 4678; + this.state = 4693; this.match(HiveSqlParser.KW_DO); - this.state = 4679; + this.state = 4694; this.triggerActionExpression(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4681; + this.state = 4696; this.match(HiveSqlParser.KW_ALTER); - this.state = 4682; + this.state = 4697; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4683; + this.state = 4698; localContext._rpName = this.id_(); - this.state = 4684; + this.state = 4699; this.match(HiveSqlParser.DOT); - this.state = 4685; + this.state = 4700; localContext._triggerName = this.id_(); - this.state = 4702; + this.state = 4717; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHEN: { - this.state = 4686; + this.state = 4701; this.match(HiveSqlParser.KW_WHEN); - this.state = 4687; + this.state = 4702; this.triggerAtomExpression(); - this.state = 4688; + this.state = 4703; this.match(HiveSqlParser.KW_DO); - this.state = 4689; + this.state = 4704; this.triggerActionExpression(); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 4695; + this.state = 4710; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 4691; + this.state = 4706; this.match(HiveSqlParser.KW_ADD); - this.state = 4692; + this.state = 4707; this.match(HiveSqlParser.KW_TO); } break; case HiveSqlParser.KW_DROP: { - this.state = 4693; + this.state = 4708; this.match(HiveSqlParser.KW_DROP); - this.state = 4694; + this.state = 4709; this.match(HiveSqlParser.KW_FROM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4700; + this.state = 4715; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_POOL: { - this.state = 4697; + this.state = 4712; this.match(HiveSqlParser.KW_POOL); - this.state = 4698; + this.state = 4713; localContext._poolName = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 4699; + this.state = 4714; this.match(HiveSqlParser.KW_UNMANAGED); } break; @@ -25100,73 +25178,73 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4704; + this.state = 4719; this.match(HiveSqlParser.KW_DROP); - this.state = 4705; + this.state = 4720; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4706; + this.state = 4721; localContext._rpName = this.id_(); - this.state = 4707; + this.state = 4722; this.match(HiveSqlParser.DOT); - this.state = 4708; + this.state = 4723; localContext._triggerName = this.id_(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4710; + this.state = 4725; this.match(HiveSqlParser.KW_CREATE); - this.state = 4711; + this.state = 4726; this.match(HiveSqlParser.KW_POOL); - this.state = 4712; + this.state = 4727; localContext._rpName = this.id_(); - this.state = 4713; + this.state = 4728; this.match(HiveSqlParser.DOT); - this.state = 4714; + this.state = 4729; this.poolPath(); - this.state = 4715; + this.state = 4730; this.match(HiveSqlParser.KW_WITH); - this.state = 4716; + this.state = 4731; this.poolAssignList(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4718; + this.state = 4733; this.match(HiveSqlParser.KW_ALTER); - this.state = 4719; + this.state = 4734; this.match(HiveSqlParser.KW_POOL); - this.state = 4720; + this.state = 4735; localContext._rpName = this.id_(); - this.state = 4721; + this.state = 4736; this.match(HiveSqlParser.DOT); - this.state = 4722; + this.state = 4737; this.poolPath(); - this.state = 4730; + this.state = 4745; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: { - this.state = 4723; + this.state = 4738; this.match(HiveSqlParser.KW_SET); - this.state = 4724; + this.state = 4739; this.poolAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 4725; + this.state = 4740; this.match(HiveSqlParser.KW_UNSET); - this.state = 4726; + this.state = 4741; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 4727; + this.state = 4742; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 101)) { this.errorHandler.recoverInline(this); @@ -25175,9 +25253,9 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4728; + this.state = 4743; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4729; + this.state = 4744; localContext._triggerName = this.id_(); } break; @@ -25189,22 +25267,22 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4732; + this.state = 4747; this.match(HiveSqlParser.KW_DROP); - this.state = 4733; + this.state = 4748; this.match(HiveSqlParser.KW_POOL); - this.state = 4734; + this.state = 4749; localContext._rpName = this.id_(); - this.state = 4735; + this.state = 4750; this.match(HiveSqlParser.DOT); - this.state = 4736; + this.state = 4751; this.poolPath(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4738; + this.state = 4753; _la = this.tokenStream.LA(1); if(!(_la === 9 || _la === 58)) { this.errorHandler.recoverInline(this); @@ -25213,46 +25291,46 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4739; + this.state = 4754; localContext._mappingType = this.mappingTypes(); - this.state = 4740; + this.state = 4755; this.match(HiveSqlParser.KW_MAPPING); - this.state = 4741; + this.state = 4756; this.match(HiveSqlParser.StringLiteral); - this.state = 4742; + this.state = 4757; this.match(HiveSqlParser.KW_IN); - this.state = 4743; + this.state = 4758; localContext._rpName = this.id_(); - this.state = 4747; + this.state = 4762; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TO: { - this.state = 4744; + this.state = 4759; this.match(HiveSqlParser.KW_TO); - this.state = 4745; + this.state = 4760; localContext._path = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 4746; + this.state = 4761; this.match(HiveSqlParser.KW_UNMANAGED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4752; + this.state = 4767; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { case 1: { - this.state = 4749; + this.state = 4764; this.match(HiveSqlParser.KW_WITH); - this.state = 4750; + this.state = 4765; this.match(HiveSqlParser.KW_ORDER); - this.state = 4751; + this.state = 4766; localContext._order = this.match(HiveSqlParser.Number); } break; @@ -25262,17 +25340,17 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4754; + this.state = 4769; this.match(HiveSqlParser.KW_DROP); - this.state = 4755; + this.state = 4770; localContext._mappingType = this.mappingTypes(); - this.state = 4756; + this.state = 4771; this.match(HiveSqlParser.KW_MAPPING); - this.state = 4757; + this.state = 4772; this.match(HiveSqlParser.StringLiteral); - this.state = 4758; + this.state = 4773; this.match(HiveSqlParser.KW_IN); - this.state = 4759; + this.state = 4774; localContext._rpName = this.id_(); } break; @@ -25294,12 +25372,12 @@ export class HiveSqlParser extends SQLParserBase { } public mappingTypes(): MappingTypesContext { let localContext = new MappingTypesContext(this.context, this.state); - this.enterRule(localContext, 668, HiveSqlParser.RULE_mappingTypes); + this.enterRule(localContext, 672, HiveSqlParser.RULE_mappingTypes); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4763; + this.state = 4778; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 144 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -25326,32 +25404,32 @@ export class HiveSqlParser extends SQLParserBase { } public rpAssign(): RpAssignContext { let localContext = new RpAssignContext(this.context, this.state); - this.enterRule(localContext, 670, HiveSqlParser.RULE_rpAssign); + this.enterRule(localContext, 674, HiveSqlParser.RULE_rpAssign); try { - this.state = 4772; + this.state = 4787; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 4765; + this.state = 4780; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 4766; + this.state = 4781; this.match(HiveSqlParser.EQUAL); - this.state = 4767; + this.state = 4782; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 4768; + this.state = 4783; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 4769; + this.state = 4784; this.match(HiveSqlParser.KW_POOL); - this.state = 4770; + this.state = 4785; this.match(HiveSqlParser.EQUAL); - this.state = 4771; + this.state = 4786; this.poolPath(); } break; @@ -25375,26 +25453,26 @@ export class HiveSqlParser extends SQLParserBase { } public rpAssignList(): RpAssignListContext { let localContext = new RpAssignListContext(this.context, this.state); - this.enterRule(localContext, 672, HiveSqlParser.RULE_rpAssignList); + this.enterRule(localContext, 676, HiveSqlParser.RULE_rpAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4774; + this.state = 4789; this.rpAssign(); - this.state = 4779; + this.state = 4794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4775; + this.state = 4790; this.match(HiveSqlParser.COMMA); - this.state = 4776; + this.state = 4791; this.rpAssign(); } } - this.state = 4781; + this.state = 4796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25416,24 +25494,24 @@ export class HiveSqlParser extends SQLParserBase { } public rpUnassign(): RpUnassignContext { let localContext = new RpUnassignContext(this.context, this.state); - this.enterRule(localContext, 674, HiveSqlParser.RULE_rpUnassign); + this.enterRule(localContext, 678, HiveSqlParser.RULE_rpUnassign); try { - this.state = 4785; + this.state = 4800; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 4782; + this.state = 4797; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 4783; + this.state = 4798; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 4784; + this.state = 4799; this.match(HiveSqlParser.KW_POOL); } break; @@ -25457,20 +25535,20 @@ export class HiveSqlParser extends SQLParserBase { } public activate(): ActivateContext { let localContext = new ActivateContext(this.context, this.state); - this.enterRule(localContext, 676, HiveSqlParser.RULE_activate); + this.enterRule(localContext, 680, HiveSqlParser.RULE_activate); try { this.enterOuterAlt(localContext, 1); { - this.state = 4787; + this.state = 4802; this.match(HiveSqlParser.KW_ACTIVATE); - this.state = 4790; + this.state = 4805; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 621, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { case 1: { - this.state = 4788; + this.state = 4803; this.match(HiveSqlParser.KW_WITH); - this.state = 4789; + this.state = 4804; this.match(HiveSqlParser.KW_REPLACE); } break; @@ -25493,12 +25571,12 @@ export class HiveSqlParser extends SQLParserBase { } public enable(): EnableContext { let localContext = new EnableContext(this.context, this.state); - this.enterRule(localContext, 678, HiveSqlParser.RULE_enable); + this.enterRule(localContext, 682, HiveSqlParser.RULE_enable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4792; + this.state = 4807; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 107)) { this.errorHandler.recoverInline(this); @@ -25525,12 +25603,12 @@ export class HiveSqlParser extends SQLParserBase { } public disable(): DisableContext { let localContext = new DisableContext(this.context, this.state); - this.enterRule(localContext, 680, HiveSqlParser.RULE_disable); + this.enterRule(localContext, 684, HiveSqlParser.RULE_disable); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4794; + this.state = 4809; _la = this.tokenStream.LA(1); if(!(_la === 94 || _la === 95)) { this.errorHandler.recoverInline(this); @@ -25557,12 +25635,12 @@ export class HiveSqlParser extends SQLParserBase { } public year(): YearContext { let localContext = new YearContext(this.context, this.state); - this.enterRule(localContext, 682, HiveSqlParser.RULE_year); + this.enterRule(localContext, 686, HiveSqlParser.RULE_year); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4796; + this.state = 4811; _la = this.tokenStream.LA(1); if(!(_la === 392 || _la === 393)) { this.errorHandler.recoverInline(this); @@ -25589,12 +25667,12 @@ export class HiveSqlParser extends SQLParserBase { } public month(): MonthContext { let localContext = new MonthContext(this.context, this.state); - this.enterRule(localContext, 684, HiveSqlParser.RULE_month); + this.enterRule(localContext, 688, HiveSqlParser.RULE_month); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4798; + this.state = 4813; _la = this.tokenStream.LA(1); if(!(_la === 208 || _la === 209)) { this.errorHandler.recoverInline(this); @@ -25621,12 +25699,12 @@ export class HiveSqlParser extends SQLParserBase { } public week(): WeekContext { let localContext = new WeekContext(this.context, this.state); - this.enterRule(localContext, 686, HiveSqlParser.RULE_week); + this.enterRule(localContext, 690, HiveSqlParser.RULE_week); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4800; + this.state = 4815; _la = this.tokenStream.LA(1); if(!(_la === 381 || _la === 382)) { this.errorHandler.recoverInline(this); @@ -25653,12 +25731,12 @@ export class HiveSqlParser extends SQLParserBase { } public day(): DayContext { let localContext = new DayContext(this.context, this.state); - this.enterRule(localContext, 688, HiveSqlParser.RULE_day); + this.enterRule(localContext, 692, HiveSqlParser.RULE_day); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4802; + this.state = 4817; _la = this.tokenStream.LA(1); if(!(_la === 73 || _la === 74)) { this.errorHandler.recoverInline(this); @@ -25685,12 +25763,12 @@ export class HiveSqlParser extends SQLParserBase { } public hour(): HourContext { let localContext = new HourContext(this.context, this.state); - this.enterRule(localContext, 690, HiveSqlParser.RULE_hour); + this.enterRule(localContext, 694, HiveSqlParser.RULE_hour); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4804; + this.state = 4819; _la = this.tokenStream.LA(1); if(!(_la === 148 || _la === 149)) { this.errorHandler.recoverInline(this); @@ -25717,12 +25795,12 @@ export class HiveSqlParser extends SQLParserBase { } public minute(): MinuteContext { let localContext = new MinuteContext(this.context, this.state); - this.enterRule(localContext, 692, HiveSqlParser.RULE_minute); + this.enterRule(localContext, 696, HiveSqlParser.RULE_minute); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4806; + this.state = 4821; _la = this.tokenStream.LA(1); if(!(_la === 206 || _la === 207)) { this.errorHandler.recoverInline(this); @@ -25749,12 +25827,12 @@ export class HiveSqlParser extends SQLParserBase { } public second(): SecondContext { let localContext = new SecondContext(this.context, this.state); - this.enterRule(localContext, 694, HiveSqlParser.RULE_second); + this.enterRule(localContext, 698, HiveSqlParser.RULE_second); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4808; + this.state = 4823; _la = this.tokenStream.LA(1); if(!(_la === 297 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -25781,12 +25859,12 @@ export class HiveSqlParser extends SQLParserBase { } public decimal(): DecimalContext { let localContext = new DecimalContext(this.context, this.state); - this.enterRule(localContext, 696, HiveSqlParser.RULE_decimal); + this.enterRule(localContext, 700, HiveSqlParser.RULE_decimal); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4810; + this.state = 4825; _la = this.tokenStream.LA(1); if(!(((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -25813,7 +25891,7 @@ export class HiveSqlParser extends SQLParserBase { } public emptyColumn(): EmptyColumnContext { let localContext = new EmptyColumnContext(this.context, this.state); - this.enterRule(localContext, 698, HiveSqlParser.RULE_emptyColumn); + this.enterRule(localContext, 702, HiveSqlParser.RULE_emptyColumn); try { this.enterOuterAlt(localContext, 1); // tslint:disable-next-line:no-empty @@ -25836,30 +25914,30 @@ export class HiveSqlParser extends SQLParserBase { } public poolPath(): PoolPathContext { let localContext = new PoolPathContext(this.context, this.state); - this.enterRule(localContext, 700, HiveSqlParser.RULE_poolPath); + this.enterRule(localContext, 704, HiveSqlParser.RULE_poolPath); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4814; + this.state = 4829; this.id_(); - this.state = 4819; + this.state = 4834; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 622, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4815; + this.state = 4830; this.match(HiveSqlParser.DOT); - this.state = 4816; + this.state = 4831; this.id_(); } } } - this.state = 4821; + this.state = 4836; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 622, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); } } } @@ -25879,63 +25957,63 @@ export class HiveSqlParser extends SQLParserBase { } public poolPathAllowEmpty(): PoolPathAllowEmptyContext { let localContext = new PoolPathAllowEmptyContext(this.context, this.state); - this.enterRule(localContext, 702, HiveSqlParser.RULE_poolPathAllowEmpty); + this.enterRule(localContext, 706, HiveSqlParser.RULE_poolPathAllowEmpty); try { let alternative: number; - this.state = 4839; + this.state = 4854; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 625, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 626, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4822; + this.state = 4837; this.id_(); - this.state = 4827; + this.state = 4842; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 624, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4823; + this.state = 4838; this.match(HiveSqlParser.DOT); - this.state = 4824; + this.state = 4839; this.id_(); } } } - this.state = 4829; + this.state = 4844; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 624, this.context); } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4830; + this.state = 4845; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 4831; + this.state = 4846; this.id_(); - this.state = 4836; + this.state = 4851; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 624, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 625, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4832; + this.state = 4847; this.match(HiveSqlParser.DOT); - this.state = 4833; + this.state = 4848; this.emptyColumn(); } } } - this.state = 4838; + this.state = 4853; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 624, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 625, this.context); } } break; @@ -25957,16 +26035,16 @@ export class HiveSqlParser extends SQLParserBase { } public triggerAtomExpression(): TriggerAtomExpressionContext { let localContext = new TriggerAtomExpressionContext(this.context, this.state); - this.enterRule(localContext, 704, HiveSqlParser.RULE_triggerAtomExpression); + this.enterRule(localContext, 708, HiveSqlParser.RULE_triggerAtomExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4841; + this.state = 4856; this.id_(); - this.state = 4842; + this.state = 4857; this.match(HiveSqlParser.GREATERTHAN); - this.state = 4843; + this.state = 4858; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -25993,26 +26071,26 @@ export class HiveSqlParser extends SQLParserBase { } public triggerActionExpression(): TriggerActionExpressionContext { let localContext = new TriggerActionExpressionContext(this.context, this.state); - this.enterRule(localContext, 706, HiveSqlParser.RULE_triggerActionExpression); + this.enterRule(localContext, 710, HiveSqlParser.RULE_triggerActionExpression); try { - this.state = 4849; + this.state = 4864; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_KILL: this.enterOuterAlt(localContext, 1); { - this.state = 4845; + this.state = 4860; this.match(HiveSqlParser.KW_KILL); } break; case HiveSqlParser.KW_MOVE: this.enterOuterAlt(localContext, 2); { - this.state = 4846; + this.state = 4861; this.match(HiveSqlParser.KW_MOVE); - this.state = 4847; + this.state = 4862; this.match(HiveSqlParser.KW_TO); - this.state = 4848; + this.state = 4863; this.poolPath(); } break; @@ -26036,50 +26114,50 @@ export class HiveSqlParser extends SQLParserBase { } public poolAssign(): PoolAssignContext { let localContext = new PoolAssignContext(this.context, this.state); - this.enterRule(localContext, 708, HiveSqlParser.RULE_poolAssign); + this.enterRule(localContext, 712, HiveSqlParser.RULE_poolAssign); try { this.enterOuterAlt(localContext, 1); { - this.state = 4863; + this.state = 4878; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALLOC_FRACTION: { - this.state = 4851; + this.state = 4866; this.match(HiveSqlParser.KW_ALLOC_FRACTION); - this.state = 4852; + this.state = 4867; this.match(HiveSqlParser.EQUAL); - this.state = 4853; + this.state = 4868; localContext._allocFraction = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_QUERY_PARALLELISM: { - this.state = 4854; + this.state = 4869; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 4855; + this.state = 4870; this.match(HiveSqlParser.EQUAL); - this.state = 4856; + this.state = 4871; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_SCHEDULING_POLICY: { - this.state = 4857; + this.state = 4872; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); - this.state = 4858; + this.state = 4873; this.match(HiveSqlParser.EQUAL); - this.state = 4859; + this.state = 4874; localContext._policy = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_PATH: { - this.state = 4860; + this.state = 4875; this.match(HiveSqlParser.KW_PATH); - this.state = 4861; + this.state = 4876; this.match(HiveSqlParser.EQUAL); - this.state = 4862; + this.state = 4877; localContext._path = this.poolPath(); } break; @@ -26104,26 +26182,26 @@ export class HiveSqlParser extends SQLParserBase { } public poolAssignList(): PoolAssignListContext { let localContext = new PoolAssignListContext(this.context, this.state); - this.enterRule(localContext, 710, HiveSqlParser.RULE_poolAssignList); + this.enterRule(localContext, 714, HiveSqlParser.RULE_poolAssignList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 4865; + this.state = 4880; this.poolAssign(); - this.state = 4870; + this.state = 4885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4866; + this.state = 4881; this.match(HiveSqlParser.COMMA); - this.state = 4867; + this.state = 4882; this.poolAssign(); } } - this.state = 4872; + this.state = 4887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -26152,7 +26230,9 @@ export class HiveSqlParser extends SQLParserBase { return this.columnNamePathAllowEmpty_sempred(localContext as ColumnNamePathAllowEmptyContext, predIndex); case 257: return this.selectItem_sempred(localContext as SelectItemContext, predIndex); - case 351: + case 333: + return this.configPropertyPart_sempred(localContext as ConfigPropertyPartContext, predIndex); + case 353: return this.poolPathAllowEmpty_sempred(localContext as PoolPathAllowEmptyContext, predIndex); } return true; @@ -26178,16 +26258,25 @@ export class HiveSqlParser extends SQLParserBase { } return true; } - private poolPathAllowEmpty_sempred(localContext: PoolPathAllowEmptyContext | null, predIndex: number): boolean { + private configPropertyPart_sempred(localContext: ConfigPropertyPartContext | null, predIndex: number): boolean { switch (predIndex) { case 3: + return this.isNextTokenAdjacent(); + case 4: + return this.isNextTokenAdjacent(); + } + return true; + } + private poolPathAllowEmpty_sempred(localContext: PoolPathAllowEmptyContext | null, predIndex: number): boolean { + switch (predIndex) { + case 5: return this.shouldMatchEmpty(); } return true; } public static readonly _serializedATN: number[] = [ - 4,1,438,4874,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,438,4889,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, @@ -26248,428 +26337,430 @@ export class HiveSqlParser extends SQLParserBase { 2,335,7,335,2,336,7,336,2,337,7,337,2,338,7,338,2,339,7,339,2,340, 7,340,2,341,7,341,2,342,7,342,2,343,7,343,2,344,7,344,2,345,7,345, 2,346,7,346,2,347,7,347,2,348,7,348,2,349,7,349,2,350,7,350,2,351, - 7,351,2,352,7,352,2,353,7,353,2,354,7,354,2,355,7,355,1,0,5,0,714, - 8,0,10,0,12,0,717,9,0,1,0,1,0,1,1,1,1,3,1,723,8,1,1,1,3,1,726,8, - 1,1,2,1,2,5,2,730,8,2,10,2,12,2,733,9,2,1,2,1,2,1,2,3,2,738,8,2, - 1,3,1,3,1,3,1,3,1,3,3,3,745,8,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3,1,3, - 3,3,755,8,3,1,3,3,3,758,8,3,1,3,1,3,3,3,762,8,3,1,4,1,4,1,5,1,5, - 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,777,8,5,1,5,1,5,1,5,1,5, - 1,5,3,5,784,8,5,1,5,1,5,1,5,1,5,3,5,790,8,5,1,5,1,5,1,5,3,5,795, - 8,5,1,5,1,5,1,5,3,5,800,8,5,1,5,3,5,803,8,5,1,5,1,5,1,5,1,5,1,5, - 1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,5,5, - 825,8,5,10,5,12,5,828,9,5,1,5,1,5,5,5,832,8,5,10,5,12,5,835,9,5, - 3,5,837,8,5,1,6,1,6,1,6,3,6,842,8,6,1,6,1,6,1,6,3,6,847,8,6,1,6, - 1,6,1,6,1,6,3,6,853,8,6,1,7,1,7,3,7,857,8,7,1,7,1,7,1,7,1,7,1,7, - 1,8,1,8,1,8,1,8,1,8,1,8,3,8,870,8,8,1,9,1,9,3,9,874,8,9,1,9,1,9, - 3,9,878,8,9,1,9,1,9,1,9,3,9,883,8,9,1,10,1,10,1,10,1,10,1,10,3,10, - 890,8,10,1,10,1,10,3,10,894,8,10,1,11,1,11,1,11,3,11,899,8,11,1, - 12,1,12,1,12,1,12,1,12,3,12,906,8,12,1,12,1,12,3,12,910,8,12,1,13, - 1,13,1,13,3,13,915,8,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14, + 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,1,0,5,0,718,8,0,10,0,12,0,721,9,0,1,0,1,0,1,1,1,1,3, + 1,727,8,1,1,1,3,1,730,8,1,1,2,1,2,5,2,734,8,2,10,2,12,2,737,9,2, + 1,2,1,2,1,2,3,2,742,8,2,1,3,1,3,1,3,1,3,1,3,3,3,749,8,3,1,3,1,3, + 1,3,1,3,1,3,1,3,1,3,1,3,3,3,759,8,3,1,3,3,3,762,8,3,1,3,1,3,3,3, + 766,8,3,1,4,1,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5, + 781,8,5,1,5,1,5,1,5,1,5,1,5,3,5,788,8,5,1,5,1,5,1,5,1,5,3,5,794, + 8,5,1,5,1,5,1,5,3,5,799,8,5,1,5,1,5,1,5,3,5,804,8,5,1,5,3,5,807, + 8,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, + 1,5,1,5,1,5,1,5,1,5,5,5,829,8,5,10,5,12,5,832,9,5,3,5,834,8,5,1, + 6,1,6,1,6,3,6,839,8,6,1,6,1,6,1,6,3,6,844,8,6,1,6,1,6,1,6,1,6,3, + 6,850,8,6,1,7,1,7,3,7,854,8,7,1,7,1,7,1,7,1,7,1,7,1,8,1,8,1,8,1, + 8,1,8,1,8,3,8,867,8,8,1,9,1,9,3,9,871,8,9,1,9,1,9,3,9,875,8,9,1, + 9,1,9,1,9,3,9,880,8,9,1,10,1,10,1,10,1,10,1,10,3,10,887,8,10,1,10, + 1,10,3,10,891,8,10,1,11,1,11,1,11,3,11,896,8,11,1,12,1,12,1,12,1, + 12,1,12,3,12,903,8,12,1,12,1,12,3,12,907,8,12,1,13,1,13,1,13,3,13, + 912,8,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14, 1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14, 1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14, - 1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,4,14,961,8,14, - 11,14,12,14,962,1,14,1,14,1,14,4,14,968,8,14,11,14,12,14,969,1,14, - 1,14,1,14,3,14,975,8,14,1,15,1,15,1,15,1,16,1,16,1,16,1,16,1,17, - 1,17,1,18,1,18,1,18,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,21,1,21, - 3,21,998,8,21,1,21,1,21,3,21,1002,8,21,1,21,1,21,3,21,1006,8,21, - 1,21,3,21,1009,8,21,1,21,1,21,3,21,1013,8,21,1,21,1,21,1,21,3,21, - 1018,8,21,1,21,1,21,1,21,1,21,3,21,1024,8,21,1,21,1,21,3,21,1028, - 8,21,1,21,1,21,1,21,1,21,3,21,1034,8,21,3,21,1036,8,21,1,22,1,22, - 1,22,1,23,1,23,1,23,1,24,1,24,1,24,3,24,1047,8,24,1,24,1,24,3,24, - 1051,8,24,1,25,1,25,1,25,1,26,1,26,3,26,1058,8,26,1,26,1,26,1,26, - 1,26,1,26,1,26,3,26,1066,8,26,1,26,3,26,1069,8,26,1,27,1,27,1,27, - 3,27,1074,8,27,1,27,1,27,3,27,1078,8,27,1,27,3,27,1081,8,27,1,28, - 1,28,1,28,1,28,1,28,1,29,1,29,1,29,3,29,1091,8,29,1,29,1,29,1,29, - 1,29,1,29,1,29,3,29,1099,8,29,5,29,1101,8,29,10,29,12,29,1104,9, - 29,3,29,1106,8,29,1,30,1,30,3,30,1110,8,30,1,31,1,31,3,31,1114,8, - 31,1,31,3,31,1117,8,31,1,32,1,32,1,32,3,32,1122,8,32,1,32,1,32,1, - 32,1,32,3,32,1128,8,32,1,32,1,32,1,32,3,32,1133,8,32,1,32,1,32,1, - 32,3,32,1138,8,32,1,32,1,32,3,32,1142,8,32,1,33,1,33,1,33,1,33,1, - 33,1,33,1,33,1,33,1,33,3,33,1153,8,33,3,33,1155,8,33,1,33,1,33,3, - 33,1159,8,33,1,34,1,34,1,35,1,35,1,36,1,36,1,36,1,36,3,36,1169,8, - 36,1,36,1,36,3,36,1173,8,36,1,36,1,36,1,36,1,36,3,36,1179,8,36,1, - 36,3,36,1182,8,36,1,36,1,36,1,36,1,36,1,36,3,36,1189,8,36,1,36,1, - 36,1,36,3,36,1194,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1202,8, - 36,1,36,1,36,1,36,3,36,1207,8,36,1,36,1,36,3,36,1211,8,36,1,36,1, - 36,1,36,1,36,1,36,1,36,3,36,1219,8,36,1,36,1,36,1,36,3,36,1224,8, - 36,1,36,1,36,1,36,1,36,3,36,1230,8,36,1,36,1,36,1,36,1,36,3,36,1236, - 8,36,1,36,3,36,1239,8,36,1,36,3,36,1242,8,36,1,36,3,36,1245,8,36, - 1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1254,8,36,1,36,1,36,1,36, - 1,36,1,36,1,36,3,36,1262,8,36,1,36,1,36,1,36,3,36,1267,8,36,1,36, - 1,36,1,36,1,36,1,36,1,36,3,36,1275,8,36,1,36,1,36,1,36,1,36,1,36, - 3,36,1282,8,36,1,36,3,36,1285,8,36,1,36,3,36,1288,8,36,3,36,1290, - 8,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1301,8,36, - 3,36,1303,8,36,1,36,3,36,1306,8,36,1,36,3,36,1309,8,36,1,36,3,36, - 1312,8,36,1,36,3,36,1315,8,36,1,36,3,36,1318,8,36,3,36,1320,8,36, - 1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1332,8,36, - 1,36,1,36,1,36,1,36,3,36,1338,8,36,1,36,1,36,1,36,1,36,1,36,1,36, - 3,36,1346,8,36,3,36,1348,8,36,1,37,1,37,1,37,1,37,1,37,1,37,1,37, - 1,37,3,37,1358,8,37,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39, - 1,39,1,40,1,40,1,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1,43,1,43, - 1,43,1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,3,45,1391,8,45,1,45, - 1,45,1,45,3,45,1396,8,45,1,46,1,46,3,46,1400,8,46,1,46,1,46,3,46, - 1404,8,46,1,46,1,46,1,46,1,47,1,47,3,47,1411,8,47,1,47,1,47,1,47, - 5,47,1416,8,47,10,47,12,47,1419,9,47,1,47,1,47,1,47,3,47,1424,8, - 47,1,48,1,48,3,48,1428,8,48,1,48,3,48,1431,8,48,1,48,1,48,1,48,5, - 48,1436,8,48,10,48,12,48,1439,9,48,1,48,1,48,1,48,1,49,1,49,1,49, - 1,49,1,49,1,50,1,50,1,50,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52, - 1,52,3,52,1461,8,52,1,53,1,53,1,53,3,53,1466,8,53,1,53,1,53,3,53, - 1470,8,53,1,54,1,54,1,54,1,54,1,55,1,55,3,55,1478,8,55,1,56,1,56, - 1,56,1,57,1,57,1,57,1,57,3,57,1487,8,57,1,57,1,57,1,57,1,57,1,57, - 3,57,1494,8,57,1,58,1,58,1,58,1,58,3,58,1500,8,58,1,58,1,58,1,58, - 1,58,1,58,3,58,1507,8,58,1,58,3,58,1510,8,58,1,58,1,58,1,58,1,58, - 3,58,1516,8,58,1,59,1,59,1,59,5,59,1521,8,59,10,59,12,59,1524,9, - 59,1,60,1,60,1,60,1,60,1,60,3,60,1531,8,60,1,61,1,61,1,62,1,62,1, - 62,5,62,1538,8,62,10,62,12,62,1541,9,62,1,63,1,63,1,63,1,63,1,63, - 1,63,3,63,1549,8,63,1,64,1,64,1,64,1,64,1,64,3,64,1556,8,64,1,65, - 1,65,1,65,1,65,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,68,1,68, - 1,68,1,68,1,69,1,69,3,69,1576,8,69,1,69,1,69,1,69,1,69,1,69,3,69, - 1583,8,69,3,69,1585,8,69,1,70,1,70,1,70,5,70,1590,8,70,10,70,12, - 70,1593,9,70,1,71,1,71,1,71,1,72,1,72,1,73,1,73,3,73,1602,8,73,1, - 73,1,73,1,73,1,73,1,73,1,73,3,73,1610,8,73,1,74,1,74,3,74,1614,8, - 74,1,74,1,74,3,74,1618,8,74,1,74,1,74,1,75,1,75,1,75,1,76,1,76,1, - 76,1,76,1,76,1,76,3,76,1631,8,76,1,76,1,76,1,76,1,77,1,77,1,77,1, - 77,3,77,1640,8,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1, - 78,1,78,1,78,1,78,1,78,3,78,1656,8,78,1,78,1,78,3,78,1660,8,78,1, - 78,1,78,1,78,3,78,1665,8,78,1,78,1,78,1,78,3,78,1670,8,78,1,78,3, - 78,1673,8,78,1,78,3,78,1676,8,78,1,78,3,78,1679,8,78,1,78,3,78,1682, - 8,78,1,78,3,78,1685,8,78,1,79,1,79,1,79,3,79,1690,8,79,1,79,1,79, - 1,79,1,79,1,80,1,80,1,80,3,80,1699,8,80,1,80,1,80,3,80,1703,8,80, - 1,80,1,80,1,80,1,80,1,80,3,80,1710,8,80,1,80,3,80,1713,8,80,1,80, - 3,80,1716,8,80,1,80,3,80,1719,8,80,1,80,1,80,1,80,1,81,1,81,1,81, - 1,81,1,81,1,81,1,81,3,81,1731,8,81,1,81,1,81,1,82,1,82,3,82,1737, - 8,82,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84,1,84,1,85,1,85,1,85, - 1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,3,87, - 1763,8,87,1,87,1,87,1,88,1,88,1,88,1,88,3,88,1771,8,88,1,88,1,88, - 3,88,1775,8,88,1,88,3,88,1778,8,88,1,88,3,88,1781,8,88,1,88,3,88, - 1784,8,88,1,88,3,88,1787,8,88,1,88,3,88,1790,8,88,1,88,3,88,1793, - 8,88,1,88,3,88,1796,8,88,1,88,1,88,1,88,1,89,1,89,1,89,1,89,3,89, - 1805,8,89,1,89,1,89,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1815,8,90, - 1,90,3,90,1818,8,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,1,92,1,92, - 1,92,1,92,1,92,1,92,1,93,1,93,1,93,1,93,1,93,3,93,1838,8,93,1,94, - 1,94,1,94,1,94,3,94,1844,8,94,1,94,1,94,1,94,1,94,3,94,1850,8,94, - 1,94,3,94,1853,8,94,3,94,1855,8,94,1,95,1,95,1,95,1,95,1,96,3,96, - 1862,8,96,1,96,1,96,1,96,1,97,1,97,3,97,1869,8,97,1,98,1,98,1,98, - 1,99,1,99,1,99,1,100,1,100,1,100,1,100,1,100,3,100,1882,8,100,1, - 100,1,100,1,100,3,100,1887,8,100,1,100,1,100,1,101,1,101,1,101,5, - 101,1894,8,101,10,101,12,101,1897,9,101,1,102,1,102,1,102,5,102, - 1902,8,102,10,102,12,102,1905,9,102,1,103,1,103,1,103,1,103,1,103, - 3,103,1912,8,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, - 1,103,1,103,1,103,3,103,1925,8,103,1,104,1,104,1,104,1,104,1,104, - 1,104,1,104,1,104,1,104,1,104,1,104,3,104,1938,8,104,1,104,1,104, - 1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105, - 1,105,3,105,1954,8,105,1,106,1,106,3,106,1958,8,106,1,107,1,107, - 1,107,1,108,1,108,1,108,1,109,1,109,1,109,1,109,1,109,1,109,1,109, - 3,109,1973,8,109,1,110,1,110,1,110,1,110,3,110,1979,8,110,1,110, - 3,110,1982,8,110,1,110,3,110,1985,8,110,1,110,3,110,1988,8,110,1, - 110,3,110,1991,8,110,1,111,1,111,3,111,1995,8,111,1,112,1,112,1, - 112,1,113,1,113,1,113,1,113,1,114,1,114,1,114,1,114,5,114,2008,8, - 114,10,114,12,114,2011,9,114,3,114,2013,8,114,1,115,1,115,1,115, - 1,115,1,116,1,116,1,116,5,116,2022,8,116,10,116,12,116,2025,9,116, - 1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118, - 3,118,2038,8,118,1,119,1,119,1,119,1,119,1,119,1,119,1,120,1,120, - 1,120,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,122,1,122, - 1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123, - 1,123,1,123,3,123,2072,8,123,1,123,1,123,1,123,1,123,1,123,1,123, - 3,123,2080,8,123,1,123,1,123,1,123,3,123,2085,8,123,1,123,1,123, - 1,123,1,123,1,123,1,123,3,123,2093,8,123,1,123,1,123,1,123,3,123, - 2098,8,123,1,123,1,123,1,123,3,123,2103,8,123,1,124,1,124,1,124, - 5,124,2108,8,124,10,124,12,124,2111,9,124,1,125,1,125,1,125,5,125, - 2116,8,125,10,125,12,125,2119,9,125,1,126,1,126,1,126,5,126,2124, - 8,126,10,126,12,126,2127,9,126,1,127,1,127,1,127,5,127,2132,8,127, - 10,127,12,127,2135,9,127,1,128,1,128,1,128,3,128,2140,8,128,1,129, - 1,129,1,130,1,130,1,130,3,130,2147,8,130,1,131,1,131,1,132,1,132, - 1,132,1,132,1,132,1,132,3,132,2157,8,132,5,132,2159,8,132,10,132, - 12,132,2162,9,132,1,133,1,133,1,133,5,133,2167,8,133,10,133,12,133, - 2170,9,133,1,134,1,134,1,134,1,134,1,135,1,135,3,135,2178,8,135, - 1,135,3,135,2181,8,135,1,136,1,136,3,136,2185,8,136,1,137,1,137, - 1,138,1,138,1,138,3,138,2192,8,138,1,139,1,139,1,140,1,140,3,140, - 2198,8,140,1,140,1,140,3,140,2202,8,140,1,141,1,141,1,141,1,141, - 3,141,2208,8,141,1,142,1,142,3,142,2212,8,142,1,143,1,143,1,143, - 1,144,1,144,1,144,1,144,1,144,1,145,1,145,3,145,2224,8,145,1,145, - 1,145,1,145,1,145,1,145,1,145,1,145,3,145,2233,8,145,1,146,1,146, - 1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146,2244,8,146,1,147, - 1,147,3,147,2248,8,147,1,148,1,148,1,148,5,148,2253,8,148,10,148, - 12,148,2256,9,148,1,149,1,149,1,149,1,149,1,150,1,150,1,150,5,150, - 2265,8,150,10,150,12,150,2268,9,150,1,151,1,151,1,152,1,152,1,152, - 1,153,1,153,3,153,2277,8,153,1,153,3,153,2280,8,153,1,154,1,154, - 1,154,5,154,2285,8,154,10,154,12,154,2288,9,154,1,155,1,155,1,155, - 3,155,2293,8,155,1,156,1,156,3,156,2297,8,156,1,156,3,156,2300,8, - 156,1,156,3,156,2303,8,156,1,157,1,157,1,157,1,157,3,157,2309,8, - 157,1,158,1,158,3,158,2313,8,158,1,159,1,159,3,159,2317,8,159,1, - 160,1,160,1,160,3,160,2322,8,160,1,160,1,160,3,160,2326,8,160,1, - 161,1,161,3,161,2330,8,161,1,162,1,162,3,162,2334,8,162,1,162,1, - 162,1,162,1,162,1,162,1,162,3,162,2342,8,162,1,163,1,163,3,163,2346, - 8,163,1,163,1,163,3,163,2350,8,163,1,164,1,164,3,164,2354,8,164, - 1,165,1,165,3,165,2358,8,165,1,165,1,165,1,165,1,165,1,165,1,165, - 3,165,2366,8,165,1,166,1,166,3,166,2370,8,166,1,166,1,166,3,166, - 2374,8,166,1,167,1,167,1,167,1,167,1,167,1,167,3,167,2382,8,167, - 1,168,1,168,1,168,3,168,2387,8,168,1,169,1,169,1,169,3,169,2392, - 8,169,1,170,1,170,3,170,2396,8,170,1,171,1,171,3,171,2400,8,171, - 1,172,1,172,1,172,1,172,1,172,3,172,2407,8,172,1,173,1,173,1,174, - 1,174,1,174,5,174,2414,8,174,10,174,12,174,2417,9,174,1,175,1,175, - 1,175,1,175,1,175,3,175,2424,8,175,1,176,1,176,1,176,1,176,1,176, - 1,176,1,176,1,176,1,176,1,176,3,176,2436,8,176,1,176,1,176,1,176, + 1,14,1,14,1,14,1,14,1,14,1,14,1,14,4,14,958,8,14,11,14,12,14,959, + 1,14,1,14,1,14,4,14,965,8,14,11,14,12,14,966,1,14,1,14,1,14,3,14, + 972,8,14,1,15,1,15,1,15,1,16,1,16,1,16,1,16,1,17,1,17,1,18,1,18, + 1,18,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,21,1,21,3,21,995,8,21, + 1,21,1,21,3,21,999,8,21,1,21,1,21,3,21,1003,8,21,1,21,3,21,1006, + 8,21,1,21,1,21,3,21,1010,8,21,1,21,1,21,1,21,3,21,1015,8,21,1,21, + 1,21,1,21,1,21,3,21,1021,8,21,1,21,1,21,3,21,1025,8,21,1,21,1,21, + 1,21,1,21,3,21,1031,8,21,3,21,1033,8,21,1,22,1,22,1,22,1,23,1,23, + 1,23,1,24,1,24,1,24,3,24,1044,8,24,1,24,1,24,3,24,1048,8,24,1,25, + 1,25,1,25,1,26,1,26,3,26,1055,8,26,1,26,1,26,1,26,1,26,1,26,1,26, + 3,26,1063,8,26,1,26,3,26,1066,8,26,1,27,1,27,1,27,3,27,1071,8,27, + 1,27,1,27,3,27,1075,8,27,1,27,3,27,1078,8,27,1,28,1,28,1,28,1,28, + 1,28,1,29,1,29,1,29,3,29,1088,8,29,1,29,1,29,1,29,1,29,1,29,1,29, + 3,29,1096,8,29,5,29,1098,8,29,10,29,12,29,1101,9,29,3,29,1103,8, + 29,1,30,1,30,3,30,1107,8,30,1,31,1,31,3,31,1111,8,31,1,31,3,31,1114, + 8,31,1,32,1,32,1,32,3,32,1119,8,32,1,32,1,32,1,32,1,32,3,32,1125, + 8,32,1,32,1,32,1,32,3,32,1130,8,32,1,32,1,32,1,32,3,32,1135,8,32, + 1,32,1,32,3,32,1139,8,32,1,33,1,33,1,33,1,33,1,33,1,33,1,33,1,33, + 1,33,3,33,1150,8,33,3,33,1152,8,33,1,33,1,33,3,33,1156,8,33,1,34, + 1,34,1,35,1,35,1,36,1,36,1,36,1,36,3,36,1166,8,36,1,36,1,36,3,36, + 1170,8,36,1,36,1,36,1,36,1,36,3,36,1176,8,36,1,36,3,36,1179,8,36, + 1,36,1,36,1,36,1,36,1,36,3,36,1186,8,36,1,36,1,36,1,36,3,36,1191, + 8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1199,8,36,1,36,1,36,1,36, + 3,36,1204,8,36,1,36,1,36,3,36,1208,8,36,1,36,1,36,1,36,1,36,1,36, + 1,36,3,36,1216,8,36,1,36,1,36,1,36,3,36,1221,8,36,1,36,1,36,1,36, + 1,36,3,36,1227,8,36,1,36,1,36,1,36,1,36,3,36,1233,8,36,1,36,3,36, + 1236,8,36,1,36,3,36,1239,8,36,1,36,3,36,1242,8,36,1,36,1,36,1,36, + 1,36,1,36,1,36,1,36,3,36,1251,8,36,1,36,1,36,1,36,1,36,1,36,1,36, + 3,36,1259,8,36,1,36,1,36,1,36,3,36,1264,8,36,1,36,1,36,1,36,1,36, + 1,36,1,36,3,36,1272,8,36,1,36,1,36,1,36,1,36,1,36,3,36,1279,8,36, + 1,36,3,36,1282,8,36,1,36,3,36,1285,8,36,3,36,1287,8,36,1,36,1,36, + 1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1298,8,36,3,36,1300,8,36, + 1,36,3,36,1303,8,36,1,36,3,36,1306,8,36,1,36,3,36,1309,8,36,1,36, + 3,36,1312,8,36,1,36,3,36,1315,8,36,3,36,1317,8,36,1,36,1,36,1,36, + 1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1329,8,36,1,36,1,36,1,36, + 1,36,3,36,1335,8,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,1343,8,36, + 3,36,1345,8,36,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,3,37,1355, + 8,37,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,1,40,1,40, + 1,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1,43,1,43,1,43,1,43,1,44, + 1,44,1,44,1,44,1,45,1,45,1,45,3,45,1388,8,45,1,45,1,45,1,45,3,45, + 1393,8,45,1,46,1,46,3,46,1397,8,46,1,46,1,46,3,46,1401,8,46,1,46, + 1,46,1,46,1,47,1,47,3,47,1408,8,47,1,47,1,47,1,47,5,47,1413,8,47, + 10,47,12,47,1416,9,47,1,47,1,47,1,47,3,47,1421,8,47,1,48,1,48,3, + 48,1425,8,48,1,48,3,48,1428,8,48,1,48,1,48,1,48,5,48,1433,8,48,10, + 48,12,48,1436,9,48,1,48,1,48,1,48,1,49,1,49,1,49,1,49,1,49,1,50, + 1,50,1,50,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52,1,52,3,52,1458, + 8,52,1,53,1,53,1,53,3,53,1463,8,53,1,53,1,53,3,53,1467,8,53,1,54, + 1,54,1,54,1,54,1,55,1,55,3,55,1475,8,55,1,56,1,56,1,56,1,57,1,57, + 1,57,1,57,3,57,1484,8,57,1,57,1,57,1,57,1,57,1,57,3,57,1491,8,57, + 1,58,1,58,1,58,1,58,3,58,1497,8,58,1,58,1,58,1,58,1,58,1,58,3,58, + 1504,8,58,1,58,3,58,1507,8,58,1,58,1,58,1,58,1,58,3,58,1513,8,58, + 1,59,1,59,1,59,5,59,1518,8,59,10,59,12,59,1521,9,59,1,60,1,60,1, + 60,1,60,1,60,3,60,1528,8,60,1,61,1,61,1,62,1,62,1,62,5,62,1535,8, + 62,10,62,12,62,1538,9,62,1,63,1,63,1,63,1,63,1,63,1,63,3,63,1546, + 8,63,1,64,1,64,1,64,1,64,1,64,3,64,1553,8,64,1,65,1,65,1,65,1,65, + 1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,69, + 1,69,3,69,1573,8,69,1,69,1,69,1,69,1,69,1,69,3,69,1580,8,69,3,69, + 1582,8,69,1,70,1,70,1,70,5,70,1587,8,70,10,70,12,70,1590,9,70,1, + 71,1,71,1,71,1,72,1,72,1,73,1,73,3,73,1599,8,73,1,73,1,73,1,73,1, + 73,1,73,1,73,3,73,1607,8,73,1,74,1,74,3,74,1611,8,74,1,74,1,74,3, + 74,1615,8,74,1,74,1,74,1,75,1,75,1,75,1,76,1,76,1,76,1,76,1,76,1, + 76,3,76,1628,8,76,1,76,1,76,1,76,1,77,1,77,1,77,1,77,3,77,1637,8, + 77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1, + 78,1,78,3,78,1653,8,78,1,78,1,78,3,78,1657,8,78,1,78,1,78,1,78,3, + 78,1662,8,78,1,78,1,78,1,78,3,78,1667,8,78,1,78,3,78,1670,8,78,1, + 78,3,78,1673,8,78,1,78,3,78,1676,8,78,1,78,3,78,1679,8,78,1,78,3, + 78,1682,8,78,1,79,1,79,1,79,3,79,1687,8,79,1,79,1,79,1,79,1,79,1, + 80,1,80,1,80,3,80,1696,8,80,1,80,1,80,3,80,1700,8,80,1,80,1,80,1, + 80,1,80,1,80,3,80,1707,8,80,1,80,3,80,1710,8,80,1,80,3,80,1713,8, + 80,1,80,3,80,1716,8,80,1,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1, + 81,1,81,3,81,1728,8,81,1,81,1,81,1,82,1,82,3,82,1734,8,82,1,83,1, + 83,1,83,1,83,1,83,1,83,1,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,1, + 85,1,86,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,3,87,1760,8,87,1, + 87,1,87,1,88,1,88,1,88,1,88,3,88,1768,8,88,1,88,1,88,3,88,1772,8, + 88,1,88,3,88,1775,8,88,1,88,3,88,1778,8,88,1,88,3,88,1781,8,88,1, + 88,3,88,1784,8,88,1,88,3,88,1787,8,88,1,88,3,88,1790,8,88,1,88,3, + 88,1793,8,88,1,88,1,88,1,88,1,89,1,89,1,89,1,89,3,89,1802,8,89,1, + 89,1,89,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1812,8,90,1,90,3,90,1815, + 8,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,1,92,1,92,1,92,1,92,1,92, + 1,92,1,93,1,93,1,93,1,93,1,93,3,93,1835,8,93,1,94,1,94,1,94,1,94, + 3,94,1841,8,94,1,94,1,94,1,94,1,94,3,94,1847,8,94,1,94,3,94,1850, + 8,94,3,94,1852,8,94,1,95,1,95,1,95,1,95,1,96,3,96,1859,8,96,1,96, + 1,96,1,96,1,97,1,97,3,97,1866,8,97,1,98,1,98,1,98,1,99,1,99,1,99, + 1,100,1,100,1,100,1,100,1,100,3,100,1879,8,100,1,100,1,100,1,100, + 3,100,1884,8,100,1,100,1,100,1,101,1,101,1,101,5,101,1891,8,101, + 10,101,12,101,1894,9,101,1,102,1,102,1,102,5,102,1899,8,102,10,102, + 12,102,1902,9,102,1,103,1,103,1,103,1,103,1,103,3,103,1909,8,103, + 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, + 3,103,1922,8,103,1,104,1,104,1,104,1,104,1,104,1,104,1,104,1,104, + 1,104,1,104,1,104,3,104,1935,8,104,1,104,1,104,1,104,1,104,1,105, + 1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,3,105,1951, + 8,105,1,106,1,106,3,106,1955,8,106,1,107,1,107,1,107,1,108,1,108, + 1,108,1,109,1,109,1,109,1,109,1,109,1,109,1,109,3,109,1970,8,109, + 1,110,1,110,1,110,1,110,3,110,1976,8,110,1,110,3,110,1979,8,110, + 1,110,3,110,1982,8,110,1,110,3,110,1985,8,110,1,110,3,110,1988,8, + 110,1,111,1,111,3,111,1992,8,111,1,112,1,112,1,112,1,113,1,113,1, + 113,1,113,1,114,1,114,1,114,1,114,5,114,2005,8,114,10,114,12,114, + 2008,9,114,3,114,2010,8,114,1,115,1,115,1,115,1,115,1,116,1,116, + 1,116,5,116,2019,8,116,10,116,12,116,2022,9,116,1,117,1,117,1,117, + 1,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118,3,118,2035,8,118, + 1,119,1,119,1,119,1,119,1,119,1,119,1,120,1,120,1,120,1,120,1,120, + 1,120,1,121,1,121,1,121,1,121,1,121,1,122,1,122,1,122,1,122,1,122, + 1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,3,123, + 2069,8,123,1,123,1,123,1,123,1,123,1,123,1,123,3,123,2077,8,123, + 1,123,1,123,1,123,3,123,2082,8,123,1,123,1,123,1,123,1,123,1,123, + 1,123,3,123,2090,8,123,1,123,1,123,1,123,3,123,2095,8,123,1,123, + 1,123,1,123,3,123,2100,8,123,1,124,1,124,1,124,5,124,2105,8,124, + 10,124,12,124,2108,9,124,1,125,1,125,1,125,5,125,2113,8,125,10,125, + 12,125,2116,9,125,1,126,1,126,1,126,5,126,2121,8,126,10,126,12,126, + 2124,9,126,1,127,1,127,1,127,5,127,2129,8,127,10,127,12,127,2132, + 9,127,1,128,1,128,1,128,3,128,2137,8,128,1,129,1,129,1,130,1,130, + 1,130,3,130,2144,8,130,1,131,1,131,1,132,1,132,1,132,1,132,1,132, + 1,132,3,132,2154,8,132,5,132,2156,8,132,10,132,12,132,2159,9,132, + 1,133,1,133,1,133,5,133,2164,8,133,10,133,12,133,2167,9,133,1,134, + 1,134,1,134,1,134,1,135,1,135,3,135,2175,8,135,1,135,3,135,2178, + 8,135,1,136,1,136,3,136,2182,8,136,1,137,1,137,1,138,1,138,1,138, + 3,138,2189,8,138,1,139,1,139,1,140,1,140,3,140,2195,8,140,1,140, + 1,140,3,140,2199,8,140,1,141,1,141,1,141,1,141,3,141,2205,8,141, + 1,142,1,142,3,142,2209,8,142,1,143,1,143,1,143,1,144,1,144,1,144, + 1,144,1,144,1,145,1,145,3,145,2221,8,145,1,145,1,145,1,145,1,145, + 1,145,1,145,1,145,3,145,2230,8,145,1,146,1,146,1,146,1,146,1,146, + 1,146,1,146,1,146,1,146,3,146,2241,8,146,1,147,1,147,3,147,2245, + 8,147,1,148,1,148,1,148,5,148,2250,8,148,10,148,12,148,2253,9,148, + 1,149,1,149,1,149,1,149,1,150,1,150,1,150,5,150,2262,8,150,10,150, + 12,150,2265,9,150,1,151,1,151,1,152,1,152,1,152,1,153,1,153,3,153, + 2274,8,153,1,153,3,153,2277,8,153,1,154,1,154,1,154,5,154,2282,8, + 154,10,154,12,154,2285,9,154,1,155,1,155,1,155,3,155,2290,8,155, + 1,156,1,156,3,156,2294,8,156,1,156,3,156,2297,8,156,1,156,3,156, + 2300,8,156,1,157,1,157,1,157,1,157,3,157,2306,8,157,1,158,1,158, + 3,158,2310,8,158,1,159,1,159,3,159,2314,8,159,1,160,1,160,1,160, + 3,160,2319,8,160,1,160,1,160,3,160,2323,8,160,1,161,1,161,3,161, + 2327,8,161,1,162,1,162,3,162,2331,8,162,1,162,1,162,1,162,1,162, + 1,162,1,162,3,162,2339,8,162,1,163,1,163,3,163,2343,8,163,1,163, + 1,163,3,163,2347,8,163,1,164,1,164,3,164,2351,8,164,1,165,1,165, + 3,165,2355,8,165,1,165,1,165,1,165,1,165,1,165,1,165,3,165,2363, + 8,165,1,166,1,166,3,166,2367,8,166,1,166,1,166,3,166,2371,8,166, + 1,167,1,167,1,167,1,167,1,167,1,167,3,167,2379,8,167,1,168,1,168, + 1,168,3,168,2384,8,168,1,169,1,169,1,169,3,169,2389,8,169,1,170, + 1,170,3,170,2393,8,170,1,171,1,171,3,171,2397,8,171,1,172,1,172, + 1,172,1,172,1,172,3,172,2404,8,172,1,173,1,173,1,174,1,174,1,174, + 5,174,2411,8,174,10,174,12,174,2414,9,174,1,175,1,175,1,175,1,175, + 1,175,3,175,2421,8,175,1,176,1,176,1,176,1,176,1,176,1,176,1,176, + 1,176,1,176,1,176,3,176,2433,8,176,1,176,1,176,1,176,1,176,1,176, 1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,176, - 1,176,1,176,3,176,2454,8,176,1,176,3,176,2457,8,176,1,176,1,176, - 1,176,1,176,3,176,2463,8,176,1,177,1,177,1,177,1,177,1,177,1,178, - 1,178,1,178,1,178,1,178,1,179,1,179,1,179,1,179,1,179,1,179,1,179, - 1,180,1,180,1,180,1,180,1,180,1,181,1,181,3,181,2489,8,181,1,182, - 3,182,2492,8,182,1,182,1,182,1,183,1,183,3,183,2498,8,183,1,184, - 1,184,1,184,1,184,5,184,2504,8,184,10,184,12,184,2507,9,184,1,185, - 1,185,1,185,1,185,1,185,3,185,2514,8,185,1,185,1,185,1,185,1,185, - 1,185,1,186,1,186,1,186,1,186,5,186,2525,8,186,10,186,12,186,2528, - 9,186,1,187,1,187,1,187,1,187,3,187,2534,8,187,1,187,3,187,2537, - 8,187,1,187,3,187,2540,8,187,1,187,3,187,2543,8,187,1,187,3,187, - 2546,8,187,1,187,3,187,2549,8,187,1,187,3,187,2552,8,187,1,187,3, - 187,2555,8,187,1,187,3,187,2558,8,187,1,187,3,187,2561,8,187,1,187, - 3,187,2564,8,187,1,187,1,187,1,187,3,187,2569,8,187,1,187,3,187, - 2572,8,187,1,187,3,187,2575,8,187,1,187,3,187,2578,8,187,1,187,3, - 187,2581,8,187,1,187,3,187,2584,8,187,1,187,3,187,2587,8,187,1,187, - 3,187,2590,8,187,1,187,3,187,2593,8,187,1,187,3,187,2596,8,187,1, - 187,3,187,2599,8,187,3,187,2601,8,187,1,188,1,188,1,188,1,188,3, - 188,2607,8,188,1,189,1,189,3,189,2611,8,189,1,189,3,189,2614,8,189, - 1,189,3,189,2617,8,189,1,189,3,189,2620,8,189,1,189,3,189,2623,8, - 189,1,189,3,189,2626,8,189,1,189,1,189,1,189,1,189,1,189,3,189,2633, - 8,189,1,190,1,190,3,190,2637,8,190,1,190,3,190,2640,8,190,1,190, - 3,190,2643,8,190,1,190,3,190,2646,8,190,1,190,3,190,2649,8,190,1, - 190,3,190,2652,8,190,1,191,1,191,1,191,4,191,2657,8,191,11,191,12, - 191,2658,1,192,3,192,2662,8,192,1,192,1,192,1,193,1,193,1,193,1, - 193,3,193,2670,8,193,1,193,1,193,3,193,2674,8,193,1,193,1,193,1, - 193,1,193,1,193,3,193,2681,8,193,3,193,2683,8,193,1,194,3,194,2686, - 8,194,1,194,1,194,1,194,3,194,2691,8,194,1,194,3,194,2694,8,194, - 1,194,1,194,3,194,2698,8,194,1,195,1,195,1,195,3,195,2703,8,195, - 1,195,1,195,1,195,1,195,3,195,2709,8,195,1,196,1,196,1,196,1,196, - 1,197,1,197,3,197,2717,8,197,1,198,1,198,1,198,1,198,5,198,2723, - 8,198,10,198,12,198,2726,9,198,1,199,1,199,1,199,1,199,1,199,5,199, - 2733,8,199,10,199,12,199,2736,9,199,3,199,2738,8,199,1,199,1,199, - 3,199,2742,8,199,1,199,1,199,3,199,2746,8,199,1,199,1,199,1,199, - 3,199,2751,8,199,1,200,1,200,1,200,1,200,1,200,3,200,2758,8,200, - 1,201,1,201,5,201,2762,8,201,10,201,12,201,2765,9,201,1,201,3,201, - 2768,8,201,1,202,1,202,1,202,1,202,1,202,3,202,2775,8,202,1,202, - 1,202,1,202,3,202,2780,8,202,1,202,1,202,1,202,1,203,1,203,1,203, - 1,203,1,203,1,203,1,203,1,203,3,203,2793,8,203,1,204,1,204,1,204, - 1,204,1,204,1,204,3,204,2801,8,204,1,205,1,205,1,205,1,206,1,206, - 1,206,1,207,1,207,1,207,1,208,1,208,1,208,1,208,1,208,1,208,1,208, - 1,208,3,208,2820,8,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, - 1,208,3,208,2830,8,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, - 1,208,1,208,1,208,1,208,3,208,2843,8,208,1,209,1,209,1,209,1,209, - 1,209,1,209,1,209,1,209,3,209,2853,8,209,1,209,1,209,3,209,2857, - 8,209,4,209,2859,8,209,11,209,12,209,2860,1,209,1,209,5,209,2865, - 8,209,10,209,12,209,2868,9,209,1,209,1,209,5,209,2872,8,209,10,209, - 12,209,2875,9,209,1,209,1,209,5,209,2879,8,209,10,209,12,209,2882, - 9,209,1,209,1,209,1,209,1,209,1,209,1,209,3,209,2890,8,209,1,209, - 1,209,1,209,1,209,1,209,3,209,2897,8,209,1,209,1,209,1,209,1,209, - 1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209, - 1,209,1,209,1,209,3,209,2917,8,209,1,209,3,209,2920,8,209,1,209, + 3,176,2451,8,176,1,176,3,176,2454,8,176,1,176,1,176,1,176,1,176, + 3,176,2460,8,176,1,177,1,177,1,177,1,177,1,177,1,178,1,178,1,178, + 1,178,1,178,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,180,1,180, + 1,180,1,180,1,180,1,181,1,181,3,181,2486,8,181,1,182,3,182,2489, + 8,182,1,182,1,182,1,183,1,183,3,183,2495,8,183,1,184,1,184,1,184, + 1,184,5,184,2501,8,184,10,184,12,184,2504,9,184,1,185,1,185,1,185, + 1,185,1,185,3,185,2511,8,185,1,185,1,185,1,185,1,185,1,185,1,186, + 1,186,1,186,1,186,5,186,2522,8,186,10,186,12,186,2525,9,186,1,187, + 1,187,1,187,1,187,3,187,2531,8,187,1,187,3,187,2534,8,187,1,187, + 3,187,2537,8,187,1,187,3,187,2540,8,187,1,187,3,187,2543,8,187,1, + 187,3,187,2546,8,187,1,187,3,187,2549,8,187,1,187,3,187,2552,8,187, + 1,187,3,187,2555,8,187,1,187,3,187,2558,8,187,1,187,3,187,2561,8, + 187,1,187,1,187,1,187,3,187,2566,8,187,1,187,3,187,2569,8,187,1, + 187,3,187,2572,8,187,1,187,3,187,2575,8,187,1,187,3,187,2578,8,187, + 1,187,3,187,2581,8,187,1,187,3,187,2584,8,187,1,187,3,187,2587,8, + 187,1,187,3,187,2590,8,187,1,187,3,187,2593,8,187,1,187,3,187,2596, + 8,187,3,187,2598,8,187,1,188,1,188,1,188,1,188,3,188,2604,8,188, + 1,189,1,189,3,189,2608,8,189,1,189,3,189,2611,8,189,1,189,3,189, + 2614,8,189,1,189,3,189,2617,8,189,1,189,3,189,2620,8,189,1,189,3, + 189,2623,8,189,1,189,1,189,1,189,1,189,1,189,3,189,2630,8,189,1, + 190,1,190,3,190,2634,8,190,1,190,3,190,2637,8,190,1,190,3,190,2640, + 8,190,1,190,3,190,2643,8,190,1,190,3,190,2646,8,190,1,190,3,190, + 2649,8,190,1,191,1,191,1,191,4,191,2654,8,191,11,191,12,191,2655, + 1,192,3,192,2659,8,192,1,192,1,192,1,193,1,193,1,193,1,193,3,193, + 2667,8,193,1,193,1,193,3,193,2671,8,193,1,193,1,193,1,193,1,193, + 1,193,3,193,2678,8,193,3,193,2680,8,193,1,194,3,194,2683,8,194,1, + 194,1,194,1,194,3,194,2688,8,194,1,194,3,194,2691,8,194,1,194,1, + 194,3,194,2695,8,194,1,195,1,195,1,195,3,195,2700,8,195,1,195,1, + 195,1,195,1,195,3,195,2706,8,195,1,196,1,196,1,196,1,196,1,197,1, + 197,3,197,2714,8,197,1,198,1,198,1,198,1,198,5,198,2720,8,198,10, + 198,12,198,2723,9,198,1,199,1,199,1,199,1,199,1,199,5,199,2730,8, + 199,10,199,12,199,2733,9,199,3,199,2735,8,199,1,199,1,199,3,199, + 2739,8,199,1,199,1,199,3,199,2743,8,199,1,199,1,199,1,199,3,199, + 2748,8,199,1,200,1,200,1,200,1,200,1,200,3,200,2755,8,200,1,201, + 1,201,5,201,2759,8,201,10,201,12,201,2762,9,201,1,201,3,201,2765, + 8,201,1,202,1,202,1,202,1,202,1,202,3,202,2772,8,202,1,202,1,202, + 1,202,3,202,2777,8,202,1,202,1,202,1,202,1,203,1,203,1,203,1,203, + 1,203,1,203,1,203,1,203,3,203,2790,8,203,1,204,1,204,1,204,1,204, + 1,204,1,204,3,204,2798,8,204,1,205,1,205,1,205,1,206,1,206,1,206, + 1,207,1,207,1,207,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, + 3,208,2817,8,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, + 3,208,2827,8,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,208, + 1,208,1,208,1,208,3,208,2840,8,208,1,209,1,209,1,209,1,209,1,209, + 1,209,1,209,1,209,3,209,2850,8,209,1,209,1,209,3,209,2854,8,209, + 4,209,2856,8,209,11,209,12,209,2857,1,209,1,209,5,209,2862,8,209, + 10,209,12,209,2865,9,209,1,209,1,209,5,209,2869,8,209,10,209,12, + 209,2872,9,209,1,209,1,209,5,209,2876,8,209,10,209,12,209,2879,9, + 209,1,209,1,209,1,209,1,209,1,209,1,209,3,209,2887,8,209,1,209,1, + 209,1,209,1,209,1,209,3,209,2894,8,209,1,209,1,209,1,209,1,209,1, + 209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209, + 1,209,1,209,1,209,3,209,2914,8,209,1,209,3,209,2917,8,209,1,209, 1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209, - 3,209,2934,8,209,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, - 1,210,1,210,1,210,1,210,1,210,3,210,2949,8,210,1,210,1,210,3,210, - 2953,8,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, - 1,210,1,210,1,210,1,210,1,210,1,210,1,210,5,210,2971,8,210,10,210, - 12,210,2974,9,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, - 1,210,3,210,2985,8,210,1,210,1,210,1,210,1,210,3,210,2991,8,210, - 1,210,3,210,2994,8,210,1,210,3,210,2997,8,210,1,210,1,210,1,210, - 1,210,3,210,3003,8,210,1,210,1,210,1,210,1,210,3,210,3009,8,210, - 1,210,1,210,1,210,1,210,1,210,3,210,3016,8,210,1,210,1,210,1,210, - 1,210,1,210,1,210,3,210,3024,8,210,1,210,1,210,1,210,1,210,3,210, - 3030,8,210,1,210,1,210,3,210,3034,8,210,1,210,1,210,1,210,3,210, - 3039,8,210,1,210,3,210,3042,8,210,1,210,1,210,3,210,3046,8,210,1, - 210,1,210,1,210,1,210,1,210,3,210,3053,8,210,1,210,1,210,1,210,3, - 210,3058,8,210,1,210,1,210,1,210,3,210,3063,8,210,1,210,3,210,3066, - 8,210,3,210,3068,8,210,1,211,1,211,1,211,1,211,1,211,1,211,3,211, - 3076,8,211,1,211,1,211,1,211,1,211,1,211,1,211,3,211,3084,8,211, - 1,211,1,211,3,211,3088,8,211,4,211,3090,8,211,11,211,12,211,3091, - 1,211,1,211,3,211,3096,8,211,1,212,1,212,1,212,1,212,1,212,1,212, - 1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,3,212,3113, + 3,209,2931,8,209,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, + 1,210,1,210,1,210,1,210,1,210,3,210,2946,8,210,1,210,1,210,3,210, + 2950,8,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, + 1,210,1,210,1,210,1,210,1,210,1,210,1,210,5,210,2968,8,210,10,210, + 12,210,2971,9,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210,1,210, + 1,210,3,210,2982,8,210,1,210,1,210,1,210,1,210,3,210,2988,8,210, + 1,210,3,210,2991,8,210,1,210,3,210,2994,8,210,1,210,1,210,1,210, + 1,210,3,210,3000,8,210,1,210,1,210,1,210,1,210,3,210,3006,8,210, + 1,210,1,210,1,210,1,210,1,210,3,210,3013,8,210,1,210,1,210,1,210, + 1,210,1,210,1,210,3,210,3021,8,210,1,210,1,210,1,210,1,210,3,210, + 3027,8,210,1,210,1,210,3,210,3031,8,210,1,210,1,210,1,210,3,210, + 3036,8,210,1,210,3,210,3039,8,210,1,210,1,210,3,210,3043,8,210,1, + 210,1,210,1,210,1,210,1,210,3,210,3050,8,210,1,210,1,210,1,210,3, + 210,3055,8,210,1,210,1,210,1,210,3,210,3060,8,210,1,210,3,210,3063, + 8,210,3,210,3065,8,210,1,211,1,211,1,211,1,211,1,211,1,211,3,211, + 3073,8,211,1,211,1,211,1,211,1,211,1,211,1,211,3,211,3081,8,211, + 1,211,1,211,3,211,3085,8,211,4,211,3087,8,211,11,211,12,211,3088, + 1,211,1,211,3,211,3093,8,211,1,212,1,212,1,212,1,212,1,212,1,212, + 1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,1,212,3,212,3110, 8,212,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,1,213,1,213,3,213,3130,8,213,1,214,1,214,1,214, - 1,215,1,215,3,215,3137,8,215,1,215,1,215,1,215,1,215,1,215,5,215, - 3144,8,215,10,215,12,215,3147,9,215,1,215,1,215,3,215,3151,8,215, - 1,215,3,215,3154,8,215,1,215,3,215,3157,8,215,1,216,1,216,3,216, - 3161,8,216,1,216,1,216,1,216,1,217,1,217,1,217,1,217,1,217,1,217, - 1,217,1,217,1,217,1,217,3,217,3176,8,217,1,217,1,217,1,218,1,218, - 1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,3,218,3190,8,218, - 1,218,3,218,3193,8,218,1,219,1,219,1,219,1,219,1,219,1,219,1,219, - 1,219,1,219,3,219,3204,8,219,1,220,1,220,3,220,3208,8,220,1,220, - 3,220,3211,8,220,1,220,3,220,3214,8,220,1,220,1,220,3,220,3218,8, - 220,1,220,1,220,1,220,3,220,3223,8,220,1,220,3,220,3226,8,220,1, - 220,3,220,3229,8,220,1,220,3,220,3232,8,220,1,220,3,220,3235,8,220, - 1,220,3,220,3238,8,220,1,220,1,220,1,220,1,220,3,220,3244,8,220, - 1,220,3,220,3247,8,220,1,220,3,220,3250,8,220,1,220,3,220,3253,8, - 220,1,220,3,220,3256,8,220,1,220,3,220,3259,8,220,1,220,3,220,3262, - 8,220,1,220,3,220,3265,8,220,1,220,3,220,3268,8,220,1,220,3,220, - 3271,8,220,1,220,1,220,3,220,3275,8,220,3,220,3277,8,220,1,220,1, - 220,1,220,1,220,3,220,3283,8,220,1,220,1,220,1,220,3,220,3288,8, - 220,1,220,3,220,3291,8,220,1,220,3,220,3294,8,220,1,220,3,220,3297, - 8,220,1,220,3,220,3300,8,220,1,220,1,220,1,220,1,220,3,220,3306, - 8,220,1,220,3,220,3309,8,220,1,220,3,220,3312,8,220,1,220,3,220, - 3315,8,220,1,220,3,220,3318,8,220,1,220,3,220,3321,8,220,1,220,3, - 220,3324,8,220,1,220,3,220,3327,8,220,1,220,3,220,3330,8,220,1,220, - 3,220,3333,8,220,1,220,1,220,3,220,3337,8,220,3,220,3339,8,220,3, - 220,3341,8,220,1,221,1,221,1,221,3,221,3346,8,221,1,221,1,221,1, - 221,3,221,3351,8,221,1,221,1,221,3,221,3355,8,221,1,221,1,221,3, - 221,3359,8,221,1,221,1,221,1,221,3,221,3364,8,221,1,222,1,222,1, - 222,3,222,3369,8,222,1,222,1,222,1,223,1,223,1,223,5,223,3376,8, - 223,10,223,12,223,3379,9,223,1,223,1,223,1,224,1,224,1,224,5,224, - 3386,8,224,10,224,12,224,3389,9,224,1,225,1,225,1,225,5,225,3394, - 8,225,10,225,12,225,3397,9,225,1,226,1,226,1,226,1,227,1,227,1,227, - 1,227,4,227,3406,8,227,11,227,12,227,3407,1,227,3,227,3411,8,227, - 1,228,1,228,5,228,3415,8,228,10,228,12,228,3418,9,228,1,228,1,228, - 5,228,3422,8,228,10,228,12,228,3425,9,228,1,228,1,228,5,228,3429, - 8,228,10,228,12,228,3432,9,228,1,228,1,228,5,228,3436,8,228,10,228, - 12,228,3439,9,228,1,228,1,228,1,228,1,228,3,228,3445,8,228,1,229, - 1,229,1,229,1,229,1,229,1,229,1,229,1,229,3,229,3455,8,229,3,229, - 3457,8,229,1,229,1,229,3,229,3461,8,229,5,229,3463,8,229,10,229, - 12,229,3466,9,229,1,230,1,230,1,230,1,230,3,230,3472,8,230,1,230, - 5,230,3475,8,230,10,230,12,230,3478,9,230,1,231,3,231,3481,8,231, - 1,231,1,231,3,231,3485,8,231,1,231,3,231,3488,8,231,1,231,3,231, - 3491,8,231,1,231,1,231,1,231,1,231,1,232,1,232,1,232,1,232,1,232, - 3,232,3502,8,232,1,232,1,232,3,232,3506,8,232,3,232,3508,8,232,1, - 232,3,232,3511,8,232,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1, - 233,1,233,5,233,3522,8,233,10,233,12,233,3525,9,233,3,233,3527,8, - 233,1,233,3,233,3530,8,233,1,233,1,233,1,233,1,233,1,233,1,233,1, - 233,1,233,5,233,3540,8,233,10,233,12,233,3543,9,233,3,233,3545,8, - 233,1,233,1,233,1,233,1,233,1,233,3,233,3552,8,233,1,233,1,233,1, - 233,1,233,1,233,5,233,3559,8,233,10,233,12,233,3562,9,233,1,233, - 1,233,3,233,3566,8,233,3,233,3568,8,233,3,233,3570,8,233,1,234,1, + 1,213,1,213,1,213,1,213,1,213,3,213,3127,8,213,1,214,1,214,1,214, + 1,215,1,215,3,215,3134,8,215,1,215,1,215,1,215,1,215,1,215,5,215, + 3141,8,215,10,215,12,215,3144,9,215,1,215,1,215,3,215,3148,8,215, + 1,215,3,215,3151,8,215,1,215,3,215,3154,8,215,1,216,1,216,3,216, + 3158,8,216,1,216,1,216,1,216,1,217,1,217,1,217,1,217,1,217,1,217, + 1,217,1,217,1,217,1,217,3,217,3173,8,217,1,217,1,217,1,218,1,218, + 1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218,3,218,3187,8,218, + 1,218,3,218,3190,8,218,1,219,1,219,1,219,1,219,1,219,1,219,1,219, + 1,219,1,219,3,219,3201,8,219,1,220,1,220,3,220,3205,8,220,1,220, + 3,220,3208,8,220,1,220,3,220,3211,8,220,1,220,1,220,3,220,3215,8, + 220,1,220,1,220,1,220,3,220,3220,8,220,1,220,3,220,3223,8,220,1, + 220,3,220,3226,8,220,1,220,3,220,3229,8,220,1,220,3,220,3232,8,220, + 1,220,3,220,3235,8,220,1,220,1,220,1,220,1,220,3,220,3241,8,220, + 1,220,3,220,3244,8,220,1,220,3,220,3247,8,220,1,220,3,220,3250,8, + 220,1,220,3,220,3253,8,220,1,220,3,220,3256,8,220,1,220,3,220,3259, + 8,220,1,220,3,220,3262,8,220,1,220,3,220,3265,8,220,1,220,3,220, + 3268,8,220,1,220,1,220,3,220,3272,8,220,3,220,3274,8,220,1,220,1, + 220,1,220,1,220,3,220,3280,8,220,1,220,1,220,1,220,3,220,3285,8, + 220,1,220,3,220,3288,8,220,1,220,3,220,3291,8,220,1,220,3,220,3294, + 8,220,1,220,3,220,3297,8,220,1,220,1,220,1,220,1,220,3,220,3303, + 8,220,1,220,3,220,3306,8,220,1,220,3,220,3309,8,220,1,220,3,220, + 3312,8,220,1,220,3,220,3315,8,220,1,220,3,220,3318,8,220,1,220,3, + 220,3321,8,220,1,220,3,220,3324,8,220,1,220,3,220,3327,8,220,1,220, + 3,220,3330,8,220,1,220,1,220,3,220,3334,8,220,3,220,3336,8,220,3, + 220,3338,8,220,1,221,1,221,1,221,3,221,3343,8,221,1,221,1,221,1, + 221,3,221,3348,8,221,1,221,1,221,3,221,3352,8,221,1,221,1,221,3, + 221,3356,8,221,1,221,1,221,1,221,3,221,3361,8,221,1,222,1,222,1, + 222,3,222,3366,8,222,1,222,1,222,1,223,1,223,1,223,5,223,3373,8, + 223,10,223,12,223,3376,9,223,1,223,1,223,1,224,1,224,1,224,5,224, + 3383,8,224,10,224,12,224,3386,9,224,1,225,1,225,1,225,5,225,3391, + 8,225,10,225,12,225,3394,9,225,1,226,1,226,1,226,1,227,1,227,1,227, + 1,227,4,227,3403,8,227,11,227,12,227,3404,1,227,3,227,3408,8,227, + 1,228,1,228,5,228,3412,8,228,10,228,12,228,3415,9,228,1,228,1,228, + 5,228,3419,8,228,10,228,12,228,3422,9,228,1,228,1,228,5,228,3426, + 8,228,10,228,12,228,3429,9,228,1,228,1,228,5,228,3433,8,228,10,228, + 12,228,3436,9,228,1,228,1,228,1,228,1,228,3,228,3442,8,228,1,229, + 1,229,1,229,1,229,1,229,1,229,1,229,1,229,3,229,3452,8,229,3,229, + 3454,8,229,1,229,1,229,3,229,3458,8,229,5,229,3460,8,229,10,229, + 12,229,3463,9,229,1,230,1,230,1,230,1,230,3,230,3469,8,230,1,230, + 5,230,3472,8,230,10,230,12,230,3475,9,230,1,231,3,231,3478,8,231, + 1,231,1,231,3,231,3482,8,231,1,231,3,231,3485,8,231,1,231,3,231, + 3488,8,231,1,231,1,231,1,231,1,231,1,232,1,232,1,232,1,232,1,232, + 3,232,3499,8,232,1,232,1,232,3,232,3503,8,232,3,232,3505,8,232,1, + 232,3,232,3508,8,232,1,233,1,233,1,233,1,233,1,233,1,233,1,233,1, + 233,1,233,5,233,3519,8,233,10,233,12,233,3522,9,233,3,233,3524,8, + 233,1,233,3,233,3527,8,233,1,233,1,233,1,233,1,233,1,233,1,233,1, + 233,1,233,5,233,3537,8,233,10,233,12,233,3540,9,233,3,233,3542,8, + 233,1,233,1,233,1,233,1,233,1,233,3,233,3549,8,233,1,233,1,233,1, + 233,1,233,1,233,5,233,3556,8,233,10,233,12,233,3559,9,233,1,233, + 1,233,3,233,3563,8,233,3,233,3565,8,233,3,233,3567,8,233,1,234,1, 234,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235,1,235, - 1,235,5,235,3585,8,235,10,235,12,235,3588,9,235,3,235,3590,8,235, - 1,235,1,235,1,235,1,235,1,235,1,235,3,235,3598,8,235,1,235,3,235, - 3601,8,235,1,236,1,236,3,236,3605,8,236,1,236,3,236,3608,8,236,1, - 236,3,236,3611,8,236,1,236,3,236,3614,8,236,1,236,3,236,3617,8,236, + 1,235,5,235,3582,8,235,10,235,12,235,3585,9,235,3,235,3587,8,235, + 1,235,1,235,1,235,1,235,1,235,1,235,3,235,3595,8,235,1,235,3,235, + 3598,8,235,1,236,1,236,3,236,3602,8,236,1,236,3,236,3605,8,236,1, + 236,3,236,3608,8,236,1,236,3,236,3611,8,236,1,236,3,236,3614,8,236, 1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,1,237,3,237, - 3629,8,237,1,238,1,238,1,239,1,239,1,240,1,240,3,240,3637,8,240, - 1,241,1,241,1,241,1,241,1,241,3,241,3644,8,241,1,241,3,241,3647, - 8,241,1,242,1,242,1,242,1,242,1,242,3,242,3654,8,242,1,242,3,242, - 3657,8,242,1,243,1,243,1,243,3,243,3662,8,243,1,243,1,243,1,244, - 1,244,1,244,3,244,3669,8,244,1,244,1,244,1,245,1,245,1,245,1,245, - 3,245,3677,8,245,1,245,1,245,1,246,1,246,3,246,3683,8,246,1,246, - 1,246,1,246,3,246,3688,8,246,1,246,1,246,3,246,3692,8,246,1,247, - 1,247,1,247,3,247,3697,8,247,1,248,1,248,3,248,3701,8,248,1,249, - 1,249,1,249,1,249,1,249,3,249,3708,8,249,1,249,1,249,1,249,1,249, - 1,249,1,249,1,249,1,249,1,249,1,249,5,249,3720,8,249,10,249,12,249, - 3723,9,249,3,249,3725,8,249,1,249,1,249,1,250,1,250,1,250,3,250, - 3732,8,250,1,251,1,251,1,251,1,251,5,251,3738,8,251,10,251,12,251, - 3741,9,251,1,251,1,251,1,251,1,251,1,251,5,251,3748,8,251,10,251, - 12,251,3751,9,251,3,251,3753,8,251,1,252,1,252,1,252,1,252,1,252, - 1,253,1,253,3,253,3762,8,253,1,253,1,253,1,253,1,253,1,253,5,253, - 3769,8,253,10,253,12,253,3772,9,253,3,253,3774,8,253,1,253,1,253, - 1,254,1,254,3,254,3780,8,254,1,254,3,254,3783,8,254,1,254,1,254, - 1,254,3,254,3788,8,254,1,254,3,254,3791,8,254,1,255,1,255,1,255, - 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,3,255,3804,8,255, - 1,255,1,255,1,255,1,255,3,255,3810,8,255,3,255,3812,8,255,1,255, - 1,255,1,255,1,256,1,256,1,256,5,256,3820,8,256,10,256,12,256,3823, - 9,256,1,257,1,257,1,257,3,257,3828,8,257,1,257,3,257,3831,8,257, - 1,257,1,257,1,257,1,257,1,257,1,257,5,257,3839,8,257,10,257,12,257, - 3842,9,257,1,257,1,257,3,257,3846,8,257,1,257,1,257,3,257,3850,8, + 3626,8,237,1,238,1,238,1,239,1,239,1,240,1,240,3,240,3634,8,240, + 1,241,1,241,1,241,1,241,1,241,3,241,3641,8,241,1,241,3,241,3644, + 8,241,1,242,1,242,1,242,1,242,1,242,3,242,3651,8,242,1,242,3,242, + 3654,8,242,1,243,1,243,1,243,3,243,3659,8,243,1,243,1,243,1,244, + 1,244,1,244,3,244,3666,8,244,1,244,1,244,1,245,1,245,1,245,1,245, + 3,245,3674,8,245,1,245,1,245,1,246,1,246,3,246,3680,8,246,1,246, + 1,246,1,246,3,246,3685,8,246,1,246,1,246,3,246,3689,8,246,1,247, + 1,247,1,247,3,247,3694,8,247,1,248,1,248,3,248,3698,8,248,1,249, + 1,249,1,249,1,249,1,249,3,249,3705,8,249,1,249,1,249,1,249,1,249, + 1,249,1,249,1,249,1,249,1,249,1,249,5,249,3717,8,249,10,249,12,249, + 3720,9,249,3,249,3722,8,249,1,249,1,249,1,250,1,250,1,250,3,250, + 3729,8,250,1,251,1,251,1,251,1,251,5,251,3735,8,251,10,251,12,251, + 3738,9,251,1,251,1,251,1,251,1,251,1,251,5,251,3745,8,251,10,251, + 12,251,3748,9,251,3,251,3750,8,251,1,252,1,252,1,252,1,252,1,252, + 1,253,1,253,3,253,3759,8,253,1,253,1,253,1,253,1,253,1,253,5,253, + 3766,8,253,10,253,12,253,3769,9,253,3,253,3771,8,253,1,253,1,253, + 1,254,1,254,3,254,3777,8,254,1,254,3,254,3780,8,254,1,254,1,254, + 1,254,3,254,3785,8,254,1,254,3,254,3788,8,254,1,255,1,255,1,255, + 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,3,255,3801,8,255, + 1,255,1,255,1,255,1,255,3,255,3807,8,255,3,255,3809,8,255,1,255, + 1,255,1,255,1,256,1,256,1,256,5,256,3817,8,256,10,256,12,256,3820, + 9,256,1,257,1,257,1,257,3,257,3825,8,257,1,257,3,257,3828,8,257, + 1,257,1,257,1,257,1,257,1,257,1,257,5,257,3836,8,257,10,257,12,257, + 3839,9,257,1,257,1,257,3,257,3843,8,257,1,257,1,257,3,257,3847,8, 257,1,258,1,258,1,259,1,259,1,260,1,260,1,260,1,260,1,260,1,260, - 1,260,1,260,1,260,1,260,3,260,3866,8,260,1,260,1,260,1,260,1,260, - 3,260,3872,8,260,3,260,3874,8,260,1,260,1,260,1,260,1,261,1,261, - 3,261,3881,8,261,1,262,1,262,1,262,5,262,3886,8,262,10,262,12,262, - 3889,9,262,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263, - 5,263,3900,8,263,10,263,12,263,3903,9,263,1,264,1,264,1,264,3,264, - 3908,8,264,1,264,3,264,3911,8,264,1,264,3,264,3914,8,264,1,264,3, - 264,3917,8,264,1,265,1,265,1,265,1,265,1,265,1,265,1,265,3,265,3926, - 8,265,1,265,1,265,1,265,1,265,1,265,3,265,3933,8,265,1,266,1,266, - 1,266,1,266,3,266,3939,8,266,1,267,1,267,1,267,1,267,1,267,1,267, - 1,267,3,267,3948,8,267,1,268,1,268,3,268,3952,8,268,1,268,1,268, - 1,268,1,268,5,268,3958,8,268,10,268,12,268,3961,9,268,1,268,1,268, - 1,269,1,269,1,269,1,269,1,269,3,269,3970,8,269,1,269,1,269,1,269, - 1,269,1,269,1,269,5,269,3978,8,269,10,269,12,269,3981,9,269,1,269, - 1,269,3,269,3985,8,269,1,270,1,270,3,270,3989,8,270,1,270,1,270, - 5,270,3993,8,270,10,270,12,270,3996,9,270,1,270,1,270,3,270,4000, - 8,270,1,271,1,271,1,271,3,271,4005,8,271,1,272,1,272,1,272,1,273, - 1,273,3,273,4012,8,273,1,274,1,274,3,274,4016,8,274,1,274,3,274, - 4019,8,274,1,274,1,274,1,274,3,274,4024,8,274,1,274,3,274,4027,8, - 274,5,274,4029,8,274,10,274,12,274,4032,9,274,1,275,1,275,3,275, - 4036,8,275,1,276,1,276,1,276,1,276,1,277,1,277,1,277,4,277,4045, - 8,277,11,277,12,277,4046,3,277,4049,8,277,1,278,1,278,1,278,1,278, - 1,278,5,278,4056,8,278,10,278,12,278,4059,9,278,1,279,1,279,1,279, + 1,260,1,260,1,260,1,260,3,260,3863,8,260,1,260,1,260,1,260,1,260, + 3,260,3869,8,260,3,260,3871,8,260,1,260,1,260,1,260,1,261,1,261, + 3,261,3878,8,261,1,262,1,262,1,262,5,262,3883,8,262,10,262,12,262, + 3886,9,262,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263, + 5,263,3897,8,263,10,263,12,263,3900,9,263,1,264,1,264,1,264,3,264, + 3905,8,264,1,264,3,264,3908,8,264,1,264,3,264,3911,8,264,1,264,3, + 264,3914,8,264,1,265,1,265,1,265,1,265,1,265,1,265,1,265,3,265,3923, + 8,265,1,265,1,265,1,265,1,265,1,265,3,265,3930,8,265,1,266,1,266, + 1,266,1,266,3,266,3936,8,266,1,267,1,267,1,267,1,267,1,267,1,267, + 1,267,3,267,3945,8,267,1,268,1,268,3,268,3949,8,268,1,268,1,268, + 1,268,1,268,5,268,3955,8,268,10,268,12,268,3958,9,268,1,268,1,268, + 1,269,1,269,1,269,1,269,1,269,3,269,3967,8,269,1,269,1,269,1,269, + 1,269,1,269,1,269,5,269,3975,8,269,10,269,12,269,3978,9,269,1,269, + 1,269,3,269,3982,8,269,1,270,1,270,3,270,3986,8,270,1,270,1,270, + 5,270,3990,8,270,10,270,12,270,3993,9,270,1,270,1,270,3,270,3997, + 8,270,1,271,1,271,1,271,3,271,4002,8,271,1,272,1,272,1,272,1,273, + 1,273,3,273,4009,8,273,1,274,1,274,3,274,4013,8,274,1,274,3,274, + 4016,8,274,1,274,1,274,1,274,3,274,4021,8,274,1,274,3,274,4024,8, + 274,5,274,4026,8,274,10,274,12,274,4029,9,274,1,275,1,275,3,275, + 4033,8,275,1,276,1,276,1,276,1,276,1,277,1,277,1,277,4,277,4042, + 8,277,11,277,12,277,4043,3,277,4046,8,277,1,278,1,278,1,278,1,278, + 1,278,5,278,4053,8,278,10,278,12,278,4056,9,278,1,279,1,279,1,279, 1,279,1,280,1,280,1,280,1,280,1,281,1,281,1,281,1,281,1,282,1,282, - 1,282,1,282,1,282,1,282,5,282,4079,8,282,10,282,12,282,4082,9,282, - 1,282,1,282,1,282,1,282,1,282,5,282,4089,8,282,10,282,12,282,4092, - 9,282,3,282,4094,8,282,1,283,1,283,1,283,1,283,1,283,3,283,4101, - 8,283,1,283,3,283,4104,8,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,3,283,4114,8,283,1,283,1,283,1,283,5,283,4119,8,283, - 10,283,12,283,4122,9,283,3,283,4124,8,283,3,283,4126,8,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,4137,8,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,4147,8,283, - 3,283,4149,8,283,1,284,1,284,1,284,1,285,1,285,1,286,1,286,3,286, - 4158,8,286,1,287,1,287,1,287,3,287,4163,8,287,1,288,1,288,1,288, - 1,288,1,288,1,288,1,288,3,288,4172,8,288,1,288,1,288,1,289,1,289, - 1,289,1,289,1,289,1,289,1,289,4,289,4183,8,289,11,289,12,289,4184, - 1,289,1,289,3,289,4189,8,289,1,289,1,289,1,290,1,290,1,290,1,290, - 1,290,1,290,4,290,4199,8,290,11,290,12,290,4200,1,290,1,290,3,290, - 4205,8,290,1,290,1,290,1,291,1,291,1,291,1,291,1,291,3,291,4214, + 1,282,1,282,1,282,1,282,5,282,4076,8,282,10,282,12,282,4079,9,282, + 1,282,1,282,1,282,1,282,1,282,5,282,4086,8,282,10,282,12,282,4089, + 9,282,3,282,4091,8,282,1,283,1,283,1,283,1,283,1,283,3,283,4098, + 8,283,1,283,3,283,4101,8,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,3,283,4111,8,283,1,283,1,283,1,283,5,283,4116,8,283, + 10,283,12,283,4119,9,283,3,283,4121,8,283,3,283,4123,8,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,4134,8,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,4144,8,283, + 3,283,4146,8,283,1,284,1,284,1,284,1,285,1,285,1,286,1,286,3,286, + 4155,8,286,1,287,1,287,1,287,3,287,4160,8,287,1,288,1,288,1,288, + 1,288,1,288,1,288,1,288,3,288,4169,8,288,1,288,1,288,1,289,1,289, + 1,289,1,289,1,289,1,289,1,289,4,289,4180,8,289,11,289,12,289,4181, + 1,289,1,289,3,289,4186,8,289,1,289,1,289,1,290,1,290,1,290,1,290, + 1,290,1,290,4,290,4196,8,290,11,290,12,290,4197,1,290,1,290,3,290, + 4202,8,290,1,290,1,290,1,291,1,291,1,291,1,291,1,291,3,291,4211, 8,291,1,291,1,291,1,292,1,292,1,292,1,292,1,292,1,292,1,292,1,293, - 1,293,1,293,1,293,1,293,1,293,1,293,1,293,3,293,4233,8,293,1,294, + 1,293,1,293,1,293,1,293,1,293,1,293,1,293,3,293,4230,8,293,1,294, 1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294, - 1,294,1,294,5,294,4249,8,294,10,294,12,294,4252,9,294,1,294,1,294, - 1,294,1,294,1,294,1,294,1,294,1,294,1,294,3,294,4263,8,294,1,295, + 1,294,1,294,5,294,4246,8,294,10,294,12,294,4249,9,294,1,294,1,294, + 1,294,1,294,1,294,1,294,1,294,1,294,1,294,3,294,4260,8,294,1,295, 1,295,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296, - 1,296,3,296,4278,8,296,1,296,1,296,3,296,4282,8,296,1,297,1,297, + 1,296,3,296,4275,8,296,1,296,1,296,3,296,4279,8,296,1,297,1,297, 1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297, - 1,297,3,297,4298,8,297,1,298,1,298,1,298,5,298,4303,8,298,10,298, - 12,298,4306,9,298,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299, - 1,299,1,299,1,299,3,299,4319,8,299,1,300,5,300,4322,8,300,10,300, - 12,300,4325,9,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,5,300, - 4334,8,300,10,300,12,300,4337,9,300,1,301,1,301,1,301,5,301,4342, - 8,301,10,301,12,301,4345,9,301,1,302,1,302,1,302,5,302,4350,8,302, - 10,302,12,302,4353,9,302,1,303,1,303,1,303,5,303,4358,8,303,10,303, - 12,303,4361,9,303,1,304,1,304,1,304,5,304,4366,8,304,10,304,12,304, - 4369,9,304,1,305,1,305,1,305,5,305,4374,8,305,10,305,12,305,4377, - 9,305,1,306,1,306,1,306,5,306,4382,8,306,10,306,12,306,4385,9,306, - 1,307,1,307,1,308,1,308,1,308,1,308,1,309,1,309,3,309,4395,8,309, - 1,309,1,309,3,309,4399,8,309,1,310,1,310,1,310,1,310,1,310,1,310, - 3,310,4407,8,310,1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311, - 1,311,1,311,1,311,1,311,1,311,1,311,3,311,4423,8,311,1,312,1,312, - 3,312,4427,8,312,1,313,1,313,1,313,3,313,4432,8,313,1,314,1,314, - 1,314,1,314,1,315,1,315,1,315,1,315,1,315,1,315,1,315,3,315,4445, - 8,315,1,316,1,316,1,316,1,316,1,316,1,316,1,316,5,316,4454,8,316, - 10,316,12,316,4457,9,316,1,317,1,317,1,317,1,317,1,317,1,317,3,317, - 4465,8,317,1,318,5,318,4468,8,318,10,318,12,318,4471,9,318,1,318, - 1,318,1,318,3,318,4476,8,318,1,319,1,319,1,319,5,319,4481,8,319, - 10,319,12,319,4484,9,319,1,320,1,320,3,320,4488,8,320,1,321,1,321, - 1,321,1,321,1,321,5,321,4495,8,321,10,321,12,321,4498,9,321,1,321, - 1,321,1,322,1,322,1,322,3,322,4505,8,322,1,323,1,323,1,323,1,323, - 5,323,4511,8,323,10,323,12,323,4514,9,323,1,323,1,323,1,324,1,324, - 1,324,3,324,4521,8,324,1,324,1,324,1,325,1,325,1,326,1,326,1,327, - 1,327,3,327,4531,8,327,1,328,1,328,1,328,3,328,4536,8,328,1,329, - 1,329,1,330,1,330,1,331,1,331,1,332,1,332,1,332,1,332,1,332,1,332, - 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, - 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, - 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, - 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, - 1,332,3,332,4595,8,332,1,333,1,333,1,333,1,333,3,333,4601,8,333, - 1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333,4610,8,333,3,333, - 4612,8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,5,333,4626,8,333,10,333,12,333,4629,9,333,1,333, - 1,333,1,333,1,333,1,333,3,333,4636,8,333,1,333,1,333,3,333,4640, - 8,333,3,333,4642,8,333,1,333,1,333,1,333,1,333,3,333,4648,8,333, - 1,333,1,333,1,333,3,333,4653,8,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333, - 4670,8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,1,333,3,333,4696,8,333,1,333,1,333,1,333,3,333, - 4701,8,333,3,333,4703,8,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333,4731, - 8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,1,333,1,333,3,333,4748,8,333,1,333,1,333,1,333, - 3,333,4753,8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333, - 4762,8,333,1,334,1,334,1,335,1,335,1,335,1,335,1,335,1,335,1,335, - 3,335,4773,8,335,1,336,1,336,1,336,5,336,4778,8,336,10,336,12,336, - 4781,9,336,1,337,1,337,1,337,3,337,4786,8,337,1,338,1,338,1,338, - 3,338,4791,8,338,1,339,1,339,1,340,1,340,1,341,1,341,1,342,1,342, - 1,343,1,343,1,344,1,344,1,345,1,345,1,346,1,346,1,347,1,347,1,348, - 1,348,1,349,1,349,1,350,1,350,1,350,5,350,4818,8,350,10,350,12,350, - 4821,9,350,1,351,1,351,1,351,5,351,4826,8,351,10,351,12,351,4829, - 9,351,1,351,1,351,1,351,1,351,5,351,4835,8,351,10,351,12,351,4838, - 9,351,3,351,4840,8,351,1,352,1,352,1,352,1,352,1,353,1,353,1,353, - 1,353,3,353,4850,8,353,1,354,1,354,1,354,1,354,1,354,1,354,1,354, - 1,354,1,354,1,354,1,354,1,354,3,354,4864,8,354,1,355,1,355,1,355, - 5,355,4869,8,355,10,355,12,355,4872,9,355,1,355,1,833,0,356,0,2, + 1,297,3,297,4295,8,297,1,298,1,298,1,298,5,298,4300,8,298,10,298, + 12,298,4303,9,298,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299, + 1,299,1,299,1,299,3,299,4316,8,299,1,300,5,300,4319,8,300,10,300, + 12,300,4322,9,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,5,300, + 4331,8,300,10,300,12,300,4334,9,300,1,301,1,301,1,301,5,301,4339, + 8,301,10,301,12,301,4342,9,301,1,302,1,302,1,302,5,302,4347,8,302, + 10,302,12,302,4350,9,302,1,303,1,303,1,303,5,303,4355,8,303,10,303, + 12,303,4358,9,303,1,304,1,304,1,304,5,304,4363,8,304,10,304,12,304, + 4366,9,304,1,305,1,305,1,305,5,305,4371,8,305,10,305,12,305,4374, + 9,305,1,306,1,306,1,306,5,306,4379,8,306,10,306,12,306,4382,9,306, + 1,307,1,307,1,308,1,308,1,308,1,308,1,309,1,309,3,309,4392,8,309, + 1,309,1,309,3,309,4396,8,309,1,310,1,310,1,310,1,310,1,310,1,310, + 3,310,4404,8,310,1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311, + 1,311,1,311,1,311,1,311,1,311,1,311,3,311,4420,8,311,1,312,1,312, + 3,312,4424,8,312,1,313,1,313,1,313,3,313,4429,8,313,1,314,1,314, + 1,314,1,314,1,315,1,315,1,315,1,315,1,315,1,315,1,315,3,315,4442, + 8,315,1,316,1,316,1,316,1,316,1,316,1,316,1,316,5,316,4451,8,316, + 10,316,12,316,4454,9,316,1,317,1,317,1,317,1,317,1,317,1,317,3,317, + 4462,8,317,1,318,5,318,4465,8,318,10,318,12,318,4468,9,318,1,318, + 1,318,1,318,3,318,4473,8,318,1,319,1,319,1,319,5,319,4478,8,319, + 10,319,12,319,4481,9,319,1,320,1,320,3,320,4485,8,320,1,321,1,321, + 1,321,1,321,1,321,5,321,4492,8,321,10,321,12,321,4495,9,321,1,321, + 1,321,1,322,1,322,1,322,3,322,4502,8,322,1,323,1,323,1,323,1,323, + 5,323,4508,8,323,10,323,12,323,4511,9,323,1,323,1,323,1,324,1,324, + 1,324,3,324,4518,8,324,1,324,1,324,1,325,1,325,1,326,1,326,1,327, + 1,327,3,327,4528,8,327,1,328,1,328,1,328,3,328,4533,8,328,1,329, + 1,329,1,330,1,330,1,331,1,331,1,332,1,332,1,332,5,332,4544,8,332, + 10,332,12,332,4547,9,332,1,333,1,333,1,333,1,333,1,333,5,333,4554, + 8,333,10,333,12,333,4557,9,333,1,334,1,334,1,334,1,334,1,334,1,334, + 1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334, + 1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334, + 1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334, + 1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334,1,334, + 1,334,3,334,4610,8,334,1,335,1,335,1,335,1,335,3,335,4616,8,335, + 1,335,1,335,1,335,1,335,1,335,1,335,1,335,3,335,4625,8,335,3,335, + 4627,8,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335, + 1,335,1,335,1,335,5,335,4641,8,335,10,335,12,335,4644,9,335,1,335, + 1,335,1,335,1,335,1,335,3,335,4651,8,335,1,335,1,335,3,335,4655, + 8,335,3,335,4657,8,335,1,335,1,335,1,335,1,335,3,335,4663,8,335, + 1,335,1,335,1,335,3,335,4668,8,335,1,335,1,335,1,335,1,335,1,335, + 1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,3,335, + 4685,8,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335, + 1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335, + 1,335,1,335,1,335,1,335,3,335,4711,8,335,1,335,1,335,1,335,3,335, + 4716,8,335,3,335,4718,8,335,1,335,1,335,1,335,1,335,1,335,1,335, + 1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335, + 1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,3,335,4746, + 8,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335, + 1,335,1,335,1,335,1,335,1,335,3,335,4763,8,335,1,335,1,335,1,335, + 3,335,4768,8,335,1,335,1,335,1,335,1,335,1,335,1,335,1,335,3,335, + 4777,8,335,1,336,1,336,1,337,1,337,1,337,1,337,1,337,1,337,1,337, + 3,337,4788,8,337,1,338,1,338,1,338,5,338,4793,8,338,10,338,12,338, + 4796,9,338,1,339,1,339,1,339,3,339,4801,8,339,1,340,1,340,1,340, + 3,340,4806,8,340,1,341,1,341,1,342,1,342,1,343,1,343,1,344,1,344, + 1,345,1,345,1,346,1,346,1,347,1,347,1,348,1,348,1,349,1,349,1,350, + 1,350,1,351,1,351,1,352,1,352,1,352,5,352,4833,8,352,10,352,12,352, + 4836,9,352,1,353,1,353,1,353,5,353,4841,8,353,10,353,12,353,4844, + 9,353,1,353,1,353,1,353,1,353,5,353,4850,8,353,10,353,12,353,4853, + 9,353,3,353,4855,8,353,1,354,1,354,1,354,1,354,1,355,1,355,1,355, + 1,355,3,355,4865,8,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,3,356,4879,8,356,1,357,1,357,1,357, + 5,357,4884,8,357,10,357,12,357,4887,9,357,1,357,1,830,0,358,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, @@ -26691,1662 +26782,1666 @@ export class HiveSqlParser extends SQLParserBase { 608,610,612,614,616,618,620,622,624,626,628,630,632,634,636,638, 640,642,644,646,648,650,652,654,656,658,660,662,664,666,668,670, 672,674,676,678,680,682,684,686,688,690,692,694,696,698,700,702, - 704,706,708,710,0,61,2,0,57,57,172,172,4,0,91,91,121,121,226,226, - 325,325,1,0,395,396,2,0,50,50,346,346,2,0,34,34,282,282,1,0,89,90, - 2,0,139,139,154,154,2,0,67,67,295,295,2,0,68,68,296,296,1,0,155, - 156,2,0,114,114,307,307,11,0,7,7,9,9,58,58,86,86,101,101,155,155, - 161,161,190,190,299,299,309,309,365,365,3,0,4,4,101,101,326,326, - 3,0,15,15,128,128,170,170,1,0,141,142,2,0,30,30,351,351,2,0,217, - 217,373,373,2,0,214,214,272,272,2,0,18,18,89,89,2,0,130,130,177, - 177,2,0,39,39,376,376,4,0,112,112,164,164,205,205,356,356,2,0,7, - 7,96,96,2,0,125,125,350,350,2,0,225,225,391,391,2,0,42,42,315,315, - 2,0,189,189,196,196,2,0,426,426,431,431,2,0,140,140,285,285,3,0, - 12,12,231,231,300,300,2,0,241,241,292,292,2,0,198,198,268,268,2, - 0,260,260,292,292,2,0,354,354,431,431,2,0,133,133,247,247,2,0,152, - 152,281,281,3,0,413,414,418,418,420,420,2,0,412,412,415,417,1,0, - 413,414,4,0,184,184,270,270,286,286,408,411,2,0,7,7,13,13,3,0,7, - 7,13,13,313,313,3,0,184,184,270,270,286,286,4,0,125,125,219,219, - 350,350,360,360,2,0,405,405,407,411,24,0,11,11,16,16,25,28,35,35, - 100,100,131,132,151,151,154,154,162,163,184,184,198,198,216,216, - 228,228,264,264,270,270,286,286,311,311,323,324,340,340,357,357, - 383,383,405,417,419,421,423,423,85,0,1,6,8,8,10,10,15,15,18,20,22, - 24,30,31,33,34,37,38,40,44,46,47,49,50,52,53,56,57,59,59,66,66,68, - 68,72,77,79,79,83,85,87,89,91,95,97,99,103,104,106,107,109,111,114, - 116,118,121,127,130,137,138,142,142,147,150,152,152,155,156,158, - 160,168,170,172,177,182,183,185,187,189,193,195,197,199,202,204, - 204,206,209,211,212,214,215,217,218,220,220,222,223,226,227,232, - 233,235,236,238,240,243,246,252,252,254,255,257,259,261,262,265, - 267,271,282,284,284,287,288,293,298,300,303,305,310,312,312,314, - 317,319,325,327,328,330,330,332,334,339,340,342,342,344,346,349, - 349,352,353,355,355,357,357,360,364,366,368,371,373,375,375,377, - 382,385,385,388,394,13,0,16,16,26,28,63,64,71,71,100,100,131,131, - 145,145,151,151,162,163,198,198,264,264,311,311,337,337,2,0,4,4, - 101,101,2,0,9,9,58,58,3,0,14,14,144,144,369,369,1,0,106,107,1,0, - 94,95,1,0,392,393,1,0,208,209,1,0,381,382,1,0,73,74,1,0,148,149, - 1,0,206,207,1,0,297,298,1,0,80,82,5464,0,715,1,0,0,0,2,722,1,0,0, - 0,4,727,1,0,0,0,6,761,1,0,0,0,8,763,1,0,0,0,10,836,1,0,0,0,12,838, - 1,0,0,0,14,854,1,0,0,0,16,863,1,0,0,0,18,871,1,0,0,0,20,884,1,0, - 0,0,22,895,1,0,0,0,24,900,1,0,0,0,26,911,1,0,0,0,28,974,1,0,0,0, - 30,976,1,0,0,0,32,979,1,0,0,0,34,983,1,0,0,0,36,985,1,0,0,0,38,988, - 1,0,0,0,40,991,1,0,0,0,42,1035,1,0,0,0,44,1037,1,0,0,0,46,1040,1, - 0,0,0,48,1043,1,0,0,0,50,1052,1,0,0,0,52,1055,1,0,0,0,54,1070,1, - 0,0,0,56,1082,1,0,0,0,58,1087,1,0,0,0,60,1107,1,0,0,0,62,1111,1, - 0,0,0,64,1118,1,0,0,0,66,1143,1,0,0,0,68,1160,1,0,0,0,70,1162,1, - 0,0,0,72,1347,1,0,0,0,74,1357,1,0,0,0,76,1359,1,0,0,0,78,1364,1, - 0,0,0,80,1369,1,0,0,0,82,1371,1,0,0,0,84,1375,1,0,0,0,86,1379,1, - 0,0,0,88,1383,1,0,0,0,90,1387,1,0,0,0,92,1397,1,0,0,0,94,1408,1, - 0,0,0,96,1425,1,0,0,0,98,1443,1,0,0,0,100,1448,1,0,0,0,102,1451, - 1,0,0,0,104,1455,1,0,0,0,106,1462,1,0,0,0,108,1471,1,0,0,0,110,1477, - 1,0,0,0,112,1479,1,0,0,0,114,1493,1,0,0,0,116,1515,1,0,0,0,118,1517, - 1,0,0,0,120,1525,1,0,0,0,122,1532,1,0,0,0,124,1534,1,0,0,0,126,1548, - 1,0,0,0,128,1555,1,0,0,0,130,1557,1,0,0,0,132,1561,1,0,0,0,134,1565, - 1,0,0,0,136,1569,1,0,0,0,138,1573,1,0,0,0,140,1586,1,0,0,0,142,1594, - 1,0,0,0,144,1597,1,0,0,0,146,1599,1,0,0,0,148,1611,1,0,0,0,150,1621, - 1,0,0,0,152,1624,1,0,0,0,154,1635,1,0,0,0,156,1643,1,0,0,0,158,1686, - 1,0,0,0,160,1695,1,0,0,0,162,1723,1,0,0,0,164,1736,1,0,0,0,166,1738, - 1,0,0,0,168,1744,1,0,0,0,170,1747,1,0,0,0,172,1753,1,0,0,0,174,1759, - 1,0,0,0,176,1766,1,0,0,0,178,1800,1,0,0,0,180,1808,1,0,0,0,182,1821, - 1,0,0,0,184,1826,1,0,0,0,186,1837,1,0,0,0,188,1854,1,0,0,0,190,1856, - 1,0,0,0,192,1861,1,0,0,0,194,1868,1,0,0,0,196,1870,1,0,0,0,198,1873, - 1,0,0,0,200,1876,1,0,0,0,202,1890,1,0,0,0,204,1898,1,0,0,0,206,1924, - 1,0,0,0,208,1926,1,0,0,0,210,1943,1,0,0,0,212,1957,1,0,0,0,214,1959, - 1,0,0,0,216,1962,1,0,0,0,218,1965,1,0,0,0,220,1974,1,0,0,0,222,1994, - 1,0,0,0,224,1996,1,0,0,0,226,1999,1,0,0,0,228,2012,1,0,0,0,230,2014, - 1,0,0,0,232,2018,1,0,0,0,234,2026,1,0,0,0,236,2030,1,0,0,0,238,2039, - 1,0,0,0,240,2045,1,0,0,0,242,2051,1,0,0,0,244,2056,1,0,0,0,246,2102, - 1,0,0,0,248,2104,1,0,0,0,250,2112,1,0,0,0,252,2120,1,0,0,0,254,2128, - 1,0,0,0,256,2139,1,0,0,0,258,2141,1,0,0,0,260,2146,1,0,0,0,262,2148, - 1,0,0,0,264,2150,1,0,0,0,266,2163,1,0,0,0,268,2171,1,0,0,0,270,2180, - 1,0,0,0,272,2184,1,0,0,0,274,2186,1,0,0,0,276,2191,1,0,0,0,278,2193, - 1,0,0,0,280,2197,1,0,0,0,282,2203,1,0,0,0,284,2211,1,0,0,0,286,2213, - 1,0,0,0,288,2216,1,0,0,0,290,2223,1,0,0,0,292,2234,1,0,0,0,294,2247, - 1,0,0,0,296,2249,1,0,0,0,298,2257,1,0,0,0,300,2261,1,0,0,0,302,2269, - 1,0,0,0,304,2271,1,0,0,0,306,2274,1,0,0,0,308,2281,1,0,0,0,310,2289, - 1,0,0,0,312,2296,1,0,0,0,314,2304,1,0,0,0,316,2312,1,0,0,0,318,2316, - 1,0,0,0,320,2318,1,0,0,0,322,2329,1,0,0,0,324,2333,1,0,0,0,326,2345, - 1,0,0,0,328,2353,1,0,0,0,330,2357,1,0,0,0,332,2369,1,0,0,0,334,2381, - 1,0,0,0,336,2386,1,0,0,0,338,2391,1,0,0,0,340,2393,1,0,0,0,342,2397, - 1,0,0,0,344,2401,1,0,0,0,346,2408,1,0,0,0,348,2410,1,0,0,0,350,2423, - 1,0,0,0,352,2462,1,0,0,0,354,2464,1,0,0,0,356,2469,1,0,0,0,358,2474, - 1,0,0,0,360,2481,1,0,0,0,362,2486,1,0,0,0,364,2491,1,0,0,0,366,2497, - 1,0,0,0,368,2499,1,0,0,0,370,2508,1,0,0,0,372,2520,1,0,0,0,374,2600, - 1,0,0,0,376,2606,1,0,0,0,378,2632,1,0,0,0,380,2634,1,0,0,0,382,2656, - 1,0,0,0,384,2661,1,0,0,0,386,2665,1,0,0,0,388,2697,1,0,0,0,390,2699, - 1,0,0,0,392,2710,1,0,0,0,394,2716,1,0,0,0,396,2718,1,0,0,0,398,2750, - 1,0,0,0,400,2757,1,0,0,0,402,2763,1,0,0,0,404,2769,1,0,0,0,406,2784, - 1,0,0,0,408,2794,1,0,0,0,410,2802,1,0,0,0,412,2805,1,0,0,0,414,2808, - 1,0,0,0,416,2811,1,0,0,0,418,2933,1,0,0,0,420,3067,1,0,0,0,422,3095, - 1,0,0,0,424,3112,1,0,0,0,426,3129,1,0,0,0,428,3131,1,0,0,0,430,3134, - 1,0,0,0,432,3160,1,0,0,0,434,3165,1,0,0,0,436,3192,1,0,0,0,438,3203, - 1,0,0,0,440,3340,1,0,0,0,442,3342,1,0,0,0,444,3365,1,0,0,0,446,3377, - 1,0,0,0,448,3382,1,0,0,0,450,3390,1,0,0,0,452,3398,1,0,0,0,454,3410, - 1,0,0,0,456,3444,1,0,0,0,458,3446,1,0,0,0,460,3471,1,0,0,0,462,3480, - 1,0,0,0,464,3510,1,0,0,0,466,3569,1,0,0,0,468,3571,1,0,0,0,470,3600, - 1,0,0,0,472,3602,1,0,0,0,474,3618,1,0,0,0,476,3630,1,0,0,0,478,3632, - 1,0,0,0,480,3636,1,0,0,0,482,3646,1,0,0,0,484,3656,1,0,0,0,486,3661, - 1,0,0,0,488,3668,1,0,0,0,490,3672,1,0,0,0,492,3691,1,0,0,0,494,3696, - 1,0,0,0,496,3698,1,0,0,0,498,3702,1,0,0,0,500,3728,1,0,0,0,502,3733, - 1,0,0,0,504,3754,1,0,0,0,506,3759,1,0,0,0,508,3790,1,0,0,0,510,3792, - 1,0,0,0,512,3816,1,0,0,0,514,3849,1,0,0,0,516,3851,1,0,0,0,518,3853, - 1,0,0,0,520,3855,1,0,0,0,522,3880,1,0,0,0,524,3882,1,0,0,0,526,3890, - 1,0,0,0,528,3916,1,0,0,0,530,3918,1,0,0,0,532,3938,1,0,0,0,534,3940, - 1,0,0,0,536,3951,1,0,0,0,538,3964,1,0,0,0,540,3999,1,0,0,0,542,4001, - 1,0,0,0,544,4006,1,0,0,0,546,4011,1,0,0,0,548,4013,1,0,0,0,550,4035, - 1,0,0,0,552,4037,1,0,0,0,554,4041,1,0,0,0,556,4050,1,0,0,0,558,4060, - 1,0,0,0,560,4064,1,0,0,0,562,4068,1,0,0,0,564,4072,1,0,0,0,566,4148, - 1,0,0,0,568,4150,1,0,0,0,570,4153,1,0,0,0,572,4157,1,0,0,0,574,4162, - 1,0,0,0,576,4164,1,0,0,0,578,4175,1,0,0,0,580,4192,1,0,0,0,582,4208, - 1,0,0,0,584,4217,1,0,0,0,586,4232,1,0,0,0,588,4262,1,0,0,0,590,4264, - 1,0,0,0,592,4281,1,0,0,0,594,4297,1,0,0,0,596,4299,1,0,0,0,598,4318, - 1,0,0,0,600,4323,1,0,0,0,602,4338,1,0,0,0,604,4346,1,0,0,0,606,4354, - 1,0,0,0,608,4362,1,0,0,0,610,4370,1,0,0,0,612,4378,1,0,0,0,614,4386, - 1,0,0,0,616,4388,1,0,0,0,618,4398,1,0,0,0,620,4406,1,0,0,0,622,4422, - 1,0,0,0,624,4426,1,0,0,0,626,4431,1,0,0,0,628,4433,1,0,0,0,630,4444, - 1,0,0,0,632,4446,1,0,0,0,634,4464,1,0,0,0,636,4469,1,0,0,0,638,4477, - 1,0,0,0,640,4485,1,0,0,0,642,4489,1,0,0,0,644,4501,1,0,0,0,646,4506, - 1,0,0,0,648,4517,1,0,0,0,650,4524,1,0,0,0,652,4526,1,0,0,0,654,4530, - 1,0,0,0,656,4532,1,0,0,0,658,4537,1,0,0,0,660,4539,1,0,0,0,662,4541, - 1,0,0,0,664,4594,1,0,0,0,666,4761,1,0,0,0,668,4763,1,0,0,0,670,4772, - 1,0,0,0,672,4774,1,0,0,0,674,4785,1,0,0,0,676,4787,1,0,0,0,678,4792, - 1,0,0,0,680,4794,1,0,0,0,682,4796,1,0,0,0,684,4798,1,0,0,0,686,4800, - 1,0,0,0,688,4802,1,0,0,0,690,4804,1,0,0,0,692,4806,1,0,0,0,694,4808, - 1,0,0,0,696,4810,1,0,0,0,698,4812,1,0,0,0,700,4814,1,0,0,0,702,4839, - 1,0,0,0,704,4841,1,0,0,0,706,4849,1,0,0,0,708,4863,1,0,0,0,710,4865, - 1,0,0,0,712,714,3,2,1,0,713,712,1,0,0,0,714,717,1,0,0,0,715,713, - 1,0,0,0,715,716,1,0,0,0,716,718,1,0,0,0,717,715,1,0,0,0,718,719, - 5,0,0,1,719,1,1,0,0,0,720,723,3,4,2,0,721,723,3,10,5,0,722,720,1, - 0,0,0,722,721,1,0,0,0,723,725,1,0,0,0,724,726,5,398,0,0,725,724, - 1,0,0,0,725,726,1,0,0,0,726,3,1,0,0,0,727,737,5,119,0,0,728,730, - 3,6,3,0,729,728,1,0,0,0,730,733,1,0,0,0,731,729,1,0,0,0,731,732, - 1,0,0,0,732,734,1,0,0,0,733,731,1,0,0,0,734,738,3,10,5,0,735,736, - 5,284,0,0,736,738,3,364,182,0,737,731,1,0,0,0,737,735,1,0,0,0,738, - 5,1,0,0,0,739,762,5,122,0,0,740,762,5,138,0,0,741,762,5,88,0,0,742, - 744,5,37,0,0,743,745,7,0,0,0,744,743,1,0,0,0,744,745,1,0,0,0,745, - 762,1,0,0,0,746,762,5,192,0,0,747,762,5,21,0,0,748,762,5,10,0,0, - 749,762,5,275,0,0,750,762,5,191,0,0,751,762,5,19,0,0,752,754,5,377, - 0,0,753,755,5,225,0,0,754,753,1,0,0,0,754,755,1,0,0,0,755,757,1, - 0,0,0,756,758,3,8,4,0,757,756,1,0,0,0,757,758,1,0,0,0,758,762,1, - 0,0,0,759,762,5,79,0,0,760,762,5,78,0,0,761,739,1,0,0,0,761,740, - 1,0,0,0,761,741,1,0,0,0,761,742,1,0,0,0,761,746,1,0,0,0,761,747, - 1,0,0,0,761,748,1,0,0,0,761,749,1,0,0,0,761,750,1,0,0,0,761,751, - 1,0,0,0,761,752,1,0,0,0,761,759,1,0,0,0,761,760,1,0,0,0,762,7,1, - 0,0,0,763,764,7,1,0,0,764,9,1,0,0,0,765,837,3,364,182,0,766,837, - 3,12,6,0,767,837,3,16,8,0,768,837,3,18,9,0,769,837,3,20,10,0,770, - 837,3,24,12,0,771,772,5,277,0,0,772,773,5,320,0,0,773,776,3,476, - 238,0,774,775,5,387,0,0,775,777,3,230,115,0,776,774,1,0,0,0,776, - 777,1,0,0,0,777,837,1,0,0,0,778,837,3,28,14,0,779,780,5,86,0,0,780, - 781,5,139,0,0,781,783,3,482,241,0,782,784,3,500,250,0,783,782,1, - 0,0,0,783,784,1,0,0,0,784,837,1,0,0,0,785,786,5,365,0,0,786,787, - 3,482,241,0,787,789,3,396,198,0,788,790,3,500,250,0,789,788,1,0, - 0,0,789,790,1,0,0,0,790,837,1,0,0,0,791,837,3,398,199,0,792,794, - 5,203,0,0,793,795,5,436,0,0,794,793,1,0,0,0,794,795,1,0,0,0,795, - 796,1,0,0,0,796,797,5,166,0,0,797,802,3,482,241,0,798,800,5,17,0, - 0,799,798,1,0,0,0,799,800,1,0,0,0,800,801,1,0,0,0,801,803,3,654, - 327,0,802,799,1,0,0,0,802,803,1,0,0,0,803,804,1,0,0,0,804,805,5, - 370,0,0,805,806,3,460,230,0,806,807,5,224,0,0,807,808,3,596,298, - 0,808,809,3,402,201,0,809,837,1,0,0,0,810,811,5,249,0,0,811,812, - 3,654,327,0,812,813,5,139,0,0,813,814,3,364,182,0,814,837,1,0,0, - 0,815,816,5,115,0,0,816,817,3,654,327,0,817,818,5,370,0,0,818,819, - 3,300,150,0,819,837,1,0,0,0,820,821,5,304,0,0,821,826,3,664,332, - 0,822,823,7,2,0,0,823,825,3,664,332,0,824,822,1,0,0,0,825,828,1, - 0,0,0,826,824,1,0,0,0,826,827,1,0,0,0,827,829,1,0,0,0,828,826,1, - 0,0,0,829,833,5,405,0,0,830,832,9,0,0,0,831,830,1,0,0,0,832,835, - 1,0,0,0,833,834,1,0,0,0,833,831,1,0,0,0,834,837,1,0,0,0,835,833, - 1,0,0,0,836,765,1,0,0,0,836,766,1,0,0,0,836,767,1,0,0,0,836,768, - 1,0,0,0,836,769,1,0,0,0,836,770,1,0,0,0,836,771,1,0,0,0,836,778, - 1,0,0,0,836,779,1,0,0,0,836,785,1,0,0,0,836,791,1,0,0,0,836,792, - 1,0,0,0,836,810,1,0,0,0,836,815,1,0,0,0,836,820,1,0,0,0,837,11,1, - 0,0,0,838,839,5,187,0,0,839,841,5,66,0,0,840,842,5,188,0,0,841,840, - 1,0,0,0,841,842,1,0,0,0,842,843,1,0,0,0,843,844,5,158,0,0,844,846, - 5,426,0,0,845,847,5,235,0,0,846,845,1,0,0,0,846,847,1,0,0,0,847, - 848,1,0,0,0,848,849,5,166,0,0,849,850,5,329,0,0,850,852,3,640,320, - 0,851,853,3,56,28,0,852,851,1,0,0,0,852,853,1,0,0,0,853,13,1,0,0, - 0,854,856,5,134,0,0,855,857,5,204,0,0,856,855,1,0,0,0,856,857,1, - 0,0,0,857,858,1,0,0,0,858,859,5,279,0,0,859,860,5,399,0,0,860,861, - 5,426,0,0,861,862,5,400,0,0,862,15,1,0,0,0,863,864,5,120,0,0,864, - 865,5,329,0,0,865,866,3,640,320,0,866,867,5,341,0,0,867,869,5,426, - 0,0,868,870,3,14,7,0,869,868,1,0,0,0,869,870,1,0,0,0,870,17,1,0, - 0,0,871,877,5,153,0,0,872,874,5,123,0,0,873,872,1,0,0,0,873,874, - 1,0,0,0,874,875,1,0,0,0,875,876,5,329,0,0,876,878,3,640,320,0,877, - 873,1,0,0,0,877,878,1,0,0,0,878,879,1,0,0,0,879,880,5,139,0,0,880, - 882,5,426,0,0,881,883,3,428,214,0,882,881,1,0,0,0,882,883,1,0,0, - 0,883,19,1,0,0,0,884,885,5,277,0,0,885,886,5,103,0,0,886,889,3,22, - 11,0,887,888,5,278,0,0,888,890,3,22,11,0,889,887,1,0,0,0,889,890, - 1,0,0,0,890,893,1,0,0,0,891,892,5,387,0,0,892,894,3,230,115,0,893, - 891,1,0,0,0,893,894,1,0,0,0,894,21,1,0,0,0,895,898,3,476,238,0,896, - 897,5,395,0,0,897,899,3,26,13,0,898,896,1,0,0,0,898,899,1,0,0,0, - 899,23,1,0,0,0,900,901,5,277,0,0,901,902,5,187,0,0,902,905,3,22, - 11,0,903,904,5,166,0,0,904,906,3,476,238,0,905,903,1,0,0,0,905,906, - 1,0,0,0,906,909,1,0,0,0,907,908,5,387,0,0,908,910,3,230,115,0,909, - 907,1,0,0,0,909,910,1,0,0,0,910,25,1,0,0,0,911,914,5,426,0,0,912, - 913,5,395,0,0,913,915,5,426,0,0,914,912,1,0,0,0,914,915,1,0,0,0, - 915,27,1,0,0,0,916,975,3,42,21,0,917,975,3,46,23,0,918,975,3,48, - 24,0,919,975,3,440,220,0,920,975,3,54,27,0,921,975,3,52,26,0,922, - 975,3,416,208,0,923,975,3,64,32,0,924,975,3,72,36,0,925,975,3,138, - 69,0,926,975,3,160,80,0,927,975,3,176,88,0,928,975,3,180,90,0,929, - 975,3,184,92,0,930,975,3,182,91,0,931,975,3,174,87,0,932,975,3,178, - 89,0,933,975,3,146,73,0,934,975,3,152,76,0,935,975,3,148,74,0,936, - 975,3,150,75,0,937,975,3,154,77,0,938,975,3,156,78,0,939,975,3,158, - 79,0,940,975,3,66,33,0,941,975,3,76,38,0,942,975,3,82,41,0,943,975, - 3,78,39,0,944,975,3,84,42,0,945,975,3,86,43,0,946,975,3,88,44,0, - 947,975,3,90,45,0,948,975,3,92,46,0,949,975,3,106,53,0,950,975,3, - 98,49,0,951,975,3,108,54,0,952,975,3,100,50,0,953,975,3,94,47,0, - 954,975,3,96,48,0,955,975,3,104,52,0,956,975,3,102,51,0,957,958, - 5,1,0,0,958,960,7,3,0,0,959,961,5,431,0,0,960,959,1,0,0,0,961,962, - 1,0,0,0,962,960,1,0,0,0,962,963,1,0,0,0,963,975,1,0,0,0,964,965, - 5,176,0,0,965,967,5,258,0,0,966,968,5,426,0,0,967,966,1,0,0,0,968, - 969,1,0,0,0,969,967,1,0,0,0,969,970,1,0,0,0,970,975,1,0,0,0,971, - 975,3,666,333,0,972,975,3,442,221,0,973,975,3,444,222,0,974,916, - 1,0,0,0,974,917,1,0,0,0,974,918,1,0,0,0,974,919,1,0,0,0,974,920, - 1,0,0,0,974,921,1,0,0,0,974,922,1,0,0,0,974,923,1,0,0,0,974,924, - 1,0,0,0,974,925,1,0,0,0,974,926,1,0,0,0,974,927,1,0,0,0,974,928, - 1,0,0,0,974,929,1,0,0,0,974,930,1,0,0,0,974,931,1,0,0,0,974,932, - 1,0,0,0,974,933,1,0,0,0,974,934,1,0,0,0,974,935,1,0,0,0,974,936, - 1,0,0,0,974,937,1,0,0,0,974,938,1,0,0,0,974,939,1,0,0,0,974,940, - 1,0,0,0,974,941,1,0,0,0,974,942,1,0,0,0,974,943,1,0,0,0,974,944, - 1,0,0,0,974,945,1,0,0,0,974,946,1,0,0,0,974,947,1,0,0,0,974,948, - 1,0,0,0,974,949,1,0,0,0,974,950,1,0,0,0,974,951,1,0,0,0,974,952, - 1,0,0,0,974,953,1,0,0,0,974,954,1,0,0,0,974,955,1,0,0,0,974,956, - 1,0,0,0,974,957,1,0,0,0,974,964,1,0,0,0,974,971,1,0,0,0,974,972, - 1,0,0,0,974,973,1,0,0,0,975,29,1,0,0,0,976,977,5,151,0,0,977,978, - 5,117,0,0,978,31,1,0,0,0,979,980,5,151,0,0,980,981,5,216,0,0,981, - 982,5,117,0,0,982,33,1,0,0,0,983,984,7,4,0,0,984,35,1,0,0,0,985, - 986,3,678,339,0,986,987,5,284,0,0,987,37,1,0,0,0,988,989,3,680,340, - 0,989,990,5,284,0,0,990,39,1,0,0,0,991,992,5,321,0,0,992,993,5,17, - 0,0,993,994,5,92,0,0,994,41,1,0,0,0,995,997,5,58,0,0,996,998,5,273, - 0,0,997,996,1,0,0,0,997,998,1,0,0,0,998,999,1,0,0,0,999,1001,3,70, - 35,0,1000,1002,3,32,16,0,1001,1000,1,0,0,0,1001,1002,1,0,0,0,1002, - 1003,1,0,0,0,1003,1005,3,478,239,0,1004,1006,3,50,25,0,1005,1004, - 1,0,0,0,1005,1006,1,0,0,0,1006,1008,1,0,0,0,1007,1009,3,428,214, - 0,1008,1007,1,0,0,0,1008,1009,1,0,0,0,1009,1012,1,0,0,0,1010,1011, - 5,196,0,0,1011,1013,5,426,0,0,1012,1010,1,0,0,0,1012,1013,1,0,0, - 0,1013,1017,1,0,0,0,1014,1015,5,387,0,0,1015,1016,5,76,0,0,1016, - 1018,3,230,115,0,1017,1014,1,0,0,0,1017,1018,1,0,0,0,1018,1036,1, - 0,0,0,1019,1020,5,58,0,0,1020,1021,5,273,0,0,1021,1023,3,70,35,0, - 1022,1024,3,32,16,0,1023,1022,1,0,0,0,1023,1024,1,0,0,0,1024,1025, - 1,0,0,0,1025,1027,3,478,239,0,1026,1028,3,50,25,0,1027,1026,1,0, - 0,0,1027,1028,1,0,0,0,1028,1029,1,0,0,0,1029,1033,3,44,22,0,1030, - 1031,5,387,0,0,1031,1032,5,76,0,0,1032,1034,3,230,115,0,1033,1030, - 1,0,0,0,1033,1034,1,0,0,0,1034,1036,1,0,0,0,1035,995,1,0,0,0,1035, - 1019,1,0,0,0,1036,43,1,0,0,0,1037,1038,5,370,0,0,1038,1039,3,476, - 238,0,1039,45,1,0,0,0,1040,1041,5,368,0,0,1041,1042,3,476,238,0, - 1042,47,1,0,0,0,1043,1044,5,101,0,0,1044,1046,3,70,35,0,1045,1047, - 3,30,15,0,1046,1045,1,0,0,0,1046,1047,1,0,0,0,1047,1048,1,0,0,0, - 1048,1050,3,476,238,0,1049,1051,3,34,17,0,1050,1049,1,0,0,0,1050, - 1051,1,0,0,0,1051,49,1,0,0,0,1052,1053,5,47,0,0,1053,1054,5,426, - 0,0,1054,51,1,0,0,0,1055,1057,5,351,0,0,1056,1058,5,329,0,0,1057, - 1056,1,0,0,0,1057,1058,1,0,0,0,1058,1059,1,0,0,0,1059,1065,3,640, - 320,0,1060,1061,5,46,0,0,1061,1062,5,399,0,0,1062,1063,3,254,127, - 0,1063,1064,5,400,0,0,1064,1066,1,0,0,0,1065,1060,1,0,0,0,1065,1066, - 1,0,0,0,1066,1068,1,0,0,0,1067,1069,5,135,0,0,1068,1067,1,0,0,0, - 1068,1069,1,0,0,0,1069,53,1,0,0,0,1070,1071,5,101,0,0,1071,1073, - 5,329,0,0,1072,1074,3,30,15,0,1073,1072,1,0,0,0,1073,1074,1,0,0, - 0,1074,1075,1,0,0,0,1075,1077,3,482,241,0,1076,1078,5,255,0,0,1077, - 1076,1,0,0,0,1077,1078,1,0,0,0,1078,1080,1,0,0,0,1079,1081,3,14, - 7,0,1080,1079,1,0,0,0,1080,1081,1,0,0,0,1081,55,1,0,0,0,1082,1083, - 5,160,0,0,1083,1084,5,426,0,0,1084,1085,5,301,0,0,1085,1086,5,426, - 0,0,1086,57,1,0,0,0,1087,1090,3,654,327,0,1088,1089,5,395,0,0,1089, - 1091,3,654,327,0,1090,1088,1,0,0,0,1090,1091,1,0,0,0,1091,1105,1, - 0,0,0,1092,1102,3,654,327,0,1093,1098,5,395,0,0,1094,1099,5,104, - 0,0,1095,1099,5,175,0,0,1096,1099,5,375,0,0,1097,1099,3,654,327, - 0,1098,1094,1,0,0,0,1098,1095,1,0,0,0,1098,1096,1,0,0,0,1098,1097, - 1,0,0,0,1099,1101,1,0,0,0,1100,1093,1,0,0,0,1101,1104,1,0,0,0,1102, - 1100,1,0,0,0,1102,1103,1,0,0,0,1103,1106,1,0,0,0,1104,1102,1,0,0, - 0,1105,1092,1,0,0,0,1105,1106,1,0,0,0,1106,59,1,0,0,0,1107,1109, - 3,58,29,0,1108,1110,3,642,321,0,1109,1108,1,0,0,0,1109,1110,1,0, - 0,0,1110,61,1,0,0,0,1111,1113,3,480,240,0,1112,1114,3,642,321,0, - 1113,1112,1,0,0,0,1113,1114,1,0,0,0,1114,1116,1,0,0,0,1115,1117, - 3,264,132,0,1116,1115,1,0,0,0,1116,1117,1,0,0,0,1117,63,1,0,0,0, - 1118,1141,7,5,0,0,1119,1121,3,70,35,0,1120,1122,5,122,0,0,1121,1120, - 1,0,0,0,1121,1122,1,0,0,0,1122,1123,1,0,0,0,1123,1124,3,476,238, - 0,1124,1142,1,0,0,0,1125,1127,5,69,0,0,1126,1128,5,122,0,0,1127, - 1126,1,0,0,0,1127,1128,1,0,0,0,1128,1129,1,0,0,0,1129,1142,3,476, - 238,0,1130,1132,5,141,0,0,1131,1133,5,122,0,0,1132,1131,1,0,0,0, - 1132,1133,1,0,0,0,1133,1134,1,0,0,0,1134,1142,3,572,286,0,1135,1138, - 5,138,0,0,1136,1138,5,122,0,0,1137,1135,1,0,0,0,1137,1136,1,0,0, - 0,1138,1139,1,0,0,0,1139,1142,3,62,31,0,1140,1142,3,62,31,0,1141, - 1119,1,0,0,0,1141,1125,1,0,0,0,1141,1130,1,0,0,0,1141,1137,1,0,0, - 0,1141,1140,1,0,0,0,1142,65,1,0,0,0,1143,1144,5,10,0,0,1144,1145, - 5,329,0,0,1145,1158,3,640,320,0,1146,1147,5,52,0,0,1147,1154,5,319, - 0,0,1148,1155,5,215,0,0,1149,1150,5,134,0,0,1150,1152,5,46,0,0,1151, - 1153,3,254,127,0,1152,1151,1,0,0,0,1152,1153,1,0,0,0,1153,1155,1, - 0,0,0,1154,1148,1,0,0,0,1154,1149,1,0,0,0,1154,1155,1,0,0,0,1155, - 1159,1,0,0,0,1156,1157,5,33,0,0,1157,1159,5,204,0,0,1158,1146,1, - 0,0,0,1158,1156,1,0,0,0,1159,67,1,0,0,0,1160,1161,7,6,0,0,1161,69, - 1,0,0,0,1162,1163,7,7,0,0,1163,71,1,0,0,0,1164,1165,5,308,0,0,1165, - 1168,7,8,0,0,1166,1167,5,184,0,0,1167,1169,3,194,97,0,1168,1166, - 1,0,0,0,1168,1169,1,0,0,0,1169,1348,1,0,0,0,1170,1172,5,308,0,0, - 1171,1173,5,122,0,0,1172,1171,1,0,0,0,1172,1173,1,0,0,0,1173,1174, - 1,0,0,0,1174,1178,5,330,0,0,1175,1176,3,68,34,0,1176,1177,3,476, - 238,0,1177,1179,1,0,0,0,1178,1175,1,0,0,0,1178,1179,1,0,0,0,1179, - 1181,1,0,0,0,1180,1182,3,74,37,0,1181,1180,1,0,0,0,1181,1182,1,0, - 0,0,1182,1348,1,0,0,0,1183,1184,5,308,0,0,1184,1188,5,379,0,0,1185, - 1186,3,68,34,0,1186,1187,3,476,238,0,1187,1189,1,0,0,0,1188,1185, - 1,0,0,0,1188,1189,1,0,0,0,1189,1193,1,0,0,0,1190,1191,5,184,0,0, - 1191,1194,3,194,97,0,1192,1194,3,194,97,0,1193,1190,1,0,0,0,1193, - 1192,1,0,0,0,1193,1194,1,0,0,0,1194,1348,1,0,0,0,1195,1196,5,308, - 0,0,1196,1197,5,202,0,0,1197,1201,5,379,0,0,1198,1199,3,68,34,0, - 1199,1200,3,476,238,0,1200,1202,1,0,0,0,1201,1198,1,0,0,0,1201,1202, - 1,0,0,0,1202,1206,1,0,0,0,1203,1204,5,184,0,0,1204,1207,3,194,97, - 0,1205,1207,3,194,97,0,1206,1203,1,0,0,0,1206,1205,1,0,0,0,1206, - 1207,1,0,0,0,1207,1348,1,0,0,0,1208,1210,5,308,0,0,1209,1211,5,315, - 0,0,1210,1209,1,0,0,0,1210,1211,1,0,0,0,1211,1212,1,0,0,0,1212,1213, - 5,46,0,0,1213,1214,3,68,34,0,1214,1218,3,480,240,0,1215,1216,3,68, - 34,0,1216,1217,3,476,238,0,1217,1219,1,0,0,0,1218,1215,1,0,0,0,1218, - 1219,1,0,0,0,1219,1223,1,0,0,0,1220,1221,5,184,0,0,1221,1224,3,194, - 97,0,1222,1224,3,194,97,0,1223,1220,1,0,0,0,1223,1222,1,0,0,0,1223, - 1224,1,0,0,0,1224,1348,1,0,0,0,1225,1226,5,308,0,0,1226,1229,5,142, - 0,0,1227,1228,5,184,0,0,1228,1230,3,572,286,0,1229,1227,1,0,0,0, - 1229,1230,1,0,0,0,1230,1348,1,0,0,0,1231,1232,5,308,0,0,1232,1233, - 5,239,0,0,1233,1235,3,480,240,0,1234,1236,3,642,321,0,1235,1234, - 1,0,0,0,1235,1236,1,0,0,0,1236,1238,1,0,0,0,1237,1239,3,500,250, - 0,1238,1237,1,0,0,0,1238,1239,1,0,0,0,1239,1241,1,0,0,0,1240,1242, - 3,556,278,0,1241,1240,1,0,0,0,1241,1242,1,0,0,0,1242,1244,1,0,0, - 0,1243,1245,3,390,195,0,1244,1243,1,0,0,0,1244,1245,1,0,0,0,1245, - 1348,1,0,0,0,1246,1247,5,308,0,0,1247,1253,5,58,0,0,1248,1249,3, - 70,35,0,1249,1250,3,476,238,0,1250,1254,1,0,0,0,1251,1252,5,329, - 0,0,1252,1254,3,482,241,0,1253,1248,1,0,0,0,1253,1251,1,0,0,0,1254, - 1348,1,0,0,0,1255,1256,5,308,0,0,1256,1257,5,329,0,0,1257,1261,5, - 122,0,0,1258,1259,3,68,34,0,1259,1260,3,476,238,0,1260,1262,1,0, - 0,0,1261,1258,1,0,0,0,1261,1262,1,0,0,0,1262,1263,1,0,0,0,1263,1264, - 5,184,0,0,1264,1266,3,194,97,0,1265,1267,3,642,321,0,1266,1265,1, - 0,0,0,1266,1267,1,0,0,0,1267,1348,1,0,0,0,1268,1269,5,308,0,0,1269, - 1270,5,332,0,0,1270,1274,3,482,241,0,1271,1272,5,399,0,0,1272,1273, - 5,426,0,0,1273,1275,5,400,0,0,1274,1271,1,0,0,0,1274,1275,1,0,0, - 0,1275,1348,1,0,0,0,1276,1277,5,308,0,0,1277,1289,5,191,0,0,1278, - 1279,3,70,35,0,1279,1281,3,476,238,0,1280,1282,5,122,0,0,1281,1280, - 1,0,0,0,1281,1282,1,0,0,0,1282,1290,1,0,0,0,1283,1285,3,60,30,0, - 1284,1283,1,0,0,0,1284,1285,1,0,0,0,1285,1287,1,0,0,0,1286,1288, - 5,122,0,0,1287,1286,1,0,0,0,1287,1288,1,0,0,0,1288,1290,1,0,0,0, - 1289,1278,1,0,0,0,1289,1284,1,0,0,0,1290,1348,1,0,0,0,1291,1292, - 5,308,0,0,1292,1319,5,50,0,0,1293,1294,5,51,0,0,1294,1295,5,405, - 0,0,1295,1320,5,431,0,0,1296,1297,3,70,35,0,1297,1298,3,476,238, - 0,1298,1303,1,0,0,0,1299,1301,3,60,30,0,1300,1299,1,0,0,0,1300,1301, - 1,0,0,0,1301,1303,1,0,0,0,1302,1296,1,0,0,0,1302,1300,1,0,0,0,1303, - 1305,1,0,0,0,1304,1306,3,410,205,0,1305,1304,1,0,0,0,1305,1306,1, - 0,0,0,1306,1308,1,0,0,0,1307,1309,3,412,206,0,1308,1307,1,0,0,0, - 1308,1309,1,0,0,0,1309,1311,1,0,0,0,1310,1312,3,414,207,0,1311,1310, - 1,0,0,0,1311,1312,1,0,0,0,1312,1314,1,0,0,0,1313,1315,3,556,278, - 0,1314,1313,1,0,0,0,1314,1315,1,0,0,0,1315,1317,1,0,0,0,1316,1318, - 3,390,195,0,1317,1316,1,0,0,0,1317,1318,1,0,0,0,1318,1320,1,0,0, - 0,1319,1293,1,0,0,0,1319,1302,1,0,0,0,1320,1348,1,0,0,0,1321,1322, - 5,308,0,0,1322,1348,5,346,0,0,1323,1324,5,308,0,0,1324,1325,5,54, - 0,0,1325,1348,5,426,0,0,1326,1327,5,308,0,0,1327,1331,5,280,0,0, - 1328,1329,5,243,0,0,1329,1332,3,654,327,0,1330,1332,5,244,0,0,1331, - 1328,1,0,0,0,1331,1330,1,0,0,0,1332,1348,1,0,0,0,1333,1334,5,308, - 0,0,1334,1348,5,70,0,0,1335,1337,5,308,0,0,1336,1338,5,138,0,0,1337, - 1336,1,0,0,0,1337,1338,1,0,0,0,1338,1339,1,0,0,0,1339,1340,7,9,0, - 0,1340,1341,5,224,0,0,1341,1345,3,482,241,0,1342,1343,3,68,34,0, - 1343,1344,3,476,238,0,1344,1346,1,0,0,0,1345,1342,1,0,0,0,1345,1346, - 1,0,0,0,1346,1348,1,0,0,0,1347,1164,1,0,0,0,1347,1170,1,0,0,0,1347, - 1183,1,0,0,0,1347,1195,1,0,0,0,1347,1208,1,0,0,0,1347,1225,1,0,0, - 0,1347,1231,1,0,0,0,1347,1246,1,0,0,0,1347,1255,1,0,0,0,1347,1268, - 1,0,0,0,1347,1276,1,0,0,0,1347,1291,1,0,0,0,1347,1321,1,0,0,0,1347, - 1323,1,0,0,0,1347,1326,1,0,0,0,1347,1333,1,0,0,0,1347,1335,1,0,0, - 0,1348,73,1,0,0,0,1349,1350,5,384,0,0,1350,1351,3,654,327,0,1351, - 1352,5,405,0,0,1352,1353,5,426,0,0,1353,1358,1,0,0,0,1354,1355,5, - 184,0,0,1355,1358,3,194,97,0,1356,1358,3,194,97,0,1357,1349,1,0, - 0,0,1357,1354,1,0,0,0,1357,1356,1,0,0,0,1358,75,1,0,0,0,1359,1360, - 5,190,0,0,1360,1361,5,329,0,0,1361,1362,3,640,320,0,1362,1363,3, - 80,40,0,1363,77,1,0,0,0,1364,1365,5,190,0,0,1365,1366,3,70,35,0, - 1366,1367,3,476,238,0,1367,1368,3,80,40,0,1368,79,1,0,0,0,1369,1370, - 7,10,0,0,1370,81,1,0,0,0,1371,1372,5,361,0,0,1372,1373,5,329,0,0, - 1373,1374,3,640,320,0,1374,83,1,0,0,0,1375,1376,5,361,0,0,1376,1377, - 3,70,35,0,1377,1378,3,476,238,0,1378,85,1,0,0,0,1379,1380,5,58,0, - 0,1380,1381,5,287,0,0,1381,1382,3,654,327,0,1382,87,1,0,0,0,1383, - 1384,5,101,0,0,1384,1385,5,287,0,0,1385,1386,3,654,327,0,1386,89, - 1,0,0,0,1387,1388,5,143,0,0,1388,1390,3,118,59,0,1389,1391,3,112, - 56,0,1390,1389,1,0,0,0,1390,1391,1,0,0,0,1391,1392,1,0,0,0,1392, - 1393,5,341,0,0,1393,1395,3,124,62,0,1394,1396,3,130,65,0,1395,1394, - 1,0,0,0,1395,1396,1,0,0,0,1396,91,1,0,0,0,1397,1399,5,283,0,0,1398, - 1400,3,132,66,0,1399,1398,1,0,0,0,1399,1400,1,0,0,0,1400,1401,1, - 0,0,0,1401,1403,3,118,59,0,1402,1404,3,112,56,0,1403,1402,1,0,0, - 0,1403,1404,1,0,0,0,1404,1405,1,0,0,0,1405,1406,5,139,0,0,1406,1407, - 3,124,62,0,1407,93,1,0,0,0,1408,1410,5,143,0,0,1409,1411,5,287,0, - 0,1410,1409,1,0,0,0,1410,1411,1,0,0,0,1411,1412,1,0,0,0,1412,1417, - 3,654,327,0,1413,1414,5,397,0,0,1414,1416,3,654,327,0,1415,1413, - 1,0,0,0,1416,1419,1,0,0,0,1417,1415,1,0,0,0,1417,1418,1,0,0,0,1418, - 1420,1,0,0,0,1419,1417,1,0,0,0,1420,1421,5,341,0,0,1421,1423,3,124, - 62,0,1422,1424,3,136,68,0,1423,1422,1,0,0,0,1423,1424,1,0,0,0,1424, - 95,1,0,0,0,1425,1427,5,283,0,0,1426,1428,3,134,67,0,1427,1426,1, - 0,0,0,1427,1428,1,0,0,0,1428,1430,1,0,0,0,1429,1431,5,287,0,0,1430, - 1429,1,0,0,0,1430,1431,1,0,0,0,1431,1432,1,0,0,0,1432,1437,3,654, - 327,0,1433,1434,5,397,0,0,1434,1436,3,654,327,0,1435,1433,1,0,0, - 0,1436,1439,1,0,0,0,1437,1435,1,0,0,0,1437,1438,1,0,0,0,1438,1440, - 1,0,0,0,1439,1437,1,0,0,0,1440,1441,5,139,0,0,1441,1442,3,124,62, - 0,1442,97,1,0,0,0,1443,1444,5,308,0,0,1444,1445,5,287,0,0,1445,1446, - 5,143,0,0,1446,1447,3,126,63,0,1447,99,1,0,0,0,1448,1449,5,308,0, - 0,1449,1450,5,288,0,0,1450,101,1,0,0,0,1451,1452,5,308,0,0,1452, - 1453,5,62,0,0,1453,1454,5,288,0,0,1454,103,1,0,0,0,1455,1456,5,304, - 0,0,1456,1460,5,287,0,0,1457,1461,5,7,0,0,1458,1461,5,213,0,0,1459, - 1461,3,654,327,0,1460,1457,1,0,0,0,1460,1458,1,0,0,0,1460,1459,1, - 0,0,0,1461,105,1,0,0,0,1462,1463,5,308,0,0,1463,1465,5,143,0,0,1464, - 1466,3,126,63,0,1465,1464,1,0,0,0,1465,1466,1,0,0,0,1466,1469,1, - 0,0,0,1467,1468,5,224,0,0,1468,1470,3,110,55,0,1469,1467,1,0,0,0, - 1469,1470,1,0,0,0,1470,107,1,0,0,0,1471,1472,5,308,0,0,1472,1473, - 5,252,0,0,1473,1474,3,654,327,0,1474,109,1,0,0,0,1475,1478,5,7,0, - 0,1476,1478,3,116,58,0,1477,1475,1,0,0,0,1477,1476,1,0,0,0,1478, - 111,1,0,0,0,1479,1480,5,224,0,0,1480,1481,3,114,57,0,1481,113,1, - 0,0,0,1482,1483,3,70,35,0,1483,1484,3,476,238,0,1484,1494,1,0,0, - 0,1485,1487,5,329,0,0,1486,1485,1,0,0,0,1486,1487,1,0,0,0,1487,1488, - 1,0,0,0,1488,1494,3,640,320,0,1489,1490,5,366,0,0,1490,1494,5,426, - 0,0,1491,1492,5,303,0,0,1492,1494,3,654,327,0,1493,1482,1,0,0,0, - 1493,1486,1,0,0,0,1493,1489,1,0,0,0,1493,1491,1,0,0,0,1494,115,1, - 0,0,0,1495,1496,3,70,35,0,1496,1497,3,476,238,0,1497,1516,1,0,0, - 0,1498,1500,5,329,0,0,1499,1498,1,0,0,0,1499,1500,1,0,0,0,1500,1501, - 1,0,0,0,1501,1506,3,482,241,0,1502,1503,5,399,0,0,1503,1504,3,254, - 127,0,1504,1505,5,400,0,0,1505,1507,1,0,0,0,1506,1502,1,0,0,0,1506, - 1507,1,0,0,0,1507,1509,1,0,0,0,1508,1510,3,642,321,0,1509,1508,1, - 0,0,0,1509,1510,1,0,0,0,1510,1516,1,0,0,0,1511,1512,5,366,0,0,1512, - 1516,5,426,0,0,1513,1514,5,303,0,0,1514,1516,3,654,327,0,1515,1495, - 1,0,0,0,1515,1499,1,0,0,0,1515,1511,1,0,0,0,1515,1513,1,0,0,0,1516, - 117,1,0,0,0,1517,1522,3,120,60,0,1518,1519,5,397,0,0,1519,1521,3, - 120,60,0,1520,1518,1,0,0,0,1521,1524,1,0,0,0,1522,1520,1,0,0,0,1522, - 1523,1,0,0,0,1523,119,1,0,0,0,1524,1522,1,0,0,0,1525,1530,3,122, - 61,0,1526,1527,5,399,0,0,1527,1528,3,254,127,0,1528,1529,5,400,0, - 0,1529,1531,1,0,0,0,1530,1526,1,0,0,0,1530,1531,1,0,0,0,1531,121, - 1,0,0,0,1532,1533,7,11,0,0,1533,123,1,0,0,0,1534,1539,3,126,63,0, - 1535,1536,5,397,0,0,1536,1538,3,126,63,0,1537,1535,1,0,0,0,1538, - 1541,1,0,0,0,1539,1537,1,0,0,0,1539,1540,1,0,0,0,1540,125,1,0,0, - 0,1541,1539,1,0,0,0,1542,1543,5,369,0,0,1543,1549,3,658,329,0,1544, - 1545,5,144,0,0,1545,1549,3,658,329,0,1546,1547,5,287,0,0,1547,1549, - 3,654,327,0,1548,1542,1,0,0,0,1548,1544,1,0,0,0,1548,1546,1,0,0, - 0,1549,127,1,0,0,0,1550,1551,5,369,0,0,1551,1556,3,658,329,0,1552, - 1553,5,287,0,0,1553,1556,3,654,327,0,1554,1556,3,654,327,0,1555, - 1550,1,0,0,0,1555,1552,1,0,0,0,1555,1554,1,0,0,0,1556,129,1,0,0, - 0,1557,1558,5,387,0,0,1558,1559,5,143,0,0,1559,1560,5,227,0,0,1560, - 131,1,0,0,0,1561,1562,5,143,0,0,1562,1563,5,227,0,0,1563,1564,5, - 134,0,0,1564,133,1,0,0,0,1565,1566,5,5,0,0,1566,1567,5,227,0,0,1567, - 1568,5,134,0,0,1568,135,1,0,0,0,1569,1570,5,387,0,0,1570,1571,5, - 5,0,0,1571,1572,5,227,0,0,1572,137,1,0,0,0,1573,1575,5,212,0,0,1574, - 1576,5,276,0,0,1575,1574,1,0,0,0,1575,1576,1,0,0,0,1576,1577,1,0, - 0,0,1577,1578,5,329,0,0,1578,1584,3,482,241,0,1579,1580,7,12,0,0, - 1580,1582,5,239,0,0,1581,1583,3,646,323,0,1582,1581,1,0,0,0,1582, - 1583,1,0,0,0,1583,1585,1,0,0,0,1584,1579,1,0,0,0,1584,1585,1,0,0, - 0,1585,139,1,0,0,0,1586,1591,3,142,71,0,1587,1588,5,397,0,0,1588, - 1590,3,142,71,0,1589,1587,1,0,0,0,1590,1593,1,0,0,0,1591,1589,1, - 0,0,0,1591,1592,1,0,0,0,1592,141,1,0,0,0,1593,1591,1,0,0,0,1594, - 1595,3,144,72,0,1595,1596,5,426,0,0,1596,143,1,0,0,0,1597,1598,7, - 13,0,0,1598,145,1,0,0,0,1599,1601,5,58,0,0,1600,1602,5,333,0,0,1601, - 1600,1,0,0,0,1601,1602,1,0,0,0,1602,1603,1,0,0,0,1603,1604,5,141, - 0,0,1604,1605,3,570,285,0,1605,1606,5,17,0,0,1606,1609,5,426,0,0, - 1607,1608,5,370,0,0,1608,1610,3,140,70,0,1609,1607,1,0,0,0,1609, - 1610,1,0,0,0,1610,147,1,0,0,0,1611,1613,5,101,0,0,1612,1614,5,333, - 0,0,1613,1612,1,0,0,0,1613,1614,1,0,0,0,1614,1615,1,0,0,0,1615,1617, - 5,141,0,0,1616,1618,3,30,15,0,1617,1616,1,0,0,0,1617,1618,1,0,0, - 0,1618,1619,1,0,0,0,1619,1620,3,572,286,0,1620,149,1,0,0,0,1621, - 1622,5,271,0,0,1622,1623,7,14,0,0,1623,151,1,0,0,0,1624,1625,5,58, - 0,0,1625,1626,5,333,0,0,1626,1627,5,194,0,0,1627,1628,5,432,0,0, - 1628,1630,5,399,0,0,1629,1631,3,248,124,0,1630,1629,1,0,0,0,1630, - 1631,1,0,0,0,1631,1632,1,0,0,0,1632,1633,5,400,0,0,1633,1634,3,596, - 298,0,1634,153,1,0,0,0,1635,1636,5,101,0,0,1636,1637,5,333,0,0,1637, - 1639,5,194,0,0,1638,1640,3,30,15,0,1639,1638,1,0,0,0,1639,1640,1, - 0,0,0,1640,1641,1,0,0,0,1641,1642,5,432,0,0,1642,155,1,0,0,0,1643, - 1644,5,58,0,0,1644,1645,5,155,0,0,1645,1646,3,654,327,0,1646,1647, - 5,224,0,0,1647,1648,5,329,0,0,1648,1649,3,482,241,0,1649,1650,3, - 268,134,0,1650,1651,5,17,0,0,1651,1655,5,426,0,0,1652,1653,5,387, - 0,0,1653,1654,5,84,0,0,1654,1656,5,265,0,0,1655,1652,1,0,0,0,1655, - 1656,1,0,0,0,1656,1659,1,0,0,0,1657,1658,5,150,0,0,1658,1660,3,226, - 113,0,1659,1657,1,0,0,0,1659,1660,1,0,0,0,1660,1664,1,0,0,0,1661, - 1662,5,154,0,0,1662,1663,5,329,0,0,1663,1665,3,482,241,0,1664,1661, - 1,0,0,0,1664,1665,1,0,0,0,1665,1669,1,0,0,0,1666,1667,5,238,0,0, - 1667,1668,5,32,0,0,1668,1670,3,268,134,0,1669,1666,1,0,0,0,1669, - 1670,1,0,0,0,1670,1675,1,0,0,0,1671,1673,3,222,111,0,1672,1671,1, - 0,0,0,1672,1673,1,0,0,0,1673,1674,1,0,0,0,1674,1676,3,246,123,0, - 1675,1672,1,0,0,0,1675,1676,1,0,0,0,1676,1678,1,0,0,0,1677,1679, - 3,428,214,0,1678,1677,1,0,0,0,1678,1679,1,0,0,0,1679,1681,1,0,0, - 0,1680,1682,3,224,112,0,1681,1680,1,0,0,0,1681,1682,1,0,0,0,1682, - 1684,1,0,0,0,1683,1685,3,196,98,0,1684,1683,1,0,0,0,1684,1685,1, - 0,0,0,1685,157,1,0,0,0,1686,1687,5,101,0,0,1687,1689,5,155,0,0,1688, - 1690,3,30,15,0,1689,1688,1,0,0,0,1689,1690,1,0,0,0,1690,1691,1,0, - 0,0,1691,1692,3,654,327,0,1692,1693,5,224,0,0,1693,1694,3,482,241, - 0,1694,159,1,0,0,0,1695,1698,5,58,0,0,1696,1697,5,228,0,0,1697,1699, - 5,278,0,0,1698,1696,1,0,0,0,1698,1699,1,0,0,0,1699,1700,1,0,0,0, - 1700,1702,5,378,0,0,1701,1703,3,32,16,0,1702,1701,1,0,0,0,1702,1703, - 1,0,0,0,1703,1704,1,0,0,0,1704,1709,3,488,244,0,1705,1706,5,399, - 0,0,1706,1707,3,308,154,0,1707,1708,5,400,0,0,1708,1710,1,0,0,0, - 1709,1705,1,0,0,0,1709,1710,1,0,0,0,1710,1712,1,0,0,0,1711,1713, - 3,196,98,0,1712,1711,1,0,0,0,1712,1713,1,0,0,0,1713,1715,1,0,0,0, - 1714,1716,3,162,81,0,1715,1714,1,0,0,0,1715,1716,1,0,0,0,1716,1718, - 1,0,0,0,1717,1719,3,224,112,0,1718,1717,1,0,0,0,1718,1719,1,0,0, - 0,1719,1720,1,0,0,0,1720,1721,5,17,0,0,1721,1722,3,384,192,0,1722, - 161,1,0,0,0,1723,1724,5,238,0,0,1724,1730,5,224,0,0,1725,1726,5, - 399,0,0,1726,1731,3,254,127,0,1727,1728,5,316,0,0,1728,1729,5,399, - 0,0,1729,1731,3,204,102,0,1730,1725,1,0,0,0,1730,1727,1,0,0,0,1731, - 1732,1,0,0,0,1732,1733,5,400,0,0,1733,163,1,0,0,0,1734,1737,3,166, - 83,0,1735,1737,3,168,84,0,1736,1734,1,0,0,0,1736,1735,1,0,0,0,1737, - 165,1,0,0,0,1738,1739,5,42,0,0,1739,1740,5,224,0,0,1740,1741,5,399, - 0,0,1741,1742,3,254,127,0,1742,1743,5,400,0,0,1743,167,1,0,0,0,1744, - 1745,3,170,85,0,1745,1746,3,172,86,0,1746,169,1,0,0,0,1747,1748, - 5,98,0,0,1748,1749,5,224,0,0,1749,1750,5,399,0,0,1750,1751,3,254, - 127,0,1751,1752,5,400,0,0,1752,171,1,0,0,0,1753,1754,5,315,0,0,1754, - 1755,5,224,0,0,1755,1756,5,399,0,0,1756,1757,3,254,127,0,1757,1758, - 5,400,0,0,1758,173,1,0,0,0,1759,1760,5,101,0,0,1760,1762,5,378,0, - 0,1761,1763,3,30,15,0,1762,1761,1,0,0,0,1762,1763,1,0,0,0,1763,1764, - 1,0,0,0,1764,1765,3,486,243,0,1765,175,1,0,0,0,1766,1767,5,58,0, - 0,1767,1768,5,202,0,0,1768,1770,5,378,0,0,1769,1771,3,32,16,0,1770, - 1769,1,0,0,0,1770,1771,1,0,0,0,1771,1772,1,0,0,0,1772,1774,3,488, - 244,0,1773,1775,3,38,19,0,1774,1773,1,0,0,0,1774,1775,1,0,0,0,1775, - 1777,1,0,0,0,1776,1778,3,196,98,0,1777,1776,1,0,0,0,1777,1778,1, - 0,0,0,1778,1780,1,0,0,0,1779,1781,3,162,81,0,1780,1779,1,0,0,0,1780, - 1781,1,0,0,0,1781,1783,1,0,0,0,1782,1784,3,164,82,0,1783,1782,1, - 0,0,0,1783,1784,1,0,0,0,1784,1786,1,0,0,0,1785,1787,3,222,111,0, - 1786,1785,1,0,0,0,1786,1787,1,0,0,0,1787,1789,1,0,0,0,1788,1790, - 3,246,123,0,1789,1788,1,0,0,0,1789,1790,1,0,0,0,1790,1792,1,0,0, - 0,1791,1793,3,428,214,0,1792,1791,1,0,0,0,1792,1793,1,0,0,0,1793, - 1795,1,0,0,0,1794,1796,3,224,112,0,1795,1794,1,0,0,0,1795,1796,1, - 0,0,0,1796,1797,1,0,0,0,1797,1798,5,17,0,0,1798,1799,3,384,192,0, - 1799,177,1,0,0,0,1800,1801,5,101,0,0,1801,1802,5,202,0,0,1802,1804, - 5,378,0,0,1803,1805,3,30,15,0,1804,1803,1,0,0,0,1804,1805,1,0,0, - 0,1805,1806,1,0,0,0,1806,1807,3,486,243,0,1807,179,1,0,0,0,1808, - 1809,5,58,0,0,1809,1810,5,293,0,0,1810,1811,5,258,0,0,1811,1812, - 3,654,327,0,1812,1814,3,188,94,0,1813,1815,3,190,95,0,1814,1813, - 1,0,0,0,1814,1815,1,0,0,0,1815,1817,1,0,0,0,1816,1818,3,272,136, - 0,1817,1816,1,0,0,0,1817,1818,1,0,0,0,1818,1819,1,0,0,0,1819,1820, - 3,192,96,0,1820,181,1,0,0,0,1821,1822,5,101,0,0,1822,1823,5,293, - 0,0,1823,1824,5,258,0,0,1824,1825,3,654,327,0,1825,183,1,0,0,0,1826, - 1827,5,9,0,0,1827,1828,5,293,0,0,1828,1829,5,258,0,0,1829,1830,3, - 654,327,0,1830,1831,3,186,93,0,1831,185,1,0,0,0,1832,1838,3,188, - 94,0,1833,1838,3,190,95,0,1834,1838,3,272,136,0,1835,1838,3,192, - 96,0,1836,1838,5,115,0,0,1837,1832,1,0,0,0,1837,1833,1,0,0,0,1837, - 1834,1,0,0,0,1837,1835,1,0,0,0,1837,1836,1,0,0,0,1838,187,1,0,0, - 0,1839,1840,5,59,0,0,1840,1855,5,426,0,0,1841,1843,5,111,0,0,1842, - 1844,5,431,0,0,1843,1842,1,0,0,0,1843,1844,1,0,0,0,1844,1845,1,0, - 0,0,1845,1852,3,594,297,0,1846,1850,5,20,0,0,1847,1848,5,223,0,0, - 1848,1850,5,32,0,0,1849,1846,1,0,0,0,1849,1847,1,0,0,0,1850,1851, - 1,0,0,0,1851,1853,5,426,0,0,1852,1849,1,0,0,0,1852,1853,1,0,0,0, - 1853,1855,1,0,0,0,1854,1839,1,0,0,0,1854,1841,1,0,0,0,1855,189,1, - 0,0,0,1856,1857,5,116,0,0,1857,1858,5,17,0,0,1858,1859,5,426,0,0, - 1859,191,1,0,0,0,1860,1862,5,85,0,0,1861,1860,1,0,0,0,1861,1862, - 1,0,0,0,1862,1863,1,0,0,0,1863,1864,5,17,0,0,1864,1865,3,2,1,0,1865, - 193,1,0,0,0,1866,1869,3,654,327,0,1867,1869,5,426,0,0,1868,1866, - 1,0,0,0,1868,1867,1,0,0,0,1869,195,1,0,0,0,1870,1871,5,47,0,0,1871, - 1872,5,426,0,0,1872,197,1,0,0,0,1873,1874,5,183,0,0,1874,1875,5, - 431,0,0,1875,199,1,0,0,0,1876,1877,5,238,0,0,1877,1886,5,32,0,0, - 1878,1881,5,399,0,0,1879,1882,3,202,101,0,1880,1882,3,254,127,0, - 1881,1879,1,0,0,0,1881,1880,1,0,0,0,1882,1887,1,0,0,0,1883,1884, - 5,316,0,0,1884,1885,5,399,0,0,1885,1887,3,204,102,0,1886,1878,1, - 0,0,0,1886,1883,1,0,0,0,1887,1888,1,0,0,0,1888,1889,5,400,0,0,1889, - 201,1,0,0,0,1890,1895,3,320,160,0,1891,1892,5,397,0,0,1892,1894, - 3,320,160,0,1893,1891,1,0,0,0,1894,1897,1,0,0,0,1895,1893,1,0,0, - 0,1895,1896,1,0,0,0,1896,203,1,0,0,0,1897,1895,1,0,0,0,1898,1903, - 3,206,103,0,1899,1900,5,397,0,0,1900,1902,3,206,103,0,1901,1899, - 1,0,0,0,1902,1905,1,0,0,0,1903,1901,1,0,0,0,1903,1904,1,0,0,0,1904, - 205,1,0,0,0,1905,1903,1,0,0,0,1906,1925,3,256,128,0,1907,1912,3, - 682,341,0,1908,1912,3,684,342,0,1909,1912,3,688,344,0,1910,1912, - 3,690,345,0,1911,1907,1,0,0,0,1911,1908,1,0,0,0,1911,1909,1,0,0, - 0,1911,1910,1,0,0,0,1912,1913,1,0,0,0,1913,1914,5,399,0,0,1914,1915, - 3,256,128,0,1915,1916,5,400,0,0,1916,1925,1,0,0,0,1917,1918,7,15, - 0,0,1918,1919,5,399,0,0,1919,1920,5,431,0,0,1920,1921,5,397,0,0, - 1921,1922,3,256,128,0,1922,1923,5,400,0,0,1923,1925,1,0,0,0,1924, - 1906,1,0,0,0,1924,1911,1,0,0,0,1924,1917,1,0,0,0,1925,207,1,0,0, - 0,1926,1927,5,42,0,0,1927,1928,5,32,0,0,1928,1929,5,399,0,0,1929, - 1930,3,254,127,0,1930,1937,5,400,0,0,1931,1932,5,315,0,0,1932,1933, - 5,32,0,0,1933,1934,5,399,0,0,1934,1935,3,266,133,0,1935,1936,5,400, - 0,0,1936,1938,1,0,0,0,1937,1931,1,0,0,0,1937,1938,1,0,0,0,1938,1939, - 1,0,0,0,1939,1940,5,166,0,0,1940,1941,5,431,0,0,1941,1942,5,31,0, - 0,1942,209,1,0,0,0,1943,1944,5,310,0,0,1944,1945,5,32,0,0,1945,1946, - 5,399,0,0,1946,1947,3,254,127,0,1947,1948,5,400,0,0,1948,1949,5, - 224,0,0,1949,1950,5,399,0,0,1950,1951,3,294,147,0,1951,1953,5,400, - 0,0,1952,1954,3,40,20,0,1953,1952,1,0,0,0,1953,1954,1,0,0,0,1954, - 211,1,0,0,0,1955,1958,3,218,109,0,1956,1958,3,220,110,0,1957,1955, - 1,0,0,0,1957,1956,1,0,0,0,1958,213,1,0,0,0,1959,1960,5,266,0,0,1960, - 1961,5,426,0,0,1961,215,1,0,0,0,1962,1963,5,267,0,0,1963,1964,5, - 426,0,0,1964,217,1,0,0,0,1965,1966,5,291,0,0,1966,1967,5,137,0,0, - 1967,1968,5,301,0,0,1968,1972,5,426,0,0,1969,1970,5,387,0,0,1970, - 1971,5,302,0,0,1971,1973,3,226,113,0,1972,1969,1,0,0,0,1972,1973, - 1,0,0,0,1973,219,1,0,0,0,1974,1975,5,291,0,0,1975,1976,5,137,0,0, - 1976,1978,5,87,0,0,1977,1979,3,236,118,0,1978,1977,1,0,0,0,1978, - 1979,1,0,0,0,1979,1981,1,0,0,0,1980,1982,3,238,119,0,1981,1980,1, - 0,0,0,1981,1982,1,0,0,0,1982,1984,1,0,0,0,1983,1985,3,240,120,0, - 1984,1983,1,0,0,0,1984,1985,1,0,0,0,1985,1987,1,0,0,0,1986,1988, - 3,242,121,0,1987,1986,1,0,0,0,1987,1988,1,0,0,0,1988,1990,1,0,0, - 0,1989,1991,3,244,122,0,1990,1989,1,0,0,0,1990,1991,1,0,0,0,1991, - 221,1,0,0,0,1992,1995,3,220,110,0,1993,1995,3,218,109,0,1994,1992, - 1,0,0,0,1994,1993,1,0,0,0,1995,223,1,0,0,0,1996,1997,5,332,0,0,1997, - 1998,3,226,113,0,1998,225,1,0,0,0,1999,2000,5,399,0,0,2000,2001, - 3,228,114,0,2001,2002,5,400,0,0,2002,227,1,0,0,0,2003,2013,3,232, - 116,0,2004,2009,5,426,0,0,2005,2006,5,397,0,0,2006,2008,5,426,0, - 0,2007,2005,1,0,0,0,2008,2011,1,0,0,0,2009,2007,1,0,0,0,2009,2010, - 1,0,0,0,2010,2013,1,0,0,0,2011,2009,1,0,0,0,2012,2003,1,0,0,0,2012, - 2004,1,0,0,0,2013,229,1,0,0,0,2014,2015,5,399,0,0,2015,2016,3,232, - 116,0,2016,2017,5,400,0,0,2017,231,1,0,0,0,2018,2023,3,234,117,0, - 2019,2020,5,397,0,0,2020,2022,3,234,117,0,2021,2019,1,0,0,0,2022, - 2025,1,0,0,0,2023,2021,1,0,0,0,2023,2024,1,0,0,0,2024,233,1,0,0, - 0,2025,2023,1,0,0,0,2026,2027,5,426,0,0,2027,2028,5,405,0,0,2028, - 2029,5,426,0,0,2029,235,1,0,0,0,2030,2031,5,127,0,0,2031,2032,5, - 334,0,0,2032,2033,5,32,0,0,2033,2037,5,426,0,0,2034,2035,5,110,0, - 0,2035,2036,5,32,0,0,2036,2038,5,426,0,0,2037,2034,1,0,0,0,2037, - 2038,1,0,0,0,2038,237,1,0,0,0,2039,2040,5,44,0,0,2040,2041,5,169, - 0,0,2041,2042,5,334,0,0,2042,2043,5,32,0,0,2043,2044,5,426,0,0,2044, - 239,1,0,0,0,2045,2046,5,198,0,0,2046,2047,5,174,0,0,2047,2048,5, - 334,0,0,2048,2049,5,32,0,0,2049,2050,5,426,0,0,2050,241,1,0,0,0, - 2051,2052,5,186,0,0,2052,2053,5,334,0,0,2053,2054,5,32,0,0,2054, - 2055,5,426,0,0,2055,243,1,0,0,0,2056,2057,5,219,0,0,2057,2058,5, - 85,0,0,2058,2059,5,17,0,0,2059,2060,5,426,0,0,2060,245,1,0,0,0,2061, - 2062,5,321,0,0,2062,2063,5,17,0,0,2063,2064,5,160,0,0,2064,2065, - 5,426,0,0,2065,2066,5,233,0,0,2066,2071,5,426,0,0,2067,2068,5,159, - 0,0,2068,2069,5,426,0,0,2069,2070,5,232,0,0,2070,2072,5,426,0,0, - 2071,2067,1,0,0,0,2071,2072,1,0,0,0,2072,2103,1,0,0,0,2073,2074, - 5,321,0,0,2074,2075,5,32,0,0,2075,2079,5,426,0,0,2076,2077,5,387, - 0,0,2077,2078,5,302,0,0,2078,2080,3,226,113,0,2079,2076,1,0,0,0, - 2079,2080,1,0,0,0,2080,2084,1,0,0,0,2081,2082,5,321,0,0,2082,2083, - 5,17,0,0,2083,2085,3,654,327,0,2084,2081,1,0,0,0,2084,2085,1,0,0, - 0,2085,2103,1,0,0,0,2086,2087,5,321,0,0,2087,2088,5,32,0,0,2088, - 2092,3,654,327,0,2089,2090,5,387,0,0,2090,2091,5,302,0,0,2091,2093, - 3,226,113,0,2092,2089,1,0,0,0,2092,2093,1,0,0,0,2093,2097,1,0,0, - 0,2094,2095,5,321,0,0,2095,2096,5,17,0,0,2096,2098,3,654,327,0,2097, - 2094,1,0,0,0,2097,2098,1,0,0,0,2098,2103,1,0,0,0,2099,2100,5,321, - 0,0,2100,2101,5,17,0,0,2101,2103,3,654,327,0,2102,2061,1,0,0,0,2102, - 2073,1,0,0,0,2102,2086,1,0,0,0,2102,2099,1,0,0,0,2103,247,1,0,0, - 0,2104,2109,3,314,157,0,2105,2106,5,397,0,0,2106,2108,3,314,157, - 0,2107,2105,1,0,0,0,2108,2111,1,0,0,0,2109,2107,1,0,0,0,2109,2110, - 1,0,0,0,2110,249,1,0,0,0,2111,2109,1,0,0,0,2112,2117,3,316,158,0, - 2113,2114,5,397,0,0,2114,2116,3,316,158,0,2115,2113,1,0,0,0,2116, - 2119,1,0,0,0,2117,2115,1,0,0,0,2117,2118,1,0,0,0,2118,251,1,0,0, - 0,2119,2117,1,0,0,0,2120,2125,3,344,172,0,2121,2122,5,397,0,0,2122, - 2124,3,344,172,0,2123,2121,1,0,0,0,2124,2127,1,0,0,0,2125,2123,1, - 0,0,0,2125,2126,1,0,0,0,2126,253,1,0,0,0,2127,2125,1,0,0,0,2128, - 2133,3,256,128,0,2129,2130,5,397,0,0,2130,2132,3,256,128,0,2131, - 2129,1,0,0,0,2132,2135,1,0,0,0,2133,2131,1,0,0,0,2133,2134,1,0,0, - 0,2134,255,1,0,0,0,2135,2133,1,0,0,0,2136,2140,3,702,351,0,2137, - 2138,4,128,0,0,2138,2140,3,698,349,0,2139,2136,1,0,0,0,2139,2137, - 1,0,0,0,2140,257,1,0,0,0,2141,2142,3,700,350,0,2142,259,1,0,0,0, - 2143,2147,3,702,351,0,2144,2145,4,130,1,0,2145,2147,3,698,349,0, - 2146,2143,1,0,0,0,2146,2144,1,0,0,0,2147,261,1,0,0,0,2148,2149,3, - 654,327,0,2149,263,1,0,0,0,2150,2160,3,256,128,0,2151,2156,5,395, - 0,0,2152,2157,5,104,0,0,2153,2157,5,175,0,0,2154,2157,5,375,0,0, - 2155,2157,3,654,327,0,2156,2152,1,0,0,0,2156,2153,1,0,0,0,2156,2154, - 1,0,0,0,2156,2155,1,0,0,0,2157,2159,1,0,0,0,2158,2151,1,0,0,0,2159, - 2162,1,0,0,0,2160,2158,1,0,0,0,2160,2161,1,0,0,0,2161,265,1,0,0, - 0,2162,2160,1,0,0,0,2163,2168,3,306,153,0,2164,2165,5,397,0,0,2165, - 2167,3,306,153,0,2166,2164,1,0,0,0,2167,2170,1,0,0,0,2168,2166,1, - 0,0,0,2168,2169,1,0,0,0,2169,267,1,0,0,0,2170,2168,1,0,0,0,2171, - 2172,5,399,0,0,2172,2173,3,254,127,0,2173,2174,5,400,0,0,2174,269, - 1,0,0,0,2175,2177,3,272,136,0,2176,2178,3,274,137,0,2177,2176,1, - 0,0,0,2177,2178,1,0,0,0,2178,2181,1,0,0,0,2179,2181,3,276,138,0, - 2180,2175,1,0,0,0,2180,2179,1,0,0,0,2181,271,1,0,0,0,2182,2185,3, - 678,339,0,2183,2185,3,680,340,0,2184,2182,1,0,0,0,2184,2183,1,0, - 0,0,2185,273,1,0,0,0,2186,2187,7,16,0,0,2187,275,1,0,0,0,2188,2192, - 5,109,0,0,2189,2190,5,216,0,0,2190,2192,5,109,0,0,2191,2188,1,0, - 0,0,2191,2189,1,0,0,0,2192,277,1,0,0,0,2193,2194,7,17,0,0,2194,279, - 1,0,0,0,2195,2196,5,55,0,0,2196,2198,3,654,327,0,2197,2195,1,0,0, - 0,2197,2198,1,0,0,0,2198,2199,1,0,0,0,2199,2201,3,284,142,0,2200, - 2202,3,340,170,0,2201,2200,1,0,0,0,2201,2202,1,0,0,0,2202,281,1, - 0,0,0,2203,2204,5,55,0,0,2204,2205,3,654,327,0,2205,2207,3,284,142, - 0,2206,2208,3,342,171,0,2207,2206,1,0,0,0,2207,2208,1,0,0,0,2208, - 283,1,0,0,0,2209,2212,3,286,143,0,2210,2212,3,288,144,0,2211,2209, - 1,0,0,0,2211,2210,1,0,0,0,2212,285,1,0,0,0,2213,2214,3,338,169,0, - 2214,2215,3,268,134,0,2215,287,1,0,0,0,2216,2217,5,40,0,0,2217,2218, - 5,399,0,0,2218,2219,3,596,298,0,2219,2220,5,400,0,0,2220,289,1,0, - 0,0,2221,2222,5,55,0,0,2222,2224,3,654,327,0,2223,2221,1,0,0,0,2223, - 2224,1,0,0,0,2224,2225,1,0,0,0,2225,2226,5,136,0,0,2226,2227,5,173, - 0,0,2227,2228,3,268,134,0,2228,2229,5,269,0,0,2229,2230,3,482,241, - 0,2230,2232,3,268,134,0,2231,2233,3,340,170,0,2232,2231,1,0,0,0, - 2232,2233,1,0,0,0,2233,291,1,0,0,0,2234,2235,5,55,0,0,2235,2236, - 3,654,327,0,2236,2237,5,136,0,0,2237,2238,5,173,0,0,2238,2239,3, - 268,134,0,2239,2240,5,269,0,0,2240,2241,3,482,241,0,2241,2243,3, - 268,134,0,2242,2244,3,342,171,0,2243,2242,1,0,0,0,2243,2244,1,0, - 0,0,2244,293,1,0,0,0,2245,2248,3,300,150,0,2246,2248,3,296,148,0, - 2247,2245,1,0,0,0,2247,2246,1,0,0,0,2248,295,1,0,0,0,2249,2254,3, - 298,149,0,2250,2251,5,397,0,0,2251,2253,3,298,149,0,2252,2250,1, - 0,0,0,2253,2256,1,0,0,0,2254,2252,1,0,0,0,2254,2255,1,0,0,0,2255, - 297,1,0,0,0,2256,2254,1,0,0,0,2257,2258,5,399,0,0,2258,2259,3,300, - 150,0,2259,2260,5,400,0,0,2260,299,1,0,0,0,2261,2266,3,588,294,0, - 2262,2263,5,397,0,0,2263,2265,3,588,294,0,2264,2262,1,0,0,0,2265, - 2268,1,0,0,0,2266,2264,1,0,0,0,2266,2267,1,0,0,0,2267,301,1,0,0, - 0,2268,2266,1,0,0,0,2269,2270,7,18,0,0,2270,303,1,0,0,0,2271,2272, - 5,220,0,0,2272,2273,7,19,0,0,2273,305,1,0,0,0,2274,2276,3,256,128, - 0,2275,2277,3,302,151,0,2276,2275,1,0,0,0,2276,2277,1,0,0,0,2277, - 2279,1,0,0,0,2278,2280,3,304,152,0,2279,2278,1,0,0,0,2279,2280,1, - 0,0,0,2280,307,1,0,0,0,2281,2286,3,310,155,0,2282,2283,5,397,0,0, - 2283,2285,3,310,155,0,2284,2282,1,0,0,0,2285,2288,1,0,0,0,2286,2284, - 1,0,0,0,2286,2287,1,0,0,0,2287,309,1,0,0,0,2288,2286,1,0,0,0,2289, - 2292,3,262,131,0,2290,2291,5,47,0,0,2291,2293,5,426,0,0,2292,2290, - 1,0,0,0,2292,2293,1,0,0,0,2293,311,1,0,0,0,2294,2297,3,256,128,0, - 2295,2297,3,596,298,0,2296,2294,1,0,0,0,2296,2295,1,0,0,0,2297,2299, - 1,0,0,0,2298,2300,3,302,151,0,2299,2298,1,0,0,0,2299,2300,1,0,0, - 0,2300,2302,1,0,0,0,2301,2303,3,304,152,0,2302,2301,1,0,0,0,2302, - 2303,1,0,0,0,2303,313,1,0,0,0,2304,2305,3,262,131,0,2305,2308,3, - 346,173,0,2306,2307,5,47,0,0,2307,2309,5,426,0,0,2308,2306,1,0,0, - 0,2308,2309,1,0,0,0,2309,315,1,0,0,0,2310,2313,3,318,159,0,2311, - 2313,3,320,160,0,2312,2310,1,0,0,0,2312,2311,1,0,0,0,2313,317,1, - 0,0,0,2314,2317,3,290,145,0,2315,2317,3,280,140,0,2316,2314,1,0, - 0,0,2316,2315,1,0,0,0,2317,319,1,0,0,0,2318,2319,3,262,131,0,2319, - 2321,3,346,173,0,2320,2322,3,322,161,0,2321,2320,1,0,0,0,2321,2322, - 1,0,0,0,2322,2325,1,0,0,0,2323,2324,5,47,0,0,2324,2326,5,426,0,0, - 2325,2323,1,0,0,0,2325,2326,1,0,0,0,2326,321,1,0,0,0,2327,2330,3, - 324,162,0,2328,2330,3,326,163,0,2329,2327,1,0,0,0,2329,2328,1,0, - 0,0,2330,323,1,0,0,0,2331,2332,5,55,0,0,2332,2334,3,654,327,0,2333, - 2331,1,0,0,0,2333,2334,1,0,0,0,2334,2335,1,0,0,0,2335,2336,5,269, - 0,0,2336,2337,3,482,241,0,2337,2338,5,399,0,0,2338,2339,3,256,128, - 0,2339,2341,5,400,0,0,2340,2342,3,340,170,0,2341,2340,1,0,0,0,2341, - 2342,1,0,0,0,2342,325,1,0,0,0,2343,2344,5,55,0,0,2344,2346,3,654, - 327,0,2345,2343,1,0,0,0,2345,2346,1,0,0,0,2346,2347,1,0,0,0,2347, - 2349,3,334,167,0,2348,2350,3,340,170,0,2349,2348,1,0,0,0,2349,2350, - 1,0,0,0,2350,327,1,0,0,0,2351,2354,3,330,165,0,2352,2354,3,332,166, - 0,2353,2351,1,0,0,0,2353,2352,1,0,0,0,2354,329,1,0,0,0,2355,2356, - 5,55,0,0,2356,2358,3,654,327,0,2357,2355,1,0,0,0,2357,2358,1,0,0, - 0,2358,2359,1,0,0,0,2359,2360,5,269,0,0,2360,2361,3,482,241,0,2361, - 2362,5,399,0,0,2362,2363,3,256,128,0,2363,2365,5,400,0,0,2364,2366, - 3,342,171,0,2365,2364,1,0,0,0,2365,2366,1,0,0,0,2366,331,1,0,0,0, - 2367,2368,5,55,0,0,2368,2370,3,654,327,0,2369,2367,1,0,0,0,2369, - 2370,1,0,0,0,2370,2371,1,0,0,0,2371,2373,3,334,167,0,2372,2374,3, - 342,171,0,2373,2372,1,0,0,0,2373,2374,1,0,0,0,2374,333,1,0,0,0,2375, - 2376,5,216,0,0,2376,2382,5,219,0,0,2377,2378,5,83,0,0,2378,2382, - 3,336,168,0,2379,2382,3,288,144,0,2380,2382,3,338,169,0,2381,2375, - 1,0,0,0,2381,2377,1,0,0,0,2381,2379,1,0,0,0,2381,2380,1,0,0,0,2382, - 335,1,0,0,0,2383,2387,3,588,294,0,2384,2387,3,566,283,0,2385,2387, - 3,576,288,0,2386,2383,1,0,0,0,2386,2384,1,0,0,0,2386,2385,1,0,0, - 0,2387,337,1,0,0,0,2388,2389,5,251,0,0,2389,2392,5,173,0,0,2390, - 2392,5,358,0,0,2391,2388,1,0,0,0,2391,2390,1,0,0,0,2392,339,1,0, - 0,0,2393,2395,3,270,135,0,2394,2396,3,278,139,0,2395,2394,1,0,0, - 0,2395,2396,1,0,0,0,2396,341,1,0,0,0,2397,2399,3,270,135,0,2398, - 2400,3,278,139,0,2399,2398,1,0,0,0,2399,2400,1,0,0,0,2400,343,1, - 0,0,0,2401,2402,3,262,131,0,2402,2403,5,396,0,0,2403,2406,3,346, - 173,0,2404,2405,5,47,0,0,2405,2407,5,426,0,0,2406,2404,1,0,0,0,2406, - 2407,1,0,0,0,2407,345,1,0,0,0,2408,2409,3,350,175,0,2409,347,1,0, - 0,0,2410,2415,3,346,173,0,2411,2412,5,397,0,0,2412,2414,3,346,173, - 0,2413,2411,1,0,0,0,2414,2417,1,0,0,0,2415,2413,1,0,0,0,2415,2416, - 1,0,0,0,2416,349,1,0,0,0,2417,2415,1,0,0,0,2418,2424,3,352,176,0, - 2419,2424,3,354,177,0,2420,2424,3,356,178,0,2421,2424,3,358,179, - 0,2422,2424,3,360,180,0,2423,2418,1,0,0,0,2423,2419,1,0,0,0,2423, - 2420,1,0,0,0,2423,2421,1,0,0,0,2423,2422,1,0,0,0,2424,351,1,0,0, - 0,2425,2463,5,340,0,0,2426,2463,5,311,0,0,2427,2463,5,162,0,0,2428, - 2463,5,163,0,0,2429,2463,5,26,0,0,2430,2463,5,28,0,0,2431,2463,5, - 131,0,0,2432,2463,5,264,0,0,2433,2435,5,100,0,0,2434,2436,5,248, - 0,0,2435,2434,1,0,0,0,2435,2436,1,0,0,0,2436,2463,1,0,0,0,2437,2463, - 5,71,0,0,2438,2463,5,72,0,0,2439,2463,5,337,0,0,2440,2463,5,338, - 0,0,2441,2442,5,337,0,0,2442,2443,5,387,0,0,2443,2444,5,188,0,0, - 2444,2445,5,336,0,0,2445,2463,5,394,0,0,2446,2463,5,323,0,0,2447, - 2463,5,27,0,0,2448,2456,3,696,348,0,2449,2450,5,399,0,0,2450,2453, - 5,431,0,0,2451,2452,5,397,0,0,2452,2454,5,431,0,0,2453,2451,1,0, - 0,0,2453,2454,1,0,0,0,2454,2455,1,0,0,0,2455,2457,5,400,0,0,2456, - 2449,1,0,0,0,2456,2457,1,0,0,0,2457,2463,1,0,0,0,2458,2459,7,20, - 0,0,2459,2460,5,399,0,0,2460,2461,5,431,0,0,2461,2463,5,400,0,0, - 2462,2425,1,0,0,0,2462,2426,1,0,0,0,2462,2427,1,0,0,0,2462,2428, - 1,0,0,0,2462,2429,1,0,0,0,2462,2430,1,0,0,0,2462,2431,1,0,0,0,2462, - 2432,1,0,0,0,2462,2433,1,0,0,0,2462,2437,1,0,0,0,2462,2438,1,0,0, - 0,2462,2439,1,0,0,0,2462,2440,1,0,0,0,2462,2441,1,0,0,0,2462,2446, - 1,0,0,0,2462,2447,1,0,0,0,2462,2448,1,0,0,0,2462,2458,1,0,0,0,2463, - 353,1,0,0,0,2464,2465,5,16,0,0,2465,2466,5,409,0,0,2466,2467,3,350, - 175,0,2467,2468,5,411,0,0,2468,355,1,0,0,0,2469,2470,5,324,0,0,2470, - 2471,5,409,0,0,2471,2472,3,252,126,0,2472,2473,5,411,0,0,2473,357, - 1,0,0,0,2474,2475,5,198,0,0,2475,2476,5,409,0,0,2476,2477,3,352, - 176,0,2477,2478,5,397,0,0,2478,2479,3,350,175,0,2479,2480,5,411, - 0,0,2480,359,1,0,0,0,2481,2482,5,357,0,0,2482,2483,5,409,0,0,2483, - 2484,3,348,174,0,2484,2485,5,411,0,0,2485,361,1,0,0,0,2486,2488, - 7,21,0,0,2487,2489,7,22,0,0,2488,2487,1,0,0,0,2488,2489,1,0,0,0, - 2489,363,1,0,0,0,2490,2492,3,368,184,0,2491,2490,1,0,0,0,2491,2492, - 1,0,0,0,2492,2493,1,0,0,0,2493,2494,3,366,183,0,2494,365,1,0,0,0, - 2495,2498,3,372,186,0,2496,2498,3,376,188,0,2497,2495,1,0,0,0,2497, - 2496,1,0,0,0,2498,367,1,0,0,0,2499,2500,5,387,0,0,2500,2505,3,370, - 185,0,2501,2502,5,397,0,0,2502,2504,3,370,185,0,2503,2501,1,0,0, - 0,2504,2507,1,0,0,0,2505,2503,1,0,0,0,2505,2506,1,0,0,0,2506,369, - 1,0,0,0,2507,2505,1,0,0,0,2508,2513,3,654,327,0,2509,2510,5,399, - 0,0,2510,2511,3,254,127,0,2511,2512,5,400,0,0,2512,2514,1,0,0,0, - 2513,2509,1,0,0,0,2513,2514,1,0,0,0,2514,2515,1,0,0,0,2515,2516, - 5,17,0,0,2516,2517,5,399,0,0,2517,2518,3,364,182,0,2518,2519,5,400, - 0,0,2519,371,1,0,0,0,2520,2526,3,374,187,0,2521,2522,3,362,181,0, - 2522,2523,3,374,187,0,2523,2525,1,0,0,0,2524,2521,1,0,0,0,2525,2528, - 1,0,0,0,2526,2524,1,0,0,0,2526,2527,1,0,0,0,2527,373,1,0,0,0,2528, - 2526,1,0,0,0,2529,2530,3,452,226,0,2530,2531,3,386,193,0,2531,2533, - 3,508,254,0,2532,2534,3,466,233,0,2533,2532,1,0,0,0,2533,2534,1, - 0,0,0,2534,2536,1,0,0,0,2535,2537,3,500,250,0,2536,2535,1,0,0,0, - 2536,2537,1,0,0,0,2537,2539,1,0,0,0,2538,2540,3,534,267,0,2539,2538, - 1,0,0,0,2539,2540,1,0,0,0,2540,2542,1,0,0,0,2541,2543,3,542,271, - 0,2542,2541,1,0,0,0,2542,2543,1,0,0,0,2543,2545,1,0,0,0,2544,2546, - 3,526,263,0,2545,2544,1,0,0,0,2545,2546,1,0,0,0,2546,2548,1,0,0, - 0,2547,2549,3,544,272,0,2548,2547,1,0,0,0,2548,2549,1,0,0,0,2549, - 2551,1,0,0,0,2550,2552,3,556,278,0,2551,2550,1,0,0,0,2551,2552,1, - 0,0,0,2552,2554,1,0,0,0,2553,2555,3,560,280,0,2554,2553,1,0,0,0, - 2554,2555,1,0,0,0,2555,2557,1,0,0,0,2556,2558,3,562,281,0,2557,2556, - 1,0,0,0,2557,2558,1,0,0,0,2558,2560,1,0,0,0,2559,2561,3,564,282, - 0,2560,2559,1,0,0,0,2560,2561,1,0,0,0,2561,2563,1,0,0,0,2562,2564, - 3,390,195,0,2563,2562,1,0,0,0,2563,2564,1,0,0,0,2564,2601,1,0,0, - 0,2565,2566,3,452,226,0,2566,2568,3,508,254,0,2567,2569,3,466,233, - 0,2568,2567,1,0,0,0,2568,2569,1,0,0,0,2569,2571,1,0,0,0,2570,2572, - 3,500,250,0,2571,2570,1,0,0,0,2571,2572,1,0,0,0,2572,2574,1,0,0, - 0,2573,2575,3,534,267,0,2574,2573,1,0,0,0,2574,2575,1,0,0,0,2575, - 2577,1,0,0,0,2576,2578,3,542,271,0,2577,2576,1,0,0,0,2577,2578,1, - 0,0,0,2578,2580,1,0,0,0,2579,2581,3,526,263,0,2580,2579,1,0,0,0, - 2580,2581,1,0,0,0,2581,2583,1,0,0,0,2582,2584,3,544,272,0,2583,2582, - 1,0,0,0,2583,2584,1,0,0,0,2584,2586,1,0,0,0,2585,2587,3,556,278, - 0,2586,2585,1,0,0,0,2586,2587,1,0,0,0,2587,2589,1,0,0,0,2588,2590, - 3,560,280,0,2589,2588,1,0,0,0,2589,2590,1,0,0,0,2590,2592,1,0,0, - 0,2591,2593,3,562,281,0,2592,2591,1,0,0,0,2592,2593,1,0,0,0,2593, - 2595,1,0,0,0,2594,2596,3,564,282,0,2595,2594,1,0,0,0,2595,2596,1, - 0,0,0,2596,2598,1,0,0,0,2597,2599,3,390,195,0,2598,2597,1,0,0,0, - 2598,2599,1,0,0,0,2599,2601,1,0,0,0,2600,2529,1,0,0,0,2600,2565, - 1,0,0,0,2601,375,1,0,0,0,2602,2603,3,386,193,0,2603,2604,3,380,190, - 0,2604,2607,1,0,0,0,2605,2607,3,380,190,0,2606,2602,1,0,0,0,2606, - 2605,1,0,0,0,2607,377,1,0,0,0,2608,2610,3,508,254,0,2609,2611,3, - 452,226,0,2610,2609,1,0,0,0,2610,2611,1,0,0,0,2611,2613,1,0,0,0, - 2612,2614,3,500,250,0,2613,2612,1,0,0,0,2613,2614,1,0,0,0,2614,2616, - 1,0,0,0,2615,2617,3,534,267,0,2616,2615,1,0,0,0,2616,2617,1,0,0, - 0,2617,2619,1,0,0,0,2618,2620,3,542,271,0,2619,2618,1,0,0,0,2619, - 2620,1,0,0,0,2620,2622,1,0,0,0,2621,2623,3,526,263,0,2622,2621,1, - 0,0,0,2622,2623,1,0,0,0,2623,2625,1,0,0,0,2624,2626,3,544,272,0, - 2625,2624,1,0,0,0,2625,2626,1,0,0,0,2626,2633,1,0,0,0,2627,2628, - 5,399,0,0,2628,2629,3,380,190,0,2629,2630,5,400,0,0,2630,2633,1, - 0,0,0,2631,2633,3,502,251,0,2632,2608,1,0,0,0,2632,2627,1,0,0,0, - 2632,2631,1,0,0,0,2633,379,1,0,0,0,2634,2636,3,378,189,0,2635,2637, - 3,382,191,0,2636,2635,1,0,0,0,2636,2637,1,0,0,0,2637,2639,1,0,0, - 0,2638,2640,3,556,278,0,2639,2638,1,0,0,0,2639,2640,1,0,0,0,2640, - 2642,1,0,0,0,2641,2643,3,560,280,0,2642,2641,1,0,0,0,2642,2643,1, - 0,0,0,2643,2645,1,0,0,0,2644,2646,3,562,281,0,2645,2644,1,0,0,0, - 2645,2646,1,0,0,0,2646,2648,1,0,0,0,2647,2649,3,564,282,0,2648,2647, - 1,0,0,0,2648,2649,1,0,0,0,2649,2651,1,0,0,0,2650,2652,3,390,195, - 0,2651,2650,1,0,0,0,2651,2652,1,0,0,0,2652,381,1,0,0,0,2653,2654, - 3,362,181,0,2654,2655,3,378,189,0,2655,2657,1,0,0,0,2656,2653,1, - 0,0,0,2657,2658,1,0,0,0,2658,2656,1,0,0,0,2658,2659,1,0,0,0,2659, - 383,1,0,0,0,2660,2662,3,368,184,0,2661,2660,1,0,0,0,2661,2662,1, - 0,0,0,2662,2663,1,0,0,0,2663,2664,3,380,190,0,2664,385,1,0,0,0,2665, - 2682,5,161,0,0,2666,2667,5,235,0,0,2667,2669,3,388,194,0,2668,2670, - 3,32,16,0,2669,2668,1,0,0,0,2669,2670,1,0,0,0,2670,2683,1,0,0,0, - 2671,2673,5,166,0,0,2672,2674,5,329,0,0,2673,2672,1,0,0,0,2673,2674, - 1,0,0,0,2674,2675,1,0,0,0,2675,2680,3,640,320,0,2676,2677,5,399, - 0,0,2677,2678,3,254,127,0,2678,2679,5,400,0,0,2679,2681,1,0,0,0, - 2680,2676,1,0,0,0,2680,2681,1,0,0,0,2681,2683,1,0,0,0,2682,2666, - 1,0,0,0,2682,2671,1,0,0,0,2683,387,1,0,0,0,2684,2686,5,188,0,0,2685, - 2684,1,0,0,0,2685,2686,1,0,0,0,2686,2687,1,0,0,0,2687,2688,5,93, - 0,0,2688,2690,5,426,0,0,2689,2691,3,222,111,0,2690,2689,1,0,0,0, - 2690,2691,1,0,0,0,2691,2693,1,0,0,0,2692,2694,3,246,123,0,2693,2692, - 1,0,0,0,2693,2694,1,0,0,0,2694,2698,1,0,0,0,2695,2696,5,329,0,0, - 2696,2698,3,640,320,0,2697,2685,1,0,0,0,2697,2695,1,0,0,0,2698,389, - 1,0,0,0,2699,2708,5,185,0,0,2700,2701,5,431,0,0,2701,2703,5,397, - 0,0,2702,2700,1,0,0,0,2702,2703,1,0,0,0,2703,2704,1,0,0,0,2704,2709, - 5,431,0,0,2705,2706,5,431,0,0,2706,2707,5,223,0,0,2707,2709,5,431, - 0,0,2708,2702,1,0,0,0,2708,2705,1,0,0,0,2709,391,1,0,0,0,2710,2711, - 3,256,128,0,2711,2712,5,405,0,0,2712,2713,3,394,197,0,2713,393,1, - 0,0,0,2714,2717,5,83,0,0,2715,2717,3,606,303,0,2716,2714,1,0,0,0, - 2716,2715,1,0,0,0,2717,395,1,0,0,0,2718,2719,5,304,0,0,2719,2724, - 3,392,196,0,2720,2721,5,397,0,0,2721,2723,3,392,196,0,2722,2720, - 1,0,0,0,2723,2726,1,0,0,0,2724,2722,1,0,0,0,2724,2725,1,0,0,0,2725, - 397,1,0,0,0,2726,2724,1,0,0,0,2727,2728,5,318,0,0,2728,2737,5,344, - 0,0,2729,2734,3,400,200,0,2730,2731,5,397,0,0,2731,2733,3,400,200, - 0,2732,2730,1,0,0,0,2733,2736,1,0,0,0,2734,2732,1,0,0,0,2734,2735, - 1,0,0,0,2735,2738,1,0,0,0,2736,2734,1,0,0,0,2737,2729,1,0,0,0,2737, - 2738,1,0,0,0,2738,2751,1,0,0,0,2739,2741,5,48,0,0,2740,2742,5,389, - 0,0,2741,2740,1,0,0,0,2741,2742,1,0,0,0,2742,2751,1,0,0,0,2743,2745, - 5,289,0,0,2744,2746,5,389,0,0,2745,2744,1,0,0,0,2745,2746,1,0,0, - 0,2746,2751,1,0,0,0,2747,2748,5,304,0,0,2748,2749,5,22,0,0,2749, - 2751,7,23,0,0,2750,2727,1,0,0,0,2750,2739,1,0,0,0,2750,2743,1,0, - 0,0,2750,2747,1,0,0,0,2751,399,1,0,0,0,2752,2753,5,168,0,0,2753, - 2754,5,182,0,0,2754,2758,5,312,0,0,2755,2756,5,261,0,0,2756,2758, - 7,24,0,0,2757,2752,1,0,0,0,2757,2755,1,0,0,0,2758,401,1,0,0,0,2759, - 2762,3,406,203,0,2760,2762,3,408,204,0,2761,2759,1,0,0,0,2761,2760, - 1,0,0,0,2762,2765,1,0,0,0,2763,2761,1,0,0,0,2763,2764,1,0,0,0,2764, - 2767,1,0,0,0,2765,2763,1,0,0,0,2766,2768,3,404,202,0,2767,2766,1, - 0,0,0,2767,2768,1,0,0,0,2768,403,1,0,0,0,2769,2770,5,383,0,0,2770, - 2771,5,216,0,0,2771,2774,5,201,0,0,2772,2773,5,11,0,0,2773,2775, - 3,596,298,0,2774,2772,1,0,0,0,2774,2775,1,0,0,0,2775,2776,1,0,0, - 0,2776,2777,5,335,0,0,2777,2779,5,161,0,0,2778,2780,3,268,134,0, - 2779,2778,1,0,0,0,2779,2780,1,0,0,0,2780,2781,1,0,0,0,2781,2782, - 5,374,0,0,2782,2783,3,552,276,0,2783,405,1,0,0,0,2784,2785,5,383, - 0,0,2785,2786,5,201,0,0,2786,2787,5,11,0,0,2787,2788,3,596,298,0, - 2788,2792,5,335,0,0,2789,2790,5,365,0,0,2790,2793,3,396,198,0,2791, - 2793,5,86,0,0,2792,2789,1,0,0,0,2792,2791,1,0,0,0,2793,407,1,0,0, - 0,2794,2795,5,383,0,0,2795,2796,5,201,0,0,2796,2800,5,335,0,0,2797, - 2798,5,365,0,0,2798,2801,3,396,198,0,2799,2801,5,86,0,0,2800,2797, - 1,0,0,0,2800,2799,1,0,0,0,2801,409,1,0,0,0,2802,2803,5,246,0,0,2803, - 2804,5,426,0,0,2804,411,1,0,0,0,2805,2806,5,352,0,0,2806,2807,5, - 426,0,0,2807,413,1,0,0,0,2808,2809,5,320,0,0,2809,2810,5,426,0,0, - 2810,415,1,0,0,0,2811,2842,5,9,0,0,2812,2813,5,329,0,0,2813,2814, - 3,482,241,0,2814,2815,3,418,209,0,2815,2843,1,0,0,0,2816,2817,5, - 378,0,0,2817,2819,3,486,243,0,2818,2820,5,17,0,0,2819,2818,1,0,0, - 0,2819,2820,1,0,0,0,2820,2821,1,0,0,0,2821,2822,3,422,211,0,2822, - 2843,1,0,0,0,2823,2824,5,202,0,0,2824,2825,5,378,0,0,2825,2829,3, - 486,243,0,2826,2830,3,36,18,0,2827,2830,3,38,19,0,2828,2830,5,265, - 0,0,2829,2826,1,0,0,0,2829,2827,1,0,0,0,2829,2828,1,0,0,0,2830,2843, - 1,0,0,0,2831,2832,3,70,35,0,2832,2833,3,424,212,0,2833,2843,1,0, - 0,0,2834,2835,5,69,0,0,2835,2843,3,426,213,0,2836,2837,5,155,0,0, - 2837,2838,3,654,327,0,2838,2839,5,224,0,0,2839,2840,3,640,320,0, - 2840,2841,5,265,0,0,2841,2843,1,0,0,0,2842,2812,1,0,0,0,2842,2816, - 1,0,0,0,2842,2823,1,0,0,0,2842,2831,1,0,0,0,2842,2834,1,0,0,0,2842, - 2836,1,0,0,0,2843,417,1,0,0,0,2844,2845,5,274,0,0,2845,2846,5,341, - 0,0,2846,2934,3,484,242,0,2847,2848,5,102,0,0,2848,2934,5,239,0, - 0,2849,2934,3,430,215,0,2850,2852,5,4,0,0,2851,2853,3,32,16,0,2852, - 2851,1,0,0,0,2852,2853,1,0,0,0,2853,2858,1,0,0,0,2854,2856,3,642, - 321,0,2855,2857,3,428,214,0,2856,2855,1,0,0,0,2856,2857,1,0,0,0, - 2857,2859,1,0,0,0,2858,2854,1,0,0,0,2859,2860,1,0,0,0,2860,2858, - 1,0,0,0,2860,2861,1,0,0,0,2861,2934,1,0,0,0,2862,2866,5,342,0,0, - 2863,2865,3,642,321,0,2864,2863,1,0,0,0,2865,2868,1,0,0,0,2866,2864, - 1,0,0,0,2866,2867,1,0,0,0,2867,2934,1,0,0,0,2868,2866,1,0,0,0,2869, - 2873,5,15,0,0,2870,2872,3,642,321,0,2871,2870,1,0,0,0,2872,2875, - 1,0,0,0,2873,2871,1,0,0,0,2873,2874,1,0,0,0,2874,2934,1,0,0,0,2875, - 2873,1,0,0,0,2876,2880,5,353,0,0,2877,2879,3,642,321,0,2878,2877, - 1,0,0,0,2879,2882,1,0,0,0,2880,2878,1,0,0,0,2880,2881,1,0,0,0,2881, - 2934,1,0,0,0,2882,2880,1,0,0,0,2883,2884,5,304,0,0,2884,2885,5,332, - 0,0,2885,2934,3,226,113,0,2886,2887,5,363,0,0,2887,2889,5,332,0, - 0,2888,2890,3,30,15,0,2889,2888,1,0,0,0,2889,2890,1,0,0,0,2890,2891, - 1,0,0,0,2891,2934,3,226,113,0,2892,2934,3,210,105,0,2893,2896,5, - 216,0,0,2894,2897,5,310,0,0,2895,2897,3,40,20,0,2896,2894,1,0,0, - 0,2896,2895,1,0,0,0,2897,2934,1,0,0,0,2898,2899,5,113,0,0,2899,2900, - 3,642,321,0,2900,2901,5,387,0,0,2901,2902,5,329,0,0,2902,2903,3, - 482,241,0,2903,2934,1,0,0,0,2904,2905,5,237,0,0,2905,2906,5,45,0, - 0,2906,2907,5,399,0,0,2907,2908,3,314,157,0,2908,2909,5,400,0,0, - 2909,2934,1,0,0,0,2910,2911,5,101,0,0,2911,2912,5,55,0,0,2912,2934, - 3,654,327,0,2913,2916,5,4,0,0,2914,2917,3,292,146,0,2915,2917,3, - 282,141,0,2916,2914,1,0,0,0,2916,2915,1,0,0,0,2917,2934,1,0,0,0, - 2918,2920,3,642,321,0,2919,2918,1,0,0,0,2919,2920,1,0,0,0,2920,2921, - 1,0,0,0,2921,2934,3,420,210,0,2922,2923,5,304,0,0,2923,2924,5,236, - 0,0,2924,2934,3,126,63,0,2925,2926,5,304,0,0,2926,2927,5,237,0,0, - 2927,2928,5,316,0,0,2928,2929,5,399,0,0,2929,2930,3,204,102,0,2930, - 2931,5,400,0,0,2931,2934,1,0,0,0,2932,2934,3,434,217,0,2933,2844, - 1,0,0,0,2933,2847,1,0,0,0,2933,2849,1,0,0,0,2933,2850,1,0,0,0,2933, - 2862,1,0,0,0,2933,2869,1,0,0,0,2933,2876,1,0,0,0,2933,2883,1,0,0, - 0,2933,2886,1,0,0,0,2933,2892,1,0,0,0,2933,2893,1,0,0,0,2933,2898, - 1,0,0,0,2933,2904,1,0,0,0,2933,2910,1,0,0,0,2933,2913,1,0,0,0,2933, - 2919,1,0,0,0,2933,2922,1,0,0,0,2933,2925,1,0,0,0,2933,2932,1,0,0, - 0,2934,419,1,0,0,0,2935,2936,5,304,0,0,2936,2937,5,129,0,0,2937, - 3068,3,436,218,0,2938,2939,5,304,0,0,2939,2940,5,189,0,0,2940,3068, - 5,426,0,0,2941,3068,5,53,0,0,2942,2952,5,304,0,0,2943,2944,5,301, - 0,0,2944,2948,5,426,0,0,2945,2946,5,387,0,0,2946,2947,5,302,0,0, - 2947,2949,3,226,113,0,2948,2945,1,0,0,0,2948,2949,1,0,0,0,2949,2953, - 1,0,0,0,2950,2951,5,302,0,0,2951,2953,3,226,113,0,2952,2943,1,0, - 0,0,2952,2950,1,0,0,0,2953,3068,1,0,0,0,2954,2955,5,363,0,0,2955, - 2956,5,302,0,0,2956,3068,3,226,113,0,2957,2958,5,274,0,0,2958,2959, - 5,341,0,0,2959,3068,3,642,321,0,2960,2961,5,166,0,0,2961,2962,5, - 431,0,0,2962,3068,5,31,0,0,2963,2964,5,304,0,0,2964,2965,5,310,0, - 0,2965,2966,5,189,0,0,2966,2967,5,399,0,0,2967,2972,3,432,216,0, - 2968,2969,5,397,0,0,2969,2971,3,432,216,0,2970,2968,1,0,0,0,2971, - 2974,1,0,0,0,2972,2970,1,0,0,0,2972,2973,1,0,0,0,2973,2975,1,0,0, - 0,2974,2972,1,0,0,0,2975,2976,5,400,0,0,2976,3068,1,0,0,0,2977,2978, - 5,216,0,0,2978,3068,7,25,0,0,2979,3068,3,208,104,0,2980,2981,5,49, - 0,0,2981,2984,5,426,0,0,2982,2983,5,11,0,0,2983,2985,5,380,0,0,2984, - 2982,1,0,0,0,2984,2985,1,0,0,0,2985,2990,1,0,0,0,2986,2987,5,42, - 0,0,2987,2988,5,166,0,0,2988,2989,5,431,0,0,2989,2991,5,31,0,0,2990, - 2986,1,0,0,0,2990,2991,1,0,0,0,2991,2993,1,0,0,0,2992,2994,3,556, - 278,0,2993,2992,1,0,0,0,2993,2994,1,0,0,0,2994,2996,1,0,0,0,2995, - 2997,3,410,205,0,2996,2995,1,0,0,0,2996,2997,1,0,0,0,2997,3002,1, - 0,0,0,2998,2999,5,387,0,0,2999,3000,5,235,0,0,3000,3001,5,332,0, - 0,3001,3003,3,226,113,0,3002,2998,1,0,0,0,3002,3003,1,0,0,0,3003, - 3068,1,0,0,0,3004,3005,5,365,0,0,3005,3006,5,319,0,0,3006,3008,5, - 134,0,0,3007,3009,5,45,0,0,3008,3007,1,0,0,0,3008,3009,1,0,0,0,3009, - 3010,1,0,0,0,3010,3011,3,256,128,0,3011,3012,5,304,0,0,3012,3015, - 3,226,113,0,3013,3014,5,47,0,0,3014,3016,5,426,0,0,3015,3013,1,0, - 0,0,3015,3016,1,0,0,0,3016,3068,1,0,0,0,3017,3018,5,365,0,0,3018, - 3019,5,319,0,0,3019,3020,5,304,0,0,3020,3068,3,226,113,0,3021,3023, - 5,38,0,0,3022,3024,5,45,0,0,3023,3022,1,0,0,0,3023,3024,1,0,0,0, - 3024,3025,1,0,0,0,3025,3026,3,256,128,0,3026,3027,3,262,131,0,3027, - 3029,3,346,173,0,3028,3030,3,328,164,0,3029,3028,1,0,0,0,3029,3030, - 1,0,0,0,3030,3033,1,0,0,0,3031,3032,5,47,0,0,3032,3034,5,426,0,0, - 3033,3031,1,0,0,0,3033,3034,1,0,0,0,3034,3038,1,0,0,0,3035,3039, - 5,130,0,0,3036,3037,5,6,0,0,3037,3039,3,654,327,0,3038,3035,1,0, - 0,0,3038,3036,1,0,0,0,3038,3039,1,0,0,0,3039,3041,1,0,0,0,3040,3042, - 3,34,17,0,3041,3040,1,0,0,0,3041,3042,1,0,0,0,3042,3068,1,0,0,0, - 3043,3046,5,4,0,0,3044,3046,5,278,0,0,3045,3043,1,0,0,0,3045,3044, - 1,0,0,0,3046,3047,1,0,0,0,3047,3048,5,46,0,0,3048,3049,5,399,0,0, - 3049,3050,3,248,124,0,3050,3052,5,400,0,0,3051,3053,3,34,17,0,3052, - 3051,1,0,0,0,3052,3053,1,0,0,0,3053,3068,1,0,0,0,3054,3055,5,365, - 0,0,3055,3057,5,46,0,0,3056,3058,3,34,17,0,3057,3056,1,0,0,0,3057, - 3058,1,0,0,0,3058,3068,1,0,0,0,3059,3065,3,272,136,0,3060,3062,5, - 218,0,0,3061,3063,5,34,0,0,3062,3061,1,0,0,0,3062,3063,1,0,0,0,3063, - 3066,1,0,0,0,3064,3066,5,222,0,0,3065,3060,1,0,0,0,3065,3064,1,0, - 0,0,3066,3068,1,0,0,0,3067,2935,1,0,0,0,3067,2938,1,0,0,0,3067,2941, - 1,0,0,0,3067,2942,1,0,0,0,3067,2954,1,0,0,0,3067,2957,1,0,0,0,3067, - 2960,1,0,0,0,3067,2963,1,0,0,0,3067,2977,1,0,0,0,3067,2979,1,0,0, - 0,3067,2980,1,0,0,0,3067,3004,1,0,0,0,3067,3017,1,0,0,0,3067,3021, - 1,0,0,0,3067,3045,1,0,0,0,3067,3054,1,0,0,0,3067,3059,1,0,0,0,3068, - 421,1,0,0,0,3069,3070,5,304,0,0,3070,3071,5,332,0,0,3071,3096,3, - 226,113,0,3072,3073,5,363,0,0,3073,3075,5,332,0,0,3074,3076,3,30, - 15,0,3075,3074,1,0,0,0,3075,3076,1,0,0,0,3076,3077,1,0,0,0,3077, - 3096,3,226,113,0,3078,3079,5,274,0,0,3079,3080,5,341,0,0,3080,3096, - 3,484,242,0,3081,3083,5,4,0,0,3082,3084,3,32,16,0,3083,3082,1,0, - 0,0,3083,3084,1,0,0,0,3084,3089,1,0,0,0,3085,3087,3,642,321,0,3086, - 3088,3,428,214,0,3087,3086,1,0,0,0,3087,3088,1,0,0,0,3088,3090,1, - 0,0,0,3089,3085,1,0,0,0,3090,3091,1,0,0,0,3091,3089,1,0,0,0,3091, - 3092,1,0,0,0,3092,3096,1,0,0,0,3093,3096,3,430,215,0,3094,3096,3, - 384,192,0,3095,3069,1,0,0,0,3095,3072,1,0,0,0,3095,3078,1,0,0,0, - 3095,3081,1,0,0,0,3095,3093,1,0,0,0,3095,3094,1,0,0,0,3096,423,1, - 0,0,0,3097,3098,3,476,238,0,3098,3099,5,304,0,0,3099,3100,5,76,0, - 0,3100,3101,3,230,115,0,3101,3113,1,0,0,0,3102,3103,3,476,238,0, - 3103,3104,5,304,0,0,3104,3105,5,236,0,0,3105,3106,3,128,64,0,3106, - 3113,1,0,0,0,3107,3108,3,476,238,0,3108,3109,5,304,0,0,3109,3110, - 7,26,0,0,3110,3111,5,426,0,0,3111,3113,1,0,0,0,3112,3097,1,0,0,0, - 3112,3102,1,0,0,0,3112,3107,1,0,0,0,3113,425,1,0,0,0,3114,3115,3, - 476,238,0,3115,3116,5,304,0,0,3116,3117,5,77,0,0,3117,3118,3,230, - 115,0,3118,3130,1,0,0,0,3119,3120,3,476,238,0,3120,3121,5,304,0, - 0,3121,3122,5,236,0,0,3122,3123,3,128,64,0,3123,3130,1,0,0,0,3124, - 3125,3,476,238,0,3125,3126,5,304,0,0,3126,3127,5,367,0,0,3127,3128, - 5,426,0,0,3128,3130,1,0,0,0,3129,3114,1,0,0,0,3129,3119,1,0,0,0, - 3129,3124,1,0,0,0,3130,427,1,0,0,0,3131,3132,5,189,0,0,3132,3133, - 5,426,0,0,3133,429,1,0,0,0,3134,3136,5,101,0,0,3135,3137,3,30,15, - 0,3136,3135,1,0,0,0,3136,3137,1,0,0,0,3137,3138,1,0,0,0,3138,3139, - 5,237,0,0,3139,3145,3,646,323,0,3140,3141,5,397,0,0,3141,3142,5, - 237,0,0,3142,3144,3,646,323,0,3143,3140,1,0,0,0,3144,3147,1,0,0, - 0,3145,3143,1,0,0,0,3145,3146,1,0,0,0,3146,3150,1,0,0,0,3147,3145, - 1,0,0,0,3148,3149,5,152,0,0,3149,3151,5,254,0,0,3150,3148,1,0,0, - 0,3150,3151,1,0,0,0,3151,3153,1,0,0,0,3152,3154,5,255,0,0,3153,3152, - 1,0,0,0,3153,3154,1,0,0,0,3154,3156,1,0,0,0,3155,3157,3,14,7,0,3156, - 3155,1,0,0,0,3156,3157,1,0,0,0,3157,431,1,0,0,0,3158,3161,3,588, - 294,0,3159,3161,3,298,149,0,3160,3158,1,0,0,0,3160,3159,1,0,0,0, - 3161,3162,1,0,0,0,3162,3163,5,405,0,0,3163,3164,5,426,0,0,3164,433, - 1,0,0,0,3165,3175,5,115,0,0,3166,3167,5,289,0,0,3167,3168,5,399, - 0,0,3168,3176,7,27,0,0,3169,3170,5,118,0,0,3170,3171,5,399,0,0,3171, - 3176,5,426,0,0,3172,3173,5,306,0,0,3173,3174,5,399,0,0,3174,3176, - 5,431,0,0,3175,3166,1,0,0,0,3175,3169,1,0,0,0,3175,3172,1,0,0,0, - 3176,3177,1,0,0,0,3177,3178,5,400,0,0,3178,435,1,0,0,0,3179,3180, - 5,160,0,0,3180,3181,5,426,0,0,3181,3182,5,233,0,0,3182,3183,5,426, - 0,0,3183,3184,5,301,0,0,3184,3189,5,426,0,0,3185,3186,5,159,0,0, - 3186,3187,5,426,0,0,3187,3188,5,232,0,0,3188,3190,5,426,0,0,3189, - 3185,1,0,0,0,3189,3190,1,0,0,0,3190,3193,1,0,0,0,3191,3193,3,654, - 327,0,3192,3179,1,0,0,0,3192,3191,1,0,0,0,3193,437,1,0,0,0,3194, - 3195,5,184,0,0,3195,3204,5,128,0,0,3196,3197,5,184,0,0,3197,3198, - 5,128,0,0,3198,3199,3,654,327,0,3199,3200,5,426,0,0,3200,3204,1, - 0,0,0,3201,3202,5,184,0,0,3202,3204,3,482,241,0,3203,3194,1,0,0, - 0,3203,3196,1,0,0,0,3203,3201,1,0,0,0,3204,439,1,0,0,0,3205,3207, - 5,58,0,0,3206,3208,5,333,0,0,3207,3206,1,0,0,0,3207,3208,1,0,0,0, - 3208,3210,1,0,0,0,3209,3211,5,345,0,0,3210,3209,1,0,0,0,3210,3211, - 1,0,0,0,3211,3213,1,0,0,0,3212,3214,5,123,0,0,3213,3212,1,0,0,0, - 3213,3214,1,0,0,0,3214,3215,1,0,0,0,3215,3217,5,329,0,0,3216,3218, - 3,32,16,0,3217,3216,1,0,0,0,3217,3218,1,0,0,0,3218,3219,1,0,0,0, - 3219,3276,3,484,242,0,3220,3222,3,438,219,0,3221,3223,3,200,100, - 0,3222,3221,1,0,0,0,3222,3223,1,0,0,0,3223,3225,1,0,0,0,3224,3226, - 3,222,111,0,3225,3224,1,0,0,0,3225,3226,1,0,0,0,3226,3228,1,0,0, - 0,3227,3229,3,246,123,0,3228,3227,1,0,0,0,3228,3229,1,0,0,0,3229, - 3231,1,0,0,0,3230,3232,3,428,214,0,3231,3230,1,0,0,0,3231,3232,1, - 0,0,0,3232,3234,1,0,0,0,3233,3235,3,224,112,0,3234,3233,1,0,0,0, - 3234,3235,1,0,0,0,3235,3237,1,0,0,0,3236,3238,3,198,99,0,3237,3236, - 1,0,0,0,3237,3238,1,0,0,0,3238,3277,1,0,0,0,3239,3240,5,399,0,0, - 3240,3241,3,250,125,0,3241,3242,5,400,0,0,3242,3244,1,0,0,0,3243, - 3239,1,0,0,0,3243,3244,1,0,0,0,3244,3246,1,0,0,0,3245,3247,3,196, - 98,0,3246,3245,1,0,0,0,3246,3247,1,0,0,0,3247,3249,1,0,0,0,3248, - 3250,3,200,100,0,3249,3248,1,0,0,0,3249,3250,1,0,0,0,3250,3252,1, - 0,0,0,3251,3253,3,208,104,0,3252,3251,1,0,0,0,3252,3253,1,0,0,0, - 3253,3255,1,0,0,0,3254,3256,3,210,105,0,3255,3254,1,0,0,0,3255,3256, - 1,0,0,0,3256,3258,1,0,0,0,3257,3259,3,222,111,0,3258,3257,1,0,0, - 0,3258,3259,1,0,0,0,3259,3261,1,0,0,0,3260,3262,3,246,123,0,3261, - 3260,1,0,0,0,3261,3262,1,0,0,0,3262,3264,1,0,0,0,3263,3265,3,428, - 214,0,3264,3263,1,0,0,0,3264,3265,1,0,0,0,3265,3267,1,0,0,0,3266, - 3268,3,224,112,0,3267,3266,1,0,0,0,3267,3268,1,0,0,0,3268,3270,1, - 0,0,0,3269,3271,3,198,99,0,3270,3269,1,0,0,0,3270,3271,1,0,0,0,3271, - 3274,1,0,0,0,3272,3273,5,17,0,0,3273,3275,3,384,192,0,3274,3272, - 1,0,0,0,3274,3275,1,0,0,0,3275,3277,1,0,0,0,3276,3220,1,0,0,0,3276, - 3243,1,0,0,0,3277,3341,1,0,0,0,3278,3279,5,58,0,0,3279,3280,5,195, - 0,0,3280,3282,5,329,0,0,3281,3283,3,32,16,0,3282,3281,1,0,0,0,3282, - 3283,1,0,0,0,3283,3284,1,0,0,0,3284,3338,3,484,242,0,3285,3287,3, - 438,219,0,3286,3288,3,222,111,0,3287,3286,1,0,0,0,3287,3288,1,0, - 0,0,3288,3290,1,0,0,0,3289,3291,3,246,123,0,3290,3289,1,0,0,0,3290, - 3291,1,0,0,0,3291,3293,1,0,0,0,3292,3294,3,428,214,0,3293,3292,1, - 0,0,0,3293,3294,1,0,0,0,3294,3296,1,0,0,0,3295,3297,3,224,112,0, - 3296,3295,1,0,0,0,3296,3297,1,0,0,0,3297,3299,1,0,0,0,3298,3300, - 3,198,99,0,3299,3298,1,0,0,0,3299,3300,1,0,0,0,3300,3339,1,0,0,0, - 3301,3302,5,399,0,0,3302,3303,3,250,125,0,3303,3304,5,400,0,0,3304, - 3306,1,0,0,0,3305,3301,1,0,0,0,3305,3306,1,0,0,0,3306,3308,1,0,0, - 0,3307,3309,3,196,98,0,3308,3307,1,0,0,0,3308,3309,1,0,0,0,3309, - 3311,1,0,0,0,3310,3312,3,200,100,0,3311,3310,1,0,0,0,3311,3312,1, - 0,0,0,3312,3314,1,0,0,0,3313,3315,3,208,104,0,3314,3313,1,0,0,0, - 3314,3315,1,0,0,0,3315,3317,1,0,0,0,3316,3318,3,210,105,0,3317,3316, - 1,0,0,0,3317,3318,1,0,0,0,3318,3320,1,0,0,0,3319,3321,3,222,111, - 0,3320,3319,1,0,0,0,3320,3321,1,0,0,0,3321,3323,1,0,0,0,3322,3324, - 3,246,123,0,3323,3322,1,0,0,0,3323,3324,1,0,0,0,3324,3326,1,0,0, - 0,3325,3327,3,428,214,0,3326,3325,1,0,0,0,3326,3327,1,0,0,0,3327, - 3329,1,0,0,0,3328,3330,3,224,112,0,3329,3328,1,0,0,0,3329,3330,1, - 0,0,0,3330,3332,1,0,0,0,3331,3333,3,198,99,0,3332,3331,1,0,0,0,3332, - 3333,1,0,0,0,3333,3336,1,0,0,0,3334,3335,5,17,0,0,3335,3337,3,384, - 192,0,3336,3334,1,0,0,0,3336,3337,1,0,0,0,3337,3339,1,0,0,0,3338, - 3285,1,0,0,0,3338,3305,1,0,0,0,3339,3341,1,0,0,0,3340,3205,1,0,0, - 0,3340,3278,1,0,0,0,3341,441,1,0,0,0,3342,3343,5,58,0,0,3343,3345, - 5,69,0,0,3344,3346,3,32,16,0,3345,3344,1,0,0,0,3345,3346,1,0,0,0, - 3346,3347,1,0,0,0,3347,3350,3,654,327,0,3348,3349,5,352,0,0,3349, - 3351,5,426,0,0,3350,3348,1,0,0,0,3350,3351,1,0,0,0,3351,3354,1,0, - 0,0,3352,3353,5,367,0,0,3353,3355,5,426,0,0,3354,3352,1,0,0,0,3354, - 3355,1,0,0,0,3355,3358,1,0,0,0,3356,3357,5,47,0,0,3357,3359,5,426, - 0,0,3358,3356,1,0,0,0,3358,3359,1,0,0,0,3359,3363,1,0,0,0,3360,3361, - 5,387,0,0,3361,3362,5,77,0,0,3362,3364,3,230,115,0,3363,3360,1,0, - 0,0,3363,3364,1,0,0,0,3364,443,1,0,0,0,3365,3366,5,101,0,0,3366, - 3368,5,69,0,0,3367,3369,3,30,15,0,3368,3367,1,0,0,0,3368,3369,1, - 0,0,0,3369,3370,1,0,0,0,3370,3371,3,654,327,0,3371,445,1,0,0,0,3372, - 3373,3,654,327,0,3373,3374,5,395,0,0,3374,3376,1,0,0,0,3375,3372, - 1,0,0,0,3376,3379,1,0,0,0,3377,3375,1,0,0,0,3377,3378,1,0,0,0,3378, - 3380,1,0,0,0,3379,3377,1,0,0,0,3380,3381,5,415,0,0,3381,447,1,0, - 0,0,3382,3387,3,596,298,0,3383,3384,5,397,0,0,3384,3386,3,596,298, - 0,3385,3383,1,0,0,0,3386,3389,1,0,0,0,3387,3385,1,0,0,0,3387,3388, - 1,0,0,0,3388,449,1,0,0,0,3389,3387,1,0,0,0,3390,3395,3,654,327,0, - 3391,3392,5,397,0,0,3392,3394,3,654,327,0,3393,3391,1,0,0,0,3394, - 3397,1,0,0,0,3395,3393,1,0,0,0,3395,3396,1,0,0,0,3396,451,1,0,0, - 0,3397,3395,1,0,0,0,3398,3399,5,139,0,0,3399,3400,3,454,227,0,3400, - 453,1,0,0,0,3401,3402,5,359,0,0,3402,3405,3,462,231,0,3403,3404, - 5,397,0,0,3404,3406,3,462,231,0,3405,3403,1,0,0,0,3406,3407,1,0, - 0,0,3407,3405,1,0,0,0,3407,3408,1,0,0,0,3408,3411,1,0,0,0,3409,3411, - 3,458,229,0,3410,3401,1,0,0,0,3410,3409,1,0,0,0,3411,455,1,0,0,0, - 3412,3416,3,472,236,0,3413,3415,3,466,233,0,3414,3413,1,0,0,0,3415, - 3418,1,0,0,0,3416,3414,1,0,0,0,3416,3417,1,0,0,0,3417,3445,1,0,0, - 0,3418,3416,1,0,0,0,3419,3423,3,506,253,0,3420,3422,3,466,233,0, - 3421,3420,1,0,0,0,3422,3425,1,0,0,0,3423,3421,1,0,0,0,3423,3424, - 1,0,0,0,3424,3445,1,0,0,0,3425,3423,1,0,0,0,3426,3430,3,490,245, - 0,3427,3429,3,466,233,0,3428,3427,1,0,0,0,3429,3432,1,0,0,0,3430, - 3428,1,0,0,0,3430,3431,1,0,0,0,3431,3445,1,0,0,0,3432,3430,1,0,0, - 0,3433,3437,3,496,248,0,3434,3436,3,466,233,0,3435,3434,1,0,0,0, - 3436,3439,1,0,0,0,3437,3435,1,0,0,0,3437,3438,1,0,0,0,3438,3445, - 1,0,0,0,3439,3437,1,0,0,0,3440,3441,5,399,0,0,3441,3442,3,458,229, - 0,3442,3443,5,400,0,0,3443,3445,1,0,0,0,3444,3412,1,0,0,0,3444,3419, - 1,0,0,0,3444,3426,1,0,0,0,3444,3433,1,0,0,0,3444,3440,1,0,0,0,3445, - 457,1,0,0,0,3446,3464,3,456,228,0,3447,3448,3,464,232,0,3448,3460, - 3,460,230,0,3449,3456,5,224,0,0,3450,3457,3,596,298,0,3451,3454, - 3,260,130,0,3452,3453,5,405,0,0,3453,3455,3,260,130,0,3454,3452, - 1,0,0,0,3454,3455,1,0,0,0,3455,3457,1,0,0,0,3456,3450,1,0,0,0,3456, - 3451,1,0,0,0,3457,3461,1,0,0,0,3458,3459,5,370,0,0,3459,3461,3,268, - 134,0,3460,3449,1,0,0,0,3460,3458,1,0,0,0,3460,3461,1,0,0,0,3461, - 3463,1,0,0,0,3462,3447,1,0,0,0,3463,3466,1,0,0,0,3464,3462,1,0,0, - 0,3464,3465,1,0,0,0,3465,459,1,0,0,0,3466,3464,1,0,0,0,3467,3472, - 3,472,236,0,3468,3472,3,506,253,0,3469,3472,3,490,245,0,3470,3472, - 3,496,248,0,3471,3467,1,0,0,0,3471,3468,1,0,0,0,3471,3469,1,0,0, - 0,3471,3470,1,0,0,0,3472,3476,1,0,0,0,3473,3475,3,466,233,0,3474, - 3473,1,0,0,0,3475,3478,1,0,0,0,3476,3474,1,0,0,0,3476,3477,1,0,0, - 0,3477,461,1,0,0,0,3478,3476,1,0,0,0,3479,3481,5,250,0,0,3480,3479, - 1,0,0,0,3480,3481,1,0,0,0,3481,3482,1,0,0,0,3482,3484,3,480,240, - 0,3483,3485,3,470,235,0,3484,3483,1,0,0,0,3484,3485,1,0,0,0,3485, - 3490,1,0,0,0,3486,3488,5,17,0,0,3487,3486,1,0,0,0,3487,3488,1,0, - 0,0,3488,3489,1,0,0,0,3489,3491,3,654,327,0,3490,3487,1,0,0,0,3490, - 3491,1,0,0,0,3491,3492,1,0,0,0,3492,3493,5,399,0,0,3493,3494,3,448, - 224,0,3494,3495,5,400,0,0,3495,463,1,0,0,0,3496,3511,5,397,0,0,3497, - 3508,5,157,0,0,3498,3508,5,60,0,0,3499,3501,7,28,0,0,3500,3502,5, - 231,0,0,3501,3500,1,0,0,0,3501,3502,1,0,0,0,3502,3508,1,0,0,0,3503, - 3505,5,180,0,0,3504,3506,7,29,0,0,3505,3504,1,0,0,0,3505,3506,1, - 0,0,0,3506,3508,1,0,0,0,3507,3497,1,0,0,0,3507,3498,1,0,0,0,3507, - 3499,1,0,0,0,3507,3503,1,0,0,0,3507,3508,1,0,0,0,3508,3509,1,0,0, - 0,3509,3511,5,171,0,0,3510,3496,1,0,0,0,3510,3507,1,0,0,0,3511,465, - 1,0,0,0,3512,3513,5,178,0,0,3513,3514,5,378,0,0,3514,3515,5,231, - 0,0,3515,3516,3,566,283,0,3516,3526,3,468,234,0,3517,3518,5,17,0, - 0,3518,3523,3,654,327,0,3519,3520,5,397,0,0,3520,3522,3,654,327, - 0,3521,3519,1,0,0,0,3522,3525,1,0,0,0,3523,3521,1,0,0,0,3523,3524, - 1,0,0,0,3524,3527,1,0,0,0,3525,3523,1,0,0,0,3526,3517,1,0,0,0,3526, - 3527,1,0,0,0,3527,3570,1,0,0,0,3528,3530,5,397,0,0,3529,3528,1,0, - 0,0,3529,3530,1,0,0,0,3530,3531,1,0,0,0,3531,3567,5,178,0,0,3532, - 3533,5,378,0,0,3533,3534,3,566,283,0,3534,3544,3,468,234,0,3535, - 3536,5,17,0,0,3536,3541,3,654,327,0,3537,3538,5,397,0,0,3538,3540, - 3,654,327,0,3539,3537,1,0,0,0,3540,3543,1,0,0,0,3541,3539,1,0,0, - 0,3541,3542,1,0,0,0,3542,3545,1,0,0,0,3543,3541,1,0,0,0,3544,3535, - 1,0,0,0,3544,3545,1,0,0,0,3545,3568,1,0,0,0,3546,3547,5,329,0,0, - 3547,3548,5,399,0,0,3548,3549,3,502,251,0,3549,3551,5,400,0,0,3550, - 3552,5,17,0,0,3551,3550,1,0,0,0,3551,3552,1,0,0,0,3552,3553,1,0, - 0,0,3553,3565,3,468,234,0,3554,3555,5,399,0,0,3555,3560,3,654,327, - 0,3556,3557,5,397,0,0,3557,3559,3,654,327,0,3558,3556,1,0,0,0,3559, - 3562,1,0,0,0,3560,3558,1,0,0,0,3560,3561,1,0,0,0,3561,3563,1,0,0, - 0,3562,3560,1,0,0,0,3563,3564,5,400,0,0,3564,3566,1,0,0,0,3565,3554, - 1,0,0,0,3565,3566,1,0,0,0,3566,3568,1,0,0,0,3567,3532,1,0,0,0,3567, - 3546,1,0,0,0,3568,3570,1,0,0,0,3569,3512,1,0,0,0,3569,3529,1,0,0, - 0,3570,467,1,0,0,0,3571,3572,3,654,327,0,3572,469,1,0,0,0,3573,3574, - 5,331,0,0,3574,3575,5,399,0,0,3575,3576,5,30,0,0,3576,3577,5,431, - 0,0,3577,3578,5,230,0,0,3578,3579,5,221,0,0,3579,3589,5,431,0,0, - 3580,3581,5,224,0,0,3581,3586,3,596,298,0,3582,3583,5,397,0,0,3583, - 3585,3,596,298,0,3584,3582,1,0,0,0,3585,3588,1,0,0,0,3586,3584,1, - 0,0,0,3586,3587,1,0,0,0,3587,3590,1,0,0,0,3588,3586,1,0,0,0,3589, - 3580,1,0,0,0,3589,3590,1,0,0,0,3590,3591,1,0,0,0,3591,3601,5,400, - 0,0,3592,3593,5,331,0,0,3593,3597,5,399,0,0,3594,3595,5,431,0,0, - 3595,3598,7,30,0,0,3596,3598,5,430,0,0,3597,3594,1,0,0,0,3597,3596, - 1,0,0,0,3598,3599,1,0,0,0,3599,3601,5,400,0,0,3600,3573,1,0,0,0, - 3600,3592,1,0,0,0,3601,471,1,0,0,0,3602,3604,3,480,240,0,3603,3605, - 3,226,113,0,3604,3603,1,0,0,0,3604,3605,1,0,0,0,3605,3607,1,0,0, - 0,3606,3608,3,470,235,0,3607,3606,1,0,0,0,3607,3608,1,0,0,0,3608, - 3610,1,0,0,0,3609,3611,3,474,237,0,3610,3609,1,0,0,0,3610,3611,1, - 0,0,0,3611,3616,1,0,0,0,3612,3614,5,17,0,0,3613,3612,1,0,0,0,3613, - 3614,1,0,0,0,3614,3615,1,0,0,0,3615,3617,3,654,327,0,3616,3613,1, - 0,0,0,3616,3617,1,0,0,0,3617,473,1,0,0,0,3618,3628,5,134,0,0,3619, - 3620,5,327,0,0,3620,3621,5,17,0,0,3621,3622,5,221,0,0,3622,3629, - 3,596,298,0,3623,3624,5,134,0,0,3624,3625,5,328,0,0,3625,3626,5, - 17,0,0,3626,3627,5,221,0,0,3627,3629,5,431,0,0,3628,3619,1,0,0,0, - 3628,3623,1,0,0,0,3629,475,1,0,0,0,3630,3631,3,654,327,0,3631,477, - 1,0,0,0,3632,3633,3,654,327,0,3633,479,1,0,0,0,3634,3637,3,482,241, - 0,3635,3637,3,486,243,0,3636,3634,1,0,0,0,3636,3635,1,0,0,0,3637, - 481,1,0,0,0,3638,3639,3,654,327,0,3639,3640,5,395,0,0,3640,3643, - 3,654,327,0,3641,3642,5,395,0,0,3642,3644,3,654,327,0,3643,3641, - 1,0,0,0,3643,3644,1,0,0,0,3644,3647,1,0,0,0,3645,3647,3,654,327, - 0,3646,3638,1,0,0,0,3646,3645,1,0,0,0,3647,483,1,0,0,0,3648,3649, - 3,654,327,0,3649,3650,5,395,0,0,3650,3653,3,654,327,0,3651,3652, - 5,395,0,0,3652,3654,3,654,327,0,3653,3651,1,0,0,0,3653,3654,1,0, - 0,0,3654,3657,1,0,0,0,3655,3657,3,654,327,0,3656,3648,1,0,0,0,3656, - 3655,1,0,0,0,3657,485,1,0,0,0,3658,3659,3,654,327,0,3659,3660,5, - 395,0,0,3660,3662,1,0,0,0,3661,3658,1,0,0,0,3661,3662,1,0,0,0,3662, - 3663,1,0,0,0,3663,3664,3,654,327,0,3664,487,1,0,0,0,3665,3666,3, - 654,327,0,3666,3667,5,395,0,0,3667,3669,1,0,0,0,3668,3665,1,0,0, - 0,3668,3669,1,0,0,0,3669,3670,1,0,0,0,3670,3671,3,654,327,0,3671, - 489,1,0,0,0,3672,3673,5,399,0,0,3673,3674,3,364,182,0,3674,3676, - 5,400,0,0,3675,3677,5,17,0,0,3676,3675,1,0,0,0,3676,3677,1,0,0,0, - 3677,3678,1,0,0,0,3678,3679,3,654,327,0,3679,491,1,0,0,0,3680,3682, - 3,558,279,0,3681,3683,3,556,278,0,3682,3681,1,0,0,0,3682,3683,1, - 0,0,0,3683,3692,1,0,0,0,3684,3692,3,556,278,0,3685,3687,3,562,281, - 0,3686,3688,3,564,282,0,3687,3686,1,0,0,0,3687,3688,1,0,0,0,3688, - 3692,1,0,0,0,3689,3692,3,564,282,0,3690,3692,3,560,280,0,3691,3680, - 1,0,0,0,3691,3684,1,0,0,0,3691,3685,1,0,0,0,3691,3689,1,0,0,0,3691, - 3690,1,0,0,0,3692,493,1,0,0,0,3693,3697,3,490,245,0,3694,3697,3, - 472,236,0,3695,3697,3,496,248,0,3696,3693,1,0,0,0,3696,3694,1,0, - 0,0,3696,3695,1,0,0,0,3697,495,1,0,0,0,3698,3700,3,498,249,0,3699, - 3701,3,654,327,0,3700,3699,1,0,0,0,3700,3701,1,0,0,0,3701,497,1, - 0,0,0,3702,3703,3,654,327,0,3703,3704,5,399,0,0,3704,3705,5,224, - 0,0,3705,3707,3,494,247,0,3706,3708,3,492,246,0,3707,3706,1,0,0, - 0,3707,3708,1,0,0,0,3708,3724,1,0,0,0,3709,3710,5,432,0,0,3710,3711, - 5,399,0,0,3711,3712,3,596,298,0,3712,3721,5,400,0,0,3713,3714,5, - 397,0,0,3714,3715,5,432,0,0,3715,3716,5,399,0,0,3716,3717,3,596, - 298,0,3717,3718,5,400,0,0,3718,3720,1,0,0,0,3719,3713,1,0,0,0,3720, - 3723,1,0,0,0,3721,3719,1,0,0,0,3721,3722,1,0,0,0,3722,3725,1,0,0, - 0,3723,3721,1,0,0,0,3724,3709,1,0,0,0,3724,3725,1,0,0,0,3725,3726, - 1,0,0,0,3726,3727,5,400,0,0,3727,499,1,0,0,0,3728,3731,5,384,0,0, - 3729,3732,3,596,298,0,3730,3732,3,260,130,0,3731,3729,1,0,0,0,3731, - 3730,1,0,0,0,3732,501,1,0,0,0,3733,3752,5,374,0,0,3734,3739,3,552, - 276,0,3735,3736,5,397,0,0,3736,3738,3,552,276,0,3737,3735,1,0,0, - 0,3738,3741,1,0,0,0,3739,3737,1,0,0,0,3739,3740,1,0,0,0,3740,3753, - 1,0,0,0,3741,3739,1,0,0,0,3742,3743,5,399,0,0,3743,3744,3,548,274, - 0,3744,3749,5,400,0,0,3745,3746,5,397,0,0,3746,3748,3,552,276,0, - 3747,3745,1,0,0,0,3748,3751,1,0,0,0,3749,3747,1,0,0,0,3749,3750, - 1,0,0,0,3750,3753,1,0,0,0,3751,3749,1,0,0,0,3752,3734,1,0,0,0,3752, - 3742,1,0,0,0,3753,503,1,0,0,0,3754,3755,5,329,0,0,3755,3756,5,399, - 0,0,3756,3757,3,502,251,0,3757,3758,5,400,0,0,3758,505,1,0,0,0,3759, - 3761,3,504,252,0,3760,3762,5,17,0,0,3761,3760,1,0,0,0,3761,3762, - 1,0,0,0,3762,3763,1,0,0,0,3763,3773,3,468,234,0,3764,3765,5,399, - 0,0,3765,3770,3,654,327,0,3766,3767,5,397,0,0,3767,3769,3,654,327, - 0,3768,3766,1,0,0,0,3769,3772,1,0,0,0,3770,3768,1,0,0,0,3770,3771, - 1,0,0,0,3771,3774,1,0,0,0,3772,3770,1,0,0,0,3773,3764,1,0,0,0,3773, - 3774,1,0,0,0,3774,3775,1,0,0,0,3775,3776,5,400,0,0,3776,507,1,0, - 0,0,3777,3779,5,299,0,0,3778,3780,5,436,0,0,3779,3778,1,0,0,0,3779, - 3780,1,0,0,0,3780,3787,1,0,0,0,3781,3783,7,22,0,0,3782,3781,1,0, - 0,0,3782,3783,1,0,0,0,3783,3784,1,0,0,0,3784,3788,3,512,256,0,3785, - 3786,5,347,0,0,3786,3788,3,510,255,0,3787,3782,1,0,0,0,3787,3785, - 1,0,0,0,3788,3791,1,0,0,0,3789,3791,3,520,260,0,3790,3777,1,0,0, - 0,3790,3789,1,0,0,0,3791,509,1,0,0,0,3792,3793,5,399,0,0,3793,3794, - 3,524,262,0,3794,3795,5,400,0,0,3795,3796,3,212,106,0,3796,3797, - 3,216,108,0,3797,3798,5,370,0,0,3798,3811,5,426,0,0,3799,3809,5, - 17,0,0,3800,3803,5,399,0,0,3801,3804,3,450,225,0,3802,3804,3,248, - 124,0,3803,3801,1,0,0,0,3803,3802,1,0,0,0,3804,3805,1,0,0,0,3805, - 3806,5,400,0,0,3806,3810,1,0,0,0,3807,3810,3,450,225,0,3808,3810, - 3,248,124,0,3809,3800,1,0,0,0,3809,3807,1,0,0,0,3809,3808,1,0,0, - 0,3810,3812,1,0,0,0,3811,3799,1,0,0,0,3811,3812,1,0,0,0,3812,3813, - 1,0,0,0,3813,3814,3,212,106,0,3814,3815,3,214,107,0,3815,511,1,0, - 0,0,3816,3821,3,514,257,0,3817,3818,5,397,0,0,3818,3820,3,514,257, - 0,3819,3817,1,0,0,0,3820,3823,1,0,0,0,3821,3819,1,0,0,0,3821,3822, - 1,0,0,0,3822,513,1,0,0,0,3823,3821,1,0,0,0,3824,3850,3,446,223,0, - 3825,3828,3,516,258,0,3826,3828,3,518,259,0,3827,3825,1,0,0,0,3827, - 3826,1,0,0,0,3828,3845,1,0,0,0,3829,3831,5,17,0,0,3830,3829,1,0, - 0,0,3830,3831,1,0,0,0,3831,3832,1,0,0,0,3832,3846,3,654,327,0,3833, - 3834,5,17,0,0,3834,3835,5,399,0,0,3835,3840,3,654,327,0,3836,3837, - 5,397,0,0,3837,3839,3,654,327,0,3838,3836,1,0,0,0,3839,3842,1,0, - 0,0,3840,3838,1,0,0,0,3840,3841,1,0,0,0,3841,3843,1,0,0,0,3842,3840, - 1,0,0,0,3843,3844,5,400,0,0,3844,3846,1,0,0,0,3845,3830,1,0,0,0, - 3845,3833,1,0,0,0,3845,3846,1,0,0,0,3846,3850,1,0,0,0,3847,3848, - 4,257,2,0,3848,3850,3,698,349,0,3849,3824,1,0,0,0,3849,3827,1,0, - 0,0,3849,3847,1,0,0,0,3850,515,1,0,0,0,3851,3852,3,256,128,0,3852, - 517,1,0,0,0,3853,3854,3,596,298,0,3854,519,1,0,0,0,3855,3856,7,31, - 0,0,3856,3857,3,524,262,0,3857,3858,3,212,106,0,3858,3859,3,216, - 108,0,3859,3860,5,370,0,0,3860,3873,5,426,0,0,3861,3871,5,17,0,0, - 3862,3865,5,399,0,0,3863,3866,3,450,225,0,3864,3866,3,248,124,0, - 3865,3863,1,0,0,0,3865,3864,1,0,0,0,3866,3867,1,0,0,0,3867,3868, - 5,400,0,0,3868,3872,1,0,0,0,3869,3872,3,450,225,0,3870,3872,3,248, - 124,0,3871,3862,1,0,0,0,3871,3869,1,0,0,0,3871,3870,1,0,0,0,3872, - 3874,1,0,0,0,3873,3861,1,0,0,0,3873,3874,1,0,0,0,3874,3875,1,0,0, - 0,3875,3876,3,212,106,0,3876,3877,3,214,107,0,3877,521,1,0,0,0,3878, - 3881,3,446,223,0,3879,3881,3,596,298,0,3880,3878,1,0,0,0,3880,3879, - 1,0,0,0,3881,523,1,0,0,0,3882,3887,3,522,261,0,3883,3884,5,397,0, - 0,3884,3886,3,522,261,0,3885,3883,1,0,0,0,3886,3889,1,0,0,0,3887, - 3885,1,0,0,0,3887,3888,1,0,0,0,3888,525,1,0,0,0,3889,3887,1,0,0, - 0,3890,3891,5,386,0,0,3891,3892,3,654,327,0,3892,3893,5,17,0,0,3893, - 3901,3,528,264,0,3894,3895,5,397,0,0,3895,3896,3,654,327,0,3896, - 3897,5,17,0,0,3897,3898,3,528,264,0,3898,3900,1,0,0,0,3899,3894, - 1,0,0,0,3900,3903,1,0,0,0,3901,3899,1,0,0,0,3901,3902,1,0,0,0,3902, - 527,1,0,0,0,3903,3901,1,0,0,0,3904,3917,3,654,327,0,3905,3907,5, - 399,0,0,3906,3908,3,654,327,0,3907,3906,1,0,0,0,3907,3908,1,0,0, - 0,3908,3910,1,0,0,0,3909,3911,3,492,246,0,3910,3909,1,0,0,0,3910, - 3911,1,0,0,0,3911,3913,1,0,0,0,3912,3914,3,530,265,0,3913,3912,1, - 0,0,0,3913,3914,1,0,0,0,3914,3915,1,0,0,0,3915,3917,5,400,0,0,3916, - 3904,1,0,0,0,3916,3905,1,0,0,0,3917,529,1,0,0,0,3918,3932,7,32,0, - 0,3919,3920,5,354,0,0,3920,3926,5,247,0,0,3921,3922,5,62,0,0,3922, - 3926,5,291,0,0,3923,3924,5,431,0,0,3924,3926,5,247,0,0,3925,3919, - 1,0,0,0,3925,3921,1,0,0,0,3925,3923,1,0,0,0,3926,3933,1,0,0,0,3927, - 3928,5,25,0,0,3928,3929,3,532,266,0,3929,3930,5,11,0,0,3930,3931, - 3,532,266,0,3931,3933,1,0,0,0,3932,3925,1,0,0,0,3932,3927,1,0,0, - 0,3933,531,1,0,0,0,3934,3935,7,33,0,0,3935,3939,7,34,0,0,3936,3937, - 5,62,0,0,3937,3939,5,291,0,0,3938,3934,1,0,0,0,3938,3936,1,0,0,0, - 3939,533,1,0,0,0,3940,3941,5,144,0,0,3941,3947,5,32,0,0,3942,3948, - 3,256,128,0,3943,3948,3,536,268,0,3944,3948,3,538,269,0,3945,3946, - 5,399,0,0,3946,3948,5,400,0,0,3947,3942,1,0,0,0,3947,3943,1,0,0, - 0,3947,3944,1,0,0,0,3947,3945,1,0,0,0,3948,535,1,0,0,0,3949,3952, - 5,290,0,0,3950,3952,5,61,0,0,3951,3949,1,0,0,0,3951,3950,1,0,0,0, - 3952,3953,1,0,0,0,3953,3954,5,399,0,0,3954,3959,3,596,298,0,3955, - 3956,5,397,0,0,3956,3958,3,596,298,0,3957,3955,1,0,0,0,3958,3961, - 1,0,0,0,3959,3957,1,0,0,0,3959,3960,1,0,0,0,3960,3962,1,0,0,0,3961, - 3959,1,0,0,0,3962,3963,5,400,0,0,3963,537,1,0,0,0,3964,3969,3,554, - 277,0,3965,3966,5,387,0,0,3966,3970,5,290,0,0,3967,3968,5,387,0, - 0,3968,3970,5,61,0,0,3969,3965,1,0,0,0,3969,3967,1,0,0,0,3969,3970, - 1,0,0,0,3970,3984,1,0,0,0,3971,3972,5,145,0,0,3972,3973,5,305,0, - 0,3973,3974,5,399,0,0,3974,3979,3,540,270,0,3975,3976,5,397,0,0, - 3976,3978,3,540,270,0,3977,3975,1,0,0,0,3978,3981,1,0,0,0,3979,3977, - 1,0,0,0,3979,3980,1,0,0,0,3980,3982,1,0,0,0,3981,3979,1,0,0,0,3982, - 3983,5,400,0,0,3983,3985,1,0,0,0,3984,3971,1,0,0,0,3984,3985,1,0, - 0,0,3985,539,1,0,0,0,3986,3988,5,399,0,0,3987,3989,3,596,298,0,3988, - 3987,1,0,0,0,3988,3989,1,0,0,0,3989,3994,1,0,0,0,3990,3991,5,397, - 0,0,3991,3993,3,596,298,0,3992,3990,1,0,0,0,3993,3996,1,0,0,0,3994, - 3992,1,0,0,0,3994,3995,1,0,0,0,3995,3997,1,0,0,0,3996,3994,1,0,0, - 0,3997,4000,5,400,0,0,3998,4000,3,596,298,0,3999,3986,1,0,0,0,3999, - 3998,1,0,0,0,4000,541,1,0,0,0,4001,4004,5,146,0,0,4002,4005,3,596, - 298,0,4003,4005,3,260,130,0,4004,4002,1,0,0,0,4004,4003,1,0,0,0, - 4005,543,1,0,0,0,4006,4007,5,256,0,0,4007,4008,3,596,298,0,4008, - 545,1,0,0,0,4009,4012,5,83,0,0,4010,4012,3,596,298,0,4011,4009,1, - 0,0,0,4011,4010,1,0,0,0,4012,547,1,0,0,0,4013,4015,3,596,298,0,4014, - 4016,5,17,0,0,4015,4014,1,0,0,0,4015,4016,1,0,0,0,4016,4018,1,0, - 0,0,4017,4019,3,654,327,0,4018,4017,1,0,0,0,4018,4019,1,0,0,0,4019, - 4030,1,0,0,0,4020,4021,5,397,0,0,4021,4023,3,596,298,0,4022,4024, - 5,17,0,0,4023,4022,1,0,0,0,4023,4024,1,0,0,0,4024,4026,1,0,0,0,4025, - 4027,3,654,327,0,4026,4025,1,0,0,0,4026,4027,1,0,0,0,4027,4029,1, - 0,0,0,4028,4020,1,0,0,0,4029,4032,1,0,0,0,4030,4028,1,0,0,0,4030, - 4031,1,0,0,0,4031,549,1,0,0,0,4032,4030,1,0,0,0,4033,4036,3,552, - 276,0,4034,4036,3,554,277,0,4035,4033,1,0,0,0,4035,4034,1,0,0,0, - 4036,551,1,0,0,0,4037,4038,5,399,0,0,4038,4039,3,554,277,0,4039, - 4040,5,400,0,0,4040,553,1,0,0,0,4041,4048,3,546,273,0,4042,4043, - 5,397,0,0,4043,4045,3,546,273,0,4044,4042,1,0,0,0,4045,4046,1,0, - 0,0,4046,4044,1,0,0,0,4046,4047,1,0,0,0,4047,4049,1,0,0,0,4048,4044, - 1,0,0,0,4048,4049,1,0,0,0,4049,555,1,0,0,0,4050,4051,5,229,0,0,4051, - 4052,5,32,0,0,4052,4057,3,312,156,0,4053,4054,5,397,0,0,4054,4056, - 3,312,156,0,4055,4053,1,0,0,0,4056,4059,1,0,0,0,4057,4055,1,0,0, - 0,4057,4058,1,0,0,0,4058,557,1,0,0,0,4059,4057,1,0,0,0,4060,4061, - 5,237,0,0,4061,4062,5,32,0,0,4062,4063,3,550,275,0,4063,559,1,0, - 0,0,4064,4065,5,41,0,0,4065,4066,5,32,0,0,4066,4067,3,550,275,0, - 4067,561,1,0,0,0,4068,4069,5,97,0,0,4069,4070,5,32,0,0,4070,4071, - 3,550,275,0,4071,563,1,0,0,0,4072,4073,5,314,0,0,4073,4093,5,32, - 0,0,4074,4075,5,399,0,0,4075,4080,3,312,156,0,4076,4077,5,397,0, - 0,4077,4079,3,312,156,0,4078,4076,1,0,0,0,4079,4082,1,0,0,0,4080, - 4078,1,0,0,0,4080,4081,1,0,0,0,4081,4083,1,0,0,0,4082,4080,1,0,0, - 0,4083,4084,5,400,0,0,4084,4094,1,0,0,0,4085,4090,3,312,156,0,4086, - 4087,5,397,0,0,4087,4089,3,312,156,0,4088,4086,1,0,0,0,4089,4092, - 1,0,0,0,4090,4088,1,0,0,0,4090,4091,1,0,0,0,4091,4094,1,0,0,0,4092, - 4090,1,0,0,0,4093,4074,1,0,0,0,4093,4085,1,0,0,0,4094,565,1,0,0, - 0,4095,4096,5,349,0,0,4096,4100,5,399,0,0,4097,4101,5,179,0,0,4098, - 4101,5,343,0,0,4099,4101,5,29,0,0,4100,4097,1,0,0,0,4100,4098,1, - 0,0,0,4100,4099,1,0,0,0,4100,4101,1,0,0,0,4101,4103,1,0,0,0,4102, - 4104,3,522,261,0,4103,4102,1,0,0,0,4103,4104,1,0,0,0,4104,4105,1, - 0,0,0,4105,4106,5,139,0,0,4106,4107,3,522,261,0,4107,4108,5,400, - 0,0,4108,4149,1,0,0,0,4109,4110,3,574,287,0,4110,4125,5,399,0,0, - 4111,4126,5,415,0,0,4112,4114,7,22,0,0,4113,4112,1,0,0,0,4113,4114, - 1,0,0,0,4114,4123,1,0,0,0,4115,4120,3,522,261,0,4116,4117,5,397, - 0,0,4117,4119,3,522,261,0,4118,4116,1,0,0,0,4119,4122,1,0,0,0,4120, - 4118,1,0,0,0,4120,4121,1,0,0,0,4121,4124,1,0,0,0,4122,4120,1,0,0, - 0,4123,4115,1,0,0,0,4123,4124,1,0,0,0,4124,4126,1,0,0,0,4125,4111, - 1,0,0,0,4125,4113,1,0,0,0,4126,4146,1,0,0,0,4127,4128,5,400,0,0, - 4128,4129,5,388,0,0,4129,4130,5,144,0,0,4130,4131,5,399,0,0,4131, - 4132,3,556,278,0,4132,4133,5,400,0,0,4133,4147,1,0,0,0,4134,4136, - 5,400,0,0,4135,4137,3,568,284,0,4136,4135,1,0,0,0,4136,4137,1,0, - 0,0,4137,4138,1,0,0,0,4138,4139,5,234,0,0,4139,4147,3,528,264,0, - 4140,4141,3,568,284,0,4141,4142,5,400,0,0,4142,4143,5,234,0,0,4143, - 4144,3,528,264,0,4144,4147,1,0,0,0,4145,4147,5,400,0,0,4146,4127, - 1,0,0,0,4146,4134,1,0,0,0,4146,4140,1,0,0,0,4146,4145,1,0,0,0,4147, - 4149,1,0,0,0,4148,4095,1,0,0,0,4148,4109,1,0,0,0,4149,567,1,0,0, - 0,4150,4151,7,35,0,0,4151,4152,5,220,0,0,4152,569,1,0,0,0,4153,4154, - 3,656,328,0,4154,571,1,0,0,0,4155,4158,3,656,328,0,4156,4158,5,426, - 0,0,4157,4155,1,0,0,0,4157,4156,1,0,0,0,4158,573,1,0,0,0,4159,4163, - 3,656,328,0,4160,4163,3,662,331,0,4161,4163,3,652,326,0,4162,4159, - 1,0,0,0,4162,4160,1,0,0,0,4162,4161,1,0,0,0,4163,575,1,0,0,0,4164, - 4165,5,36,0,0,4165,4166,5,399,0,0,4166,4167,3,596,298,0,4167,4168, - 5,17,0,0,4168,4171,3,352,176,0,4169,4170,5,137,0,0,4170,4172,5,426, - 0,0,4171,4169,1,0,0,0,4171,4172,1,0,0,0,4172,4173,1,0,0,0,4173,4174, - 5,400,0,0,4174,577,1,0,0,0,4175,4176,5,35,0,0,4176,4182,3,596,298, - 0,4177,4178,5,383,0,0,4178,4179,3,596,298,0,4179,4180,5,335,0,0, - 4180,4181,3,596,298,0,4181,4183,1,0,0,0,4182,4177,1,0,0,0,4183,4184, - 1,0,0,0,4184,4182,1,0,0,0,4184,4185,1,0,0,0,4185,4188,1,0,0,0,4186, - 4187,5,105,0,0,4187,4189,3,596,298,0,4188,4186,1,0,0,0,4188,4189, - 1,0,0,0,4189,4190,1,0,0,0,4190,4191,5,108,0,0,4191,579,1,0,0,0,4192, - 4198,5,35,0,0,4193,4194,5,383,0,0,4194,4195,3,596,298,0,4195,4196, - 5,335,0,0,4196,4197,3,596,298,0,4197,4199,1,0,0,0,4198,4193,1,0, - 0,0,4199,4200,1,0,0,0,4200,4198,1,0,0,0,4200,4201,1,0,0,0,4201,4204, - 1,0,0,0,4202,4203,5,105,0,0,4203,4205,3,596,298,0,4204,4202,1,0, - 0,0,4204,4205,1,0,0,0,4205,4206,1,0,0,0,4206,4207,5,108,0,0,4207, - 581,1,0,0,0,4208,4209,5,132,0,0,4209,4210,5,399,0,0,4210,4213,3, - 596,298,0,4211,4212,5,341,0,0,4212,4214,3,586,293,0,4213,4211,1, - 0,0,0,4213,4214,1,0,0,0,4214,4215,1,0,0,0,4215,4216,5,400,0,0,4216, - 583,1,0,0,0,4217,4218,5,124,0,0,4218,4219,5,399,0,0,4219,4220,3, - 586,293,0,4220,4221,5,139,0,0,4221,4222,3,596,298,0,4222,4223,5, - 400,0,0,4223,585,1,0,0,0,4224,4233,3,682,341,0,4225,4233,5,257,0, - 0,4226,4233,3,684,342,0,4227,4233,3,686,343,0,4228,4233,3,688,344, - 0,4229,4233,3,690,345,0,4230,4233,3,692,346,0,4231,4233,3,694,347, - 0,4232,4224,1,0,0,0,4232,4225,1,0,0,0,4232,4226,1,0,0,0,4232,4227, - 1,0,0,0,4232,4228,1,0,0,0,4232,4229,1,0,0,0,4232,4230,1,0,0,0,4232, - 4231,1,0,0,0,4233,587,1,0,0,0,4234,4235,3,590,295,0,4235,4236,3, - 594,297,0,4236,4263,1,0,0,0,4237,4263,5,431,0,0,4238,4239,5,71,0, - 0,4239,4263,5,426,0,0,4240,4263,5,63,0,0,4241,4242,5,337,0,0,4242, - 4263,5,426,0,0,4243,4263,5,64,0,0,4244,4245,5,338,0,0,4245,4263, - 5,426,0,0,4246,4250,5,426,0,0,4247,4249,5,426,0,0,4248,4247,1,0, - 0,0,4249,4252,1,0,0,0,4250,4248,1,0,0,0,4250,4251,1,0,0,0,4251,4263, - 1,0,0,0,4252,4250,1,0,0,0,4253,4263,5,428,0,0,4254,4263,5,429,0, - 0,4255,4256,5,433,0,0,4256,4263,5,427,0,0,4257,4263,5,350,0,0,4258, - 4263,5,125,0,0,4259,4263,5,219,0,0,4260,4263,5,424,0,0,4261,4263, - 3,258,129,0,4262,4234,1,0,0,0,4262,4237,1,0,0,0,4262,4238,1,0,0, - 0,4262,4240,1,0,0,0,4262,4241,1,0,0,0,4262,4243,1,0,0,0,4262,4244, - 1,0,0,0,4262,4246,1,0,0,0,4262,4253,1,0,0,0,4262,4254,1,0,0,0,4262, - 4255,1,0,0,0,4262,4257,1,0,0,0,4262,4258,1,0,0,0,4262,4259,1,0,0, - 0,4262,4260,1,0,0,0,4262,4261,1,0,0,0,4263,589,1,0,0,0,4264,4265, - 7,27,0,0,4265,591,1,0,0,0,4266,4267,5,399,0,0,4267,4268,3,590,295, - 0,4268,4269,5,400,0,0,4269,4270,3,594,297,0,4270,4282,1,0,0,0,4271, - 4277,5,165,0,0,4272,4278,3,590,295,0,4273,4274,5,399,0,0,4274,4275, - 3,596,298,0,4275,4276,5,400,0,0,4276,4278,1,0,0,0,4277,4272,1,0, - 0,0,4277,4273,1,0,0,0,4278,4279,1,0,0,0,4279,4280,3,594,297,0,4280, - 4282,1,0,0,0,4281,4266,1,0,0,0,4281,4271,1,0,0,0,4282,593,1,0,0, - 0,4283,4284,3,682,341,0,4284,4285,5,341,0,0,4285,4286,3,684,342, - 0,4286,4298,1,0,0,0,4287,4288,3,688,344,0,4288,4289,5,341,0,0,4289, - 4290,3,694,347,0,4290,4298,1,0,0,0,4291,4298,3,682,341,0,4292,4298, - 3,684,342,0,4293,4298,3,688,344,0,4294,4298,3,690,345,0,4295,4298, - 3,692,346,0,4296,4298,3,694,347,0,4297,4283,1,0,0,0,4297,4287,1, - 0,0,0,4297,4291,1,0,0,0,4297,4292,1,0,0,0,4297,4293,1,0,0,0,4297, - 4294,1,0,0,0,4297,4295,1,0,0,0,4297,4296,1,0,0,0,4298,595,1,0,0, - 0,4299,4304,3,638,319,0,4300,4301,5,228,0,0,4301,4303,3,638,319, - 0,4302,4300,1,0,0,0,4303,4306,1,0,0,0,4304,4302,1,0,0,0,4304,4305, - 1,0,0,0,4305,597,1,0,0,0,4306,4304,1,0,0,0,4307,4319,3,588,294,0, - 4308,4319,3,592,296,0,4309,4319,3,576,288,0,4310,4319,3,584,292, - 0,4311,4319,3,582,291,0,4312,4319,3,578,289,0,4313,4319,3,580,290, - 0,4314,4319,3,616,308,0,4315,4319,3,566,283,0,4316,4319,3,552,276, - 0,4317,4319,3,654,327,0,4318,4307,1,0,0,0,4318,4308,1,0,0,0,4318, - 4309,1,0,0,0,4318,4310,1,0,0,0,4318,4311,1,0,0,0,4318,4312,1,0,0, - 0,4318,4313,1,0,0,0,4318,4314,1,0,0,0,4318,4315,1,0,0,0,4318,4316, - 1,0,0,0,4318,4317,1,0,0,0,4319,599,1,0,0,0,4320,4322,7,36,0,0,4321, - 4320,1,0,0,0,4322,4325,1,0,0,0,4323,4321,1,0,0,0,4323,4324,1,0,0, - 0,4324,4326,1,0,0,0,4325,4323,1,0,0,0,4326,4335,3,598,299,0,4327, - 4328,5,401,0,0,4328,4329,3,596,298,0,4329,4330,5,402,0,0,4330,4334, - 1,0,0,0,4331,4332,5,395,0,0,4332,4334,3,654,327,0,4333,4327,1,0, - 0,0,4333,4331,1,0,0,0,4334,4337,1,0,0,0,4335,4333,1,0,0,0,4335,4336, - 1,0,0,0,4336,601,1,0,0,0,4337,4335,1,0,0,0,4338,4343,3,600,300,0, - 4339,4340,5,423,0,0,4340,4342,3,600,300,0,4341,4339,1,0,0,0,4342, - 4345,1,0,0,0,4343,4341,1,0,0,0,4343,4344,1,0,0,0,4344,603,1,0,0, - 0,4345,4343,1,0,0,0,4346,4351,3,602,301,0,4347,4348,7,37,0,0,4348, - 4350,3,602,301,0,4349,4347,1,0,0,0,4350,4353,1,0,0,0,4351,4349,1, - 0,0,0,4351,4352,1,0,0,0,4352,605,1,0,0,0,4353,4351,1,0,0,0,4354, - 4359,3,604,302,0,4355,4356,7,38,0,0,4356,4358,3,604,302,0,4357,4355, - 1,0,0,0,4358,4361,1,0,0,0,4359,4357,1,0,0,0,4359,4360,1,0,0,0,4360, - 607,1,0,0,0,4361,4359,1,0,0,0,4362,4367,3,606,303,0,4363,4364,5, - 422,0,0,4364,4366,3,606,303,0,4365,4363,1,0,0,0,4366,4369,1,0,0, - 0,4367,4365,1,0,0,0,4367,4368,1,0,0,0,4368,609,1,0,0,0,4369,4367, - 1,0,0,0,4370,4375,3,608,304,0,4371,4372,5,419,0,0,4372,4374,3,608, - 304,0,4373,4371,1,0,0,0,4374,4377,1,0,0,0,4375,4373,1,0,0,0,4375, - 4376,1,0,0,0,4376,611,1,0,0,0,4377,4375,1,0,0,0,4378,4383,3,610, - 305,0,4379,4380,5,421,0,0,4380,4382,3,610,305,0,4381,4379,1,0,0, - 0,4382,4385,1,0,0,0,4383,4381,1,0,0,0,4383,4384,1,0,0,0,4384,613, - 1,0,0,0,4385,4383,1,0,0,0,4386,4387,7,39,0,0,4387,615,1,0,0,0,4388, - 4389,5,399,0,0,4389,4390,3,380,190,0,4390,4391,5,400,0,0,4391,617, - 1,0,0,0,4392,4394,3,612,306,0,4393,4395,3,620,310,0,4394,4393,1, - 0,0,0,4394,4395,1,0,0,0,4395,4399,1,0,0,0,4396,4397,5,117,0,0,4397, - 4399,3,616,308,0,4398,4392,1,0,0,0,4398,4396,1,0,0,0,4399,619,1, - 0,0,0,4400,4401,3,614,307,0,4401,4402,3,612,306,0,4402,4407,1,0, - 0,0,4403,4407,3,622,311,0,4404,4405,5,216,0,0,4405,4407,3,626,313, - 0,4406,4400,1,0,0,0,4406,4403,1,0,0,0,4406,4404,1,0,0,0,4407,621, - 1,0,0,0,4408,4409,5,154,0,0,4409,4423,3,624,312,0,4410,4411,5,25, - 0,0,4411,4412,3,612,306,0,4412,4413,5,11,0,0,4413,4414,3,612,306, - 0,4414,4423,1,0,0,0,4415,4416,5,184,0,0,4416,4417,7,40,0,0,4417, - 4423,3,552,276,0,4418,4419,3,650,325,0,4419,4420,7,41,0,0,4420,4421, - 3,616,308,0,4421,4423,1,0,0,0,4422,4408,1,0,0,0,4422,4410,1,0,0, - 0,4422,4415,1,0,0,0,4422,4418,1,0,0,0,4423,623,1,0,0,0,4424,4427, - 3,616,308,0,4425,4427,3,552,276,0,4426,4424,1,0,0,0,4426,4425,1, - 0,0,0,4427,625,1,0,0,0,4428,4429,7,42,0,0,4429,4432,3,612,306,0, - 4430,4432,3,622,311,0,4431,4428,1,0,0,0,4431,4430,1,0,0,0,4432,627, - 1,0,0,0,4433,4434,5,167,0,0,4434,4435,5,96,0,0,4435,4436,5,139,0, - 0,4436,629,1,0,0,0,4437,4445,5,405,0,0,4438,4445,5,406,0,0,4439, - 4445,5,407,0,0,4440,4441,5,167,0,0,4441,4442,5,216,0,0,4442,4443, - 5,96,0,0,4443,4445,5,139,0,0,4444,4437,1,0,0,0,4444,4438,1,0,0,0, - 4444,4439,1,0,0,0,4444,4440,1,0,0,0,4445,631,1,0,0,0,4446,4455,3, - 618,309,0,4447,4448,3,630,315,0,4448,4449,3,618,309,0,4449,4454, - 1,0,0,0,4450,4451,3,628,314,0,4451,4452,3,618,309,0,4452,4454,1, - 0,0,0,4453,4447,1,0,0,0,4453,4450,1,0,0,0,4454,4457,1,0,0,0,4455, - 4453,1,0,0,0,4455,4456,1,0,0,0,4456,633,1,0,0,0,4457,4455,1,0,0, - 0,4458,4465,5,219,0,0,4459,4465,5,350,0,0,4460,4465,5,125,0,0,4461, - 4465,5,360,0,0,4462,4463,5,216,0,0,4463,4465,7,43,0,0,4464,4458, - 1,0,0,0,4464,4459,1,0,0,0,4464,4460,1,0,0,0,4464,4461,1,0,0,0,4464, - 4462,1,0,0,0,4465,635,1,0,0,0,4466,4468,5,216,0,0,4467,4466,1,0, - 0,0,4468,4471,1,0,0,0,4469,4467,1,0,0,0,4469,4470,1,0,0,0,4470,4472, - 1,0,0,0,4471,4469,1,0,0,0,4472,4475,3,632,316,0,4473,4474,5,167, - 0,0,4474,4476,3,634,317,0,4475,4473,1,0,0,0,4475,4476,1,0,0,0,4476, - 637,1,0,0,0,4477,4482,3,636,318,0,4478,4479,5,11,0,0,4479,4481,3, - 636,318,0,4480,4478,1,0,0,0,4481,4484,1,0,0,0,4482,4480,1,0,0,0, - 4482,4483,1,0,0,0,4483,639,1,0,0,0,4484,4482,1,0,0,0,4485,4487,3, - 482,241,0,4486,4488,3,642,321,0,4487,4486,1,0,0,0,4487,4488,1,0, - 0,0,4488,641,1,0,0,0,4489,4490,5,237,0,0,4490,4491,5,399,0,0,4491, - 4496,3,644,322,0,4492,4493,5,397,0,0,4493,4495,3,644,322,0,4494, - 4492,1,0,0,0,4495,4498,1,0,0,0,4496,4494,1,0,0,0,4496,4497,1,0,0, - 0,4497,4499,1,0,0,0,4498,4496,1,0,0,0,4499,4500,5,400,0,0,4500,643, - 1,0,0,0,4501,4504,3,654,327,0,4502,4503,5,405,0,0,4503,4505,3,588, - 294,0,4504,4502,1,0,0,0,4504,4505,1,0,0,0,4505,645,1,0,0,0,4506, - 4507,5,399,0,0,4507,4512,3,648,324,0,4508,4509,5,397,0,0,4509,4511, - 3,648,324,0,4510,4508,1,0,0,0,4511,4514,1,0,0,0,4512,4510,1,0,0, - 0,4512,4513,1,0,0,0,4513,4515,1,0,0,0,4514,4512,1,0,0,0,4515,4516, - 5,400,0,0,4516,647,1,0,0,0,4517,4520,3,654,327,0,4518,4521,5,184, - 0,0,4519,4521,3,650,325,0,4520,4518,1,0,0,0,4520,4519,1,0,0,0,4521, - 4522,1,0,0,0,4522,4523,3,588,294,0,4523,649,1,0,0,0,4524,4525,7, - 44,0,0,4525,651,1,0,0,0,4526,4527,7,45,0,0,4527,653,1,0,0,0,4528, - 4531,5,432,0,0,4529,4531,3,660,330,0,4530,4528,1,0,0,0,4530,4529, - 1,0,0,0,4531,655,1,0,0,0,4532,4535,3,654,327,0,4533,4534,5,395,0, - 0,4534,4536,3,654,327,0,4535,4533,1,0,0,0,4535,4536,1,0,0,0,4536, - 657,1,0,0,0,4537,4538,3,654,327,0,4538,659,1,0,0,0,4539,4540,7,46, - 0,0,4540,661,1,0,0,0,4541,4542,7,47,0,0,4542,663,1,0,0,0,4543,4595, - 3,654,327,0,4544,4595,5,299,0,0,4545,4595,5,171,0,0,4546,4595,5, - 237,0,0,4547,4595,5,198,0,0,4548,4595,5,268,0,0,4549,4595,5,369, - 0,0,4550,4595,5,241,0,0,4551,4595,5,165,0,0,4552,4595,5,292,0,0, - 4553,4595,5,356,0,0,4554,4595,5,144,0,0,4555,4595,5,203,0,0,4556, - 4595,5,219,0,0,4557,4595,5,126,0,0,4558,4595,5,188,0,0,4559,4595, - 5,101,0,0,4560,4595,5,329,0,0,4561,4595,5,224,0,0,4562,4595,5,291, - 0,0,4563,4595,5,145,0,0,4564,4595,5,304,0,0,4565,4595,5,135,0,0, - 4566,4595,5,318,0,0,4567,4595,5,161,0,0,4568,4595,5,54,0,0,4569, - 4595,5,166,0,0,4570,4595,5,358,0,0,4571,4595,5,45,0,0,4572,4595, - 5,347,0,0,4573,4595,5,96,0,0,4574,4595,5,154,0,0,4575,4595,5,269, - 0,0,4576,4595,5,337,0,0,4577,4595,5,225,0,0,4578,4595,5,108,0,0, - 4579,4595,5,141,0,0,4580,4595,5,365,0,0,4581,4595,5,21,0,0,4582, - 4595,5,78,0,0,4583,4595,5,374,0,0,4584,4595,5,336,0,0,4585,4595, - 5,167,0,0,4586,4595,5,134,0,0,4587,4595,5,216,0,0,4588,4595,5,27, - 0,0,4589,4595,5,370,0,0,4590,4595,5,263,0,0,4591,4595,5,25,0,0,4592, - 4595,5,62,0,0,4593,4595,5,17,0,0,4594,4543,1,0,0,0,4594,4544,1,0, - 0,0,4594,4545,1,0,0,0,4594,4546,1,0,0,0,4594,4547,1,0,0,0,4594,4548, - 1,0,0,0,4594,4549,1,0,0,0,4594,4550,1,0,0,0,4594,4551,1,0,0,0,4594, - 4552,1,0,0,0,4594,4553,1,0,0,0,4594,4554,1,0,0,0,4594,4555,1,0,0, - 0,4594,4556,1,0,0,0,4594,4557,1,0,0,0,4594,4558,1,0,0,0,4594,4559, - 1,0,0,0,4594,4560,1,0,0,0,4594,4561,1,0,0,0,4594,4562,1,0,0,0,4594, - 4563,1,0,0,0,4594,4564,1,0,0,0,4594,4565,1,0,0,0,4594,4566,1,0,0, - 0,4594,4567,1,0,0,0,4594,4568,1,0,0,0,4594,4569,1,0,0,0,4594,4570, - 1,0,0,0,4594,4571,1,0,0,0,4594,4572,1,0,0,0,4594,4573,1,0,0,0,4594, - 4574,1,0,0,0,4594,4575,1,0,0,0,4594,4576,1,0,0,0,4594,4577,1,0,0, - 0,4594,4578,1,0,0,0,4594,4579,1,0,0,0,4594,4580,1,0,0,0,4594,4581, - 1,0,0,0,4594,4582,1,0,0,0,4594,4583,1,0,0,0,4594,4584,1,0,0,0,4594, - 4585,1,0,0,0,4594,4586,1,0,0,0,4594,4587,1,0,0,0,4594,4588,1,0,0, - 0,4594,4589,1,0,0,0,4594,4590,1,0,0,0,4594,4591,1,0,0,0,4594,4592, - 1,0,0,0,4594,4593,1,0,0,0,4595,665,1,0,0,0,4596,4597,5,58,0,0,4597, - 4598,5,280,0,0,4598,4600,5,243,0,0,4599,4601,3,32,16,0,4600,4599, - 1,0,0,0,4600,4601,1,0,0,0,4601,4611,1,0,0,0,4602,4603,3,654,327, - 0,4603,4604,5,184,0,0,4604,4605,3,654,327,0,4605,4612,1,0,0,0,4606, - 4609,3,654,327,0,4607,4608,5,387,0,0,4608,4610,3,672,336,0,4609, - 4607,1,0,0,0,4609,4610,1,0,0,0,4610,4612,1,0,0,0,4611,4602,1,0,0, - 0,4611,4606,1,0,0,0,4612,4762,1,0,0,0,4613,4614,5,9,0,0,4614,4615, - 5,280,0,0,4615,4616,5,243,0,0,4616,4641,3,654,327,0,4617,4642,5, - 373,0,0,4618,4642,3,680,340,0,4619,4620,5,304,0,0,4620,4642,3,672, - 336,0,4621,4622,5,363,0,0,4622,4627,3,674,337,0,4623,4624,5,397, - 0,0,4624,4626,3,674,337,0,4625,4623,1,0,0,0,4626,4629,1,0,0,0,4627, - 4625,1,0,0,0,4627,4628,1,0,0,0,4628,4642,1,0,0,0,4629,4627,1,0,0, - 0,4630,4631,5,274,0,0,4631,4632,5,341,0,0,4632,4642,3,654,327,0, - 4633,4635,3,676,338,0,4634,4636,3,678,339,0,4635,4634,1,0,0,0,4635, - 4636,1,0,0,0,4636,4642,1,0,0,0,4637,4639,3,678,339,0,4638,4640,3, - 676,338,0,4639,4638,1,0,0,0,4639,4640,1,0,0,0,4640,4642,1,0,0,0, - 4641,4617,1,0,0,0,4641,4618,1,0,0,0,4641,4619,1,0,0,0,4641,4621, - 1,0,0,0,4641,4630,1,0,0,0,4641,4633,1,0,0,0,4641,4637,1,0,0,0,4642, - 4762,1,0,0,0,4643,4644,5,101,0,0,4644,4645,5,280,0,0,4645,4647,5, - 243,0,0,4646,4648,3,30,15,0,4647,4646,1,0,0,0,4647,4648,1,0,0,0, - 4648,4649,1,0,0,0,4649,4762,3,654,327,0,4650,4653,3,678,339,0,4651, - 4653,3,680,340,0,4652,4650,1,0,0,0,4652,4651,1,0,0,0,4653,4654,1, - 0,0,0,4654,4655,5,390,0,0,4655,4656,5,197,0,0,4656,4762,1,0,0,0, - 4657,4669,5,278,0,0,4658,4659,5,3,0,0,4659,4660,5,280,0,0,4660,4661, - 5,243,0,0,4661,4662,5,387,0,0,4662,4670,3,654,327,0,4663,4664,5, - 280,0,0,4664,4665,5,243,0,0,4665,4666,3,654,327,0,4666,4667,5,387, - 0,0,4667,4668,3,654,327,0,4668,4670,1,0,0,0,4669,4658,1,0,0,0,4669, - 4663,1,0,0,0,4670,4762,1,0,0,0,4671,4672,5,58,0,0,4672,4673,5,348, - 0,0,4673,4674,3,654,327,0,4674,4675,5,395,0,0,4675,4676,3,654,327, - 0,4676,4677,5,383,0,0,4677,4678,3,704,352,0,4678,4679,5,99,0,0,4679, - 4680,3,706,353,0,4680,4762,1,0,0,0,4681,4682,5,9,0,0,4682,4683,5, - 348,0,0,4683,4684,3,654,327,0,4684,4685,5,395,0,0,4685,4702,3,654, - 327,0,4686,4687,5,383,0,0,4687,4688,3,704,352,0,4688,4689,5,99,0, - 0,4689,4690,3,706,353,0,4690,4703,1,0,0,0,4691,4692,5,4,0,0,4692, - 4696,5,341,0,0,4693,4694,5,101,0,0,4694,4696,5,139,0,0,4695,4691, - 1,0,0,0,4695,4693,1,0,0,0,4696,4700,1,0,0,0,4697,4698,5,246,0,0, - 4698,4701,3,700,350,0,4699,4701,5,362,0,0,4700,4697,1,0,0,0,4700, - 4699,1,0,0,0,4701,4703,1,0,0,0,4702,4686,1,0,0,0,4702,4695,1,0,0, - 0,4703,4762,1,0,0,0,4704,4705,5,101,0,0,4705,4706,5,348,0,0,4706, - 4707,3,654,327,0,4707,4708,5,395,0,0,4708,4709,3,654,327,0,4709, - 4762,1,0,0,0,4710,4711,5,58,0,0,4711,4712,5,246,0,0,4712,4713,3, - 654,327,0,4713,4714,5,395,0,0,4714,4715,3,700,350,0,4715,4716,5, - 387,0,0,4716,4717,3,710,355,0,4717,4762,1,0,0,0,4718,4719,5,9,0, - 0,4719,4720,5,246,0,0,4720,4721,3,654,327,0,4721,4722,5,395,0,0, - 4722,4730,3,700,350,0,4723,4724,5,304,0,0,4724,4731,3,710,355,0, - 4725,4726,5,363,0,0,4726,4731,5,294,0,0,4727,4728,7,48,0,0,4728, - 4729,5,348,0,0,4729,4731,3,654,327,0,4730,4723,1,0,0,0,4730,4725, - 1,0,0,0,4730,4727,1,0,0,0,4731,4762,1,0,0,0,4732,4733,5,101,0,0, - 4733,4734,5,246,0,0,4734,4735,3,654,327,0,4735,4736,5,395,0,0,4736, - 4737,3,700,350,0,4737,4762,1,0,0,0,4738,4739,7,49,0,0,4739,4740, - 3,668,334,0,4740,4741,5,200,0,0,4741,4742,5,426,0,0,4742,4743,5, - 154,0,0,4743,4747,3,654,327,0,4744,4745,5,341,0,0,4745,4748,3,700, - 350,0,4746,4748,5,362,0,0,4747,4744,1,0,0,0,4747,4746,1,0,0,0,4748, - 4752,1,0,0,0,4749,4750,5,387,0,0,4750,4751,5,229,0,0,4751,4753,5, - 431,0,0,4752,4749,1,0,0,0,4752,4753,1,0,0,0,4753,4762,1,0,0,0,4754, - 4755,5,101,0,0,4755,4756,3,668,334,0,4756,4757,5,200,0,0,4757,4758, - 5,426,0,0,4758,4759,5,154,0,0,4759,4760,3,654,327,0,4760,4762,1, - 0,0,0,4761,4596,1,0,0,0,4761,4613,1,0,0,0,4761,4643,1,0,0,0,4761, - 4652,1,0,0,0,4761,4657,1,0,0,0,4761,4671,1,0,0,0,4761,4681,1,0,0, - 0,4761,4704,1,0,0,0,4761,4710,1,0,0,0,4761,4718,1,0,0,0,4761,4732, - 1,0,0,0,4761,4738,1,0,0,0,4761,4754,1,0,0,0,4762,667,1,0,0,0,4763, - 4764,7,50,0,0,4764,669,1,0,0,0,4765,4766,5,259,0,0,4766,4767,5,405, - 0,0,4767,4773,5,431,0,0,4768,4769,5,83,0,0,4769,4770,5,246,0,0,4770, - 4771,5,405,0,0,4771,4773,3,700,350,0,4772,4765,1,0,0,0,4772,4768, - 1,0,0,0,4773,671,1,0,0,0,4774,4779,3,670,335,0,4775,4776,5,397,0, - 0,4776,4778,3,670,335,0,4777,4775,1,0,0,0,4778,4781,1,0,0,0,4779, - 4777,1,0,0,0,4779,4780,1,0,0,0,4780,673,1,0,0,0,4781,4779,1,0,0, - 0,4782,4786,5,259,0,0,4783,4784,5,83,0,0,4784,4786,5,246,0,0,4785, - 4782,1,0,0,0,4785,4783,1,0,0,0,4786,675,1,0,0,0,4787,4790,5,2,0, - 0,4788,4789,5,387,0,0,4789,4791,5,278,0,0,4790,4788,1,0,0,0,4790, - 4791,1,0,0,0,4791,677,1,0,0,0,4792,4793,7,51,0,0,4793,679,1,0,0, - 0,4794,4795,7,52,0,0,4795,681,1,0,0,0,4796,4797,7,53,0,0,4797,683, - 1,0,0,0,4798,4799,7,54,0,0,4799,685,1,0,0,0,4800,4801,7,55,0,0,4801, - 687,1,0,0,0,4802,4803,7,56,0,0,4803,689,1,0,0,0,4804,4805,7,57,0, - 0,4805,691,1,0,0,0,4806,4807,7,58,0,0,4807,693,1,0,0,0,4808,4809, - 7,59,0,0,4809,695,1,0,0,0,4810,4811,7,60,0,0,4811,697,1,0,0,0,4812, - 4813,1,0,0,0,4813,699,1,0,0,0,4814,4819,3,654,327,0,4815,4816,5, - 395,0,0,4816,4818,3,654,327,0,4817,4815,1,0,0,0,4818,4821,1,0,0, - 0,4819,4817,1,0,0,0,4819,4820,1,0,0,0,4820,701,1,0,0,0,4821,4819, - 1,0,0,0,4822,4827,3,654,327,0,4823,4824,5,395,0,0,4824,4826,3,654, - 327,0,4825,4823,1,0,0,0,4826,4829,1,0,0,0,4827,4825,1,0,0,0,4827, - 4828,1,0,0,0,4828,4840,1,0,0,0,4829,4827,1,0,0,0,4830,4831,4,351, - 3,0,4831,4836,3,654,327,0,4832,4833,5,395,0,0,4833,4835,3,698,349, - 0,4834,4832,1,0,0,0,4835,4838,1,0,0,0,4836,4834,1,0,0,0,4836,4837, - 1,0,0,0,4837,4840,1,0,0,0,4838,4836,1,0,0,0,4839,4822,1,0,0,0,4839, - 4830,1,0,0,0,4840,703,1,0,0,0,4841,4842,3,654,327,0,4842,4843,5, - 411,0,0,4843,4844,7,27,0,0,4844,705,1,0,0,0,4845,4850,5,176,0,0, - 4846,4847,5,211,0,0,4847,4848,5,341,0,0,4848,4850,3,700,350,0,4849, - 4845,1,0,0,0,4849,4846,1,0,0,0,4850,707,1,0,0,0,4851,4852,5,8,0, - 0,4852,4853,5,405,0,0,4853,4864,5,431,0,0,4854,4855,5,259,0,0,4855, - 4856,5,405,0,0,4856,4864,5,431,0,0,4857,4858,5,294,0,0,4858,4859, - 5,405,0,0,4859,4864,5,426,0,0,4860,4861,5,240,0,0,4861,4862,5,405, - 0,0,4862,4864,3,700,350,0,4863,4851,1,0,0,0,4863,4854,1,0,0,0,4863, - 4857,1,0,0,0,4863,4860,1,0,0,0,4864,709,1,0,0,0,4865,4870,3,708, - 354,0,4866,4867,5,397,0,0,4867,4869,3,708,354,0,4868,4866,1,0,0, - 0,4869,4872,1,0,0,0,4870,4868,1,0,0,0,4870,4871,1,0,0,0,4871,711, - 1,0,0,0,4872,4870,1,0,0,0,629,715,722,725,731,737,744,754,757,761, - 776,783,789,794,799,802,826,833,836,841,846,852,856,869,873,877, - 882,889,893,898,905,909,914,962,969,974,997,1001,1005,1008,1012, - 1017,1023,1027,1033,1035,1046,1050,1057,1065,1068,1073,1077,1080, - 1090,1098,1102,1105,1109,1113,1116,1121,1127,1132,1137,1141,1152, - 1154,1158,1168,1172,1178,1181,1188,1193,1201,1206,1210,1218,1223, - 1229,1235,1238,1241,1244,1253,1261,1266,1274,1281,1284,1287,1289, - 1300,1302,1305,1308,1311,1314,1317,1319,1331,1337,1345,1347,1357, - 1390,1395,1399,1403,1410,1417,1423,1427,1430,1437,1460,1465,1469, - 1477,1486,1493,1499,1506,1509,1515,1522,1530,1539,1548,1555,1575, - 1582,1584,1591,1601,1609,1613,1617,1630,1639,1655,1659,1664,1669, - 1672,1675,1678,1681,1684,1689,1698,1702,1709,1712,1715,1718,1730, - 1736,1762,1770,1774,1777,1780,1783,1786,1789,1792,1795,1804,1814, - 1817,1837,1843,1849,1852,1854,1861,1868,1881,1886,1895,1903,1911, - 1924,1937,1953,1957,1972,1978,1981,1984,1987,1990,1994,2009,2012, - 2023,2037,2071,2079,2084,2092,2097,2102,2109,2117,2125,2133,2139, - 2146,2156,2160,2168,2177,2180,2184,2191,2197,2201,2207,2211,2223, - 2232,2243,2247,2254,2266,2276,2279,2286,2292,2296,2299,2302,2308, - 2312,2316,2321,2325,2329,2333,2341,2345,2349,2353,2357,2365,2369, - 2373,2381,2386,2391,2395,2399,2406,2415,2423,2435,2453,2456,2462, - 2488,2491,2497,2505,2513,2526,2533,2536,2539,2542,2545,2548,2551, - 2554,2557,2560,2563,2568,2571,2574,2577,2580,2583,2586,2589,2592, - 2595,2598,2600,2606,2610,2613,2616,2619,2622,2625,2632,2636,2639, - 2642,2645,2648,2651,2658,2661,2669,2673,2680,2682,2685,2690,2693, - 2697,2702,2708,2716,2724,2734,2737,2741,2745,2750,2757,2761,2763, - 2767,2774,2779,2792,2800,2819,2829,2842,2852,2856,2860,2866,2873, - 2880,2889,2896,2916,2919,2933,2948,2952,2972,2984,2990,2993,2996, - 3002,3008,3015,3023,3029,3033,3038,3041,3045,3052,3057,3062,3065, - 3067,3075,3083,3087,3091,3095,3112,3129,3136,3145,3150,3153,3156, - 3160,3175,3189,3192,3203,3207,3210,3213,3217,3222,3225,3228,3231, - 3234,3237,3243,3246,3249,3252,3255,3258,3261,3264,3267,3270,3274, - 3276,3282,3287,3290,3293,3296,3299,3305,3308,3311,3314,3317,3320, - 3323,3326,3329,3332,3336,3338,3340,3345,3350,3354,3358,3363,3368, - 3377,3387,3395,3407,3410,3416,3423,3430,3437,3444,3454,3456,3460, - 3464,3471,3476,3480,3484,3487,3490,3501,3505,3507,3510,3523,3526, - 3529,3541,3544,3551,3560,3565,3567,3569,3586,3589,3597,3600,3604, - 3607,3610,3613,3616,3628,3636,3643,3646,3653,3656,3661,3668,3676, - 3682,3687,3691,3696,3700,3707,3721,3724,3731,3739,3749,3752,3761, - 3770,3773,3779,3782,3787,3790,3803,3809,3811,3821,3827,3830,3840, - 3845,3849,3865,3871,3873,3880,3887,3901,3907,3910,3913,3916,3925, - 3932,3938,3947,3951,3959,3969,3979,3984,3988,3994,3999,4004,4011, - 4015,4018,4023,4026,4030,4035,4046,4048,4057,4080,4090,4093,4100, - 4103,4113,4120,4123,4125,4136,4146,4148,4157,4162,4171,4184,4188, - 4200,4204,4213,4232,4250,4262,4277,4281,4297,4304,4318,4323,4333, - 4335,4343,4351,4359,4367,4375,4383,4394,4398,4406,4422,4426,4431, - 4444,4453,4455,4464,4469,4475,4482,4487,4496,4504,4512,4520,4530, - 4535,4594,4600,4609,4611,4627,4635,4639,4641,4647,4652,4669,4695, - 4700,4702,4730,4747,4752,4761,4772,4779,4785,4790,4819,4827,4836, - 4839,4849,4863,4870 + 704,706,708,710,712,714,0,61,2,0,57,57,172,172,4,0,91,91,121,121, + 226,226,325,325,2,0,50,50,346,346,2,0,34,34,282,282,1,0,89,90,2, + 0,139,139,154,154,2,0,67,67,295,295,2,0,68,68,296,296,1,0,155,156, + 2,0,114,114,307,307,11,0,7,7,9,9,58,58,86,86,101,101,155,155,161, + 161,190,190,299,299,309,309,365,365,3,0,4,4,101,101,326,326,3,0, + 15,15,128,128,170,170,1,0,141,142,2,0,30,30,351,351,2,0,217,217, + 373,373,2,0,214,214,272,272,2,0,18,18,89,89,2,0,130,130,177,177, + 2,0,39,39,376,376,4,0,112,112,164,164,205,205,356,356,2,0,7,7,96, + 96,2,0,125,125,350,350,2,0,225,225,391,391,2,0,42,42,315,315,2,0, + 189,189,196,196,2,0,426,426,431,431,2,0,140,140,285,285,3,0,12,12, + 231,231,300,300,2,0,241,241,292,292,2,0,198,198,268,268,2,0,260, + 260,292,292,2,0,354,354,431,431,2,0,133,133,247,247,2,0,152,152, + 281,281,3,0,413,414,418,418,420,420,2,0,412,412,415,417,1,0,413, + 414,4,0,184,184,270,270,286,286,408,411,2,0,7,7,13,13,3,0,7,7,13, + 13,313,313,3,0,184,184,270,270,286,286,4,0,125,125,219,219,350,350, + 360,360,2,0,405,405,407,411,24,0,11,11,16,16,25,28,35,35,100,100, + 131,132,151,151,154,154,162,163,184,184,198,198,216,216,228,228, + 264,264,270,270,286,286,311,311,323,324,340,340,357,357,383,383, + 405,417,419,421,423,423,85,0,1,6,8,8,10,10,15,15,18,20,22,24,30, + 31,33,34,37,38,40,44,46,47,49,50,52,53,56,57,59,59,66,66,68,68,72, + 77,79,79,83,85,87,89,91,95,97,99,103,104,106,107,109,111,114,116, + 118,121,127,130,137,138,142,142,147,150,152,152,155,156,158,160, + 168,170,172,177,182,183,185,187,189,193,195,197,199,202,204,204, + 206,209,211,212,214,215,217,218,220,220,222,223,226,227,232,233, + 235,236,238,240,243,246,252,252,254,255,257,259,261,262,265,267, + 271,282,284,284,287,288,293,298,300,303,305,310,312,312,314,317, + 319,325,327,328,330,330,332,334,339,340,342,342,344,346,349,349, + 352,353,355,355,357,357,360,364,366,368,371,373,375,375,377,382, + 385,385,388,394,13,0,16,16,26,28,63,64,71,71,100,100,131,131,145, + 145,151,151,162,163,198,198,264,264,311,311,337,337,1,0,395,396, + 2,0,4,4,101,101,2,0,9,9,58,58,3,0,14,14,144,144,369,369,1,0,106, + 107,1,0,94,95,1,0,392,393,1,0,208,209,1,0,381,382,1,0,73,74,1,0, + 148,149,1,0,206,207,1,0,297,298,1,0,80,82,5478,0,719,1,0,0,0,2,726, + 1,0,0,0,4,731,1,0,0,0,6,765,1,0,0,0,8,767,1,0,0,0,10,833,1,0,0,0, + 12,835,1,0,0,0,14,851,1,0,0,0,16,860,1,0,0,0,18,868,1,0,0,0,20,881, + 1,0,0,0,22,892,1,0,0,0,24,897,1,0,0,0,26,908,1,0,0,0,28,971,1,0, + 0,0,30,973,1,0,0,0,32,976,1,0,0,0,34,980,1,0,0,0,36,982,1,0,0,0, + 38,985,1,0,0,0,40,988,1,0,0,0,42,1032,1,0,0,0,44,1034,1,0,0,0,46, + 1037,1,0,0,0,48,1040,1,0,0,0,50,1049,1,0,0,0,52,1052,1,0,0,0,54, + 1067,1,0,0,0,56,1079,1,0,0,0,58,1084,1,0,0,0,60,1104,1,0,0,0,62, + 1108,1,0,0,0,64,1115,1,0,0,0,66,1140,1,0,0,0,68,1157,1,0,0,0,70, + 1159,1,0,0,0,72,1344,1,0,0,0,74,1354,1,0,0,0,76,1356,1,0,0,0,78, + 1361,1,0,0,0,80,1366,1,0,0,0,82,1368,1,0,0,0,84,1372,1,0,0,0,86, + 1376,1,0,0,0,88,1380,1,0,0,0,90,1384,1,0,0,0,92,1394,1,0,0,0,94, + 1405,1,0,0,0,96,1422,1,0,0,0,98,1440,1,0,0,0,100,1445,1,0,0,0,102, + 1448,1,0,0,0,104,1452,1,0,0,0,106,1459,1,0,0,0,108,1468,1,0,0,0, + 110,1474,1,0,0,0,112,1476,1,0,0,0,114,1490,1,0,0,0,116,1512,1,0, + 0,0,118,1514,1,0,0,0,120,1522,1,0,0,0,122,1529,1,0,0,0,124,1531, + 1,0,0,0,126,1545,1,0,0,0,128,1552,1,0,0,0,130,1554,1,0,0,0,132,1558, + 1,0,0,0,134,1562,1,0,0,0,136,1566,1,0,0,0,138,1570,1,0,0,0,140,1583, + 1,0,0,0,142,1591,1,0,0,0,144,1594,1,0,0,0,146,1596,1,0,0,0,148,1608, + 1,0,0,0,150,1618,1,0,0,0,152,1621,1,0,0,0,154,1632,1,0,0,0,156,1640, + 1,0,0,0,158,1683,1,0,0,0,160,1692,1,0,0,0,162,1720,1,0,0,0,164,1733, + 1,0,0,0,166,1735,1,0,0,0,168,1741,1,0,0,0,170,1744,1,0,0,0,172,1750, + 1,0,0,0,174,1756,1,0,0,0,176,1763,1,0,0,0,178,1797,1,0,0,0,180,1805, + 1,0,0,0,182,1818,1,0,0,0,184,1823,1,0,0,0,186,1834,1,0,0,0,188,1851, + 1,0,0,0,190,1853,1,0,0,0,192,1858,1,0,0,0,194,1865,1,0,0,0,196,1867, + 1,0,0,0,198,1870,1,0,0,0,200,1873,1,0,0,0,202,1887,1,0,0,0,204,1895, + 1,0,0,0,206,1921,1,0,0,0,208,1923,1,0,0,0,210,1940,1,0,0,0,212,1954, + 1,0,0,0,214,1956,1,0,0,0,216,1959,1,0,0,0,218,1962,1,0,0,0,220,1971, + 1,0,0,0,222,1991,1,0,0,0,224,1993,1,0,0,0,226,1996,1,0,0,0,228,2009, + 1,0,0,0,230,2011,1,0,0,0,232,2015,1,0,0,0,234,2023,1,0,0,0,236,2027, + 1,0,0,0,238,2036,1,0,0,0,240,2042,1,0,0,0,242,2048,1,0,0,0,244,2053, + 1,0,0,0,246,2099,1,0,0,0,248,2101,1,0,0,0,250,2109,1,0,0,0,252,2117, + 1,0,0,0,254,2125,1,0,0,0,256,2136,1,0,0,0,258,2138,1,0,0,0,260,2143, + 1,0,0,0,262,2145,1,0,0,0,264,2147,1,0,0,0,266,2160,1,0,0,0,268,2168, + 1,0,0,0,270,2177,1,0,0,0,272,2181,1,0,0,0,274,2183,1,0,0,0,276,2188, + 1,0,0,0,278,2190,1,0,0,0,280,2194,1,0,0,0,282,2200,1,0,0,0,284,2208, + 1,0,0,0,286,2210,1,0,0,0,288,2213,1,0,0,0,290,2220,1,0,0,0,292,2231, + 1,0,0,0,294,2244,1,0,0,0,296,2246,1,0,0,0,298,2254,1,0,0,0,300,2258, + 1,0,0,0,302,2266,1,0,0,0,304,2268,1,0,0,0,306,2271,1,0,0,0,308,2278, + 1,0,0,0,310,2286,1,0,0,0,312,2293,1,0,0,0,314,2301,1,0,0,0,316,2309, + 1,0,0,0,318,2313,1,0,0,0,320,2315,1,0,0,0,322,2326,1,0,0,0,324,2330, + 1,0,0,0,326,2342,1,0,0,0,328,2350,1,0,0,0,330,2354,1,0,0,0,332,2366, + 1,0,0,0,334,2378,1,0,0,0,336,2383,1,0,0,0,338,2388,1,0,0,0,340,2390, + 1,0,0,0,342,2394,1,0,0,0,344,2398,1,0,0,0,346,2405,1,0,0,0,348,2407, + 1,0,0,0,350,2420,1,0,0,0,352,2459,1,0,0,0,354,2461,1,0,0,0,356,2466, + 1,0,0,0,358,2471,1,0,0,0,360,2478,1,0,0,0,362,2483,1,0,0,0,364,2488, + 1,0,0,0,366,2494,1,0,0,0,368,2496,1,0,0,0,370,2505,1,0,0,0,372,2517, + 1,0,0,0,374,2597,1,0,0,0,376,2603,1,0,0,0,378,2629,1,0,0,0,380,2631, + 1,0,0,0,382,2653,1,0,0,0,384,2658,1,0,0,0,386,2662,1,0,0,0,388,2694, + 1,0,0,0,390,2696,1,0,0,0,392,2707,1,0,0,0,394,2713,1,0,0,0,396,2715, + 1,0,0,0,398,2747,1,0,0,0,400,2754,1,0,0,0,402,2760,1,0,0,0,404,2766, + 1,0,0,0,406,2781,1,0,0,0,408,2791,1,0,0,0,410,2799,1,0,0,0,412,2802, + 1,0,0,0,414,2805,1,0,0,0,416,2808,1,0,0,0,418,2930,1,0,0,0,420,3064, + 1,0,0,0,422,3092,1,0,0,0,424,3109,1,0,0,0,426,3126,1,0,0,0,428,3128, + 1,0,0,0,430,3131,1,0,0,0,432,3157,1,0,0,0,434,3162,1,0,0,0,436,3189, + 1,0,0,0,438,3200,1,0,0,0,440,3337,1,0,0,0,442,3339,1,0,0,0,444,3362, + 1,0,0,0,446,3374,1,0,0,0,448,3379,1,0,0,0,450,3387,1,0,0,0,452,3395, + 1,0,0,0,454,3407,1,0,0,0,456,3441,1,0,0,0,458,3443,1,0,0,0,460,3468, + 1,0,0,0,462,3477,1,0,0,0,464,3507,1,0,0,0,466,3566,1,0,0,0,468,3568, + 1,0,0,0,470,3597,1,0,0,0,472,3599,1,0,0,0,474,3615,1,0,0,0,476,3627, + 1,0,0,0,478,3629,1,0,0,0,480,3633,1,0,0,0,482,3643,1,0,0,0,484,3653, + 1,0,0,0,486,3658,1,0,0,0,488,3665,1,0,0,0,490,3669,1,0,0,0,492,3688, + 1,0,0,0,494,3693,1,0,0,0,496,3695,1,0,0,0,498,3699,1,0,0,0,500,3725, + 1,0,0,0,502,3730,1,0,0,0,504,3751,1,0,0,0,506,3756,1,0,0,0,508,3787, + 1,0,0,0,510,3789,1,0,0,0,512,3813,1,0,0,0,514,3846,1,0,0,0,516,3848, + 1,0,0,0,518,3850,1,0,0,0,520,3852,1,0,0,0,522,3877,1,0,0,0,524,3879, + 1,0,0,0,526,3887,1,0,0,0,528,3913,1,0,0,0,530,3915,1,0,0,0,532,3935, + 1,0,0,0,534,3937,1,0,0,0,536,3948,1,0,0,0,538,3961,1,0,0,0,540,3996, + 1,0,0,0,542,3998,1,0,0,0,544,4003,1,0,0,0,546,4008,1,0,0,0,548,4010, + 1,0,0,0,550,4032,1,0,0,0,552,4034,1,0,0,0,554,4038,1,0,0,0,556,4047, + 1,0,0,0,558,4057,1,0,0,0,560,4061,1,0,0,0,562,4065,1,0,0,0,564,4069, + 1,0,0,0,566,4145,1,0,0,0,568,4147,1,0,0,0,570,4150,1,0,0,0,572,4154, + 1,0,0,0,574,4159,1,0,0,0,576,4161,1,0,0,0,578,4172,1,0,0,0,580,4189, + 1,0,0,0,582,4205,1,0,0,0,584,4214,1,0,0,0,586,4229,1,0,0,0,588,4259, + 1,0,0,0,590,4261,1,0,0,0,592,4278,1,0,0,0,594,4294,1,0,0,0,596,4296, + 1,0,0,0,598,4315,1,0,0,0,600,4320,1,0,0,0,602,4335,1,0,0,0,604,4343, + 1,0,0,0,606,4351,1,0,0,0,608,4359,1,0,0,0,610,4367,1,0,0,0,612,4375, + 1,0,0,0,614,4383,1,0,0,0,616,4385,1,0,0,0,618,4395,1,0,0,0,620,4403, + 1,0,0,0,622,4419,1,0,0,0,624,4423,1,0,0,0,626,4428,1,0,0,0,628,4430, + 1,0,0,0,630,4441,1,0,0,0,632,4443,1,0,0,0,634,4461,1,0,0,0,636,4466, + 1,0,0,0,638,4474,1,0,0,0,640,4482,1,0,0,0,642,4486,1,0,0,0,644,4498, + 1,0,0,0,646,4503,1,0,0,0,648,4514,1,0,0,0,650,4521,1,0,0,0,652,4523, + 1,0,0,0,654,4527,1,0,0,0,656,4529,1,0,0,0,658,4534,1,0,0,0,660,4536, + 1,0,0,0,662,4538,1,0,0,0,664,4540,1,0,0,0,666,4548,1,0,0,0,668,4609, + 1,0,0,0,670,4776,1,0,0,0,672,4778,1,0,0,0,674,4787,1,0,0,0,676,4789, + 1,0,0,0,678,4800,1,0,0,0,680,4802,1,0,0,0,682,4807,1,0,0,0,684,4809, + 1,0,0,0,686,4811,1,0,0,0,688,4813,1,0,0,0,690,4815,1,0,0,0,692,4817, + 1,0,0,0,694,4819,1,0,0,0,696,4821,1,0,0,0,698,4823,1,0,0,0,700,4825, + 1,0,0,0,702,4827,1,0,0,0,704,4829,1,0,0,0,706,4854,1,0,0,0,708,4856, + 1,0,0,0,710,4864,1,0,0,0,712,4878,1,0,0,0,714,4880,1,0,0,0,716,718, + 3,2,1,0,717,716,1,0,0,0,718,721,1,0,0,0,719,717,1,0,0,0,719,720, + 1,0,0,0,720,722,1,0,0,0,721,719,1,0,0,0,722,723,5,0,0,1,723,1,1, + 0,0,0,724,727,3,4,2,0,725,727,3,10,5,0,726,724,1,0,0,0,726,725,1, + 0,0,0,727,729,1,0,0,0,728,730,5,398,0,0,729,728,1,0,0,0,729,730, + 1,0,0,0,730,3,1,0,0,0,731,741,5,119,0,0,732,734,3,6,3,0,733,732, + 1,0,0,0,734,737,1,0,0,0,735,733,1,0,0,0,735,736,1,0,0,0,736,738, + 1,0,0,0,737,735,1,0,0,0,738,742,3,10,5,0,739,740,5,284,0,0,740,742, + 3,364,182,0,741,735,1,0,0,0,741,739,1,0,0,0,742,5,1,0,0,0,743,766, + 5,122,0,0,744,766,5,138,0,0,745,766,5,88,0,0,746,748,5,37,0,0,747, + 749,7,0,0,0,748,747,1,0,0,0,748,749,1,0,0,0,749,766,1,0,0,0,750, + 766,5,192,0,0,751,766,5,21,0,0,752,766,5,10,0,0,753,766,5,275,0, + 0,754,766,5,191,0,0,755,766,5,19,0,0,756,758,5,377,0,0,757,759,5, + 225,0,0,758,757,1,0,0,0,758,759,1,0,0,0,759,761,1,0,0,0,760,762, + 3,8,4,0,761,760,1,0,0,0,761,762,1,0,0,0,762,766,1,0,0,0,763,766, + 5,79,0,0,764,766,5,78,0,0,765,743,1,0,0,0,765,744,1,0,0,0,765,745, + 1,0,0,0,765,746,1,0,0,0,765,750,1,0,0,0,765,751,1,0,0,0,765,752, + 1,0,0,0,765,753,1,0,0,0,765,754,1,0,0,0,765,755,1,0,0,0,765,756, + 1,0,0,0,765,763,1,0,0,0,765,764,1,0,0,0,766,7,1,0,0,0,767,768,7, + 1,0,0,768,9,1,0,0,0,769,834,3,364,182,0,770,834,3,12,6,0,771,834, + 3,16,8,0,772,834,3,18,9,0,773,834,3,20,10,0,774,834,3,24,12,0,775, + 776,5,277,0,0,776,777,5,320,0,0,777,780,3,476,238,0,778,779,5,387, + 0,0,779,781,3,230,115,0,780,778,1,0,0,0,780,781,1,0,0,0,781,834, + 1,0,0,0,782,834,3,28,14,0,783,784,5,86,0,0,784,785,5,139,0,0,785, + 787,3,482,241,0,786,788,3,500,250,0,787,786,1,0,0,0,787,788,1,0, + 0,0,788,834,1,0,0,0,789,790,5,365,0,0,790,791,3,482,241,0,791,793, + 3,396,198,0,792,794,3,500,250,0,793,792,1,0,0,0,793,794,1,0,0,0, + 794,834,1,0,0,0,795,834,3,398,199,0,796,798,5,203,0,0,797,799,5, + 436,0,0,798,797,1,0,0,0,798,799,1,0,0,0,799,800,1,0,0,0,800,801, + 5,166,0,0,801,806,3,482,241,0,802,804,5,17,0,0,803,802,1,0,0,0,803, + 804,1,0,0,0,804,805,1,0,0,0,805,807,3,654,327,0,806,803,1,0,0,0, + 806,807,1,0,0,0,807,808,1,0,0,0,808,809,5,370,0,0,809,810,3,460, + 230,0,810,811,5,224,0,0,811,812,3,596,298,0,812,813,3,402,201,0, + 813,834,1,0,0,0,814,815,5,249,0,0,815,816,3,654,327,0,816,817,5, + 139,0,0,817,818,3,364,182,0,818,834,1,0,0,0,819,820,5,115,0,0,820, + 821,3,654,327,0,821,822,5,370,0,0,822,823,3,300,150,0,823,834,1, + 0,0,0,824,825,5,304,0,0,825,826,3,664,332,0,826,830,5,405,0,0,827, + 829,9,0,0,0,828,827,1,0,0,0,829,832,1,0,0,0,830,831,1,0,0,0,830, + 828,1,0,0,0,831,834,1,0,0,0,832,830,1,0,0,0,833,769,1,0,0,0,833, + 770,1,0,0,0,833,771,1,0,0,0,833,772,1,0,0,0,833,773,1,0,0,0,833, + 774,1,0,0,0,833,775,1,0,0,0,833,782,1,0,0,0,833,783,1,0,0,0,833, + 789,1,0,0,0,833,795,1,0,0,0,833,796,1,0,0,0,833,814,1,0,0,0,833, + 819,1,0,0,0,833,824,1,0,0,0,834,11,1,0,0,0,835,836,5,187,0,0,836, + 838,5,66,0,0,837,839,5,188,0,0,838,837,1,0,0,0,838,839,1,0,0,0,839, + 840,1,0,0,0,840,841,5,158,0,0,841,843,5,426,0,0,842,844,5,235,0, + 0,843,842,1,0,0,0,843,844,1,0,0,0,844,845,1,0,0,0,845,846,5,166, + 0,0,846,847,5,329,0,0,847,849,3,640,320,0,848,850,3,56,28,0,849, + 848,1,0,0,0,849,850,1,0,0,0,850,13,1,0,0,0,851,853,5,134,0,0,852, + 854,5,204,0,0,853,852,1,0,0,0,853,854,1,0,0,0,854,855,1,0,0,0,855, + 856,5,279,0,0,856,857,5,399,0,0,857,858,5,426,0,0,858,859,5,400, + 0,0,859,15,1,0,0,0,860,861,5,120,0,0,861,862,5,329,0,0,862,863,3, + 640,320,0,863,864,5,341,0,0,864,866,5,426,0,0,865,867,3,14,7,0,866, + 865,1,0,0,0,866,867,1,0,0,0,867,17,1,0,0,0,868,874,5,153,0,0,869, + 871,5,123,0,0,870,869,1,0,0,0,870,871,1,0,0,0,871,872,1,0,0,0,872, + 873,5,329,0,0,873,875,3,640,320,0,874,870,1,0,0,0,874,875,1,0,0, + 0,875,876,1,0,0,0,876,877,5,139,0,0,877,879,5,426,0,0,878,880,3, + 428,214,0,879,878,1,0,0,0,879,880,1,0,0,0,880,19,1,0,0,0,881,882, + 5,277,0,0,882,883,5,103,0,0,883,886,3,22,11,0,884,885,5,278,0,0, + 885,887,3,22,11,0,886,884,1,0,0,0,886,887,1,0,0,0,887,890,1,0,0, + 0,888,889,5,387,0,0,889,891,3,230,115,0,890,888,1,0,0,0,890,891, + 1,0,0,0,891,21,1,0,0,0,892,895,3,476,238,0,893,894,5,395,0,0,894, + 896,3,26,13,0,895,893,1,0,0,0,895,896,1,0,0,0,896,23,1,0,0,0,897, + 898,5,277,0,0,898,899,5,187,0,0,899,902,3,22,11,0,900,901,5,166, + 0,0,901,903,3,476,238,0,902,900,1,0,0,0,902,903,1,0,0,0,903,906, + 1,0,0,0,904,905,5,387,0,0,905,907,3,230,115,0,906,904,1,0,0,0,906, + 907,1,0,0,0,907,25,1,0,0,0,908,911,5,426,0,0,909,910,5,395,0,0,910, + 912,5,426,0,0,911,909,1,0,0,0,911,912,1,0,0,0,912,27,1,0,0,0,913, + 972,3,42,21,0,914,972,3,46,23,0,915,972,3,48,24,0,916,972,3,440, + 220,0,917,972,3,54,27,0,918,972,3,52,26,0,919,972,3,416,208,0,920, + 972,3,64,32,0,921,972,3,72,36,0,922,972,3,138,69,0,923,972,3,160, + 80,0,924,972,3,176,88,0,925,972,3,180,90,0,926,972,3,184,92,0,927, + 972,3,182,91,0,928,972,3,174,87,0,929,972,3,178,89,0,930,972,3,146, + 73,0,931,972,3,152,76,0,932,972,3,148,74,0,933,972,3,150,75,0,934, + 972,3,154,77,0,935,972,3,156,78,0,936,972,3,158,79,0,937,972,3,66, + 33,0,938,972,3,76,38,0,939,972,3,82,41,0,940,972,3,78,39,0,941,972, + 3,84,42,0,942,972,3,86,43,0,943,972,3,88,44,0,944,972,3,90,45,0, + 945,972,3,92,46,0,946,972,3,106,53,0,947,972,3,98,49,0,948,972,3, + 108,54,0,949,972,3,100,50,0,950,972,3,94,47,0,951,972,3,96,48,0, + 952,972,3,104,52,0,953,972,3,102,51,0,954,955,5,1,0,0,955,957,7, + 2,0,0,956,958,5,431,0,0,957,956,1,0,0,0,958,959,1,0,0,0,959,957, + 1,0,0,0,959,960,1,0,0,0,960,972,1,0,0,0,961,962,5,176,0,0,962,964, + 5,258,0,0,963,965,5,426,0,0,964,963,1,0,0,0,965,966,1,0,0,0,966, + 964,1,0,0,0,966,967,1,0,0,0,967,972,1,0,0,0,968,972,3,670,335,0, + 969,972,3,442,221,0,970,972,3,444,222,0,971,913,1,0,0,0,971,914, + 1,0,0,0,971,915,1,0,0,0,971,916,1,0,0,0,971,917,1,0,0,0,971,918, + 1,0,0,0,971,919,1,0,0,0,971,920,1,0,0,0,971,921,1,0,0,0,971,922, + 1,0,0,0,971,923,1,0,0,0,971,924,1,0,0,0,971,925,1,0,0,0,971,926, + 1,0,0,0,971,927,1,0,0,0,971,928,1,0,0,0,971,929,1,0,0,0,971,930, + 1,0,0,0,971,931,1,0,0,0,971,932,1,0,0,0,971,933,1,0,0,0,971,934, + 1,0,0,0,971,935,1,0,0,0,971,936,1,0,0,0,971,937,1,0,0,0,971,938, + 1,0,0,0,971,939,1,0,0,0,971,940,1,0,0,0,971,941,1,0,0,0,971,942, + 1,0,0,0,971,943,1,0,0,0,971,944,1,0,0,0,971,945,1,0,0,0,971,946, + 1,0,0,0,971,947,1,0,0,0,971,948,1,0,0,0,971,949,1,0,0,0,971,950, + 1,0,0,0,971,951,1,0,0,0,971,952,1,0,0,0,971,953,1,0,0,0,971,954, + 1,0,0,0,971,961,1,0,0,0,971,968,1,0,0,0,971,969,1,0,0,0,971,970, + 1,0,0,0,972,29,1,0,0,0,973,974,5,151,0,0,974,975,5,117,0,0,975,31, + 1,0,0,0,976,977,5,151,0,0,977,978,5,216,0,0,978,979,5,117,0,0,979, + 33,1,0,0,0,980,981,7,3,0,0,981,35,1,0,0,0,982,983,3,682,341,0,983, + 984,5,284,0,0,984,37,1,0,0,0,985,986,3,684,342,0,986,987,5,284,0, + 0,987,39,1,0,0,0,988,989,5,321,0,0,989,990,5,17,0,0,990,991,5,92, + 0,0,991,41,1,0,0,0,992,994,5,58,0,0,993,995,5,273,0,0,994,993,1, + 0,0,0,994,995,1,0,0,0,995,996,1,0,0,0,996,998,3,70,35,0,997,999, + 3,32,16,0,998,997,1,0,0,0,998,999,1,0,0,0,999,1000,1,0,0,0,1000, + 1002,3,478,239,0,1001,1003,3,50,25,0,1002,1001,1,0,0,0,1002,1003, + 1,0,0,0,1003,1005,1,0,0,0,1004,1006,3,428,214,0,1005,1004,1,0,0, + 0,1005,1006,1,0,0,0,1006,1009,1,0,0,0,1007,1008,5,196,0,0,1008,1010, + 5,426,0,0,1009,1007,1,0,0,0,1009,1010,1,0,0,0,1010,1014,1,0,0,0, + 1011,1012,5,387,0,0,1012,1013,5,76,0,0,1013,1015,3,230,115,0,1014, + 1011,1,0,0,0,1014,1015,1,0,0,0,1015,1033,1,0,0,0,1016,1017,5,58, + 0,0,1017,1018,5,273,0,0,1018,1020,3,70,35,0,1019,1021,3,32,16,0, + 1020,1019,1,0,0,0,1020,1021,1,0,0,0,1021,1022,1,0,0,0,1022,1024, + 3,478,239,0,1023,1025,3,50,25,0,1024,1023,1,0,0,0,1024,1025,1,0, + 0,0,1025,1026,1,0,0,0,1026,1030,3,44,22,0,1027,1028,5,387,0,0,1028, + 1029,5,76,0,0,1029,1031,3,230,115,0,1030,1027,1,0,0,0,1030,1031, + 1,0,0,0,1031,1033,1,0,0,0,1032,992,1,0,0,0,1032,1016,1,0,0,0,1033, + 43,1,0,0,0,1034,1035,5,370,0,0,1035,1036,3,476,238,0,1036,45,1,0, + 0,0,1037,1038,5,368,0,0,1038,1039,3,476,238,0,1039,47,1,0,0,0,1040, + 1041,5,101,0,0,1041,1043,3,70,35,0,1042,1044,3,30,15,0,1043,1042, + 1,0,0,0,1043,1044,1,0,0,0,1044,1045,1,0,0,0,1045,1047,3,476,238, + 0,1046,1048,3,34,17,0,1047,1046,1,0,0,0,1047,1048,1,0,0,0,1048,49, + 1,0,0,0,1049,1050,5,47,0,0,1050,1051,5,426,0,0,1051,51,1,0,0,0,1052, + 1054,5,351,0,0,1053,1055,5,329,0,0,1054,1053,1,0,0,0,1054,1055,1, + 0,0,0,1055,1056,1,0,0,0,1056,1062,3,640,320,0,1057,1058,5,46,0,0, + 1058,1059,5,399,0,0,1059,1060,3,254,127,0,1060,1061,5,400,0,0,1061, + 1063,1,0,0,0,1062,1057,1,0,0,0,1062,1063,1,0,0,0,1063,1065,1,0,0, + 0,1064,1066,5,135,0,0,1065,1064,1,0,0,0,1065,1066,1,0,0,0,1066,53, + 1,0,0,0,1067,1068,5,101,0,0,1068,1070,5,329,0,0,1069,1071,3,30,15, + 0,1070,1069,1,0,0,0,1070,1071,1,0,0,0,1071,1072,1,0,0,0,1072,1074, + 3,482,241,0,1073,1075,5,255,0,0,1074,1073,1,0,0,0,1074,1075,1,0, + 0,0,1075,1077,1,0,0,0,1076,1078,3,14,7,0,1077,1076,1,0,0,0,1077, + 1078,1,0,0,0,1078,55,1,0,0,0,1079,1080,5,160,0,0,1080,1081,5,426, + 0,0,1081,1082,5,301,0,0,1082,1083,5,426,0,0,1083,57,1,0,0,0,1084, + 1087,3,654,327,0,1085,1086,5,395,0,0,1086,1088,3,654,327,0,1087, + 1085,1,0,0,0,1087,1088,1,0,0,0,1088,1102,1,0,0,0,1089,1099,3,654, + 327,0,1090,1095,5,395,0,0,1091,1096,5,104,0,0,1092,1096,5,175,0, + 0,1093,1096,5,375,0,0,1094,1096,3,654,327,0,1095,1091,1,0,0,0,1095, + 1092,1,0,0,0,1095,1093,1,0,0,0,1095,1094,1,0,0,0,1096,1098,1,0,0, + 0,1097,1090,1,0,0,0,1098,1101,1,0,0,0,1099,1097,1,0,0,0,1099,1100, + 1,0,0,0,1100,1103,1,0,0,0,1101,1099,1,0,0,0,1102,1089,1,0,0,0,1102, + 1103,1,0,0,0,1103,59,1,0,0,0,1104,1106,3,58,29,0,1105,1107,3,642, + 321,0,1106,1105,1,0,0,0,1106,1107,1,0,0,0,1107,61,1,0,0,0,1108,1110, + 3,480,240,0,1109,1111,3,642,321,0,1110,1109,1,0,0,0,1110,1111,1, + 0,0,0,1111,1113,1,0,0,0,1112,1114,3,264,132,0,1113,1112,1,0,0,0, + 1113,1114,1,0,0,0,1114,63,1,0,0,0,1115,1138,7,4,0,0,1116,1118,3, + 70,35,0,1117,1119,5,122,0,0,1118,1117,1,0,0,0,1118,1119,1,0,0,0, + 1119,1120,1,0,0,0,1120,1121,3,476,238,0,1121,1139,1,0,0,0,1122,1124, + 5,69,0,0,1123,1125,5,122,0,0,1124,1123,1,0,0,0,1124,1125,1,0,0,0, + 1125,1126,1,0,0,0,1126,1139,3,476,238,0,1127,1129,5,141,0,0,1128, + 1130,5,122,0,0,1129,1128,1,0,0,0,1129,1130,1,0,0,0,1130,1131,1,0, + 0,0,1131,1139,3,572,286,0,1132,1135,5,138,0,0,1133,1135,5,122,0, + 0,1134,1132,1,0,0,0,1134,1133,1,0,0,0,1135,1136,1,0,0,0,1136,1139, + 3,62,31,0,1137,1139,3,62,31,0,1138,1116,1,0,0,0,1138,1122,1,0,0, + 0,1138,1127,1,0,0,0,1138,1134,1,0,0,0,1138,1137,1,0,0,0,1139,65, + 1,0,0,0,1140,1141,5,10,0,0,1141,1142,5,329,0,0,1142,1155,3,640,320, + 0,1143,1144,5,52,0,0,1144,1151,5,319,0,0,1145,1152,5,215,0,0,1146, + 1147,5,134,0,0,1147,1149,5,46,0,0,1148,1150,3,254,127,0,1149,1148, + 1,0,0,0,1149,1150,1,0,0,0,1150,1152,1,0,0,0,1151,1145,1,0,0,0,1151, + 1146,1,0,0,0,1151,1152,1,0,0,0,1152,1156,1,0,0,0,1153,1154,5,33, + 0,0,1154,1156,5,204,0,0,1155,1143,1,0,0,0,1155,1153,1,0,0,0,1156, + 67,1,0,0,0,1157,1158,7,5,0,0,1158,69,1,0,0,0,1159,1160,7,6,0,0,1160, + 71,1,0,0,0,1161,1162,5,308,0,0,1162,1165,7,7,0,0,1163,1164,5,184, + 0,0,1164,1166,3,194,97,0,1165,1163,1,0,0,0,1165,1166,1,0,0,0,1166, + 1345,1,0,0,0,1167,1169,5,308,0,0,1168,1170,5,122,0,0,1169,1168,1, + 0,0,0,1169,1170,1,0,0,0,1170,1171,1,0,0,0,1171,1175,5,330,0,0,1172, + 1173,3,68,34,0,1173,1174,3,476,238,0,1174,1176,1,0,0,0,1175,1172, + 1,0,0,0,1175,1176,1,0,0,0,1176,1178,1,0,0,0,1177,1179,3,74,37,0, + 1178,1177,1,0,0,0,1178,1179,1,0,0,0,1179,1345,1,0,0,0,1180,1181, + 5,308,0,0,1181,1185,5,379,0,0,1182,1183,3,68,34,0,1183,1184,3,476, + 238,0,1184,1186,1,0,0,0,1185,1182,1,0,0,0,1185,1186,1,0,0,0,1186, + 1190,1,0,0,0,1187,1188,5,184,0,0,1188,1191,3,194,97,0,1189,1191, + 3,194,97,0,1190,1187,1,0,0,0,1190,1189,1,0,0,0,1190,1191,1,0,0,0, + 1191,1345,1,0,0,0,1192,1193,5,308,0,0,1193,1194,5,202,0,0,1194,1198, + 5,379,0,0,1195,1196,3,68,34,0,1196,1197,3,476,238,0,1197,1199,1, + 0,0,0,1198,1195,1,0,0,0,1198,1199,1,0,0,0,1199,1203,1,0,0,0,1200, + 1201,5,184,0,0,1201,1204,3,194,97,0,1202,1204,3,194,97,0,1203,1200, + 1,0,0,0,1203,1202,1,0,0,0,1203,1204,1,0,0,0,1204,1345,1,0,0,0,1205, + 1207,5,308,0,0,1206,1208,5,315,0,0,1207,1206,1,0,0,0,1207,1208,1, + 0,0,0,1208,1209,1,0,0,0,1209,1210,5,46,0,0,1210,1211,3,68,34,0,1211, + 1215,3,480,240,0,1212,1213,3,68,34,0,1213,1214,3,476,238,0,1214, + 1216,1,0,0,0,1215,1212,1,0,0,0,1215,1216,1,0,0,0,1216,1220,1,0,0, + 0,1217,1218,5,184,0,0,1218,1221,3,194,97,0,1219,1221,3,194,97,0, + 1220,1217,1,0,0,0,1220,1219,1,0,0,0,1220,1221,1,0,0,0,1221,1345, + 1,0,0,0,1222,1223,5,308,0,0,1223,1226,5,142,0,0,1224,1225,5,184, + 0,0,1225,1227,3,572,286,0,1226,1224,1,0,0,0,1226,1227,1,0,0,0,1227, + 1345,1,0,0,0,1228,1229,5,308,0,0,1229,1230,5,239,0,0,1230,1232,3, + 480,240,0,1231,1233,3,642,321,0,1232,1231,1,0,0,0,1232,1233,1,0, + 0,0,1233,1235,1,0,0,0,1234,1236,3,500,250,0,1235,1234,1,0,0,0,1235, + 1236,1,0,0,0,1236,1238,1,0,0,0,1237,1239,3,556,278,0,1238,1237,1, + 0,0,0,1238,1239,1,0,0,0,1239,1241,1,0,0,0,1240,1242,3,390,195,0, + 1241,1240,1,0,0,0,1241,1242,1,0,0,0,1242,1345,1,0,0,0,1243,1244, + 5,308,0,0,1244,1250,5,58,0,0,1245,1246,3,70,35,0,1246,1247,3,476, + 238,0,1247,1251,1,0,0,0,1248,1249,5,329,0,0,1249,1251,3,482,241, + 0,1250,1245,1,0,0,0,1250,1248,1,0,0,0,1251,1345,1,0,0,0,1252,1253, + 5,308,0,0,1253,1254,5,329,0,0,1254,1258,5,122,0,0,1255,1256,3,68, + 34,0,1256,1257,3,476,238,0,1257,1259,1,0,0,0,1258,1255,1,0,0,0,1258, + 1259,1,0,0,0,1259,1260,1,0,0,0,1260,1261,5,184,0,0,1261,1263,3,194, + 97,0,1262,1264,3,642,321,0,1263,1262,1,0,0,0,1263,1264,1,0,0,0,1264, + 1345,1,0,0,0,1265,1266,5,308,0,0,1266,1267,5,332,0,0,1267,1271,3, + 482,241,0,1268,1269,5,399,0,0,1269,1270,5,426,0,0,1270,1272,5,400, + 0,0,1271,1268,1,0,0,0,1271,1272,1,0,0,0,1272,1345,1,0,0,0,1273,1274, + 5,308,0,0,1274,1286,5,191,0,0,1275,1276,3,70,35,0,1276,1278,3,476, + 238,0,1277,1279,5,122,0,0,1278,1277,1,0,0,0,1278,1279,1,0,0,0,1279, + 1287,1,0,0,0,1280,1282,3,60,30,0,1281,1280,1,0,0,0,1281,1282,1,0, + 0,0,1282,1284,1,0,0,0,1283,1285,5,122,0,0,1284,1283,1,0,0,0,1284, + 1285,1,0,0,0,1285,1287,1,0,0,0,1286,1275,1,0,0,0,1286,1281,1,0,0, + 0,1287,1345,1,0,0,0,1288,1289,5,308,0,0,1289,1316,5,50,0,0,1290, + 1291,5,51,0,0,1291,1292,5,405,0,0,1292,1317,5,431,0,0,1293,1294, + 3,70,35,0,1294,1295,3,476,238,0,1295,1300,1,0,0,0,1296,1298,3,60, + 30,0,1297,1296,1,0,0,0,1297,1298,1,0,0,0,1298,1300,1,0,0,0,1299, + 1293,1,0,0,0,1299,1297,1,0,0,0,1300,1302,1,0,0,0,1301,1303,3,410, + 205,0,1302,1301,1,0,0,0,1302,1303,1,0,0,0,1303,1305,1,0,0,0,1304, + 1306,3,412,206,0,1305,1304,1,0,0,0,1305,1306,1,0,0,0,1306,1308,1, + 0,0,0,1307,1309,3,414,207,0,1308,1307,1,0,0,0,1308,1309,1,0,0,0, + 1309,1311,1,0,0,0,1310,1312,3,556,278,0,1311,1310,1,0,0,0,1311,1312, + 1,0,0,0,1312,1314,1,0,0,0,1313,1315,3,390,195,0,1314,1313,1,0,0, + 0,1314,1315,1,0,0,0,1315,1317,1,0,0,0,1316,1290,1,0,0,0,1316,1299, + 1,0,0,0,1317,1345,1,0,0,0,1318,1319,5,308,0,0,1319,1345,5,346,0, + 0,1320,1321,5,308,0,0,1321,1322,5,54,0,0,1322,1345,5,426,0,0,1323, + 1324,5,308,0,0,1324,1328,5,280,0,0,1325,1326,5,243,0,0,1326,1329, + 3,654,327,0,1327,1329,5,244,0,0,1328,1325,1,0,0,0,1328,1327,1,0, + 0,0,1329,1345,1,0,0,0,1330,1331,5,308,0,0,1331,1345,5,70,0,0,1332, + 1334,5,308,0,0,1333,1335,5,138,0,0,1334,1333,1,0,0,0,1334,1335,1, + 0,0,0,1335,1336,1,0,0,0,1336,1337,7,8,0,0,1337,1338,5,224,0,0,1338, + 1342,3,482,241,0,1339,1340,3,68,34,0,1340,1341,3,476,238,0,1341, + 1343,1,0,0,0,1342,1339,1,0,0,0,1342,1343,1,0,0,0,1343,1345,1,0,0, + 0,1344,1161,1,0,0,0,1344,1167,1,0,0,0,1344,1180,1,0,0,0,1344,1192, + 1,0,0,0,1344,1205,1,0,0,0,1344,1222,1,0,0,0,1344,1228,1,0,0,0,1344, + 1243,1,0,0,0,1344,1252,1,0,0,0,1344,1265,1,0,0,0,1344,1273,1,0,0, + 0,1344,1288,1,0,0,0,1344,1318,1,0,0,0,1344,1320,1,0,0,0,1344,1323, + 1,0,0,0,1344,1330,1,0,0,0,1344,1332,1,0,0,0,1345,73,1,0,0,0,1346, + 1347,5,384,0,0,1347,1348,3,654,327,0,1348,1349,5,405,0,0,1349,1350, + 5,426,0,0,1350,1355,1,0,0,0,1351,1352,5,184,0,0,1352,1355,3,194, + 97,0,1353,1355,3,194,97,0,1354,1346,1,0,0,0,1354,1351,1,0,0,0,1354, + 1353,1,0,0,0,1355,75,1,0,0,0,1356,1357,5,190,0,0,1357,1358,5,329, + 0,0,1358,1359,3,640,320,0,1359,1360,3,80,40,0,1360,77,1,0,0,0,1361, + 1362,5,190,0,0,1362,1363,3,70,35,0,1363,1364,3,476,238,0,1364,1365, + 3,80,40,0,1365,79,1,0,0,0,1366,1367,7,9,0,0,1367,81,1,0,0,0,1368, + 1369,5,361,0,0,1369,1370,5,329,0,0,1370,1371,3,640,320,0,1371,83, + 1,0,0,0,1372,1373,5,361,0,0,1373,1374,3,70,35,0,1374,1375,3,476, + 238,0,1375,85,1,0,0,0,1376,1377,5,58,0,0,1377,1378,5,287,0,0,1378, + 1379,3,654,327,0,1379,87,1,0,0,0,1380,1381,5,101,0,0,1381,1382,5, + 287,0,0,1382,1383,3,654,327,0,1383,89,1,0,0,0,1384,1385,5,143,0, + 0,1385,1387,3,118,59,0,1386,1388,3,112,56,0,1387,1386,1,0,0,0,1387, + 1388,1,0,0,0,1388,1389,1,0,0,0,1389,1390,5,341,0,0,1390,1392,3,124, + 62,0,1391,1393,3,130,65,0,1392,1391,1,0,0,0,1392,1393,1,0,0,0,1393, + 91,1,0,0,0,1394,1396,5,283,0,0,1395,1397,3,132,66,0,1396,1395,1, + 0,0,0,1396,1397,1,0,0,0,1397,1398,1,0,0,0,1398,1400,3,118,59,0,1399, + 1401,3,112,56,0,1400,1399,1,0,0,0,1400,1401,1,0,0,0,1401,1402,1, + 0,0,0,1402,1403,5,139,0,0,1403,1404,3,124,62,0,1404,93,1,0,0,0,1405, + 1407,5,143,0,0,1406,1408,5,287,0,0,1407,1406,1,0,0,0,1407,1408,1, + 0,0,0,1408,1409,1,0,0,0,1409,1414,3,654,327,0,1410,1411,5,397,0, + 0,1411,1413,3,654,327,0,1412,1410,1,0,0,0,1413,1416,1,0,0,0,1414, + 1412,1,0,0,0,1414,1415,1,0,0,0,1415,1417,1,0,0,0,1416,1414,1,0,0, + 0,1417,1418,5,341,0,0,1418,1420,3,124,62,0,1419,1421,3,136,68,0, + 1420,1419,1,0,0,0,1420,1421,1,0,0,0,1421,95,1,0,0,0,1422,1424,5, + 283,0,0,1423,1425,3,134,67,0,1424,1423,1,0,0,0,1424,1425,1,0,0,0, + 1425,1427,1,0,0,0,1426,1428,5,287,0,0,1427,1426,1,0,0,0,1427,1428, + 1,0,0,0,1428,1429,1,0,0,0,1429,1434,3,654,327,0,1430,1431,5,397, + 0,0,1431,1433,3,654,327,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,1437,1,0,0,0,1436,1434,1,0,0, + 0,1437,1438,5,139,0,0,1438,1439,3,124,62,0,1439,97,1,0,0,0,1440, + 1441,5,308,0,0,1441,1442,5,287,0,0,1442,1443,5,143,0,0,1443,1444, + 3,126,63,0,1444,99,1,0,0,0,1445,1446,5,308,0,0,1446,1447,5,288,0, + 0,1447,101,1,0,0,0,1448,1449,5,308,0,0,1449,1450,5,62,0,0,1450,1451, + 5,288,0,0,1451,103,1,0,0,0,1452,1453,5,304,0,0,1453,1457,5,287,0, + 0,1454,1458,5,7,0,0,1455,1458,5,213,0,0,1456,1458,3,654,327,0,1457, + 1454,1,0,0,0,1457,1455,1,0,0,0,1457,1456,1,0,0,0,1458,105,1,0,0, + 0,1459,1460,5,308,0,0,1460,1462,5,143,0,0,1461,1463,3,126,63,0,1462, + 1461,1,0,0,0,1462,1463,1,0,0,0,1463,1466,1,0,0,0,1464,1465,5,224, + 0,0,1465,1467,3,110,55,0,1466,1464,1,0,0,0,1466,1467,1,0,0,0,1467, + 107,1,0,0,0,1468,1469,5,308,0,0,1469,1470,5,252,0,0,1470,1471,3, + 654,327,0,1471,109,1,0,0,0,1472,1475,5,7,0,0,1473,1475,3,116,58, + 0,1474,1472,1,0,0,0,1474,1473,1,0,0,0,1475,111,1,0,0,0,1476,1477, + 5,224,0,0,1477,1478,3,114,57,0,1478,113,1,0,0,0,1479,1480,3,70,35, + 0,1480,1481,3,476,238,0,1481,1491,1,0,0,0,1482,1484,5,329,0,0,1483, + 1482,1,0,0,0,1483,1484,1,0,0,0,1484,1485,1,0,0,0,1485,1491,3,640, + 320,0,1486,1487,5,366,0,0,1487,1491,5,426,0,0,1488,1489,5,303,0, + 0,1489,1491,3,654,327,0,1490,1479,1,0,0,0,1490,1483,1,0,0,0,1490, + 1486,1,0,0,0,1490,1488,1,0,0,0,1491,115,1,0,0,0,1492,1493,3,70,35, + 0,1493,1494,3,476,238,0,1494,1513,1,0,0,0,1495,1497,5,329,0,0,1496, + 1495,1,0,0,0,1496,1497,1,0,0,0,1497,1498,1,0,0,0,1498,1503,3,482, + 241,0,1499,1500,5,399,0,0,1500,1501,3,254,127,0,1501,1502,5,400, + 0,0,1502,1504,1,0,0,0,1503,1499,1,0,0,0,1503,1504,1,0,0,0,1504,1506, + 1,0,0,0,1505,1507,3,642,321,0,1506,1505,1,0,0,0,1506,1507,1,0,0, + 0,1507,1513,1,0,0,0,1508,1509,5,366,0,0,1509,1513,5,426,0,0,1510, + 1511,5,303,0,0,1511,1513,3,654,327,0,1512,1492,1,0,0,0,1512,1496, + 1,0,0,0,1512,1508,1,0,0,0,1512,1510,1,0,0,0,1513,117,1,0,0,0,1514, + 1519,3,120,60,0,1515,1516,5,397,0,0,1516,1518,3,120,60,0,1517,1515, + 1,0,0,0,1518,1521,1,0,0,0,1519,1517,1,0,0,0,1519,1520,1,0,0,0,1520, + 119,1,0,0,0,1521,1519,1,0,0,0,1522,1527,3,122,61,0,1523,1524,5,399, + 0,0,1524,1525,3,254,127,0,1525,1526,5,400,0,0,1526,1528,1,0,0,0, + 1527,1523,1,0,0,0,1527,1528,1,0,0,0,1528,121,1,0,0,0,1529,1530,7, + 10,0,0,1530,123,1,0,0,0,1531,1536,3,126,63,0,1532,1533,5,397,0,0, + 1533,1535,3,126,63,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,125,1,0,0,0,1538,1536,1,0,0,0,1539, + 1540,5,369,0,0,1540,1546,3,658,329,0,1541,1542,5,144,0,0,1542,1546, + 3,658,329,0,1543,1544,5,287,0,0,1544,1546,3,654,327,0,1545,1539, + 1,0,0,0,1545,1541,1,0,0,0,1545,1543,1,0,0,0,1546,127,1,0,0,0,1547, + 1548,5,369,0,0,1548,1553,3,658,329,0,1549,1550,5,287,0,0,1550,1553, + 3,654,327,0,1551,1553,3,654,327,0,1552,1547,1,0,0,0,1552,1549,1, + 0,0,0,1552,1551,1,0,0,0,1553,129,1,0,0,0,1554,1555,5,387,0,0,1555, + 1556,5,143,0,0,1556,1557,5,227,0,0,1557,131,1,0,0,0,1558,1559,5, + 143,0,0,1559,1560,5,227,0,0,1560,1561,5,134,0,0,1561,133,1,0,0,0, + 1562,1563,5,5,0,0,1563,1564,5,227,0,0,1564,1565,5,134,0,0,1565,135, + 1,0,0,0,1566,1567,5,387,0,0,1567,1568,5,5,0,0,1568,1569,5,227,0, + 0,1569,137,1,0,0,0,1570,1572,5,212,0,0,1571,1573,5,276,0,0,1572, + 1571,1,0,0,0,1572,1573,1,0,0,0,1573,1574,1,0,0,0,1574,1575,5,329, + 0,0,1575,1581,3,482,241,0,1576,1577,7,11,0,0,1577,1579,5,239,0,0, + 1578,1580,3,646,323,0,1579,1578,1,0,0,0,1579,1580,1,0,0,0,1580,1582, + 1,0,0,0,1581,1576,1,0,0,0,1581,1582,1,0,0,0,1582,139,1,0,0,0,1583, + 1588,3,142,71,0,1584,1585,5,397,0,0,1585,1587,3,142,71,0,1586,1584, + 1,0,0,0,1587,1590,1,0,0,0,1588,1586,1,0,0,0,1588,1589,1,0,0,0,1589, + 141,1,0,0,0,1590,1588,1,0,0,0,1591,1592,3,144,72,0,1592,1593,5,426, + 0,0,1593,143,1,0,0,0,1594,1595,7,12,0,0,1595,145,1,0,0,0,1596,1598, + 5,58,0,0,1597,1599,5,333,0,0,1598,1597,1,0,0,0,1598,1599,1,0,0,0, + 1599,1600,1,0,0,0,1600,1601,5,141,0,0,1601,1602,3,570,285,0,1602, + 1603,5,17,0,0,1603,1606,5,426,0,0,1604,1605,5,370,0,0,1605,1607, + 3,140,70,0,1606,1604,1,0,0,0,1606,1607,1,0,0,0,1607,147,1,0,0,0, + 1608,1610,5,101,0,0,1609,1611,5,333,0,0,1610,1609,1,0,0,0,1610,1611, + 1,0,0,0,1611,1612,1,0,0,0,1612,1614,5,141,0,0,1613,1615,3,30,15, + 0,1614,1613,1,0,0,0,1614,1615,1,0,0,0,1615,1616,1,0,0,0,1616,1617, + 3,572,286,0,1617,149,1,0,0,0,1618,1619,5,271,0,0,1619,1620,7,13, + 0,0,1620,151,1,0,0,0,1621,1622,5,58,0,0,1622,1623,5,333,0,0,1623, + 1624,5,194,0,0,1624,1625,5,432,0,0,1625,1627,5,399,0,0,1626,1628, + 3,248,124,0,1627,1626,1,0,0,0,1627,1628,1,0,0,0,1628,1629,1,0,0, + 0,1629,1630,5,400,0,0,1630,1631,3,596,298,0,1631,153,1,0,0,0,1632, + 1633,5,101,0,0,1633,1634,5,333,0,0,1634,1636,5,194,0,0,1635,1637, + 3,30,15,0,1636,1635,1,0,0,0,1636,1637,1,0,0,0,1637,1638,1,0,0,0, + 1638,1639,5,432,0,0,1639,155,1,0,0,0,1640,1641,5,58,0,0,1641,1642, + 5,155,0,0,1642,1643,3,654,327,0,1643,1644,5,224,0,0,1644,1645,5, + 329,0,0,1645,1646,3,482,241,0,1646,1647,3,268,134,0,1647,1648,5, + 17,0,0,1648,1652,5,426,0,0,1649,1650,5,387,0,0,1650,1651,5,84,0, + 0,1651,1653,5,265,0,0,1652,1649,1,0,0,0,1652,1653,1,0,0,0,1653,1656, + 1,0,0,0,1654,1655,5,150,0,0,1655,1657,3,226,113,0,1656,1654,1,0, + 0,0,1656,1657,1,0,0,0,1657,1661,1,0,0,0,1658,1659,5,154,0,0,1659, + 1660,5,329,0,0,1660,1662,3,482,241,0,1661,1658,1,0,0,0,1661,1662, + 1,0,0,0,1662,1666,1,0,0,0,1663,1664,5,238,0,0,1664,1665,5,32,0,0, + 1665,1667,3,268,134,0,1666,1663,1,0,0,0,1666,1667,1,0,0,0,1667,1672, + 1,0,0,0,1668,1670,3,222,111,0,1669,1668,1,0,0,0,1669,1670,1,0,0, + 0,1670,1671,1,0,0,0,1671,1673,3,246,123,0,1672,1669,1,0,0,0,1672, + 1673,1,0,0,0,1673,1675,1,0,0,0,1674,1676,3,428,214,0,1675,1674,1, + 0,0,0,1675,1676,1,0,0,0,1676,1678,1,0,0,0,1677,1679,3,224,112,0, + 1678,1677,1,0,0,0,1678,1679,1,0,0,0,1679,1681,1,0,0,0,1680,1682, + 3,196,98,0,1681,1680,1,0,0,0,1681,1682,1,0,0,0,1682,157,1,0,0,0, + 1683,1684,5,101,0,0,1684,1686,5,155,0,0,1685,1687,3,30,15,0,1686, + 1685,1,0,0,0,1686,1687,1,0,0,0,1687,1688,1,0,0,0,1688,1689,3,654, + 327,0,1689,1690,5,224,0,0,1690,1691,3,482,241,0,1691,159,1,0,0,0, + 1692,1695,5,58,0,0,1693,1694,5,228,0,0,1694,1696,5,278,0,0,1695, + 1693,1,0,0,0,1695,1696,1,0,0,0,1696,1697,1,0,0,0,1697,1699,5,378, + 0,0,1698,1700,3,32,16,0,1699,1698,1,0,0,0,1699,1700,1,0,0,0,1700, + 1701,1,0,0,0,1701,1706,3,488,244,0,1702,1703,5,399,0,0,1703,1704, + 3,308,154,0,1704,1705,5,400,0,0,1705,1707,1,0,0,0,1706,1702,1,0, + 0,0,1706,1707,1,0,0,0,1707,1709,1,0,0,0,1708,1710,3,196,98,0,1709, + 1708,1,0,0,0,1709,1710,1,0,0,0,1710,1712,1,0,0,0,1711,1713,3,162, + 81,0,1712,1711,1,0,0,0,1712,1713,1,0,0,0,1713,1715,1,0,0,0,1714, + 1716,3,224,112,0,1715,1714,1,0,0,0,1715,1716,1,0,0,0,1716,1717,1, + 0,0,0,1717,1718,5,17,0,0,1718,1719,3,384,192,0,1719,161,1,0,0,0, + 1720,1721,5,238,0,0,1721,1727,5,224,0,0,1722,1723,5,399,0,0,1723, + 1728,3,254,127,0,1724,1725,5,316,0,0,1725,1726,5,399,0,0,1726,1728, + 3,204,102,0,1727,1722,1,0,0,0,1727,1724,1,0,0,0,1728,1729,1,0,0, + 0,1729,1730,5,400,0,0,1730,163,1,0,0,0,1731,1734,3,166,83,0,1732, + 1734,3,168,84,0,1733,1731,1,0,0,0,1733,1732,1,0,0,0,1734,165,1,0, + 0,0,1735,1736,5,42,0,0,1736,1737,5,224,0,0,1737,1738,5,399,0,0,1738, + 1739,3,254,127,0,1739,1740,5,400,0,0,1740,167,1,0,0,0,1741,1742, + 3,170,85,0,1742,1743,3,172,86,0,1743,169,1,0,0,0,1744,1745,5,98, + 0,0,1745,1746,5,224,0,0,1746,1747,5,399,0,0,1747,1748,3,254,127, + 0,1748,1749,5,400,0,0,1749,171,1,0,0,0,1750,1751,5,315,0,0,1751, + 1752,5,224,0,0,1752,1753,5,399,0,0,1753,1754,3,254,127,0,1754,1755, + 5,400,0,0,1755,173,1,0,0,0,1756,1757,5,101,0,0,1757,1759,5,378,0, + 0,1758,1760,3,30,15,0,1759,1758,1,0,0,0,1759,1760,1,0,0,0,1760,1761, + 1,0,0,0,1761,1762,3,486,243,0,1762,175,1,0,0,0,1763,1764,5,58,0, + 0,1764,1765,5,202,0,0,1765,1767,5,378,0,0,1766,1768,3,32,16,0,1767, + 1766,1,0,0,0,1767,1768,1,0,0,0,1768,1769,1,0,0,0,1769,1771,3,488, + 244,0,1770,1772,3,38,19,0,1771,1770,1,0,0,0,1771,1772,1,0,0,0,1772, + 1774,1,0,0,0,1773,1775,3,196,98,0,1774,1773,1,0,0,0,1774,1775,1, + 0,0,0,1775,1777,1,0,0,0,1776,1778,3,162,81,0,1777,1776,1,0,0,0,1777, + 1778,1,0,0,0,1778,1780,1,0,0,0,1779,1781,3,164,82,0,1780,1779,1, + 0,0,0,1780,1781,1,0,0,0,1781,1783,1,0,0,0,1782,1784,3,222,111,0, + 1783,1782,1,0,0,0,1783,1784,1,0,0,0,1784,1786,1,0,0,0,1785,1787, + 3,246,123,0,1786,1785,1,0,0,0,1786,1787,1,0,0,0,1787,1789,1,0,0, + 0,1788,1790,3,428,214,0,1789,1788,1,0,0,0,1789,1790,1,0,0,0,1790, + 1792,1,0,0,0,1791,1793,3,224,112,0,1792,1791,1,0,0,0,1792,1793,1, + 0,0,0,1793,1794,1,0,0,0,1794,1795,5,17,0,0,1795,1796,3,384,192,0, + 1796,177,1,0,0,0,1797,1798,5,101,0,0,1798,1799,5,202,0,0,1799,1801, + 5,378,0,0,1800,1802,3,30,15,0,1801,1800,1,0,0,0,1801,1802,1,0,0, + 0,1802,1803,1,0,0,0,1803,1804,3,486,243,0,1804,179,1,0,0,0,1805, + 1806,5,58,0,0,1806,1807,5,293,0,0,1807,1808,5,258,0,0,1808,1809, + 3,654,327,0,1809,1811,3,188,94,0,1810,1812,3,190,95,0,1811,1810, + 1,0,0,0,1811,1812,1,0,0,0,1812,1814,1,0,0,0,1813,1815,3,272,136, + 0,1814,1813,1,0,0,0,1814,1815,1,0,0,0,1815,1816,1,0,0,0,1816,1817, + 3,192,96,0,1817,181,1,0,0,0,1818,1819,5,101,0,0,1819,1820,5,293, + 0,0,1820,1821,5,258,0,0,1821,1822,3,654,327,0,1822,183,1,0,0,0,1823, + 1824,5,9,0,0,1824,1825,5,293,0,0,1825,1826,5,258,0,0,1826,1827,3, + 654,327,0,1827,1828,3,186,93,0,1828,185,1,0,0,0,1829,1835,3,188, + 94,0,1830,1835,3,190,95,0,1831,1835,3,272,136,0,1832,1835,3,192, + 96,0,1833,1835,5,115,0,0,1834,1829,1,0,0,0,1834,1830,1,0,0,0,1834, + 1831,1,0,0,0,1834,1832,1,0,0,0,1834,1833,1,0,0,0,1835,187,1,0,0, + 0,1836,1837,5,59,0,0,1837,1852,5,426,0,0,1838,1840,5,111,0,0,1839, + 1841,5,431,0,0,1840,1839,1,0,0,0,1840,1841,1,0,0,0,1841,1842,1,0, + 0,0,1842,1849,3,594,297,0,1843,1847,5,20,0,0,1844,1845,5,223,0,0, + 1845,1847,5,32,0,0,1846,1843,1,0,0,0,1846,1844,1,0,0,0,1847,1848, + 1,0,0,0,1848,1850,5,426,0,0,1849,1846,1,0,0,0,1849,1850,1,0,0,0, + 1850,1852,1,0,0,0,1851,1836,1,0,0,0,1851,1838,1,0,0,0,1852,189,1, + 0,0,0,1853,1854,5,116,0,0,1854,1855,5,17,0,0,1855,1856,5,426,0,0, + 1856,191,1,0,0,0,1857,1859,5,85,0,0,1858,1857,1,0,0,0,1858,1859, + 1,0,0,0,1859,1860,1,0,0,0,1860,1861,5,17,0,0,1861,1862,3,2,1,0,1862, + 193,1,0,0,0,1863,1866,3,654,327,0,1864,1866,5,426,0,0,1865,1863, + 1,0,0,0,1865,1864,1,0,0,0,1866,195,1,0,0,0,1867,1868,5,47,0,0,1868, + 1869,5,426,0,0,1869,197,1,0,0,0,1870,1871,5,183,0,0,1871,1872,5, + 431,0,0,1872,199,1,0,0,0,1873,1874,5,238,0,0,1874,1883,5,32,0,0, + 1875,1878,5,399,0,0,1876,1879,3,202,101,0,1877,1879,3,254,127,0, + 1878,1876,1,0,0,0,1878,1877,1,0,0,0,1879,1884,1,0,0,0,1880,1881, + 5,316,0,0,1881,1882,5,399,0,0,1882,1884,3,204,102,0,1883,1875,1, + 0,0,0,1883,1880,1,0,0,0,1884,1885,1,0,0,0,1885,1886,5,400,0,0,1886, + 201,1,0,0,0,1887,1892,3,320,160,0,1888,1889,5,397,0,0,1889,1891, + 3,320,160,0,1890,1888,1,0,0,0,1891,1894,1,0,0,0,1892,1890,1,0,0, + 0,1892,1893,1,0,0,0,1893,203,1,0,0,0,1894,1892,1,0,0,0,1895,1900, + 3,206,103,0,1896,1897,5,397,0,0,1897,1899,3,206,103,0,1898,1896, + 1,0,0,0,1899,1902,1,0,0,0,1900,1898,1,0,0,0,1900,1901,1,0,0,0,1901, + 205,1,0,0,0,1902,1900,1,0,0,0,1903,1922,3,256,128,0,1904,1909,3, + 686,343,0,1905,1909,3,688,344,0,1906,1909,3,692,346,0,1907,1909, + 3,694,347,0,1908,1904,1,0,0,0,1908,1905,1,0,0,0,1908,1906,1,0,0, + 0,1908,1907,1,0,0,0,1909,1910,1,0,0,0,1910,1911,5,399,0,0,1911,1912, + 3,256,128,0,1912,1913,5,400,0,0,1913,1922,1,0,0,0,1914,1915,7,14, + 0,0,1915,1916,5,399,0,0,1916,1917,5,431,0,0,1917,1918,5,397,0,0, + 1918,1919,3,256,128,0,1919,1920,5,400,0,0,1920,1922,1,0,0,0,1921, + 1903,1,0,0,0,1921,1908,1,0,0,0,1921,1914,1,0,0,0,1922,207,1,0,0, + 0,1923,1924,5,42,0,0,1924,1925,5,32,0,0,1925,1926,5,399,0,0,1926, + 1927,3,254,127,0,1927,1934,5,400,0,0,1928,1929,5,315,0,0,1929,1930, + 5,32,0,0,1930,1931,5,399,0,0,1931,1932,3,266,133,0,1932,1933,5,400, + 0,0,1933,1935,1,0,0,0,1934,1928,1,0,0,0,1934,1935,1,0,0,0,1935,1936, + 1,0,0,0,1936,1937,5,166,0,0,1937,1938,5,431,0,0,1938,1939,5,31,0, + 0,1939,209,1,0,0,0,1940,1941,5,310,0,0,1941,1942,5,32,0,0,1942,1943, + 5,399,0,0,1943,1944,3,254,127,0,1944,1945,5,400,0,0,1945,1946,5, + 224,0,0,1946,1947,5,399,0,0,1947,1948,3,294,147,0,1948,1950,5,400, + 0,0,1949,1951,3,40,20,0,1950,1949,1,0,0,0,1950,1951,1,0,0,0,1951, + 211,1,0,0,0,1952,1955,3,218,109,0,1953,1955,3,220,110,0,1954,1952, + 1,0,0,0,1954,1953,1,0,0,0,1955,213,1,0,0,0,1956,1957,5,266,0,0,1957, + 1958,5,426,0,0,1958,215,1,0,0,0,1959,1960,5,267,0,0,1960,1961,5, + 426,0,0,1961,217,1,0,0,0,1962,1963,5,291,0,0,1963,1964,5,137,0,0, + 1964,1965,5,301,0,0,1965,1969,5,426,0,0,1966,1967,5,387,0,0,1967, + 1968,5,302,0,0,1968,1970,3,226,113,0,1969,1966,1,0,0,0,1969,1970, + 1,0,0,0,1970,219,1,0,0,0,1971,1972,5,291,0,0,1972,1973,5,137,0,0, + 1973,1975,5,87,0,0,1974,1976,3,236,118,0,1975,1974,1,0,0,0,1975, + 1976,1,0,0,0,1976,1978,1,0,0,0,1977,1979,3,238,119,0,1978,1977,1, + 0,0,0,1978,1979,1,0,0,0,1979,1981,1,0,0,0,1980,1982,3,240,120,0, + 1981,1980,1,0,0,0,1981,1982,1,0,0,0,1982,1984,1,0,0,0,1983,1985, + 3,242,121,0,1984,1983,1,0,0,0,1984,1985,1,0,0,0,1985,1987,1,0,0, + 0,1986,1988,3,244,122,0,1987,1986,1,0,0,0,1987,1988,1,0,0,0,1988, + 221,1,0,0,0,1989,1992,3,220,110,0,1990,1992,3,218,109,0,1991,1989, + 1,0,0,0,1991,1990,1,0,0,0,1992,223,1,0,0,0,1993,1994,5,332,0,0,1994, + 1995,3,226,113,0,1995,225,1,0,0,0,1996,1997,5,399,0,0,1997,1998, + 3,228,114,0,1998,1999,5,400,0,0,1999,227,1,0,0,0,2000,2010,3,232, + 116,0,2001,2006,5,426,0,0,2002,2003,5,397,0,0,2003,2005,5,426,0, + 0,2004,2002,1,0,0,0,2005,2008,1,0,0,0,2006,2004,1,0,0,0,2006,2007, + 1,0,0,0,2007,2010,1,0,0,0,2008,2006,1,0,0,0,2009,2000,1,0,0,0,2009, + 2001,1,0,0,0,2010,229,1,0,0,0,2011,2012,5,399,0,0,2012,2013,3,232, + 116,0,2013,2014,5,400,0,0,2014,231,1,0,0,0,2015,2020,3,234,117,0, + 2016,2017,5,397,0,0,2017,2019,3,234,117,0,2018,2016,1,0,0,0,2019, + 2022,1,0,0,0,2020,2018,1,0,0,0,2020,2021,1,0,0,0,2021,233,1,0,0, + 0,2022,2020,1,0,0,0,2023,2024,5,426,0,0,2024,2025,5,405,0,0,2025, + 2026,5,426,0,0,2026,235,1,0,0,0,2027,2028,5,127,0,0,2028,2029,5, + 334,0,0,2029,2030,5,32,0,0,2030,2034,5,426,0,0,2031,2032,5,110,0, + 0,2032,2033,5,32,0,0,2033,2035,5,426,0,0,2034,2031,1,0,0,0,2034, + 2035,1,0,0,0,2035,237,1,0,0,0,2036,2037,5,44,0,0,2037,2038,5,169, + 0,0,2038,2039,5,334,0,0,2039,2040,5,32,0,0,2040,2041,5,426,0,0,2041, + 239,1,0,0,0,2042,2043,5,198,0,0,2043,2044,5,174,0,0,2044,2045,5, + 334,0,0,2045,2046,5,32,0,0,2046,2047,5,426,0,0,2047,241,1,0,0,0, + 2048,2049,5,186,0,0,2049,2050,5,334,0,0,2050,2051,5,32,0,0,2051, + 2052,5,426,0,0,2052,243,1,0,0,0,2053,2054,5,219,0,0,2054,2055,5, + 85,0,0,2055,2056,5,17,0,0,2056,2057,5,426,0,0,2057,245,1,0,0,0,2058, + 2059,5,321,0,0,2059,2060,5,17,0,0,2060,2061,5,160,0,0,2061,2062, + 5,426,0,0,2062,2063,5,233,0,0,2063,2068,5,426,0,0,2064,2065,5,159, + 0,0,2065,2066,5,426,0,0,2066,2067,5,232,0,0,2067,2069,5,426,0,0, + 2068,2064,1,0,0,0,2068,2069,1,0,0,0,2069,2100,1,0,0,0,2070,2071, + 5,321,0,0,2071,2072,5,32,0,0,2072,2076,5,426,0,0,2073,2074,5,387, + 0,0,2074,2075,5,302,0,0,2075,2077,3,226,113,0,2076,2073,1,0,0,0, + 2076,2077,1,0,0,0,2077,2081,1,0,0,0,2078,2079,5,321,0,0,2079,2080, + 5,17,0,0,2080,2082,3,654,327,0,2081,2078,1,0,0,0,2081,2082,1,0,0, + 0,2082,2100,1,0,0,0,2083,2084,5,321,0,0,2084,2085,5,32,0,0,2085, + 2089,3,654,327,0,2086,2087,5,387,0,0,2087,2088,5,302,0,0,2088,2090, + 3,226,113,0,2089,2086,1,0,0,0,2089,2090,1,0,0,0,2090,2094,1,0,0, + 0,2091,2092,5,321,0,0,2092,2093,5,17,0,0,2093,2095,3,654,327,0,2094, + 2091,1,0,0,0,2094,2095,1,0,0,0,2095,2100,1,0,0,0,2096,2097,5,321, + 0,0,2097,2098,5,17,0,0,2098,2100,3,654,327,0,2099,2058,1,0,0,0,2099, + 2070,1,0,0,0,2099,2083,1,0,0,0,2099,2096,1,0,0,0,2100,247,1,0,0, + 0,2101,2106,3,314,157,0,2102,2103,5,397,0,0,2103,2105,3,314,157, + 0,2104,2102,1,0,0,0,2105,2108,1,0,0,0,2106,2104,1,0,0,0,2106,2107, + 1,0,0,0,2107,249,1,0,0,0,2108,2106,1,0,0,0,2109,2114,3,316,158,0, + 2110,2111,5,397,0,0,2111,2113,3,316,158,0,2112,2110,1,0,0,0,2113, + 2116,1,0,0,0,2114,2112,1,0,0,0,2114,2115,1,0,0,0,2115,251,1,0,0, + 0,2116,2114,1,0,0,0,2117,2122,3,344,172,0,2118,2119,5,397,0,0,2119, + 2121,3,344,172,0,2120,2118,1,0,0,0,2121,2124,1,0,0,0,2122,2120,1, + 0,0,0,2122,2123,1,0,0,0,2123,253,1,0,0,0,2124,2122,1,0,0,0,2125, + 2130,3,256,128,0,2126,2127,5,397,0,0,2127,2129,3,256,128,0,2128, + 2126,1,0,0,0,2129,2132,1,0,0,0,2130,2128,1,0,0,0,2130,2131,1,0,0, + 0,2131,255,1,0,0,0,2132,2130,1,0,0,0,2133,2137,3,706,353,0,2134, + 2135,4,128,0,0,2135,2137,3,702,351,0,2136,2133,1,0,0,0,2136,2134, + 1,0,0,0,2137,257,1,0,0,0,2138,2139,3,704,352,0,2139,259,1,0,0,0, + 2140,2144,3,706,353,0,2141,2142,4,130,1,0,2142,2144,3,702,351,0, + 2143,2140,1,0,0,0,2143,2141,1,0,0,0,2144,261,1,0,0,0,2145,2146,3, + 654,327,0,2146,263,1,0,0,0,2147,2157,3,256,128,0,2148,2153,5,395, + 0,0,2149,2154,5,104,0,0,2150,2154,5,175,0,0,2151,2154,5,375,0,0, + 2152,2154,3,654,327,0,2153,2149,1,0,0,0,2153,2150,1,0,0,0,2153,2151, + 1,0,0,0,2153,2152,1,0,0,0,2154,2156,1,0,0,0,2155,2148,1,0,0,0,2156, + 2159,1,0,0,0,2157,2155,1,0,0,0,2157,2158,1,0,0,0,2158,265,1,0,0, + 0,2159,2157,1,0,0,0,2160,2165,3,306,153,0,2161,2162,5,397,0,0,2162, + 2164,3,306,153,0,2163,2161,1,0,0,0,2164,2167,1,0,0,0,2165,2163,1, + 0,0,0,2165,2166,1,0,0,0,2166,267,1,0,0,0,2167,2165,1,0,0,0,2168, + 2169,5,399,0,0,2169,2170,3,254,127,0,2170,2171,5,400,0,0,2171,269, + 1,0,0,0,2172,2174,3,272,136,0,2173,2175,3,274,137,0,2174,2173,1, + 0,0,0,2174,2175,1,0,0,0,2175,2178,1,0,0,0,2176,2178,3,276,138,0, + 2177,2172,1,0,0,0,2177,2176,1,0,0,0,2178,271,1,0,0,0,2179,2182,3, + 682,341,0,2180,2182,3,684,342,0,2181,2179,1,0,0,0,2181,2180,1,0, + 0,0,2182,273,1,0,0,0,2183,2184,7,15,0,0,2184,275,1,0,0,0,2185,2189, + 5,109,0,0,2186,2187,5,216,0,0,2187,2189,5,109,0,0,2188,2185,1,0, + 0,0,2188,2186,1,0,0,0,2189,277,1,0,0,0,2190,2191,7,16,0,0,2191,279, + 1,0,0,0,2192,2193,5,55,0,0,2193,2195,3,654,327,0,2194,2192,1,0,0, + 0,2194,2195,1,0,0,0,2195,2196,1,0,0,0,2196,2198,3,284,142,0,2197, + 2199,3,340,170,0,2198,2197,1,0,0,0,2198,2199,1,0,0,0,2199,281,1, + 0,0,0,2200,2201,5,55,0,0,2201,2202,3,654,327,0,2202,2204,3,284,142, + 0,2203,2205,3,342,171,0,2204,2203,1,0,0,0,2204,2205,1,0,0,0,2205, + 283,1,0,0,0,2206,2209,3,286,143,0,2207,2209,3,288,144,0,2208,2206, + 1,0,0,0,2208,2207,1,0,0,0,2209,285,1,0,0,0,2210,2211,3,338,169,0, + 2211,2212,3,268,134,0,2212,287,1,0,0,0,2213,2214,5,40,0,0,2214,2215, + 5,399,0,0,2215,2216,3,596,298,0,2216,2217,5,400,0,0,2217,289,1,0, + 0,0,2218,2219,5,55,0,0,2219,2221,3,654,327,0,2220,2218,1,0,0,0,2220, + 2221,1,0,0,0,2221,2222,1,0,0,0,2222,2223,5,136,0,0,2223,2224,5,173, + 0,0,2224,2225,3,268,134,0,2225,2226,5,269,0,0,2226,2227,3,482,241, + 0,2227,2229,3,268,134,0,2228,2230,3,340,170,0,2229,2228,1,0,0,0, + 2229,2230,1,0,0,0,2230,291,1,0,0,0,2231,2232,5,55,0,0,2232,2233, + 3,654,327,0,2233,2234,5,136,0,0,2234,2235,5,173,0,0,2235,2236,3, + 268,134,0,2236,2237,5,269,0,0,2237,2238,3,482,241,0,2238,2240,3, + 268,134,0,2239,2241,3,342,171,0,2240,2239,1,0,0,0,2240,2241,1,0, + 0,0,2241,293,1,0,0,0,2242,2245,3,300,150,0,2243,2245,3,296,148,0, + 2244,2242,1,0,0,0,2244,2243,1,0,0,0,2245,295,1,0,0,0,2246,2251,3, + 298,149,0,2247,2248,5,397,0,0,2248,2250,3,298,149,0,2249,2247,1, + 0,0,0,2250,2253,1,0,0,0,2251,2249,1,0,0,0,2251,2252,1,0,0,0,2252, + 297,1,0,0,0,2253,2251,1,0,0,0,2254,2255,5,399,0,0,2255,2256,3,300, + 150,0,2256,2257,5,400,0,0,2257,299,1,0,0,0,2258,2263,3,588,294,0, + 2259,2260,5,397,0,0,2260,2262,3,588,294,0,2261,2259,1,0,0,0,2262, + 2265,1,0,0,0,2263,2261,1,0,0,0,2263,2264,1,0,0,0,2264,301,1,0,0, + 0,2265,2263,1,0,0,0,2266,2267,7,17,0,0,2267,303,1,0,0,0,2268,2269, + 5,220,0,0,2269,2270,7,18,0,0,2270,305,1,0,0,0,2271,2273,3,256,128, + 0,2272,2274,3,302,151,0,2273,2272,1,0,0,0,2273,2274,1,0,0,0,2274, + 2276,1,0,0,0,2275,2277,3,304,152,0,2276,2275,1,0,0,0,2276,2277,1, + 0,0,0,2277,307,1,0,0,0,2278,2283,3,310,155,0,2279,2280,5,397,0,0, + 2280,2282,3,310,155,0,2281,2279,1,0,0,0,2282,2285,1,0,0,0,2283,2281, + 1,0,0,0,2283,2284,1,0,0,0,2284,309,1,0,0,0,2285,2283,1,0,0,0,2286, + 2289,3,262,131,0,2287,2288,5,47,0,0,2288,2290,5,426,0,0,2289,2287, + 1,0,0,0,2289,2290,1,0,0,0,2290,311,1,0,0,0,2291,2294,3,256,128,0, + 2292,2294,3,596,298,0,2293,2291,1,0,0,0,2293,2292,1,0,0,0,2294,2296, + 1,0,0,0,2295,2297,3,302,151,0,2296,2295,1,0,0,0,2296,2297,1,0,0, + 0,2297,2299,1,0,0,0,2298,2300,3,304,152,0,2299,2298,1,0,0,0,2299, + 2300,1,0,0,0,2300,313,1,0,0,0,2301,2302,3,262,131,0,2302,2305,3, + 346,173,0,2303,2304,5,47,0,0,2304,2306,5,426,0,0,2305,2303,1,0,0, + 0,2305,2306,1,0,0,0,2306,315,1,0,0,0,2307,2310,3,318,159,0,2308, + 2310,3,320,160,0,2309,2307,1,0,0,0,2309,2308,1,0,0,0,2310,317,1, + 0,0,0,2311,2314,3,290,145,0,2312,2314,3,280,140,0,2313,2311,1,0, + 0,0,2313,2312,1,0,0,0,2314,319,1,0,0,0,2315,2316,3,262,131,0,2316, + 2318,3,346,173,0,2317,2319,3,322,161,0,2318,2317,1,0,0,0,2318,2319, + 1,0,0,0,2319,2322,1,0,0,0,2320,2321,5,47,0,0,2321,2323,5,426,0,0, + 2322,2320,1,0,0,0,2322,2323,1,0,0,0,2323,321,1,0,0,0,2324,2327,3, + 324,162,0,2325,2327,3,326,163,0,2326,2324,1,0,0,0,2326,2325,1,0, + 0,0,2327,323,1,0,0,0,2328,2329,5,55,0,0,2329,2331,3,654,327,0,2330, + 2328,1,0,0,0,2330,2331,1,0,0,0,2331,2332,1,0,0,0,2332,2333,5,269, + 0,0,2333,2334,3,482,241,0,2334,2335,5,399,0,0,2335,2336,3,256,128, + 0,2336,2338,5,400,0,0,2337,2339,3,340,170,0,2338,2337,1,0,0,0,2338, + 2339,1,0,0,0,2339,325,1,0,0,0,2340,2341,5,55,0,0,2341,2343,3,654, + 327,0,2342,2340,1,0,0,0,2342,2343,1,0,0,0,2343,2344,1,0,0,0,2344, + 2346,3,334,167,0,2345,2347,3,340,170,0,2346,2345,1,0,0,0,2346,2347, + 1,0,0,0,2347,327,1,0,0,0,2348,2351,3,330,165,0,2349,2351,3,332,166, + 0,2350,2348,1,0,0,0,2350,2349,1,0,0,0,2351,329,1,0,0,0,2352,2353, + 5,55,0,0,2353,2355,3,654,327,0,2354,2352,1,0,0,0,2354,2355,1,0,0, + 0,2355,2356,1,0,0,0,2356,2357,5,269,0,0,2357,2358,3,482,241,0,2358, + 2359,5,399,0,0,2359,2360,3,256,128,0,2360,2362,5,400,0,0,2361,2363, + 3,342,171,0,2362,2361,1,0,0,0,2362,2363,1,0,0,0,2363,331,1,0,0,0, + 2364,2365,5,55,0,0,2365,2367,3,654,327,0,2366,2364,1,0,0,0,2366, + 2367,1,0,0,0,2367,2368,1,0,0,0,2368,2370,3,334,167,0,2369,2371,3, + 342,171,0,2370,2369,1,0,0,0,2370,2371,1,0,0,0,2371,333,1,0,0,0,2372, + 2373,5,216,0,0,2373,2379,5,219,0,0,2374,2375,5,83,0,0,2375,2379, + 3,336,168,0,2376,2379,3,288,144,0,2377,2379,3,338,169,0,2378,2372, + 1,0,0,0,2378,2374,1,0,0,0,2378,2376,1,0,0,0,2378,2377,1,0,0,0,2379, + 335,1,0,0,0,2380,2384,3,588,294,0,2381,2384,3,566,283,0,2382,2384, + 3,576,288,0,2383,2380,1,0,0,0,2383,2381,1,0,0,0,2383,2382,1,0,0, + 0,2384,337,1,0,0,0,2385,2386,5,251,0,0,2386,2389,5,173,0,0,2387, + 2389,5,358,0,0,2388,2385,1,0,0,0,2388,2387,1,0,0,0,2389,339,1,0, + 0,0,2390,2392,3,270,135,0,2391,2393,3,278,139,0,2392,2391,1,0,0, + 0,2392,2393,1,0,0,0,2393,341,1,0,0,0,2394,2396,3,270,135,0,2395, + 2397,3,278,139,0,2396,2395,1,0,0,0,2396,2397,1,0,0,0,2397,343,1, + 0,0,0,2398,2399,3,262,131,0,2399,2400,5,396,0,0,2400,2403,3,346, + 173,0,2401,2402,5,47,0,0,2402,2404,5,426,0,0,2403,2401,1,0,0,0,2403, + 2404,1,0,0,0,2404,345,1,0,0,0,2405,2406,3,350,175,0,2406,347,1,0, + 0,0,2407,2412,3,346,173,0,2408,2409,5,397,0,0,2409,2411,3,346,173, + 0,2410,2408,1,0,0,0,2411,2414,1,0,0,0,2412,2410,1,0,0,0,2412,2413, + 1,0,0,0,2413,349,1,0,0,0,2414,2412,1,0,0,0,2415,2421,3,352,176,0, + 2416,2421,3,354,177,0,2417,2421,3,356,178,0,2418,2421,3,358,179, + 0,2419,2421,3,360,180,0,2420,2415,1,0,0,0,2420,2416,1,0,0,0,2420, + 2417,1,0,0,0,2420,2418,1,0,0,0,2420,2419,1,0,0,0,2421,351,1,0,0, + 0,2422,2460,5,340,0,0,2423,2460,5,311,0,0,2424,2460,5,162,0,0,2425, + 2460,5,163,0,0,2426,2460,5,26,0,0,2427,2460,5,28,0,0,2428,2460,5, + 131,0,0,2429,2460,5,264,0,0,2430,2432,5,100,0,0,2431,2433,5,248, + 0,0,2432,2431,1,0,0,0,2432,2433,1,0,0,0,2433,2460,1,0,0,0,2434,2460, + 5,71,0,0,2435,2460,5,72,0,0,2436,2460,5,337,0,0,2437,2460,5,338, + 0,0,2438,2439,5,337,0,0,2439,2440,5,387,0,0,2440,2441,5,188,0,0, + 2441,2442,5,336,0,0,2442,2460,5,394,0,0,2443,2460,5,323,0,0,2444, + 2460,5,27,0,0,2445,2453,3,700,350,0,2446,2447,5,399,0,0,2447,2450, + 5,431,0,0,2448,2449,5,397,0,0,2449,2451,5,431,0,0,2450,2448,1,0, + 0,0,2450,2451,1,0,0,0,2451,2452,1,0,0,0,2452,2454,5,400,0,0,2453, + 2446,1,0,0,0,2453,2454,1,0,0,0,2454,2460,1,0,0,0,2455,2456,7,19, + 0,0,2456,2457,5,399,0,0,2457,2458,5,431,0,0,2458,2460,5,400,0,0, + 2459,2422,1,0,0,0,2459,2423,1,0,0,0,2459,2424,1,0,0,0,2459,2425, + 1,0,0,0,2459,2426,1,0,0,0,2459,2427,1,0,0,0,2459,2428,1,0,0,0,2459, + 2429,1,0,0,0,2459,2430,1,0,0,0,2459,2434,1,0,0,0,2459,2435,1,0,0, + 0,2459,2436,1,0,0,0,2459,2437,1,0,0,0,2459,2438,1,0,0,0,2459,2443, + 1,0,0,0,2459,2444,1,0,0,0,2459,2445,1,0,0,0,2459,2455,1,0,0,0,2460, + 353,1,0,0,0,2461,2462,5,16,0,0,2462,2463,5,409,0,0,2463,2464,3,350, + 175,0,2464,2465,5,411,0,0,2465,355,1,0,0,0,2466,2467,5,324,0,0,2467, + 2468,5,409,0,0,2468,2469,3,252,126,0,2469,2470,5,411,0,0,2470,357, + 1,0,0,0,2471,2472,5,198,0,0,2472,2473,5,409,0,0,2473,2474,3,352, + 176,0,2474,2475,5,397,0,0,2475,2476,3,350,175,0,2476,2477,5,411, + 0,0,2477,359,1,0,0,0,2478,2479,5,357,0,0,2479,2480,5,409,0,0,2480, + 2481,3,348,174,0,2481,2482,5,411,0,0,2482,361,1,0,0,0,2483,2485, + 7,20,0,0,2484,2486,7,21,0,0,2485,2484,1,0,0,0,2485,2486,1,0,0,0, + 2486,363,1,0,0,0,2487,2489,3,368,184,0,2488,2487,1,0,0,0,2488,2489, + 1,0,0,0,2489,2490,1,0,0,0,2490,2491,3,366,183,0,2491,365,1,0,0,0, + 2492,2495,3,372,186,0,2493,2495,3,376,188,0,2494,2492,1,0,0,0,2494, + 2493,1,0,0,0,2495,367,1,0,0,0,2496,2497,5,387,0,0,2497,2502,3,370, + 185,0,2498,2499,5,397,0,0,2499,2501,3,370,185,0,2500,2498,1,0,0, + 0,2501,2504,1,0,0,0,2502,2500,1,0,0,0,2502,2503,1,0,0,0,2503,369, + 1,0,0,0,2504,2502,1,0,0,0,2505,2510,3,654,327,0,2506,2507,5,399, + 0,0,2507,2508,3,254,127,0,2508,2509,5,400,0,0,2509,2511,1,0,0,0, + 2510,2506,1,0,0,0,2510,2511,1,0,0,0,2511,2512,1,0,0,0,2512,2513, + 5,17,0,0,2513,2514,5,399,0,0,2514,2515,3,364,182,0,2515,2516,5,400, + 0,0,2516,371,1,0,0,0,2517,2523,3,374,187,0,2518,2519,3,362,181,0, + 2519,2520,3,374,187,0,2520,2522,1,0,0,0,2521,2518,1,0,0,0,2522,2525, + 1,0,0,0,2523,2521,1,0,0,0,2523,2524,1,0,0,0,2524,373,1,0,0,0,2525, + 2523,1,0,0,0,2526,2527,3,452,226,0,2527,2528,3,386,193,0,2528,2530, + 3,508,254,0,2529,2531,3,466,233,0,2530,2529,1,0,0,0,2530,2531,1, + 0,0,0,2531,2533,1,0,0,0,2532,2534,3,500,250,0,2533,2532,1,0,0,0, + 2533,2534,1,0,0,0,2534,2536,1,0,0,0,2535,2537,3,534,267,0,2536,2535, + 1,0,0,0,2536,2537,1,0,0,0,2537,2539,1,0,0,0,2538,2540,3,542,271, + 0,2539,2538,1,0,0,0,2539,2540,1,0,0,0,2540,2542,1,0,0,0,2541,2543, + 3,526,263,0,2542,2541,1,0,0,0,2542,2543,1,0,0,0,2543,2545,1,0,0, + 0,2544,2546,3,544,272,0,2545,2544,1,0,0,0,2545,2546,1,0,0,0,2546, + 2548,1,0,0,0,2547,2549,3,556,278,0,2548,2547,1,0,0,0,2548,2549,1, + 0,0,0,2549,2551,1,0,0,0,2550,2552,3,560,280,0,2551,2550,1,0,0,0, + 2551,2552,1,0,0,0,2552,2554,1,0,0,0,2553,2555,3,562,281,0,2554,2553, + 1,0,0,0,2554,2555,1,0,0,0,2555,2557,1,0,0,0,2556,2558,3,564,282, + 0,2557,2556,1,0,0,0,2557,2558,1,0,0,0,2558,2560,1,0,0,0,2559,2561, + 3,390,195,0,2560,2559,1,0,0,0,2560,2561,1,0,0,0,2561,2598,1,0,0, + 0,2562,2563,3,452,226,0,2563,2565,3,508,254,0,2564,2566,3,466,233, + 0,2565,2564,1,0,0,0,2565,2566,1,0,0,0,2566,2568,1,0,0,0,2567,2569, + 3,500,250,0,2568,2567,1,0,0,0,2568,2569,1,0,0,0,2569,2571,1,0,0, + 0,2570,2572,3,534,267,0,2571,2570,1,0,0,0,2571,2572,1,0,0,0,2572, + 2574,1,0,0,0,2573,2575,3,542,271,0,2574,2573,1,0,0,0,2574,2575,1, + 0,0,0,2575,2577,1,0,0,0,2576,2578,3,526,263,0,2577,2576,1,0,0,0, + 2577,2578,1,0,0,0,2578,2580,1,0,0,0,2579,2581,3,544,272,0,2580,2579, + 1,0,0,0,2580,2581,1,0,0,0,2581,2583,1,0,0,0,2582,2584,3,556,278, + 0,2583,2582,1,0,0,0,2583,2584,1,0,0,0,2584,2586,1,0,0,0,2585,2587, + 3,560,280,0,2586,2585,1,0,0,0,2586,2587,1,0,0,0,2587,2589,1,0,0, + 0,2588,2590,3,562,281,0,2589,2588,1,0,0,0,2589,2590,1,0,0,0,2590, + 2592,1,0,0,0,2591,2593,3,564,282,0,2592,2591,1,0,0,0,2592,2593,1, + 0,0,0,2593,2595,1,0,0,0,2594,2596,3,390,195,0,2595,2594,1,0,0,0, + 2595,2596,1,0,0,0,2596,2598,1,0,0,0,2597,2526,1,0,0,0,2597,2562, + 1,0,0,0,2598,375,1,0,0,0,2599,2600,3,386,193,0,2600,2601,3,380,190, + 0,2601,2604,1,0,0,0,2602,2604,3,380,190,0,2603,2599,1,0,0,0,2603, + 2602,1,0,0,0,2604,377,1,0,0,0,2605,2607,3,508,254,0,2606,2608,3, + 452,226,0,2607,2606,1,0,0,0,2607,2608,1,0,0,0,2608,2610,1,0,0,0, + 2609,2611,3,500,250,0,2610,2609,1,0,0,0,2610,2611,1,0,0,0,2611,2613, + 1,0,0,0,2612,2614,3,534,267,0,2613,2612,1,0,0,0,2613,2614,1,0,0, + 0,2614,2616,1,0,0,0,2615,2617,3,542,271,0,2616,2615,1,0,0,0,2616, + 2617,1,0,0,0,2617,2619,1,0,0,0,2618,2620,3,526,263,0,2619,2618,1, + 0,0,0,2619,2620,1,0,0,0,2620,2622,1,0,0,0,2621,2623,3,544,272,0, + 2622,2621,1,0,0,0,2622,2623,1,0,0,0,2623,2630,1,0,0,0,2624,2625, + 5,399,0,0,2625,2626,3,380,190,0,2626,2627,5,400,0,0,2627,2630,1, + 0,0,0,2628,2630,3,502,251,0,2629,2605,1,0,0,0,2629,2624,1,0,0,0, + 2629,2628,1,0,0,0,2630,379,1,0,0,0,2631,2633,3,378,189,0,2632,2634, + 3,382,191,0,2633,2632,1,0,0,0,2633,2634,1,0,0,0,2634,2636,1,0,0, + 0,2635,2637,3,556,278,0,2636,2635,1,0,0,0,2636,2637,1,0,0,0,2637, + 2639,1,0,0,0,2638,2640,3,560,280,0,2639,2638,1,0,0,0,2639,2640,1, + 0,0,0,2640,2642,1,0,0,0,2641,2643,3,562,281,0,2642,2641,1,0,0,0, + 2642,2643,1,0,0,0,2643,2645,1,0,0,0,2644,2646,3,564,282,0,2645,2644, + 1,0,0,0,2645,2646,1,0,0,0,2646,2648,1,0,0,0,2647,2649,3,390,195, + 0,2648,2647,1,0,0,0,2648,2649,1,0,0,0,2649,381,1,0,0,0,2650,2651, + 3,362,181,0,2651,2652,3,378,189,0,2652,2654,1,0,0,0,2653,2650,1, + 0,0,0,2654,2655,1,0,0,0,2655,2653,1,0,0,0,2655,2656,1,0,0,0,2656, + 383,1,0,0,0,2657,2659,3,368,184,0,2658,2657,1,0,0,0,2658,2659,1, + 0,0,0,2659,2660,1,0,0,0,2660,2661,3,380,190,0,2661,385,1,0,0,0,2662, + 2679,5,161,0,0,2663,2664,5,235,0,0,2664,2666,3,388,194,0,2665,2667, + 3,32,16,0,2666,2665,1,0,0,0,2666,2667,1,0,0,0,2667,2680,1,0,0,0, + 2668,2670,5,166,0,0,2669,2671,5,329,0,0,2670,2669,1,0,0,0,2670,2671, + 1,0,0,0,2671,2672,1,0,0,0,2672,2677,3,640,320,0,2673,2674,5,399, + 0,0,2674,2675,3,254,127,0,2675,2676,5,400,0,0,2676,2678,1,0,0,0, + 2677,2673,1,0,0,0,2677,2678,1,0,0,0,2678,2680,1,0,0,0,2679,2663, + 1,0,0,0,2679,2668,1,0,0,0,2680,387,1,0,0,0,2681,2683,5,188,0,0,2682, + 2681,1,0,0,0,2682,2683,1,0,0,0,2683,2684,1,0,0,0,2684,2685,5,93, + 0,0,2685,2687,5,426,0,0,2686,2688,3,222,111,0,2687,2686,1,0,0,0, + 2687,2688,1,0,0,0,2688,2690,1,0,0,0,2689,2691,3,246,123,0,2690,2689, + 1,0,0,0,2690,2691,1,0,0,0,2691,2695,1,0,0,0,2692,2693,5,329,0,0, + 2693,2695,3,640,320,0,2694,2682,1,0,0,0,2694,2692,1,0,0,0,2695,389, + 1,0,0,0,2696,2705,5,185,0,0,2697,2698,5,431,0,0,2698,2700,5,397, + 0,0,2699,2697,1,0,0,0,2699,2700,1,0,0,0,2700,2701,1,0,0,0,2701,2706, + 5,431,0,0,2702,2703,5,431,0,0,2703,2704,5,223,0,0,2704,2706,5,431, + 0,0,2705,2699,1,0,0,0,2705,2702,1,0,0,0,2706,391,1,0,0,0,2707,2708, + 3,256,128,0,2708,2709,5,405,0,0,2709,2710,3,394,197,0,2710,393,1, + 0,0,0,2711,2714,5,83,0,0,2712,2714,3,606,303,0,2713,2711,1,0,0,0, + 2713,2712,1,0,0,0,2714,395,1,0,0,0,2715,2716,5,304,0,0,2716,2721, + 3,392,196,0,2717,2718,5,397,0,0,2718,2720,3,392,196,0,2719,2717, + 1,0,0,0,2720,2723,1,0,0,0,2721,2719,1,0,0,0,2721,2722,1,0,0,0,2722, + 397,1,0,0,0,2723,2721,1,0,0,0,2724,2725,5,318,0,0,2725,2734,5,344, + 0,0,2726,2731,3,400,200,0,2727,2728,5,397,0,0,2728,2730,3,400,200, + 0,2729,2727,1,0,0,0,2730,2733,1,0,0,0,2731,2729,1,0,0,0,2731,2732, + 1,0,0,0,2732,2735,1,0,0,0,2733,2731,1,0,0,0,2734,2726,1,0,0,0,2734, + 2735,1,0,0,0,2735,2748,1,0,0,0,2736,2738,5,48,0,0,2737,2739,5,389, + 0,0,2738,2737,1,0,0,0,2738,2739,1,0,0,0,2739,2748,1,0,0,0,2740,2742, + 5,289,0,0,2741,2743,5,389,0,0,2742,2741,1,0,0,0,2742,2743,1,0,0, + 0,2743,2748,1,0,0,0,2744,2745,5,304,0,0,2745,2746,5,22,0,0,2746, + 2748,7,22,0,0,2747,2724,1,0,0,0,2747,2736,1,0,0,0,2747,2740,1,0, + 0,0,2747,2744,1,0,0,0,2748,399,1,0,0,0,2749,2750,5,168,0,0,2750, + 2751,5,182,0,0,2751,2755,5,312,0,0,2752,2753,5,261,0,0,2753,2755, + 7,23,0,0,2754,2749,1,0,0,0,2754,2752,1,0,0,0,2755,401,1,0,0,0,2756, + 2759,3,406,203,0,2757,2759,3,408,204,0,2758,2756,1,0,0,0,2758,2757, + 1,0,0,0,2759,2762,1,0,0,0,2760,2758,1,0,0,0,2760,2761,1,0,0,0,2761, + 2764,1,0,0,0,2762,2760,1,0,0,0,2763,2765,3,404,202,0,2764,2763,1, + 0,0,0,2764,2765,1,0,0,0,2765,403,1,0,0,0,2766,2767,5,383,0,0,2767, + 2768,5,216,0,0,2768,2771,5,201,0,0,2769,2770,5,11,0,0,2770,2772, + 3,596,298,0,2771,2769,1,0,0,0,2771,2772,1,0,0,0,2772,2773,1,0,0, + 0,2773,2774,5,335,0,0,2774,2776,5,161,0,0,2775,2777,3,268,134,0, + 2776,2775,1,0,0,0,2776,2777,1,0,0,0,2777,2778,1,0,0,0,2778,2779, + 5,374,0,0,2779,2780,3,552,276,0,2780,405,1,0,0,0,2781,2782,5,383, + 0,0,2782,2783,5,201,0,0,2783,2784,5,11,0,0,2784,2785,3,596,298,0, + 2785,2789,5,335,0,0,2786,2787,5,365,0,0,2787,2790,3,396,198,0,2788, + 2790,5,86,0,0,2789,2786,1,0,0,0,2789,2788,1,0,0,0,2790,407,1,0,0, + 0,2791,2792,5,383,0,0,2792,2793,5,201,0,0,2793,2797,5,335,0,0,2794, + 2795,5,365,0,0,2795,2798,3,396,198,0,2796,2798,5,86,0,0,2797,2794, + 1,0,0,0,2797,2796,1,0,0,0,2798,409,1,0,0,0,2799,2800,5,246,0,0,2800, + 2801,5,426,0,0,2801,411,1,0,0,0,2802,2803,5,352,0,0,2803,2804,5, + 426,0,0,2804,413,1,0,0,0,2805,2806,5,320,0,0,2806,2807,5,426,0,0, + 2807,415,1,0,0,0,2808,2839,5,9,0,0,2809,2810,5,329,0,0,2810,2811, + 3,482,241,0,2811,2812,3,418,209,0,2812,2840,1,0,0,0,2813,2814,5, + 378,0,0,2814,2816,3,486,243,0,2815,2817,5,17,0,0,2816,2815,1,0,0, + 0,2816,2817,1,0,0,0,2817,2818,1,0,0,0,2818,2819,3,422,211,0,2819, + 2840,1,0,0,0,2820,2821,5,202,0,0,2821,2822,5,378,0,0,2822,2826,3, + 486,243,0,2823,2827,3,36,18,0,2824,2827,3,38,19,0,2825,2827,5,265, + 0,0,2826,2823,1,0,0,0,2826,2824,1,0,0,0,2826,2825,1,0,0,0,2827,2840, + 1,0,0,0,2828,2829,3,70,35,0,2829,2830,3,424,212,0,2830,2840,1,0, + 0,0,2831,2832,5,69,0,0,2832,2840,3,426,213,0,2833,2834,5,155,0,0, + 2834,2835,3,654,327,0,2835,2836,5,224,0,0,2836,2837,3,640,320,0, + 2837,2838,5,265,0,0,2838,2840,1,0,0,0,2839,2809,1,0,0,0,2839,2813, + 1,0,0,0,2839,2820,1,0,0,0,2839,2828,1,0,0,0,2839,2831,1,0,0,0,2839, + 2833,1,0,0,0,2840,417,1,0,0,0,2841,2842,5,274,0,0,2842,2843,5,341, + 0,0,2843,2931,3,484,242,0,2844,2845,5,102,0,0,2845,2931,5,239,0, + 0,2846,2931,3,430,215,0,2847,2849,5,4,0,0,2848,2850,3,32,16,0,2849, + 2848,1,0,0,0,2849,2850,1,0,0,0,2850,2855,1,0,0,0,2851,2853,3,642, + 321,0,2852,2854,3,428,214,0,2853,2852,1,0,0,0,2853,2854,1,0,0,0, + 2854,2856,1,0,0,0,2855,2851,1,0,0,0,2856,2857,1,0,0,0,2857,2855, + 1,0,0,0,2857,2858,1,0,0,0,2858,2931,1,0,0,0,2859,2863,5,342,0,0, + 2860,2862,3,642,321,0,2861,2860,1,0,0,0,2862,2865,1,0,0,0,2863,2861, + 1,0,0,0,2863,2864,1,0,0,0,2864,2931,1,0,0,0,2865,2863,1,0,0,0,2866, + 2870,5,15,0,0,2867,2869,3,642,321,0,2868,2867,1,0,0,0,2869,2872, + 1,0,0,0,2870,2868,1,0,0,0,2870,2871,1,0,0,0,2871,2931,1,0,0,0,2872, + 2870,1,0,0,0,2873,2877,5,353,0,0,2874,2876,3,642,321,0,2875,2874, + 1,0,0,0,2876,2879,1,0,0,0,2877,2875,1,0,0,0,2877,2878,1,0,0,0,2878, + 2931,1,0,0,0,2879,2877,1,0,0,0,2880,2881,5,304,0,0,2881,2882,5,332, + 0,0,2882,2931,3,226,113,0,2883,2884,5,363,0,0,2884,2886,5,332,0, + 0,2885,2887,3,30,15,0,2886,2885,1,0,0,0,2886,2887,1,0,0,0,2887,2888, + 1,0,0,0,2888,2931,3,226,113,0,2889,2931,3,210,105,0,2890,2893,5, + 216,0,0,2891,2894,5,310,0,0,2892,2894,3,40,20,0,2893,2891,1,0,0, + 0,2893,2892,1,0,0,0,2894,2931,1,0,0,0,2895,2896,5,113,0,0,2896,2897, + 3,642,321,0,2897,2898,5,387,0,0,2898,2899,5,329,0,0,2899,2900,3, + 482,241,0,2900,2931,1,0,0,0,2901,2902,5,237,0,0,2902,2903,5,45,0, + 0,2903,2904,5,399,0,0,2904,2905,3,314,157,0,2905,2906,5,400,0,0, + 2906,2931,1,0,0,0,2907,2908,5,101,0,0,2908,2909,5,55,0,0,2909,2931, + 3,654,327,0,2910,2913,5,4,0,0,2911,2914,3,292,146,0,2912,2914,3, + 282,141,0,2913,2911,1,0,0,0,2913,2912,1,0,0,0,2914,2931,1,0,0,0, + 2915,2917,3,642,321,0,2916,2915,1,0,0,0,2916,2917,1,0,0,0,2917,2918, + 1,0,0,0,2918,2931,3,420,210,0,2919,2920,5,304,0,0,2920,2921,5,236, + 0,0,2921,2931,3,126,63,0,2922,2923,5,304,0,0,2923,2924,5,237,0,0, + 2924,2925,5,316,0,0,2925,2926,5,399,0,0,2926,2927,3,204,102,0,2927, + 2928,5,400,0,0,2928,2931,1,0,0,0,2929,2931,3,434,217,0,2930,2841, + 1,0,0,0,2930,2844,1,0,0,0,2930,2846,1,0,0,0,2930,2847,1,0,0,0,2930, + 2859,1,0,0,0,2930,2866,1,0,0,0,2930,2873,1,0,0,0,2930,2880,1,0,0, + 0,2930,2883,1,0,0,0,2930,2889,1,0,0,0,2930,2890,1,0,0,0,2930,2895, + 1,0,0,0,2930,2901,1,0,0,0,2930,2907,1,0,0,0,2930,2910,1,0,0,0,2930, + 2916,1,0,0,0,2930,2919,1,0,0,0,2930,2922,1,0,0,0,2930,2929,1,0,0, + 0,2931,419,1,0,0,0,2932,2933,5,304,0,0,2933,2934,5,129,0,0,2934, + 3065,3,436,218,0,2935,2936,5,304,0,0,2936,2937,5,189,0,0,2937,3065, + 5,426,0,0,2938,3065,5,53,0,0,2939,2949,5,304,0,0,2940,2941,5,301, + 0,0,2941,2945,5,426,0,0,2942,2943,5,387,0,0,2943,2944,5,302,0,0, + 2944,2946,3,226,113,0,2945,2942,1,0,0,0,2945,2946,1,0,0,0,2946,2950, + 1,0,0,0,2947,2948,5,302,0,0,2948,2950,3,226,113,0,2949,2940,1,0, + 0,0,2949,2947,1,0,0,0,2950,3065,1,0,0,0,2951,2952,5,363,0,0,2952, + 2953,5,302,0,0,2953,3065,3,226,113,0,2954,2955,5,274,0,0,2955,2956, + 5,341,0,0,2956,3065,3,642,321,0,2957,2958,5,166,0,0,2958,2959,5, + 431,0,0,2959,3065,5,31,0,0,2960,2961,5,304,0,0,2961,2962,5,310,0, + 0,2962,2963,5,189,0,0,2963,2964,5,399,0,0,2964,2969,3,432,216,0, + 2965,2966,5,397,0,0,2966,2968,3,432,216,0,2967,2965,1,0,0,0,2968, + 2971,1,0,0,0,2969,2967,1,0,0,0,2969,2970,1,0,0,0,2970,2972,1,0,0, + 0,2971,2969,1,0,0,0,2972,2973,5,400,0,0,2973,3065,1,0,0,0,2974,2975, + 5,216,0,0,2975,3065,7,24,0,0,2976,3065,3,208,104,0,2977,2978,5,49, + 0,0,2978,2981,5,426,0,0,2979,2980,5,11,0,0,2980,2982,5,380,0,0,2981, + 2979,1,0,0,0,2981,2982,1,0,0,0,2982,2987,1,0,0,0,2983,2984,5,42, + 0,0,2984,2985,5,166,0,0,2985,2986,5,431,0,0,2986,2988,5,31,0,0,2987, + 2983,1,0,0,0,2987,2988,1,0,0,0,2988,2990,1,0,0,0,2989,2991,3,556, + 278,0,2990,2989,1,0,0,0,2990,2991,1,0,0,0,2991,2993,1,0,0,0,2992, + 2994,3,410,205,0,2993,2992,1,0,0,0,2993,2994,1,0,0,0,2994,2999,1, + 0,0,0,2995,2996,5,387,0,0,2996,2997,5,235,0,0,2997,2998,5,332,0, + 0,2998,3000,3,226,113,0,2999,2995,1,0,0,0,2999,3000,1,0,0,0,3000, + 3065,1,0,0,0,3001,3002,5,365,0,0,3002,3003,5,319,0,0,3003,3005,5, + 134,0,0,3004,3006,5,45,0,0,3005,3004,1,0,0,0,3005,3006,1,0,0,0,3006, + 3007,1,0,0,0,3007,3008,3,256,128,0,3008,3009,5,304,0,0,3009,3012, + 3,226,113,0,3010,3011,5,47,0,0,3011,3013,5,426,0,0,3012,3010,1,0, + 0,0,3012,3013,1,0,0,0,3013,3065,1,0,0,0,3014,3015,5,365,0,0,3015, + 3016,5,319,0,0,3016,3017,5,304,0,0,3017,3065,3,226,113,0,3018,3020, + 5,38,0,0,3019,3021,5,45,0,0,3020,3019,1,0,0,0,3020,3021,1,0,0,0, + 3021,3022,1,0,0,0,3022,3023,3,256,128,0,3023,3024,3,262,131,0,3024, + 3026,3,346,173,0,3025,3027,3,328,164,0,3026,3025,1,0,0,0,3026,3027, + 1,0,0,0,3027,3030,1,0,0,0,3028,3029,5,47,0,0,3029,3031,5,426,0,0, + 3030,3028,1,0,0,0,3030,3031,1,0,0,0,3031,3035,1,0,0,0,3032,3036, + 5,130,0,0,3033,3034,5,6,0,0,3034,3036,3,654,327,0,3035,3032,1,0, + 0,0,3035,3033,1,0,0,0,3035,3036,1,0,0,0,3036,3038,1,0,0,0,3037,3039, + 3,34,17,0,3038,3037,1,0,0,0,3038,3039,1,0,0,0,3039,3065,1,0,0,0, + 3040,3043,5,4,0,0,3041,3043,5,278,0,0,3042,3040,1,0,0,0,3042,3041, + 1,0,0,0,3043,3044,1,0,0,0,3044,3045,5,46,0,0,3045,3046,5,399,0,0, + 3046,3047,3,248,124,0,3047,3049,5,400,0,0,3048,3050,3,34,17,0,3049, + 3048,1,0,0,0,3049,3050,1,0,0,0,3050,3065,1,0,0,0,3051,3052,5,365, + 0,0,3052,3054,5,46,0,0,3053,3055,3,34,17,0,3054,3053,1,0,0,0,3054, + 3055,1,0,0,0,3055,3065,1,0,0,0,3056,3062,3,272,136,0,3057,3059,5, + 218,0,0,3058,3060,5,34,0,0,3059,3058,1,0,0,0,3059,3060,1,0,0,0,3060, + 3063,1,0,0,0,3061,3063,5,222,0,0,3062,3057,1,0,0,0,3062,3061,1,0, + 0,0,3063,3065,1,0,0,0,3064,2932,1,0,0,0,3064,2935,1,0,0,0,3064,2938, + 1,0,0,0,3064,2939,1,0,0,0,3064,2951,1,0,0,0,3064,2954,1,0,0,0,3064, + 2957,1,0,0,0,3064,2960,1,0,0,0,3064,2974,1,0,0,0,3064,2976,1,0,0, + 0,3064,2977,1,0,0,0,3064,3001,1,0,0,0,3064,3014,1,0,0,0,3064,3018, + 1,0,0,0,3064,3042,1,0,0,0,3064,3051,1,0,0,0,3064,3056,1,0,0,0,3065, + 421,1,0,0,0,3066,3067,5,304,0,0,3067,3068,5,332,0,0,3068,3093,3, + 226,113,0,3069,3070,5,363,0,0,3070,3072,5,332,0,0,3071,3073,3,30, + 15,0,3072,3071,1,0,0,0,3072,3073,1,0,0,0,3073,3074,1,0,0,0,3074, + 3093,3,226,113,0,3075,3076,5,274,0,0,3076,3077,5,341,0,0,3077,3093, + 3,484,242,0,3078,3080,5,4,0,0,3079,3081,3,32,16,0,3080,3079,1,0, + 0,0,3080,3081,1,0,0,0,3081,3086,1,0,0,0,3082,3084,3,642,321,0,3083, + 3085,3,428,214,0,3084,3083,1,0,0,0,3084,3085,1,0,0,0,3085,3087,1, + 0,0,0,3086,3082,1,0,0,0,3087,3088,1,0,0,0,3088,3086,1,0,0,0,3088, + 3089,1,0,0,0,3089,3093,1,0,0,0,3090,3093,3,430,215,0,3091,3093,3, + 384,192,0,3092,3066,1,0,0,0,3092,3069,1,0,0,0,3092,3075,1,0,0,0, + 3092,3078,1,0,0,0,3092,3090,1,0,0,0,3092,3091,1,0,0,0,3093,423,1, + 0,0,0,3094,3095,3,476,238,0,3095,3096,5,304,0,0,3096,3097,5,76,0, + 0,3097,3098,3,230,115,0,3098,3110,1,0,0,0,3099,3100,3,476,238,0, + 3100,3101,5,304,0,0,3101,3102,5,236,0,0,3102,3103,3,128,64,0,3103, + 3110,1,0,0,0,3104,3105,3,476,238,0,3105,3106,5,304,0,0,3106,3107, + 7,25,0,0,3107,3108,5,426,0,0,3108,3110,1,0,0,0,3109,3094,1,0,0,0, + 3109,3099,1,0,0,0,3109,3104,1,0,0,0,3110,425,1,0,0,0,3111,3112,3, + 476,238,0,3112,3113,5,304,0,0,3113,3114,5,77,0,0,3114,3115,3,230, + 115,0,3115,3127,1,0,0,0,3116,3117,3,476,238,0,3117,3118,5,304,0, + 0,3118,3119,5,236,0,0,3119,3120,3,128,64,0,3120,3127,1,0,0,0,3121, + 3122,3,476,238,0,3122,3123,5,304,0,0,3123,3124,5,367,0,0,3124,3125, + 5,426,0,0,3125,3127,1,0,0,0,3126,3111,1,0,0,0,3126,3116,1,0,0,0, + 3126,3121,1,0,0,0,3127,427,1,0,0,0,3128,3129,5,189,0,0,3129,3130, + 5,426,0,0,3130,429,1,0,0,0,3131,3133,5,101,0,0,3132,3134,3,30,15, + 0,3133,3132,1,0,0,0,3133,3134,1,0,0,0,3134,3135,1,0,0,0,3135,3136, + 5,237,0,0,3136,3142,3,646,323,0,3137,3138,5,397,0,0,3138,3139,5, + 237,0,0,3139,3141,3,646,323,0,3140,3137,1,0,0,0,3141,3144,1,0,0, + 0,3142,3140,1,0,0,0,3142,3143,1,0,0,0,3143,3147,1,0,0,0,3144,3142, + 1,0,0,0,3145,3146,5,152,0,0,3146,3148,5,254,0,0,3147,3145,1,0,0, + 0,3147,3148,1,0,0,0,3148,3150,1,0,0,0,3149,3151,5,255,0,0,3150,3149, + 1,0,0,0,3150,3151,1,0,0,0,3151,3153,1,0,0,0,3152,3154,3,14,7,0,3153, + 3152,1,0,0,0,3153,3154,1,0,0,0,3154,431,1,0,0,0,3155,3158,3,588, + 294,0,3156,3158,3,298,149,0,3157,3155,1,0,0,0,3157,3156,1,0,0,0, + 3158,3159,1,0,0,0,3159,3160,5,405,0,0,3160,3161,5,426,0,0,3161,433, + 1,0,0,0,3162,3172,5,115,0,0,3163,3164,5,289,0,0,3164,3165,5,399, + 0,0,3165,3173,7,26,0,0,3166,3167,5,118,0,0,3167,3168,5,399,0,0,3168, + 3173,5,426,0,0,3169,3170,5,306,0,0,3170,3171,5,399,0,0,3171,3173, + 5,431,0,0,3172,3163,1,0,0,0,3172,3166,1,0,0,0,3172,3169,1,0,0,0, + 3173,3174,1,0,0,0,3174,3175,5,400,0,0,3175,435,1,0,0,0,3176,3177, + 5,160,0,0,3177,3178,5,426,0,0,3178,3179,5,233,0,0,3179,3180,5,426, + 0,0,3180,3181,5,301,0,0,3181,3186,5,426,0,0,3182,3183,5,159,0,0, + 3183,3184,5,426,0,0,3184,3185,5,232,0,0,3185,3187,5,426,0,0,3186, + 3182,1,0,0,0,3186,3187,1,0,0,0,3187,3190,1,0,0,0,3188,3190,3,654, + 327,0,3189,3176,1,0,0,0,3189,3188,1,0,0,0,3190,437,1,0,0,0,3191, + 3192,5,184,0,0,3192,3201,5,128,0,0,3193,3194,5,184,0,0,3194,3195, + 5,128,0,0,3195,3196,3,654,327,0,3196,3197,5,426,0,0,3197,3201,1, + 0,0,0,3198,3199,5,184,0,0,3199,3201,3,482,241,0,3200,3191,1,0,0, + 0,3200,3193,1,0,0,0,3200,3198,1,0,0,0,3201,439,1,0,0,0,3202,3204, + 5,58,0,0,3203,3205,5,333,0,0,3204,3203,1,0,0,0,3204,3205,1,0,0,0, + 3205,3207,1,0,0,0,3206,3208,5,345,0,0,3207,3206,1,0,0,0,3207,3208, + 1,0,0,0,3208,3210,1,0,0,0,3209,3211,5,123,0,0,3210,3209,1,0,0,0, + 3210,3211,1,0,0,0,3211,3212,1,0,0,0,3212,3214,5,329,0,0,3213,3215, + 3,32,16,0,3214,3213,1,0,0,0,3214,3215,1,0,0,0,3215,3216,1,0,0,0, + 3216,3273,3,484,242,0,3217,3219,3,438,219,0,3218,3220,3,200,100, + 0,3219,3218,1,0,0,0,3219,3220,1,0,0,0,3220,3222,1,0,0,0,3221,3223, + 3,222,111,0,3222,3221,1,0,0,0,3222,3223,1,0,0,0,3223,3225,1,0,0, + 0,3224,3226,3,246,123,0,3225,3224,1,0,0,0,3225,3226,1,0,0,0,3226, + 3228,1,0,0,0,3227,3229,3,428,214,0,3228,3227,1,0,0,0,3228,3229,1, + 0,0,0,3229,3231,1,0,0,0,3230,3232,3,224,112,0,3231,3230,1,0,0,0, + 3231,3232,1,0,0,0,3232,3234,1,0,0,0,3233,3235,3,198,99,0,3234,3233, + 1,0,0,0,3234,3235,1,0,0,0,3235,3274,1,0,0,0,3236,3237,5,399,0,0, + 3237,3238,3,250,125,0,3238,3239,5,400,0,0,3239,3241,1,0,0,0,3240, + 3236,1,0,0,0,3240,3241,1,0,0,0,3241,3243,1,0,0,0,3242,3244,3,196, + 98,0,3243,3242,1,0,0,0,3243,3244,1,0,0,0,3244,3246,1,0,0,0,3245, + 3247,3,200,100,0,3246,3245,1,0,0,0,3246,3247,1,0,0,0,3247,3249,1, + 0,0,0,3248,3250,3,208,104,0,3249,3248,1,0,0,0,3249,3250,1,0,0,0, + 3250,3252,1,0,0,0,3251,3253,3,210,105,0,3252,3251,1,0,0,0,3252,3253, + 1,0,0,0,3253,3255,1,0,0,0,3254,3256,3,222,111,0,3255,3254,1,0,0, + 0,3255,3256,1,0,0,0,3256,3258,1,0,0,0,3257,3259,3,246,123,0,3258, + 3257,1,0,0,0,3258,3259,1,0,0,0,3259,3261,1,0,0,0,3260,3262,3,428, + 214,0,3261,3260,1,0,0,0,3261,3262,1,0,0,0,3262,3264,1,0,0,0,3263, + 3265,3,224,112,0,3264,3263,1,0,0,0,3264,3265,1,0,0,0,3265,3267,1, + 0,0,0,3266,3268,3,198,99,0,3267,3266,1,0,0,0,3267,3268,1,0,0,0,3268, + 3271,1,0,0,0,3269,3270,5,17,0,0,3270,3272,3,384,192,0,3271,3269, + 1,0,0,0,3271,3272,1,0,0,0,3272,3274,1,0,0,0,3273,3217,1,0,0,0,3273, + 3240,1,0,0,0,3274,3338,1,0,0,0,3275,3276,5,58,0,0,3276,3277,5,195, + 0,0,3277,3279,5,329,0,0,3278,3280,3,32,16,0,3279,3278,1,0,0,0,3279, + 3280,1,0,0,0,3280,3281,1,0,0,0,3281,3335,3,484,242,0,3282,3284,3, + 438,219,0,3283,3285,3,222,111,0,3284,3283,1,0,0,0,3284,3285,1,0, + 0,0,3285,3287,1,0,0,0,3286,3288,3,246,123,0,3287,3286,1,0,0,0,3287, + 3288,1,0,0,0,3288,3290,1,0,0,0,3289,3291,3,428,214,0,3290,3289,1, + 0,0,0,3290,3291,1,0,0,0,3291,3293,1,0,0,0,3292,3294,3,224,112,0, + 3293,3292,1,0,0,0,3293,3294,1,0,0,0,3294,3296,1,0,0,0,3295,3297, + 3,198,99,0,3296,3295,1,0,0,0,3296,3297,1,0,0,0,3297,3336,1,0,0,0, + 3298,3299,5,399,0,0,3299,3300,3,250,125,0,3300,3301,5,400,0,0,3301, + 3303,1,0,0,0,3302,3298,1,0,0,0,3302,3303,1,0,0,0,3303,3305,1,0,0, + 0,3304,3306,3,196,98,0,3305,3304,1,0,0,0,3305,3306,1,0,0,0,3306, + 3308,1,0,0,0,3307,3309,3,200,100,0,3308,3307,1,0,0,0,3308,3309,1, + 0,0,0,3309,3311,1,0,0,0,3310,3312,3,208,104,0,3311,3310,1,0,0,0, + 3311,3312,1,0,0,0,3312,3314,1,0,0,0,3313,3315,3,210,105,0,3314,3313, + 1,0,0,0,3314,3315,1,0,0,0,3315,3317,1,0,0,0,3316,3318,3,222,111, + 0,3317,3316,1,0,0,0,3317,3318,1,0,0,0,3318,3320,1,0,0,0,3319,3321, + 3,246,123,0,3320,3319,1,0,0,0,3320,3321,1,0,0,0,3321,3323,1,0,0, + 0,3322,3324,3,428,214,0,3323,3322,1,0,0,0,3323,3324,1,0,0,0,3324, + 3326,1,0,0,0,3325,3327,3,224,112,0,3326,3325,1,0,0,0,3326,3327,1, + 0,0,0,3327,3329,1,0,0,0,3328,3330,3,198,99,0,3329,3328,1,0,0,0,3329, + 3330,1,0,0,0,3330,3333,1,0,0,0,3331,3332,5,17,0,0,3332,3334,3,384, + 192,0,3333,3331,1,0,0,0,3333,3334,1,0,0,0,3334,3336,1,0,0,0,3335, + 3282,1,0,0,0,3335,3302,1,0,0,0,3336,3338,1,0,0,0,3337,3202,1,0,0, + 0,3337,3275,1,0,0,0,3338,441,1,0,0,0,3339,3340,5,58,0,0,3340,3342, + 5,69,0,0,3341,3343,3,32,16,0,3342,3341,1,0,0,0,3342,3343,1,0,0,0, + 3343,3344,1,0,0,0,3344,3347,3,654,327,0,3345,3346,5,352,0,0,3346, + 3348,5,426,0,0,3347,3345,1,0,0,0,3347,3348,1,0,0,0,3348,3351,1,0, + 0,0,3349,3350,5,367,0,0,3350,3352,5,426,0,0,3351,3349,1,0,0,0,3351, + 3352,1,0,0,0,3352,3355,1,0,0,0,3353,3354,5,47,0,0,3354,3356,5,426, + 0,0,3355,3353,1,0,0,0,3355,3356,1,0,0,0,3356,3360,1,0,0,0,3357,3358, + 5,387,0,0,3358,3359,5,77,0,0,3359,3361,3,230,115,0,3360,3357,1,0, + 0,0,3360,3361,1,0,0,0,3361,443,1,0,0,0,3362,3363,5,101,0,0,3363, + 3365,5,69,0,0,3364,3366,3,30,15,0,3365,3364,1,0,0,0,3365,3366,1, + 0,0,0,3366,3367,1,0,0,0,3367,3368,3,654,327,0,3368,445,1,0,0,0,3369, + 3370,3,654,327,0,3370,3371,5,395,0,0,3371,3373,1,0,0,0,3372,3369, + 1,0,0,0,3373,3376,1,0,0,0,3374,3372,1,0,0,0,3374,3375,1,0,0,0,3375, + 3377,1,0,0,0,3376,3374,1,0,0,0,3377,3378,5,415,0,0,3378,447,1,0, + 0,0,3379,3384,3,596,298,0,3380,3381,5,397,0,0,3381,3383,3,596,298, + 0,3382,3380,1,0,0,0,3383,3386,1,0,0,0,3384,3382,1,0,0,0,3384,3385, + 1,0,0,0,3385,449,1,0,0,0,3386,3384,1,0,0,0,3387,3392,3,654,327,0, + 3388,3389,5,397,0,0,3389,3391,3,654,327,0,3390,3388,1,0,0,0,3391, + 3394,1,0,0,0,3392,3390,1,0,0,0,3392,3393,1,0,0,0,3393,451,1,0,0, + 0,3394,3392,1,0,0,0,3395,3396,5,139,0,0,3396,3397,3,454,227,0,3397, + 453,1,0,0,0,3398,3399,5,359,0,0,3399,3402,3,462,231,0,3400,3401, + 5,397,0,0,3401,3403,3,462,231,0,3402,3400,1,0,0,0,3403,3404,1,0, + 0,0,3404,3402,1,0,0,0,3404,3405,1,0,0,0,3405,3408,1,0,0,0,3406,3408, + 3,458,229,0,3407,3398,1,0,0,0,3407,3406,1,0,0,0,3408,455,1,0,0,0, + 3409,3413,3,472,236,0,3410,3412,3,466,233,0,3411,3410,1,0,0,0,3412, + 3415,1,0,0,0,3413,3411,1,0,0,0,3413,3414,1,0,0,0,3414,3442,1,0,0, + 0,3415,3413,1,0,0,0,3416,3420,3,506,253,0,3417,3419,3,466,233,0, + 3418,3417,1,0,0,0,3419,3422,1,0,0,0,3420,3418,1,0,0,0,3420,3421, + 1,0,0,0,3421,3442,1,0,0,0,3422,3420,1,0,0,0,3423,3427,3,490,245, + 0,3424,3426,3,466,233,0,3425,3424,1,0,0,0,3426,3429,1,0,0,0,3427, + 3425,1,0,0,0,3427,3428,1,0,0,0,3428,3442,1,0,0,0,3429,3427,1,0,0, + 0,3430,3434,3,496,248,0,3431,3433,3,466,233,0,3432,3431,1,0,0,0, + 3433,3436,1,0,0,0,3434,3432,1,0,0,0,3434,3435,1,0,0,0,3435,3442, + 1,0,0,0,3436,3434,1,0,0,0,3437,3438,5,399,0,0,3438,3439,3,458,229, + 0,3439,3440,5,400,0,0,3440,3442,1,0,0,0,3441,3409,1,0,0,0,3441,3416, + 1,0,0,0,3441,3423,1,0,0,0,3441,3430,1,0,0,0,3441,3437,1,0,0,0,3442, + 457,1,0,0,0,3443,3461,3,456,228,0,3444,3445,3,464,232,0,3445,3457, + 3,460,230,0,3446,3453,5,224,0,0,3447,3454,3,596,298,0,3448,3451, + 3,260,130,0,3449,3450,5,405,0,0,3450,3452,3,260,130,0,3451,3449, + 1,0,0,0,3451,3452,1,0,0,0,3452,3454,1,0,0,0,3453,3447,1,0,0,0,3453, + 3448,1,0,0,0,3454,3458,1,0,0,0,3455,3456,5,370,0,0,3456,3458,3,268, + 134,0,3457,3446,1,0,0,0,3457,3455,1,0,0,0,3457,3458,1,0,0,0,3458, + 3460,1,0,0,0,3459,3444,1,0,0,0,3460,3463,1,0,0,0,3461,3459,1,0,0, + 0,3461,3462,1,0,0,0,3462,459,1,0,0,0,3463,3461,1,0,0,0,3464,3469, + 3,472,236,0,3465,3469,3,506,253,0,3466,3469,3,490,245,0,3467,3469, + 3,496,248,0,3468,3464,1,0,0,0,3468,3465,1,0,0,0,3468,3466,1,0,0, + 0,3468,3467,1,0,0,0,3469,3473,1,0,0,0,3470,3472,3,466,233,0,3471, + 3470,1,0,0,0,3472,3475,1,0,0,0,3473,3471,1,0,0,0,3473,3474,1,0,0, + 0,3474,461,1,0,0,0,3475,3473,1,0,0,0,3476,3478,5,250,0,0,3477,3476, + 1,0,0,0,3477,3478,1,0,0,0,3478,3479,1,0,0,0,3479,3481,3,480,240, + 0,3480,3482,3,470,235,0,3481,3480,1,0,0,0,3481,3482,1,0,0,0,3482, + 3487,1,0,0,0,3483,3485,5,17,0,0,3484,3483,1,0,0,0,3484,3485,1,0, + 0,0,3485,3486,1,0,0,0,3486,3488,3,654,327,0,3487,3484,1,0,0,0,3487, + 3488,1,0,0,0,3488,3489,1,0,0,0,3489,3490,5,399,0,0,3490,3491,3,448, + 224,0,3491,3492,5,400,0,0,3492,463,1,0,0,0,3493,3508,5,397,0,0,3494, + 3505,5,157,0,0,3495,3505,5,60,0,0,3496,3498,7,27,0,0,3497,3499,5, + 231,0,0,3498,3497,1,0,0,0,3498,3499,1,0,0,0,3499,3505,1,0,0,0,3500, + 3502,5,180,0,0,3501,3503,7,28,0,0,3502,3501,1,0,0,0,3502,3503,1, + 0,0,0,3503,3505,1,0,0,0,3504,3494,1,0,0,0,3504,3495,1,0,0,0,3504, + 3496,1,0,0,0,3504,3500,1,0,0,0,3504,3505,1,0,0,0,3505,3506,1,0,0, + 0,3506,3508,5,171,0,0,3507,3493,1,0,0,0,3507,3504,1,0,0,0,3508,465, + 1,0,0,0,3509,3510,5,178,0,0,3510,3511,5,378,0,0,3511,3512,5,231, + 0,0,3512,3513,3,566,283,0,3513,3523,3,468,234,0,3514,3515,5,17,0, + 0,3515,3520,3,654,327,0,3516,3517,5,397,0,0,3517,3519,3,654,327, + 0,3518,3516,1,0,0,0,3519,3522,1,0,0,0,3520,3518,1,0,0,0,3520,3521, + 1,0,0,0,3521,3524,1,0,0,0,3522,3520,1,0,0,0,3523,3514,1,0,0,0,3523, + 3524,1,0,0,0,3524,3567,1,0,0,0,3525,3527,5,397,0,0,3526,3525,1,0, + 0,0,3526,3527,1,0,0,0,3527,3528,1,0,0,0,3528,3564,5,178,0,0,3529, + 3530,5,378,0,0,3530,3531,3,566,283,0,3531,3541,3,468,234,0,3532, + 3533,5,17,0,0,3533,3538,3,654,327,0,3534,3535,5,397,0,0,3535,3537, + 3,654,327,0,3536,3534,1,0,0,0,3537,3540,1,0,0,0,3538,3536,1,0,0, + 0,3538,3539,1,0,0,0,3539,3542,1,0,0,0,3540,3538,1,0,0,0,3541,3532, + 1,0,0,0,3541,3542,1,0,0,0,3542,3565,1,0,0,0,3543,3544,5,329,0,0, + 3544,3545,5,399,0,0,3545,3546,3,502,251,0,3546,3548,5,400,0,0,3547, + 3549,5,17,0,0,3548,3547,1,0,0,0,3548,3549,1,0,0,0,3549,3550,1,0, + 0,0,3550,3562,3,468,234,0,3551,3552,5,399,0,0,3552,3557,3,654,327, + 0,3553,3554,5,397,0,0,3554,3556,3,654,327,0,3555,3553,1,0,0,0,3556, + 3559,1,0,0,0,3557,3555,1,0,0,0,3557,3558,1,0,0,0,3558,3560,1,0,0, + 0,3559,3557,1,0,0,0,3560,3561,5,400,0,0,3561,3563,1,0,0,0,3562,3551, + 1,0,0,0,3562,3563,1,0,0,0,3563,3565,1,0,0,0,3564,3529,1,0,0,0,3564, + 3543,1,0,0,0,3565,3567,1,0,0,0,3566,3509,1,0,0,0,3566,3526,1,0,0, + 0,3567,467,1,0,0,0,3568,3569,3,654,327,0,3569,469,1,0,0,0,3570,3571, + 5,331,0,0,3571,3572,5,399,0,0,3572,3573,5,30,0,0,3573,3574,5,431, + 0,0,3574,3575,5,230,0,0,3575,3576,5,221,0,0,3576,3586,5,431,0,0, + 3577,3578,5,224,0,0,3578,3583,3,596,298,0,3579,3580,5,397,0,0,3580, + 3582,3,596,298,0,3581,3579,1,0,0,0,3582,3585,1,0,0,0,3583,3581,1, + 0,0,0,3583,3584,1,0,0,0,3584,3587,1,0,0,0,3585,3583,1,0,0,0,3586, + 3577,1,0,0,0,3586,3587,1,0,0,0,3587,3588,1,0,0,0,3588,3598,5,400, + 0,0,3589,3590,5,331,0,0,3590,3594,5,399,0,0,3591,3592,5,431,0,0, + 3592,3595,7,29,0,0,3593,3595,5,430,0,0,3594,3591,1,0,0,0,3594,3593, + 1,0,0,0,3595,3596,1,0,0,0,3596,3598,5,400,0,0,3597,3570,1,0,0,0, + 3597,3589,1,0,0,0,3598,471,1,0,0,0,3599,3601,3,480,240,0,3600,3602, + 3,226,113,0,3601,3600,1,0,0,0,3601,3602,1,0,0,0,3602,3604,1,0,0, + 0,3603,3605,3,470,235,0,3604,3603,1,0,0,0,3604,3605,1,0,0,0,3605, + 3607,1,0,0,0,3606,3608,3,474,237,0,3607,3606,1,0,0,0,3607,3608,1, + 0,0,0,3608,3613,1,0,0,0,3609,3611,5,17,0,0,3610,3609,1,0,0,0,3610, + 3611,1,0,0,0,3611,3612,1,0,0,0,3612,3614,3,654,327,0,3613,3610,1, + 0,0,0,3613,3614,1,0,0,0,3614,473,1,0,0,0,3615,3625,5,134,0,0,3616, + 3617,5,327,0,0,3617,3618,5,17,0,0,3618,3619,5,221,0,0,3619,3626, + 3,596,298,0,3620,3621,5,134,0,0,3621,3622,5,328,0,0,3622,3623,5, + 17,0,0,3623,3624,5,221,0,0,3624,3626,5,431,0,0,3625,3616,1,0,0,0, + 3625,3620,1,0,0,0,3626,475,1,0,0,0,3627,3628,3,654,327,0,3628,477, + 1,0,0,0,3629,3630,3,654,327,0,3630,479,1,0,0,0,3631,3634,3,482,241, + 0,3632,3634,3,486,243,0,3633,3631,1,0,0,0,3633,3632,1,0,0,0,3634, + 481,1,0,0,0,3635,3636,3,654,327,0,3636,3637,5,395,0,0,3637,3640, + 3,654,327,0,3638,3639,5,395,0,0,3639,3641,3,654,327,0,3640,3638, + 1,0,0,0,3640,3641,1,0,0,0,3641,3644,1,0,0,0,3642,3644,3,654,327, + 0,3643,3635,1,0,0,0,3643,3642,1,0,0,0,3644,483,1,0,0,0,3645,3646, + 3,654,327,0,3646,3647,5,395,0,0,3647,3650,3,654,327,0,3648,3649, + 5,395,0,0,3649,3651,3,654,327,0,3650,3648,1,0,0,0,3650,3651,1,0, + 0,0,3651,3654,1,0,0,0,3652,3654,3,654,327,0,3653,3645,1,0,0,0,3653, + 3652,1,0,0,0,3654,485,1,0,0,0,3655,3656,3,654,327,0,3656,3657,5, + 395,0,0,3657,3659,1,0,0,0,3658,3655,1,0,0,0,3658,3659,1,0,0,0,3659, + 3660,1,0,0,0,3660,3661,3,654,327,0,3661,487,1,0,0,0,3662,3663,3, + 654,327,0,3663,3664,5,395,0,0,3664,3666,1,0,0,0,3665,3662,1,0,0, + 0,3665,3666,1,0,0,0,3666,3667,1,0,0,0,3667,3668,3,654,327,0,3668, + 489,1,0,0,0,3669,3670,5,399,0,0,3670,3671,3,364,182,0,3671,3673, + 5,400,0,0,3672,3674,5,17,0,0,3673,3672,1,0,0,0,3673,3674,1,0,0,0, + 3674,3675,1,0,0,0,3675,3676,3,654,327,0,3676,491,1,0,0,0,3677,3679, + 3,558,279,0,3678,3680,3,556,278,0,3679,3678,1,0,0,0,3679,3680,1, + 0,0,0,3680,3689,1,0,0,0,3681,3689,3,556,278,0,3682,3684,3,562,281, + 0,3683,3685,3,564,282,0,3684,3683,1,0,0,0,3684,3685,1,0,0,0,3685, + 3689,1,0,0,0,3686,3689,3,564,282,0,3687,3689,3,560,280,0,3688,3677, + 1,0,0,0,3688,3681,1,0,0,0,3688,3682,1,0,0,0,3688,3686,1,0,0,0,3688, + 3687,1,0,0,0,3689,493,1,0,0,0,3690,3694,3,490,245,0,3691,3694,3, + 472,236,0,3692,3694,3,496,248,0,3693,3690,1,0,0,0,3693,3691,1,0, + 0,0,3693,3692,1,0,0,0,3694,495,1,0,0,0,3695,3697,3,498,249,0,3696, + 3698,3,654,327,0,3697,3696,1,0,0,0,3697,3698,1,0,0,0,3698,497,1, + 0,0,0,3699,3700,3,654,327,0,3700,3701,5,399,0,0,3701,3702,5,224, + 0,0,3702,3704,3,494,247,0,3703,3705,3,492,246,0,3704,3703,1,0,0, + 0,3704,3705,1,0,0,0,3705,3721,1,0,0,0,3706,3707,5,432,0,0,3707,3708, + 5,399,0,0,3708,3709,3,596,298,0,3709,3718,5,400,0,0,3710,3711,5, + 397,0,0,3711,3712,5,432,0,0,3712,3713,5,399,0,0,3713,3714,3,596, + 298,0,3714,3715,5,400,0,0,3715,3717,1,0,0,0,3716,3710,1,0,0,0,3717, + 3720,1,0,0,0,3718,3716,1,0,0,0,3718,3719,1,0,0,0,3719,3722,1,0,0, + 0,3720,3718,1,0,0,0,3721,3706,1,0,0,0,3721,3722,1,0,0,0,3722,3723, + 1,0,0,0,3723,3724,5,400,0,0,3724,499,1,0,0,0,3725,3728,5,384,0,0, + 3726,3729,3,596,298,0,3727,3729,3,260,130,0,3728,3726,1,0,0,0,3728, + 3727,1,0,0,0,3729,501,1,0,0,0,3730,3749,5,374,0,0,3731,3736,3,552, + 276,0,3732,3733,5,397,0,0,3733,3735,3,552,276,0,3734,3732,1,0,0, + 0,3735,3738,1,0,0,0,3736,3734,1,0,0,0,3736,3737,1,0,0,0,3737,3750, + 1,0,0,0,3738,3736,1,0,0,0,3739,3740,5,399,0,0,3740,3741,3,548,274, + 0,3741,3746,5,400,0,0,3742,3743,5,397,0,0,3743,3745,3,552,276,0, + 3744,3742,1,0,0,0,3745,3748,1,0,0,0,3746,3744,1,0,0,0,3746,3747, + 1,0,0,0,3747,3750,1,0,0,0,3748,3746,1,0,0,0,3749,3731,1,0,0,0,3749, + 3739,1,0,0,0,3750,503,1,0,0,0,3751,3752,5,329,0,0,3752,3753,5,399, + 0,0,3753,3754,3,502,251,0,3754,3755,5,400,0,0,3755,505,1,0,0,0,3756, + 3758,3,504,252,0,3757,3759,5,17,0,0,3758,3757,1,0,0,0,3758,3759, + 1,0,0,0,3759,3760,1,0,0,0,3760,3770,3,468,234,0,3761,3762,5,399, + 0,0,3762,3767,3,654,327,0,3763,3764,5,397,0,0,3764,3766,3,654,327, + 0,3765,3763,1,0,0,0,3766,3769,1,0,0,0,3767,3765,1,0,0,0,3767,3768, + 1,0,0,0,3768,3771,1,0,0,0,3769,3767,1,0,0,0,3770,3761,1,0,0,0,3770, + 3771,1,0,0,0,3771,3772,1,0,0,0,3772,3773,5,400,0,0,3773,507,1,0, + 0,0,3774,3776,5,299,0,0,3775,3777,5,436,0,0,3776,3775,1,0,0,0,3776, + 3777,1,0,0,0,3777,3784,1,0,0,0,3778,3780,7,21,0,0,3779,3778,1,0, + 0,0,3779,3780,1,0,0,0,3780,3781,1,0,0,0,3781,3785,3,512,256,0,3782, + 3783,5,347,0,0,3783,3785,3,510,255,0,3784,3779,1,0,0,0,3784,3782, + 1,0,0,0,3785,3788,1,0,0,0,3786,3788,3,520,260,0,3787,3774,1,0,0, + 0,3787,3786,1,0,0,0,3788,509,1,0,0,0,3789,3790,5,399,0,0,3790,3791, + 3,524,262,0,3791,3792,5,400,0,0,3792,3793,3,212,106,0,3793,3794, + 3,216,108,0,3794,3795,5,370,0,0,3795,3808,5,426,0,0,3796,3806,5, + 17,0,0,3797,3800,5,399,0,0,3798,3801,3,450,225,0,3799,3801,3,248, + 124,0,3800,3798,1,0,0,0,3800,3799,1,0,0,0,3801,3802,1,0,0,0,3802, + 3803,5,400,0,0,3803,3807,1,0,0,0,3804,3807,3,450,225,0,3805,3807, + 3,248,124,0,3806,3797,1,0,0,0,3806,3804,1,0,0,0,3806,3805,1,0,0, + 0,3807,3809,1,0,0,0,3808,3796,1,0,0,0,3808,3809,1,0,0,0,3809,3810, + 1,0,0,0,3810,3811,3,212,106,0,3811,3812,3,214,107,0,3812,511,1,0, + 0,0,3813,3818,3,514,257,0,3814,3815,5,397,0,0,3815,3817,3,514,257, + 0,3816,3814,1,0,0,0,3817,3820,1,0,0,0,3818,3816,1,0,0,0,3818,3819, + 1,0,0,0,3819,513,1,0,0,0,3820,3818,1,0,0,0,3821,3847,3,446,223,0, + 3822,3825,3,516,258,0,3823,3825,3,518,259,0,3824,3822,1,0,0,0,3824, + 3823,1,0,0,0,3825,3842,1,0,0,0,3826,3828,5,17,0,0,3827,3826,1,0, + 0,0,3827,3828,1,0,0,0,3828,3829,1,0,0,0,3829,3843,3,654,327,0,3830, + 3831,5,17,0,0,3831,3832,5,399,0,0,3832,3837,3,654,327,0,3833,3834, + 5,397,0,0,3834,3836,3,654,327,0,3835,3833,1,0,0,0,3836,3839,1,0, + 0,0,3837,3835,1,0,0,0,3837,3838,1,0,0,0,3838,3840,1,0,0,0,3839,3837, + 1,0,0,0,3840,3841,5,400,0,0,3841,3843,1,0,0,0,3842,3827,1,0,0,0, + 3842,3830,1,0,0,0,3842,3843,1,0,0,0,3843,3847,1,0,0,0,3844,3845, + 4,257,2,0,3845,3847,3,702,351,0,3846,3821,1,0,0,0,3846,3824,1,0, + 0,0,3846,3844,1,0,0,0,3847,515,1,0,0,0,3848,3849,3,256,128,0,3849, + 517,1,0,0,0,3850,3851,3,596,298,0,3851,519,1,0,0,0,3852,3853,7,30, + 0,0,3853,3854,3,524,262,0,3854,3855,3,212,106,0,3855,3856,3,216, + 108,0,3856,3857,5,370,0,0,3857,3870,5,426,0,0,3858,3868,5,17,0,0, + 3859,3862,5,399,0,0,3860,3863,3,450,225,0,3861,3863,3,248,124,0, + 3862,3860,1,0,0,0,3862,3861,1,0,0,0,3863,3864,1,0,0,0,3864,3865, + 5,400,0,0,3865,3869,1,0,0,0,3866,3869,3,450,225,0,3867,3869,3,248, + 124,0,3868,3859,1,0,0,0,3868,3866,1,0,0,0,3868,3867,1,0,0,0,3869, + 3871,1,0,0,0,3870,3858,1,0,0,0,3870,3871,1,0,0,0,3871,3872,1,0,0, + 0,3872,3873,3,212,106,0,3873,3874,3,214,107,0,3874,521,1,0,0,0,3875, + 3878,3,446,223,0,3876,3878,3,596,298,0,3877,3875,1,0,0,0,3877,3876, + 1,0,0,0,3878,523,1,0,0,0,3879,3884,3,522,261,0,3880,3881,5,397,0, + 0,3881,3883,3,522,261,0,3882,3880,1,0,0,0,3883,3886,1,0,0,0,3884, + 3882,1,0,0,0,3884,3885,1,0,0,0,3885,525,1,0,0,0,3886,3884,1,0,0, + 0,3887,3888,5,386,0,0,3888,3889,3,654,327,0,3889,3890,5,17,0,0,3890, + 3898,3,528,264,0,3891,3892,5,397,0,0,3892,3893,3,654,327,0,3893, + 3894,5,17,0,0,3894,3895,3,528,264,0,3895,3897,1,0,0,0,3896,3891, + 1,0,0,0,3897,3900,1,0,0,0,3898,3896,1,0,0,0,3898,3899,1,0,0,0,3899, + 527,1,0,0,0,3900,3898,1,0,0,0,3901,3914,3,654,327,0,3902,3904,5, + 399,0,0,3903,3905,3,654,327,0,3904,3903,1,0,0,0,3904,3905,1,0,0, + 0,3905,3907,1,0,0,0,3906,3908,3,492,246,0,3907,3906,1,0,0,0,3907, + 3908,1,0,0,0,3908,3910,1,0,0,0,3909,3911,3,530,265,0,3910,3909,1, + 0,0,0,3910,3911,1,0,0,0,3911,3912,1,0,0,0,3912,3914,5,400,0,0,3913, + 3901,1,0,0,0,3913,3902,1,0,0,0,3914,529,1,0,0,0,3915,3929,7,31,0, + 0,3916,3917,5,354,0,0,3917,3923,5,247,0,0,3918,3919,5,62,0,0,3919, + 3923,5,291,0,0,3920,3921,5,431,0,0,3921,3923,5,247,0,0,3922,3916, + 1,0,0,0,3922,3918,1,0,0,0,3922,3920,1,0,0,0,3923,3930,1,0,0,0,3924, + 3925,5,25,0,0,3925,3926,3,532,266,0,3926,3927,5,11,0,0,3927,3928, + 3,532,266,0,3928,3930,1,0,0,0,3929,3922,1,0,0,0,3929,3924,1,0,0, + 0,3930,531,1,0,0,0,3931,3932,7,32,0,0,3932,3936,7,33,0,0,3933,3934, + 5,62,0,0,3934,3936,5,291,0,0,3935,3931,1,0,0,0,3935,3933,1,0,0,0, + 3936,533,1,0,0,0,3937,3938,5,144,0,0,3938,3944,5,32,0,0,3939,3945, + 3,256,128,0,3940,3945,3,536,268,0,3941,3945,3,538,269,0,3942,3943, + 5,399,0,0,3943,3945,5,400,0,0,3944,3939,1,0,0,0,3944,3940,1,0,0, + 0,3944,3941,1,0,0,0,3944,3942,1,0,0,0,3945,535,1,0,0,0,3946,3949, + 5,290,0,0,3947,3949,5,61,0,0,3948,3946,1,0,0,0,3948,3947,1,0,0,0, + 3949,3950,1,0,0,0,3950,3951,5,399,0,0,3951,3956,3,596,298,0,3952, + 3953,5,397,0,0,3953,3955,3,596,298,0,3954,3952,1,0,0,0,3955,3958, + 1,0,0,0,3956,3954,1,0,0,0,3956,3957,1,0,0,0,3957,3959,1,0,0,0,3958, + 3956,1,0,0,0,3959,3960,5,400,0,0,3960,537,1,0,0,0,3961,3966,3,554, + 277,0,3962,3963,5,387,0,0,3963,3967,5,290,0,0,3964,3965,5,387,0, + 0,3965,3967,5,61,0,0,3966,3962,1,0,0,0,3966,3964,1,0,0,0,3966,3967, + 1,0,0,0,3967,3981,1,0,0,0,3968,3969,5,145,0,0,3969,3970,5,305,0, + 0,3970,3971,5,399,0,0,3971,3976,3,540,270,0,3972,3973,5,397,0,0, + 3973,3975,3,540,270,0,3974,3972,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,400,0,0,3980,3982,1,0,0,0,3981,3968,1,0,0,0,3981,3982,1,0, + 0,0,3982,539,1,0,0,0,3983,3985,5,399,0,0,3984,3986,3,596,298,0,3985, + 3984,1,0,0,0,3985,3986,1,0,0,0,3986,3991,1,0,0,0,3987,3988,5,397, + 0,0,3988,3990,3,596,298,0,3989,3987,1,0,0,0,3990,3993,1,0,0,0,3991, + 3989,1,0,0,0,3991,3992,1,0,0,0,3992,3994,1,0,0,0,3993,3991,1,0,0, + 0,3994,3997,5,400,0,0,3995,3997,3,596,298,0,3996,3983,1,0,0,0,3996, + 3995,1,0,0,0,3997,541,1,0,0,0,3998,4001,5,146,0,0,3999,4002,3,596, + 298,0,4000,4002,3,260,130,0,4001,3999,1,0,0,0,4001,4000,1,0,0,0, + 4002,543,1,0,0,0,4003,4004,5,256,0,0,4004,4005,3,596,298,0,4005, + 545,1,0,0,0,4006,4009,5,83,0,0,4007,4009,3,596,298,0,4008,4006,1, + 0,0,0,4008,4007,1,0,0,0,4009,547,1,0,0,0,4010,4012,3,596,298,0,4011, + 4013,5,17,0,0,4012,4011,1,0,0,0,4012,4013,1,0,0,0,4013,4015,1,0, + 0,0,4014,4016,3,654,327,0,4015,4014,1,0,0,0,4015,4016,1,0,0,0,4016, + 4027,1,0,0,0,4017,4018,5,397,0,0,4018,4020,3,596,298,0,4019,4021, + 5,17,0,0,4020,4019,1,0,0,0,4020,4021,1,0,0,0,4021,4023,1,0,0,0,4022, + 4024,3,654,327,0,4023,4022,1,0,0,0,4023,4024,1,0,0,0,4024,4026,1, + 0,0,0,4025,4017,1,0,0,0,4026,4029,1,0,0,0,4027,4025,1,0,0,0,4027, + 4028,1,0,0,0,4028,549,1,0,0,0,4029,4027,1,0,0,0,4030,4033,3,552, + 276,0,4031,4033,3,554,277,0,4032,4030,1,0,0,0,4032,4031,1,0,0,0, + 4033,551,1,0,0,0,4034,4035,5,399,0,0,4035,4036,3,554,277,0,4036, + 4037,5,400,0,0,4037,553,1,0,0,0,4038,4045,3,546,273,0,4039,4040, + 5,397,0,0,4040,4042,3,546,273,0,4041,4039,1,0,0,0,4042,4043,1,0, + 0,0,4043,4041,1,0,0,0,4043,4044,1,0,0,0,4044,4046,1,0,0,0,4045,4041, + 1,0,0,0,4045,4046,1,0,0,0,4046,555,1,0,0,0,4047,4048,5,229,0,0,4048, + 4049,5,32,0,0,4049,4054,3,312,156,0,4050,4051,5,397,0,0,4051,4053, + 3,312,156,0,4052,4050,1,0,0,0,4053,4056,1,0,0,0,4054,4052,1,0,0, + 0,4054,4055,1,0,0,0,4055,557,1,0,0,0,4056,4054,1,0,0,0,4057,4058, + 5,237,0,0,4058,4059,5,32,0,0,4059,4060,3,550,275,0,4060,559,1,0, + 0,0,4061,4062,5,41,0,0,4062,4063,5,32,0,0,4063,4064,3,550,275,0, + 4064,561,1,0,0,0,4065,4066,5,97,0,0,4066,4067,5,32,0,0,4067,4068, + 3,550,275,0,4068,563,1,0,0,0,4069,4070,5,314,0,0,4070,4090,5,32, + 0,0,4071,4072,5,399,0,0,4072,4077,3,312,156,0,4073,4074,5,397,0, + 0,4074,4076,3,312,156,0,4075,4073,1,0,0,0,4076,4079,1,0,0,0,4077, + 4075,1,0,0,0,4077,4078,1,0,0,0,4078,4080,1,0,0,0,4079,4077,1,0,0, + 0,4080,4081,5,400,0,0,4081,4091,1,0,0,0,4082,4087,3,312,156,0,4083, + 4084,5,397,0,0,4084,4086,3,312,156,0,4085,4083,1,0,0,0,4086,4089, + 1,0,0,0,4087,4085,1,0,0,0,4087,4088,1,0,0,0,4088,4091,1,0,0,0,4089, + 4087,1,0,0,0,4090,4071,1,0,0,0,4090,4082,1,0,0,0,4091,565,1,0,0, + 0,4092,4093,5,349,0,0,4093,4097,5,399,0,0,4094,4098,5,179,0,0,4095, + 4098,5,343,0,0,4096,4098,5,29,0,0,4097,4094,1,0,0,0,4097,4095,1, + 0,0,0,4097,4096,1,0,0,0,4097,4098,1,0,0,0,4098,4100,1,0,0,0,4099, + 4101,3,522,261,0,4100,4099,1,0,0,0,4100,4101,1,0,0,0,4101,4102,1, + 0,0,0,4102,4103,5,139,0,0,4103,4104,3,522,261,0,4104,4105,5,400, + 0,0,4105,4146,1,0,0,0,4106,4107,3,574,287,0,4107,4122,5,399,0,0, + 4108,4123,5,415,0,0,4109,4111,7,21,0,0,4110,4109,1,0,0,0,4110,4111, + 1,0,0,0,4111,4120,1,0,0,0,4112,4117,3,522,261,0,4113,4114,5,397, + 0,0,4114,4116,3,522,261,0,4115,4113,1,0,0,0,4116,4119,1,0,0,0,4117, + 4115,1,0,0,0,4117,4118,1,0,0,0,4118,4121,1,0,0,0,4119,4117,1,0,0, + 0,4120,4112,1,0,0,0,4120,4121,1,0,0,0,4121,4123,1,0,0,0,4122,4108, + 1,0,0,0,4122,4110,1,0,0,0,4123,4143,1,0,0,0,4124,4125,5,400,0,0, + 4125,4126,5,388,0,0,4126,4127,5,144,0,0,4127,4128,5,399,0,0,4128, + 4129,3,556,278,0,4129,4130,5,400,0,0,4130,4144,1,0,0,0,4131,4133, + 5,400,0,0,4132,4134,3,568,284,0,4133,4132,1,0,0,0,4133,4134,1,0, + 0,0,4134,4135,1,0,0,0,4135,4136,5,234,0,0,4136,4144,3,528,264,0, + 4137,4138,3,568,284,0,4138,4139,5,400,0,0,4139,4140,5,234,0,0,4140, + 4141,3,528,264,0,4141,4144,1,0,0,0,4142,4144,5,400,0,0,4143,4124, + 1,0,0,0,4143,4131,1,0,0,0,4143,4137,1,0,0,0,4143,4142,1,0,0,0,4144, + 4146,1,0,0,0,4145,4092,1,0,0,0,4145,4106,1,0,0,0,4146,567,1,0,0, + 0,4147,4148,7,34,0,0,4148,4149,5,220,0,0,4149,569,1,0,0,0,4150,4151, + 3,656,328,0,4151,571,1,0,0,0,4152,4155,3,656,328,0,4153,4155,5,426, + 0,0,4154,4152,1,0,0,0,4154,4153,1,0,0,0,4155,573,1,0,0,0,4156,4160, + 3,656,328,0,4157,4160,3,662,331,0,4158,4160,3,652,326,0,4159,4156, + 1,0,0,0,4159,4157,1,0,0,0,4159,4158,1,0,0,0,4160,575,1,0,0,0,4161, + 4162,5,36,0,0,4162,4163,5,399,0,0,4163,4164,3,596,298,0,4164,4165, + 5,17,0,0,4165,4168,3,352,176,0,4166,4167,5,137,0,0,4167,4169,5,426, + 0,0,4168,4166,1,0,0,0,4168,4169,1,0,0,0,4169,4170,1,0,0,0,4170,4171, + 5,400,0,0,4171,577,1,0,0,0,4172,4173,5,35,0,0,4173,4179,3,596,298, + 0,4174,4175,5,383,0,0,4175,4176,3,596,298,0,4176,4177,5,335,0,0, + 4177,4178,3,596,298,0,4178,4180,1,0,0,0,4179,4174,1,0,0,0,4180,4181, + 1,0,0,0,4181,4179,1,0,0,0,4181,4182,1,0,0,0,4182,4185,1,0,0,0,4183, + 4184,5,105,0,0,4184,4186,3,596,298,0,4185,4183,1,0,0,0,4185,4186, + 1,0,0,0,4186,4187,1,0,0,0,4187,4188,5,108,0,0,4188,579,1,0,0,0,4189, + 4195,5,35,0,0,4190,4191,5,383,0,0,4191,4192,3,596,298,0,4192,4193, + 5,335,0,0,4193,4194,3,596,298,0,4194,4196,1,0,0,0,4195,4190,1,0, + 0,0,4196,4197,1,0,0,0,4197,4195,1,0,0,0,4197,4198,1,0,0,0,4198,4201, + 1,0,0,0,4199,4200,5,105,0,0,4200,4202,3,596,298,0,4201,4199,1,0, + 0,0,4201,4202,1,0,0,0,4202,4203,1,0,0,0,4203,4204,5,108,0,0,4204, + 581,1,0,0,0,4205,4206,5,132,0,0,4206,4207,5,399,0,0,4207,4210,3, + 596,298,0,4208,4209,5,341,0,0,4209,4211,3,586,293,0,4210,4208,1, + 0,0,0,4210,4211,1,0,0,0,4211,4212,1,0,0,0,4212,4213,5,400,0,0,4213, + 583,1,0,0,0,4214,4215,5,124,0,0,4215,4216,5,399,0,0,4216,4217,3, + 586,293,0,4217,4218,5,139,0,0,4218,4219,3,596,298,0,4219,4220,5, + 400,0,0,4220,585,1,0,0,0,4221,4230,3,686,343,0,4222,4230,5,257,0, + 0,4223,4230,3,688,344,0,4224,4230,3,690,345,0,4225,4230,3,692,346, + 0,4226,4230,3,694,347,0,4227,4230,3,696,348,0,4228,4230,3,698,349, + 0,4229,4221,1,0,0,0,4229,4222,1,0,0,0,4229,4223,1,0,0,0,4229,4224, + 1,0,0,0,4229,4225,1,0,0,0,4229,4226,1,0,0,0,4229,4227,1,0,0,0,4229, + 4228,1,0,0,0,4230,587,1,0,0,0,4231,4232,3,590,295,0,4232,4233,3, + 594,297,0,4233,4260,1,0,0,0,4234,4260,5,431,0,0,4235,4236,5,71,0, + 0,4236,4260,5,426,0,0,4237,4260,5,63,0,0,4238,4239,5,337,0,0,4239, + 4260,5,426,0,0,4240,4260,5,64,0,0,4241,4242,5,338,0,0,4242,4260, + 5,426,0,0,4243,4247,5,426,0,0,4244,4246,5,426,0,0,4245,4244,1,0, + 0,0,4246,4249,1,0,0,0,4247,4245,1,0,0,0,4247,4248,1,0,0,0,4248,4260, + 1,0,0,0,4249,4247,1,0,0,0,4250,4260,5,428,0,0,4251,4260,5,429,0, + 0,4252,4253,5,433,0,0,4253,4260,5,427,0,0,4254,4260,5,350,0,0,4255, + 4260,5,125,0,0,4256,4260,5,219,0,0,4257,4260,5,424,0,0,4258,4260, + 3,258,129,0,4259,4231,1,0,0,0,4259,4234,1,0,0,0,4259,4235,1,0,0, + 0,4259,4237,1,0,0,0,4259,4238,1,0,0,0,4259,4240,1,0,0,0,4259,4241, + 1,0,0,0,4259,4243,1,0,0,0,4259,4250,1,0,0,0,4259,4251,1,0,0,0,4259, + 4252,1,0,0,0,4259,4254,1,0,0,0,4259,4255,1,0,0,0,4259,4256,1,0,0, + 0,4259,4257,1,0,0,0,4259,4258,1,0,0,0,4260,589,1,0,0,0,4261,4262, + 7,26,0,0,4262,591,1,0,0,0,4263,4264,5,399,0,0,4264,4265,3,590,295, + 0,4265,4266,5,400,0,0,4266,4267,3,594,297,0,4267,4279,1,0,0,0,4268, + 4274,5,165,0,0,4269,4275,3,590,295,0,4270,4271,5,399,0,0,4271,4272, + 3,596,298,0,4272,4273,5,400,0,0,4273,4275,1,0,0,0,4274,4269,1,0, + 0,0,4274,4270,1,0,0,0,4275,4276,1,0,0,0,4276,4277,3,594,297,0,4277, + 4279,1,0,0,0,4278,4263,1,0,0,0,4278,4268,1,0,0,0,4279,593,1,0,0, + 0,4280,4281,3,686,343,0,4281,4282,5,341,0,0,4282,4283,3,688,344, + 0,4283,4295,1,0,0,0,4284,4285,3,692,346,0,4285,4286,5,341,0,0,4286, + 4287,3,698,349,0,4287,4295,1,0,0,0,4288,4295,3,686,343,0,4289,4295, + 3,688,344,0,4290,4295,3,692,346,0,4291,4295,3,694,347,0,4292,4295, + 3,696,348,0,4293,4295,3,698,349,0,4294,4280,1,0,0,0,4294,4284,1, + 0,0,0,4294,4288,1,0,0,0,4294,4289,1,0,0,0,4294,4290,1,0,0,0,4294, + 4291,1,0,0,0,4294,4292,1,0,0,0,4294,4293,1,0,0,0,4295,595,1,0,0, + 0,4296,4301,3,638,319,0,4297,4298,5,228,0,0,4298,4300,3,638,319, + 0,4299,4297,1,0,0,0,4300,4303,1,0,0,0,4301,4299,1,0,0,0,4301,4302, + 1,0,0,0,4302,597,1,0,0,0,4303,4301,1,0,0,0,4304,4316,3,588,294,0, + 4305,4316,3,592,296,0,4306,4316,3,576,288,0,4307,4316,3,584,292, + 0,4308,4316,3,582,291,0,4309,4316,3,578,289,0,4310,4316,3,580,290, + 0,4311,4316,3,616,308,0,4312,4316,3,566,283,0,4313,4316,3,552,276, + 0,4314,4316,3,654,327,0,4315,4304,1,0,0,0,4315,4305,1,0,0,0,4315, + 4306,1,0,0,0,4315,4307,1,0,0,0,4315,4308,1,0,0,0,4315,4309,1,0,0, + 0,4315,4310,1,0,0,0,4315,4311,1,0,0,0,4315,4312,1,0,0,0,4315,4313, + 1,0,0,0,4315,4314,1,0,0,0,4316,599,1,0,0,0,4317,4319,7,35,0,0,4318, + 4317,1,0,0,0,4319,4322,1,0,0,0,4320,4318,1,0,0,0,4320,4321,1,0,0, + 0,4321,4323,1,0,0,0,4322,4320,1,0,0,0,4323,4332,3,598,299,0,4324, + 4325,5,401,0,0,4325,4326,3,596,298,0,4326,4327,5,402,0,0,4327,4331, + 1,0,0,0,4328,4329,5,395,0,0,4329,4331,3,654,327,0,4330,4324,1,0, + 0,0,4330,4328,1,0,0,0,4331,4334,1,0,0,0,4332,4330,1,0,0,0,4332,4333, + 1,0,0,0,4333,601,1,0,0,0,4334,4332,1,0,0,0,4335,4340,3,600,300,0, + 4336,4337,5,423,0,0,4337,4339,3,600,300,0,4338,4336,1,0,0,0,4339, + 4342,1,0,0,0,4340,4338,1,0,0,0,4340,4341,1,0,0,0,4341,603,1,0,0, + 0,4342,4340,1,0,0,0,4343,4348,3,602,301,0,4344,4345,7,36,0,0,4345, + 4347,3,602,301,0,4346,4344,1,0,0,0,4347,4350,1,0,0,0,4348,4346,1, + 0,0,0,4348,4349,1,0,0,0,4349,605,1,0,0,0,4350,4348,1,0,0,0,4351, + 4356,3,604,302,0,4352,4353,7,37,0,0,4353,4355,3,604,302,0,4354,4352, + 1,0,0,0,4355,4358,1,0,0,0,4356,4354,1,0,0,0,4356,4357,1,0,0,0,4357, + 607,1,0,0,0,4358,4356,1,0,0,0,4359,4364,3,606,303,0,4360,4361,5, + 422,0,0,4361,4363,3,606,303,0,4362,4360,1,0,0,0,4363,4366,1,0,0, + 0,4364,4362,1,0,0,0,4364,4365,1,0,0,0,4365,609,1,0,0,0,4366,4364, + 1,0,0,0,4367,4372,3,608,304,0,4368,4369,5,419,0,0,4369,4371,3,608, + 304,0,4370,4368,1,0,0,0,4371,4374,1,0,0,0,4372,4370,1,0,0,0,4372, + 4373,1,0,0,0,4373,611,1,0,0,0,4374,4372,1,0,0,0,4375,4380,3,610, + 305,0,4376,4377,5,421,0,0,4377,4379,3,610,305,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,613, + 1,0,0,0,4382,4380,1,0,0,0,4383,4384,7,38,0,0,4384,615,1,0,0,0,4385, + 4386,5,399,0,0,4386,4387,3,380,190,0,4387,4388,5,400,0,0,4388,617, + 1,0,0,0,4389,4391,3,612,306,0,4390,4392,3,620,310,0,4391,4390,1, + 0,0,0,4391,4392,1,0,0,0,4392,4396,1,0,0,0,4393,4394,5,117,0,0,4394, + 4396,3,616,308,0,4395,4389,1,0,0,0,4395,4393,1,0,0,0,4396,619,1, + 0,0,0,4397,4398,3,614,307,0,4398,4399,3,612,306,0,4399,4404,1,0, + 0,0,4400,4404,3,622,311,0,4401,4402,5,216,0,0,4402,4404,3,626,313, + 0,4403,4397,1,0,0,0,4403,4400,1,0,0,0,4403,4401,1,0,0,0,4404,621, + 1,0,0,0,4405,4406,5,154,0,0,4406,4420,3,624,312,0,4407,4408,5,25, + 0,0,4408,4409,3,612,306,0,4409,4410,5,11,0,0,4410,4411,3,612,306, + 0,4411,4420,1,0,0,0,4412,4413,5,184,0,0,4413,4414,7,39,0,0,4414, + 4420,3,552,276,0,4415,4416,3,650,325,0,4416,4417,7,40,0,0,4417,4418, + 3,616,308,0,4418,4420,1,0,0,0,4419,4405,1,0,0,0,4419,4407,1,0,0, + 0,4419,4412,1,0,0,0,4419,4415,1,0,0,0,4420,623,1,0,0,0,4421,4424, + 3,616,308,0,4422,4424,3,552,276,0,4423,4421,1,0,0,0,4423,4422,1, + 0,0,0,4424,625,1,0,0,0,4425,4426,7,41,0,0,4426,4429,3,612,306,0, + 4427,4429,3,622,311,0,4428,4425,1,0,0,0,4428,4427,1,0,0,0,4429,627, + 1,0,0,0,4430,4431,5,167,0,0,4431,4432,5,96,0,0,4432,4433,5,139,0, + 0,4433,629,1,0,0,0,4434,4442,5,405,0,0,4435,4442,5,406,0,0,4436, + 4442,5,407,0,0,4437,4438,5,167,0,0,4438,4439,5,216,0,0,4439,4440, + 5,96,0,0,4440,4442,5,139,0,0,4441,4434,1,0,0,0,4441,4435,1,0,0,0, + 4441,4436,1,0,0,0,4441,4437,1,0,0,0,4442,631,1,0,0,0,4443,4452,3, + 618,309,0,4444,4445,3,630,315,0,4445,4446,3,618,309,0,4446,4451, + 1,0,0,0,4447,4448,3,628,314,0,4448,4449,3,618,309,0,4449,4451,1, + 0,0,0,4450,4444,1,0,0,0,4450,4447,1,0,0,0,4451,4454,1,0,0,0,4452, + 4450,1,0,0,0,4452,4453,1,0,0,0,4453,633,1,0,0,0,4454,4452,1,0,0, + 0,4455,4462,5,219,0,0,4456,4462,5,350,0,0,4457,4462,5,125,0,0,4458, + 4462,5,360,0,0,4459,4460,5,216,0,0,4460,4462,7,42,0,0,4461,4455, + 1,0,0,0,4461,4456,1,0,0,0,4461,4457,1,0,0,0,4461,4458,1,0,0,0,4461, + 4459,1,0,0,0,4462,635,1,0,0,0,4463,4465,5,216,0,0,4464,4463,1,0, + 0,0,4465,4468,1,0,0,0,4466,4464,1,0,0,0,4466,4467,1,0,0,0,4467,4469, + 1,0,0,0,4468,4466,1,0,0,0,4469,4472,3,632,316,0,4470,4471,5,167, + 0,0,4471,4473,3,634,317,0,4472,4470,1,0,0,0,4472,4473,1,0,0,0,4473, + 637,1,0,0,0,4474,4479,3,636,318,0,4475,4476,5,11,0,0,4476,4478,3, + 636,318,0,4477,4475,1,0,0,0,4478,4481,1,0,0,0,4479,4477,1,0,0,0, + 4479,4480,1,0,0,0,4480,639,1,0,0,0,4481,4479,1,0,0,0,4482,4484,3, + 482,241,0,4483,4485,3,642,321,0,4484,4483,1,0,0,0,4484,4485,1,0, + 0,0,4485,641,1,0,0,0,4486,4487,5,237,0,0,4487,4488,5,399,0,0,4488, + 4493,3,644,322,0,4489,4490,5,397,0,0,4490,4492,3,644,322,0,4491, + 4489,1,0,0,0,4492,4495,1,0,0,0,4493,4491,1,0,0,0,4493,4494,1,0,0, + 0,4494,4496,1,0,0,0,4495,4493,1,0,0,0,4496,4497,5,400,0,0,4497,643, + 1,0,0,0,4498,4501,3,654,327,0,4499,4500,5,405,0,0,4500,4502,3,588, + 294,0,4501,4499,1,0,0,0,4501,4502,1,0,0,0,4502,645,1,0,0,0,4503, + 4504,5,399,0,0,4504,4509,3,648,324,0,4505,4506,5,397,0,0,4506,4508, + 3,648,324,0,4507,4505,1,0,0,0,4508,4511,1,0,0,0,4509,4507,1,0,0, + 0,4509,4510,1,0,0,0,4510,4512,1,0,0,0,4511,4509,1,0,0,0,4512,4513, + 5,400,0,0,4513,647,1,0,0,0,4514,4517,3,654,327,0,4515,4518,5,184, + 0,0,4516,4518,3,650,325,0,4517,4515,1,0,0,0,4517,4516,1,0,0,0,4518, + 4519,1,0,0,0,4519,4520,3,588,294,0,4520,649,1,0,0,0,4521,4522,7, + 43,0,0,4522,651,1,0,0,0,4523,4524,7,44,0,0,4524,653,1,0,0,0,4525, + 4528,5,432,0,0,4526,4528,3,660,330,0,4527,4525,1,0,0,0,4527,4526, + 1,0,0,0,4528,655,1,0,0,0,4529,4532,3,654,327,0,4530,4531,5,395,0, + 0,4531,4533,3,654,327,0,4532,4530,1,0,0,0,4532,4533,1,0,0,0,4533, + 657,1,0,0,0,4534,4535,3,654,327,0,4535,659,1,0,0,0,4536,4537,7,45, + 0,0,4537,661,1,0,0,0,4538,4539,7,46,0,0,4539,663,1,0,0,0,4540,4545, + 3,666,333,0,4541,4542,7,47,0,0,4542,4544,3,666,333,0,4543,4541,1, + 0,0,0,4544,4547,1,0,0,0,4545,4543,1,0,0,0,4545,4546,1,0,0,0,4546, + 665,1,0,0,0,4547,4545,1,0,0,0,4548,4555,3,668,334,0,4549,4550,4, + 333,3,0,4550,4551,5,414,0,0,4551,4552,4,333,4,0,4552,4554,3,668, + 334,0,4553,4549,1,0,0,0,4554,4557,1,0,0,0,4555,4553,1,0,0,0,4555, + 4556,1,0,0,0,4556,667,1,0,0,0,4557,4555,1,0,0,0,4558,4610,3,654, + 327,0,4559,4610,5,299,0,0,4560,4610,5,171,0,0,4561,4610,5,237,0, + 0,4562,4610,5,198,0,0,4563,4610,5,268,0,0,4564,4610,5,369,0,0,4565, + 4610,5,241,0,0,4566,4610,5,165,0,0,4567,4610,5,292,0,0,4568,4610, + 5,356,0,0,4569,4610,5,144,0,0,4570,4610,5,203,0,0,4571,4610,5,219, + 0,0,4572,4610,5,126,0,0,4573,4610,5,188,0,0,4574,4610,5,101,0,0, + 4575,4610,5,329,0,0,4576,4610,5,224,0,0,4577,4610,5,291,0,0,4578, + 4610,5,145,0,0,4579,4610,5,304,0,0,4580,4610,5,135,0,0,4581,4610, + 5,318,0,0,4582,4610,5,161,0,0,4583,4610,5,54,0,0,4584,4610,5,166, + 0,0,4585,4610,5,358,0,0,4586,4610,5,45,0,0,4587,4610,5,347,0,0,4588, + 4610,5,96,0,0,4589,4610,5,154,0,0,4590,4610,5,269,0,0,4591,4610, + 5,337,0,0,4592,4610,5,225,0,0,4593,4610,5,108,0,0,4594,4610,5,141, + 0,0,4595,4610,5,365,0,0,4596,4610,5,21,0,0,4597,4610,5,78,0,0,4598, + 4610,5,374,0,0,4599,4610,5,336,0,0,4600,4610,5,167,0,0,4601,4610, + 5,134,0,0,4602,4610,5,216,0,0,4603,4610,5,27,0,0,4604,4610,5,370, + 0,0,4605,4610,5,263,0,0,4606,4610,5,25,0,0,4607,4610,5,62,0,0,4608, + 4610,5,17,0,0,4609,4558,1,0,0,0,4609,4559,1,0,0,0,4609,4560,1,0, + 0,0,4609,4561,1,0,0,0,4609,4562,1,0,0,0,4609,4563,1,0,0,0,4609,4564, + 1,0,0,0,4609,4565,1,0,0,0,4609,4566,1,0,0,0,4609,4567,1,0,0,0,4609, + 4568,1,0,0,0,4609,4569,1,0,0,0,4609,4570,1,0,0,0,4609,4571,1,0,0, + 0,4609,4572,1,0,0,0,4609,4573,1,0,0,0,4609,4574,1,0,0,0,4609,4575, + 1,0,0,0,4609,4576,1,0,0,0,4609,4577,1,0,0,0,4609,4578,1,0,0,0,4609, + 4579,1,0,0,0,4609,4580,1,0,0,0,4609,4581,1,0,0,0,4609,4582,1,0,0, + 0,4609,4583,1,0,0,0,4609,4584,1,0,0,0,4609,4585,1,0,0,0,4609,4586, + 1,0,0,0,4609,4587,1,0,0,0,4609,4588,1,0,0,0,4609,4589,1,0,0,0,4609, + 4590,1,0,0,0,4609,4591,1,0,0,0,4609,4592,1,0,0,0,4609,4593,1,0,0, + 0,4609,4594,1,0,0,0,4609,4595,1,0,0,0,4609,4596,1,0,0,0,4609,4597, + 1,0,0,0,4609,4598,1,0,0,0,4609,4599,1,0,0,0,4609,4600,1,0,0,0,4609, + 4601,1,0,0,0,4609,4602,1,0,0,0,4609,4603,1,0,0,0,4609,4604,1,0,0, + 0,4609,4605,1,0,0,0,4609,4606,1,0,0,0,4609,4607,1,0,0,0,4609,4608, + 1,0,0,0,4610,669,1,0,0,0,4611,4612,5,58,0,0,4612,4613,5,280,0,0, + 4613,4615,5,243,0,0,4614,4616,3,32,16,0,4615,4614,1,0,0,0,4615,4616, + 1,0,0,0,4616,4626,1,0,0,0,4617,4618,3,654,327,0,4618,4619,5,184, + 0,0,4619,4620,3,654,327,0,4620,4627,1,0,0,0,4621,4624,3,654,327, + 0,4622,4623,5,387,0,0,4623,4625,3,676,338,0,4624,4622,1,0,0,0,4624, + 4625,1,0,0,0,4625,4627,1,0,0,0,4626,4617,1,0,0,0,4626,4621,1,0,0, + 0,4627,4777,1,0,0,0,4628,4629,5,9,0,0,4629,4630,5,280,0,0,4630,4631, + 5,243,0,0,4631,4656,3,654,327,0,4632,4657,5,373,0,0,4633,4657,3, + 684,342,0,4634,4635,5,304,0,0,4635,4657,3,676,338,0,4636,4637,5, + 363,0,0,4637,4642,3,678,339,0,4638,4639,5,397,0,0,4639,4641,3,678, + 339,0,4640,4638,1,0,0,0,4641,4644,1,0,0,0,4642,4640,1,0,0,0,4642, + 4643,1,0,0,0,4643,4657,1,0,0,0,4644,4642,1,0,0,0,4645,4646,5,274, + 0,0,4646,4647,5,341,0,0,4647,4657,3,654,327,0,4648,4650,3,680,340, + 0,4649,4651,3,682,341,0,4650,4649,1,0,0,0,4650,4651,1,0,0,0,4651, + 4657,1,0,0,0,4652,4654,3,682,341,0,4653,4655,3,680,340,0,4654,4653, + 1,0,0,0,4654,4655,1,0,0,0,4655,4657,1,0,0,0,4656,4632,1,0,0,0,4656, + 4633,1,0,0,0,4656,4634,1,0,0,0,4656,4636,1,0,0,0,4656,4645,1,0,0, + 0,4656,4648,1,0,0,0,4656,4652,1,0,0,0,4657,4777,1,0,0,0,4658,4659, + 5,101,0,0,4659,4660,5,280,0,0,4660,4662,5,243,0,0,4661,4663,3,30, + 15,0,4662,4661,1,0,0,0,4662,4663,1,0,0,0,4663,4664,1,0,0,0,4664, + 4777,3,654,327,0,4665,4668,3,682,341,0,4666,4668,3,684,342,0,4667, + 4665,1,0,0,0,4667,4666,1,0,0,0,4668,4669,1,0,0,0,4669,4670,5,390, + 0,0,4670,4671,5,197,0,0,4671,4777,1,0,0,0,4672,4684,5,278,0,0,4673, + 4674,5,3,0,0,4674,4675,5,280,0,0,4675,4676,5,243,0,0,4676,4677,5, + 387,0,0,4677,4685,3,654,327,0,4678,4679,5,280,0,0,4679,4680,5,243, + 0,0,4680,4681,3,654,327,0,4681,4682,5,387,0,0,4682,4683,3,654,327, + 0,4683,4685,1,0,0,0,4684,4673,1,0,0,0,4684,4678,1,0,0,0,4685,4777, + 1,0,0,0,4686,4687,5,58,0,0,4687,4688,5,348,0,0,4688,4689,3,654,327, + 0,4689,4690,5,395,0,0,4690,4691,3,654,327,0,4691,4692,5,383,0,0, + 4692,4693,3,708,354,0,4693,4694,5,99,0,0,4694,4695,3,710,355,0,4695, + 4777,1,0,0,0,4696,4697,5,9,0,0,4697,4698,5,348,0,0,4698,4699,3,654, + 327,0,4699,4700,5,395,0,0,4700,4717,3,654,327,0,4701,4702,5,383, + 0,0,4702,4703,3,708,354,0,4703,4704,5,99,0,0,4704,4705,3,710,355, + 0,4705,4718,1,0,0,0,4706,4707,5,4,0,0,4707,4711,5,341,0,0,4708,4709, + 5,101,0,0,4709,4711,5,139,0,0,4710,4706,1,0,0,0,4710,4708,1,0,0, + 0,4711,4715,1,0,0,0,4712,4713,5,246,0,0,4713,4716,3,704,352,0,4714, + 4716,5,362,0,0,4715,4712,1,0,0,0,4715,4714,1,0,0,0,4716,4718,1,0, + 0,0,4717,4701,1,0,0,0,4717,4710,1,0,0,0,4718,4777,1,0,0,0,4719,4720, + 5,101,0,0,4720,4721,5,348,0,0,4721,4722,3,654,327,0,4722,4723,5, + 395,0,0,4723,4724,3,654,327,0,4724,4777,1,0,0,0,4725,4726,5,58,0, + 0,4726,4727,5,246,0,0,4727,4728,3,654,327,0,4728,4729,5,395,0,0, + 4729,4730,3,704,352,0,4730,4731,5,387,0,0,4731,4732,3,714,357,0, + 4732,4777,1,0,0,0,4733,4734,5,9,0,0,4734,4735,5,246,0,0,4735,4736, + 3,654,327,0,4736,4737,5,395,0,0,4737,4745,3,704,352,0,4738,4739, + 5,304,0,0,4739,4746,3,714,357,0,4740,4741,5,363,0,0,4741,4746,5, + 294,0,0,4742,4743,7,48,0,0,4743,4744,5,348,0,0,4744,4746,3,654,327, + 0,4745,4738,1,0,0,0,4745,4740,1,0,0,0,4745,4742,1,0,0,0,4746,4777, + 1,0,0,0,4747,4748,5,101,0,0,4748,4749,5,246,0,0,4749,4750,3,654, + 327,0,4750,4751,5,395,0,0,4751,4752,3,704,352,0,4752,4777,1,0,0, + 0,4753,4754,7,49,0,0,4754,4755,3,672,336,0,4755,4756,5,200,0,0,4756, + 4757,5,426,0,0,4757,4758,5,154,0,0,4758,4762,3,654,327,0,4759,4760, + 5,341,0,0,4760,4763,3,704,352,0,4761,4763,5,362,0,0,4762,4759,1, + 0,0,0,4762,4761,1,0,0,0,4763,4767,1,0,0,0,4764,4765,5,387,0,0,4765, + 4766,5,229,0,0,4766,4768,5,431,0,0,4767,4764,1,0,0,0,4767,4768,1, + 0,0,0,4768,4777,1,0,0,0,4769,4770,5,101,0,0,4770,4771,3,672,336, + 0,4771,4772,5,200,0,0,4772,4773,5,426,0,0,4773,4774,5,154,0,0,4774, + 4775,3,654,327,0,4775,4777,1,0,0,0,4776,4611,1,0,0,0,4776,4628,1, + 0,0,0,4776,4658,1,0,0,0,4776,4667,1,0,0,0,4776,4672,1,0,0,0,4776, + 4686,1,0,0,0,4776,4696,1,0,0,0,4776,4719,1,0,0,0,4776,4725,1,0,0, + 0,4776,4733,1,0,0,0,4776,4747,1,0,0,0,4776,4753,1,0,0,0,4776,4769, + 1,0,0,0,4777,671,1,0,0,0,4778,4779,7,50,0,0,4779,673,1,0,0,0,4780, + 4781,5,259,0,0,4781,4782,5,405,0,0,4782,4788,5,431,0,0,4783,4784, + 5,83,0,0,4784,4785,5,246,0,0,4785,4786,5,405,0,0,4786,4788,3,704, + 352,0,4787,4780,1,0,0,0,4787,4783,1,0,0,0,4788,675,1,0,0,0,4789, + 4794,3,674,337,0,4790,4791,5,397,0,0,4791,4793,3,674,337,0,4792, + 4790,1,0,0,0,4793,4796,1,0,0,0,4794,4792,1,0,0,0,4794,4795,1,0,0, + 0,4795,677,1,0,0,0,4796,4794,1,0,0,0,4797,4801,5,259,0,0,4798,4799, + 5,83,0,0,4799,4801,5,246,0,0,4800,4797,1,0,0,0,4800,4798,1,0,0,0, + 4801,679,1,0,0,0,4802,4805,5,2,0,0,4803,4804,5,387,0,0,4804,4806, + 5,278,0,0,4805,4803,1,0,0,0,4805,4806,1,0,0,0,4806,681,1,0,0,0,4807, + 4808,7,51,0,0,4808,683,1,0,0,0,4809,4810,7,52,0,0,4810,685,1,0,0, + 0,4811,4812,7,53,0,0,4812,687,1,0,0,0,4813,4814,7,54,0,0,4814,689, + 1,0,0,0,4815,4816,7,55,0,0,4816,691,1,0,0,0,4817,4818,7,56,0,0,4818, + 693,1,0,0,0,4819,4820,7,57,0,0,4820,695,1,0,0,0,4821,4822,7,58,0, + 0,4822,697,1,0,0,0,4823,4824,7,59,0,0,4824,699,1,0,0,0,4825,4826, + 7,60,0,0,4826,701,1,0,0,0,4827,4828,1,0,0,0,4828,703,1,0,0,0,4829, + 4834,3,654,327,0,4830,4831,5,395,0,0,4831,4833,3,654,327,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,705,1,0,0,0,4836,4834,1,0,0,0,4837,4842,3,654,327,0,4838, + 4839,5,395,0,0,4839,4841,3,654,327,0,4840,4838,1,0,0,0,4841,4844, + 1,0,0,0,4842,4840,1,0,0,0,4842,4843,1,0,0,0,4843,4855,1,0,0,0,4844, + 4842,1,0,0,0,4845,4846,4,353,5,0,4846,4851,3,654,327,0,4847,4848, + 5,395,0,0,4848,4850,3,702,351,0,4849,4847,1,0,0,0,4850,4853,1,0, + 0,0,4851,4849,1,0,0,0,4851,4852,1,0,0,0,4852,4855,1,0,0,0,4853,4851, + 1,0,0,0,4854,4837,1,0,0,0,4854,4845,1,0,0,0,4855,707,1,0,0,0,4856, + 4857,3,654,327,0,4857,4858,5,411,0,0,4858,4859,7,26,0,0,4859,709, + 1,0,0,0,4860,4865,5,176,0,0,4861,4862,5,211,0,0,4862,4863,5,341, + 0,0,4863,4865,3,704,352,0,4864,4860,1,0,0,0,4864,4861,1,0,0,0,4865, + 711,1,0,0,0,4866,4867,5,8,0,0,4867,4868,5,405,0,0,4868,4879,5,431, + 0,0,4869,4870,5,259,0,0,4870,4871,5,405,0,0,4871,4879,5,431,0,0, + 4872,4873,5,294,0,0,4873,4874,5,405,0,0,4874,4879,5,426,0,0,4875, + 4876,5,240,0,0,4876,4877,5,405,0,0,4877,4879,3,704,352,0,4878,4866, + 1,0,0,0,4878,4869,1,0,0,0,4878,4872,1,0,0,0,4878,4875,1,0,0,0,4879, + 713,1,0,0,0,4880,4885,3,712,356,0,4881,4882,5,397,0,0,4882,4884, + 3,712,356,0,4883,4881,1,0,0,0,4884,4887,1,0,0,0,4885,4883,1,0,0, + 0,4885,4886,1,0,0,0,4886,715,1,0,0,0,4887,4885,1,0,0,0,630,719,726, + 729,735,741,748,758,761,765,780,787,793,798,803,806,830,833,838, + 843,849,853,866,870,874,879,886,890,895,902,906,911,959,966,971, + 994,998,1002,1005,1009,1014,1020,1024,1030,1032,1043,1047,1054,1062, + 1065,1070,1074,1077,1087,1095,1099,1102,1106,1110,1113,1118,1124, + 1129,1134,1138,1149,1151,1155,1165,1169,1175,1178,1185,1190,1198, + 1203,1207,1215,1220,1226,1232,1235,1238,1241,1250,1258,1263,1271, + 1278,1281,1284,1286,1297,1299,1302,1305,1308,1311,1314,1316,1328, + 1334,1342,1344,1354,1387,1392,1396,1400,1407,1414,1420,1424,1427, + 1434,1457,1462,1466,1474,1483,1490,1496,1503,1506,1512,1519,1527, + 1536,1545,1552,1572,1579,1581,1588,1598,1606,1610,1614,1627,1636, + 1652,1656,1661,1666,1669,1672,1675,1678,1681,1686,1695,1699,1706, + 1709,1712,1715,1727,1733,1759,1767,1771,1774,1777,1780,1783,1786, + 1789,1792,1801,1811,1814,1834,1840,1846,1849,1851,1858,1865,1878, + 1883,1892,1900,1908,1921,1934,1950,1954,1969,1975,1978,1981,1984, + 1987,1991,2006,2009,2020,2034,2068,2076,2081,2089,2094,2099,2106, + 2114,2122,2130,2136,2143,2153,2157,2165,2174,2177,2181,2188,2194, + 2198,2204,2208,2220,2229,2240,2244,2251,2263,2273,2276,2283,2289, + 2293,2296,2299,2305,2309,2313,2318,2322,2326,2330,2338,2342,2346, + 2350,2354,2362,2366,2370,2378,2383,2388,2392,2396,2403,2412,2420, + 2432,2450,2453,2459,2485,2488,2494,2502,2510,2523,2530,2533,2536, + 2539,2542,2545,2548,2551,2554,2557,2560,2565,2568,2571,2574,2577, + 2580,2583,2586,2589,2592,2595,2597,2603,2607,2610,2613,2616,2619, + 2622,2629,2633,2636,2639,2642,2645,2648,2655,2658,2666,2670,2677, + 2679,2682,2687,2690,2694,2699,2705,2713,2721,2731,2734,2738,2742, + 2747,2754,2758,2760,2764,2771,2776,2789,2797,2816,2826,2839,2849, + 2853,2857,2863,2870,2877,2886,2893,2913,2916,2930,2945,2949,2969, + 2981,2987,2990,2993,2999,3005,3012,3020,3026,3030,3035,3038,3042, + 3049,3054,3059,3062,3064,3072,3080,3084,3088,3092,3109,3126,3133, + 3142,3147,3150,3153,3157,3172,3186,3189,3200,3204,3207,3210,3214, + 3219,3222,3225,3228,3231,3234,3240,3243,3246,3249,3252,3255,3258, + 3261,3264,3267,3271,3273,3279,3284,3287,3290,3293,3296,3302,3305, + 3308,3311,3314,3317,3320,3323,3326,3329,3333,3335,3337,3342,3347, + 3351,3355,3360,3365,3374,3384,3392,3404,3407,3413,3420,3427,3434, + 3441,3451,3453,3457,3461,3468,3473,3477,3481,3484,3487,3498,3502, + 3504,3507,3520,3523,3526,3538,3541,3548,3557,3562,3564,3566,3583, + 3586,3594,3597,3601,3604,3607,3610,3613,3625,3633,3640,3643,3650, + 3653,3658,3665,3673,3679,3684,3688,3693,3697,3704,3718,3721,3728, + 3736,3746,3749,3758,3767,3770,3776,3779,3784,3787,3800,3806,3808, + 3818,3824,3827,3837,3842,3846,3862,3868,3870,3877,3884,3898,3904, + 3907,3910,3913,3922,3929,3935,3944,3948,3956,3966,3976,3981,3985, + 3991,3996,4001,4008,4012,4015,4020,4023,4027,4032,4043,4045,4054, + 4077,4087,4090,4097,4100,4110,4117,4120,4122,4133,4143,4145,4154, + 4159,4168,4181,4185,4197,4201,4210,4229,4247,4259,4274,4278,4294, + 4301,4315,4320,4330,4332,4340,4348,4356,4364,4372,4380,4391,4395, + 4403,4419,4423,4428,4441,4450,4452,4461,4466,4472,4479,4484,4493, + 4501,4509,4517,4527,4532,4545,4555,4609,4615,4624,4626,4642,4650, + 4654,4656,4662,4667,4684,4710,4715,4717,4745,4762,4767,4776,4787, + 4794,4800,4805,4834,4842,4851,4854,4864,4878,4885 ]; private static __ATN: antlr.ATN; @@ -28713,36 +28808,12 @@ export class ExecStatementContext extends antlr.ParserRuleContext { public KW_SET(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.KW_SET, 0); } - public configPropertiesItem(): ConfigPropertiesItemContext[]; - public configPropertiesItem(i: number): ConfigPropertiesItemContext | null; - public configPropertiesItem(i?: number): ConfigPropertiesItemContext[] | ConfigPropertiesItemContext | null { - if (i === undefined) { - return this.getRuleContexts(ConfigPropertiesItemContext); - } - - return this.getRuleContext(i, ConfigPropertiesItemContext); + public configProperty(): ConfigPropertyContext | null { + return this.getRuleContext(0, ConfigPropertyContext); } public EQUAL(): antlr.TerminalNode | null { return this.getToken(HiveSqlParser.EQUAL, 0); } - public DOT(): antlr.TerminalNode[]; - public DOT(i: number): antlr.TerminalNode | null; - public DOT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(HiveSqlParser.DOT); - } else { - return this.getToken(HiveSqlParser.DOT, i); - } - } - public COLON(): antlr.TerminalNode[]; - public COLON(i: number): antlr.TerminalNode | null; - public COLON(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(HiveSqlParser.COLON); - } else { - return this.getToken(HiveSqlParser.COLON, i); - } - } public override get ruleIndex(): number { return HiveSqlParser.RULE_execStatement; } @@ -45446,6 +45517,105 @@ export class Sql11ReservedKeywordsUsedAsFunctionNameContext extends antlr.Parser } +export class ConfigPropertyContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public configPropertyPart(): ConfigPropertyPartContext[]; + public configPropertyPart(i: number): ConfigPropertyPartContext | null; + public configPropertyPart(i?: number): ConfigPropertyPartContext[] | ConfigPropertyPartContext | null { + if (i === undefined) { + return this.getRuleContexts(ConfigPropertyPartContext); + } + + return this.getRuleContext(i, ConfigPropertyPartContext); + } + public DOT(): antlr.TerminalNode[]; + public DOT(i: number): antlr.TerminalNode | null; + public DOT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.DOT); + } else { + return this.getToken(HiveSqlParser.DOT, i); + } + } + public COLON(): antlr.TerminalNode[]; + public COLON(i: number): antlr.TerminalNode | null; + public COLON(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.COLON); + } else { + return this.getToken(HiveSqlParser.COLON, i); + } + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_configProperty; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterConfigProperty) { + listener.enterConfigProperty(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitConfigProperty) { + listener.exitConfigProperty(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitConfigProperty) { + return visitor.visitConfigProperty(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ConfigPropertyPartContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public configPropertiesItem(): ConfigPropertiesItemContext[]; + public configPropertiesItem(i: number): ConfigPropertiesItemContext | null; + public configPropertiesItem(i?: number): ConfigPropertiesItemContext[] | ConfigPropertiesItemContext | null { + if (i === undefined) { + return this.getRuleContexts(ConfigPropertiesItemContext); + } + + return this.getRuleContext(i, ConfigPropertiesItemContext); + } + public MINUS(): antlr.TerminalNode[]; + public MINUS(i: number): antlr.TerminalNode | null; + public MINUS(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(HiveSqlParser.MINUS); + } else { + return this.getToken(HiveSqlParser.MINUS, i); + } + } + public override get ruleIndex(): number { + return HiveSqlParser.RULE_configPropertyPart; + } + public override enterRule(listener: HiveSqlParserListener): void { + if(listener.enterConfigPropertyPart) { + listener.enterConfigPropertyPart(this); + } + } + public override exitRule(listener: HiveSqlParserListener): void { + if(listener.exitConfigPropertyPart) { + listener.exitConfigPropertyPart(this); + } + } + public override accept(visitor: HiveSqlParserVisitor): Result | null { + if (visitor.visitConfigPropertyPart) { + return visitor.visitConfigPropertyPart(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ConfigPropertiesItemContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/hive/HiveSqlParserListener.ts b/src/lib/hive/HiveSqlParserListener.ts index 1b056edb..964050e2 100644 --- a/src/lib/hive/HiveSqlParserListener.ts +++ b/src/lib/hive/HiveSqlParserListener.ts @@ -342,6 +342,8 @@ import { FunctionIdentifierContext } from "./HiveSqlParser.js"; import { PrincipalIdentifierContext } from "./HiveSqlParser.js"; import { NonReservedContext } from "./HiveSqlParser.js"; import { Sql11ReservedKeywordsUsedAsFunctionNameContext } from "./HiveSqlParser.js"; +import { ConfigPropertyContext } from "./HiveSqlParser.js"; +import { ConfigPropertyPartContext } from "./HiveSqlParser.js"; import { ConfigPropertiesItemContext } from "./HiveSqlParser.js"; import { ResourcePlanDdlStatementsContext } from "./HiveSqlParser.js"; import { MappingTypesContext } from "./HiveSqlParser.js"; @@ -3721,6 +3723,26 @@ export class HiveSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitSql11ReservedKeywordsUsedAsFunctionName?: (ctx: Sql11ReservedKeywordsUsedAsFunctionNameContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.configProperty`. + * @param ctx the parse tree + */ + enterConfigProperty?: (ctx: ConfigPropertyContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.configProperty`. + * @param ctx the parse tree + */ + exitConfigProperty?: (ctx: ConfigPropertyContext) => void; + /** + * Enter a parse tree produced by `HiveSqlParser.configPropertyPart`. + * @param ctx the parse tree + */ + enterConfigPropertyPart?: (ctx: ConfigPropertyPartContext) => void; + /** + * Exit a parse tree produced by `HiveSqlParser.configPropertyPart`. + * @param ctx the parse tree + */ + exitConfigPropertyPart?: (ctx: ConfigPropertyPartContext) => void; /** * Enter a parse tree produced by `HiveSqlParser.configPropertiesItem`. * @param ctx the parse tree diff --git a/src/lib/hive/HiveSqlParserVisitor.ts b/src/lib/hive/HiveSqlParserVisitor.ts index 4b3c1ed5..d6587f44 100644 --- a/src/lib/hive/HiveSqlParserVisitor.ts +++ b/src/lib/hive/HiveSqlParserVisitor.ts @@ -342,6 +342,8 @@ import { FunctionIdentifierContext } from "./HiveSqlParser.js"; import { PrincipalIdentifierContext } from "./HiveSqlParser.js"; import { NonReservedContext } from "./HiveSqlParser.js"; import { Sql11ReservedKeywordsUsedAsFunctionNameContext } from "./HiveSqlParser.js"; +import { ConfigPropertyContext } from "./HiveSqlParser.js"; +import { ConfigPropertyPartContext } from "./HiveSqlParser.js"; import { ConfigPropertiesItemContext } from "./HiveSqlParser.js"; import { ResourcePlanDdlStatementsContext } from "./HiveSqlParser.js"; import { MappingTypesContext } from "./HiveSqlParser.js"; @@ -2384,6 +2386,18 @@ export class HiveSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `HiveSqlParser.configProperty`. + * @param ctx the parse tree + * @return the visitor result + */ + visitConfigProperty?: (ctx: ConfigPropertyContext) => Result; + /** + * Visit a parse tree produced by `HiveSqlParser.configPropertyPart`. + * @param ctx the parse tree + * @return the visitor result + */ + visitConfigPropertyPart?: (ctx: ConfigPropertyPartContext) => Result; /** * Visit a parse tree produced by `HiveSqlParser.configPropertiesItem`. * @param ctx the parse tree diff --git a/test/parser/hive/syntax/fixtures/setConfigProperties.sql b/test/parser/hive/syntax/fixtures/setConfigProperties.sql index 295c58ed..7ee64752 100644 --- a/test/parser/hive/syntax/fixtures/setConfigProperties.sql +++ b/test/parser/hive/syntax/fixtures/setConfigProperties.sql @@ -662,3 +662,9 @@ SET hivevar:A = 1; -- SELECT ${hivevar:A}; SELECT `_A`; SELECT `_hivevar:A`; + +-- https://github.com/DTStack/dt-sql-parser/issues/487 +set tez.grouping.max-size = 268435456; +set tez.grouping.min-size = 134217728; +set tez.grouping.split-waves = 1; +set a-b-c = 1; diff --git a/test/parser/hive/syntax/setConfigProperties.test.ts b/test/parser/hive/syntax/setConfigProperties.test.ts index 801e6324..63550c04 100644 --- a/test/parser/hive/syntax/setConfigProperties.test.ts +++ b/test/parser/hive/syntax/setConfigProperties.test.ts @@ -13,4 +13,12 @@ describe('HiveSQL Select Syntax Tests', () => { expect(hive.validate(configProperty).length).toBe(0); }); }); + + // https://github.com/DTStack/dt-sql-parser/issues/487 + // A hyphen inside a config property name must be adjacent to the surrounding + // words (no whitespace), e.g. `max-size`. Spaced-out `a - b` is invalid. + it('should report error when hyphen in config property is surrounded by whitespace', () => { + expect(hive.validate('set hive.a - b = 1;').length).toBeGreaterThan(0); + expect(hive.validate('set hive.a- b = 1;').length).toBeGreaterThan(0); + }); });