From 12ef949339ffb0889e428c97c54149cd567b6ae8 Mon Sep 17 00:00:00 2001 From: zhaoge <> Date: Tue, 30 Dec 2025 15:00:44 +0800 Subject: [PATCH] fix(flink): #455 fix json functions' params problem in flink --- src/grammar/flink/FlinkSqlParser.g4 | 39 + src/lib/flink/FlinkSqlParser.interp | 7 +- src/lib/flink/FlinkSqlParser.ts | 6581 +++++++++++------- src/lib/flink/FlinkSqlParserListener.ts | 55 + src/lib/flink/FlinkSqlParserVisitor.ts | 35 + test/parser/flink/syntax/fixtures/select.sql | 29 +- 6 files changed, 4141 insertions(+), 2605 deletions(-) diff --git a/src/grammar/flink/FlinkSqlParser.g4 b/src/grammar/flink/FlinkSqlParser.g4 index 1c70c06a..0ea1d12d 100644 --- a/src/grammar/flink/FlinkSqlParser.g4 +++ b/src/grammar/flink/FlinkSqlParser.g4 @@ -738,6 +738,15 @@ predicate | KW_IS KW_JSON (KW_VALUE | KW_ARRAY | identifier)? ; +jsonFunctionBranch + : KW_NULL + | KW_EMPTY KW_ARRAY + | KW_EMPTY uid + | KW_TRUE + | KW_FALSE + | KW_UNKNOWN + ; + likePredicate : KW_NOT? kind=KW_LIKE quantifier=(KW_ANY | KW_ALL) ( LR_BRACKET RR_BRACKET @@ -825,6 +834,36 @@ functionParam | timeIntervalUnit | timePointUnit | expression + | jsonValueParams + | jsonQueryParams + | jsonObjectParams + | jsonArrayParams + ; + +jsonValueParams + : columnNamePath (uid columnType)? ( + (uid | KW_NULL | KW_DEFAULT valueExpression) KW_ON KW_EMPTY + )? ((uid | KW_NULL | KW_DEFAULT valueExpression) KW_ON uid)? + ; + +jsonQueryParams + : columnNamePath ((KW_WITHOUT | KW_WITH uid?) KW_ARRAY? uid)? ( + jsonFunctionBranch KW_ON KW_EMPTY + )? (jsonFunctionBranch KW_ON uid)? + ; + +// JSON 函数只能在 JSON_OBJECT 函数中使用 +jsonObjectParams + : ( + KW_KEY? columnNamePath KW_VALUE? ( + valueExpression + | KW_JSON LR_BRACKET (valueExpression)* RR_BRACKET + ) + )* ((KW_NULL | uid) KW_ON KW_NULL)? + ; + +jsonArrayParams + : valueExpression* ((KW_NULL | uid) KW_ON KW_NULL)? ; dereferenceDefinition diff --git a/src/lib/flink/FlinkSqlParser.interp b/src/lib/flink/FlinkSqlParser.interp index 80ed68bf..2905e3ec 100644 --- a/src/lib/flink/FlinkSqlParser.interp +++ b/src/lib/flink/FlinkSqlParser.interp @@ -1222,6 +1222,7 @@ withinClause expression booleanExpression predicate +jsonFunctionBranch likePredicate valueExpression functionCallExpression @@ -1231,6 +1232,10 @@ functionName functionNameAndParams functionNameWithParams functionParam +jsonValueParams +jsonQueryParams +jsonObjectParams +jsonArrayParams dereferenceDefinition correlationName qualifiedName @@ -1286,4 +1291,4 @@ nonReservedKeywords atn: -[4, 1, 542, 2319, 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, 1, 0, 5, 0, 390, 8, 0, 10, 0, 12, 0, 393, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 399, 8, 1, 1, 1, 3, 1, 402, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 416, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 434, 8, 4, 1, 5, 1, 5, 3, 5, 438, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 447, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 452, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 457, 8, 8, 10, 8, 12, 8, 460, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 470, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 477, 8, 11, 10, 11, 12, 11, 480, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 491, 8, 12, 1, 12, 3, 12, 494, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 501, 8, 12, 1, 12, 3, 12, 504, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 512, 8, 12, 1, 12, 1, 12, 3, 12, 516, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 521, 8, 12, 1, 12, 3, 12, 524, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 531, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 539, 8, 15, 1, 16, 1, 16, 3, 16, 543, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 555, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 563, 8, 18, 1, 18, 1, 18, 3, 18, 567, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 599, 8, 18, 1, 19, 3, 19, 602, 8, 19, 1, 19, 4, 19, 605, 8, 19, 11, 19, 12, 19, 606, 1, 20, 1, 20, 3, 20, 611, 8, 20, 1, 21, 1, 21, 3, 21, 615, 8, 21, 1, 21, 1, 21, 3, 21, 619, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 626, 8, 21, 10, 21, 12, 21, 629, 9, 21, 1, 21, 1, 21, 3, 21, 633, 8, 21, 1, 21, 1, 21, 3, 21, 637, 8, 21, 1, 21, 1, 21, 3, 21, 641, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 646, 8, 21, 1, 21, 3, 21, 649, 8, 21, 1, 21, 1, 21, 3, 21, 653, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 658, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 664, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 669, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 674, 8, 24, 1, 24, 1, 24, 3, 24, 678, 8, 24, 1, 25, 1, 25, 3, 25, 682, 8, 25, 1, 26, 1, 26, 3, 26, 686, 8, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 694, 8, 28, 10, 28, 12, 28, 697, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 704, 8, 29, 1, 29, 1, 29, 3, 29, 708, 8, 29, 1, 29, 1, 29, 3, 29, 712, 8, 29, 1, 29, 1, 29, 3, 29, 716, 8, 29, 1, 29, 1, 29, 3, 29, 720, 8, 29, 1, 29, 1, 29, 3, 29, 724, 8, 29, 1, 29, 1, 29, 3, 29, 728, 8, 29, 1, 29, 1, 29, 3, 29, 732, 8, 29, 1, 29, 1, 29, 3, 29, 736, 8, 29, 3, 29, 738, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 748, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 756, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 778, 8, 35, 10, 35, 12, 35, 781, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 792, 8, 35, 10, 35, 12, 35, 795, 9, 35, 1, 35, 1, 35, 3, 35, 799, 8, 35, 1, 36, 1, 36, 3, 36, 803, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 809, 8, 36, 1, 36, 3, 36, 812, 8, 36, 1, 36, 3, 36, 815, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 822, 8, 37, 1, 37, 3, 37, 825, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 834, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 846, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 868, 8, 46, 10, 46, 12, 46, 871, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 880, 8, 47, 10, 47, 12, 47, 883, 9, 47, 1, 47, 1, 47, 3, 47, 887, 8, 47, 1, 48, 1, 48, 3, 48, 891, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 897, 8, 49, 10, 49, 12, 49, 900, 9, 49, 1, 49, 3, 49, 903, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 909, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 919, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 924, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 930, 8, 53, 1, 53, 1, 53, 3, 53, 934, 8, 53, 1, 53, 1, 53, 3, 53, 938, 8, 53, 1, 53, 1, 53, 3, 53, 942, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 951, 8, 54, 1, 54, 1, 54, 3, 54, 955, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 962, 8, 54, 1, 54, 3, 54, 965, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 973, 8, 55, 10, 55, 12, 55, 976, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 983, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 991, 8, 57, 1, 58, 1, 58, 3, 58, 995, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1010, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1029, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1040, 8, 66, 1, 66, 1, 66, 3, 66, 1044, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1051, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1056, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 1062, 8, 68, 1, 68, 1, 68, 3, 68, 1066, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1073, 8, 69, 1, 69, 1, 69, 3, 69, 1077, 8, 69, 1, 70, 1, 70, 3, 70, 1081, 8, 70, 1, 70, 1, 70, 3, 70, 1085, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1093, 8, 71, 1, 71, 1, 71, 3, 71, 1097, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1102, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1108, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1114, 8, 73, 1, 73, 3, 73, 1117, 8, 73, 1, 73, 1, 73, 3, 73, 1121, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1130, 8, 75, 10, 75, 12, 75, 1133, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1139, 8, 76, 10, 76, 12, 76, 1142, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1148, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1157, 8, 78, 11, 78, 12, 78, 1158, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 4, 79, 1169, 8, 79, 11, 79, 12, 79, 1170, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1186, 8, 80, 1, 80, 3, 80, 1189, 8, 80, 1, 80, 1, 80, 3, 80, 1193, 8, 80, 1, 80, 3, 80, 1196, 8, 80, 3, 80, 1198, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1203, 8, 80, 1, 80, 1, 80, 3, 80, 1207, 8, 80, 1, 80, 3, 80, 1210, 8, 80, 5, 80, 1212, 8, 80, 10, 80, 12, 80, 1215, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1221, 8, 81, 10, 81, 12, 81, 1224, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1230, 8, 82, 10, 82, 12, 82, 1233, 9, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 1240, 8, 83, 10, 83, 12, 83, 1243, 9, 83, 1, 83, 1, 83, 3, 83, 1247, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 3, 85, 1258, 8, 85, 1, 85, 3, 85, 1261, 8, 85, 1, 85, 3, 85, 1264, 8, 85, 1, 85, 3, 85, 1267, 8, 85, 1, 85, 3, 85, 1270, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1276, 8, 85, 1, 86, 1, 86, 3, 86, 1280, 8, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 1286, 8, 86, 10, 86, 12, 86, 1289, 9, 86, 3, 86, 1291, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1296, 8, 87, 1, 87, 3, 87, 1299, 8, 87, 1, 87, 1, 87, 3, 87, 1303, 8, 87, 1, 87, 3, 87, 1306, 8, 87, 3, 87, 1308, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1322, 8, 88, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 1331, 8, 90, 10, 90, 12, 90, 1334, 9, 90, 1, 90, 1, 90, 3, 90, 1338, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1346, 8, 90, 1, 90, 3, 90, 1349, 8, 90, 1, 90, 3, 90, 1352, 8, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1357, 8, 90, 5, 90, 1359, 8, 90, 10, 90, 12, 90, 1362, 9, 90, 1, 91, 1, 91, 3, 91, 1366, 8, 91, 1, 92, 3, 92, 1369, 8, 92, 1, 92, 1, 92, 3, 92, 1373, 8, 92, 1, 92, 1, 92, 3, 92, 1377, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 1386, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 1397, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 1422, 8, 97, 10, 97, 12, 97, 1425, 9, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1446, 8, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 1459, 8, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1469, 8, 104, 10, 104, 12, 104, 1472, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1482, 8, 105, 10, 105, 12, 105, 1485, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1494, 8, 105, 10, 105, 12, 105, 1497, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1506, 8, 105, 10, 105, 12, 105, 1509, 9, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1514, 8, 105, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 1539, 8, 112, 10, 112, 12, 112, 1542, 9, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 3, 114, 1549, 8, 114, 1, 114, 1, 114, 3, 114, 1553, 8, 114, 1, 114, 3, 114, 1556, 8, 114, 1, 114, 3, 114, 1559, 8, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 3, 115, 1566, 8, 115, 1, 115, 3, 115, 1569, 8, 115, 1, 115, 3, 115, 1572, 8, 115, 1, 115, 3, 115, 1575, 8, 115, 1, 115, 3, 115, 1578, 8, 115, 1, 115, 3, 115, 1581, 8, 115, 1, 115, 1, 115, 1, 115, 3, 115, 1586, 8, 115, 1, 115, 3, 115, 1589, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1596, 8, 116, 10, 116, 12, 116, 1599, 9, 116, 1, 117, 1, 117, 3, 117, 1603, 8, 117, 1, 117, 1, 117, 3, 117, 1607, 8, 117, 1, 118, 1, 118, 1, 118, 3, 118, 1612, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1618, 8, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1623, 8, 119, 5, 119, 1625, 8, 119, 10, 119, 12, 119, 1628, 9, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 1646, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 1652, 8, 121, 10, 121, 12, 121, 1655, 9, 121, 1, 122, 1, 122, 1, 122, 4, 122, 1660, 8, 122, 11, 122, 12, 122, 1661, 1, 122, 1, 122, 3, 122, 1666, 8, 122, 1, 123, 1, 123, 3, 123, 1670, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1680, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1706, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 1712, 8, 126, 10, 126, 12, 126, 1715, 9, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1726, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1748, 8, 131, 3, 131, 1750, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1761, 8, 131, 1, 131, 5, 131, 1764, 8, 131, 10, 131, 12, 131, 1767, 9, 131, 1, 132, 3, 132, 1770, 8, 132, 1, 132, 1, 132, 3, 132, 1774, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1781, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1788, 8, 132, 10, 132, 12, 132, 1791, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1796, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1809, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1816, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1821, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1827, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1834, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1841, 8, 132, 3, 132, 1843, 8, 132, 1, 133, 3, 133, 1846, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1856, 8, 133, 10, 133, 12, 133, 1859, 9, 133, 1, 133, 1, 133, 3, 133, 1863, 8, 133, 1, 133, 3, 133, 1866, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1872, 8, 133, 3, 133, 1874, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1880, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1901, 8, 134, 10, 134, 12, 134, 1904, 9, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1911, 8, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1916, 8, 135, 10, 135, 12, 135, 1919, 9, 135, 3, 135, 1921, 8, 135, 1, 135, 1, 135, 3, 135, 1925, 8, 135, 1, 136, 1, 136, 1, 136, 4, 136, 1930, 8, 136, 11, 136, 12, 136, 1931, 1, 136, 1, 136, 3, 136, 1936, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 4, 136, 1943, 8, 136, 11, 136, 12, 136, 1944, 1, 136, 1, 136, 3, 136, 1949, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1965, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1974, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 2002, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 2009, 8, 136, 10, 136, 12, 136, 2012, 9, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 2020, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2026, 8, 139, 1, 140, 1, 140, 3, 140, 2030, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2036, 8, 141, 1, 142, 1, 142, 1, 143, 1, 143, 1, 144, 1, 144, 3, 144, 2044, 8, 144, 1, 145, 1, 145, 1, 145, 3, 145, 2049, 8, 145, 1, 146, 1, 146, 3, 146, 2053, 8, 146, 1, 147, 1, 147, 1, 147, 4, 147, 2058, 8, 147, 11, 147, 12, 147, 2059, 1, 148, 1, 148, 1, 148, 3, 148, 2065, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 3, 150, 2073, 8, 150, 1, 150, 1, 150, 3, 150, 2077, 8, 150, 1, 151, 3, 151, 2080, 8, 151, 1, 151, 1, 151, 3, 151, 2084, 8, 151, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 4, 153, 2091, 8, 153, 11, 153, 12, 153, 2092, 1, 153, 3, 153, 2096, 8, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 5, 155, 2105, 8, 155, 10, 155, 12, 155, 2108, 9, 155, 1, 156, 1, 156, 1, 156, 3, 156, 2113, 8, 156, 1, 157, 1, 157, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 3, 162, 2131, 8, 162, 1, 163, 1, 163, 1, 163, 3, 163, 2136, 8, 163, 1, 164, 1, 164, 1, 164, 3, 164, 2141, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2148, 8, 164, 3, 164, 2150, 8, 164, 1, 165, 1, 165, 1, 165, 3, 165, 2155, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2162, 8, 165, 3, 165, 2164, 8, 165, 1, 166, 1, 166, 1, 166, 3, 166, 2169, 8, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2176, 8, 166, 3, 166, 2178, 8, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2183, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2190, 8, 167, 3, 167, 2192, 8, 167, 1, 168, 1, 168, 1, 168, 5, 168, 2197, 8, 168, 10, 168, 12, 168, 2200, 9, 168, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 5, 172, 2216, 8, 172, 10, 172, 12, 172, 2219, 9, 172, 1, 172, 1, 172, 1, 173, 1, 173, 3, 173, 2225, 8, 173, 1, 173, 3, 173, 2228, 8, 173, 1, 174, 1, 174, 1, 174, 3, 174, 2233, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2239, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2247, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2263, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2272, 8, 178, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2282, 8, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2289, 8, 181, 1, 181, 3, 181, 2292, 8, 181, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 186, 1, 186, 1, 187, 1, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 2198, 5, 160, 180, 262, 268, 272, 194, 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, 0, 47, 2, 0, 109, 109, 451, 451, 3, 0, 45, 45, 128, 128, 189, 189, 4, 0, 42, 42, 90, 90, 423, 423, 465, 465, 2, 0, 442, 442, 448, 448, 2, 0, 151, 151, 170, 170, 2, 0, 438, 438, 490, 490, 2, 0, 483, 486, 488, 488, 3, 0, 32, 32, 91, 91, 245, 245, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 345, 345, 361, 361, 379, 379, 382, 382, 388, 388, 417, 418, 2, 0, 434, 434, 436, 436, 4, 0, 101, 102, 115, 115, 144, 144, 247, 247, 2, 0, 13, 13, 232, 232, 2, 0, 456, 456, 463, 463, 3, 0, 5, 5, 271, 271, 445, 445, 3, 0, 267, 267, 456, 456, 463, 463, 3, 0, 426, 426, 459, 459, 478, 478, 3, 0, 331, 331, 466, 466, 482, 482, 2, 0, 441, 441, 491, 491, 2, 0, 183, 183, 266, 266, 3, 0, 130, 130, 180, 180, 403, 403, 4, 0, 152, 152, 174, 174, 202, 202, 318, 318, 3, 0, 446, 446, 460, 460, 500, 500, 4, 0, 251, 251, 447, 447, 495, 497, 499, 499, 2, 0, 74, 74, 321, 321, 3, 0, 460, 460, 493, 493, 500, 500, 2, 0, 440, 440, 451, 451, 2, 0, 458, 458, 468, 468, 4, 0, 140, 140, 245, 245, 398, 398, 405, 405, 2, 0, 19, 19, 370, 370, 2, 0, 5, 5, 11, 11, 2, 0, 510, 510, 530, 531, 4, 0, 453, 453, 528, 528, 532, 532, 535, 535, 2, 0, 530, 531, 533, 533, 1, 0, 530, 531, 1, 0, 539, 540, 2, 0, 539, 539, 542, 542, 4, 0, 453, 453, 528, 528, 530, 532, 534, 535, 3, 0, 242, 242, 509, 510, 530, 531, 2, 0, 140, 140, 398, 398, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 437, 437, 471, 471, 473, 473, 489, 489, 503, 503, 15, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 428, 428, 437, 437, 443, 443, 449, 450, 455, 455, 461, 461, 471, 476, 489, 489, 492, 492, 503, 504, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 201, 201, 208, 209, 390, 390, 414, 414, 528, 528, 3, 0, 78, 78, 84, 85, 208, 209, 2, 0, 91, 91, 379, 380, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 187, 188, 190, 195, 198, 198, 200, 200, 202, 202, 206, 206, 210, 210, 215, 215, 221, 221, 223, 224, 230, 230, 244, 244, 246, 246, 265, 265, 277, 277, 282, 282, 284, 284, 294, 294, 318, 318, 322, 324, 335, 335, 358, 359, 365, 365, 368, 368, 381, 381, 396, 396, 399, 400, 409, 409, 420, 421, 437, 437, 470, 470, 489, 489, 503, 503, 1, 0, 438, 505, 2525, 0, 391, 1, 0, 0, 0, 2, 401, 1, 0, 0, 0, 4, 415, 1, 0, 0, 0, 6, 417, 1, 0, 0, 0, 8, 433, 1, 0, 0, 0, 10, 437, 1, 0, 0, 0, 12, 439, 1, 0, 0, 0, 14, 442, 1, 0, 0, 0, 16, 453, 1, 0, 0, 0, 18, 461, 1, 0, 0, 0, 20, 469, 1, 0, 0, 0, 22, 471, 1, 0, 0, 0, 24, 523, 1, 0, 0, 0, 26, 525, 1, 0, 0, 0, 28, 532, 1, 0, 0, 0, 30, 536, 1, 0, 0, 0, 32, 540, 1, 0, 0, 0, 34, 544, 1, 0, 0, 0, 36, 598, 1, 0, 0, 0, 38, 604, 1, 0, 0, 0, 40, 610, 1, 0, 0, 0, 42, 612, 1, 0, 0, 0, 44, 654, 1, 0, 0, 0, 46, 668, 1, 0, 0, 0, 48, 670, 1, 0, 0, 0, 50, 681, 1, 0, 0, 0, 52, 685, 1, 0, 0, 0, 54, 687, 1, 0, 0, 0, 56, 689, 1, 0, 0, 0, 58, 737, 1, 0, 0, 0, 60, 739, 1, 0, 0, 0, 62, 743, 1, 0, 0, 0, 64, 751, 1, 0, 0, 0, 66, 759, 1, 0, 0, 0, 68, 763, 1, 0, 0, 0, 70, 798, 1, 0, 0, 0, 72, 814, 1, 0, 0, 0, 74, 816, 1, 0, 0, 0, 76, 826, 1, 0, 0, 0, 78, 828, 1, 0, 0, 0, 80, 835, 1, 0, 0, 0, 82, 837, 1, 0, 0, 0, 84, 845, 1, 0, 0, 0, 86, 853, 1, 0, 0, 0, 88, 855, 1, 0, 0, 0, 90, 859, 1, 0, 0, 0, 92, 863, 1, 0, 0, 0, 94, 886, 1, 0, 0, 0, 96, 890, 1, 0, 0, 0, 98, 892, 1, 0, 0, 0, 100, 908, 1, 0, 0, 0, 102, 910, 1, 0, 0, 0, 104, 915, 1, 0, 0, 0, 106, 927, 1, 0, 0, 0, 108, 946, 1, 0, 0, 0, 110, 966, 1, 0, 0, 0, 112, 977, 1, 0, 0, 0, 114, 979, 1, 0, 0, 0, 116, 992, 1, 0, 0, 0, 118, 999, 1, 0, 0, 0, 120, 1002, 1, 0, 0, 0, 122, 1011, 1, 0, 0, 0, 124, 1015, 1, 0, 0, 0, 126, 1019, 1, 0, 0, 0, 128, 1022, 1, 0, 0, 0, 130, 1030, 1, 0, 0, 0, 132, 1035, 1, 0, 0, 0, 134, 1052, 1, 0, 0, 0, 136, 1059, 1, 0, 0, 0, 138, 1069, 1, 0, 0, 0, 140, 1078, 1, 0, 0, 0, 142, 1088, 1, 0, 0, 0, 144, 1107, 1, 0, 0, 0, 146, 1109, 1, 0, 0, 0, 148, 1122, 1, 0, 0, 0, 150, 1125, 1, 0, 0, 0, 152, 1134, 1, 0, 0, 0, 154, 1147, 1, 0, 0, 0, 156, 1149, 1, 0, 0, 0, 158, 1162, 1, 0, 0, 0, 160, 1197, 1, 0, 0, 0, 162, 1216, 1, 0, 0, 0, 164, 1225, 1, 0, 0, 0, 166, 1234, 1, 0, 0, 0, 168, 1253, 1, 0, 0, 0, 170, 1275, 1, 0, 0, 0, 172, 1277, 1, 0, 0, 0, 174, 1307, 1, 0, 0, 0, 176, 1321, 1, 0, 0, 0, 178, 1323, 1, 0, 0, 0, 180, 1337, 1, 0, 0, 0, 182, 1363, 1, 0, 0, 0, 184, 1396, 1, 0, 0, 0, 186, 1398, 1, 0, 0, 0, 188, 1404, 1, 0, 0, 0, 190, 1406, 1, 0, 0, 0, 192, 1411, 1, 0, 0, 0, 194, 1416, 1, 0, 0, 0, 196, 1428, 1, 0, 0, 0, 198, 1445, 1, 0, 0, 0, 200, 1447, 1, 0, 0, 0, 202, 1449, 1, 0, 0, 0, 204, 1458, 1, 0, 0, 0, 206, 1460, 1, 0, 0, 0, 208, 1463, 1, 0, 0, 0, 210, 1513, 1, 0, 0, 0, 212, 1515, 1, 0, 0, 0, 214, 1518, 1, 0, 0, 0, 216, 1520, 1, 0, 0, 0, 218, 1527, 1, 0, 0, 0, 220, 1529, 1, 0, 0, 0, 222, 1531, 1, 0, 0, 0, 224, 1534, 1, 0, 0, 0, 226, 1543, 1, 0, 0, 0, 228, 1548, 1, 0, 0, 0, 230, 1562, 1, 0, 0, 0, 232, 1590, 1, 0, 0, 0, 234, 1600, 1, 0, 0, 0, 236, 1608, 1, 0, 0, 0, 238, 1613, 1, 0, 0, 0, 240, 1645, 1, 0, 0, 0, 242, 1647, 1, 0, 0, 0, 244, 1656, 1, 0, 0, 0, 246, 1667, 1, 0, 0, 0, 248, 1679, 1, 0, 0, 0, 250, 1705, 1, 0, 0, 0, 252, 1707, 1, 0, 0, 0, 254, 1725, 1, 0, 0, 0, 256, 1727, 1, 0, 0, 0, 258, 1732, 1, 0, 0, 0, 260, 1735, 1, 0, 0, 0, 262, 1749, 1, 0, 0, 0, 264, 1842, 1, 0, 0, 0, 266, 1873, 1, 0, 0, 0, 268, 1879, 1, 0, 0, 0, 270, 1924, 1, 0, 0, 0, 272, 2001, 1, 0, 0, 0, 274, 2013, 1, 0, 0, 0, 276, 2019, 1, 0, 0, 0, 278, 2025, 1, 0, 0, 0, 280, 2029, 1, 0, 0, 0, 282, 2035, 1, 0, 0, 0, 284, 2037, 1, 0, 0, 0, 286, 2039, 1, 0, 0, 0, 288, 2043, 1, 0, 0, 0, 290, 2045, 1, 0, 0, 0, 292, 2050, 1, 0, 0, 0, 294, 2057, 1, 0, 0, 0, 296, 2061, 1, 0, 0, 0, 298, 2066, 1, 0, 0, 0, 300, 2076, 1, 0, 0, 0, 302, 2079, 1, 0, 0, 0, 304, 2085, 1, 0, 0, 0, 306, 2095, 1, 0, 0, 0, 308, 2097, 1, 0, 0, 0, 310, 2101, 1, 0, 0, 0, 312, 2112, 1, 0, 0, 0, 314, 2114, 1, 0, 0, 0, 316, 2116, 1, 0, 0, 0, 318, 2118, 1, 0, 0, 0, 320, 2123, 1, 0, 0, 0, 322, 2125, 1, 0, 0, 0, 324, 2127, 1, 0, 0, 0, 326, 2132, 1, 0, 0, 0, 328, 2149, 1, 0, 0, 0, 330, 2163, 1, 0, 0, 0, 332, 2177, 1, 0, 0, 0, 334, 2191, 1, 0, 0, 0, 336, 2193, 1, 0, 0, 0, 338, 2201, 1, 0, 0, 0, 340, 2204, 1, 0, 0, 0, 342, 2208, 1, 0, 0, 0, 344, 2211, 1, 0, 0, 0, 346, 2222, 1, 0, 0, 0, 348, 2232, 1, 0, 0, 0, 350, 2238, 1, 0, 0, 0, 352, 2246, 1, 0, 0, 0, 354, 2262, 1, 0, 0, 0, 356, 2271, 1, 0, 0, 0, 358, 2273, 1, 0, 0, 0, 360, 2275, 1, 0, 0, 0, 362, 2291, 1, 0, 0, 0, 364, 2293, 1, 0, 0, 0, 366, 2296, 1, 0, 0, 0, 368, 2298, 1, 0, 0, 0, 370, 2300, 1, 0, 0, 0, 372, 2302, 1, 0, 0, 0, 374, 2304, 1, 0, 0, 0, 376, 2306, 1, 0, 0, 0, 378, 2308, 1, 0, 0, 0, 380, 2310, 1, 0, 0, 0, 382, 2312, 1, 0, 0, 0, 384, 2314, 1, 0, 0, 0, 386, 2316, 1, 0, 0, 0, 388, 390, 3, 2, 1, 0, 389, 388, 1, 0, 0, 0, 390, 393, 1, 0, 0, 0, 391, 389, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 1, 0, 0, 0, 393, 391, 1, 0, 0, 0, 394, 395, 5, 0, 0, 1, 395, 1, 1, 0, 0, 0, 396, 398, 3, 4, 2, 0, 397, 399, 5, 522, 0, 0, 398, 397, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 402, 1, 0, 0, 0, 400, 402, 3, 6, 3, 0, 401, 396, 1, 0, 0, 0, 401, 400, 1, 0, 0, 0, 402, 3, 1, 0, 0, 0, 403, 416, 3, 8, 4, 0, 404, 416, 3, 10, 5, 0, 405, 416, 3, 12, 6, 0, 406, 416, 3, 14, 7, 0, 407, 416, 3, 20, 10, 0, 408, 416, 3, 24, 12, 0, 409, 416, 3, 26, 13, 0, 410, 416, 3, 28, 14, 0, 411, 416, 3, 30, 15, 0, 412, 416, 3, 32, 16, 0, 413, 416, 3, 34, 17, 0, 414, 416, 3, 36, 18, 0, 415, 403, 1, 0, 0, 0, 415, 404, 1, 0, 0, 0, 415, 405, 1, 0, 0, 0, 415, 406, 1, 0, 0, 0, 415, 407, 1, 0, 0, 0, 415, 408, 1, 0, 0, 0, 415, 409, 1, 0, 0, 0, 415, 410, 1, 0, 0, 0, 415, 411, 1, 0, 0, 0, 415, 412, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 414, 1, 0, 0, 0, 416, 5, 1, 0, 0, 0, 417, 418, 5, 522, 0, 0, 418, 7, 1, 0, 0, 0, 419, 434, 3, 40, 20, 0, 420, 434, 3, 104, 52, 0, 421, 434, 3, 106, 53, 0, 422, 434, 3, 108, 54, 0, 423, 434, 3, 102, 51, 0, 424, 434, 3, 114, 57, 0, 425, 434, 3, 128, 64, 0, 426, 434, 3, 130, 65, 0, 427, 434, 3, 132, 66, 0, 428, 434, 3, 134, 67, 0, 429, 434, 3, 136, 68, 0, 430, 434, 3, 138, 69, 0, 431, 434, 3, 140, 70, 0, 432, 434, 3, 142, 71, 0, 433, 419, 1, 0, 0, 0, 433, 420, 1, 0, 0, 0, 433, 421, 1, 0, 0, 0, 433, 422, 1, 0, 0, 0, 433, 423, 1, 0, 0, 0, 433, 424, 1, 0, 0, 0, 433, 425, 1, 0, 0, 0, 433, 426, 1, 0, 0, 0, 433, 427, 1, 0, 0, 0, 433, 428, 1, 0, 0, 0, 433, 429, 1, 0, 0, 0, 433, 430, 1, 0, 0, 0, 433, 431, 1, 0, 0, 0, 433, 432, 1, 0, 0, 0, 434, 9, 1, 0, 0, 0, 435, 438, 3, 160, 80, 0, 436, 438, 3, 144, 72, 0, 437, 435, 1, 0, 0, 0, 437, 436, 1, 0, 0, 0, 438, 11, 1, 0, 0, 0, 439, 440, 7, 0, 0, 0, 440, 441, 3, 330, 165, 0, 441, 13, 1, 0, 0, 0, 442, 446, 5, 135, 0, 0, 443, 447, 3, 16, 8, 0, 444, 445, 5, 480, 0, 0, 445, 447, 5, 146, 0, 0, 446, 443, 1, 0, 0, 0, 446, 444, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 451, 1, 0, 0, 0, 448, 452, 3, 10, 5, 0, 449, 452, 3, 146, 73, 0, 450, 452, 3, 158, 79, 0, 451, 448, 1, 0, 0, 0, 451, 449, 1, 0, 0, 0, 451, 450, 1, 0, 0, 0, 452, 15, 1, 0, 0, 0, 453, 458, 3, 18, 9, 0, 454, 455, 5, 521, 0, 0, 455, 457, 3, 18, 9, 0, 456, 454, 1, 0, 0, 0, 457, 460, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 17, 1, 0, 0, 0, 460, 458, 1, 0, 0, 0, 461, 462, 7, 1, 0, 0, 462, 19, 1, 0, 0, 0, 463, 464, 5, 411, 0, 0, 464, 465, 5, 442, 0, 0, 465, 470, 3, 320, 160, 0, 466, 467, 5, 411, 0, 0, 467, 470, 3, 324, 162, 0, 468, 470, 3, 22, 11, 0, 469, 463, 1, 0, 0, 0, 469, 466, 1, 0, 0, 0, 469, 468, 1, 0, 0, 0, 470, 21, 1, 0, 0, 0, 471, 472, 5, 411, 0, 0, 472, 473, 5, 228, 0, 0, 473, 478, 3, 336, 168, 0, 474, 475, 5, 521, 0, 0, 475, 477, 3, 336, 168, 0, 476, 474, 1, 0, 0, 0, 477, 480, 1, 0, 0, 0, 478, 476, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 23, 1, 0, 0, 0, 480, 478, 1, 0, 0, 0, 481, 482, 5, 342, 0, 0, 482, 524, 7, 2, 0, 0, 483, 484, 5, 342, 0, 0, 484, 485, 5, 76, 0, 0, 485, 524, 7, 3, 0, 0, 486, 487, 5, 342, 0, 0, 487, 490, 5, 375, 0, 0, 488, 489, 7, 4, 0, 0, 489, 491, 3, 324, 162, 0, 490, 488, 1, 0, 0, 0, 490, 491, 1, 0, 0, 0, 491, 493, 1, 0, 0, 0, 492, 494, 3, 266, 133, 0, 493, 492, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 524, 1, 0, 0, 0, 495, 496, 5, 342, 0, 0, 496, 497, 5, 58, 0, 0, 497, 500, 7, 4, 0, 0, 498, 501, 3, 332, 166, 0, 499, 501, 3, 330, 165, 0, 500, 498, 1, 0, 0, 0, 500, 499, 1, 0, 0, 0, 501, 503, 1, 0, 0, 0, 502, 504, 3, 266, 133, 0, 503, 502, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 524, 1, 0, 0, 0, 505, 506, 5, 342, 0, 0, 506, 511, 5, 72, 0, 0, 507, 508, 5, 374, 0, 0, 508, 512, 3, 330, 165, 0, 509, 510, 5, 502, 0, 0, 510, 512, 3, 332, 166, 0, 511, 507, 1, 0, 0, 0, 511, 509, 1, 0, 0, 0, 512, 524, 1, 0, 0, 0, 513, 515, 5, 342, 0, 0, 514, 516, 5, 412, 0, 0, 515, 514, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 524, 5, 154, 0, 0, 518, 520, 5, 342, 0, 0, 519, 521, 5, 152, 0, 0, 520, 519, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 524, 5, 228, 0, 0, 523, 481, 1, 0, 0, 0, 523, 483, 1, 0, 0, 0, 523, 486, 1, 0, 0, 0, 523, 495, 1, 0, 0, 0, 523, 505, 1, 0, 0, 0, 523, 513, 1, 0, 0, 0, 523, 518, 1, 0, 0, 0, 524, 25, 1, 0, 0, 0, 525, 526, 5, 469, 0, 0, 526, 527, 5, 227, 0, 0, 527, 530, 3, 336, 168, 0, 528, 529, 5, 434, 0, 0, 529, 531, 3, 344, 172, 0, 530, 528, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 27, 1, 0, 0, 0, 532, 533, 5, 501, 0, 0, 533, 534, 5, 227, 0, 0, 534, 535, 3, 336, 168, 0, 535, 29, 1, 0, 0, 0, 536, 538, 5, 341, 0, 0, 537, 539, 3, 346, 173, 0, 538, 537, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 31, 1, 0, 0, 0, 540, 542, 5, 313, 0, 0, 541, 543, 3, 348, 174, 0, 542, 541, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 33, 1, 0, 0, 0, 544, 545, 7, 5, 0, 0, 545, 546, 5, 464, 0, 0, 546, 547, 3, 112, 56, 0, 547, 35, 1, 0, 0, 0, 548, 549, 5, 438, 0, 0, 549, 550, 5, 464, 0, 0, 550, 551, 5, 434, 0, 0, 551, 554, 3, 38, 19, 0, 552, 553, 5, 17, 0, 0, 553, 555, 3, 336, 168, 0, 554, 552, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 599, 1, 0, 0, 0, 556, 557, 5, 438, 0, 0, 557, 558, 5, 457, 0, 0, 558, 559, 5, 434, 0, 0, 559, 562, 3, 38, 19, 0, 560, 561, 5, 17, 0, 0, 561, 563, 3, 336, 168, 0, 562, 560, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 566, 1, 0, 0, 0, 564, 565, 5, 312, 0, 0, 565, 567, 3, 336, 168, 0, 566, 564, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 599, 1, 0, 0, 0, 568, 569, 5, 438, 0, 0, 569, 570, 7, 6, 0, 0, 570, 571, 5, 434, 0, 0, 571, 572, 3, 38, 19, 0, 572, 573, 5, 312, 0, 0, 573, 574, 3, 336, 168, 0, 574, 599, 1, 0, 0, 0, 575, 576, 5, 438, 0, 0, 576, 577, 5, 487, 0, 0, 577, 599, 3, 38, 19, 0, 578, 579, 5, 438, 0, 0, 579, 580, 5, 454, 0, 0, 580, 581, 5, 457, 0, 0, 581, 582, 5, 434, 0, 0, 582, 583, 3, 38, 19, 0, 583, 584, 5, 312, 0, 0, 584, 585, 3, 336, 168, 0, 585, 586, 5, 467, 0, 0, 586, 587, 3, 336, 168, 0, 587, 599, 1, 0, 0, 0, 588, 589, 5, 438, 0, 0, 589, 590, 5, 444, 0, 0, 590, 591, 5, 457, 0, 0, 591, 592, 5, 434, 0, 0, 592, 593, 3, 38, 19, 0, 593, 594, 5, 146, 0, 0, 594, 595, 3, 336, 168, 0, 595, 596, 5, 17, 0, 0, 596, 597, 3, 336, 168, 0, 597, 599, 1, 0, 0, 0, 598, 548, 1, 0, 0, 0, 598, 556, 1, 0, 0, 0, 598, 568, 1, 0, 0, 0, 598, 575, 1, 0, 0, 0, 598, 578, 1, 0, 0, 0, 598, 588, 1, 0, 0, 0, 599, 37, 1, 0, 0, 0, 600, 602, 5, 535, 0, 0, 601, 600, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 605, 3, 336, 168, 0, 604, 601, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 604, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 39, 1, 0, 0, 0, 608, 611, 3, 42, 21, 0, 609, 611, 3, 44, 22, 0, 610, 608, 1, 0, 0, 0, 610, 609, 1, 0, 0, 0, 611, 41, 1, 0, 0, 0, 612, 614, 5, 72, 0, 0, 613, 615, 5, 498, 0, 0, 614, 613, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 618, 5, 374, 0, 0, 617, 619, 3, 340, 170, 0, 618, 617, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 3, 328, 164, 0, 621, 622, 5, 517, 0, 0, 622, 627, 3, 46, 23, 0, 623, 624, 5, 521, 0, 0, 624, 626, 3, 46, 23, 0, 625, 623, 1, 0, 0, 0, 626, 629, 1, 0, 0, 0, 627, 625, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 632, 1, 0, 0, 0, 629, 627, 1, 0, 0, 0, 630, 631, 5, 521, 0, 0, 631, 633, 3, 82, 41, 0, 632, 630, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 636, 1, 0, 0, 0, 634, 635, 5, 521, 0, 0, 635, 637, 3, 84, 42, 0, 636, 634, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 640, 1, 0, 0, 0, 638, 639, 5, 521, 0, 0, 639, 641, 3, 88, 44, 0, 640, 638, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 645, 5, 518, 0, 0, 643, 644, 5, 59, 0, 0, 644, 646, 5, 538, 0, 0, 645, 643, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 648, 1, 0, 0, 0, 647, 649, 3, 90, 45, 0, 648, 647, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 652, 3, 338, 169, 0, 651, 653, 3, 98, 49, 0, 652, 651, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 43, 1, 0, 0, 0, 654, 655, 5, 72, 0, 0, 655, 657, 5, 374, 0, 0, 656, 658, 3, 340, 170, 0, 657, 656, 1, 0, 0, 0, 657, 658, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 660, 3, 328, 164, 0, 660, 663, 3, 338, 169, 0, 661, 662, 5, 17, 0, 0, 662, 664, 3, 160, 80, 0, 663, 661, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 45, 1, 0, 0, 0, 665, 669, 3, 48, 24, 0, 666, 669, 3, 74, 37, 0, 667, 669, 3, 78, 39, 0, 668, 665, 1, 0, 0, 0, 668, 666, 1, 0, 0, 0, 668, 667, 1, 0, 0, 0, 669, 47, 1, 0, 0, 0, 670, 671, 3, 50, 25, 0, 671, 673, 3, 58, 29, 0, 672, 674, 3, 72, 36, 0, 673, 672, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 677, 1, 0, 0, 0, 675, 676, 5, 59, 0, 0, 676, 678, 5, 538, 0, 0, 677, 675, 1, 0, 0, 0, 677, 678, 1, 0, 0, 0, 678, 49, 1, 0, 0, 0, 679, 682, 3, 336, 168, 0, 680, 682, 3, 260, 130, 0, 681, 679, 1, 0, 0, 0, 681, 680, 1, 0, 0, 0, 682, 51, 1, 0, 0, 0, 683, 686, 3, 336, 168, 0, 684, 686, 4, 26, 0, 0, 685, 683, 1, 0, 0, 0, 685, 684, 1, 0, 0, 0, 686, 53, 1, 0, 0, 0, 687, 688, 3, 336, 168, 0, 688, 55, 1, 0, 0, 0, 689, 690, 5, 517, 0, 0, 690, 695, 3, 52, 26, 0, 691, 692, 5, 521, 0, 0, 692, 694, 3, 52, 26, 0, 693, 691, 1, 0, 0, 0, 694, 697, 1, 0, 0, 0, 695, 693, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 698, 1, 0, 0, 0, 697, 695, 1, 0, 0, 0, 698, 699, 5, 518, 0, 0, 699, 57, 1, 0, 0, 0, 700, 738, 7, 7, 0, 0, 701, 703, 7, 8, 0, 0, 702, 704, 3, 60, 30, 0, 703, 702, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 738, 1, 0, 0, 0, 705, 707, 5, 380, 0, 0, 706, 708, 3, 60, 30, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 715, 1, 0, 0, 0, 709, 711, 7, 9, 0, 0, 710, 712, 5, 207, 0, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 5, 379, 0, 0, 714, 716, 5, 505, 0, 0, 715, 709, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 738, 1, 0, 0, 0, 717, 719, 7, 10, 0, 0, 718, 720, 3, 62, 31, 0, 719, 718, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 738, 1, 0, 0, 0, 721, 723, 7, 11, 0, 0, 722, 724, 3, 66, 33, 0, 723, 722, 1, 0, 0, 0, 723, 724, 1, 0, 0, 0, 724, 738, 1, 0, 0, 0, 725, 727, 5, 470, 0, 0, 726, 728, 3, 68, 34, 0, 727, 726, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 738, 1, 0, 0, 0, 729, 731, 5, 322, 0, 0, 730, 732, 3, 70, 35, 0, 731, 730, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 738, 1, 0, 0, 0, 733, 735, 5, 295, 0, 0, 734, 736, 3, 64, 32, 0, 735, 734, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 738, 1, 0, 0, 0, 737, 700, 1, 0, 0, 0, 737, 701, 1, 0, 0, 0, 737, 705, 1, 0, 0, 0, 737, 717, 1, 0, 0, 0, 737, 721, 1, 0, 0, 0, 737, 725, 1, 0, 0, 0, 737, 729, 1, 0, 0, 0, 737, 733, 1, 0, 0, 0, 738, 59, 1, 0, 0, 0, 739, 740, 5, 517, 0, 0, 740, 741, 3, 368, 184, 0, 741, 742, 5, 518, 0, 0, 742, 61, 1, 0, 0, 0, 743, 744, 5, 517, 0, 0, 744, 747, 3, 368, 184, 0, 745, 746, 5, 521, 0, 0, 746, 748, 3, 368, 184, 0, 747, 745, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 5, 518, 0, 0, 750, 63, 1, 0, 0, 0, 751, 752, 5, 517, 0, 0, 752, 755, 3, 366, 183, 0, 753, 754, 5, 521, 0, 0, 754, 756, 3, 366, 183, 0, 755, 753, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 758, 5, 518, 0, 0, 758, 65, 1, 0, 0, 0, 759, 760, 5, 508, 0, 0, 760, 761, 3, 58, 29, 0, 761, 762, 5, 507, 0, 0, 762, 67, 1, 0, 0, 0, 763, 764, 5, 508, 0, 0, 764, 765, 3, 58, 29, 0, 765, 766, 5, 521, 0, 0, 766, 767, 3, 58, 29, 0, 767, 768, 1, 0, 0, 0, 768, 769, 5, 507, 0, 0, 769, 69, 1, 0, 0, 0, 770, 771, 5, 508, 0, 0, 771, 772, 3, 52, 26, 0, 772, 779, 3, 58, 29, 0, 773, 774, 5, 521, 0, 0, 774, 775, 3, 52, 26, 0, 775, 776, 3, 58, 29, 0, 776, 778, 1, 0, 0, 0, 777, 773, 1, 0, 0, 0, 778, 781, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 782, 1, 0, 0, 0, 781, 779, 1, 0, 0, 0, 782, 783, 5, 507, 0, 0, 783, 799, 1, 0, 0, 0, 784, 785, 5, 517, 0, 0, 785, 786, 3, 52, 26, 0, 786, 793, 3, 58, 29, 0, 787, 788, 5, 521, 0, 0, 788, 789, 3, 52, 26, 0, 789, 790, 3, 58, 29, 0, 790, 792, 1, 0, 0, 0, 791, 787, 1, 0, 0, 0, 792, 795, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 796, 1, 0, 0, 0, 795, 793, 1, 0, 0, 0, 796, 797, 5, 518, 0, 0, 797, 799, 1, 0, 0, 0, 798, 770, 1, 0, 0, 0, 798, 784, 1, 0, 0, 0, 799, 71, 1, 0, 0, 0, 800, 801, 5, 64, 0, 0, 801, 803, 3, 86, 43, 0, 802, 800, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 5, 289, 0, 0, 805, 808, 5, 467, 0, 0, 806, 807, 5, 242, 0, 0, 807, 809, 5, 125, 0, 0, 808, 806, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 815, 1, 0, 0, 0, 810, 812, 5, 242, 0, 0, 811, 810, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 815, 5, 245, 0, 0, 814, 802, 1, 0, 0, 0, 814, 811, 1, 0, 0, 0, 815, 73, 1, 0, 0, 0, 816, 817, 3, 50, 25, 0, 817, 818, 3, 58, 29, 0, 818, 821, 5, 219, 0, 0, 819, 820, 5, 151, 0, 0, 820, 822, 3, 76, 38, 0, 821, 819, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 824, 1, 0, 0, 0, 823, 825, 5, 424, 0, 0, 824, 823, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 75, 1, 0, 0, 0, 826, 827, 5, 538, 0, 0, 827, 77, 1, 0, 0, 0, 828, 829, 3, 50, 25, 0, 829, 830, 5, 17, 0, 0, 830, 833, 3, 80, 40, 0, 831, 832, 5, 59, 0, 0, 832, 834, 5, 538, 0, 0, 833, 831, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 834, 79, 1, 0, 0, 0, 835, 836, 3, 260, 130, 0, 836, 81, 1, 0, 0, 0, 837, 838, 5, 425, 0, 0, 838, 839, 5, 146, 0, 0, 839, 840, 3, 52, 26, 0, 840, 841, 5, 17, 0, 0, 841, 842, 3, 260, 130, 0, 842, 83, 1, 0, 0, 0, 843, 844, 5, 64, 0, 0, 844, 846, 3, 86, 43, 0, 845, 843, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 5, 289, 0, 0, 848, 849, 5, 467, 0, 0, 849, 850, 3, 56, 28, 0, 850, 851, 5, 242, 0, 0, 851, 852, 5, 125, 0, 0, 852, 85, 1, 0, 0, 0, 853, 854, 3, 312, 156, 0, 854, 87, 1, 0, 0, 0, 855, 856, 5, 278, 0, 0, 856, 857, 5, 146, 0, 0, 857, 858, 5, 372, 0, 0, 858, 89, 1, 0, 0, 0, 859, 860, 5, 270, 0, 0, 860, 861, 5, 34, 0, 0, 861, 862, 3, 92, 46, 0, 862, 91, 1, 0, 0, 0, 863, 864, 5, 517, 0, 0, 864, 869, 3, 94, 47, 0, 865, 866, 5, 521, 0, 0, 866, 868, 3, 94, 47, 0, 867, 865, 1, 0, 0, 0, 868, 871, 1, 0, 0, 0, 869, 867, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 872, 1, 0, 0, 0, 871, 869, 1, 0, 0, 0, 872, 873, 5, 518, 0, 0, 873, 93, 1, 0, 0, 0, 874, 887, 3, 52, 26, 0, 875, 876, 5, 517, 0, 0, 876, 881, 3, 96, 48, 0, 877, 878, 5, 521, 0, 0, 878, 880, 3, 96, 48, 0, 879, 877, 1, 0, 0, 0, 880, 883, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 884, 1, 0, 0, 0, 883, 881, 1, 0, 0, 0, 884, 885, 5, 518, 0, 0, 885, 887, 1, 0, 0, 0, 886, 874, 1, 0, 0, 0, 886, 875, 1, 0, 0, 0, 887, 95, 1, 0, 0, 0, 888, 891, 3, 288, 144, 0, 889, 891, 3, 362, 181, 0, 890, 888, 1, 0, 0, 0, 890, 889, 1, 0, 0, 0, 891, 97, 1, 0, 0, 0, 892, 893, 5, 203, 0, 0, 893, 902, 3, 330, 165, 0, 894, 898, 5, 517, 0, 0, 895, 897, 3, 100, 50, 0, 896, 895, 1, 0, 0, 0, 897, 900, 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 901, 1, 0, 0, 0, 900, 898, 1, 0, 0, 0, 901, 903, 5, 518, 0, 0, 902, 894, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 99, 1, 0, 0, 0, 904, 905, 7, 12, 0, 0, 905, 909, 7, 13, 0, 0, 906, 907, 7, 14, 0, 0, 907, 909, 7, 15, 0, 0, 908, 904, 1, 0, 0, 0, 908, 906, 1, 0, 0, 0, 909, 101, 1, 0, 0, 0, 910, 911, 5, 72, 0, 0, 911, 912, 5, 442, 0, 0, 912, 913, 3, 322, 161, 0, 913, 914, 3, 338, 169, 0, 914, 103, 1, 0, 0, 0, 915, 916, 5, 72, 0, 0, 916, 918, 5, 448, 0, 0, 917, 919, 3, 340, 170, 0, 918, 917, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 920, 1, 0, 0, 0, 920, 923, 3, 326, 163, 0, 921, 922, 5, 59, 0, 0, 922, 924, 5, 538, 0, 0, 923, 921, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 926, 3, 338, 169, 0, 926, 105, 1, 0, 0, 0, 927, 929, 5, 72, 0, 0, 928, 930, 5, 498, 0, 0, 929, 928, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 933, 5, 502, 0, 0, 932, 934, 3, 340, 170, 0, 933, 932, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 937, 3, 334, 167, 0, 936, 938, 3, 56, 28, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 941, 1, 0, 0, 0, 939, 940, 5, 59, 0, 0, 940, 942, 5, 538, 0, 0, 941, 939, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 944, 5, 17, 0, 0, 944, 945, 3, 160, 80, 0, 945, 107, 1, 0, 0, 0, 946, 950, 5, 72, 0, 0, 947, 951, 5, 498, 0, 0, 948, 949, 5, 498, 0, 0, 949, 951, 5, 371, 0, 0, 950, 947, 1, 0, 0, 0, 950, 948, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 954, 5, 153, 0, 0, 953, 955, 3, 340, 170, 0, 954, 953, 1, 0, 0, 0, 954, 955, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 957, 3, 274, 137, 0, 957, 958, 5, 17, 0, 0, 958, 961, 3, 312, 156, 0, 959, 960, 5, 196, 0, 0, 960, 962, 7, 16, 0, 0, 961, 959, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 964, 1, 0, 0, 0, 963, 965, 3, 110, 55, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 109, 1, 0, 0, 0, 966, 967, 5, 413, 0, 0, 967, 968, 5, 464, 0, 0, 968, 974, 3, 112, 56, 0, 969, 970, 5, 521, 0, 0, 970, 971, 5, 464, 0, 0, 971, 973, 3, 112, 56, 0, 972, 969, 1, 0, 0, 0, 973, 976, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 111, 1, 0, 0, 0, 976, 974, 1, 0, 0, 0, 977, 978, 5, 538, 0, 0, 978, 113, 1, 0, 0, 0, 979, 980, 5, 8, 0, 0, 980, 982, 5, 374, 0, 0, 981, 983, 3, 342, 171, 0, 982, 981, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 990, 3, 330, 165, 0, 985, 991, 3, 116, 58, 0, 986, 991, 3, 118, 59, 0, 987, 991, 3, 120, 60, 0, 988, 991, 3, 122, 61, 0, 989, 991, 3, 124, 62, 0, 990, 985, 1, 0, 0, 0, 990, 986, 1, 0, 0, 0, 990, 987, 1, 0, 0, 0, 990, 988, 1, 0, 0, 0, 990, 989, 1, 0, 0, 0, 991, 115, 1, 0, 0, 0, 992, 994, 5, 312, 0, 0, 993, 995, 3, 336, 168, 0, 994, 993, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 997, 5, 389, 0, 0, 997, 998, 3, 336, 168, 0, 998, 117, 1, 0, 0, 0, 999, 1000, 5, 341, 0, 0, 1000, 1001, 3, 344, 172, 0, 1001, 119, 1, 0, 0, 0, 1002, 1003, 5, 438, 0, 0, 1003, 1004, 5, 64, 0, 0, 1004, 1005, 3, 86, 43, 0, 1005, 1006, 5, 289, 0, 0, 1006, 1007, 5, 467, 0, 0, 1007, 1009, 3, 56, 28, 0, 1008, 1010, 3, 126, 63, 0, 1009, 1008, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 121, 1, 0, 0, 0, 1011, 1012, 5, 116, 0, 0, 1012, 1013, 5, 64, 0, 0, 1013, 1014, 3, 86, 43, 0, 1014, 123, 1, 0, 0, 0, 1015, 1016, 5, 438, 0, 0, 1016, 1017, 5, 404, 0, 0, 1017, 1018, 3, 56, 28, 0, 1018, 125, 1, 0, 0, 0, 1019, 1020, 5, 242, 0, 0, 1020, 1021, 5, 125, 0, 0, 1021, 127, 1, 0, 0, 0, 1022, 1023, 5, 8, 0, 0, 1023, 1024, 5, 502, 0, 0, 1024, 1028, 3, 332, 166, 0, 1025, 1029, 3, 116, 58, 0, 1026, 1027, 5, 17, 0, 0, 1027, 1029, 3, 160, 80, 0, 1028, 1025, 1, 0, 0, 0, 1028, 1026, 1, 0, 0, 0, 1029, 129, 1, 0, 0, 0, 1030, 1031, 5, 8, 0, 0, 1031, 1032, 5, 448, 0, 0, 1032, 1033, 3, 324, 162, 0, 1033, 1034, 3, 118, 59, 0, 1034, 131, 1, 0, 0, 0, 1035, 1039, 5, 8, 0, 0, 1036, 1040, 5, 498, 0, 0, 1037, 1038, 5, 498, 0, 0, 1038, 1040, 5, 371, 0, 0, 1039, 1036, 1, 0, 0, 0, 1039, 1037, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1043, 5, 153, 0, 0, 1042, 1044, 3, 342, 171, 0, 1043, 1042, 1, 0, 0, 0, 1043, 1044, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1046, 3, 276, 138, 0, 1046, 1047, 5, 17, 0, 0, 1047, 1050, 3, 312, 156, 0, 1048, 1049, 5, 196, 0, 0, 1049, 1051, 7, 16, 0, 0, 1050, 1048, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 133, 1, 0, 0, 0, 1052, 1053, 5, 116, 0, 0, 1053, 1055, 5, 442, 0, 0, 1054, 1056, 3, 342, 171, 0, 1055, 1054, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1058, 3, 320, 160, 0, 1058, 135, 1, 0, 0, 0, 1059, 1061, 5, 116, 0, 0, 1060, 1062, 5, 498, 0, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1065, 5, 374, 0, 0, 1064, 1066, 3, 342, 171, 0, 1065, 1064, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 3, 330, 165, 0, 1068, 137, 1, 0, 0, 0, 1069, 1070, 5, 116, 0, 0, 1070, 1072, 5, 448, 0, 0, 1071, 1073, 3, 342, 171, 0, 1072, 1071, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1076, 3, 324, 162, 0, 1075, 1077, 7, 17, 0, 0, 1076, 1075, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 139, 1, 0, 0, 0, 1078, 1080, 5, 116, 0, 0, 1079, 1081, 5, 498, 0, 0, 1080, 1079, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1084, 5, 502, 0, 0, 1083, 1085, 3, 342, 171, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 3, 332, 166, 0, 1087, 141, 1, 0, 0, 0, 1088, 1092, 5, 116, 0, 0, 1089, 1093, 5, 498, 0, 0, 1090, 1091, 5, 498, 0, 0, 1091, 1093, 5, 371, 0, 0, 1092, 1089, 1, 0, 0, 0, 1092, 1090, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1096, 5, 153, 0, 0, 1095, 1097, 3, 342, 171, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1099, 3, 276, 138, 0, 1099, 143, 1, 0, 0, 0, 1100, 1102, 5, 132, 0, 0, 1101, 1100, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1108, 3, 146, 73, 0, 1104, 1108, 3, 156, 78, 0, 1105, 1106, 5, 132, 0, 0, 1106, 1108, 3, 158, 79, 0, 1107, 1101, 1, 0, 0, 0, 1107, 1104, 1, 0, 0, 0, 1107, 1105, 1, 0, 0, 0, 1108, 145, 1, 0, 0, 0, 1109, 1110, 5, 177, 0, 0, 1110, 1111, 7, 18, 0, 0, 1111, 1120, 3, 330, 165, 0, 1112, 1114, 3, 148, 74, 0, 1113, 1112, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1116, 1, 0, 0, 0, 1115, 1117, 3, 56, 28, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1121, 3, 160, 80, 0, 1119, 1121, 3, 150, 75, 0, 1120, 1113, 1, 0, 0, 0, 1120, 1119, 1, 0, 0, 0, 1121, 147, 1, 0, 0, 0, 1122, 1123, 5, 269, 0, 0, 1123, 1124, 3, 344, 172, 0, 1124, 149, 1, 0, 0, 0, 1125, 1126, 5, 415, 0, 0, 1126, 1131, 3, 152, 76, 0, 1127, 1128, 5, 521, 0, 0, 1128, 1130, 3, 152, 76, 0, 1129, 1127, 1, 0, 0, 0, 1130, 1133, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 151, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1134, 1135, 5, 517, 0, 0, 1135, 1140, 3, 154, 77, 0, 1136, 1137, 5, 521, 0, 0, 1137, 1139, 3, 154, 77, 0, 1138, 1136, 1, 0, 0, 0, 1139, 1142, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1143, 1, 0, 0, 0, 1142, 1140, 1, 0, 0, 0, 1143, 1144, 5, 518, 0, 0, 1144, 153, 1, 0, 0, 0, 1145, 1148, 3, 362, 181, 0, 1146, 1148, 3, 270, 135, 0, 1147, 1145, 1, 0, 0, 0, 1147, 1146, 1, 0, 0, 0, 1148, 155, 1, 0, 0, 0, 1149, 1150, 5, 24, 0, 0, 1150, 1151, 5, 355, 0, 0, 1151, 1152, 5, 341, 0, 0, 1152, 1156, 5, 522, 0, 0, 1153, 1154, 3, 146, 73, 0, 1154, 1155, 5, 522, 0, 0, 1155, 1157, 1, 0, 0, 0, 1156, 1153, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1161, 5, 122, 0, 0, 1161, 157, 1, 0, 0, 0, 1162, 1163, 5, 355, 0, 0, 1163, 1164, 5, 341, 0, 0, 1164, 1168, 5, 24, 0, 0, 1165, 1166, 3, 146, 73, 0, 1166, 1167, 5, 522, 0, 0, 1167, 1169, 1, 0, 0, 0, 1168, 1165, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1168, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 5, 122, 0, 0, 1173, 159, 1, 0, 0, 0, 1174, 1175, 6, 80, -1, 0, 1175, 1198, 3, 162, 81, 0, 1176, 1177, 3, 164, 82, 0, 1177, 1178, 3, 160, 80, 5, 1178, 1198, 1, 0, 0, 0, 1179, 1180, 5, 517, 0, 0, 1180, 1181, 3, 160, 80, 0, 1181, 1182, 5, 518, 0, 0, 1182, 1198, 1, 0, 0, 0, 1183, 1185, 3, 172, 86, 0, 1184, 1186, 3, 232, 116, 0, 1185, 1184, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1188, 1, 0, 0, 0, 1187, 1189, 3, 236, 118, 0, 1188, 1187, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1198, 1, 0, 0, 0, 1190, 1192, 3, 170, 85, 0, 1191, 1193, 3, 232, 116, 0, 1192, 1191, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1195, 1, 0, 0, 0, 1194, 1196, 3, 236, 118, 0, 1195, 1194, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1198, 1, 0, 0, 0, 1197, 1174, 1, 0, 0, 0, 1197, 1176, 1, 0, 0, 0, 1197, 1179, 1, 0, 0, 0, 1197, 1183, 1, 0, 0, 0, 1197, 1190, 1, 0, 0, 0, 1198, 1213, 1, 0, 0, 0, 1199, 1200, 10, 3, 0, 0, 1200, 1202, 7, 19, 0, 0, 1201, 1203, 5, 5, 0, 0, 1202, 1201, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1206, 3, 160, 80, 0, 1205, 1207, 3, 232, 116, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1209, 1, 0, 0, 0, 1208, 1210, 3, 236, 118, 0, 1209, 1208, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1212, 1, 0, 0, 0, 1211, 1199, 1, 0, 0, 0, 1212, 1215, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 161, 1, 0, 0, 0, 1215, 1213, 1, 0, 0, 0, 1216, 1217, 5, 415, 0, 0, 1217, 1222, 3, 260, 130, 0, 1218, 1219, 5, 521, 0, 0, 1219, 1221, 3, 260, 130, 0, 1220, 1218, 1, 0, 0, 0, 1221, 1224, 1, 0, 0, 0, 1222, 1220, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 163, 1, 0, 0, 0, 1224, 1222, 1, 0, 0, 0, 1225, 1226, 5, 434, 0, 0, 1226, 1231, 3, 166, 83, 0, 1227, 1228, 5, 521, 0, 0, 1228, 1230, 3, 166, 83, 0, 1229, 1227, 1, 0, 0, 0, 1230, 1233, 1, 0, 0, 0, 1231, 1229, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 165, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1246, 3, 168, 84, 0, 1235, 1236, 5, 517, 0, 0, 1236, 1241, 3, 52, 26, 0, 1237, 1238, 5, 521, 0, 0, 1238, 1240, 3, 52, 26, 0, 1239, 1237, 1, 0, 0, 0, 1240, 1243, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1244, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1244, 1245, 5, 518, 0, 0, 1245, 1247, 1, 0, 0, 0, 1246, 1235, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 1249, 5, 17, 0, 0, 1249, 1250, 5, 517, 0, 0, 1250, 1251, 3, 160, 80, 0, 1251, 1252, 5, 518, 0, 0, 1252, 167, 1, 0, 0, 0, 1253, 1254, 3, 312, 156, 0, 1254, 169, 1, 0, 0, 0, 1255, 1257, 3, 172, 86, 0, 1256, 1258, 3, 178, 89, 0, 1257, 1256, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1260, 1, 0, 0, 0, 1259, 1261, 3, 206, 103, 0, 1260, 1259, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1263, 1, 0, 0, 0, 1262, 1264, 3, 208, 104, 0, 1263, 1262, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1266, 1, 0, 0, 0, 1265, 1267, 3, 222, 111, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1269, 1, 0, 0, 0, 1268, 1270, 3, 224, 112, 0, 1269, 1268, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1276, 1, 0, 0, 0, 1271, 1272, 3, 172, 86, 0, 1272, 1273, 3, 178, 89, 0, 1273, 1274, 3, 230, 115, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1255, 1, 0, 0, 0, 1275, 1271, 1, 0, 0, 0, 1276, 171, 1, 0, 0, 0, 1277, 1279, 5, 337, 0, 0, 1278, 1280, 3, 372, 186, 0, 1279, 1278, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1290, 1, 0, 0, 0, 1281, 1291, 5, 528, 0, 0, 1282, 1287, 3, 174, 87, 0, 1283, 1284, 5, 521, 0, 0, 1284, 1286, 3, 174, 87, 0, 1285, 1283, 1, 0, 0, 0, 1286, 1289, 1, 0, 0, 0, 1287, 1285, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1291, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1290, 1281, 1, 0, 0, 0, 1290, 1282, 1, 0, 0, 0, 1291, 173, 1, 0, 0, 0, 1292, 1308, 3, 176, 88, 0, 1293, 1298, 3, 260, 130, 0, 1294, 1296, 5, 17, 0, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1299, 3, 52, 26, 0, 1298, 1295, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1308, 1, 0, 0, 0, 1300, 1305, 3, 52, 26, 0, 1301, 1303, 5, 17, 0, 0, 1302, 1301, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1306, 3, 260, 130, 0, 1305, 1302, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1292, 1, 0, 0, 0, 1307, 1293, 1, 0, 0, 0, 1307, 1300, 1, 0, 0, 0, 1308, 175, 1, 0, 0, 0, 1309, 1310, 3, 272, 136, 0, 1310, 1311, 5, 263, 0, 0, 1311, 1312, 3, 228, 114, 0, 1312, 1313, 5, 17, 0, 0, 1313, 1314, 3, 312, 156, 0, 1314, 1322, 1, 0, 0, 0, 1315, 1316, 3, 272, 136, 0, 1316, 1317, 5, 263, 0, 0, 1317, 1318, 3, 304, 152, 0, 1318, 1319, 5, 17, 0, 0, 1319, 1320, 3, 312, 156, 0, 1320, 1322, 1, 0, 0, 0, 1321, 1309, 1, 0, 0, 0, 1321, 1315, 1, 0, 0, 0, 1322, 177, 1, 0, 0, 0, 1323, 1324, 5, 151, 0, 0, 1324, 1325, 3, 180, 90, 0, 1325, 179, 1, 0, 0, 0, 1326, 1327, 6, 90, -1, 0, 1327, 1332, 3, 182, 91, 0, 1328, 1329, 5, 521, 0, 0, 1329, 1331, 3, 182, 91, 0, 1330, 1328, 1, 0, 0, 0, 1331, 1334, 1, 0, 0, 0, 1332, 1330, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1338, 1, 0, 0, 0, 1334, 1332, 1, 0, 0, 0, 1335, 1338, 3, 190, 95, 0, 1336, 1338, 3, 192, 96, 0, 1337, 1326, 1, 0, 0, 0, 1337, 1335, 1, 0, 0, 0, 1337, 1336, 1, 0, 0, 0, 1338, 1360, 1, 0, 0, 0, 1339, 1340, 10, 3, 0, 0, 1340, 1341, 5, 73, 0, 0, 1341, 1342, 5, 185, 0, 0, 1342, 1359, 3, 180, 90, 4, 1343, 1345, 10, 4, 0, 0, 1344, 1346, 5, 234, 0, 0, 1345, 1344, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1348, 1, 0, 0, 0, 1347, 1349, 7, 20, 0, 0, 1348, 1347, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1351, 1, 0, 0, 0, 1350, 1352, 5, 262, 0, 0, 1351, 1350, 1, 0, 0, 0, 1351, 1352, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1354, 5, 185, 0, 0, 1354, 1356, 3, 180, 90, 0, 1355, 1357, 3, 204, 102, 0, 1356, 1355, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1359, 1, 0, 0, 0, 1358, 1339, 1, 0, 0, 0, 1358, 1343, 1, 0, 0, 0, 1359, 1362, 1, 0, 0, 0, 1360, 1358, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 181, 1, 0, 0, 0, 1362, 1360, 1, 0, 0, 0, 1363, 1365, 3, 184, 92, 0, 1364, 1366, 3, 302, 151, 0, 1365, 1364, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 183, 1, 0, 0, 0, 1367, 1369, 5, 374, 0, 0, 1368, 1367, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1372, 3, 330, 165, 0, 1371, 1373, 3, 186, 93, 0, 1372, 1371, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 1397, 1, 0, 0, 0, 1374, 1376, 3, 332, 166, 0, 1375, 1377, 3, 186, 93, 0, 1376, 1375, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1397, 1, 0, 0, 0, 1378, 1379, 5, 199, 0, 0, 1379, 1380, 5, 374, 0, 0, 1380, 1381, 5, 517, 0, 0, 1381, 1382, 3, 270, 135, 0, 1382, 1383, 5, 518, 0, 0, 1383, 1397, 1, 0, 0, 0, 1384, 1386, 5, 199, 0, 0, 1385, 1384, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1388, 5, 517, 0, 0, 1388, 1389, 3, 160, 80, 0, 1389, 1390, 5, 518, 0, 0, 1390, 1397, 1, 0, 0, 0, 1391, 1392, 5, 406, 0, 0, 1392, 1393, 5, 517, 0, 0, 1393, 1394, 3, 260, 130, 0, 1394, 1395, 5, 518, 0, 0, 1395, 1397, 1, 0, 0, 0, 1396, 1368, 1, 0, 0, 0, 1396, 1374, 1, 0, 0, 0, 1396, 1378, 1, 0, 0, 0, 1396, 1385, 1, 0, 0, 0, 1396, 1391, 1, 0, 0, 0, 1397, 185, 1, 0, 0, 0, 1398, 1399, 5, 146, 0, 0, 1399, 1400, 5, 372, 0, 0, 1400, 1401, 5, 17, 0, 0, 1401, 1402, 5, 250, 0, 0, 1402, 1403, 3, 188, 94, 0, 1403, 187, 1, 0, 0, 0, 1404, 1405, 3, 260, 130, 0, 1405, 189, 1, 0, 0, 0, 1406, 1407, 5, 517, 0, 0, 1407, 1408, 3, 150, 75, 0, 1408, 1409, 5, 518, 0, 0, 1409, 1410, 3, 302, 151, 0, 1410, 191, 1, 0, 0, 0, 1411, 1412, 5, 374, 0, 0, 1412, 1413, 5, 517, 0, 0, 1413, 1414, 3, 194, 97, 0, 1414, 1415, 5, 518, 0, 0, 1415, 193, 1, 0, 0, 0, 1416, 1417, 3, 196, 98, 0, 1417, 1418, 5, 517, 0, 0, 1418, 1423, 3, 198, 99, 0, 1419, 1420, 5, 521, 0, 0, 1420, 1422, 3, 198, 99, 0, 1421, 1419, 1, 0, 0, 0, 1422, 1425, 1, 0, 0, 0, 1423, 1421, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 1426, 1, 0, 0, 0, 1425, 1423, 1, 0, 0, 0, 1426, 1427, 5, 518, 0, 0, 1427, 195, 1, 0, 0, 0, 1428, 1429, 7, 21, 0, 0, 1429, 197, 1, 0, 0, 0, 1430, 1431, 5, 374, 0, 0, 1431, 1446, 3, 220, 110, 0, 1432, 1446, 3, 202, 101, 0, 1433, 1446, 3, 290, 145, 0, 1434, 1435, 5, 447, 0, 0, 1435, 1436, 5, 537, 0, 0, 1436, 1437, 5, 374, 0, 0, 1437, 1446, 3, 220, 110, 0, 1438, 1439, 5, 499, 0, 0, 1439, 1440, 5, 537, 0, 0, 1440, 1446, 3, 202, 101, 0, 1441, 1442, 3, 200, 100, 0, 1442, 1443, 5, 537, 0, 0, 1443, 1444, 3, 290, 145, 0, 1444, 1446, 1, 0, 0, 0, 1445, 1430, 1, 0, 0, 0, 1445, 1432, 1, 0, 0, 0, 1445, 1433, 1, 0, 0, 0, 1445, 1434, 1, 0, 0, 0, 1445, 1438, 1, 0, 0, 0, 1445, 1441, 1, 0, 0, 0, 1446, 199, 1, 0, 0, 0, 1447, 1448, 7, 22, 0, 0, 1448, 201, 1, 0, 0, 0, 1449, 1450, 5, 452, 0, 0, 1450, 1451, 5, 517, 0, 0, 1451, 1452, 3, 52, 26, 0, 1452, 1453, 5, 518, 0, 0, 1453, 203, 1, 0, 0, 0, 1454, 1455, 5, 254, 0, 0, 1455, 1459, 3, 262, 131, 0, 1456, 1457, 5, 413, 0, 0, 1457, 1459, 3, 56, 28, 0, 1458, 1454, 1, 0, 0, 0, 1458, 1456, 1, 0, 0, 0, 1459, 205, 1, 0, 0, 0, 1460, 1461, 5, 431, 0, 0, 1461, 1462, 3, 262, 131, 0, 1462, 207, 1, 0, 0, 0, 1463, 1464, 5, 159, 0, 0, 1464, 1465, 5, 34, 0, 0, 1465, 1470, 3, 210, 105, 0, 1466, 1467, 5, 521, 0, 0, 1467, 1469, 3, 210, 105, 0, 1468, 1466, 1, 0, 0, 0, 1469, 1472, 1, 0, 0, 0, 1470, 1468, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 209, 1, 0, 0, 0, 1472, 1470, 1, 0, 0, 0, 1473, 1514, 3, 52, 26, 0, 1474, 1514, 3, 216, 108, 0, 1475, 1476, 5, 517, 0, 0, 1476, 1514, 5, 518, 0, 0, 1477, 1478, 5, 517, 0, 0, 1478, 1483, 3, 260, 130, 0, 1479, 1480, 5, 521, 0, 0, 1480, 1482, 3, 260, 130, 0, 1481, 1479, 1, 0, 0, 0, 1482, 1485, 1, 0, 0, 0, 1483, 1481, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1486, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1486, 1487, 5, 518, 0, 0, 1487, 1514, 1, 0, 0, 0, 1488, 1489, 3, 214, 107, 0, 1489, 1490, 5, 517, 0, 0, 1490, 1495, 3, 260, 130, 0, 1491, 1492, 5, 521, 0, 0, 1492, 1494, 3, 260, 130, 0, 1493, 1491, 1, 0, 0, 0, 1494, 1497, 1, 0, 0, 0, 1495, 1493, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1498, 1, 0, 0, 0, 1497, 1495, 1, 0, 0, 0, 1498, 1499, 5, 518, 0, 0, 1499, 1514, 1, 0, 0, 0, 1500, 1501, 3, 212, 106, 0, 1501, 1502, 5, 517, 0, 0, 1502, 1507, 3, 210, 105, 0, 1503, 1504, 5, 521, 0, 0, 1504, 1506, 3, 210, 105, 0, 1505, 1503, 1, 0, 0, 0, 1506, 1509, 1, 0, 0, 0, 1507, 1505, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1510, 1, 0, 0, 0, 1509, 1507, 1, 0, 0, 0, 1510, 1511, 5, 518, 0, 0, 1511, 1514, 1, 0, 0, 0, 1512, 1514, 3, 260, 130, 0, 1513, 1473, 1, 0, 0, 0, 1513, 1474, 1, 0, 0, 0, 1513, 1475, 1, 0, 0, 0, 1513, 1477, 1, 0, 0, 0, 1513, 1488, 1, 0, 0, 0, 1513, 1500, 1, 0, 0, 0, 1513, 1512, 1, 0, 0, 0, 1514, 211, 1, 0, 0, 0, 1515, 1516, 5, 160, 0, 0, 1516, 1517, 5, 494, 0, 0, 1517, 213, 1, 0, 0, 0, 1518, 1519, 7, 23, 0, 0, 1519, 215, 1, 0, 0, 0, 1520, 1521, 3, 218, 109, 0, 1521, 1522, 5, 517, 0, 0, 1522, 1523, 3, 220, 110, 0, 1523, 1524, 5, 521, 0, 0, 1524, 1525, 3, 290, 145, 0, 1525, 1526, 5, 518, 0, 0, 1526, 217, 1, 0, 0, 0, 1527, 1528, 7, 24, 0, 0, 1528, 219, 1, 0, 0, 0, 1529, 1530, 3, 336, 168, 0, 1530, 221, 1, 0, 0, 0, 1531, 1532, 5, 163, 0, 0, 1532, 1533, 3, 262, 131, 0, 1533, 223, 1, 0, 0, 0, 1534, 1535, 5, 433, 0, 0, 1535, 1540, 3, 226, 113, 0, 1536, 1537, 5, 521, 0, 0, 1537, 1539, 3, 226, 113, 0, 1538, 1536, 1, 0, 0, 0, 1539, 1542, 1, 0, 0, 0, 1540, 1538, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 225, 1, 0, 0, 0, 1542, 1540, 1, 0, 0, 0, 1543, 1544, 3, 304, 152, 0, 1544, 1545, 5, 17, 0, 0, 1545, 1546, 3, 228, 114, 0, 1546, 227, 1, 0, 0, 0, 1547, 1549, 3, 304, 152, 0, 1548, 1547, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1552, 5, 517, 0, 0, 1551, 1553, 3, 238, 119, 0, 1552, 1551, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1555, 1, 0, 0, 0, 1554, 1556, 3, 232, 116, 0, 1555, 1554, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1558, 1, 0, 0, 0, 1557, 1559, 3, 254, 127, 0, 1558, 1557, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1561, 5, 518, 0, 0, 1561, 229, 1, 0, 0, 0, 1562, 1563, 5, 214, 0, 0, 1563, 1565, 5, 517, 0, 0, 1564, 1566, 3, 238, 119, 0, 1565, 1564, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1568, 1, 0, 0, 0, 1567, 1569, 3, 232, 116, 0, 1568, 1567, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1571, 1, 0, 0, 0, 1570, 1572, 3, 242, 121, 0, 1571, 1570, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1574, 1, 0, 0, 0, 1573, 1575, 3, 248, 124, 0, 1574, 1573, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1577, 1, 0, 0, 0, 1576, 1578, 3, 250, 125, 0, 1577, 1576, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1580, 1, 0, 0, 0, 1579, 1581, 3, 244, 122, 0, 1580, 1579, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1583, 3, 252, 126, 0, 1583, 1588, 5, 518, 0, 0, 1584, 1586, 5, 17, 0, 0, 1585, 1584, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1589, 3, 312, 156, 0, 1588, 1585, 1, 0, 0, 0, 1588, 1589, 1, 0, 0, 0, 1589, 231, 1, 0, 0, 0, 1590, 1591, 5, 259, 0, 0, 1591, 1592, 5, 34, 0, 0, 1592, 1597, 3, 234, 117, 0, 1593, 1594, 5, 521, 0, 0, 1594, 1596, 3, 234, 117, 0, 1595, 1593, 1, 0, 0, 0, 1596, 1599, 1, 0, 0, 0, 1597, 1595, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 233, 1, 0, 0, 0, 1599, 1597, 1, 0, 0, 0, 1600, 1602, 3, 52, 26, 0, 1601, 1603, 7, 25, 0, 0, 1602, 1601, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1606, 1, 0, 0, 0, 1604, 1605, 5, 477, 0, 0, 1605, 1607, 7, 26, 0, 0, 1606, 1604, 1, 0, 0, 0, 1606, 1607, 1, 0, 0, 0, 1607, 235, 1, 0, 0, 0, 1608, 1611, 5, 205, 0, 0, 1609, 1612, 5, 5, 0, 0, 1610, 1612, 3, 260, 130, 0, 1611, 1609, 1, 0, 0, 0, 1611, 1610, 1, 0, 0, 0, 1612, 237, 1, 0, 0, 0, 1613, 1614, 5, 269, 0, 0, 1614, 1617, 5, 34, 0, 0, 1615, 1618, 3, 52, 26, 0, 1616, 1618, 3, 272, 136, 0, 1617, 1615, 1, 0, 0, 0, 1617, 1616, 1, 0, 0, 0, 1618, 1626, 1, 0, 0, 0, 1619, 1622, 5, 521, 0, 0, 1620, 1623, 3, 52, 26, 0, 1621, 1623, 3, 272, 136, 0, 1622, 1620, 1, 0, 0, 0, 1622, 1621, 1, 0, 0, 0, 1623, 1625, 1, 0, 0, 0, 1624, 1619, 1, 0, 0, 0, 1625, 1628, 1, 0, 0, 0, 1626, 1624, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 239, 1, 0, 0, 0, 1628, 1626, 1, 0, 0, 0, 1629, 1646, 5, 528, 0, 0, 1630, 1646, 5, 531, 0, 0, 1631, 1646, 5, 536, 0, 0, 1632, 1633, 5, 519, 0, 0, 1633, 1634, 5, 539, 0, 0, 1634, 1635, 5, 521, 0, 0, 1635, 1636, 5, 539, 0, 0, 1636, 1646, 5, 520, 0, 0, 1637, 1638, 5, 519, 0, 0, 1638, 1639, 5, 539, 0, 0, 1639, 1640, 5, 521, 0, 0, 1640, 1646, 5, 520, 0, 0, 1641, 1642, 5, 519, 0, 0, 1642, 1643, 5, 521, 0, 0, 1643, 1644, 5, 539, 0, 0, 1644, 1646, 5, 520, 0, 0, 1645, 1629, 1, 0, 0, 0, 1645, 1630, 1, 0, 0, 0, 1645, 1631, 1, 0, 0, 0, 1645, 1632, 1, 0, 0, 0, 1645, 1637, 1, 0, 0, 0, 1645, 1641, 1, 0, 0, 0, 1646, 241, 1, 0, 0, 0, 1647, 1648, 5, 216, 0, 0, 1648, 1653, 3, 174, 87, 0, 1649, 1650, 5, 521, 0, 0, 1650, 1652, 3, 174, 87, 0, 1651, 1649, 1, 0, 0, 0, 1652, 1655, 1, 0, 0, 0, 1653, 1651, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 243, 1, 0, 0, 0, 1655, 1653, 1, 0, 0, 0, 1656, 1657, 5, 272, 0, 0, 1657, 1659, 5, 517, 0, 0, 1658, 1660, 3, 246, 123, 0, 1659, 1658, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1659, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1665, 5, 518, 0, 0, 1664, 1666, 3, 258, 129, 0, 1665, 1664, 1, 0, 0, 0, 1665, 1666, 1, 0, 0, 0, 1666, 245, 1, 0, 0, 0, 1667, 1669, 3, 314, 157, 0, 1668, 1670, 3, 240, 120, 0, 1669, 1668, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 247, 1, 0, 0, 0, 1671, 1672, 5, 5, 0, 0, 1672, 1673, 5, 323, 0, 0, 1673, 1674, 5, 273, 0, 0, 1674, 1680, 5, 211, 0, 0, 1675, 1676, 5, 255, 0, 0, 1676, 1677, 5, 322, 0, 0, 1677, 1678, 5, 273, 0, 0, 1678, 1680, 5, 211, 0, 0, 1679, 1671, 1, 0, 0, 0, 1679, 1675, 1, 0, 0, 0, 1680, 249, 1, 0, 0, 0, 1681, 1682, 5, 439, 0, 0, 1682, 1683, 5, 211, 0, 0, 1683, 1684, 5, 344, 0, 0, 1684, 1685, 5, 479, 0, 0, 1685, 1686, 5, 468, 0, 0, 1686, 1706, 5, 322, 0, 0, 1687, 1688, 5, 439, 0, 0, 1688, 1689, 5, 211, 0, 0, 1689, 1690, 5, 344, 0, 0, 1690, 1691, 5, 389, 0, 0, 1691, 1692, 5, 238, 0, 0, 1692, 1706, 5, 322, 0, 0, 1693, 1694, 5, 439, 0, 0, 1694, 1695, 5, 211, 0, 0, 1695, 1696, 5, 344, 0, 0, 1696, 1697, 5, 389, 0, 0, 1697, 1698, 5, 468, 0, 0, 1698, 1706, 3, 314, 157, 0, 1699, 1700, 5, 439, 0, 0, 1700, 1701, 5, 211, 0, 0, 1701, 1702, 5, 344, 0, 0, 1702, 1703, 5, 389, 0, 0, 1703, 1704, 5, 458, 0, 0, 1704, 1706, 3, 314, 157, 0, 1705, 1681, 1, 0, 0, 0, 1705, 1687, 1, 0, 0, 0, 1705, 1693, 1, 0, 0, 0, 1705, 1699, 1, 0, 0, 0, 1706, 251, 1, 0, 0, 0, 1707, 1708, 5, 105, 0, 0, 1708, 1713, 3, 174, 87, 0, 1709, 1710, 5, 521, 0, 0, 1710, 1712, 3, 174, 87, 0, 1711, 1709, 1, 0, 0, 0, 1712, 1715, 1, 0, 0, 0, 1713, 1711, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 253, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1716, 1717, 5, 293, 0, 0, 1717, 1718, 5, 27, 0, 0, 1718, 1719, 3, 290, 145, 0, 1719, 1720, 3, 256, 128, 0, 1720, 1726, 1, 0, 0, 0, 1721, 1722, 5, 323, 0, 0, 1722, 1723, 5, 27, 0, 0, 1723, 1724, 5, 539, 0, 0, 1724, 1726, 3, 256, 128, 0, 1725, 1716, 1, 0, 0, 0, 1725, 1721, 1, 0, 0, 0, 1726, 255, 1, 0, 0, 0, 1727, 1728, 5, 481, 0, 0, 1728, 1729, 5, 10, 0, 0, 1729, 1730, 5, 76, 0, 0, 1730, 1731, 5, 322, 0, 0, 1731, 257, 1, 0, 0, 0, 1732, 1733, 5, 435, 0, 0, 1733, 1734, 3, 290, 145, 0, 1734, 259, 1, 0, 0, 0, 1735, 1736, 3, 262, 131, 0, 1736, 261, 1, 0, 0, 0, 1737, 1738, 6, 131, -1, 0, 1738, 1739, 5, 242, 0, 0, 1739, 1750, 3, 262, 131, 6, 1740, 1741, 5, 133, 0, 0, 1741, 1742, 5, 517, 0, 0, 1742, 1743, 3, 160, 80, 0, 1743, 1744, 5, 518, 0, 0, 1744, 1750, 1, 0, 0, 0, 1745, 1747, 3, 268, 134, 0, 1746, 1748, 3, 264, 132, 0, 1747, 1746, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1750, 1, 0, 0, 0, 1749, 1737, 1, 0, 0, 0, 1749, 1740, 1, 0, 0, 0, 1749, 1745, 1, 0, 0, 0, 1750, 1765, 1, 0, 0, 0, 1751, 1752, 10, 3, 0, 0, 1752, 1753, 5, 10, 0, 0, 1753, 1764, 3, 262, 131, 4, 1754, 1755, 10, 2, 0, 0, 1755, 1756, 5, 258, 0, 0, 1756, 1764, 3, 262, 131, 3, 1757, 1758, 10, 1, 0, 0, 1758, 1760, 5, 184, 0, 0, 1759, 1761, 5, 242, 0, 0, 1760, 1759, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1764, 7, 27, 0, 0, 1763, 1751, 1, 0, 0, 0, 1763, 1754, 1, 0, 0, 0, 1763, 1757, 1, 0, 0, 0, 1764, 1767, 1, 0, 0, 0, 1765, 1763, 1, 0, 0, 0, 1765, 1766, 1, 0, 0, 0, 1766, 263, 1, 0, 0, 0, 1767, 1765, 1, 0, 0, 0, 1768, 1770, 5, 242, 0, 0, 1769, 1768, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1773, 5, 27, 0, 0, 1772, 1774, 7, 28, 0, 0, 1773, 1772, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 3, 268, 134, 0, 1776, 1777, 5, 10, 0, 0, 1777, 1778, 3, 268, 134, 0, 1778, 1843, 1, 0, 0, 0, 1779, 1781, 5, 242, 0, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1783, 5, 170, 0, 0, 1783, 1784, 5, 517, 0, 0, 1784, 1789, 3, 260, 130, 0, 1785, 1786, 5, 521, 0, 0, 1786, 1788, 3, 260, 130, 0, 1787, 1785, 1, 0, 0, 0, 1788, 1791, 1, 0, 0, 0, 1789, 1787, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1792, 1, 0, 0, 0, 1791, 1789, 1, 0, 0, 0, 1792, 1793, 5, 518, 0, 0, 1793, 1843, 1, 0, 0, 0, 1794, 1796, 5, 242, 0, 0, 1795, 1794, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 5, 170, 0, 0, 1798, 1799, 5, 517, 0, 0, 1799, 1800, 3, 160, 80, 0, 1800, 1801, 5, 518, 0, 0, 1801, 1843, 1, 0, 0, 0, 1802, 1803, 5, 133, 0, 0, 1803, 1804, 5, 517, 0, 0, 1804, 1805, 3, 160, 80, 0, 1805, 1806, 5, 518, 0, 0, 1806, 1843, 1, 0, 0, 0, 1807, 1809, 5, 242, 0, 0, 1808, 1807, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1811, 5, 319, 0, 0, 1811, 1843, 3, 268, 134, 0, 1812, 1843, 3, 266, 133, 0, 1813, 1815, 5, 184, 0, 0, 1814, 1816, 5, 242, 0, 0, 1815, 1814, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1843, 7, 27, 0, 0, 1818, 1820, 5, 184, 0, 0, 1819, 1821, 5, 242, 0, 0, 1820, 1819, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1822, 1, 0, 0, 0, 1822, 1823, 5, 113, 0, 0, 1823, 1824, 5, 151, 0, 0, 1824, 1843, 3, 268, 134, 0, 1825, 1827, 5, 242, 0, 0, 1826, 1825, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1829, 5, 343, 0, 0, 1829, 1830, 5, 389, 0, 0, 1830, 1833, 3, 268, 134, 0, 1831, 1832, 5, 127, 0, 0, 1832, 1834, 3, 366, 183, 0, 1833, 1831, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 1843, 1, 0, 0, 0, 1835, 1836, 5, 184, 0, 0, 1836, 1840, 5, 186, 0, 0, 1837, 1841, 5, 414, 0, 0, 1838, 1841, 5, 13, 0, 0, 1839, 1841, 3, 312, 156, 0, 1840, 1837, 1, 0, 0, 0, 1840, 1838, 1, 0, 0, 0, 1840, 1839, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1843, 1, 0, 0, 0, 1842, 1769, 1, 0, 0, 0, 1842, 1780, 1, 0, 0, 0, 1842, 1795, 1, 0, 0, 0, 1842, 1802, 1, 0, 0, 0, 1842, 1808, 1, 0, 0, 0, 1842, 1812, 1, 0, 0, 0, 1842, 1813, 1, 0, 0, 0, 1842, 1818, 1, 0, 0, 0, 1842, 1826, 1, 0, 0, 0, 1842, 1835, 1, 0, 0, 0, 1843, 265, 1, 0, 0, 0, 1844, 1846, 5, 242, 0, 0, 1845, 1844, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1848, 5, 203, 0, 0, 1848, 1862, 7, 29, 0, 0, 1849, 1850, 5, 517, 0, 0, 1850, 1863, 5, 518, 0, 0, 1851, 1852, 5, 517, 0, 0, 1852, 1857, 3, 260, 130, 0, 1853, 1854, 5, 521, 0, 0, 1854, 1856, 3, 260, 130, 0, 1855, 1853, 1, 0, 0, 0, 1856, 1859, 1, 0, 0, 0, 1857, 1855, 1, 0, 0, 0, 1857, 1858, 1, 0, 0, 0, 1858, 1860, 1, 0, 0, 0, 1859, 1857, 1, 0, 0, 0, 1860, 1861, 5, 518, 0, 0, 1861, 1863, 1, 0, 0, 0, 1862, 1849, 1, 0, 0, 0, 1862, 1851, 1, 0, 0, 0, 1863, 1874, 1, 0, 0, 0, 1864, 1866, 5, 242, 0, 0, 1865, 1864, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1867, 1, 0, 0, 0, 1867, 1868, 5, 203, 0, 0, 1868, 1871, 3, 268, 134, 0, 1869, 1870, 5, 127, 0, 0, 1870, 1872, 3, 366, 183, 0, 1871, 1869, 1, 0, 0, 0, 1871, 1872, 1, 0, 0, 0, 1872, 1874, 1, 0, 0, 0, 1873, 1845, 1, 0, 0, 0, 1873, 1865, 1, 0, 0, 0, 1874, 267, 1, 0, 0, 0, 1875, 1876, 6, 134, -1, 0, 1876, 1880, 3, 272, 136, 0, 1877, 1878, 7, 30, 0, 0, 1878, 1880, 3, 268, 134, 7, 1879, 1875, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1880, 1902, 1, 0, 0, 0, 1881, 1882, 10, 6, 0, 0, 1882, 1883, 7, 31, 0, 0, 1883, 1901, 3, 268, 134, 7, 1884, 1885, 10, 5, 0, 0, 1885, 1886, 7, 32, 0, 0, 1886, 1901, 3, 268, 134, 6, 1887, 1888, 10, 4, 0, 0, 1888, 1889, 5, 512, 0, 0, 1889, 1901, 3, 268, 134, 5, 1890, 1891, 10, 3, 0, 0, 1891, 1892, 5, 513, 0, 0, 1892, 1901, 3, 268, 134, 4, 1893, 1894, 10, 2, 0, 0, 1894, 1895, 5, 511, 0, 0, 1895, 1901, 3, 268, 134, 3, 1896, 1897, 10, 1, 0, 0, 1897, 1898, 3, 354, 177, 0, 1898, 1899, 3, 268, 134, 2, 1899, 1901, 1, 0, 0, 0, 1900, 1881, 1, 0, 0, 0, 1900, 1884, 1, 0, 0, 0, 1900, 1887, 1, 0, 0, 0, 1900, 1890, 1, 0, 0, 0, 1900, 1893, 1, 0, 0, 0, 1900, 1896, 1, 0, 0, 0, 1901, 1904, 1, 0, 0, 0, 1902, 1900, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 269, 1, 0, 0, 0, 1904, 1902, 1, 0, 0, 0, 1905, 1925, 3, 380, 190, 0, 1906, 1925, 3, 278, 139, 0, 1907, 1908, 3, 280, 140, 0, 1908, 1920, 5, 517, 0, 0, 1909, 1911, 3, 372, 186, 0, 1910, 1909, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1917, 3, 282, 141, 0, 1913, 1914, 5, 521, 0, 0, 1914, 1916, 3, 282, 141, 0, 1915, 1913, 1, 0, 0, 0, 1916, 1919, 1, 0, 0, 0, 1917, 1915, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1921, 1, 0, 0, 0, 1919, 1917, 1, 0, 0, 0, 1920, 1910, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1923, 5, 518, 0, 0, 1923, 1925, 1, 0, 0, 0, 1924, 1905, 1, 0, 0, 0, 1924, 1906, 1, 0, 0, 0, 1924, 1907, 1, 0, 0, 0, 1925, 271, 1, 0, 0, 0, 1926, 1927, 6, 136, -1, 0, 1927, 1929, 5, 40, 0, 0, 1928, 1930, 3, 318, 159, 0, 1929, 1928, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1929, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1935, 1, 0, 0, 0, 1933, 1934, 5, 120, 0, 0, 1934, 1936, 3, 260, 130, 0, 1935, 1933, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 1, 0, 0, 0, 1937, 1938, 5, 122, 0, 0, 1938, 2002, 1, 0, 0, 0, 1939, 1940, 5, 40, 0, 0, 1940, 1942, 3, 260, 130, 0, 1941, 1943, 3, 318, 159, 0, 1942, 1941, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1942, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1948, 1, 0, 0, 0, 1946, 1947, 5, 120, 0, 0, 1947, 1949, 3, 260, 130, 0, 1948, 1946, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1951, 5, 122, 0, 0, 1951, 2002, 1, 0, 0, 0, 1952, 1953, 5, 41, 0, 0, 1953, 1954, 5, 517, 0, 0, 1954, 1955, 3, 260, 130, 0, 1955, 1956, 5, 17, 0, 0, 1956, 1957, 3, 58, 29, 0, 1957, 1958, 5, 518, 0, 0, 1958, 2002, 1, 0, 0, 0, 1959, 1960, 5, 458, 0, 0, 1960, 1961, 5, 517, 0, 0, 1961, 1964, 3, 260, 130, 0, 1962, 1963, 5, 462, 0, 0, 1963, 1965, 5, 477, 0, 0, 1964, 1962, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1967, 5, 518, 0, 0, 1967, 2002, 1, 0, 0, 0, 1968, 1969, 5, 468, 0, 0, 1969, 1970, 5, 517, 0, 0, 1970, 1973, 3, 260, 130, 0, 1971, 1972, 5, 462, 0, 0, 1972, 1974, 5, 477, 0, 0, 1973, 1971, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1976, 5, 518, 0, 0, 1976, 2002, 1, 0, 0, 0, 1977, 1978, 5, 282, 0, 0, 1978, 1979, 5, 517, 0, 0, 1979, 1980, 3, 268, 134, 0, 1980, 1981, 5, 170, 0, 0, 1981, 1982, 3, 268, 134, 0, 1982, 1983, 5, 518, 0, 0, 1983, 2002, 1, 0, 0, 0, 1984, 2002, 3, 362, 181, 0, 1985, 2002, 5, 528, 0, 0, 1986, 1987, 3, 336, 168, 0, 1987, 1988, 5, 514, 0, 0, 1988, 1989, 5, 528, 0, 0, 1989, 2002, 1, 0, 0, 0, 1990, 1991, 5, 517, 0, 0, 1991, 1992, 3, 160, 80, 0, 1992, 1993, 5, 518, 0, 0, 1993, 2002, 1, 0, 0, 0, 1994, 2002, 3, 270, 135, 0, 1995, 2002, 3, 54, 27, 0, 1996, 2002, 3, 284, 142, 0, 1997, 1998, 5, 517, 0, 0, 1998, 1999, 3, 260, 130, 0, 1999, 2000, 5, 518, 0, 0, 2000, 2002, 1, 0, 0, 0, 2001, 1926, 1, 0, 0, 0, 2001, 1939, 1, 0, 0, 0, 2001, 1952, 1, 0, 0, 0, 2001, 1959, 1, 0, 0, 0, 2001, 1968, 1, 0, 0, 0, 2001, 1977, 1, 0, 0, 0, 2001, 1984, 1, 0, 0, 0, 2001, 1985, 1, 0, 0, 0, 2001, 1986, 1, 0, 0, 0, 2001, 1990, 1, 0, 0, 0, 2001, 1994, 1, 0, 0, 0, 2001, 1995, 1, 0, 0, 0, 2001, 1996, 1, 0, 0, 0, 2001, 1997, 1, 0, 0, 0, 2002, 2010, 1, 0, 0, 0, 2003, 2004, 10, 4, 0, 0, 2004, 2005, 5, 515, 0, 0, 2005, 2006, 3, 268, 134, 0, 2006, 2007, 5, 516, 0, 0, 2007, 2009, 1, 0, 0, 0, 2008, 2003, 1, 0, 0, 0, 2009, 2012, 1, 0, 0, 0, 2010, 2008, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 273, 1, 0, 0, 0, 2012, 2010, 1, 0, 0, 0, 2013, 2014, 3, 336, 168, 0, 2014, 275, 1, 0, 0, 0, 2015, 2020, 3, 384, 192, 0, 2016, 2020, 3, 380, 190, 0, 2017, 2020, 3, 382, 191, 0, 2018, 2020, 3, 336, 168, 0, 2019, 2015, 1, 0, 0, 0, 2019, 2016, 1, 0, 0, 0, 2019, 2017, 1, 0, 0, 0, 2019, 2018, 1, 0, 0, 0, 2020, 277, 1, 0, 0, 0, 2021, 2022, 3, 382, 191, 0, 2022, 2023, 5, 538, 0, 0, 2023, 2026, 1, 0, 0, 0, 2024, 2026, 3, 290, 145, 0, 2025, 2021, 1, 0, 0, 0, 2025, 2024, 1, 0, 0, 0, 2026, 279, 1, 0, 0, 0, 2027, 2030, 3, 384, 192, 0, 2028, 2030, 3, 336, 168, 0, 2029, 2027, 1, 0, 0, 0, 2029, 2028, 1, 0, 0, 0, 2030, 281, 1, 0, 0, 0, 2031, 2036, 3, 378, 189, 0, 2032, 2036, 3, 376, 188, 0, 2033, 2036, 3, 374, 187, 0, 2034, 2036, 3, 260, 130, 0, 2035, 2031, 1, 0, 0, 0, 2035, 2032, 1, 0, 0, 0, 2035, 2033, 1, 0, 0, 0, 2035, 2034, 1, 0, 0, 0, 2036, 283, 1, 0, 0, 0, 2037, 2038, 3, 336, 168, 0, 2038, 285, 1, 0, 0, 0, 2039, 2040, 3, 312, 156, 0, 2040, 287, 1, 0, 0, 0, 2041, 2044, 3, 312, 156, 0, 2042, 2044, 3, 284, 142, 0, 2043, 2041, 1, 0, 0, 0, 2043, 2042, 1, 0, 0, 0, 2044, 289, 1, 0, 0, 0, 2045, 2048, 5, 182, 0, 0, 2046, 2049, 3, 292, 146, 0, 2047, 2049, 3, 296, 148, 0, 2048, 2046, 1, 0, 0, 0, 2048, 2047, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 291, 1, 0, 0, 0, 2050, 2052, 3, 294, 147, 0, 2051, 2053, 3, 298, 149, 0, 2052, 2051, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 293, 1, 0, 0, 0, 2054, 2055, 3, 300, 150, 0, 2055, 2056, 3, 376, 188, 0, 2056, 2058, 1, 0, 0, 0, 2057, 2054, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2057, 1, 0, 0, 0, 2059, 2060, 1, 0, 0, 0, 2060, 295, 1, 0, 0, 0, 2061, 2064, 3, 298, 149, 0, 2062, 2065, 3, 294, 147, 0, 2063, 2065, 3, 298, 149, 0, 2064, 2062, 1, 0, 0, 0, 2064, 2063, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 297, 1, 0, 0, 0, 2066, 2067, 3, 300, 150, 0, 2067, 2068, 3, 376, 188, 0, 2068, 2069, 5, 389, 0, 0, 2069, 2070, 3, 376, 188, 0, 2070, 299, 1, 0, 0, 0, 2071, 2073, 7, 33, 0, 0, 2072, 2071, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 2077, 7, 34, 0, 0, 2075, 2077, 5, 538, 0, 0, 2076, 2072, 1, 0, 0, 0, 2076, 2075, 1, 0, 0, 0, 2077, 301, 1, 0, 0, 0, 2078, 2080, 5, 17, 0, 0, 2079, 2078, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2083, 3, 312, 156, 0, 2082, 2084, 3, 308, 154, 0, 2083, 2082, 1, 0, 0, 0, 2083, 2084, 1, 0, 0, 0, 2084, 303, 1, 0, 0, 0, 2085, 2086, 3, 312, 156, 0, 2086, 2087, 3, 306, 153, 0, 2087, 305, 1, 0, 0, 0, 2088, 2089, 5, 222, 0, 0, 2089, 2091, 3, 312, 156, 0, 2090, 2088, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2090, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2096, 1, 0, 0, 0, 2094, 2096, 1, 0, 0, 0, 2095, 2090, 1, 0, 0, 0, 2095, 2094, 1, 0, 0, 0, 2096, 307, 1, 0, 0, 0, 2097, 2098, 5, 517, 0, 0, 2098, 2099, 3, 310, 155, 0, 2099, 2100, 5, 518, 0, 0, 2100, 309, 1, 0, 0, 0, 2101, 2106, 3, 312, 156, 0, 2102, 2103, 5, 521, 0, 0, 2103, 2105, 3, 312, 156, 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, 311, 1, 0, 0, 0, 2108, 2106, 1, 0, 0, 0, 2109, 2113, 3, 314, 157, 0, 2110, 2113, 3, 316, 158, 0, 2111, 2113, 3, 386, 193, 0, 2112, 2109, 1, 0, 0, 0, 2112, 2110, 1, 0, 0, 0, 2112, 2111, 1, 0, 0, 0, 2113, 313, 1, 0, 0, 0, 2114, 2115, 7, 35, 0, 0, 2115, 315, 1, 0, 0, 0, 2116, 2117, 5, 538, 0, 0, 2117, 317, 1, 0, 0, 0, 2118, 2119, 5, 429, 0, 0, 2119, 2120, 3, 260, 130, 0, 2120, 2121, 5, 377, 0, 0, 2121, 2122, 3, 260, 130, 0, 2122, 319, 1, 0, 0, 0, 2123, 2124, 3, 312, 156, 0, 2124, 321, 1, 0, 0, 0, 2125, 2126, 3, 312, 156, 0, 2126, 323, 1, 0, 0, 0, 2127, 2130, 3, 312, 156, 0, 2128, 2129, 5, 514, 0, 0, 2129, 2131, 3, 312, 156, 0, 2130, 2128, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 325, 1, 0, 0, 0, 2132, 2135, 3, 312, 156, 0, 2133, 2134, 5, 514, 0, 0, 2134, 2136, 3, 312, 156, 0, 2135, 2133, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 327, 1, 0, 0, 0, 2137, 2140, 3, 312, 156, 0, 2138, 2139, 5, 514, 0, 0, 2139, 2141, 3, 312, 156, 0, 2140, 2138, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2150, 1, 0, 0, 0, 2142, 2143, 3, 312, 156, 0, 2143, 2144, 5, 514, 0, 0, 2144, 2147, 3, 312, 156, 0, 2145, 2146, 5, 514, 0, 0, 2146, 2148, 3, 312, 156, 0, 2147, 2145, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2150, 1, 0, 0, 0, 2149, 2137, 1, 0, 0, 0, 2149, 2142, 1, 0, 0, 0, 2150, 329, 1, 0, 0, 0, 2151, 2154, 3, 312, 156, 0, 2152, 2153, 5, 514, 0, 0, 2153, 2155, 3, 312, 156, 0, 2154, 2152, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2164, 1, 0, 0, 0, 2156, 2157, 3, 312, 156, 0, 2157, 2158, 5, 514, 0, 0, 2158, 2161, 3, 312, 156, 0, 2159, 2160, 5, 514, 0, 0, 2160, 2162, 3, 312, 156, 0, 2161, 2159, 1, 0, 0, 0, 2161, 2162, 1, 0, 0, 0, 2162, 2164, 1, 0, 0, 0, 2163, 2151, 1, 0, 0, 0, 2163, 2156, 1, 0, 0, 0, 2164, 331, 1, 0, 0, 0, 2165, 2168, 3, 312, 156, 0, 2166, 2167, 5, 514, 0, 0, 2167, 2169, 3, 312, 156, 0, 2168, 2166, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 2178, 1, 0, 0, 0, 2170, 2171, 3, 312, 156, 0, 2171, 2172, 5, 514, 0, 0, 2172, 2175, 3, 312, 156, 0, 2173, 2174, 5, 514, 0, 0, 2174, 2176, 3, 312, 156, 0, 2175, 2173, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2178, 1, 0, 0, 0, 2177, 2165, 1, 0, 0, 0, 2177, 2170, 1, 0, 0, 0, 2178, 333, 1, 0, 0, 0, 2179, 2182, 3, 312, 156, 0, 2180, 2181, 5, 514, 0, 0, 2181, 2183, 3, 312, 156, 0, 2182, 2180, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 2192, 1, 0, 0, 0, 2184, 2185, 3, 312, 156, 0, 2185, 2186, 5, 514, 0, 0, 2186, 2189, 3, 312, 156, 0, 2187, 2188, 5, 514, 0, 0, 2188, 2190, 3, 312, 156, 0, 2189, 2187, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2192, 1, 0, 0, 0, 2191, 2179, 1, 0, 0, 0, 2191, 2184, 1, 0, 0, 0, 2192, 335, 1, 0, 0, 0, 2193, 2198, 3, 312, 156, 0, 2194, 2195, 5, 514, 0, 0, 2195, 2197, 3, 312, 156, 0, 2196, 2194, 1, 0, 0, 0, 2197, 2200, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2198, 2196, 1, 0, 0, 0, 2199, 337, 1, 0, 0, 0, 2200, 2198, 1, 0, 0, 0, 2201, 2202, 5, 434, 0, 0, 2202, 2203, 3, 344, 172, 0, 2203, 339, 1, 0, 0, 0, 2204, 2205, 5, 167, 0, 0, 2205, 2206, 5, 242, 0, 0, 2206, 2207, 5, 133, 0, 0, 2207, 341, 1, 0, 0, 0, 2208, 2209, 5, 167, 0, 0, 2209, 2210, 5, 133, 0, 0, 2210, 343, 1, 0, 0, 0, 2211, 2212, 5, 517, 0, 0, 2212, 2217, 3, 346, 173, 0, 2213, 2214, 5, 521, 0, 0, 2214, 2216, 3, 346, 173, 0, 2215, 2213, 1, 0, 0, 0, 2216, 2219, 1, 0, 0, 0, 2217, 2215, 1, 0, 0, 0, 2217, 2218, 1, 0, 0, 0, 2218, 2220, 1, 0, 0, 0, 2219, 2217, 1, 0, 0, 0, 2220, 2221, 5, 518, 0, 0, 2221, 345, 1, 0, 0, 0, 2222, 2227, 3, 348, 174, 0, 2223, 2225, 5, 506, 0, 0, 2224, 2223, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2228, 3, 350, 175, 0, 2227, 2224, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, 347, 1, 0, 0, 0, 2229, 2233, 3, 312, 156, 0, 2230, 2233, 3, 284, 142, 0, 2231, 2233, 5, 538, 0, 0, 2232, 2229, 1, 0, 0, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2231, 1, 0, 0, 0, 2233, 349, 1, 0, 0, 0, 2234, 2239, 5, 539, 0, 0, 2235, 2239, 5, 540, 0, 0, 2236, 2239, 3, 370, 185, 0, 2237, 2239, 5, 538, 0, 0, 2238, 2234, 1, 0, 0, 0, 2238, 2235, 1, 0, 0, 0, 2238, 2236, 1, 0, 0, 0, 2238, 2237, 1, 0, 0, 0, 2239, 351, 1, 0, 0, 0, 2240, 2247, 5, 10, 0, 0, 2241, 2242, 5, 512, 0, 0, 2242, 2247, 5, 512, 0, 0, 2243, 2247, 5, 258, 0, 0, 2244, 2245, 5, 511, 0, 0, 2245, 2247, 5, 511, 0, 0, 2246, 2240, 1, 0, 0, 0, 2246, 2241, 1, 0, 0, 0, 2246, 2243, 1, 0, 0, 0, 2246, 2244, 1, 0, 0, 0, 2247, 353, 1, 0, 0, 0, 2248, 2263, 5, 506, 0, 0, 2249, 2263, 5, 507, 0, 0, 2250, 2263, 5, 508, 0, 0, 2251, 2252, 5, 508, 0, 0, 2252, 2263, 5, 506, 0, 0, 2253, 2254, 5, 507, 0, 0, 2254, 2263, 5, 506, 0, 0, 2255, 2256, 5, 508, 0, 0, 2256, 2263, 5, 507, 0, 0, 2257, 2258, 5, 509, 0, 0, 2258, 2263, 5, 506, 0, 0, 2259, 2260, 5, 508, 0, 0, 2260, 2261, 5, 506, 0, 0, 2261, 2263, 5, 507, 0, 0, 2262, 2248, 1, 0, 0, 0, 2262, 2249, 1, 0, 0, 0, 2262, 2250, 1, 0, 0, 0, 2262, 2251, 1, 0, 0, 0, 2262, 2253, 1, 0, 0, 0, 2262, 2255, 1, 0, 0, 0, 2262, 2257, 1, 0, 0, 0, 2262, 2259, 1, 0, 0, 0, 2263, 355, 1, 0, 0, 0, 2264, 2265, 5, 508, 0, 0, 2265, 2272, 5, 508, 0, 0, 2266, 2267, 5, 507, 0, 0, 2267, 2272, 5, 507, 0, 0, 2268, 2272, 5, 512, 0, 0, 2269, 2272, 5, 513, 0, 0, 2270, 2272, 5, 511, 0, 0, 2271, 2264, 1, 0, 0, 0, 2271, 2266, 1, 0, 0, 0, 2271, 2268, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2271, 2270, 1, 0, 0, 0, 2272, 357, 1, 0, 0, 0, 2273, 2274, 7, 36, 0, 0, 2274, 359, 1, 0, 0, 0, 2275, 2276, 7, 37, 0, 0, 2276, 361, 1, 0, 0, 0, 2277, 2292, 3, 290, 145, 0, 2278, 2292, 3, 364, 182, 0, 2279, 2292, 3, 366, 183, 0, 2280, 2282, 5, 530, 0, 0, 2281, 2280, 1, 0, 0, 0, 2281, 2282, 1, 0, 0, 0, 2282, 2283, 1, 0, 0, 0, 2283, 2292, 3, 368, 184, 0, 2284, 2292, 3, 370, 185, 0, 2285, 2292, 5, 540, 0, 0, 2286, 2292, 5, 541, 0, 0, 2287, 2289, 5, 242, 0, 0, 2288, 2287, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2290, 1, 0, 0, 0, 2290, 2292, 5, 245, 0, 0, 2291, 2277, 1, 0, 0, 0, 2291, 2278, 1, 0, 0, 0, 2291, 2279, 1, 0, 0, 0, 2291, 2281, 1, 0, 0, 0, 2291, 2284, 1, 0, 0, 0, 2291, 2285, 1, 0, 0, 0, 2291, 2286, 1, 0, 0, 0, 2291, 2288, 1, 0, 0, 0, 2292, 363, 1, 0, 0, 0, 2293, 2294, 3, 374, 187, 0, 2294, 2295, 3, 366, 183, 0, 2295, 365, 1, 0, 0, 0, 2296, 2297, 5, 538, 0, 0, 2297, 367, 1, 0, 0, 0, 2298, 2299, 5, 539, 0, 0, 2299, 369, 1, 0, 0, 0, 2300, 2301, 7, 38, 0, 0, 2301, 371, 1, 0, 0, 0, 2302, 2303, 7, 39, 0, 0, 2303, 373, 1, 0, 0, 0, 2304, 2305, 7, 40, 0, 0, 2305, 375, 1, 0, 0, 0, 2306, 2307, 7, 41, 0, 0, 2307, 377, 1, 0, 0, 0, 2308, 2309, 7, 42, 0, 0, 2309, 379, 1, 0, 0, 0, 2310, 2311, 7, 43, 0, 0, 2311, 381, 1, 0, 0, 0, 2312, 2313, 7, 44, 0, 0, 2313, 383, 1, 0, 0, 0, 2314, 2315, 7, 45, 0, 0, 2315, 385, 1, 0, 0, 0, 2316, 2317, 7, 46, 0, 0, 2317, 387, 1, 0, 0, 0, 274, 391, 398, 401, 415, 433, 437, 446, 451, 458, 469, 478, 490, 493, 500, 503, 511, 515, 520, 523, 530, 538, 542, 554, 562, 566, 598, 601, 606, 610, 614, 618, 627, 632, 636, 640, 645, 648, 652, 657, 663, 668, 673, 677, 681, 685, 695, 703, 707, 711, 715, 719, 723, 727, 731, 735, 737, 747, 755, 779, 793, 798, 802, 808, 811, 814, 821, 824, 833, 845, 869, 881, 886, 890, 898, 902, 908, 918, 923, 929, 933, 937, 941, 950, 954, 961, 964, 974, 982, 990, 994, 1009, 1028, 1039, 1043, 1050, 1055, 1061, 1065, 1072, 1076, 1080, 1084, 1092, 1096, 1101, 1107, 1113, 1116, 1120, 1131, 1140, 1147, 1158, 1170, 1185, 1188, 1192, 1195, 1197, 1202, 1206, 1209, 1213, 1222, 1231, 1241, 1246, 1257, 1260, 1263, 1266, 1269, 1275, 1279, 1287, 1290, 1295, 1298, 1302, 1305, 1307, 1321, 1332, 1337, 1345, 1348, 1351, 1356, 1358, 1360, 1365, 1368, 1372, 1376, 1385, 1396, 1423, 1445, 1458, 1470, 1483, 1495, 1507, 1513, 1540, 1548, 1552, 1555, 1558, 1565, 1568, 1571, 1574, 1577, 1580, 1585, 1588, 1597, 1602, 1606, 1611, 1617, 1622, 1626, 1645, 1653, 1661, 1665, 1669, 1679, 1705, 1713, 1725, 1747, 1749, 1760, 1763, 1765, 1769, 1773, 1780, 1789, 1795, 1808, 1815, 1820, 1826, 1833, 1840, 1842, 1845, 1857, 1862, 1865, 1871, 1873, 1879, 1900, 1902, 1910, 1917, 1920, 1924, 1931, 1935, 1944, 1948, 1964, 1973, 2001, 2010, 2019, 2025, 2029, 2035, 2043, 2048, 2052, 2059, 2064, 2072, 2076, 2079, 2083, 2092, 2095, 2106, 2112, 2130, 2135, 2140, 2147, 2149, 2154, 2161, 2163, 2168, 2175, 2177, 2182, 2189, 2191, 2198, 2217, 2224, 2227, 2232, 2238, 2246, 2262, 2271, 2281, 2288, 2291] \ No newline at end of file +[4, 1, 542, 2441, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 1, 0, 5, 0, 400, 8, 0, 10, 0, 12, 0, 403, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 409, 8, 1, 1, 1, 3, 1, 412, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 426, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 444, 8, 4, 1, 5, 1, 5, 3, 5, 448, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 457, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 462, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 467, 8, 8, 10, 8, 12, 8, 470, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 480, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 487, 8, 11, 10, 11, 12, 11, 490, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 501, 8, 12, 1, 12, 3, 12, 504, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 511, 8, 12, 1, 12, 3, 12, 514, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 522, 8, 12, 1, 12, 1, 12, 3, 12, 526, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 531, 8, 12, 1, 12, 3, 12, 534, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 541, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 549, 8, 15, 1, 16, 1, 16, 3, 16, 553, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 565, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 573, 8, 18, 1, 18, 1, 18, 3, 18, 577, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 609, 8, 18, 1, 19, 3, 19, 612, 8, 19, 1, 19, 4, 19, 615, 8, 19, 11, 19, 12, 19, 616, 1, 20, 1, 20, 3, 20, 621, 8, 20, 1, 21, 1, 21, 3, 21, 625, 8, 21, 1, 21, 1, 21, 3, 21, 629, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 636, 8, 21, 10, 21, 12, 21, 639, 9, 21, 1, 21, 1, 21, 3, 21, 643, 8, 21, 1, 21, 1, 21, 3, 21, 647, 8, 21, 1, 21, 1, 21, 3, 21, 651, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 656, 8, 21, 1, 21, 3, 21, 659, 8, 21, 1, 21, 1, 21, 3, 21, 663, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 668, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 674, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 679, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 684, 8, 24, 1, 24, 1, 24, 3, 24, 688, 8, 24, 1, 25, 1, 25, 3, 25, 692, 8, 25, 1, 26, 1, 26, 3, 26, 696, 8, 26, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 704, 8, 28, 10, 28, 12, 28, 707, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 714, 8, 29, 1, 29, 1, 29, 3, 29, 718, 8, 29, 1, 29, 1, 29, 3, 29, 722, 8, 29, 1, 29, 1, 29, 3, 29, 726, 8, 29, 1, 29, 1, 29, 3, 29, 730, 8, 29, 1, 29, 1, 29, 3, 29, 734, 8, 29, 1, 29, 1, 29, 3, 29, 738, 8, 29, 1, 29, 1, 29, 3, 29, 742, 8, 29, 1, 29, 1, 29, 3, 29, 746, 8, 29, 3, 29, 748, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 758, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 766, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 788, 8, 35, 10, 35, 12, 35, 791, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 802, 8, 35, 10, 35, 12, 35, 805, 9, 35, 1, 35, 1, 35, 3, 35, 809, 8, 35, 1, 36, 1, 36, 3, 36, 813, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 819, 8, 36, 1, 36, 3, 36, 822, 8, 36, 1, 36, 3, 36, 825, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 832, 8, 37, 1, 37, 3, 37, 835, 8, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 844, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 3, 42, 856, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 878, 8, 46, 10, 46, 12, 46, 881, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 5, 47, 890, 8, 47, 10, 47, 12, 47, 893, 9, 47, 1, 47, 1, 47, 3, 47, 897, 8, 47, 1, 48, 1, 48, 3, 48, 901, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 907, 8, 49, 10, 49, 12, 49, 910, 9, 49, 1, 49, 3, 49, 913, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 919, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 3, 52, 929, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 934, 8, 52, 1, 52, 1, 52, 1, 53, 1, 53, 3, 53, 940, 8, 53, 1, 53, 1, 53, 3, 53, 944, 8, 53, 1, 53, 1, 53, 3, 53, 948, 8, 53, 1, 53, 1, 53, 3, 53, 952, 8, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 961, 8, 54, 1, 54, 1, 54, 3, 54, 965, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 972, 8, 54, 1, 54, 3, 54, 975, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 983, 8, 55, 10, 55, 12, 55, 986, 9, 55, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 3, 57, 993, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1001, 8, 57, 1, 58, 1, 58, 3, 58, 1005, 8, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1020, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1039, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1050, 8, 66, 1, 66, 1, 66, 3, 66, 1054, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1061, 8, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1066, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 3, 68, 1072, 8, 68, 1, 68, 1, 68, 3, 68, 1076, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1083, 8, 69, 1, 69, 1, 69, 3, 69, 1087, 8, 69, 1, 70, 1, 70, 3, 70, 1091, 8, 70, 1, 70, 1, 70, 3, 70, 1095, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1103, 8, 71, 1, 71, 1, 71, 3, 71, 1107, 8, 71, 1, 71, 1, 71, 1, 72, 3, 72, 1112, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1118, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1124, 8, 73, 1, 73, 3, 73, 1127, 8, 73, 1, 73, 1, 73, 3, 73, 1131, 8, 73, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1140, 8, 75, 10, 75, 12, 75, 1143, 9, 75, 1, 76, 1, 76, 1, 76, 1, 76, 5, 76, 1149, 8, 76, 10, 76, 12, 76, 1152, 9, 76, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1158, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 4, 78, 1167, 8, 78, 11, 78, 12, 78, 1168, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 4, 79, 1179, 8, 79, 11, 79, 12, 79, 1180, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1196, 8, 80, 1, 80, 3, 80, 1199, 8, 80, 1, 80, 1, 80, 3, 80, 1203, 8, 80, 1, 80, 3, 80, 1206, 8, 80, 3, 80, 1208, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1213, 8, 80, 1, 80, 1, 80, 3, 80, 1217, 8, 80, 1, 80, 3, 80, 1220, 8, 80, 5, 80, 1222, 8, 80, 10, 80, 12, 80, 1225, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1231, 8, 81, 10, 81, 12, 81, 1234, 9, 81, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1240, 8, 82, 10, 82, 12, 82, 1243, 9, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 1250, 8, 83, 10, 83, 12, 83, 1253, 9, 83, 1, 83, 1, 83, 3, 83, 1257, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 3, 85, 1268, 8, 85, 1, 85, 3, 85, 1271, 8, 85, 1, 85, 3, 85, 1274, 8, 85, 1, 85, 3, 85, 1277, 8, 85, 1, 85, 3, 85, 1280, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1286, 8, 85, 1, 86, 1, 86, 3, 86, 1290, 8, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 1296, 8, 86, 10, 86, 12, 86, 1299, 9, 86, 3, 86, 1301, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1306, 8, 87, 1, 87, 3, 87, 1309, 8, 87, 1, 87, 1, 87, 3, 87, 1313, 8, 87, 1, 87, 3, 87, 1316, 8, 87, 3, 87, 1318, 8, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1332, 8, 88, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 1341, 8, 90, 10, 90, 12, 90, 1344, 9, 90, 1, 90, 1, 90, 3, 90, 1348, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1356, 8, 90, 1, 90, 3, 90, 1359, 8, 90, 1, 90, 3, 90, 1362, 8, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1367, 8, 90, 5, 90, 1369, 8, 90, 10, 90, 12, 90, 1372, 9, 90, 1, 91, 1, 91, 3, 91, 1376, 8, 91, 1, 92, 3, 92, 1379, 8, 92, 1, 92, 1, 92, 3, 92, 1383, 8, 92, 1, 92, 1, 92, 3, 92, 1387, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 1396, 8, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 1407, 8, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 5, 97, 1432, 8, 97, 10, 97, 12, 97, 1435, 9, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1456, 8, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 1469, 8, 102, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 5, 104, 1479, 8, 104, 10, 104, 12, 104, 1482, 9, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1492, 8, 105, 10, 105, 12, 105, 1495, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1504, 8, 105, 10, 105, 12, 105, 1507, 9, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 5, 105, 1516, 8, 105, 10, 105, 12, 105, 1519, 9, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1524, 8, 105, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 5, 112, 1549, 8, 112, 10, 112, 12, 112, 1552, 9, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 3, 114, 1559, 8, 114, 1, 114, 1, 114, 3, 114, 1563, 8, 114, 1, 114, 3, 114, 1566, 8, 114, 1, 114, 3, 114, 1569, 8, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 3, 115, 1576, 8, 115, 1, 115, 3, 115, 1579, 8, 115, 1, 115, 3, 115, 1582, 8, 115, 1, 115, 3, 115, 1585, 8, 115, 1, 115, 3, 115, 1588, 8, 115, 1, 115, 3, 115, 1591, 8, 115, 1, 115, 1, 115, 1, 115, 3, 115, 1596, 8, 115, 1, 115, 3, 115, 1599, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1606, 8, 116, 10, 116, 12, 116, 1609, 9, 116, 1, 117, 1, 117, 3, 117, 1613, 8, 117, 1, 117, 1, 117, 3, 117, 1617, 8, 117, 1, 118, 1, 118, 1, 118, 3, 118, 1622, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1628, 8, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1633, 8, 119, 5, 119, 1635, 8, 119, 10, 119, 12, 119, 1638, 9, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 1656, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 5, 121, 1662, 8, 121, 10, 121, 12, 121, 1665, 9, 121, 1, 122, 1, 122, 1, 122, 4, 122, 1670, 8, 122, 11, 122, 12, 122, 1671, 1, 122, 1, 122, 3, 122, 1676, 8, 122, 1, 123, 1, 123, 3, 123, 1680, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1690, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1716, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 1722, 8, 126, 10, 126, 12, 126, 1725, 9, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1736, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1758, 8, 131, 3, 131, 1760, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1771, 8, 131, 1, 131, 5, 131, 1774, 8, 131, 10, 131, 12, 131, 1777, 9, 131, 1, 132, 3, 132, 1780, 8, 132, 1, 132, 1, 132, 3, 132, 1784, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1791, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1798, 8, 132, 10, 132, 12, 132, 1801, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1806, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1819, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1826, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1831, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1837, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1844, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1851, 8, 132, 3, 132, 1853, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1863, 8, 133, 1, 134, 3, 134, 1866, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1876, 8, 134, 10, 134, 12, 134, 1879, 9, 134, 1, 134, 1, 134, 3, 134, 1883, 8, 134, 1, 134, 3, 134, 1886, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1892, 8, 134, 3, 134, 1894, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1900, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 1921, 8, 135, 10, 135, 12, 135, 1924, 9, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1931, 8, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1936, 8, 136, 10, 136, 12, 136, 1939, 9, 136, 3, 136, 1941, 8, 136, 1, 136, 1, 136, 3, 136, 1945, 8, 136, 1, 137, 1, 137, 1, 137, 4, 137, 1950, 8, 137, 11, 137, 12, 137, 1951, 1, 137, 1, 137, 3, 137, 1956, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 4, 137, 1963, 8, 137, 11, 137, 12, 137, 1964, 1, 137, 1, 137, 3, 137, 1969, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 1985, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 1994, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 2022, 8, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 2029, 8, 137, 10, 137, 12, 137, 2032, 9, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2040, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2046, 8, 140, 1, 141, 1, 141, 3, 141, 2050, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 2060, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2066, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2072, 8, 143, 1, 143, 1, 143, 3, 143, 2076, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2082, 8, 143, 1, 143, 1, 143, 3, 143, 2086, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2092, 8, 144, 3, 144, 2094, 8, 144, 1, 144, 3, 144, 2097, 8, 144, 1, 144, 3, 144, 2100, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2106, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 2112, 8, 144, 1, 145, 3, 145, 2115, 8, 145, 1, 145, 1, 145, 3, 145, 2119, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 2125, 8, 145, 10, 145, 12, 145, 2128, 9, 145, 1, 145, 3, 145, 2131, 8, 145, 5, 145, 2133, 8, 145, 10, 145, 12, 145, 2136, 9, 145, 1, 145, 1, 145, 3, 145, 2140, 8, 145, 1, 145, 1, 145, 3, 145, 2144, 8, 145, 1, 146, 5, 146, 2147, 8, 146, 10, 146, 12, 146, 2150, 9, 146, 1, 146, 1, 146, 3, 146, 2154, 8, 146, 1, 146, 1, 146, 3, 146, 2158, 8, 146, 1, 147, 1, 147, 1, 148, 1, 148, 1, 149, 1, 149, 3, 149, 2166, 8, 149, 1, 150, 1, 150, 1, 150, 3, 150, 2171, 8, 150, 1, 151, 1, 151, 3, 151, 2175, 8, 151, 1, 152, 1, 152, 1, 152, 4, 152, 2180, 8, 152, 11, 152, 12, 152, 2181, 1, 153, 1, 153, 1, 153, 3, 153, 2187, 8, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 3, 155, 2195, 8, 155, 1, 155, 1, 155, 3, 155, 2199, 8, 155, 1, 156, 3, 156, 2202, 8, 156, 1, 156, 1, 156, 3, 156, 2206, 8, 156, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 4, 158, 2213, 8, 158, 11, 158, 12, 158, 2214, 1, 158, 3, 158, 2218, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 5, 160, 2227, 8, 160, 10, 160, 12, 160, 2230, 9, 160, 1, 161, 1, 161, 1, 161, 3, 161, 2235, 8, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2253, 8, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2258, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2263, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 2270, 8, 169, 3, 169, 2272, 8, 169, 1, 170, 1, 170, 1, 170, 3, 170, 2277, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2284, 8, 170, 3, 170, 2286, 8, 170, 1, 171, 1, 171, 1, 171, 3, 171, 2291, 8, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2298, 8, 171, 3, 171, 2300, 8, 171, 1, 172, 1, 172, 1, 172, 3, 172, 2305, 8, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2312, 8, 172, 3, 172, 2314, 8, 172, 1, 173, 1, 173, 1, 173, 5, 173, 2319, 8, 173, 10, 173, 12, 173, 2322, 9, 173, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 5, 177, 2338, 8, 177, 10, 177, 12, 177, 2341, 9, 177, 1, 177, 1, 177, 1, 178, 1, 178, 3, 178, 2347, 8, 178, 1, 178, 3, 178, 2350, 8, 178, 1, 179, 1, 179, 1, 179, 3, 179, 2355, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2361, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2369, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 3, 182, 2385, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 3, 183, 2394, 8, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2404, 8, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2411, 8, 186, 1, 186, 3, 186, 2414, 8, 186, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 189, 1, 189, 1, 190, 1, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 195, 1, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 2320, 5, 160, 180, 262, 270, 274, 199, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 0, 47, 2, 0, 109, 109, 451, 451, 3, 0, 45, 45, 128, 128, 189, 189, 4, 0, 42, 42, 90, 90, 423, 423, 465, 465, 2, 0, 442, 442, 448, 448, 2, 0, 151, 151, 170, 170, 2, 0, 438, 438, 490, 490, 2, 0, 483, 486, 488, 488, 3, 0, 32, 32, 91, 91, 245, 245, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 345, 345, 361, 361, 379, 379, 382, 382, 388, 388, 417, 418, 2, 0, 434, 434, 436, 436, 4, 0, 101, 102, 115, 115, 144, 144, 247, 247, 2, 0, 13, 13, 232, 232, 2, 0, 456, 456, 463, 463, 3, 0, 5, 5, 271, 271, 445, 445, 3, 0, 267, 267, 456, 456, 463, 463, 3, 0, 426, 426, 459, 459, 478, 478, 3, 0, 331, 331, 466, 466, 482, 482, 2, 0, 441, 441, 491, 491, 2, 0, 183, 183, 266, 266, 3, 0, 130, 130, 180, 180, 403, 403, 4, 0, 152, 152, 174, 174, 202, 202, 318, 318, 3, 0, 446, 446, 460, 460, 500, 500, 4, 0, 251, 251, 447, 447, 495, 497, 499, 499, 2, 0, 74, 74, 321, 321, 3, 0, 460, 460, 493, 493, 500, 500, 2, 0, 440, 440, 451, 451, 2, 0, 458, 458, 468, 468, 4, 0, 140, 140, 245, 245, 398, 398, 405, 405, 2, 0, 19, 19, 370, 370, 2, 0, 5, 5, 11, 11, 2, 0, 510, 510, 530, 531, 4, 0, 453, 453, 528, 528, 532, 532, 535, 535, 2, 0, 530, 531, 533, 533, 1, 0, 530, 531, 1, 0, 539, 540, 2, 0, 539, 539, 542, 542, 4, 0, 453, 453, 528, 528, 530, 532, 534, 535, 3, 0, 242, 242, 509, 510, 530, 531, 2, 0, 140, 140, 398, 398, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 437, 437, 471, 471, 473, 473, 489, 489, 503, 503, 15, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 428, 428, 437, 437, 443, 443, 449, 450, 455, 455, 461, 461, 471, 476, 489, 489, 492, 492, 503, 504, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 201, 201, 208, 209, 390, 390, 414, 414, 528, 528, 3, 0, 78, 78, 84, 85, 208, 209, 2, 0, 91, 91, 379, 380, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 187, 188, 190, 195, 198, 198, 200, 200, 202, 202, 206, 206, 210, 210, 215, 215, 221, 221, 223, 224, 230, 230, 244, 244, 246, 246, 265, 265, 277, 277, 282, 282, 284, 284, 294, 294, 318, 318, 322, 324, 335, 335, 358, 359, 365, 365, 368, 368, 381, 381, 396, 396, 399, 400, 409, 409, 420, 421, 437, 437, 470, 470, 489, 489, 503, 503, 1, 0, 438, 505, 2674, 0, 401, 1, 0, 0, 0, 2, 411, 1, 0, 0, 0, 4, 425, 1, 0, 0, 0, 6, 427, 1, 0, 0, 0, 8, 443, 1, 0, 0, 0, 10, 447, 1, 0, 0, 0, 12, 449, 1, 0, 0, 0, 14, 452, 1, 0, 0, 0, 16, 463, 1, 0, 0, 0, 18, 471, 1, 0, 0, 0, 20, 479, 1, 0, 0, 0, 22, 481, 1, 0, 0, 0, 24, 533, 1, 0, 0, 0, 26, 535, 1, 0, 0, 0, 28, 542, 1, 0, 0, 0, 30, 546, 1, 0, 0, 0, 32, 550, 1, 0, 0, 0, 34, 554, 1, 0, 0, 0, 36, 608, 1, 0, 0, 0, 38, 614, 1, 0, 0, 0, 40, 620, 1, 0, 0, 0, 42, 622, 1, 0, 0, 0, 44, 664, 1, 0, 0, 0, 46, 678, 1, 0, 0, 0, 48, 680, 1, 0, 0, 0, 50, 691, 1, 0, 0, 0, 52, 695, 1, 0, 0, 0, 54, 697, 1, 0, 0, 0, 56, 699, 1, 0, 0, 0, 58, 747, 1, 0, 0, 0, 60, 749, 1, 0, 0, 0, 62, 753, 1, 0, 0, 0, 64, 761, 1, 0, 0, 0, 66, 769, 1, 0, 0, 0, 68, 773, 1, 0, 0, 0, 70, 808, 1, 0, 0, 0, 72, 824, 1, 0, 0, 0, 74, 826, 1, 0, 0, 0, 76, 836, 1, 0, 0, 0, 78, 838, 1, 0, 0, 0, 80, 845, 1, 0, 0, 0, 82, 847, 1, 0, 0, 0, 84, 855, 1, 0, 0, 0, 86, 863, 1, 0, 0, 0, 88, 865, 1, 0, 0, 0, 90, 869, 1, 0, 0, 0, 92, 873, 1, 0, 0, 0, 94, 896, 1, 0, 0, 0, 96, 900, 1, 0, 0, 0, 98, 902, 1, 0, 0, 0, 100, 918, 1, 0, 0, 0, 102, 920, 1, 0, 0, 0, 104, 925, 1, 0, 0, 0, 106, 937, 1, 0, 0, 0, 108, 956, 1, 0, 0, 0, 110, 976, 1, 0, 0, 0, 112, 987, 1, 0, 0, 0, 114, 989, 1, 0, 0, 0, 116, 1002, 1, 0, 0, 0, 118, 1009, 1, 0, 0, 0, 120, 1012, 1, 0, 0, 0, 122, 1021, 1, 0, 0, 0, 124, 1025, 1, 0, 0, 0, 126, 1029, 1, 0, 0, 0, 128, 1032, 1, 0, 0, 0, 130, 1040, 1, 0, 0, 0, 132, 1045, 1, 0, 0, 0, 134, 1062, 1, 0, 0, 0, 136, 1069, 1, 0, 0, 0, 138, 1079, 1, 0, 0, 0, 140, 1088, 1, 0, 0, 0, 142, 1098, 1, 0, 0, 0, 144, 1117, 1, 0, 0, 0, 146, 1119, 1, 0, 0, 0, 148, 1132, 1, 0, 0, 0, 150, 1135, 1, 0, 0, 0, 152, 1144, 1, 0, 0, 0, 154, 1157, 1, 0, 0, 0, 156, 1159, 1, 0, 0, 0, 158, 1172, 1, 0, 0, 0, 160, 1207, 1, 0, 0, 0, 162, 1226, 1, 0, 0, 0, 164, 1235, 1, 0, 0, 0, 166, 1244, 1, 0, 0, 0, 168, 1263, 1, 0, 0, 0, 170, 1285, 1, 0, 0, 0, 172, 1287, 1, 0, 0, 0, 174, 1317, 1, 0, 0, 0, 176, 1331, 1, 0, 0, 0, 178, 1333, 1, 0, 0, 0, 180, 1347, 1, 0, 0, 0, 182, 1373, 1, 0, 0, 0, 184, 1406, 1, 0, 0, 0, 186, 1408, 1, 0, 0, 0, 188, 1414, 1, 0, 0, 0, 190, 1416, 1, 0, 0, 0, 192, 1421, 1, 0, 0, 0, 194, 1426, 1, 0, 0, 0, 196, 1438, 1, 0, 0, 0, 198, 1455, 1, 0, 0, 0, 200, 1457, 1, 0, 0, 0, 202, 1459, 1, 0, 0, 0, 204, 1468, 1, 0, 0, 0, 206, 1470, 1, 0, 0, 0, 208, 1473, 1, 0, 0, 0, 210, 1523, 1, 0, 0, 0, 212, 1525, 1, 0, 0, 0, 214, 1528, 1, 0, 0, 0, 216, 1530, 1, 0, 0, 0, 218, 1537, 1, 0, 0, 0, 220, 1539, 1, 0, 0, 0, 222, 1541, 1, 0, 0, 0, 224, 1544, 1, 0, 0, 0, 226, 1553, 1, 0, 0, 0, 228, 1558, 1, 0, 0, 0, 230, 1572, 1, 0, 0, 0, 232, 1600, 1, 0, 0, 0, 234, 1610, 1, 0, 0, 0, 236, 1618, 1, 0, 0, 0, 238, 1623, 1, 0, 0, 0, 240, 1655, 1, 0, 0, 0, 242, 1657, 1, 0, 0, 0, 244, 1666, 1, 0, 0, 0, 246, 1677, 1, 0, 0, 0, 248, 1689, 1, 0, 0, 0, 250, 1715, 1, 0, 0, 0, 252, 1717, 1, 0, 0, 0, 254, 1735, 1, 0, 0, 0, 256, 1737, 1, 0, 0, 0, 258, 1742, 1, 0, 0, 0, 260, 1745, 1, 0, 0, 0, 262, 1759, 1, 0, 0, 0, 264, 1852, 1, 0, 0, 0, 266, 1862, 1, 0, 0, 0, 268, 1893, 1, 0, 0, 0, 270, 1899, 1, 0, 0, 0, 272, 1944, 1, 0, 0, 0, 274, 2021, 1, 0, 0, 0, 276, 2033, 1, 0, 0, 0, 278, 2039, 1, 0, 0, 0, 280, 2045, 1, 0, 0, 0, 282, 2049, 1, 0, 0, 0, 284, 2059, 1, 0, 0, 0, 286, 2061, 1, 0, 0, 0, 288, 2087, 1, 0, 0, 0, 290, 2134, 1, 0, 0, 0, 292, 2148, 1, 0, 0, 0, 294, 2159, 1, 0, 0, 0, 296, 2161, 1, 0, 0, 0, 298, 2165, 1, 0, 0, 0, 300, 2167, 1, 0, 0, 0, 302, 2172, 1, 0, 0, 0, 304, 2179, 1, 0, 0, 0, 306, 2183, 1, 0, 0, 0, 308, 2188, 1, 0, 0, 0, 310, 2198, 1, 0, 0, 0, 312, 2201, 1, 0, 0, 0, 314, 2207, 1, 0, 0, 0, 316, 2217, 1, 0, 0, 0, 318, 2219, 1, 0, 0, 0, 320, 2223, 1, 0, 0, 0, 322, 2234, 1, 0, 0, 0, 324, 2236, 1, 0, 0, 0, 326, 2238, 1, 0, 0, 0, 328, 2240, 1, 0, 0, 0, 330, 2245, 1, 0, 0, 0, 332, 2247, 1, 0, 0, 0, 334, 2249, 1, 0, 0, 0, 336, 2254, 1, 0, 0, 0, 338, 2271, 1, 0, 0, 0, 340, 2285, 1, 0, 0, 0, 342, 2299, 1, 0, 0, 0, 344, 2313, 1, 0, 0, 0, 346, 2315, 1, 0, 0, 0, 348, 2323, 1, 0, 0, 0, 350, 2326, 1, 0, 0, 0, 352, 2330, 1, 0, 0, 0, 354, 2333, 1, 0, 0, 0, 356, 2344, 1, 0, 0, 0, 358, 2354, 1, 0, 0, 0, 360, 2360, 1, 0, 0, 0, 362, 2368, 1, 0, 0, 0, 364, 2384, 1, 0, 0, 0, 366, 2393, 1, 0, 0, 0, 368, 2395, 1, 0, 0, 0, 370, 2397, 1, 0, 0, 0, 372, 2413, 1, 0, 0, 0, 374, 2415, 1, 0, 0, 0, 376, 2418, 1, 0, 0, 0, 378, 2420, 1, 0, 0, 0, 380, 2422, 1, 0, 0, 0, 382, 2424, 1, 0, 0, 0, 384, 2426, 1, 0, 0, 0, 386, 2428, 1, 0, 0, 0, 388, 2430, 1, 0, 0, 0, 390, 2432, 1, 0, 0, 0, 392, 2434, 1, 0, 0, 0, 394, 2436, 1, 0, 0, 0, 396, 2438, 1, 0, 0, 0, 398, 400, 3, 2, 1, 0, 399, 398, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 404, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 405, 5, 0, 0, 1, 405, 1, 1, 0, 0, 0, 406, 408, 3, 4, 2, 0, 407, 409, 5, 522, 0, 0, 408, 407, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 412, 1, 0, 0, 0, 410, 412, 3, 6, 3, 0, 411, 406, 1, 0, 0, 0, 411, 410, 1, 0, 0, 0, 412, 3, 1, 0, 0, 0, 413, 426, 3, 8, 4, 0, 414, 426, 3, 10, 5, 0, 415, 426, 3, 12, 6, 0, 416, 426, 3, 14, 7, 0, 417, 426, 3, 20, 10, 0, 418, 426, 3, 24, 12, 0, 419, 426, 3, 26, 13, 0, 420, 426, 3, 28, 14, 0, 421, 426, 3, 30, 15, 0, 422, 426, 3, 32, 16, 0, 423, 426, 3, 34, 17, 0, 424, 426, 3, 36, 18, 0, 425, 413, 1, 0, 0, 0, 425, 414, 1, 0, 0, 0, 425, 415, 1, 0, 0, 0, 425, 416, 1, 0, 0, 0, 425, 417, 1, 0, 0, 0, 425, 418, 1, 0, 0, 0, 425, 419, 1, 0, 0, 0, 425, 420, 1, 0, 0, 0, 425, 421, 1, 0, 0, 0, 425, 422, 1, 0, 0, 0, 425, 423, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 5, 1, 0, 0, 0, 427, 428, 5, 522, 0, 0, 428, 7, 1, 0, 0, 0, 429, 444, 3, 40, 20, 0, 430, 444, 3, 104, 52, 0, 431, 444, 3, 106, 53, 0, 432, 444, 3, 108, 54, 0, 433, 444, 3, 102, 51, 0, 434, 444, 3, 114, 57, 0, 435, 444, 3, 128, 64, 0, 436, 444, 3, 130, 65, 0, 437, 444, 3, 132, 66, 0, 438, 444, 3, 134, 67, 0, 439, 444, 3, 136, 68, 0, 440, 444, 3, 138, 69, 0, 441, 444, 3, 140, 70, 0, 442, 444, 3, 142, 71, 0, 443, 429, 1, 0, 0, 0, 443, 430, 1, 0, 0, 0, 443, 431, 1, 0, 0, 0, 443, 432, 1, 0, 0, 0, 443, 433, 1, 0, 0, 0, 443, 434, 1, 0, 0, 0, 443, 435, 1, 0, 0, 0, 443, 436, 1, 0, 0, 0, 443, 437, 1, 0, 0, 0, 443, 438, 1, 0, 0, 0, 443, 439, 1, 0, 0, 0, 443, 440, 1, 0, 0, 0, 443, 441, 1, 0, 0, 0, 443, 442, 1, 0, 0, 0, 444, 9, 1, 0, 0, 0, 445, 448, 3, 160, 80, 0, 446, 448, 3, 144, 72, 0, 447, 445, 1, 0, 0, 0, 447, 446, 1, 0, 0, 0, 448, 11, 1, 0, 0, 0, 449, 450, 7, 0, 0, 0, 450, 451, 3, 340, 170, 0, 451, 13, 1, 0, 0, 0, 452, 456, 5, 135, 0, 0, 453, 457, 3, 16, 8, 0, 454, 455, 5, 480, 0, 0, 455, 457, 5, 146, 0, 0, 456, 453, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 461, 1, 0, 0, 0, 458, 462, 3, 10, 5, 0, 459, 462, 3, 146, 73, 0, 460, 462, 3, 158, 79, 0, 461, 458, 1, 0, 0, 0, 461, 459, 1, 0, 0, 0, 461, 460, 1, 0, 0, 0, 462, 15, 1, 0, 0, 0, 463, 468, 3, 18, 9, 0, 464, 465, 5, 521, 0, 0, 465, 467, 3, 18, 9, 0, 466, 464, 1, 0, 0, 0, 467, 470, 1, 0, 0, 0, 468, 466, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 17, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 471, 472, 7, 1, 0, 0, 472, 19, 1, 0, 0, 0, 473, 474, 5, 411, 0, 0, 474, 475, 5, 442, 0, 0, 475, 480, 3, 330, 165, 0, 476, 477, 5, 411, 0, 0, 477, 480, 3, 334, 167, 0, 478, 480, 3, 22, 11, 0, 479, 473, 1, 0, 0, 0, 479, 476, 1, 0, 0, 0, 479, 478, 1, 0, 0, 0, 480, 21, 1, 0, 0, 0, 481, 482, 5, 411, 0, 0, 482, 483, 5, 228, 0, 0, 483, 488, 3, 346, 173, 0, 484, 485, 5, 521, 0, 0, 485, 487, 3, 346, 173, 0, 486, 484, 1, 0, 0, 0, 487, 490, 1, 0, 0, 0, 488, 486, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 23, 1, 0, 0, 0, 490, 488, 1, 0, 0, 0, 491, 492, 5, 342, 0, 0, 492, 534, 7, 2, 0, 0, 493, 494, 5, 342, 0, 0, 494, 495, 5, 76, 0, 0, 495, 534, 7, 3, 0, 0, 496, 497, 5, 342, 0, 0, 497, 500, 5, 375, 0, 0, 498, 499, 7, 4, 0, 0, 499, 501, 3, 334, 167, 0, 500, 498, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 503, 1, 0, 0, 0, 502, 504, 3, 268, 134, 0, 503, 502, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 534, 1, 0, 0, 0, 505, 506, 5, 342, 0, 0, 506, 507, 5, 58, 0, 0, 507, 510, 7, 4, 0, 0, 508, 511, 3, 342, 171, 0, 509, 511, 3, 340, 170, 0, 510, 508, 1, 0, 0, 0, 510, 509, 1, 0, 0, 0, 511, 513, 1, 0, 0, 0, 512, 514, 3, 268, 134, 0, 513, 512, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 534, 1, 0, 0, 0, 515, 516, 5, 342, 0, 0, 516, 521, 5, 72, 0, 0, 517, 518, 5, 374, 0, 0, 518, 522, 3, 340, 170, 0, 519, 520, 5, 502, 0, 0, 520, 522, 3, 342, 171, 0, 521, 517, 1, 0, 0, 0, 521, 519, 1, 0, 0, 0, 522, 534, 1, 0, 0, 0, 523, 525, 5, 342, 0, 0, 524, 526, 5, 412, 0, 0, 525, 524, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 534, 5, 154, 0, 0, 528, 530, 5, 342, 0, 0, 529, 531, 5, 152, 0, 0, 530, 529, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 534, 5, 228, 0, 0, 533, 491, 1, 0, 0, 0, 533, 493, 1, 0, 0, 0, 533, 496, 1, 0, 0, 0, 533, 505, 1, 0, 0, 0, 533, 515, 1, 0, 0, 0, 533, 523, 1, 0, 0, 0, 533, 528, 1, 0, 0, 0, 534, 25, 1, 0, 0, 0, 535, 536, 5, 469, 0, 0, 536, 537, 5, 227, 0, 0, 537, 540, 3, 346, 173, 0, 538, 539, 5, 434, 0, 0, 539, 541, 3, 354, 177, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 27, 1, 0, 0, 0, 542, 543, 5, 501, 0, 0, 543, 544, 5, 227, 0, 0, 544, 545, 3, 346, 173, 0, 545, 29, 1, 0, 0, 0, 546, 548, 5, 341, 0, 0, 547, 549, 3, 356, 178, 0, 548, 547, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 31, 1, 0, 0, 0, 550, 552, 5, 313, 0, 0, 551, 553, 3, 358, 179, 0, 552, 551, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 33, 1, 0, 0, 0, 554, 555, 7, 5, 0, 0, 555, 556, 5, 464, 0, 0, 556, 557, 3, 112, 56, 0, 557, 35, 1, 0, 0, 0, 558, 559, 5, 438, 0, 0, 559, 560, 5, 464, 0, 0, 560, 561, 5, 434, 0, 0, 561, 564, 3, 38, 19, 0, 562, 563, 5, 17, 0, 0, 563, 565, 3, 346, 173, 0, 564, 562, 1, 0, 0, 0, 564, 565, 1, 0, 0, 0, 565, 609, 1, 0, 0, 0, 566, 567, 5, 438, 0, 0, 567, 568, 5, 457, 0, 0, 568, 569, 5, 434, 0, 0, 569, 572, 3, 38, 19, 0, 570, 571, 5, 17, 0, 0, 571, 573, 3, 346, 173, 0, 572, 570, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 576, 1, 0, 0, 0, 574, 575, 5, 312, 0, 0, 575, 577, 3, 346, 173, 0, 576, 574, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 609, 1, 0, 0, 0, 578, 579, 5, 438, 0, 0, 579, 580, 7, 6, 0, 0, 580, 581, 5, 434, 0, 0, 581, 582, 3, 38, 19, 0, 582, 583, 5, 312, 0, 0, 583, 584, 3, 346, 173, 0, 584, 609, 1, 0, 0, 0, 585, 586, 5, 438, 0, 0, 586, 587, 5, 487, 0, 0, 587, 609, 3, 38, 19, 0, 588, 589, 5, 438, 0, 0, 589, 590, 5, 454, 0, 0, 590, 591, 5, 457, 0, 0, 591, 592, 5, 434, 0, 0, 592, 593, 3, 38, 19, 0, 593, 594, 5, 312, 0, 0, 594, 595, 3, 346, 173, 0, 595, 596, 5, 467, 0, 0, 596, 597, 3, 346, 173, 0, 597, 609, 1, 0, 0, 0, 598, 599, 5, 438, 0, 0, 599, 600, 5, 444, 0, 0, 600, 601, 5, 457, 0, 0, 601, 602, 5, 434, 0, 0, 602, 603, 3, 38, 19, 0, 603, 604, 5, 146, 0, 0, 604, 605, 3, 346, 173, 0, 605, 606, 5, 17, 0, 0, 606, 607, 3, 346, 173, 0, 607, 609, 1, 0, 0, 0, 608, 558, 1, 0, 0, 0, 608, 566, 1, 0, 0, 0, 608, 578, 1, 0, 0, 0, 608, 585, 1, 0, 0, 0, 608, 588, 1, 0, 0, 0, 608, 598, 1, 0, 0, 0, 609, 37, 1, 0, 0, 0, 610, 612, 5, 535, 0, 0, 611, 610, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 615, 3, 346, 173, 0, 614, 611, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 614, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 39, 1, 0, 0, 0, 618, 621, 3, 42, 21, 0, 619, 621, 3, 44, 22, 0, 620, 618, 1, 0, 0, 0, 620, 619, 1, 0, 0, 0, 621, 41, 1, 0, 0, 0, 622, 624, 5, 72, 0, 0, 623, 625, 5, 498, 0, 0, 624, 623, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 628, 5, 374, 0, 0, 627, 629, 3, 350, 175, 0, 628, 627, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 631, 3, 338, 169, 0, 631, 632, 5, 517, 0, 0, 632, 637, 3, 46, 23, 0, 633, 634, 5, 521, 0, 0, 634, 636, 3, 46, 23, 0, 635, 633, 1, 0, 0, 0, 636, 639, 1, 0, 0, 0, 637, 635, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 642, 1, 0, 0, 0, 639, 637, 1, 0, 0, 0, 640, 641, 5, 521, 0, 0, 641, 643, 3, 82, 41, 0, 642, 640, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 645, 5, 521, 0, 0, 645, 647, 3, 84, 42, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 650, 1, 0, 0, 0, 648, 649, 5, 521, 0, 0, 649, 651, 3, 88, 44, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 655, 5, 518, 0, 0, 653, 654, 5, 59, 0, 0, 654, 656, 5, 538, 0, 0, 655, 653, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 658, 1, 0, 0, 0, 657, 659, 3, 90, 45, 0, 658, 657, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 662, 3, 348, 174, 0, 661, 663, 3, 98, 49, 0, 662, 661, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 43, 1, 0, 0, 0, 664, 665, 5, 72, 0, 0, 665, 667, 5, 374, 0, 0, 666, 668, 3, 350, 175, 0, 667, 666, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 670, 3, 338, 169, 0, 670, 673, 3, 348, 174, 0, 671, 672, 5, 17, 0, 0, 672, 674, 3, 160, 80, 0, 673, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 45, 1, 0, 0, 0, 675, 679, 3, 48, 24, 0, 676, 679, 3, 74, 37, 0, 677, 679, 3, 78, 39, 0, 678, 675, 1, 0, 0, 0, 678, 676, 1, 0, 0, 0, 678, 677, 1, 0, 0, 0, 679, 47, 1, 0, 0, 0, 680, 681, 3, 50, 25, 0, 681, 683, 3, 58, 29, 0, 682, 684, 3, 72, 36, 0, 683, 682, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 687, 1, 0, 0, 0, 685, 686, 5, 59, 0, 0, 686, 688, 5, 538, 0, 0, 687, 685, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 49, 1, 0, 0, 0, 689, 692, 3, 346, 173, 0, 690, 692, 3, 260, 130, 0, 691, 689, 1, 0, 0, 0, 691, 690, 1, 0, 0, 0, 692, 51, 1, 0, 0, 0, 693, 696, 3, 346, 173, 0, 694, 696, 4, 26, 0, 0, 695, 693, 1, 0, 0, 0, 695, 694, 1, 0, 0, 0, 696, 53, 1, 0, 0, 0, 697, 698, 3, 346, 173, 0, 698, 55, 1, 0, 0, 0, 699, 700, 5, 517, 0, 0, 700, 705, 3, 52, 26, 0, 701, 702, 5, 521, 0, 0, 702, 704, 3, 52, 26, 0, 703, 701, 1, 0, 0, 0, 704, 707, 1, 0, 0, 0, 705, 703, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 708, 1, 0, 0, 0, 707, 705, 1, 0, 0, 0, 708, 709, 5, 518, 0, 0, 709, 57, 1, 0, 0, 0, 710, 748, 7, 7, 0, 0, 711, 713, 7, 8, 0, 0, 712, 714, 3, 60, 30, 0, 713, 712, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 748, 1, 0, 0, 0, 715, 717, 5, 380, 0, 0, 716, 718, 3, 60, 30, 0, 717, 716, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 725, 1, 0, 0, 0, 719, 721, 7, 9, 0, 0, 720, 722, 5, 207, 0, 0, 721, 720, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 724, 5, 379, 0, 0, 724, 726, 5, 505, 0, 0, 725, 719, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 748, 1, 0, 0, 0, 727, 729, 7, 10, 0, 0, 728, 730, 3, 62, 31, 0, 729, 728, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 748, 1, 0, 0, 0, 731, 733, 7, 11, 0, 0, 732, 734, 3, 66, 33, 0, 733, 732, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 748, 1, 0, 0, 0, 735, 737, 5, 470, 0, 0, 736, 738, 3, 68, 34, 0, 737, 736, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 748, 1, 0, 0, 0, 739, 741, 5, 322, 0, 0, 740, 742, 3, 70, 35, 0, 741, 740, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 748, 1, 0, 0, 0, 743, 745, 5, 295, 0, 0, 744, 746, 3, 64, 32, 0, 745, 744, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 748, 1, 0, 0, 0, 747, 710, 1, 0, 0, 0, 747, 711, 1, 0, 0, 0, 747, 715, 1, 0, 0, 0, 747, 727, 1, 0, 0, 0, 747, 731, 1, 0, 0, 0, 747, 735, 1, 0, 0, 0, 747, 739, 1, 0, 0, 0, 747, 743, 1, 0, 0, 0, 748, 59, 1, 0, 0, 0, 749, 750, 5, 517, 0, 0, 750, 751, 3, 378, 189, 0, 751, 752, 5, 518, 0, 0, 752, 61, 1, 0, 0, 0, 753, 754, 5, 517, 0, 0, 754, 757, 3, 378, 189, 0, 755, 756, 5, 521, 0, 0, 756, 758, 3, 378, 189, 0, 757, 755, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 5, 518, 0, 0, 760, 63, 1, 0, 0, 0, 761, 762, 5, 517, 0, 0, 762, 765, 3, 376, 188, 0, 763, 764, 5, 521, 0, 0, 764, 766, 3, 376, 188, 0, 765, 763, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 5, 518, 0, 0, 768, 65, 1, 0, 0, 0, 769, 770, 5, 508, 0, 0, 770, 771, 3, 58, 29, 0, 771, 772, 5, 507, 0, 0, 772, 67, 1, 0, 0, 0, 773, 774, 5, 508, 0, 0, 774, 775, 3, 58, 29, 0, 775, 776, 5, 521, 0, 0, 776, 777, 3, 58, 29, 0, 777, 778, 1, 0, 0, 0, 778, 779, 5, 507, 0, 0, 779, 69, 1, 0, 0, 0, 780, 781, 5, 508, 0, 0, 781, 782, 3, 52, 26, 0, 782, 789, 3, 58, 29, 0, 783, 784, 5, 521, 0, 0, 784, 785, 3, 52, 26, 0, 785, 786, 3, 58, 29, 0, 786, 788, 1, 0, 0, 0, 787, 783, 1, 0, 0, 0, 788, 791, 1, 0, 0, 0, 789, 787, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 792, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 792, 793, 5, 507, 0, 0, 793, 809, 1, 0, 0, 0, 794, 795, 5, 517, 0, 0, 795, 796, 3, 52, 26, 0, 796, 803, 3, 58, 29, 0, 797, 798, 5, 521, 0, 0, 798, 799, 3, 52, 26, 0, 799, 800, 3, 58, 29, 0, 800, 802, 1, 0, 0, 0, 801, 797, 1, 0, 0, 0, 802, 805, 1, 0, 0, 0, 803, 801, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 806, 1, 0, 0, 0, 805, 803, 1, 0, 0, 0, 806, 807, 5, 518, 0, 0, 807, 809, 1, 0, 0, 0, 808, 780, 1, 0, 0, 0, 808, 794, 1, 0, 0, 0, 809, 71, 1, 0, 0, 0, 810, 811, 5, 64, 0, 0, 811, 813, 3, 86, 43, 0, 812, 810, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 814, 1, 0, 0, 0, 814, 815, 5, 289, 0, 0, 815, 818, 5, 467, 0, 0, 816, 817, 5, 242, 0, 0, 817, 819, 5, 125, 0, 0, 818, 816, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 825, 1, 0, 0, 0, 820, 822, 5, 242, 0, 0, 821, 820, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 825, 5, 245, 0, 0, 824, 812, 1, 0, 0, 0, 824, 821, 1, 0, 0, 0, 825, 73, 1, 0, 0, 0, 826, 827, 3, 50, 25, 0, 827, 828, 3, 58, 29, 0, 828, 831, 5, 219, 0, 0, 829, 830, 5, 151, 0, 0, 830, 832, 3, 76, 38, 0, 831, 829, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 834, 1, 0, 0, 0, 833, 835, 5, 424, 0, 0, 834, 833, 1, 0, 0, 0, 834, 835, 1, 0, 0, 0, 835, 75, 1, 0, 0, 0, 836, 837, 5, 538, 0, 0, 837, 77, 1, 0, 0, 0, 838, 839, 3, 50, 25, 0, 839, 840, 5, 17, 0, 0, 840, 843, 3, 80, 40, 0, 841, 842, 5, 59, 0, 0, 842, 844, 5, 538, 0, 0, 843, 841, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 79, 1, 0, 0, 0, 845, 846, 3, 260, 130, 0, 846, 81, 1, 0, 0, 0, 847, 848, 5, 425, 0, 0, 848, 849, 5, 146, 0, 0, 849, 850, 3, 52, 26, 0, 850, 851, 5, 17, 0, 0, 851, 852, 3, 260, 130, 0, 852, 83, 1, 0, 0, 0, 853, 854, 5, 64, 0, 0, 854, 856, 3, 86, 43, 0, 855, 853, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 858, 5, 289, 0, 0, 858, 859, 5, 467, 0, 0, 859, 860, 3, 56, 28, 0, 860, 861, 5, 242, 0, 0, 861, 862, 5, 125, 0, 0, 862, 85, 1, 0, 0, 0, 863, 864, 3, 322, 161, 0, 864, 87, 1, 0, 0, 0, 865, 866, 5, 278, 0, 0, 866, 867, 5, 146, 0, 0, 867, 868, 5, 372, 0, 0, 868, 89, 1, 0, 0, 0, 869, 870, 5, 270, 0, 0, 870, 871, 5, 34, 0, 0, 871, 872, 3, 92, 46, 0, 872, 91, 1, 0, 0, 0, 873, 874, 5, 517, 0, 0, 874, 879, 3, 94, 47, 0, 875, 876, 5, 521, 0, 0, 876, 878, 3, 94, 47, 0, 877, 875, 1, 0, 0, 0, 878, 881, 1, 0, 0, 0, 879, 877, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 882, 1, 0, 0, 0, 881, 879, 1, 0, 0, 0, 882, 883, 5, 518, 0, 0, 883, 93, 1, 0, 0, 0, 884, 897, 3, 52, 26, 0, 885, 886, 5, 517, 0, 0, 886, 891, 3, 96, 48, 0, 887, 888, 5, 521, 0, 0, 888, 890, 3, 96, 48, 0, 889, 887, 1, 0, 0, 0, 890, 893, 1, 0, 0, 0, 891, 889, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 894, 1, 0, 0, 0, 893, 891, 1, 0, 0, 0, 894, 895, 5, 518, 0, 0, 895, 897, 1, 0, 0, 0, 896, 884, 1, 0, 0, 0, 896, 885, 1, 0, 0, 0, 897, 95, 1, 0, 0, 0, 898, 901, 3, 298, 149, 0, 899, 901, 3, 372, 186, 0, 900, 898, 1, 0, 0, 0, 900, 899, 1, 0, 0, 0, 901, 97, 1, 0, 0, 0, 902, 903, 5, 203, 0, 0, 903, 912, 3, 340, 170, 0, 904, 908, 5, 517, 0, 0, 905, 907, 3, 100, 50, 0, 906, 905, 1, 0, 0, 0, 907, 910, 1, 0, 0, 0, 908, 906, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 911, 1, 0, 0, 0, 910, 908, 1, 0, 0, 0, 911, 913, 5, 518, 0, 0, 912, 904, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 99, 1, 0, 0, 0, 914, 915, 7, 12, 0, 0, 915, 919, 7, 13, 0, 0, 916, 917, 7, 14, 0, 0, 917, 919, 7, 15, 0, 0, 918, 914, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 919, 101, 1, 0, 0, 0, 920, 921, 5, 72, 0, 0, 921, 922, 5, 442, 0, 0, 922, 923, 3, 332, 166, 0, 923, 924, 3, 348, 174, 0, 924, 103, 1, 0, 0, 0, 925, 926, 5, 72, 0, 0, 926, 928, 5, 448, 0, 0, 927, 929, 3, 350, 175, 0, 928, 927, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 933, 3, 336, 168, 0, 931, 932, 5, 59, 0, 0, 932, 934, 5, 538, 0, 0, 933, 931, 1, 0, 0, 0, 933, 934, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 936, 3, 348, 174, 0, 936, 105, 1, 0, 0, 0, 937, 939, 5, 72, 0, 0, 938, 940, 5, 498, 0, 0, 939, 938, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 943, 5, 502, 0, 0, 942, 944, 3, 350, 175, 0, 943, 942, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 947, 3, 344, 172, 0, 946, 948, 3, 56, 28, 0, 947, 946, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 951, 1, 0, 0, 0, 949, 950, 5, 59, 0, 0, 950, 952, 5, 538, 0, 0, 951, 949, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 954, 5, 17, 0, 0, 954, 955, 3, 160, 80, 0, 955, 107, 1, 0, 0, 0, 956, 960, 5, 72, 0, 0, 957, 961, 5, 498, 0, 0, 958, 959, 5, 498, 0, 0, 959, 961, 5, 371, 0, 0, 960, 957, 1, 0, 0, 0, 960, 958, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 964, 5, 153, 0, 0, 963, 965, 3, 350, 175, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 3, 276, 138, 0, 967, 968, 5, 17, 0, 0, 968, 971, 3, 322, 161, 0, 969, 970, 5, 196, 0, 0, 970, 972, 7, 16, 0, 0, 971, 969, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 974, 1, 0, 0, 0, 973, 975, 3, 110, 55, 0, 974, 973, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 109, 1, 0, 0, 0, 976, 977, 5, 413, 0, 0, 977, 978, 5, 464, 0, 0, 978, 984, 3, 112, 56, 0, 979, 980, 5, 521, 0, 0, 980, 981, 5, 464, 0, 0, 981, 983, 3, 112, 56, 0, 982, 979, 1, 0, 0, 0, 983, 986, 1, 0, 0, 0, 984, 982, 1, 0, 0, 0, 984, 985, 1, 0, 0, 0, 985, 111, 1, 0, 0, 0, 986, 984, 1, 0, 0, 0, 987, 988, 5, 538, 0, 0, 988, 113, 1, 0, 0, 0, 989, 990, 5, 8, 0, 0, 990, 992, 5, 374, 0, 0, 991, 993, 3, 352, 176, 0, 992, 991, 1, 0, 0, 0, 992, 993, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 1000, 3, 340, 170, 0, 995, 1001, 3, 116, 58, 0, 996, 1001, 3, 118, 59, 0, 997, 1001, 3, 120, 60, 0, 998, 1001, 3, 122, 61, 0, 999, 1001, 3, 124, 62, 0, 1000, 995, 1, 0, 0, 0, 1000, 996, 1, 0, 0, 0, 1000, 997, 1, 0, 0, 0, 1000, 998, 1, 0, 0, 0, 1000, 999, 1, 0, 0, 0, 1001, 115, 1, 0, 0, 0, 1002, 1004, 5, 312, 0, 0, 1003, 1005, 3, 346, 173, 0, 1004, 1003, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1007, 5, 389, 0, 0, 1007, 1008, 3, 346, 173, 0, 1008, 117, 1, 0, 0, 0, 1009, 1010, 5, 341, 0, 0, 1010, 1011, 3, 354, 177, 0, 1011, 119, 1, 0, 0, 0, 1012, 1013, 5, 438, 0, 0, 1013, 1014, 5, 64, 0, 0, 1014, 1015, 3, 86, 43, 0, 1015, 1016, 5, 289, 0, 0, 1016, 1017, 5, 467, 0, 0, 1017, 1019, 3, 56, 28, 0, 1018, 1020, 3, 126, 63, 0, 1019, 1018, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 121, 1, 0, 0, 0, 1021, 1022, 5, 116, 0, 0, 1022, 1023, 5, 64, 0, 0, 1023, 1024, 3, 86, 43, 0, 1024, 123, 1, 0, 0, 0, 1025, 1026, 5, 438, 0, 0, 1026, 1027, 5, 404, 0, 0, 1027, 1028, 3, 56, 28, 0, 1028, 125, 1, 0, 0, 0, 1029, 1030, 5, 242, 0, 0, 1030, 1031, 5, 125, 0, 0, 1031, 127, 1, 0, 0, 0, 1032, 1033, 5, 8, 0, 0, 1033, 1034, 5, 502, 0, 0, 1034, 1038, 3, 342, 171, 0, 1035, 1039, 3, 116, 58, 0, 1036, 1037, 5, 17, 0, 0, 1037, 1039, 3, 160, 80, 0, 1038, 1035, 1, 0, 0, 0, 1038, 1036, 1, 0, 0, 0, 1039, 129, 1, 0, 0, 0, 1040, 1041, 5, 8, 0, 0, 1041, 1042, 5, 448, 0, 0, 1042, 1043, 3, 334, 167, 0, 1043, 1044, 3, 118, 59, 0, 1044, 131, 1, 0, 0, 0, 1045, 1049, 5, 8, 0, 0, 1046, 1050, 5, 498, 0, 0, 1047, 1048, 5, 498, 0, 0, 1048, 1050, 5, 371, 0, 0, 1049, 1046, 1, 0, 0, 0, 1049, 1047, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1053, 5, 153, 0, 0, 1052, 1054, 3, 352, 176, 0, 1053, 1052, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1056, 3, 278, 139, 0, 1056, 1057, 5, 17, 0, 0, 1057, 1060, 3, 322, 161, 0, 1058, 1059, 5, 196, 0, 0, 1059, 1061, 7, 16, 0, 0, 1060, 1058, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 133, 1, 0, 0, 0, 1062, 1063, 5, 116, 0, 0, 1063, 1065, 5, 442, 0, 0, 1064, 1066, 3, 352, 176, 0, 1065, 1064, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 3, 330, 165, 0, 1068, 135, 1, 0, 0, 0, 1069, 1071, 5, 116, 0, 0, 1070, 1072, 5, 498, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1075, 5, 374, 0, 0, 1074, 1076, 3, 352, 176, 0, 1075, 1074, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 3, 340, 170, 0, 1078, 137, 1, 0, 0, 0, 1079, 1080, 5, 116, 0, 0, 1080, 1082, 5, 448, 0, 0, 1081, 1083, 3, 352, 176, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1086, 3, 334, 167, 0, 1085, 1087, 7, 17, 0, 0, 1086, 1085, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 139, 1, 0, 0, 0, 1088, 1090, 5, 116, 0, 0, 1089, 1091, 5, 498, 0, 0, 1090, 1089, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1094, 5, 502, 0, 0, 1093, 1095, 3, 352, 176, 0, 1094, 1093, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 3, 342, 171, 0, 1097, 141, 1, 0, 0, 0, 1098, 1102, 5, 116, 0, 0, 1099, 1103, 5, 498, 0, 0, 1100, 1101, 5, 498, 0, 0, 1101, 1103, 5, 371, 0, 0, 1102, 1099, 1, 0, 0, 0, 1102, 1100, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1106, 5, 153, 0, 0, 1105, 1107, 3, 352, 176, 0, 1106, 1105, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 3, 278, 139, 0, 1109, 143, 1, 0, 0, 0, 1110, 1112, 5, 132, 0, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1118, 3, 146, 73, 0, 1114, 1118, 3, 156, 78, 0, 1115, 1116, 5, 132, 0, 0, 1116, 1118, 3, 158, 79, 0, 1117, 1111, 1, 0, 0, 0, 1117, 1114, 1, 0, 0, 0, 1117, 1115, 1, 0, 0, 0, 1118, 145, 1, 0, 0, 0, 1119, 1120, 5, 177, 0, 0, 1120, 1121, 7, 18, 0, 0, 1121, 1130, 3, 340, 170, 0, 1122, 1124, 3, 148, 74, 0, 1123, 1122, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1126, 1, 0, 0, 0, 1125, 1127, 3, 56, 28, 0, 1126, 1125, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1131, 3, 160, 80, 0, 1129, 1131, 3, 150, 75, 0, 1130, 1123, 1, 0, 0, 0, 1130, 1129, 1, 0, 0, 0, 1131, 147, 1, 0, 0, 0, 1132, 1133, 5, 269, 0, 0, 1133, 1134, 3, 354, 177, 0, 1134, 149, 1, 0, 0, 0, 1135, 1136, 5, 415, 0, 0, 1136, 1141, 3, 152, 76, 0, 1137, 1138, 5, 521, 0, 0, 1138, 1140, 3, 152, 76, 0, 1139, 1137, 1, 0, 0, 0, 1140, 1143, 1, 0, 0, 0, 1141, 1139, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 151, 1, 0, 0, 0, 1143, 1141, 1, 0, 0, 0, 1144, 1145, 5, 517, 0, 0, 1145, 1150, 3, 154, 77, 0, 1146, 1147, 5, 521, 0, 0, 1147, 1149, 3, 154, 77, 0, 1148, 1146, 1, 0, 0, 0, 1149, 1152, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1153, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1153, 1154, 5, 518, 0, 0, 1154, 153, 1, 0, 0, 0, 1155, 1158, 3, 372, 186, 0, 1156, 1158, 3, 272, 136, 0, 1157, 1155, 1, 0, 0, 0, 1157, 1156, 1, 0, 0, 0, 1158, 155, 1, 0, 0, 0, 1159, 1160, 5, 24, 0, 0, 1160, 1161, 5, 355, 0, 0, 1161, 1162, 5, 341, 0, 0, 1162, 1166, 5, 522, 0, 0, 1163, 1164, 3, 146, 73, 0, 1164, 1165, 5, 522, 0, 0, 1165, 1167, 1, 0, 0, 0, 1166, 1163, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1166, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 1, 0, 0, 0, 1170, 1171, 5, 122, 0, 0, 1171, 157, 1, 0, 0, 0, 1172, 1173, 5, 355, 0, 0, 1173, 1174, 5, 341, 0, 0, 1174, 1178, 5, 24, 0, 0, 1175, 1176, 3, 146, 73, 0, 1176, 1177, 5, 522, 0, 0, 1177, 1179, 1, 0, 0, 0, 1178, 1175, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1178, 1, 0, 0, 0, 1180, 1181, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1183, 5, 122, 0, 0, 1183, 159, 1, 0, 0, 0, 1184, 1185, 6, 80, -1, 0, 1185, 1208, 3, 162, 81, 0, 1186, 1187, 3, 164, 82, 0, 1187, 1188, 3, 160, 80, 5, 1188, 1208, 1, 0, 0, 0, 1189, 1190, 5, 517, 0, 0, 1190, 1191, 3, 160, 80, 0, 1191, 1192, 5, 518, 0, 0, 1192, 1208, 1, 0, 0, 0, 1193, 1195, 3, 172, 86, 0, 1194, 1196, 3, 232, 116, 0, 1195, 1194, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1198, 1, 0, 0, 0, 1197, 1199, 3, 236, 118, 0, 1198, 1197, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1208, 1, 0, 0, 0, 1200, 1202, 3, 170, 85, 0, 1201, 1203, 3, 232, 116, 0, 1202, 1201, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1205, 1, 0, 0, 0, 1204, 1206, 3, 236, 118, 0, 1205, 1204, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1208, 1, 0, 0, 0, 1207, 1184, 1, 0, 0, 0, 1207, 1186, 1, 0, 0, 0, 1207, 1189, 1, 0, 0, 0, 1207, 1193, 1, 0, 0, 0, 1207, 1200, 1, 0, 0, 0, 1208, 1223, 1, 0, 0, 0, 1209, 1210, 10, 3, 0, 0, 1210, 1212, 7, 19, 0, 0, 1211, 1213, 5, 5, 0, 0, 1212, 1211, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1216, 3, 160, 80, 0, 1215, 1217, 3, 232, 116, 0, 1216, 1215, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1219, 1, 0, 0, 0, 1218, 1220, 3, 236, 118, 0, 1219, 1218, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1222, 1, 0, 0, 0, 1221, 1209, 1, 0, 0, 0, 1222, 1225, 1, 0, 0, 0, 1223, 1221, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 161, 1, 0, 0, 0, 1225, 1223, 1, 0, 0, 0, 1226, 1227, 5, 415, 0, 0, 1227, 1232, 3, 260, 130, 0, 1228, 1229, 5, 521, 0, 0, 1229, 1231, 3, 260, 130, 0, 1230, 1228, 1, 0, 0, 0, 1231, 1234, 1, 0, 0, 0, 1232, 1230, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 163, 1, 0, 0, 0, 1234, 1232, 1, 0, 0, 0, 1235, 1236, 5, 434, 0, 0, 1236, 1241, 3, 166, 83, 0, 1237, 1238, 5, 521, 0, 0, 1238, 1240, 3, 166, 83, 0, 1239, 1237, 1, 0, 0, 0, 1240, 1243, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 165, 1, 0, 0, 0, 1243, 1241, 1, 0, 0, 0, 1244, 1256, 3, 168, 84, 0, 1245, 1246, 5, 517, 0, 0, 1246, 1251, 3, 52, 26, 0, 1247, 1248, 5, 521, 0, 0, 1248, 1250, 3, 52, 26, 0, 1249, 1247, 1, 0, 0, 0, 1250, 1253, 1, 0, 0, 0, 1251, 1249, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1254, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1254, 1255, 5, 518, 0, 0, 1255, 1257, 1, 0, 0, 0, 1256, 1245, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1259, 5, 17, 0, 0, 1259, 1260, 5, 517, 0, 0, 1260, 1261, 3, 160, 80, 0, 1261, 1262, 5, 518, 0, 0, 1262, 167, 1, 0, 0, 0, 1263, 1264, 3, 322, 161, 0, 1264, 169, 1, 0, 0, 0, 1265, 1267, 3, 172, 86, 0, 1266, 1268, 3, 178, 89, 0, 1267, 1266, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1270, 1, 0, 0, 0, 1269, 1271, 3, 206, 103, 0, 1270, 1269, 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1273, 1, 0, 0, 0, 1272, 1274, 3, 208, 104, 0, 1273, 1272, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1277, 3, 222, 111, 0, 1276, 1275, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1279, 1, 0, 0, 0, 1278, 1280, 3, 224, 112, 0, 1279, 1278, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1286, 1, 0, 0, 0, 1281, 1282, 3, 172, 86, 0, 1282, 1283, 3, 178, 89, 0, 1283, 1284, 3, 230, 115, 0, 1284, 1286, 1, 0, 0, 0, 1285, 1265, 1, 0, 0, 0, 1285, 1281, 1, 0, 0, 0, 1286, 171, 1, 0, 0, 0, 1287, 1289, 5, 337, 0, 0, 1288, 1290, 3, 382, 191, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1300, 1, 0, 0, 0, 1291, 1301, 5, 528, 0, 0, 1292, 1297, 3, 174, 87, 0, 1293, 1294, 5, 521, 0, 0, 1294, 1296, 3, 174, 87, 0, 1295, 1293, 1, 0, 0, 0, 1296, 1299, 1, 0, 0, 0, 1297, 1295, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1301, 1, 0, 0, 0, 1299, 1297, 1, 0, 0, 0, 1300, 1291, 1, 0, 0, 0, 1300, 1292, 1, 0, 0, 0, 1301, 173, 1, 0, 0, 0, 1302, 1318, 3, 176, 88, 0, 1303, 1308, 3, 260, 130, 0, 1304, 1306, 5, 17, 0, 0, 1305, 1304, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1309, 3, 52, 26, 0, 1308, 1305, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1318, 1, 0, 0, 0, 1310, 1315, 3, 52, 26, 0, 1311, 1313, 5, 17, 0, 0, 1312, 1311, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1316, 3, 260, 130, 0, 1315, 1312, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1318, 1, 0, 0, 0, 1317, 1302, 1, 0, 0, 0, 1317, 1303, 1, 0, 0, 0, 1317, 1310, 1, 0, 0, 0, 1318, 175, 1, 0, 0, 0, 1319, 1320, 3, 274, 137, 0, 1320, 1321, 5, 263, 0, 0, 1321, 1322, 3, 228, 114, 0, 1322, 1323, 5, 17, 0, 0, 1323, 1324, 3, 322, 161, 0, 1324, 1332, 1, 0, 0, 0, 1325, 1326, 3, 274, 137, 0, 1326, 1327, 5, 263, 0, 0, 1327, 1328, 3, 314, 157, 0, 1328, 1329, 5, 17, 0, 0, 1329, 1330, 3, 322, 161, 0, 1330, 1332, 1, 0, 0, 0, 1331, 1319, 1, 0, 0, 0, 1331, 1325, 1, 0, 0, 0, 1332, 177, 1, 0, 0, 0, 1333, 1334, 5, 151, 0, 0, 1334, 1335, 3, 180, 90, 0, 1335, 179, 1, 0, 0, 0, 1336, 1337, 6, 90, -1, 0, 1337, 1342, 3, 182, 91, 0, 1338, 1339, 5, 521, 0, 0, 1339, 1341, 3, 182, 91, 0, 1340, 1338, 1, 0, 0, 0, 1341, 1344, 1, 0, 0, 0, 1342, 1340, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1348, 1, 0, 0, 0, 1344, 1342, 1, 0, 0, 0, 1345, 1348, 3, 190, 95, 0, 1346, 1348, 3, 192, 96, 0, 1347, 1336, 1, 0, 0, 0, 1347, 1345, 1, 0, 0, 0, 1347, 1346, 1, 0, 0, 0, 1348, 1370, 1, 0, 0, 0, 1349, 1350, 10, 3, 0, 0, 1350, 1351, 5, 73, 0, 0, 1351, 1352, 5, 185, 0, 0, 1352, 1369, 3, 180, 90, 4, 1353, 1355, 10, 4, 0, 0, 1354, 1356, 5, 234, 0, 0, 1355, 1354, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 1358, 1, 0, 0, 0, 1357, 1359, 7, 20, 0, 0, 1358, 1357, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1361, 1, 0, 0, 0, 1360, 1362, 5, 262, 0, 0, 1361, 1360, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1364, 5, 185, 0, 0, 1364, 1366, 3, 180, 90, 0, 1365, 1367, 3, 204, 102, 0, 1366, 1365, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1369, 1, 0, 0, 0, 1368, 1349, 1, 0, 0, 0, 1368, 1353, 1, 0, 0, 0, 1369, 1372, 1, 0, 0, 0, 1370, 1368, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 181, 1, 0, 0, 0, 1372, 1370, 1, 0, 0, 0, 1373, 1375, 3, 184, 92, 0, 1374, 1376, 3, 312, 156, 0, 1375, 1374, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 183, 1, 0, 0, 0, 1377, 1379, 5, 374, 0, 0, 1378, 1377, 1, 0, 0, 0, 1378, 1379, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1382, 3, 340, 170, 0, 1381, 1383, 3, 186, 93, 0, 1382, 1381, 1, 0, 0, 0, 1382, 1383, 1, 0, 0, 0, 1383, 1407, 1, 0, 0, 0, 1384, 1386, 3, 342, 171, 0, 1385, 1387, 3, 186, 93, 0, 1386, 1385, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1407, 1, 0, 0, 0, 1388, 1389, 5, 199, 0, 0, 1389, 1390, 5, 374, 0, 0, 1390, 1391, 5, 517, 0, 0, 1391, 1392, 3, 272, 136, 0, 1392, 1393, 5, 518, 0, 0, 1393, 1407, 1, 0, 0, 0, 1394, 1396, 5, 199, 0, 0, 1395, 1394, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1398, 5, 517, 0, 0, 1398, 1399, 3, 160, 80, 0, 1399, 1400, 5, 518, 0, 0, 1400, 1407, 1, 0, 0, 0, 1401, 1402, 5, 406, 0, 0, 1402, 1403, 5, 517, 0, 0, 1403, 1404, 3, 260, 130, 0, 1404, 1405, 5, 518, 0, 0, 1405, 1407, 1, 0, 0, 0, 1406, 1378, 1, 0, 0, 0, 1406, 1384, 1, 0, 0, 0, 1406, 1388, 1, 0, 0, 0, 1406, 1395, 1, 0, 0, 0, 1406, 1401, 1, 0, 0, 0, 1407, 185, 1, 0, 0, 0, 1408, 1409, 5, 146, 0, 0, 1409, 1410, 5, 372, 0, 0, 1410, 1411, 5, 17, 0, 0, 1411, 1412, 5, 250, 0, 0, 1412, 1413, 3, 188, 94, 0, 1413, 187, 1, 0, 0, 0, 1414, 1415, 3, 260, 130, 0, 1415, 189, 1, 0, 0, 0, 1416, 1417, 5, 517, 0, 0, 1417, 1418, 3, 150, 75, 0, 1418, 1419, 5, 518, 0, 0, 1419, 1420, 3, 312, 156, 0, 1420, 191, 1, 0, 0, 0, 1421, 1422, 5, 374, 0, 0, 1422, 1423, 5, 517, 0, 0, 1423, 1424, 3, 194, 97, 0, 1424, 1425, 5, 518, 0, 0, 1425, 193, 1, 0, 0, 0, 1426, 1427, 3, 196, 98, 0, 1427, 1428, 5, 517, 0, 0, 1428, 1433, 3, 198, 99, 0, 1429, 1430, 5, 521, 0, 0, 1430, 1432, 3, 198, 99, 0, 1431, 1429, 1, 0, 0, 0, 1432, 1435, 1, 0, 0, 0, 1433, 1431, 1, 0, 0, 0, 1433, 1434, 1, 0, 0, 0, 1434, 1436, 1, 0, 0, 0, 1435, 1433, 1, 0, 0, 0, 1436, 1437, 5, 518, 0, 0, 1437, 195, 1, 0, 0, 0, 1438, 1439, 7, 21, 0, 0, 1439, 197, 1, 0, 0, 0, 1440, 1441, 5, 374, 0, 0, 1441, 1456, 3, 220, 110, 0, 1442, 1456, 3, 202, 101, 0, 1443, 1456, 3, 300, 150, 0, 1444, 1445, 5, 447, 0, 0, 1445, 1446, 5, 537, 0, 0, 1446, 1447, 5, 374, 0, 0, 1447, 1456, 3, 220, 110, 0, 1448, 1449, 5, 499, 0, 0, 1449, 1450, 5, 537, 0, 0, 1450, 1456, 3, 202, 101, 0, 1451, 1452, 3, 200, 100, 0, 1452, 1453, 5, 537, 0, 0, 1453, 1454, 3, 300, 150, 0, 1454, 1456, 1, 0, 0, 0, 1455, 1440, 1, 0, 0, 0, 1455, 1442, 1, 0, 0, 0, 1455, 1443, 1, 0, 0, 0, 1455, 1444, 1, 0, 0, 0, 1455, 1448, 1, 0, 0, 0, 1455, 1451, 1, 0, 0, 0, 1456, 199, 1, 0, 0, 0, 1457, 1458, 7, 22, 0, 0, 1458, 201, 1, 0, 0, 0, 1459, 1460, 5, 452, 0, 0, 1460, 1461, 5, 517, 0, 0, 1461, 1462, 3, 52, 26, 0, 1462, 1463, 5, 518, 0, 0, 1463, 203, 1, 0, 0, 0, 1464, 1465, 5, 254, 0, 0, 1465, 1469, 3, 262, 131, 0, 1466, 1467, 5, 413, 0, 0, 1467, 1469, 3, 56, 28, 0, 1468, 1464, 1, 0, 0, 0, 1468, 1466, 1, 0, 0, 0, 1469, 205, 1, 0, 0, 0, 1470, 1471, 5, 431, 0, 0, 1471, 1472, 3, 262, 131, 0, 1472, 207, 1, 0, 0, 0, 1473, 1474, 5, 159, 0, 0, 1474, 1475, 5, 34, 0, 0, 1475, 1480, 3, 210, 105, 0, 1476, 1477, 5, 521, 0, 0, 1477, 1479, 3, 210, 105, 0, 1478, 1476, 1, 0, 0, 0, 1479, 1482, 1, 0, 0, 0, 1480, 1478, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 209, 1, 0, 0, 0, 1482, 1480, 1, 0, 0, 0, 1483, 1524, 3, 52, 26, 0, 1484, 1524, 3, 216, 108, 0, 1485, 1486, 5, 517, 0, 0, 1486, 1524, 5, 518, 0, 0, 1487, 1488, 5, 517, 0, 0, 1488, 1493, 3, 260, 130, 0, 1489, 1490, 5, 521, 0, 0, 1490, 1492, 3, 260, 130, 0, 1491, 1489, 1, 0, 0, 0, 1492, 1495, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1496, 1, 0, 0, 0, 1495, 1493, 1, 0, 0, 0, 1496, 1497, 5, 518, 0, 0, 1497, 1524, 1, 0, 0, 0, 1498, 1499, 3, 214, 107, 0, 1499, 1500, 5, 517, 0, 0, 1500, 1505, 3, 260, 130, 0, 1501, 1502, 5, 521, 0, 0, 1502, 1504, 3, 260, 130, 0, 1503, 1501, 1, 0, 0, 0, 1504, 1507, 1, 0, 0, 0, 1505, 1503, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1508, 1, 0, 0, 0, 1507, 1505, 1, 0, 0, 0, 1508, 1509, 5, 518, 0, 0, 1509, 1524, 1, 0, 0, 0, 1510, 1511, 3, 212, 106, 0, 1511, 1512, 5, 517, 0, 0, 1512, 1517, 3, 210, 105, 0, 1513, 1514, 5, 521, 0, 0, 1514, 1516, 3, 210, 105, 0, 1515, 1513, 1, 0, 0, 0, 1516, 1519, 1, 0, 0, 0, 1517, 1515, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1520, 1, 0, 0, 0, 1519, 1517, 1, 0, 0, 0, 1520, 1521, 5, 518, 0, 0, 1521, 1524, 1, 0, 0, 0, 1522, 1524, 3, 260, 130, 0, 1523, 1483, 1, 0, 0, 0, 1523, 1484, 1, 0, 0, 0, 1523, 1485, 1, 0, 0, 0, 1523, 1487, 1, 0, 0, 0, 1523, 1498, 1, 0, 0, 0, 1523, 1510, 1, 0, 0, 0, 1523, 1522, 1, 0, 0, 0, 1524, 211, 1, 0, 0, 0, 1525, 1526, 5, 160, 0, 0, 1526, 1527, 5, 494, 0, 0, 1527, 213, 1, 0, 0, 0, 1528, 1529, 7, 23, 0, 0, 1529, 215, 1, 0, 0, 0, 1530, 1531, 3, 218, 109, 0, 1531, 1532, 5, 517, 0, 0, 1532, 1533, 3, 220, 110, 0, 1533, 1534, 5, 521, 0, 0, 1534, 1535, 3, 300, 150, 0, 1535, 1536, 5, 518, 0, 0, 1536, 217, 1, 0, 0, 0, 1537, 1538, 7, 24, 0, 0, 1538, 219, 1, 0, 0, 0, 1539, 1540, 3, 346, 173, 0, 1540, 221, 1, 0, 0, 0, 1541, 1542, 5, 163, 0, 0, 1542, 1543, 3, 262, 131, 0, 1543, 223, 1, 0, 0, 0, 1544, 1545, 5, 433, 0, 0, 1545, 1550, 3, 226, 113, 0, 1546, 1547, 5, 521, 0, 0, 1547, 1549, 3, 226, 113, 0, 1548, 1546, 1, 0, 0, 0, 1549, 1552, 1, 0, 0, 0, 1550, 1548, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 225, 1, 0, 0, 0, 1552, 1550, 1, 0, 0, 0, 1553, 1554, 3, 314, 157, 0, 1554, 1555, 5, 17, 0, 0, 1555, 1556, 3, 228, 114, 0, 1556, 227, 1, 0, 0, 0, 1557, 1559, 3, 314, 157, 0, 1558, 1557, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1562, 5, 517, 0, 0, 1561, 1563, 3, 238, 119, 0, 1562, 1561, 1, 0, 0, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1565, 1, 0, 0, 0, 1564, 1566, 3, 232, 116, 0, 1565, 1564, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1568, 1, 0, 0, 0, 1567, 1569, 3, 254, 127, 0, 1568, 1567, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1571, 5, 518, 0, 0, 1571, 229, 1, 0, 0, 0, 1572, 1573, 5, 214, 0, 0, 1573, 1575, 5, 517, 0, 0, 1574, 1576, 3, 238, 119, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1578, 1, 0, 0, 0, 1577, 1579, 3, 232, 116, 0, 1578, 1577, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1581, 1, 0, 0, 0, 1580, 1582, 3, 242, 121, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1584, 1, 0, 0, 0, 1583, 1585, 3, 248, 124, 0, 1584, 1583, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1587, 1, 0, 0, 0, 1586, 1588, 3, 250, 125, 0, 1587, 1586, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1590, 1, 0, 0, 0, 1589, 1591, 3, 244, 122, 0, 1590, 1589, 1, 0, 0, 0, 1590, 1591, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 1593, 3, 252, 126, 0, 1593, 1598, 5, 518, 0, 0, 1594, 1596, 5, 17, 0, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 1599, 3, 322, 161, 0, 1598, 1595, 1, 0, 0, 0, 1598, 1599, 1, 0, 0, 0, 1599, 231, 1, 0, 0, 0, 1600, 1601, 5, 259, 0, 0, 1601, 1602, 5, 34, 0, 0, 1602, 1607, 3, 234, 117, 0, 1603, 1604, 5, 521, 0, 0, 1604, 1606, 3, 234, 117, 0, 1605, 1603, 1, 0, 0, 0, 1606, 1609, 1, 0, 0, 0, 1607, 1605, 1, 0, 0, 0, 1607, 1608, 1, 0, 0, 0, 1608, 233, 1, 0, 0, 0, 1609, 1607, 1, 0, 0, 0, 1610, 1612, 3, 52, 26, 0, 1611, 1613, 7, 25, 0, 0, 1612, 1611, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1616, 1, 0, 0, 0, 1614, 1615, 5, 477, 0, 0, 1615, 1617, 7, 26, 0, 0, 1616, 1614, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1617, 235, 1, 0, 0, 0, 1618, 1621, 5, 205, 0, 0, 1619, 1622, 5, 5, 0, 0, 1620, 1622, 3, 260, 130, 0, 1621, 1619, 1, 0, 0, 0, 1621, 1620, 1, 0, 0, 0, 1622, 237, 1, 0, 0, 0, 1623, 1624, 5, 269, 0, 0, 1624, 1627, 5, 34, 0, 0, 1625, 1628, 3, 52, 26, 0, 1626, 1628, 3, 274, 137, 0, 1627, 1625, 1, 0, 0, 0, 1627, 1626, 1, 0, 0, 0, 1628, 1636, 1, 0, 0, 0, 1629, 1632, 5, 521, 0, 0, 1630, 1633, 3, 52, 26, 0, 1631, 1633, 3, 274, 137, 0, 1632, 1630, 1, 0, 0, 0, 1632, 1631, 1, 0, 0, 0, 1633, 1635, 1, 0, 0, 0, 1634, 1629, 1, 0, 0, 0, 1635, 1638, 1, 0, 0, 0, 1636, 1634, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 239, 1, 0, 0, 0, 1638, 1636, 1, 0, 0, 0, 1639, 1656, 5, 528, 0, 0, 1640, 1656, 5, 531, 0, 0, 1641, 1656, 5, 536, 0, 0, 1642, 1643, 5, 519, 0, 0, 1643, 1644, 5, 539, 0, 0, 1644, 1645, 5, 521, 0, 0, 1645, 1646, 5, 539, 0, 0, 1646, 1656, 5, 520, 0, 0, 1647, 1648, 5, 519, 0, 0, 1648, 1649, 5, 539, 0, 0, 1649, 1650, 5, 521, 0, 0, 1650, 1656, 5, 520, 0, 0, 1651, 1652, 5, 519, 0, 0, 1652, 1653, 5, 521, 0, 0, 1653, 1654, 5, 539, 0, 0, 1654, 1656, 5, 520, 0, 0, 1655, 1639, 1, 0, 0, 0, 1655, 1640, 1, 0, 0, 0, 1655, 1641, 1, 0, 0, 0, 1655, 1642, 1, 0, 0, 0, 1655, 1647, 1, 0, 0, 0, 1655, 1651, 1, 0, 0, 0, 1656, 241, 1, 0, 0, 0, 1657, 1658, 5, 216, 0, 0, 1658, 1663, 3, 174, 87, 0, 1659, 1660, 5, 521, 0, 0, 1660, 1662, 3, 174, 87, 0, 1661, 1659, 1, 0, 0, 0, 1662, 1665, 1, 0, 0, 0, 1663, 1661, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 243, 1, 0, 0, 0, 1665, 1663, 1, 0, 0, 0, 1666, 1667, 5, 272, 0, 0, 1667, 1669, 5, 517, 0, 0, 1668, 1670, 3, 246, 123, 0, 1669, 1668, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1669, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1675, 5, 518, 0, 0, 1674, 1676, 3, 258, 129, 0, 1675, 1674, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 245, 1, 0, 0, 0, 1677, 1679, 3, 324, 162, 0, 1678, 1680, 3, 240, 120, 0, 1679, 1678, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 247, 1, 0, 0, 0, 1681, 1682, 5, 5, 0, 0, 1682, 1683, 5, 323, 0, 0, 1683, 1684, 5, 273, 0, 0, 1684, 1690, 5, 211, 0, 0, 1685, 1686, 5, 255, 0, 0, 1686, 1687, 5, 322, 0, 0, 1687, 1688, 5, 273, 0, 0, 1688, 1690, 5, 211, 0, 0, 1689, 1681, 1, 0, 0, 0, 1689, 1685, 1, 0, 0, 0, 1690, 249, 1, 0, 0, 0, 1691, 1692, 5, 439, 0, 0, 1692, 1693, 5, 211, 0, 0, 1693, 1694, 5, 344, 0, 0, 1694, 1695, 5, 479, 0, 0, 1695, 1696, 5, 468, 0, 0, 1696, 1716, 5, 322, 0, 0, 1697, 1698, 5, 439, 0, 0, 1698, 1699, 5, 211, 0, 0, 1699, 1700, 5, 344, 0, 0, 1700, 1701, 5, 389, 0, 0, 1701, 1702, 5, 238, 0, 0, 1702, 1716, 5, 322, 0, 0, 1703, 1704, 5, 439, 0, 0, 1704, 1705, 5, 211, 0, 0, 1705, 1706, 5, 344, 0, 0, 1706, 1707, 5, 389, 0, 0, 1707, 1708, 5, 468, 0, 0, 1708, 1716, 3, 324, 162, 0, 1709, 1710, 5, 439, 0, 0, 1710, 1711, 5, 211, 0, 0, 1711, 1712, 5, 344, 0, 0, 1712, 1713, 5, 389, 0, 0, 1713, 1714, 5, 458, 0, 0, 1714, 1716, 3, 324, 162, 0, 1715, 1691, 1, 0, 0, 0, 1715, 1697, 1, 0, 0, 0, 1715, 1703, 1, 0, 0, 0, 1715, 1709, 1, 0, 0, 0, 1716, 251, 1, 0, 0, 0, 1717, 1718, 5, 105, 0, 0, 1718, 1723, 3, 174, 87, 0, 1719, 1720, 5, 521, 0, 0, 1720, 1722, 3, 174, 87, 0, 1721, 1719, 1, 0, 0, 0, 1722, 1725, 1, 0, 0, 0, 1723, 1721, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 253, 1, 0, 0, 0, 1725, 1723, 1, 0, 0, 0, 1726, 1727, 5, 293, 0, 0, 1727, 1728, 5, 27, 0, 0, 1728, 1729, 3, 300, 150, 0, 1729, 1730, 3, 256, 128, 0, 1730, 1736, 1, 0, 0, 0, 1731, 1732, 5, 323, 0, 0, 1732, 1733, 5, 27, 0, 0, 1733, 1734, 5, 539, 0, 0, 1734, 1736, 3, 256, 128, 0, 1735, 1726, 1, 0, 0, 0, 1735, 1731, 1, 0, 0, 0, 1736, 255, 1, 0, 0, 0, 1737, 1738, 5, 481, 0, 0, 1738, 1739, 5, 10, 0, 0, 1739, 1740, 5, 76, 0, 0, 1740, 1741, 5, 322, 0, 0, 1741, 257, 1, 0, 0, 0, 1742, 1743, 5, 435, 0, 0, 1743, 1744, 3, 300, 150, 0, 1744, 259, 1, 0, 0, 0, 1745, 1746, 3, 262, 131, 0, 1746, 261, 1, 0, 0, 0, 1747, 1748, 6, 131, -1, 0, 1748, 1749, 5, 242, 0, 0, 1749, 1760, 3, 262, 131, 6, 1750, 1751, 5, 133, 0, 0, 1751, 1752, 5, 517, 0, 0, 1752, 1753, 3, 160, 80, 0, 1753, 1754, 5, 518, 0, 0, 1754, 1760, 1, 0, 0, 0, 1755, 1757, 3, 270, 135, 0, 1756, 1758, 3, 264, 132, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1760, 1, 0, 0, 0, 1759, 1747, 1, 0, 0, 0, 1759, 1750, 1, 0, 0, 0, 1759, 1755, 1, 0, 0, 0, 1760, 1775, 1, 0, 0, 0, 1761, 1762, 10, 3, 0, 0, 1762, 1763, 5, 10, 0, 0, 1763, 1774, 3, 262, 131, 4, 1764, 1765, 10, 2, 0, 0, 1765, 1766, 5, 258, 0, 0, 1766, 1774, 3, 262, 131, 3, 1767, 1768, 10, 1, 0, 0, 1768, 1770, 5, 184, 0, 0, 1769, 1771, 5, 242, 0, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1774, 7, 27, 0, 0, 1773, 1761, 1, 0, 0, 0, 1773, 1764, 1, 0, 0, 0, 1773, 1767, 1, 0, 0, 0, 1774, 1777, 1, 0, 0, 0, 1775, 1773, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 263, 1, 0, 0, 0, 1777, 1775, 1, 0, 0, 0, 1778, 1780, 5, 242, 0, 0, 1779, 1778, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1783, 5, 27, 0, 0, 1782, 1784, 7, 28, 0, 0, 1783, 1782, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1786, 3, 270, 135, 0, 1786, 1787, 5, 10, 0, 0, 1787, 1788, 3, 270, 135, 0, 1788, 1853, 1, 0, 0, 0, 1789, 1791, 5, 242, 0, 0, 1790, 1789, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1793, 5, 170, 0, 0, 1793, 1794, 5, 517, 0, 0, 1794, 1799, 3, 260, 130, 0, 1795, 1796, 5, 521, 0, 0, 1796, 1798, 3, 260, 130, 0, 1797, 1795, 1, 0, 0, 0, 1798, 1801, 1, 0, 0, 0, 1799, 1797, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1802, 1, 0, 0, 0, 1801, 1799, 1, 0, 0, 0, 1802, 1803, 5, 518, 0, 0, 1803, 1853, 1, 0, 0, 0, 1804, 1806, 5, 242, 0, 0, 1805, 1804, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1808, 5, 170, 0, 0, 1808, 1809, 5, 517, 0, 0, 1809, 1810, 3, 160, 80, 0, 1810, 1811, 5, 518, 0, 0, 1811, 1853, 1, 0, 0, 0, 1812, 1813, 5, 133, 0, 0, 1813, 1814, 5, 517, 0, 0, 1814, 1815, 3, 160, 80, 0, 1815, 1816, 5, 518, 0, 0, 1816, 1853, 1, 0, 0, 0, 1817, 1819, 5, 242, 0, 0, 1818, 1817, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1821, 5, 319, 0, 0, 1821, 1853, 3, 270, 135, 0, 1822, 1853, 3, 268, 134, 0, 1823, 1825, 5, 184, 0, 0, 1824, 1826, 5, 242, 0, 0, 1825, 1824, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1853, 7, 27, 0, 0, 1828, 1830, 5, 184, 0, 0, 1829, 1831, 5, 242, 0, 0, 1830, 1829, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1833, 5, 113, 0, 0, 1833, 1834, 5, 151, 0, 0, 1834, 1853, 3, 270, 135, 0, 1835, 1837, 5, 242, 0, 0, 1836, 1835, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1838, 1, 0, 0, 0, 1838, 1839, 5, 343, 0, 0, 1839, 1840, 5, 389, 0, 0, 1840, 1843, 3, 270, 135, 0, 1841, 1842, 5, 127, 0, 0, 1842, 1844, 3, 376, 188, 0, 1843, 1841, 1, 0, 0, 0, 1843, 1844, 1, 0, 0, 0, 1844, 1853, 1, 0, 0, 0, 1845, 1846, 5, 184, 0, 0, 1846, 1850, 5, 186, 0, 0, 1847, 1851, 5, 414, 0, 0, 1848, 1851, 5, 13, 0, 0, 1849, 1851, 3, 322, 161, 0, 1850, 1847, 1, 0, 0, 0, 1850, 1848, 1, 0, 0, 0, 1850, 1849, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1853, 1, 0, 0, 0, 1852, 1779, 1, 0, 0, 0, 1852, 1790, 1, 0, 0, 0, 1852, 1805, 1, 0, 0, 0, 1852, 1812, 1, 0, 0, 0, 1852, 1818, 1, 0, 0, 0, 1852, 1822, 1, 0, 0, 0, 1852, 1823, 1, 0, 0, 0, 1852, 1828, 1, 0, 0, 0, 1852, 1836, 1, 0, 0, 0, 1852, 1845, 1, 0, 0, 0, 1853, 265, 1, 0, 0, 0, 1854, 1863, 5, 245, 0, 0, 1855, 1856, 5, 121, 0, 0, 1856, 1863, 5, 13, 0, 0, 1857, 1858, 5, 121, 0, 0, 1858, 1863, 3, 346, 173, 0, 1859, 1863, 5, 398, 0, 0, 1860, 1863, 5, 140, 0, 0, 1861, 1863, 5, 405, 0, 0, 1862, 1854, 1, 0, 0, 0, 1862, 1855, 1, 0, 0, 0, 1862, 1857, 1, 0, 0, 0, 1862, 1859, 1, 0, 0, 0, 1862, 1860, 1, 0, 0, 0, 1862, 1861, 1, 0, 0, 0, 1863, 267, 1, 0, 0, 0, 1864, 1866, 5, 242, 0, 0, 1865, 1864, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1867, 1, 0, 0, 0, 1867, 1868, 5, 203, 0, 0, 1868, 1882, 7, 29, 0, 0, 1869, 1870, 5, 517, 0, 0, 1870, 1883, 5, 518, 0, 0, 1871, 1872, 5, 517, 0, 0, 1872, 1877, 3, 260, 130, 0, 1873, 1874, 5, 521, 0, 0, 1874, 1876, 3, 260, 130, 0, 1875, 1873, 1, 0, 0, 0, 1876, 1879, 1, 0, 0, 0, 1877, 1875, 1, 0, 0, 0, 1877, 1878, 1, 0, 0, 0, 1878, 1880, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1880, 1881, 5, 518, 0, 0, 1881, 1883, 1, 0, 0, 0, 1882, 1869, 1, 0, 0, 0, 1882, 1871, 1, 0, 0, 0, 1883, 1894, 1, 0, 0, 0, 1884, 1886, 5, 242, 0, 0, 1885, 1884, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1887, 1, 0, 0, 0, 1887, 1888, 5, 203, 0, 0, 1888, 1891, 3, 270, 135, 0, 1889, 1890, 5, 127, 0, 0, 1890, 1892, 3, 376, 188, 0, 1891, 1889, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1894, 1, 0, 0, 0, 1893, 1865, 1, 0, 0, 0, 1893, 1885, 1, 0, 0, 0, 1894, 269, 1, 0, 0, 0, 1895, 1896, 6, 135, -1, 0, 1896, 1900, 3, 274, 137, 0, 1897, 1898, 7, 30, 0, 0, 1898, 1900, 3, 270, 135, 7, 1899, 1895, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1900, 1922, 1, 0, 0, 0, 1901, 1902, 10, 6, 0, 0, 1902, 1903, 7, 31, 0, 0, 1903, 1921, 3, 270, 135, 7, 1904, 1905, 10, 5, 0, 0, 1905, 1906, 7, 32, 0, 0, 1906, 1921, 3, 270, 135, 6, 1907, 1908, 10, 4, 0, 0, 1908, 1909, 5, 512, 0, 0, 1909, 1921, 3, 270, 135, 5, 1910, 1911, 10, 3, 0, 0, 1911, 1912, 5, 513, 0, 0, 1912, 1921, 3, 270, 135, 4, 1913, 1914, 10, 2, 0, 0, 1914, 1915, 5, 511, 0, 0, 1915, 1921, 3, 270, 135, 3, 1916, 1917, 10, 1, 0, 0, 1917, 1918, 3, 364, 182, 0, 1918, 1919, 3, 270, 135, 2, 1919, 1921, 1, 0, 0, 0, 1920, 1901, 1, 0, 0, 0, 1920, 1904, 1, 0, 0, 0, 1920, 1907, 1, 0, 0, 0, 1920, 1910, 1, 0, 0, 0, 1920, 1913, 1, 0, 0, 0, 1920, 1916, 1, 0, 0, 0, 1921, 1924, 1, 0, 0, 0, 1922, 1920, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 271, 1, 0, 0, 0, 1924, 1922, 1, 0, 0, 0, 1925, 1945, 3, 390, 195, 0, 1926, 1945, 3, 280, 140, 0, 1927, 1928, 3, 282, 141, 0, 1928, 1940, 5, 517, 0, 0, 1929, 1931, 3, 382, 191, 0, 1930, 1929, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1937, 3, 284, 142, 0, 1933, 1934, 5, 521, 0, 0, 1934, 1936, 3, 284, 142, 0, 1935, 1933, 1, 0, 0, 0, 1936, 1939, 1, 0, 0, 0, 1937, 1935, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1941, 1, 0, 0, 0, 1939, 1937, 1, 0, 0, 0, 1940, 1930, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1943, 5, 518, 0, 0, 1943, 1945, 1, 0, 0, 0, 1944, 1925, 1, 0, 0, 0, 1944, 1926, 1, 0, 0, 0, 1944, 1927, 1, 0, 0, 0, 1945, 273, 1, 0, 0, 0, 1946, 1947, 6, 137, -1, 0, 1947, 1949, 5, 40, 0, 0, 1948, 1950, 3, 328, 164, 0, 1949, 1948, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1949, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1955, 1, 0, 0, 0, 1953, 1954, 5, 120, 0, 0, 1954, 1956, 3, 260, 130, 0, 1955, 1953, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1958, 5, 122, 0, 0, 1958, 2022, 1, 0, 0, 0, 1959, 1960, 5, 40, 0, 0, 1960, 1962, 3, 260, 130, 0, 1961, 1963, 3, 328, 164, 0, 1962, 1961, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1962, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1968, 1, 0, 0, 0, 1966, 1967, 5, 120, 0, 0, 1967, 1969, 3, 260, 130, 0, 1968, 1966, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1971, 5, 122, 0, 0, 1971, 2022, 1, 0, 0, 0, 1972, 1973, 5, 41, 0, 0, 1973, 1974, 5, 517, 0, 0, 1974, 1975, 3, 260, 130, 0, 1975, 1976, 5, 17, 0, 0, 1976, 1977, 3, 58, 29, 0, 1977, 1978, 5, 518, 0, 0, 1978, 2022, 1, 0, 0, 0, 1979, 1980, 5, 458, 0, 0, 1980, 1981, 5, 517, 0, 0, 1981, 1984, 3, 260, 130, 0, 1982, 1983, 5, 462, 0, 0, 1983, 1985, 5, 477, 0, 0, 1984, 1982, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1987, 5, 518, 0, 0, 1987, 2022, 1, 0, 0, 0, 1988, 1989, 5, 468, 0, 0, 1989, 1990, 5, 517, 0, 0, 1990, 1993, 3, 260, 130, 0, 1991, 1992, 5, 462, 0, 0, 1992, 1994, 5, 477, 0, 0, 1993, 1991, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1996, 5, 518, 0, 0, 1996, 2022, 1, 0, 0, 0, 1997, 1998, 5, 282, 0, 0, 1998, 1999, 5, 517, 0, 0, 1999, 2000, 3, 270, 135, 0, 2000, 2001, 5, 170, 0, 0, 2001, 2002, 3, 270, 135, 0, 2002, 2003, 5, 518, 0, 0, 2003, 2022, 1, 0, 0, 0, 2004, 2022, 3, 372, 186, 0, 2005, 2022, 5, 528, 0, 0, 2006, 2007, 3, 346, 173, 0, 2007, 2008, 5, 514, 0, 0, 2008, 2009, 5, 528, 0, 0, 2009, 2022, 1, 0, 0, 0, 2010, 2011, 5, 517, 0, 0, 2011, 2012, 3, 160, 80, 0, 2012, 2013, 5, 518, 0, 0, 2013, 2022, 1, 0, 0, 0, 2014, 2022, 3, 272, 136, 0, 2015, 2022, 3, 54, 27, 0, 2016, 2022, 3, 294, 147, 0, 2017, 2018, 5, 517, 0, 0, 2018, 2019, 3, 260, 130, 0, 2019, 2020, 5, 518, 0, 0, 2020, 2022, 1, 0, 0, 0, 2021, 1946, 1, 0, 0, 0, 2021, 1959, 1, 0, 0, 0, 2021, 1972, 1, 0, 0, 0, 2021, 1979, 1, 0, 0, 0, 2021, 1988, 1, 0, 0, 0, 2021, 1997, 1, 0, 0, 0, 2021, 2004, 1, 0, 0, 0, 2021, 2005, 1, 0, 0, 0, 2021, 2006, 1, 0, 0, 0, 2021, 2010, 1, 0, 0, 0, 2021, 2014, 1, 0, 0, 0, 2021, 2015, 1, 0, 0, 0, 2021, 2016, 1, 0, 0, 0, 2021, 2017, 1, 0, 0, 0, 2022, 2030, 1, 0, 0, 0, 2023, 2024, 10, 4, 0, 0, 2024, 2025, 5, 515, 0, 0, 2025, 2026, 3, 270, 135, 0, 2026, 2027, 5, 516, 0, 0, 2027, 2029, 1, 0, 0, 0, 2028, 2023, 1, 0, 0, 0, 2029, 2032, 1, 0, 0, 0, 2030, 2028, 1, 0, 0, 0, 2030, 2031, 1, 0, 0, 0, 2031, 275, 1, 0, 0, 0, 2032, 2030, 1, 0, 0, 0, 2033, 2034, 3, 346, 173, 0, 2034, 277, 1, 0, 0, 0, 2035, 2040, 3, 394, 197, 0, 2036, 2040, 3, 390, 195, 0, 2037, 2040, 3, 392, 196, 0, 2038, 2040, 3, 346, 173, 0, 2039, 2035, 1, 0, 0, 0, 2039, 2036, 1, 0, 0, 0, 2039, 2037, 1, 0, 0, 0, 2039, 2038, 1, 0, 0, 0, 2040, 279, 1, 0, 0, 0, 2041, 2042, 3, 392, 196, 0, 2042, 2043, 5, 538, 0, 0, 2043, 2046, 1, 0, 0, 0, 2044, 2046, 3, 300, 150, 0, 2045, 2041, 1, 0, 0, 0, 2045, 2044, 1, 0, 0, 0, 2046, 281, 1, 0, 0, 0, 2047, 2050, 3, 394, 197, 0, 2048, 2050, 3, 346, 173, 0, 2049, 2047, 1, 0, 0, 0, 2049, 2048, 1, 0, 0, 0, 2050, 283, 1, 0, 0, 0, 2051, 2060, 3, 388, 194, 0, 2052, 2060, 3, 386, 193, 0, 2053, 2060, 3, 384, 192, 0, 2054, 2060, 3, 260, 130, 0, 2055, 2060, 3, 286, 143, 0, 2056, 2060, 3, 288, 144, 0, 2057, 2060, 3, 290, 145, 0, 2058, 2060, 3, 292, 146, 0, 2059, 2051, 1, 0, 0, 0, 2059, 2052, 1, 0, 0, 0, 2059, 2053, 1, 0, 0, 0, 2059, 2054, 1, 0, 0, 0, 2059, 2055, 1, 0, 0, 0, 2059, 2056, 1, 0, 0, 0, 2059, 2057, 1, 0, 0, 0, 2059, 2058, 1, 0, 0, 0, 2060, 285, 1, 0, 0, 0, 2061, 2065, 3, 54, 27, 0, 2062, 2063, 3, 346, 173, 0, 2063, 2064, 3, 58, 29, 0, 2064, 2066, 1, 0, 0, 0, 2065, 2062, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2075, 1, 0, 0, 0, 2067, 2072, 3, 346, 173, 0, 2068, 2072, 5, 245, 0, 0, 2069, 2070, 5, 104, 0, 0, 2070, 2072, 3, 270, 135, 0, 2071, 2067, 1, 0, 0, 0, 2071, 2068, 1, 0, 0, 0, 2071, 2069, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2074, 5, 254, 0, 0, 2074, 2076, 5, 121, 0, 0, 2075, 2071, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2085, 1, 0, 0, 0, 2077, 2082, 3, 346, 173, 0, 2078, 2082, 5, 245, 0, 0, 2079, 2080, 5, 104, 0, 0, 2080, 2082, 3, 270, 135, 0, 2081, 2077, 1, 0, 0, 0, 2081, 2078, 1, 0, 0, 0, 2081, 2079, 1, 0, 0, 0, 2082, 2083, 1, 0, 0, 0, 2083, 2084, 5, 254, 0, 0, 2084, 2086, 3, 346, 173, 0, 2085, 2081, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 287, 1, 0, 0, 0, 2087, 2099, 3, 54, 27, 0, 2088, 2094, 5, 436, 0, 0, 2089, 2091, 5, 434, 0, 0, 2090, 2092, 3, 346, 173, 0, 2091, 2090, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2094, 1, 0, 0, 0, 2093, 2088, 1, 0, 0, 0, 2093, 2089, 1, 0, 0, 0, 2094, 2096, 1, 0, 0, 0, 2095, 2097, 5, 13, 0, 0, 2096, 2095, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2100, 3, 346, 173, 0, 2099, 2093, 1, 0, 0, 0, 2099, 2100, 1, 0, 0, 0, 2100, 2105, 1, 0, 0, 0, 2101, 2102, 3, 266, 133, 0, 2102, 2103, 5, 254, 0, 0, 2103, 2104, 5, 121, 0, 0, 2104, 2106, 1, 0, 0, 0, 2105, 2101, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2111, 1, 0, 0, 0, 2107, 2108, 3, 266, 133, 0, 2108, 2109, 5, 254, 0, 0, 2109, 2110, 3, 346, 173, 0, 2110, 2112, 1, 0, 0, 0, 2111, 2107, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 289, 1, 0, 0, 0, 2113, 2115, 5, 467, 0, 0, 2114, 2113, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2118, 3, 54, 27, 0, 2117, 2119, 5, 414, 0, 0, 2118, 2117, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2130, 1, 0, 0, 0, 2120, 2131, 3, 270, 135, 0, 2121, 2122, 5, 186, 0, 0, 2122, 2126, 5, 517, 0, 0, 2123, 2125, 3, 270, 135, 0, 2124, 2123, 1, 0, 0, 0, 2125, 2128, 1, 0, 0, 0, 2126, 2124, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2129, 1, 0, 0, 0, 2128, 2126, 1, 0, 0, 0, 2129, 2131, 5, 518, 0, 0, 2130, 2120, 1, 0, 0, 0, 2130, 2121, 1, 0, 0, 0, 2131, 2133, 1, 0, 0, 0, 2132, 2114, 1, 0, 0, 0, 2133, 2136, 1, 0, 0, 0, 2134, 2132, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2143, 1, 0, 0, 0, 2136, 2134, 1, 0, 0, 0, 2137, 2140, 5, 245, 0, 0, 2138, 2140, 3, 346, 173, 0, 2139, 2137, 1, 0, 0, 0, 2139, 2138, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2142, 5, 254, 0, 0, 2142, 2144, 5, 245, 0, 0, 2143, 2139, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 291, 1, 0, 0, 0, 2145, 2147, 3, 270, 135, 0, 2146, 2145, 1, 0, 0, 0, 2147, 2150, 1, 0, 0, 0, 2148, 2146, 1, 0, 0, 0, 2148, 2149, 1, 0, 0, 0, 2149, 2157, 1, 0, 0, 0, 2150, 2148, 1, 0, 0, 0, 2151, 2154, 5, 245, 0, 0, 2152, 2154, 3, 346, 173, 0, 2153, 2151, 1, 0, 0, 0, 2153, 2152, 1, 0, 0, 0, 2154, 2155, 1, 0, 0, 0, 2155, 2156, 5, 254, 0, 0, 2156, 2158, 5, 245, 0, 0, 2157, 2153, 1, 0, 0, 0, 2157, 2158, 1, 0, 0, 0, 2158, 293, 1, 0, 0, 0, 2159, 2160, 3, 346, 173, 0, 2160, 295, 1, 0, 0, 0, 2161, 2162, 3, 322, 161, 0, 2162, 297, 1, 0, 0, 0, 2163, 2166, 3, 322, 161, 0, 2164, 2166, 3, 294, 147, 0, 2165, 2163, 1, 0, 0, 0, 2165, 2164, 1, 0, 0, 0, 2166, 299, 1, 0, 0, 0, 2167, 2170, 5, 182, 0, 0, 2168, 2171, 3, 302, 151, 0, 2169, 2171, 3, 306, 153, 0, 2170, 2168, 1, 0, 0, 0, 2170, 2169, 1, 0, 0, 0, 2170, 2171, 1, 0, 0, 0, 2171, 301, 1, 0, 0, 0, 2172, 2174, 3, 304, 152, 0, 2173, 2175, 3, 308, 154, 0, 2174, 2173, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 303, 1, 0, 0, 0, 2176, 2177, 3, 310, 155, 0, 2177, 2178, 3, 386, 193, 0, 2178, 2180, 1, 0, 0, 0, 2179, 2176, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, 0, 2181, 2179, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2182, 305, 1, 0, 0, 0, 2183, 2186, 3, 308, 154, 0, 2184, 2187, 3, 304, 152, 0, 2185, 2187, 3, 308, 154, 0, 2186, 2184, 1, 0, 0, 0, 2186, 2185, 1, 0, 0, 0, 2186, 2187, 1, 0, 0, 0, 2187, 307, 1, 0, 0, 0, 2188, 2189, 3, 310, 155, 0, 2189, 2190, 3, 386, 193, 0, 2190, 2191, 5, 389, 0, 0, 2191, 2192, 3, 386, 193, 0, 2192, 309, 1, 0, 0, 0, 2193, 2195, 7, 33, 0, 0, 2194, 2193, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2199, 7, 34, 0, 0, 2197, 2199, 5, 538, 0, 0, 2198, 2194, 1, 0, 0, 0, 2198, 2197, 1, 0, 0, 0, 2199, 311, 1, 0, 0, 0, 2200, 2202, 5, 17, 0, 0, 2201, 2200, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2205, 3, 322, 161, 0, 2204, 2206, 3, 318, 159, 0, 2205, 2204, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 313, 1, 0, 0, 0, 2207, 2208, 3, 322, 161, 0, 2208, 2209, 3, 316, 158, 0, 2209, 315, 1, 0, 0, 0, 2210, 2211, 5, 222, 0, 0, 2211, 2213, 3, 322, 161, 0, 2212, 2210, 1, 0, 0, 0, 2213, 2214, 1, 0, 0, 0, 2214, 2212, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2218, 1, 0, 0, 0, 2216, 2218, 1, 0, 0, 0, 2217, 2212, 1, 0, 0, 0, 2217, 2216, 1, 0, 0, 0, 2218, 317, 1, 0, 0, 0, 2219, 2220, 5, 517, 0, 0, 2220, 2221, 3, 320, 160, 0, 2221, 2222, 5, 518, 0, 0, 2222, 319, 1, 0, 0, 0, 2223, 2228, 3, 322, 161, 0, 2224, 2225, 5, 521, 0, 0, 2225, 2227, 3, 322, 161, 0, 2226, 2224, 1, 0, 0, 0, 2227, 2230, 1, 0, 0, 0, 2228, 2226, 1, 0, 0, 0, 2228, 2229, 1, 0, 0, 0, 2229, 321, 1, 0, 0, 0, 2230, 2228, 1, 0, 0, 0, 2231, 2235, 3, 324, 162, 0, 2232, 2235, 3, 326, 163, 0, 2233, 2235, 3, 396, 198, 0, 2234, 2231, 1, 0, 0, 0, 2234, 2232, 1, 0, 0, 0, 2234, 2233, 1, 0, 0, 0, 2235, 323, 1, 0, 0, 0, 2236, 2237, 7, 35, 0, 0, 2237, 325, 1, 0, 0, 0, 2238, 2239, 5, 538, 0, 0, 2239, 327, 1, 0, 0, 0, 2240, 2241, 5, 429, 0, 0, 2241, 2242, 3, 260, 130, 0, 2242, 2243, 5, 377, 0, 0, 2243, 2244, 3, 260, 130, 0, 2244, 329, 1, 0, 0, 0, 2245, 2246, 3, 322, 161, 0, 2246, 331, 1, 0, 0, 0, 2247, 2248, 3, 322, 161, 0, 2248, 333, 1, 0, 0, 0, 2249, 2252, 3, 322, 161, 0, 2250, 2251, 5, 514, 0, 0, 2251, 2253, 3, 322, 161, 0, 2252, 2250, 1, 0, 0, 0, 2252, 2253, 1, 0, 0, 0, 2253, 335, 1, 0, 0, 0, 2254, 2257, 3, 322, 161, 0, 2255, 2256, 5, 514, 0, 0, 2256, 2258, 3, 322, 161, 0, 2257, 2255, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 337, 1, 0, 0, 0, 2259, 2262, 3, 322, 161, 0, 2260, 2261, 5, 514, 0, 0, 2261, 2263, 3, 322, 161, 0, 2262, 2260, 1, 0, 0, 0, 2262, 2263, 1, 0, 0, 0, 2263, 2272, 1, 0, 0, 0, 2264, 2265, 3, 322, 161, 0, 2265, 2266, 5, 514, 0, 0, 2266, 2269, 3, 322, 161, 0, 2267, 2268, 5, 514, 0, 0, 2268, 2270, 3, 322, 161, 0, 2269, 2267, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2272, 1, 0, 0, 0, 2271, 2259, 1, 0, 0, 0, 2271, 2264, 1, 0, 0, 0, 2272, 339, 1, 0, 0, 0, 2273, 2276, 3, 322, 161, 0, 2274, 2275, 5, 514, 0, 0, 2275, 2277, 3, 322, 161, 0, 2276, 2274, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2286, 1, 0, 0, 0, 2278, 2279, 3, 322, 161, 0, 2279, 2280, 5, 514, 0, 0, 2280, 2283, 3, 322, 161, 0, 2281, 2282, 5, 514, 0, 0, 2282, 2284, 3, 322, 161, 0, 2283, 2281, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2286, 1, 0, 0, 0, 2285, 2273, 1, 0, 0, 0, 2285, 2278, 1, 0, 0, 0, 2286, 341, 1, 0, 0, 0, 2287, 2290, 3, 322, 161, 0, 2288, 2289, 5, 514, 0, 0, 2289, 2291, 3, 322, 161, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2300, 1, 0, 0, 0, 2292, 2293, 3, 322, 161, 0, 2293, 2294, 5, 514, 0, 0, 2294, 2297, 3, 322, 161, 0, 2295, 2296, 5, 514, 0, 0, 2296, 2298, 3, 322, 161, 0, 2297, 2295, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2300, 1, 0, 0, 0, 2299, 2287, 1, 0, 0, 0, 2299, 2292, 1, 0, 0, 0, 2300, 343, 1, 0, 0, 0, 2301, 2304, 3, 322, 161, 0, 2302, 2303, 5, 514, 0, 0, 2303, 2305, 3, 322, 161, 0, 2304, 2302, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2314, 1, 0, 0, 0, 2306, 2307, 3, 322, 161, 0, 2307, 2308, 5, 514, 0, 0, 2308, 2311, 3, 322, 161, 0, 2309, 2310, 5, 514, 0, 0, 2310, 2312, 3, 322, 161, 0, 2311, 2309, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2314, 1, 0, 0, 0, 2313, 2301, 1, 0, 0, 0, 2313, 2306, 1, 0, 0, 0, 2314, 345, 1, 0, 0, 0, 2315, 2320, 3, 322, 161, 0, 2316, 2317, 5, 514, 0, 0, 2317, 2319, 3, 322, 161, 0, 2318, 2316, 1, 0, 0, 0, 2319, 2322, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2320, 2318, 1, 0, 0, 0, 2321, 347, 1, 0, 0, 0, 2322, 2320, 1, 0, 0, 0, 2323, 2324, 5, 434, 0, 0, 2324, 2325, 3, 354, 177, 0, 2325, 349, 1, 0, 0, 0, 2326, 2327, 5, 167, 0, 0, 2327, 2328, 5, 242, 0, 0, 2328, 2329, 5, 133, 0, 0, 2329, 351, 1, 0, 0, 0, 2330, 2331, 5, 167, 0, 0, 2331, 2332, 5, 133, 0, 0, 2332, 353, 1, 0, 0, 0, 2333, 2334, 5, 517, 0, 0, 2334, 2339, 3, 356, 178, 0, 2335, 2336, 5, 521, 0, 0, 2336, 2338, 3, 356, 178, 0, 2337, 2335, 1, 0, 0, 0, 2338, 2341, 1, 0, 0, 0, 2339, 2337, 1, 0, 0, 0, 2339, 2340, 1, 0, 0, 0, 2340, 2342, 1, 0, 0, 0, 2341, 2339, 1, 0, 0, 0, 2342, 2343, 5, 518, 0, 0, 2343, 355, 1, 0, 0, 0, 2344, 2349, 3, 358, 179, 0, 2345, 2347, 5, 506, 0, 0, 2346, 2345, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2348, 1, 0, 0, 0, 2348, 2350, 3, 360, 180, 0, 2349, 2346, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 357, 1, 0, 0, 0, 2351, 2355, 3, 322, 161, 0, 2352, 2355, 3, 294, 147, 0, 2353, 2355, 5, 538, 0, 0, 2354, 2351, 1, 0, 0, 0, 2354, 2352, 1, 0, 0, 0, 2354, 2353, 1, 0, 0, 0, 2355, 359, 1, 0, 0, 0, 2356, 2361, 5, 539, 0, 0, 2357, 2361, 5, 540, 0, 0, 2358, 2361, 3, 380, 190, 0, 2359, 2361, 5, 538, 0, 0, 2360, 2356, 1, 0, 0, 0, 2360, 2357, 1, 0, 0, 0, 2360, 2358, 1, 0, 0, 0, 2360, 2359, 1, 0, 0, 0, 2361, 361, 1, 0, 0, 0, 2362, 2369, 5, 10, 0, 0, 2363, 2364, 5, 512, 0, 0, 2364, 2369, 5, 512, 0, 0, 2365, 2369, 5, 258, 0, 0, 2366, 2367, 5, 511, 0, 0, 2367, 2369, 5, 511, 0, 0, 2368, 2362, 1, 0, 0, 0, 2368, 2363, 1, 0, 0, 0, 2368, 2365, 1, 0, 0, 0, 2368, 2366, 1, 0, 0, 0, 2369, 363, 1, 0, 0, 0, 2370, 2385, 5, 506, 0, 0, 2371, 2385, 5, 507, 0, 0, 2372, 2385, 5, 508, 0, 0, 2373, 2374, 5, 508, 0, 0, 2374, 2385, 5, 506, 0, 0, 2375, 2376, 5, 507, 0, 0, 2376, 2385, 5, 506, 0, 0, 2377, 2378, 5, 508, 0, 0, 2378, 2385, 5, 507, 0, 0, 2379, 2380, 5, 509, 0, 0, 2380, 2385, 5, 506, 0, 0, 2381, 2382, 5, 508, 0, 0, 2382, 2383, 5, 506, 0, 0, 2383, 2385, 5, 507, 0, 0, 2384, 2370, 1, 0, 0, 0, 2384, 2371, 1, 0, 0, 0, 2384, 2372, 1, 0, 0, 0, 2384, 2373, 1, 0, 0, 0, 2384, 2375, 1, 0, 0, 0, 2384, 2377, 1, 0, 0, 0, 2384, 2379, 1, 0, 0, 0, 2384, 2381, 1, 0, 0, 0, 2385, 365, 1, 0, 0, 0, 2386, 2387, 5, 508, 0, 0, 2387, 2394, 5, 508, 0, 0, 2388, 2389, 5, 507, 0, 0, 2389, 2394, 5, 507, 0, 0, 2390, 2394, 5, 512, 0, 0, 2391, 2394, 5, 513, 0, 0, 2392, 2394, 5, 511, 0, 0, 2393, 2386, 1, 0, 0, 0, 2393, 2388, 1, 0, 0, 0, 2393, 2390, 1, 0, 0, 0, 2393, 2391, 1, 0, 0, 0, 2393, 2392, 1, 0, 0, 0, 2394, 367, 1, 0, 0, 0, 2395, 2396, 7, 36, 0, 0, 2396, 369, 1, 0, 0, 0, 2397, 2398, 7, 37, 0, 0, 2398, 371, 1, 0, 0, 0, 2399, 2414, 3, 300, 150, 0, 2400, 2414, 3, 374, 187, 0, 2401, 2414, 3, 376, 188, 0, 2402, 2404, 5, 530, 0, 0, 2403, 2402, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2405, 1, 0, 0, 0, 2405, 2414, 3, 378, 189, 0, 2406, 2414, 3, 380, 190, 0, 2407, 2414, 5, 540, 0, 0, 2408, 2414, 5, 541, 0, 0, 2409, 2411, 5, 242, 0, 0, 2410, 2409, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2414, 5, 245, 0, 0, 2413, 2399, 1, 0, 0, 0, 2413, 2400, 1, 0, 0, 0, 2413, 2401, 1, 0, 0, 0, 2413, 2403, 1, 0, 0, 0, 2413, 2406, 1, 0, 0, 0, 2413, 2407, 1, 0, 0, 0, 2413, 2408, 1, 0, 0, 0, 2413, 2410, 1, 0, 0, 0, 2414, 373, 1, 0, 0, 0, 2415, 2416, 3, 384, 192, 0, 2416, 2417, 3, 376, 188, 0, 2417, 375, 1, 0, 0, 0, 2418, 2419, 5, 538, 0, 0, 2419, 377, 1, 0, 0, 0, 2420, 2421, 5, 539, 0, 0, 2421, 379, 1, 0, 0, 0, 2422, 2423, 7, 38, 0, 0, 2423, 381, 1, 0, 0, 0, 2424, 2425, 7, 39, 0, 0, 2425, 383, 1, 0, 0, 0, 2426, 2427, 7, 40, 0, 0, 2427, 385, 1, 0, 0, 0, 2428, 2429, 7, 41, 0, 0, 2429, 387, 1, 0, 0, 0, 2430, 2431, 7, 42, 0, 0, 2431, 389, 1, 0, 0, 0, 2432, 2433, 7, 43, 0, 0, 2433, 391, 1, 0, 0, 0, 2434, 2435, 7, 44, 0, 0, 2435, 393, 1, 0, 0, 0, 2436, 2437, 7, 45, 0, 0, 2437, 395, 1, 0, 0, 0, 2438, 2439, 7, 46, 0, 0, 2439, 397, 1, 0, 0, 0, 296, 401, 408, 411, 425, 443, 447, 456, 461, 468, 479, 488, 500, 503, 510, 513, 521, 525, 530, 533, 540, 548, 552, 564, 572, 576, 608, 611, 616, 620, 624, 628, 637, 642, 646, 650, 655, 658, 662, 667, 673, 678, 683, 687, 691, 695, 705, 713, 717, 721, 725, 729, 733, 737, 741, 745, 747, 757, 765, 789, 803, 808, 812, 818, 821, 824, 831, 834, 843, 855, 879, 891, 896, 900, 908, 912, 918, 928, 933, 939, 943, 947, 951, 960, 964, 971, 974, 984, 992, 1000, 1004, 1019, 1038, 1049, 1053, 1060, 1065, 1071, 1075, 1082, 1086, 1090, 1094, 1102, 1106, 1111, 1117, 1123, 1126, 1130, 1141, 1150, 1157, 1168, 1180, 1195, 1198, 1202, 1205, 1207, 1212, 1216, 1219, 1223, 1232, 1241, 1251, 1256, 1267, 1270, 1273, 1276, 1279, 1285, 1289, 1297, 1300, 1305, 1308, 1312, 1315, 1317, 1331, 1342, 1347, 1355, 1358, 1361, 1366, 1368, 1370, 1375, 1378, 1382, 1386, 1395, 1406, 1433, 1455, 1468, 1480, 1493, 1505, 1517, 1523, 1550, 1558, 1562, 1565, 1568, 1575, 1578, 1581, 1584, 1587, 1590, 1595, 1598, 1607, 1612, 1616, 1621, 1627, 1632, 1636, 1655, 1663, 1671, 1675, 1679, 1689, 1715, 1723, 1735, 1757, 1759, 1770, 1773, 1775, 1779, 1783, 1790, 1799, 1805, 1818, 1825, 1830, 1836, 1843, 1850, 1852, 1862, 1865, 1877, 1882, 1885, 1891, 1893, 1899, 1920, 1922, 1930, 1937, 1940, 1944, 1951, 1955, 1964, 1968, 1984, 1993, 2021, 2030, 2039, 2045, 2049, 2059, 2065, 2071, 2075, 2081, 2085, 2091, 2093, 2096, 2099, 2105, 2111, 2114, 2118, 2126, 2130, 2134, 2139, 2143, 2148, 2153, 2157, 2165, 2170, 2174, 2181, 2186, 2194, 2198, 2201, 2205, 2214, 2217, 2228, 2234, 2252, 2257, 2262, 2269, 2271, 2276, 2283, 2285, 2290, 2297, 2299, 2304, 2311, 2313, 2320, 2339, 2346, 2349, 2354, 2360, 2368, 2384, 2393, 2403, 2410, 2413] \ No newline at end of file diff --git a/src/lib/flink/FlinkSqlParser.ts b/src/lib/flink/FlinkSqlParser.ts index d588bc49..ff79d15a 100644 --- a/src/lib/flink/FlinkSqlParser.ts +++ b/src/lib/flink/FlinkSqlParser.ts @@ -692,67 +692,72 @@ export class FlinkSqlParser extends SQLParserBase { public static readonly RULE_expression = 130; public static readonly RULE_booleanExpression = 131; public static readonly RULE_predicate = 132; - public static readonly RULE_likePredicate = 133; - public static readonly RULE_valueExpression = 134; - public static readonly RULE_functionCallExpression = 135; - public static readonly RULE_primaryExpression = 136; - public static readonly RULE_functionNameCreate = 137; - public static readonly RULE_functionName = 138; - public static readonly RULE_functionNameAndParams = 139; - public static readonly RULE_functionNameWithParams = 140; - public static readonly RULE_functionParam = 141; - public static readonly RULE_dereferenceDefinition = 142; - public static readonly RULE_correlationName = 143; - public static readonly RULE_qualifiedName = 144; - public static readonly RULE_timeIntervalExpression = 145; - public static readonly RULE_errorCapturingMultiUnitsInterval = 146; - public static readonly RULE_multiUnitsInterval = 147; - public static readonly RULE_errorCapturingUnitToUnitInterval = 148; - public static readonly RULE_unitToUnitInterval = 149; - public static readonly RULE_intervalValue = 150; - public static readonly RULE_tableAlias = 151; - public static readonly RULE_errorCapturingIdentifier = 152; - public static readonly RULE_errorCapturingIdentifierExtra = 153; - public static readonly RULE_identifierList = 154; - public static readonly RULE_identifierSeq = 155; - public static readonly RULE_identifier = 156; - public static readonly RULE_unquotedIdentifier = 157; - public static readonly RULE_quotedIdentifier = 158; - public static readonly RULE_whenClause = 159; - public static readonly RULE_catalogPath = 160; - public static readonly RULE_catalogPathCreate = 161; - public static readonly RULE_databasePath = 162; - public static readonly RULE_databasePathCreate = 163; - public static readonly RULE_tablePathCreate = 164; - public static readonly RULE_tablePath = 165; - public static readonly RULE_viewPath = 166; - public static readonly RULE_viewPathCreate = 167; - public static readonly RULE_uid = 168; - public static readonly RULE_withOption = 169; - public static readonly RULE_ifNotExists = 170; - public static readonly RULE_ifExists = 171; - public static readonly RULE_tablePropertyList = 172; - public static readonly RULE_tableProperty = 173; - public static readonly RULE_tablePropertyKey = 174; - public static readonly RULE_tablePropertyValue = 175; - public static readonly RULE_logicalOperator = 176; - public static readonly RULE_comparisonOperator = 177; - public static readonly RULE_bitOperator = 178; - public static readonly RULE_mathOperator = 179; - public static readonly RULE_unaryOperator = 180; - public static readonly RULE_constant = 181; - public static readonly RULE_timePointLiteral = 182; - public static readonly RULE_stringLiteral = 183; - public static readonly RULE_decimalLiteral = 184; - public static readonly RULE_booleanLiteral = 185; - public static readonly RULE_setQuantifier = 186; - public static readonly RULE_timePointUnit = 187; - public static readonly RULE_timeIntervalUnit = 188; - public static readonly RULE_reservedKeywordsUsedAsFuncParam = 189; - public static readonly RULE_reservedKeywordsNoParamsUsedAsFuncName = 190; - public static readonly RULE_reservedKeywordsFollowParamsUsedAsFuncName = 191; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 192; - public static readonly RULE_nonReservedKeywords = 193; + public static readonly RULE_jsonFunctionBranch = 133; + public static readonly RULE_likePredicate = 134; + public static readonly RULE_valueExpression = 135; + public static readonly RULE_functionCallExpression = 136; + public static readonly RULE_primaryExpression = 137; + public static readonly RULE_functionNameCreate = 138; + public static readonly RULE_functionName = 139; + public static readonly RULE_functionNameAndParams = 140; + public static readonly RULE_functionNameWithParams = 141; + public static readonly RULE_functionParam = 142; + public static readonly RULE_jsonValueParams = 143; + public static readonly RULE_jsonQueryParams = 144; + public static readonly RULE_jsonObjectParams = 145; + public static readonly RULE_jsonArrayParams = 146; + public static readonly RULE_dereferenceDefinition = 147; + public static readonly RULE_correlationName = 148; + public static readonly RULE_qualifiedName = 149; + public static readonly RULE_timeIntervalExpression = 150; + public static readonly RULE_errorCapturingMultiUnitsInterval = 151; + public static readonly RULE_multiUnitsInterval = 152; + public static readonly RULE_errorCapturingUnitToUnitInterval = 153; + public static readonly RULE_unitToUnitInterval = 154; + public static readonly RULE_intervalValue = 155; + public static readonly RULE_tableAlias = 156; + public static readonly RULE_errorCapturingIdentifier = 157; + public static readonly RULE_errorCapturingIdentifierExtra = 158; + public static readonly RULE_identifierList = 159; + public static readonly RULE_identifierSeq = 160; + public static readonly RULE_identifier = 161; + public static readonly RULE_unquotedIdentifier = 162; + public static readonly RULE_quotedIdentifier = 163; + public static readonly RULE_whenClause = 164; + public static readonly RULE_catalogPath = 165; + public static readonly RULE_catalogPathCreate = 166; + public static readonly RULE_databasePath = 167; + public static readonly RULE_databasePathCreate = 168; + public static readonly RULE_tablePathCreate = 169; + public static readonly RULE_tablePath = 170; + public static readonly RULE_viewPath = 171; + public static readonly RULE_viewPathCreate = 172; + public static readonly RULE_uid = 173; + public static readonly RULE_withOption = 174; + public static readonly RULE_ifNotExists = 175; + public static readonly RULE_ifExists = 176; + public static readonly RULE_tablePropertyList = 177; + public static readonly RULE_tableProperty = 178; + public static readonly RULE_tablePropertyKey = 179; + public static readonly RULE_tablePropertyValue = 180; + public static readonly RULE_logicalOperator = 181; + public static readonly RULE_comparisonOperator = 182; + public static readonly RULE_bitOperator = 183; + public static readonly RULE_mathOperator = 184; + public static readonly RULE_unaryOperator = 185; + public static readonly RULE_constant = 186; + public static readonly RULE_timePointLiteral = 187; + public static readonly RULE_stringLiteral = 188; + public static readonly RULE_decimalLiteral = 189; + public static readonly RULE_booleanLiteral = 190; + public static readonly RULE_setQuantifier = 191; + public static readonly RULE_timePointUnit = 192; + public static readonly RULE_timeIntervalUnit = 193; + public static readonly RULE_reservedKeywordsUsedAsFuncParam = 194; + public static readonly RULE_reservedKeywordsNoParamsUsedAsFuncName = 195; + public static readonly RULE_reservedKeywordsFollowParamsUsedAsFuncName = 196; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 197; + public static readonly RULE_nonReservedKeywords = 198; public static readonly literalNames = [ null, null, null, null, "'ABS'", "'ALL'", "'ALLOCATE'", "'ALLOW'", @@ -1000,12 +1005,14 @@ export class FlinkSqlParser extends SQLParserBase { "quantifiers", "measuresClause", "patternDefinition", "patternVariable", "outputMode", "afterMatchStrategy", "patternVariablesDefinition", "windowFrame", "frameBound", "withinClause", "expression", "booleanExpression", - "predicate", "likePredicate", "valueExpression", "functionCallExpression", - "primaryExpression", "functionNameCreate", "functionName", "functionNameAndParams", - "functionNameWithParams", "functionParam", "dereferenceDefinition", - "correlationName", "qualifiedName", "timeIntervalExpression", "errorCapturingMultiUnitsInterval", - "multiUnitsInterval", "errorCapturingUnitToUnitInterval", "unitToUnitInterval", - "intervalValue", "tableAlias", "errorCapturingIdentifier", "errorCapturingIdentifierExtra", + "predicate", "jsonFunctionBranch", "likePredicate", "valueExpression", + "functionCallExpression", "primaryExpression", "functionNameCreate", + "functionName", "functionNameAndParams", "functionNameWithParams", + "functionParam", "jsonValueParams", "jsonQueryParams", "jsonObjectParams", + "jsonArrayParams", "dereferenceDefinition", "correlationName", "qualifiedName", + "timeIntervalExpression", "errorCapturingMultiUnitsInterval", "multiUnitsInterval", + "errorCapturingUnitToUnitInterval", "unitToUnitInterval", "intervalValue", + "tableAlias", "errorCapturingIdentifier", "errorCapturingIdentifierExtra", "identifierList", "identifierSeq", "identifier", "unquotedIdentifier", "quotedIdentifier", "whenClause", "catalogPath", "catalogPathCreate", "databasePath", "databasePathCreate", "tablePathCreate", "tablePath", @@ -1040,21 +1047,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 391; + this.state = 401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 8 || _la === 24 || _la === 72 || ((((_la - 109)) & ~0x1F) === 0 && ((1 << (_la - 109)) & 75497601) !== 0) || _la === 177 || ((((_la - 313)) & ~0x1F) === 0 && ((1 << (_la - 313)) & 822083585) !== 0) || ((((_la - 411)) & ~0x1F) === 0 && ((1 << (_la - 411)) & 142606353) !== 0) || _la === 451 || _la === 469 || ((((_la - 490)) & ~0x1F) === 0 && ((1 << (_la - 490)) & 134219777) !== 0) || _la === 522) { { { - this.state = 388; + this.state = 398; this.singleStatement(); } } - this.state = 393; + this.state = 403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 394; + this.state = 404; this.match(FlinkSqlParser.EOF); } } @@ -1076,7 +1083,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SingleStatementContext(this.context, this.state); this.enterRule(localContext, 2, FlinkSqlParser.RULE_singleStatement); try { - this.state = 401; + this.state = 411; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALTER: @@ -1102,14 +1109,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 396; + this.state = 406; this.sqlStatement(); - this.state = 398; + this.state = 408; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1, this.context) ) { case 1: { - this.state = 397; + this.state = 407; this.match(FlinkSqlParser.SEMICOLON); } break; @@ -1119,7 +1126,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.SEMICOLON: this.enterOuterAlt(localContext, 2); { - this.state = 400; + this.state = 410; this.emptyStatement(); } break; @@ -1145,90 +1152,90 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, FlinkSqlParser.RULE_sqlStatement); try { - this.state = 415; + this.state = 425; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 403; + this.state = 413; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 404; + this.state = 414; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 405; + this.state = 415; this.describeStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 406; + this.state = 416; this.explainStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 407; + this.state = 417; this.useStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 408; + this.state = 418; this.showStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 409; + this.state = 419; this.loadStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 410; + this.state = 420; this.unloadStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 411; + this.state = 421; this.setStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 412; + this.state = 422; this.resetStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 413; + this.state = 423; this.jarStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 414; + this.state = 424; this.dtAddStatement(); } break; @@ -1254,7 +1261,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 417; + this.state = 427; this.match(FlinkSqlParser.SEMICOLON); } } @@ -1276,104 +1283,104 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 8, FlinkSqlParser.RULE_ddlStatement); try { - this.state = 433; + this.state = 443; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 419; + this.state = 429; this.createTable(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 420; + this.state = 430; this.createDatabase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 421; + this.state = 431; this.createView(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 422; + this.state = 432; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 423; + this.state = 433; this.createCatalog(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 424; + this.state = 434; this.alterTable(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 425; + this.state = 435; this.alterView(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 426; + this.state = 436; this.alterDatabase(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 427; + this.state = 437; this.alterFunction(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 428; + this.state = 438; this.dropCatalog(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 429; + this.state = 439; this.dropTable(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 430; + this.state = 440; this.dropDatabase(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 431; + this.state = 441; this.dropView(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 432; + this.state = 442; this.dropFunction(); } break; @@ -1397,7 +1404,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DmlStatementContext(this.context, this.state); this.enterRule(localContext, 10, FlinkSqlParser.RULE_dmlStatement); try { - this.state = 437; + this.state = 447; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_SELECT: @@ -1406,7 +1413,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 435; + this.state = 445; this.queryStatement(0); } break; @@ -1415,7 +1422,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 2); { - this.state = 436; + this.state = 446; this.insertStatement(); } break; @@ -1444,7 +1451,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 439; + this.state = 449; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 451)) { this.errorHandler.recoverInline(this); @@ -1453,7 +1460,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 440; + this.state = 450; this.tablePath(); } } @@ -1477,24 +1484,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 442; + this.state = 452; this.match(FlinkSqlParser.KW_EXPLAIN); - this.state = 446; + this.state = 456; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CHANGELOG_MODE: case FlinkSqlParser.KW_ESTIMATED_COST: case FlinkSqlParser.KW_JSON_EXECUTION_PLAN: { - this.state = 443; + this.state = 453; this.explainDetails(); } break; case FlinkSqlParser.KW_PLAN: { - this.state = 444; + this.state = 454; this.match(FlinkSqlParser.KW_PLAN); - this.state = 445; + this.state = 455; this.match(FlinkSqlParser.KW_FOR); } break; @@ -1510,24 +1517,24 @@ export class FlinkSqlParser extends SQLParserBase { default: break; } - this.state = 451; + this.state = 461; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: { - this.state = 448; + this.state = 458; this.dmlStatement(); } break; case 2: { - this.state = 449; + this.state = 459; this.insertSimpleStatement(); } break; case 3: { - this.state = 450; + this.state = 460; this.insertMulStatement(); } break; @@ -1555,21 +1562,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 453; + this.state = 463; this.explainDetail(); - this.state = 458; + this.state = 468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 454; + this.state = 464; this.match(FlinkSqlParser.COMMA); - this.state = 455; + this.state = 465; this.explainDetail(); } } - this.state = 460; + this.state = 470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1596,7 +1603,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 461; + this.state = 471; _la = this.tokenStream.LA(1); if(!(_la === 45 || _la === 128 || _la === 189)) { this.errorHandler.recoverInline(this); @@ -1625,33 +1632,33 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new UseStatementContext(this.context, this.state); this.enterRule(localContext, 20, FlinkSqlParser.RULE_useStatement); try { - this.state = 469; + this.state = 479; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 463; + this.state = 473; this.match(FlinkSqlParser.KW_USE); - this.state = 464; + this.state = 474; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 465; + this.state = 475; this.catalogPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 466; + this.state = 476; this.match(FlinkSqlParser.KW_USE); - this.state = 467; + this.state = 477; this.databasePath(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 468; + this.state = 478; this.useModuleStatement(); } break; @@ -1678,25 +1685,25 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 471; + this.state = 481; this.match(FlinkSqlParser.KW_USE); - this.state = 472; + this.state = 482; this.match(FlinkSqlParser.KW_MODULES); - this.state = 473; + this.state = 483; this.uid(); - this.state = 478; + this.state = 488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 474; + this.state = 484; this.match(FlinkSqlParser.COMMA); - this.state = 475; + this.state = 485; this.uid(); } } - this.state = 480; + this.state = 490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1721,15 +1728,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 24, FlinkSqlParser.RULE_showStatement); let _la: number; try { - this.state = 523; + this.state = 533; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 481; + this.state = 491; this.match(FlinkSqlParser.KW_SHOW); - this.state = 482; + this.state = 492; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 90 || _la === 423 || _la === 465)) { this.errorHandler.recoverInline(this); @@ -1743,11 +1750,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 483; + this.state = 493; this.match(FlinkSqlParser.KW_SHOW); - this.state = 484; + this.state = 494; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 485; + this.state = 495; _la = this.tokenStream.LA(1); if(!(_la === 442 || _la === 448)) { this.errorHandler.recoverInline(this); @@ -1761,16 +1768,16 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 486; + this.state = 496; this.match(FlinkSqlParser.KW_SHOW); - this.state = 487; + this.state = 497; this.match(FlinkSqlParser.KW_TABLES); - this.state = 490; + this.state = 500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151 || _la === 170) { { - this.state = 488; + this.state = 498; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1779,17 +1786,17 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 489; + this.state = 499; this.databasePath(); } } - this.state = 493; + this.state = 503; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203 || _la === 242) { { - this.state = 492; + this.state = 502; this.likePredicate(); } } @@ -1799,11 +1806,11 @@ export class FlinkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 495; + this.state = 505; this.match(FlinkSqlParser.KW_SHOW); - this.state = 496; + this.state = 506; this.match(FlinkSqlParser.KW_COLUMNS); - this.state = 497; + this.state = 507; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1812,28 +1819,28 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 500; + this.state = 510; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { case 1: { - this.state = 498; + this.state = 508; this.viewPath(); } break; case 2: { - this.state = 499; + this.state = 509; this.tablePath(); } break; } - this.state = 503; + this.state = 513; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203 || _la === 242) { { - this.state = 502; + this.state = 512; this.likePredicate(); } } @@ -1843,26 +1850,26 @@ export class FlinkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 505; + this.state = 515; this.match(FlinkSqlParser.KW_SHOW); - this.state = 506; + this.state = 516; this.match(FlinkSqlParser.KW_CREATE); - this.state = 511; + this.state = 521; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_TABLE: { - this.state = 507; + this.state = 517; this.match(FlinkSqlParser.KW_TABLE); - this.state = 508; + this.state = 518; this.tablePath(); } break; case FlinkSqlParser.KW_VIEW: { - this.state = 509; + this.state = 519; this.match(FlinkSqlParser.KW_VIEW); - this.state = 510; + this.state = 520; this.viewPath(); } break; @@ -1874,38 +1881,38 @@ export class FlinkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 513; + this.state = 523; this.match(FlinkSqlParser.KW_SHOW); - this.state = 515; + this.state = 525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 412) { { - this.state = 514; + this.state = 524; this.match(FlinkSqlParser.KW_USER); } } - this.state = 517; + this.state = 527; this.match(FlinkSqlParser.KW_FUNCTIONS); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 518; + this.state = 528; this.match(FlinkSqlParser.KW_SHOW); - this.state = 520; + this.state = 530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 519; + this.state = 529; this.match(FlinkSqlParser.KW_FULL); } } - this.state = 522; + this.state = 532; this.match(FlinkSqlParser.KW_MODULES); } break; @@ -1931,20 +1938,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 525; + this.state = 535; this.match(FlinkSqlParser.KW_LOAD); - this.state = 526; + this.state = 536; this.match(FlinkSqlParser.KW_MODULE); - this.state = 527; + this.state = 537; this.uid(); - this.state = 530; + this.state = 540; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 528; + this.state = 538; this.match(FlinkSqlParser.KW_WITH); - this.state = 529; + this.state = 539; this.tablePropertyList(); } break; @@ -1971,11 +1978,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 532; + this.state = 542; this.match(FlinkSqlParser.KW_UNLOAD); - this.state = 533; + this.state = 543; this.match(FlinkSqlParser.KW_MODULE); - this.state = 534; + this.state = 544; this.uid(); } } @@ -1999,14 +2006,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 536; + this.state = 546; this.match(FlinkSqlParser.KW_SET); - this.state = 538; + this.state = 548; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 537; + this.state = 547; this.tableProperty(); } break; @@ -2033,14 +2040,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 540; + this.state = 550; this.match(FlinkSqlParser.KW_RESET); - this.state = 542; + this.state = 552; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 21, this.context) ) { case 1: { - this.state = 541; + this.state = 551; this.tablePropertyKey(); } break; @@ -2068,7 +2075,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 544; + this.state = 554; _la = this.tokenStream.LA(1); if(!(_la === 438 || _la === 490)) { this.errorHandler.recoverInline(this); @@ -2077,9 +2084,9 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 545; + this.state = 555; this.match(FlinkSqlParser.KW_JAR); - this.state = 546; + this.state = 556; this.jarFileName(); } } @@ -2102,28 +2109,28 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 36, FlinkSqlParser.RULE_dtAddStatement); let _la: number; try { - this.state = 598; + this.state = 608; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 548; + this.state = 558; this.match(FlinkSqlParser.KW_ADD); - this.state = 549; + this.state = 559; this.match(FlinkSqlParser.KW_JAR); - this.state = 550; + this.state = 560; this.match(FlinkSqlParser.KW_WITH); - this.state = 551; + this.state = 561; this.dtFilePath(); - this.state = 554; + this.state = 564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 552; + this.state = 562; this.match(FlinkSqlParser.KW_AS); - this.state = 553; + this.state = 563; this.uid(); } } @@ -2133,34 +2140,34 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 556; + this.state = 566; this.match(FlinkSqlParser.KW_ADD); - this.state = 557; + this.state = 567; this.match(FlinkSqlParser.KW_FILE); - this.state = 558; + this.state = 568; this.match(FlinkSqlParser.KW_WITH); - this.state = 559; + this.state = 569; this.dtFilePath(); - this.state = 562; + this.state = 572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 560; + this.state = 570; this.match(FlinkSqlParser.KW_AS); - this.state = 561; + this.state = 571; this.uid(); } } - this.state = 566; + this.state = 576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 312) { { - this.state = 564; + this.state = 574; this.match(FlinkSqlParser.KW_RENAME); - this.state = 565; + this.state = 575; this.uid(); } } @@ -2170,9 +2177,9 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 568; + this.state = 578; this.match(FlinkSqlParser.KW_ADD); - this.state = 569; + this.state = 579; _la = this.tokenStream.LA(1); if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 47) !== 0))) { this.errorHandler.recoverInline(this); @@ -2181,70 +2188,70 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 570; + this.state = 580; this.match(FlinkSqlParser.KW_WITH); - this.state = 571; + this.state = 581; this.dtFilePath(); - this.state = 572; + this.state = 582; this.match(FlinkSqlParser.KW_RENAME); - this.state = 573; + this.state = 583; this.uid(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 575; + this.state = 585; this.match(FlinkSqlParser.KW_ADD); - this.state = 576; + this.state = 586; this.match(FlinkSqlParser.KW_PYTHON_PARAMETER); - this.state = 577; + this.state = 587; this.dtFilePath(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 578; + this.state = 588; this.match(FlinkSqlParser.KW_ADD); - this.state = 579; + this.state = 589; this.match(FlinkSqlParser.KW_ENGINE); - this.state = 580; + this.state = 590; this.match(FlinkSqlParser.KW_FILE); - this.state = 581; + this.state = 591; this.match(FlinkSqlParser.KW_WITH); - this.state = 582; + this.state = 592; this.dtFilePath(); - this.state = 583; + this.state = 593; this.match(FlinkSqlParser.KW_RENAME); - this.state = 584; + this.state = 594; this.uid(); - this.state = 585; + this.state = 595; this.match(FlinkSqlParser.KW_KEY); - this.state = 586; + this.state = 596; this.uid(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 588; + this.state = 598; this.match(FlinkSqlParser.KW_ADD); - this.state = 589; + this.state = 599; this.match(FlinkSqlParser.KW_CONFIG); - this.state = 590; + this.state = 600; this.match(FlinkSqlParser.KW_FILE); - this.state = 591; + this.state = 601; this.match(FlinkSqlParser.KW_WITH); - this.state = 592; + this.state = 602; this.dtFilePath(); - this.state = 593; + this.state = 603; this.match(FlinkSqlParser.KW_FOR); - this.state = 594; + this.state = 604; this.uid(); - this.state = 595; + this.state = 605; this.match(FlinkSqlParser.KW_AS); - this.state = 596; + this.state = 606; this.uid(); } break; @@ -2272,7 +2279,7 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 604; + this.state = 614; this.errorHandler.sync(this); alternative = 1; do { @@ -2280,17 +2287,17 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 601; + this.state = 611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 535) { { - this.state = 600; + this.state = 610; this.match(FlinkSqlParser.SLASH_SIGN); } } - this.state = 603; + this.state = 613; this.uid(); } } @@ -2298,7 +2305,7 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 606; + this.state = 616; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -2324,18 +2331,18 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 610; + this.state = 620; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 608; + this.state = 618; this.simpleCreateTable(); } break; case 2: { - this.state = 609; + this.state = 619; this.createTableAsSelect(); } break; @@ -2364,122 +2371,122 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 612; + this.state = 622; this.match(FlinkSqlParser.KW_CREATE); - this.state = 614; + this.state = 624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 613; + this.state = 623; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 616; + this.state = 626; this.match(FlinkSqlParser.KW_TABLE); - this.state = 618; + this.state = 628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 617; + this.state = 627; this.ifNotExists(); } } - this.state = 620; + this.state = 630; this.tablePathCreate(); - this.state = 621; + this.state = 631; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 622; + this.state = 632; this.columnOptionDefinition(); - this.state = 627; + this.state = 637; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 623; + this.state = 633; this.match(FlinkSqlParser.COMMA); - this.state = 624; + this.state = 634; this.columnOptionDefinition(); } } } - this.state = 629; + this.state = 639; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); } - this.state = 632; + this.state = 642; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 630; + this.state = 640; this.match(FlinkSqlParser.COMMA); - this.state = 631; + this.state = 641; this.watermarkDefinition(); } break; } - this.state = 636; + this.state = 646; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: { - this.state = 634; + this.state = 644; this.match(FlinkSqlParser.COMMA); - this.state = 635; + this.state = 645; this.tableConstraint(); } break; } - this.state = 640; + this.state = 650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 638; + this.state = 648; this.match(FlinkSqlParser.COMMA); - this.state = 639; + this.state = 649; this.selfDefinitionClause(); } } - this.state = 642; + this.state = 652; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 645; + this.state = 655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 643; + this.state = 653; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 644; + this.state = 654; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 648; + this.state = 658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 270) { { - this.state = 647; + this.state = 657; this.partitionDefinition(); } } - this.state = 650; + this.state = 660; this.withOption(); - this.state = 652; + this.state = 662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 203) { { - this.state = 651; + this.state = 661; this.likeDefinition(); } } @@ -2507,32 +2514,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 654; + this.state = 664; this.match(FlinkSqlParser.KW_CREATE); - this.state = 655; + this.state = 665; this.match(FlinkSqlParser.KW_TABLE); - this.state = 657; + this.state = 667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 656; + this.state = 666; this.ifNotExists(); } } - this.state = 659; + this.state = 669; this.tablePathCreate(); - this.state = 660; + this.state = 670; this.withOption(); - this.state = 663; + this.state = 673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 661; + this.state = 671; this.match(FlinkSqlParser.KW_AS); - this.state = 662; + this.state = 672; this.queryStatement(0); } } @@ -2557,27 +2564,27 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnOptionDefinitionContext(this.context, this.state); this.enterRule(localContext, 46, FlinkSqlParser.RULE_columnOptionDefinition); try { - this.state = 668; + this.state = 678; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 665; + this.state = 675; this.physicalColumnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 666; + this.state = 676; this.metadataColumnDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 667; + this.state = 677; this.computedColumnDefinition(); } break; @@ -2604,28 +2611,28 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 670; + this.state = 680; this.columnNameCreate(); - this.state = 671; + this.state = 681; this.columnType(); - this.state = 673; + this.state = 683; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 242 || _la === 245 || _la === 289) { { - this.state = 672; + this.state = 682; this.columnConstraint(); } } - this.state = 677; + this.state = 687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 675; + this.state = 685; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 676; + this.state = 686; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -2650,20 +2657,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnNameCreateContext(this.context, this.state); this.enterRule(localContext, 50, FlinkSqlParser.RULE_columnNameCreate); try { - this.state = 681; + this.state = 691; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 679; + this.state = 689; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 680; + this.state = 690; this.expression(); } break; @@ -2687,20 +2694,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 52, FlinkSqlParser.RULE_columnName); try { - this.state = 685; + this.state = 695; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 683; + this.state = 693; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 684; + this.state = 694; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -2728,7 +2735,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 687; + this.state = 697; this.uid(); } } @@ -2753,27 +2760,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 689; + this.state = 699; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 690; + this.state = 700; this.columnName(); - this.state = 695; + this.state = 705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 691; + this.state = 701; this.match(FlinkSqlParser.COMMA); - this.state = 692; + this.state = 702; this.columnName(); } } - this.state = 697; + this.state = 707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 698; + this.state = 708; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -2796,7 +2803,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 58, FlinkSqlParser.RULE_columnType); let _la: number; try { - this.state = 737; + this.state = 747; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_BOOLEAN: @@ -2804,7 +2811,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 700; + this.state = 710; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 32 || _la === 91 || _la === 245)) { @@ -2832,7 +2839,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 2); { - this.state = 701; + this.state = 711; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 262275) !== 0) || _la === 92 || _la === 178 || _la === 179 || _la === 345 || _la === 361 || ((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 521) !== 0) || _la === 417 || _la === 418)) { @@ -2842,12 +2849,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 703; + this.state = 713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 702; + this.state = 712; this.lengthOneDimension(); } } @@ -2857,24 +2864,24 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 705; + this.state = 715; localContext._colType = this.match(FlinkSqlParser.KW_TIMESTAMP); - this.state = 707; + this.state = 717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 706; + this.state = 716; this.lengthOneDimension(); } } - this.state = 715; + this.state = 725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 434 || _la === 436) { { - this.state = 709; + this.state = 719; _la = this.tokenStream.LA(1); if(!(_la === 434 || _la === 436)) { this.errorHandler.recoverInline(this); @@ -2883,19 +2890,19 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 711; + this.state = 721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 207) { { - this.state = 710; + this.state = 720; this.match(FlinkSqlParser.KW_LOCAL); } } - this.state = 713; + this.state = 723; this.match(FlinkSqlParser.KW_TIME); - this.state = 714; + this.state = 724; this.match(FlinkSqlParser.KW_ZONE); } } @@ -2909,7 +2916,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NUMERIC: this.enterOuterAlt(localContext, 4); { - this.state = 717; + this.state = 727; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 16387) !== 0) || _la === 144 || _la === 247)) { @@ -2919,12 +2926,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 719; + this.state = 729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 718; + this.state = 728; this.lengthTwoOptionalDimension(); } } @@ -2935,7 +2942,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MULTISET: this.enterOuterAlt(localContext, 5); { - this.state = 721; + this.state = 731; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 232)) { @@ -2945,12 +2952,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 723; + this.state = 733; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508) { { - this.state = 722; + this.state = 732; this.lengthOneTypeDimension(); } } @@ -2960,14 +2967,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MAP: this.enterOuterAlt(localContext, 6); { - this.state = 725; + this.state = 735; localContext._colType = this.match(FlinkSqlParser.KW_MAP); - this.state = 727; + this.state = 737; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508) { { - this.state = 726; + this.state = 736; this.mapTypeDimension(); } } @@ -2977,14 +2984,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_ROW: this.enterOuterAlt(localContext, 7); { - this.state = 729; + this.state = 739; localContext._colType = this.match(FlinkSqlParser.KW_ROW); - this.state = 731; + this.state = 741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508 || _la === 517) { { - this.state = 730; + this.state = 740; this.rowTypeDimension(); } } @@ -2994,14 +3001,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_RAW: this.enterOuterAlt(localContext, 8); { - this.state = 733; + this.state = 743; localContext._colType = this.match(FlinkSqlParser.KW_RAW); - this.state = 735; + this.state = 745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 734; + this.state = 744; this.lengthTwoStringDimension(); } } @@ -3032,11 +3039,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 739; + this.state = 749; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 740; + this.state = 750; this.decimalLiteral(); - this.state = 741; + this.state = 751; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3061,23 +3068,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 743; + this.state = 753; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 744; + this.state = 754; this.decimalLiteral(); - this.state = 747; + this.state = 757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 745; + this.state = 755; this.match(FlinkSqlParser.COMMA); - this.state = 746; + this.state = 756; this.decimalLiteral(); } } - this.state = 749; + this.state = 759; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3102,23 +3109,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 751; + this.state = 761; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 752; + this.state = 762; this.stringLiteral(); - this.state = 755; + this.state = 765; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 521) { { - this.state = 753; + this.state = 763; this.match(FlinkSqlParser.COMMA); - this.state = 754; + this.state = 764; this.stringLiteral(); } } - this.state = 757; + this.state = 767; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3142,11 +3149,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 759; + this.state = 769; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 760; + this.state = 770; this.columnType(); - this.state = 761; + this.state = 771; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3170,17 +3177,17 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 763; + this.state = 773; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 764; + this.state = 774; this.columnType(); { - this.state = 765; + this.state = 775; this.match(FlinkSqlParser.COMMA); - this.state = 766; + this.state = 776; this.columnType(); } - this.state = 768; + this.state = 778; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3203,68 +3210,68 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 70, FlinkSqlParser.RULE_rowTypeDimension); let _la: number; try { - this.state = 798; + this.state = 808; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 770; + this.state = 780; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 771; + this.state = 781; this.columnName(); - this.state = 772; + this.state = 782; this.columnType(); - this.state = 779; + this.state = 789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 773; + this.state = 783; this.match(FlinkSqlParser.COMMA); - this.state = 774; + this.state = 784; this.columnName(); - this.state = 775; + this.state = 785; this.columnType(); } } - this.state = 781; + this.state = 791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 782; + this.state = 792; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 784; + this.state = 794; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 785; + this.state = 795; this.columnName(); - this.state = 786; + this.state = 796; this.columnType(); - this.state = 793; + this.state = 803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 787; + this.state = 797; this.match(FlinkSqlParser.COMMA); - this.state = 788; + this.state = 798; this.columnName(); - this.state = 789; + this.state = 799; this.columnType(); } } - this.state = 795; + this.state = 805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 796; + this.state = 806; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3291,37 +3298,37 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 72, FlinkSqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 814; + this.state = 824; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CONSTRAINT: case FlinkSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 802; + this.state = 812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 800; + this.state = 810; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 801; + this.state = 811; this.constraintName(); } } - this.state = 804; + this.state = 814; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 805; + this.state = 815; this.match(FlinkSqlParser.KW_KEY); - this.state = 808; + this.state = 818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 806; + this.state = 816; this.match(FlinkSqlParser.KW_NOT); - this.state = 807; + this.state = 817; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3332,17 +3339,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 811; + this.state = 821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 810; + this.state = 820; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 813; + this.state = 823; this.match(FlinkSqlParser.KW_NULL); } break; @@ -3371,30 +3378,30 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 816; + this.state = 826; this.columnNameCreate(); - this.state = 817; + this.state = 827; this.columnType(); - this.state = 818; + this.state = 828; this.match(FlinkSqlParser.KW_METADATA); - this.state = 821; + this.state = 831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 819; + this.state = 829; this.match(FlinkSqlParser.KW_FROM); - this.state = 820; + this.state = 830; this.metadataKey(); } } - this.state = 824; + this.state = 834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 424) { { - this.state = 823; + this.state = 833; this.match(FlinkSqlParser.KW_VIRTUAL); } } @@ -3421,7 +3428,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 826; + this.state = 836; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3446,20 +3453,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 828; + this.state = 838; this.columnNameCreate(); - this.state = 829; + this.state = 839; this.match(FlinkSqlParser.KW_AS); - this.state = 830; + this.state = 840; this.computedColumnExpression(); - this.state = 833; + this.state = 843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 831; + this.state = 841; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 832; + this.state = 842; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3486,7 +3493,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 835; + this.state = 845; this.expression(); } } @@ -3510,15 +3517,15 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 837; + this.state = 847; this.match(FlinkSqlParser.KW_WATERMARK); - this.state = 838; + this.state = 848; this.match(FlinkSqlParser.KW_FOR); - this.state = 839; + this.state = 849; this.columnName(); - this.state = 840; + this.state = 850; this.match(FlinkSqlParser.KW_AS); - this.state = 841; + this.state = 851; this.expression(); } } @@ -3543,27 +3550,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 845; + this.state = 855; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 843; + this.state = 853; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 844; + this.state = 854; this.constraintName(); } } - this.state = 847; + this.state = 857; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 848; + this.state = 858; this.match(FlinkSqlParser.KW_KEY); - this.state = 849; + this.state = 859; this.columnNameList(); - this.state = 850; + this.state = 860; this.match(FlinkSqlParser.KW_NOT); - this.state = 851; + this.state = 861; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3587,7 +3594,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 853; + this.state = 863; this.identifier(); } } @@ -3611,11 +3618,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 855; + this.state = 865; this.match(FlinkSqlParser.KW_PERIOD); - this.state = 856; + this.state = 866; this.match(FlinkSqlParser.KW_FOR); - this.state = 857; + this.state = 867; this.match(FlinkSqlParser.KW_SYSTEM_TIME); } } @@ -3639,11 +3646,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 859; + this.state = 869; this.match(FlinkSqlParser.KW_PARTITIONED); - this.state = 860; + this.state = 870; this.match(FlinkSqlParser.KW_BY); - this.state = 861; + this.state = 871; this.transformList(); } } @@ -3668,27 +3675,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 863; + this.state = 873; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 864; + this.state = 874; this.transform(); - this.state = 869; + this.state = 879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 865; + this.state = 875; this.match(FlinkSqlParser.COMMA); - this.state = 866; + this.state = 876; this.transform(); } } - this.state = 871; + this.state = 881; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 872; + this.state = 882; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3711,14 +3718,14 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 94, FlinkSqlParser.RULE_transform); let _la: number; try { - this.state = 886; + this.state = 896; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: localContext = new IdentityTransformContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 874; + this.state = 884; this.columnName(); } break; @@ -3726,27 +3733,27 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ApplyTransformContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 875; + this.state = 885; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 876; + this.state = 886; this.transformArgument(); - this.state = 881; + this.state = 891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 877; + this.state = 887; this.match(FlinkSqlParser.COMMA); - this.state = 878; + this.state = 888; this.transformArgument(); } } - this.state = 883; + this.state = 893; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 884; + this.state = 894; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3770,20 +3777,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new TransformArgumentContext(this.context, this.state); this.enterRule(localContext, 96, FlinkSqlParser.RULE_transformArgument); try { - this.state = 890; + this.state = 900; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 888; + this.state = 898; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 889; + this.state = 899; this.constant(); } break; @@ -3810,32 +3817,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 892; + this.state = 902; this.match(FlinkSqlParser.KW_LIKE); - this.state = 893; + this.state = 903; this.tablePath(); - this.state = 902; + this.state = 912; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: { - this.state = 894; + this.state = 904; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 898; + this.state = 908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 267 || _la === 456 || _la === 463) { { { - this.state = 895; + this.state = 905; this.likeOption(); } } - this.state = 900; + this.state = 910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 901; + this.state = 911; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3861,14 +3868,14 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 100, FlinkSqlParser.RULE_likeOption); let _la: number; try { - this.state = 908; + this.state = 918; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 904; + this.state = 914; _la = this.tokenStream.LA(1); if(!(_la === 456 || _la === 463)) { this.errorHandler.recoverInline(this); @@ -3877,7 +3884,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 905; + this.state = 915; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 271 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -3893,7 +3900,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 906; + this.state = 916; _la = this.tokenStream.LA(1); if(!(_la === 267 || _la === 456 || _la === 463)) { this.errorHandler.recoverInline(this); @@ -3902,7 +3909,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 907; + this.state = 917; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 459 || _la === 478)) { this.errorHandler.recoverInline(this); @@ -3936,13 +3943,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 910; + this.state = 920; this.match(FlinkSqlParser.KW_CREATE); - this.state = 911; + this.state = 921; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 912; + this.state = 922; this.catalogPathCreate(); - this.state = 913; + this.state = 923; this.withOption(); } } @@ -3967,35 +3974,35 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 915; + this.state = 925; this.match(FlinkSqlParser.KW_CREATE); - this.state = 916; + this.state = 926; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 918; + this.state = 928; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 917; + this.state = 927; this.ifNotExists(); } } - this.state = 920; + this.state = 930; this.databasePathCreate(); - this.state = 923; + this.state = 933; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 921; + this.state = 931; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 922; + this.state = 932; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 925; + this.state = 935; this.withOption(); } } @@ -4020,57 +4027,57 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 927; + this.state = 937; this.match(FlinkSqlParser.KW_CREATE); - this.state = 929; + this.state = 939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 928; + this.state = 938; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 931; + this.state = 941; this.match(FlinkSqlParser.KW_VIEW); - this.state = 933; + this.state = 943; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 932; + this.state = 942; this.ifNotExists(); } } - this.state = 935; + this.state = 945; this.viewPathCreate(); - this.state = 937; + this.state = 947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 936; + this.state = 946; this.columnNameList(); } } - this.state = 941; + this.state = 951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 939; + this.state = 949; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 940; + this.state = 950; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 943; + this.state = 953; this.match(FlinkSqlParser.KW_AS); - this.state = 944; + this.state = 954; this.queryStatement(0); } } @@ -4095,52 +4102,52 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 946; + this.state = 956; this.match(FlinkSqlParser.KW_CREATE); - this.state = 950; + this.state = 960; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 947; + this.state = 957; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 948; + this.state = 958; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 949; + this.state = 959; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 952; + this.state = 962; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 954; + this.state = 964; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 953; + this.state = 963; this.ifNotExists(); } } - this.state = 956; + this.state = 966; this.functionNameCreate(); - this.state = 957; + this.state = 967; this.match(FlinkSqlParser.KW_AS); - this.state = 958; + this.state = 968; this.identifier(); - this.state = 961; + this.state = 971; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 959; + this.state = 969; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 960; + this.state = 970; _la = this.tokenStream.LA(1); if(!(_la === 331 || _la === 466 || _la === 482)) { this.errorHandler.recoverInline(this); @@ -4152,12 +4159,12 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 964; + this.state = 974; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413) { { - this.state = 963; + this.state = 973; this.usingClause(); } } @@ -4185,27 +4192,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 966; + this.state = 976; this.match(FlinkSqlParser.KW_USING); - this.state = 967; + this.state = 977; this.match(FlinkSqlParser.KW_JAR); - this.state = 968; + this.state = 978; this.jarFileName(); - this.state = 974; + this.state = 984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 969; + this.state = 979; this.match(FlinkSqlParser.COMMA); - this.state = 970; + this.state = 980; this.match(FlinkSqlParser.KW_JAR); - this.state = 971; + this.state = 981; this.jarFileName(); } } - this.state = 976; + this.state = 986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4231,7 +4238,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 977; + this.state = 987; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -4256,52 +4263,52 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 979; + this.state = 989; this.match(FlinkSqlParser.KW_ALTER); - this.state = 980; + this.state = 990; this.match(FlinkSqlParser.KW_TABLE); - this.state = 982; + this.state = 992; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 981; + this.state = 991; this.ifExists(); } } - this.state = 984; + this.state = 994; this.tablePath(); - this.state = 990; + this.state = 1000; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { case 1: { - this.state = 985; + this.state = 995; this.renameDefinition(); } break; case 2: { - this.state = 986; + this.state = 996; this.setKeyValueDefinition(); } break; case 3: { - this.state = 987; + this.state = 997; this.addConstraint(); } break; case 4: { - this.state = 988; + this.state = 998; this.dropConstraint(); } break; case 5: { - this.state = 989; + this.state = 999; this.addUnique(); } break; @@ -4329,21 +4336,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 992; + this.state = 1002; this.match(FlinkSqlParser.KW_RENAME); - this.state = 994; + this.state = 1004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { { - this.state = 993; + this.state = 1003; this.uid(); } } - this.state = 996; + this.state = 1006; this.match(FlinkSqlParser.KW_TO); - this.state = 997; + this.state = 1007; this.uid(); } } @@ -4367,9 +4374,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 999; + this.state = 1009; this.match(FlinkSqlParser.KW_SET); - this.state = 1000; + this.state = 1010; this.tablePropertyList(); } } @@ -4394,24 +4401,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1002; + this.state = 1012; this.match(FlinkSqlParser.KW_ADD); - this.state = 1003; + this.state = 1013; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 1004; + this.state = 1014; this.constraintName(); - this.state = 1005; + this.state = 1015; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 1006; + this.state = 1016; this.match(FlinkSqlParser.KW_KEY); - this.state = 1007; + this.state = 1017; this.columnNameList(); - this.state = 1009; + this.state = 1019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1008; + this.state = 1018; this.notForced(); } } @@ -4438,11 +4445,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1011; + this.state = 1021; this.match(FlinkSqlParser.KW_DROP); - this.state = 1012; + this.state = 1022; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 1013; + this.state = 1023; this.constraintName(); } } @@ -4466,11 +4473,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1015; + this.state = 1025; this.match(FlinkSqlParser.KW_ADD); - this.state = 1016; + this.state = 1026; this.match(FlinkSqlParser.KW_UNIQUE); - this.state = 1017; + this.state = 1027; this.columnNameList(); } } @@ -4494,9 +4501,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1019; + this.state = 1029; this.match(FlinkSqlParser.KW_NOT); - this.state = 1020; + this.state = 1030; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -4520,26 +4527,26 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1022; + this.state = 1032; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1023; + this.state = 1033; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1024; + this.state = 1034; this.viewPath(); - this.state = 1028; + this.state = 1038; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RENAME: { - this.state = 1025; + this.state = 1035; this.renameDefinition(); } break; case FlinkSqlParser.KW_AS: { - this.state = 1026; + this.state = 1036; this.match(FlinkSqlParser.KW_AS); - this.state = 1027; + this.state = 1037; this.queryStatement(0); } break; @@ -4568,13 +4575,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1030; + this.state = 1040; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1031; + this.state = 1041; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1032; + this.state = 1042; this.databasePath(); - this.state = 1033; + this.state = 1043; this.setKeyValueDefinition(); } } @@ -4599,52 +4606,52 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1035; + this.state = 1045; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1039; + this.state = 1049; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1036; + this.state = 1046; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1037; + this.state = 1047; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1038; + this.state = 1048; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1041; + this.state = 1051; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1043; + this.state = 1053; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { - this.state = 1042; + this.state = 1052; this.ifExists(); } break; } - this.state = 1045; + this.state = 1055; this.functionName(); - this.state = 1046; + this.state = 1056; this.match(FlinkSqlParser.KW_AS); - this.state = 1047; + this.state = 1057; this.identifier(); - this.state = 1050; + this.state = 1060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 196) { { - this.state = 1048; + this.state = 1058; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 1049; + this.state = 1059; _la = this.tokenStream.LA(1); if(!(_la === 331 || _la === 466 || _la === 482)) { this.errorHandler.recoverInline(this); @@ -4679,21 +4686,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1052; + this.state = 1062; this.match(FlinkSqlParser.KW_DROP); - this.state = 1053; + this.state = 1063; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 1055; + this.state = 1065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1054; + this.state = 1064; this.ifExists(); } } - this.state = 1057; + this.state = 1067; this.catalogPath(); } } @@ -4718,31 +4725,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1059; + this.state = 1069; this.match(FlinkSqlParser.KW_DROP); - this.state = 1061; + this.state = 1071; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 1060; + this.state = 1070; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1063; + this.state = 1073; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1065; + this.state = 1075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1064; + this.state = 1074; this.ifExists(); } } - this.state = 1067; + this.state = 1077; this.tablePath(); } } @@ -4767,28 +4774,28 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1069; + this.state = 1079; this.match(FlinkSqlParser.KW_DROP); - this.state = 1070; + this.state = 1080; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1072; + this.state = 1082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1071; + this.state = 1081; this.ifExists(); } } - this.state = 1074; + this.state = 1084; this.databasePath(); - this.state = 1076; + this.state = 1086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 441 || _la === 491) { { - this.state = 1075; + this.state = 1085; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 441 || _la === 491)) { @@ -4824,31 +4831,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1078; + this.state = 1088; this.match(FlinkSqlParser.KW_DROP); - this.state = 1080; + this.state = 1090; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 498) { { - this.state = 1079; + this.state = 1089; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1082; + this.state = 1092; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1084; + this.state = 1094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1083; + this.state = 1093; this.ifExists(); } } - this.state = 1086; + this.state = 1096; this.viewPath(); } } @@ -4872,39 +4879,39 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1088; + this.state = 1098; this.match(FlinkSqlParser.KW_DROP); - this.state = 1092; + this.state = 1102; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1089; + this.state = 1099; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1090; + this.state = 1100; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1091; + this.state = 1101; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1094; + this.state = 1104; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1096; + this.state = 1106; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1095; + this.state = 1105; this.ifExists(); } break; } - this.state = 1098; + this.state = 1108; this.functionName(); } } @@ -4927,24 +4934,24 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 144, FlinkSqlParser.RULE_insertStatement); let _la: number; try { - this.state = 1107; + this.state = 1117; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1101; + this.state = 1111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 1100; + this.state = 1110; this.match(FlinkSqlParser.KW_EXECUTE); } } - this.state = 1103; + this.state = 1113; this.insertSimpleStatement(); } } @@ -4952,7 +4959,7 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1104; + this.state = 1114; this.insertMulStatementCompatibility(); } break; @@ -4960,9 +4967,9 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1105; + this.state = 1115; this.match(FlinkSqlParser.KW_EXECUTE); - this.state = 1106; + this.state = 1116; this.insertMulStatement(); } } @@ -4990,9 +4997,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1109; + this.state = 1119; this.match(FlinkSqlParser.KW_INSERT); - this.state = 1110; + this.state = 1120; _la = this.tokenStream.LA(1); if(!(_la === 183 || _la === 266)) { this.errorHandler.recoverInline(this); @@ -5001,40 +5008,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1111; + this.state = 1121; this.tablePath(); - this.state = 1120; + this.state = 1130; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1113; + this.state = 1123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1112; + this.state = 1122; this.insertPartitionDefinition(); } } - this.state = 1116; + this.state = 1126; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: { - this.state = 1115; + this.state = 1125; this.columnNameList(); } break; } - this.state = 1118; + this.state = 1128; this.queryStatement(0); } break; case 2: { - this.state = 1119; + this.state = 1129; this.valuesDefinition(); } break; @@ -5061,9 +5068,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1122; + this.state = 1132; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1123; + this.state = 1133; this.tablePropertyList(); } } @@ -5088,23 +5095,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1125; + this.state = 1135; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1126; + this.state = 1136; this.valuesRowDefinition(); - this.state = 1131; + this.state = 1141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1127; + this.state = 1137; this.match(FlinkSqlParser.COMMA); - this.state = 1128; + this.state = 1138; this.valuesRowDefinition(); } } - this.state = 1133; + this.state = 1143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5131,27 +5138,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1134; + this.state = 1144; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1135; + this.state = 1145; this.valueDefinition(); - this.state = 1140; + this.state = 1150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1136; + this.state = 1146; this.match(FlinkSqlParser.COMMA); - this.state = 1137; + this.state = 1147; this.valueDefinition(); } } - this.state = 1142; + this.state = 1152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1143; + this.state = 1153; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5173,20 +5180,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ValueDefinitionContext(this.context, this.state); this.enterRule(localContext, 154, FlinkSqlParser.RULE_valueDefinition); try { - this.state = 1147; + this.state = 1157; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 111, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1145; + this.state = 1155; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1146; + this.state = 1156; this.functionCallExpression(); } break; @@ -5213,31 +5220,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1149; + this.state = 1159; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1150; + this.state = 1160; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1151; + this.state = 1161; this.match(FlinkSqlParser.KW_SET); - this.state = 1152; + this.state = 1162; this.match(FlinkSqlParser.SEMICOLON); - this.state = 1156; + this.state = 1166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1153; + this.state = 1163; this.insertSimpleStatement(); - this.state = 1154; + this.state = 1164; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1158; + this.state = 1168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 177); - this.state = 1160; + this.state = 1170; this.match(FlinkSqlParser.KW_END); } } @@ -5262,29 +5269,29 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1162; + this.state = 1172; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1163; + this.state = 1173; this.match(FlinkSqlParser.KW_SET); - this.state = 1164; + this.state = 1174; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1168; + this.state = 1178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1165; + this.state = 1175; this.insertSimpleStatement(); - this.state = 1166; + this.state = 1176; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1170; + this.state = 1180; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 177); - this.state = 1172; + this.state = 1182; this.match(FlinkSqlParser.KW_END); } } @@ -5321,53 +5328,53 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1197; + this.state = 1207; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 118, this.context) ) { case 1: { - this.state = 1175; + this.state = 1185; this.valuesClause(); } break; case 2: { - this.state = 1176; + this.state = 1186; this.withClause(); - this.state = 1177; + this.state = 1187; this.queryStatement(5); } break; case 3: { - this.state = 1179; + this.state = 1189; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1180; + this.state = 1190; this.queryStatement(0); - this.state = 1181; + this.state = 1191; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: { - this.state = 1183; + this.state = 1193; this.selectClause(); - this.state = 1185; + this.state = 1195; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 114, this.context) ) { case 1: { - this.state = 1184; + this.state = 1194; this.orderByClause(); } break; } - this.state = 1188; + this.state = 1198; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: { - this.state = 1187; + this.state = 1197; this.limitClause(); } break; @@ -5376,24 +5383,24 @@ export class FlinkSqlParser extends SQLParserBase { break; case 5: { - this.state = 1190; + this.state = 1200; this.selectStatement(); - this.state = 1192; + this.state = 1202; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1191; + this.state = 1201; this.orderByClause(); } break; } - this.state = 1195; + this.state = 1205; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1194; + this.state = 1204; this.limitClause(); } break; @@ -5402,7 +5409,7 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1213; + this.state = 1223; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -5416,11 +5423,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QueryStatementContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_queryStatement); - this.state = 1199; + this.state = 1209; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1200; + this.state = 1210; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 180 || _la === 403)) { @@ -5430,34 +5437,34 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1202; + this.state = 1212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5) { { - this.state = 1201; + this.state = 1211; this.match(FlinkSqlParser.KW_ALL); } } - this.state = 1204; + this.state = 1214; localContext._right = this.queryStatement(0); - this.state = 1206; + this.state = 1216; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1205; + this.state = 1215; this.orderByClause(); } break; } - this.state = 1209; + this.state = 1219; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: { - this.state = 1208; + this.state = 1218; this.limitClause(); } break; @@ -5465,7 +5472,7 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1215; + this.state = 1225; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); } @@ -5492,25 +5499,25 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1216; + this.state = 1226; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1217; + this.state = 1227; this.expression(); - this.state = 1222; + this.state = 1232; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 123, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1218; + this.state = 1228; this.match(FlinkSqlParser.COMMA); - this.state = 1219; + this.state = 1229; this.expression(); } } } - this.state = 1224; + this.state = 1234; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 123, this.context); } @@ -5537,23 +5544,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1225; + this.state = 1235; this.match(FlinkSqlParser.KW_WITH); - this.state = 1226; + this.state = 1236; this.withItem(); - this.state = 1231; + this.state = 1241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1227; + this.state = 1237; this.match(FlinkSqlParser.COMMA); - this.state = 1228; + this.state = 1238; this.withItem(); } } - this.state = 1233; + this.state = 1243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5580,45 +5587,45 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1234; + this.state = 1244; this.withItemName(); - this.state = 1246; + this.state = 1256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 1235; + this.state = 1245; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1236; + this.state = 1246; this.columnName(); - this.state = 1241; + this.state = 1251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1237; + this.state = 1247; this.match(FlinkSqlParser.COMMA); - this.state = 1238; + this.state = 1248; this.columnName(); } } - this.state = 1243; + this.state = 1253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1244; + this.state = 1254; this.match(FlinkSqlParser.RR_BRACKET); } } - this.state = 1248; + this.state = 1258; this.match(FlinkSqlParser.KW_AS); - this.state = 1249; + this.state = 1259; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1250; + this.state = 1260; this.queryStatement(0); - this.state = 1251; + this.state = 1261; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5642,7 +5649,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1253; + this.state = 1263; this.identifier(); } } @@ -5664,60 +5671,60 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SelectStatementContext(this.context, this.state); this.enterRule(localContext, 170, FlinkSqlParser.RULE_selectStatement); try { - this.state = 1275; + this.state = 1285; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1255; + this.state = 1265; this.selectClause(); - this.state = 1257; + this.state = 1267; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1256; + this.state = 1266; this.fromClause(); } break; } - this.state = 1260; + this.state = 1270; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: { - this.state = 1259; + this.state = 1269; this.whereClause(); } break; } - this.state = 1263; + this.state = 1273; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: { - this.state = 1262; + this.state = 1272; this.groupByClause(); } break; } - this.state = 1266; + this.state = 1276; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { case 1: { - this.state = 1265; + this.state = 1275; this.havingClause(); } break; } - this.state = 1269; + this.state = 1279; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: { - this.state = 1268; + this.state = 1278; this.windowClause(); } break; @@ -5727,11 +5734,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1271; + this.state = 1281; this.selectClause(); - this.state = 1272; + this.state = 1282; this.fromClause(); - this.state = 1273; + this.state = 1283; this.matchRecognizeClause(); } break; @@ -5758,46 +5765,46 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1277; + this.state = 1287; this.match(FlinkSqlParser.KW_SELECT); - this.state = 1279; + this.state = 1289; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1278; + this.state = 1288; this.setQuantifier(); } break; } - this.state = 1290; + this.state = 1300; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 135, this.context) ) { case 1: { - this.state = 1281; + this.state = 1291; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; case 2: { - this.state = 1282; + this.state = 1292; this.projectItemDefinition(); - this.state = 1287; + this.state = 1297; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1283; + this.state = 1293; this.match(FlinkSqlParser.COMMA); - this.state = 1284; + this.state = 1294; this.projectItemDefinition(); } } } - this.state = 1289; + this.state = 1299; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 134, this.context); } @@ -5825,37 +5832,37 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 174, FlinkSqlParser.RULE_projectItemDefinition); let _la: number; try { - this.state = 1307; + this.state = 1317; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1292; + this.state = 1302; this.overWindowItem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1293; + this.state = 1303; this.expression(); - this.state = 1298; + this.state = 1308; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: { - this.state = 1295; + this.state = 1305; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { case 1: { - this.state = 1294; + this.state = 1304; this.match(FlinkSqlParser.KW_AS); } break; } - this.state = 1297; + this.state = 1307; this.columnName(); } break; @@ -5865,24 +5872,24 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1300; + this.state = 1310; this.columnName(); - this.state = 1305; + this.state = 1315; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { case 1: { - this.state = 1302; + this.state = 1312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1301; + this.state = 1311; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1304; + this.state = 1314; this.expression(); } break; @@ -5909,36 +5916,36 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new OverWindowItemContext(this.context, this.state); this.enterRule(localContext, 176, FlinkSqlParser.RULE_overWindowItem); try { - this.state = 1321; + this.state = 1331; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 141, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1309; + this.state = 1319; this.primaryExpression(0); - this.state = 1310; + this.state = 1320; this.match(FlinkSqlParser.KW_OVER); - this.state = 1311; + this.state = 1321; this.windowSpec(); - this.state = 1312; + this.state = 1322; this.match(FlinkSqlParser.KW_AS); - this.state = 1313; + this.state = 1323; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1315; + this.state = 1325; this.primaryExpression(0); - this.state = 1316; + this.state = 1326; this.match(FlinkSqlParser.KW_OVER); - this.state = 1317; + this.state = 1327; this.errorCapturingIdentifier(); - this.state = 1318; + this.state = 1328; this.match(FlinkSqlParser.KW_AS); - this.state = 1319; + this.state = 1329; this.identifier(); } break; @@ -5964,9 +5971,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1323; + this.state = 1333; this.match(FlinkSqlParser.KW_FROM); - this.state = 1324; + this.state = 1334; this.tableExpression(0); } } @@ -6003,28 +6010,28 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1337; + this.state = 1347; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { case 1: { - this.state = 1327; + this.state = 1337; this.tableReference(); - this.state = 1332; + this.state = 1342; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1328; + this.state = 1338; this.match(FlinkSqlParser.COMMA); - this.state = 1329; + this.state = 1339; this.tableReference(); } } } - this.state = 1334; + this.state = 1344; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 142, this.context); } @@ -6032,19 +6039,19 @@ export class FlinkSqlParser extends SQLParserBase { break; case 2: { - this.state = 1335; + this.state = 1345; this.inlineDataValueClause(); } break; case 3: { - this.state = 1336; + this.state = 1346; this.windowTVFClause(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1360; + this.state = 1370; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -6054,22 +6061,22 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1358; + this.state = 1368; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1339; + this.state = 1349; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1340; + this.state = 1350; this.match(FlinkSqlParser.KW_CROSS); - this.state = 1341; + this.state = 1351; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1342; + this.state = 1352; this.tableExpression(4); } break; @@ -6077,26 +6084,26 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1343; + this.state = 1353; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1345; + this.state = 1355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 234) { { - this.state = 1344; + this.state = 1354; this.match(FlinkSqlParser.KW_NATURAL); } } - this.state = 1348; + this.state = 1358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 174 || _la === 202 || _la === 318) { { - this.state = 1347; + this.state = 1357; _la = this.tokenStream.LA(1); if(!(_la === 152 || _la === 174 || _la === 202 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -6108,26 +6115,26 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1351; + this.state = 1361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 262) { { - this.state = 1350; + this.state = 1360; this.match(FlinkSqlParser.KW_OUTER); } } - this.state = 1353; + this.state = 1363; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1354; + this.state = 1364; this.tableExpression(0); - this.state = 1356; + this.state = 1366; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { case 1: { - this.state = 1355; + this.state = 1365; this.joinCondition(); } break; @@ -6137,7 +6144,7 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1362; + this.state = 1372; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 149, this.context); } @@ -6163,14 +6170,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1363; + this.state = 1373; this.tablePrimary(); - this.state = 1365; + this.state = 1375; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 150, this.context) ) { case 1: { - this.state = 1364; + this.state = 1374; this.tableAlias(); } break; @@ -6196,30 +6203,30 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 184, FlinkSqlParser.RULE_tablePrimary); let _la: number; try { - this.state = 1396; + this.state = 1406; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1368; + this.state = 1378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 374) { { - this.state = 1367; + this.state = 1377; this.match(FlinkSqlParser.KW_TABLE); } } - this.state = 1370; + this.state = 1380; this.tablePath(); - this.state = 1372; + this.state = 1382; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1371; + this.state = 1381; this.systemTimePeriod(); } break; @@ -6229,14 +6236,14 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1374; + this.state = 1384; this.viewPath(); - this.state = 1376; + this.state = 1386; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1375; + this.state = 1385; this.systemTimePeriod(); } break; @@ -6246,49 +6253,49 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1378; + this.state = 1388; this.match(FlinkSqlParser.KW_LATERAL); - this.state = 1379; + this.state = 1389; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1380; + this.state = 1390; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1381; + this.state = 1391; this.functionCallExpression(); - this.state = 1382; + this.state = 1392; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1385; + this.state = 1395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 1384; + this.state = 1394; this.match(FlinkSqlParser.KW_LATERAL); } } - this.state = 1387; + this.state = 1397; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1388; + this.state = 1398; this.queryStatement(0); - this.state = 1389; + this.state = 1399; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1391; + this.state = 1401; this.match(FlinkSqlParser.KW_UNNEST); - this.state = 1392; + this.state = 1402; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1393; + this.state = 1403; this.expression(); - this.state = 1394; + this.state = 1404; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -6314,15 +6321,15 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1398; + this.state = 1408; this.match(FlinkSqlParser.KW_FOR); - this.state = 1399; + this.state = 1409; this.match(FlinkSqlParser.KW_SYSTEM_TIME); - this.state = 1400; + this.state = 1410; this.match(FlinkSqlParser.KW_AS); - this.state = 1401; + this.state = 1411; this.match(FlinkSqlParser.KW_OF); - this.state = 1402; + this.state = 1412; this.dateTimeExpression(); } } @@ -6346,7 +6353,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1404; + this.state = 1414; this.expression(); } } @@ -6370,13 +6377,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1406; + this.state = 1416; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1407; + this.state = 1417; this.valuesDefinition(); - this.state = 1408; + this.state = 1418; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1409; + this.state = 1419; this.tableAlias(); } } @@ -6400,13 +6407,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1411; + this.state = 1421; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1412; + this.state = 1422; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1413; + this.state = 1423; this.windowTVFExpression(); - this.state = 1414; + this.state = 1424; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6431,29 +6438,29 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1416; + this.state = 1426; this.windowTVFName(); - this.state = 1417; + this.state = 1427; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1418; + this.state = 1428; this.windowTVFParam(); - this.state = 1423; + this.state = 1433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1419; + this.state = 1429; this.match(FlinkSqlParser.COMMA); - this.state = 1420; + this.state = 1430; this.windowTVFParam(); } } - this.state = 1425; + this.state = 1435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1426; + this.state = 1436; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6478,7 +6485,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1428; + this.state = 1438; _la = this.tokenStream.LA(1); if(!(_la === 446 || _la === 460 || _la === 500)) { this.errorHandler.recoverInline(this); @@ -6507,64 +6514,64 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new WindowTVFParamContext(this.context, this.state); this.enterRule(localContext, 198, FlinkSqlParser.RULE_windowTVFParam); try { - this.state = 1445; + this.state = 1455; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1430; + this.state = 1440; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1431; + this.state = 1441; this.timeAttrColumn(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1432; + this.state = 1442; this.columnDescriptor(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1433; + this.state = 1443; this.timeIntervalExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1434; + this.state = 1444; this.match(FlinkSqlParser.KW_DATA); - this.state = 1435; + this.state = 1445; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1436; + this.state = 1446; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1437; + this.state = 1447; this.timeAttrColumn(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1438; + this.state = 1448; this.match(FlinkSqlParser.KW_TIMECOL); - this.state = 1439; + this.state = 1449; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1440; + this.state = 1450; this.columnDescriptor(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1441; + this.state = 1451; this.timeIntervalParamName(); - this.state = 1442; + this.state = 1452; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1443; + this.state = 1453; this.timeIntervalExpression(); } break; @@ -6591,7 +6598,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1447; + this.state = 1457; _la = this.tokenStream.LA(1); if(!(_la === 251 || _la === 447 || ((((_la - 495)) & ~0x1F) === 0 && ((1 << (_la - 495)) & 23) !== 0))) { this.errorHandler.recoverInline(this); @@ -6622,13 +6629,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1449; + this.state = 1459; this.match(FlinkSqlParser.KW_DESCRIPTOR); - this.state = 1450; + this.state = 1460; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1451; + this.state = 1461; this.columnName(); - this.state = 1452; + this.state = 1462; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6650,24 +6657,24 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new JoinConditionContext(this.context, this.state); this.enterRule(localContext, 204, FlinkSqlParser.RULE_joinCondition); try { - this.state = 1458; + this.state = 1468; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1454; + this.state = 1464; this.match(FlinkSqlParser.KW_ON); - this.state = 1455; + this.state = 1465; this.booleanExpression(0); } break; case FlinkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1456; + this.state = 1466; this.match(FlinkSqlParser.KW_USING); - this.state = 1457; + this.state = 1467; this.columnNameList(); } break; @@ -6695,9 +6702,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1460; + this.state = 1470; this.match(FlinkSqlParser.KW_WHERE); - this.state = 1461; + this.state = 1471; this.booleanExpression(0); } } @@ -6722,27 +6729,27 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1463; + this.state = 1473; this.match(FlinkSqlParser.KW_GROUP); - this.state = 1464; + this.state = 1474; this.match(FlinkSqlParser.KW_BY); - this.state = 1465; + this.state = 1475; this.groupItemDefinition(); - this.state = 1470; + this.state = 1480; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 159, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1466; + this.state = 1476; this.match(FlinkSqlParser.COMMA); - this.state = 1467; + this.state = 1477; this.groupItemDefinition(); } } } - this.state = 1472; + this.state = 1482; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 159, this.context); } @@ -6767,121 +6774,121 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 210, FlinkSqlParser.RULE_groupItemDefinition); let _la: number; try { - this.state = 1513; + this.state = 1523; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1473; + this.state = 1483; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1474; + this.state = 1484; this.groupWindowFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1475; + this.state = 1485; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1476; + this.state = 1486; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1477; + this.state = 1487; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1478; + this.state = 1488; this.expression(); - this.state = 1483; + this.state = 1493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1479; + this.state = 1489; this.match(FlinkSqlParser.COMMA); - this.state = 1480; + this.state = 1490; this.expression(); } } - this.state = 1485; + this.state = 1495; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1486; + this.state = 1496; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1488; + this.state = 1498; this.groupingSetsNotationName(); - this.state = 1489; + this.state = 1499; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1490; + this.state = 1500; this.expression(); - this.state = 1495; + this.state = 1505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1491; + this.state = 1501; this.match(FlinkSqlParser.COMMA); - this.state = 1492; + this.state = 1502; this.expression(); } } - this.state = 1497; + this.state = 1507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1498; + this.state = 1508; this.match(FlinkSqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1500; + this.state = 1510; this.groupingSets(); - this.state = 1501; + this.state = 1511; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1502; + this.state = 1512; this.groupItemDefinition(); - this.state = 1507; + this.state = 1517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1503; + this.state = 1513; this.match(FlinkSqlParser.COMMA); - this.state = 1504; + this.state = 1514; this.groupItemDefinition(); } } - this.state = 1509; + this.state = 1519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1510; + this.state = 1520; this.match(FlinkSqlParser.RR_BRACKET); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1512; + this.state = 1522; this.expression(); } break; @@ -6907,9 +6914,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1515; + this.state = 1525; this.match(FlinkSqlParser.KW_GROUPING); - this.state = 1516; + this.state = 1526; this.match(FlinkSqlParser.KW_SETS); } } @@ -6934,7 +6941,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1518; + this.state = 1528; _la = this.tokenStream.LA(1); if(!(_la === 74 || _la === 321)) { this.errorHandler.recoverInline(this); @@ -6965,17 +6972,17 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1520; + this.state = 1530; this.groupWindowFunctionName(); - this.state = 1521; + this.state = 1531; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1522; + this.state = 1532; this.timeAttrColumn(); - this.state = 1523; + this.state = 1533; this.match(FlinkSqlParser.COMMA); - this.state = 1524; + this.state = 1534; this.timeIntervalExpression(); - this.state = 1525; + this.state = 1535; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7000,7 +7007,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1527; + this.state = 1537; _la = this.tokenStream.LA(1); if(!(_la === 460 || _la === 493 || _la === 500)) { this.errorHandler.recoverInline(this); @@ -7031,7 +7038,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1529; + this.state = 1539; this.uid(); } } @@ -7055,9 +7062,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1531; + this.state = 1541; this.match(FlinkSqlParser.KW_HAVING); - this.state = 1532; + this.state = 1542; this.booleanExpression(0); } } @@ -7082,25 +7089,25 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1534; + this.state = 1544; this.match(FlinkSqlParser.KW_WINDOW); - this.state = 1535; + this.state = 1545; this.namedWindow(); - this.state = 1540; + this.state = 1550; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 164, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1536; + this.state = 1546; this.match(FlinkSqlParser.COMMA); - this.state = 1537; + this.state = 1547; this.namedWindow(); } } } - this.state = 1542; + this.state = 1552; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 164, this.context); } @@ -7126,11 +7133,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1543; + this.state = 1553; localContext._name = this.errorCapturingIdentifier(); - this.state = 1544; + this.state = 1554; this.match(FlinkSqlParser.KW_AS); - this.state = 1545; + this.state = 1555; this.windowSpec(); } } @@ -7155,49 +7162,49 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1548; + this.state = 1558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { { - this.state = 1547; + this.state = 1557; localContext._name = this.errorCapturingIdentifier(); } } - this.state = 1550; + this.state = 1560; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1552; + this.state = 1562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1551; + this.state = 1561; this.partitionByClause(); } } - this.state = 1555; + this.state = 1565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 1554; + this.state = 1564; this.orderByClause(); } } - this.state = 1558; + this.state = 1568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293 || _la === 323) { { - this.state = 1557; + this.state = 1567; this.windowFrame(); } } - this.state = 1560; + this.state = 1570; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7222,90 +7229,90 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1562; + this.state = 1572; this.match(FlinkSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1563; + this.state = 1573; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1565; + this.state = 1575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1564; + this.state = 1574; this.partitionByClause(); } } - this.state = 1568; + this.state = 1578; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 1567; + this.state = 1577; this.orderByClause(); } } - this.state = 1571; + this.state = 1581; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1570; + this.state = 1580; this.measuresClause(); } } - this.state = 1574; + this.state = 1584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5 || _la === 255) { { - this.state = 1573; + this.state = 1583; this.outputMode(); } } - this.state = 1577; + this.state = 1587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 439) { { - this.state = 1576; + this.state = 1586; this.afterMatchStrategy(); } } - this.state = 1580; + this.state = 1590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 272) { { - this.state = 1579; + this.state = 1589; this.patternDefinition(); } } - this.state = 1582; + this.state = 1592; this.patternVariablesDefinition(); - this.state = 1583; + this.state = 1593; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1588; + this.state = 1598; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { case 1: { - this.state = 1585; + this.state = 1595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1584; + this.state = 1594; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1587; + this.state = 1597; this.identifier(); } break; @@ -7333,27 +7340,27 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1590; + this.state = 1600; this.match(FlinkSqlParser.KW_ORDER); - this.state = 1591; + this.state = 1601; this.match(FlinkSqlParser.KW_BY); - this.state = 1592; + this.state = 1602; this.orderItemDefinition(); - this.state = 1597; + this.state = 1607; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1593; + this.state = 1603; this.match(FlinkSqlParser.COMMA); - this.state = 1594; + this.state = 1604; this.orderItemDefinition(); } } } - this.state = 1599; + this.state = 1609; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); } @@ -7380,14 +7387,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1600; + this.state = 1610; this.columnName(); - this.state = 1602; + this.state = 1612; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { case 1: { - this.state = 1601; + this.state = 1611; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 440 || _la === 451)) { @@ -7400,14 +7407,14 @@ export class FlinkSqlParser extends SQLParserBase { } break; } - this.state = 1606; + this.state = 1616; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 179, this.context) ) { case 1: { - this.state = 1604; + this.state = 1614; this.match(FlinkSqlParser.KW_NULLS); - this.state = 1605; + this.state = 1615; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 458 || _la === 468)) { @@ -7442,14 +7449,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1608; + this.state = 1618; this.match(FlinkSqlParser.KW_LIMIT); - this.state = 1611; + this.state = 1621; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: { - this.state = 1609; + this.state = 1619; this.match(FlinkSqlParser.KW_ALL); } break; @@ -7612,7 +7619,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.BIT_STRING: case FlinkSqlParser.ID_LITERAL: { - this.state = 1610; + this.state = 1620; localContext._limit = this.expression(); } break; @@ -7642,53 +7649,53 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1613; + this.state = 1623; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1614; + this.state = 1624; this.match(FlinkSqlParser.KW_BY); - this.state = 1617; + this.state = 1627; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: { - this.state = 1615; + this.state = 1625; this.columnName(); } break; case 2: { - this.state = 1616; + this.state = 1626; this.primaryExpression(0); } break; } - this.state = 1626; + this.state = 1636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1619; + this.state = 1629; this.match(FlinkSqlParser.COMMA); - this.state = 1622; + this.state = 1632; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: { - this.state = 1620; + this.state = 1630; this.columnName(); } break; case 2: { - this.state = 1621; + this.state = 1631; this.primaryExpression(0); } break; } } } - this.state = 1628; + this.state = 1638; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7712,14 +7719,14 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new QuantifiersContext(this.context, this.state); this.enterRule(localContext, 240, FlinkSqlParser.RULE_quantifiers); try { - this.state = 1645; + this.state = 1655; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1629; + this.state = 1639; this.match(FlinkSqlParser.ASTERISK_SIGN); } } @@ -7728,7 +7735,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 1630; + this.state = 1640; this.match(FlinkSqlParser.ADD_SIGN); } } @@ -7737,7 +7744,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1631; + this.state = 1641; this.match(FlinkSqlParser.QUESTION_MARK_SIGN); } } @@ -7746,15 +7753,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 4); { { - this.state = 1632; + this.state = 1642; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1633; + this.state = 1643; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1634; + this.state = 1644; this.match(FlinkSqlParser.COMMA); - this.state = 1635; + this.state = 1645; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1636; + this.state = 1646; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7763,13 +7770,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 5); { { - this.state = 1637; + this.state = 1647; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1638; + this.state = 1648; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1639; + this.state = 1649; this.match(FlinkSqlParser.COMMA); - this.state = 1640; + this.state = 1650; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7778,13 +7785,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 6); { { - this.state = 1641; + this.state = 1651; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1642; + this.state = 1652; this.match(FlinkSqlParser.COMMA); - this.state = 1643; + this.state = 1653; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1644; + this.state = 1654; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -7812,23 +7819,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1647; + this.state = 1657; this.match(FlinkSqlParser.KW_MEASURES); - this.state = 1648; + this.state = 1658; this.projectItemDefinition(); - this.state = 1653; + this.state = 1663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1649; + this.state = 1659; this.match(FlinkSqlParser.COMMA); - this.state = 1650; + this.state = 1660; this.projectItemDefinition(); } } - this.state = 1655; + this.state = 1665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7855,32 +7862,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1656; + this.state = 1666; this.match(FlinkSqlParser.KW_PATTERN); - this.state = 1657; + this.state = 1667; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1659; + this.state = 1669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1658; + this.state = 1668; this.patternVariable(); } } - this.state = 1661; + this.state = 1671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 539 || _la === 542); - this.state = 1663; + this.state = 1673; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1665; + this.state = 1675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 435) { { - this.state = 1664; + this.state = 1674; this.withinClause(); } } @@ -7908,14 +7915,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1667; + this.state = 1677; this.unquotedIdentifier(); - this.state = 1669; + this.state = 1679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 519)) & ~0x1F) === 0 && ((1 << (_la - 519)) & 135681) !== 0)) { { - this.state = 1668; + this.state = 1678; this.quantifiers(); } } @@ -7940,32 +7947,32 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new OutputModeContext(this.context, this.state); this.enterRule(localContext, 248, FlinkSqlParser.RULE_outputMode); try { - this.state = 1679; + this.state = 1689; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1671; + this.state = 1681; this.match(FlinkSqlParser.KW_ALL); - this.state = 1672; + this.state = 1682; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1673; + this.state = 1683; this.match(FlinkSqlParser.KW_PER); - this.state = 1674; + this.state = 1684; this.match(FlinkSqlParser.KW_MATCH); } break; case FlinkSqlParser.KW_ONE: this.enterOuterAlt(localContext, 2); { - this.state = 1675; + this.state = 1685; this.match(FlinkSqlParser.KW_ONE); - this.state = 1676; + this.state = 1686; this.match(FlinkSqlParser.KW_ROW); - this.state = 1677; + this.state = 1687; this.match(FlinkSqlParser.KW_PER); - this.state = 1678; + this.state = 1688; this.match(FlinkSqlParser.KW_MATCH); } break; @@ -7991,74 +7998,74 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new AfterMatchStrategyContext(this.context, this.state); this.enterRule(localContext, 250, FlinkSqlParser.RULE_afterMatchStrategy); try { - this.state = 1705; + this.state = 1715; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1681; + this.state = 1691; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1682; + this.state = 1692; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1683; + this.state = 1693; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1684; + this.state = 1694; this.match(FlinkSqlParser.KW_PAST); - this.state = 1685; + this.state = 1695; this.match(FlinkSqlParser.KW_LAST); - this.state = 1686; + this.state = 1696; this.match(FlinkSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1687; + this.state = 1697; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1688; + this.state = 1698; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1689; + this.state = 1699; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1690; + this.state = 1700; this.match(FlinkSqlParser.KW_TO); - this.state = 1691; + this.state = 1701; this.match(FlinkSqlParser.KW_NEXT); - this.state = 1692; + this.state = 1702; this.match(FlinkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1693; + this.state = 1703; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1694; + this.state = 1704; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1695; + this.state = 1705; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1696; + this.state = 1706; this.match(FlinkSqlParser.KW_TO); - this.state = 1697; + this.state = 1707; this.match(FlinkSqlParser.KW_LAST); - this.state = 1698; + this.state = 1708; this.unquotedIdentifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1699; + this.state = 1709; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1700; + this.state = 1710; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1701; + this.state = 1711; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1702; + this.state = 1712; this.match(FlinkSqlParser.KW_TO); - this.state = 1703; + this.state = 1713; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1704; + this.state = 1714; this.unquotedIdentifier(); } break; @@ -8085,23 +8092,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1707; + this.state = 1717; this.match(FlinkSqlParser.KW_DEFINE); - this.state = 1708; + this.state = 1718; this.projectItemDefinition(); - this.state = 1713; + this.state = 1723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1709; + this.state = 1719; this.match(FlinkSqlParser.COMMA); - this.state = 1710; + this.state = 1720; this.projectItemDefinition(); } } - this.state = 1715; + this.state = 1725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8125,32 +8132,32 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new WindowFrameContext(this.context, this.state); this.enterRule(localContext, 254, FlinkSqlParser.RULE_windowFrame); try { - this.state = 1725; + this.state = 1735; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 1); { - this.state = 1716; + this.state = 1726; this.match(FlinkSqlParser.KW_RANGE); - this.state = 1717; + this.state = 1727; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1718; + this.state = 1728; this.timeIntervalExpression(); - this.state = 1719; + this.state = 1729; this.frameBound(); } break; case FlinkSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 2); { - this.state = 1721; + this.state = 1731; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1722; + this.state = 1732; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1723; + this.state = 1733; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1724; + this.state = 1734; this.frameBound(); } break; @@ -8178,13 +8185,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1727; + this.state = 1737; this.match(FlinkSqlParser.KW_PRECEDING); - this.state = 1728; + this.state = 1738; this.match(FlinkSqlParser.KW_AND); - this.state = 1729; + this.state = 1739; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 1730; + this.state = 1740; this.match(FlinkSqlParser.KW_ROW); } } @@ -8208,9 +8215,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1732; + this.state = 1742; this.match(FlinkSqlParser.KW_WITHIN); - this.state = 1733; + this.state = 1743; this.timeIntervalExpression(); } } @@ -8234,7 +8241,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1735; + this.state = 1745; this.booleanExpression(0); } } @@ -8271,7 +8278,7 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1749; + this.state = 1759; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { case 1: @@ -8280,9 +8287,9 @@ export class FlinkSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1738; + this.state = 1748; this.match(FlinkSqlParser.KW_NOT); - this.state = 1739; + this.state = 1749; this.booleanExpression(6); } break; @@ -8291,13 +8298,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1740; + this.state = 1750; this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1741; + this.state = 1751; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1742; + this.state = 1752; this.queryStatement(0); - this.state = 1743; + this.state = 1753; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8306,14 +8313,14 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PredicatedContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1745; + this.state = 1755; this.valueExpression(0); - this.state = 1747; + this.state = 1757; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: { - this.state = 1746; + this.state = 1756; this.predicate(); } break; @@ -8322,7 +8329,7 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1765; + this.state = 1775; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -8332,7 +8339,7 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1763; + this.state = 1773; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 196, this.context) ) { case 1: @@ -8340,13 +8347,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1751; + this.state = 1761; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1752; + this.state = 1762; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_AND); - this.state = 1753; + this.state = 1763; (localContext as LogicalBinaryContext)._right = this.booleanExpression(4); } break; @@ -8355,13 +8362,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1754; + this.state = 1764; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1755; + this.state = 1765; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_OR); - this.state = 1756; + this.state = 1766; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -8369,23 +8376,23 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new LogicalNestedContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1757; + this.state = 1767; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1758; + this.state = 1768; this.match(FlinkSqlParser.KW_IS); - this.state = 1760; + this.state = 1770; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1759; + this.state = 1769; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1762; + this.state = 1772; (localContext as LogicalNestedContext)._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 245 || _la === 398 || _la === 405)) { @@ -8400,7 +8407,7 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1767; + this.state = 1777; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); } @@ -8425,30 +8432,30 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 264, FlinkSqlParser.RULE_predicate); let _la: number; try { - this.state = 1842; + this.state = 1852; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1769; + this.state = 1779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1768; + this.state = 1778; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1771; + this.state = 1781; localContext._kind = this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1773; + this.state = 1783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19 || _la === 370) { { - this.state = 1772; + this.state = 1782; _la = this.tokenStream.LA(1); if(!(_la === 19 || _la === 370)) { this.errorHandler.recoverInline(this); @@ -8460,131 +8467,131 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1775; + this.state = 1785; localContext._lower = this.valueExpression(0); - this.state = 1776; + this.state = 1786; this.match(FlinkSqlParser.KW_AND); - this.state = 1777; + this.state = 1787; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1780; + this.state = 1790; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1779; + this.state = 1789; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1782; + this.state = 1792; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1783; + this.state = 1793; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1784; + this.state = 1794; this.expression(); - this.state = 1789; + this.state = 1799; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1785; + this.state = 1795; this.match(FlinkSqlParser.COMMA); - this.state = 1786; + this.state = 1796; this.expression(); } } - this.state = 1791; + this.state = 1801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1792; + this.state = 1802; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1795; + this.state = 1805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1794; + this.state = 1804; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1797; + this.state = 1807; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1798; + this.state = 1808; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1799; + this.state = 1809; this.queryStatement(0); - this.state = 1800; + this.state = 1810; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1802; + this.state = 1812; localContext._kind = this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1803; + this.state = 1813; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1804; + this.state = 1814; this.queryStatement(0); - this.state = 1805; + this.state = 1815; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1808; + this.state = 1818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1807; + this.state = 1817; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1810; + this.state = 1820; localContext._kind = this.match(FlinkSqlParser.KW_RLIKE); - this.state = 1811; + this.state = 1821; localContext._pattern = this.valueExpression(0); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1812; + this.state = 1822; this.likePredicate(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1813; + this.state = 1823; this.match(FlinkSqlParser.KW_IS); - this.state = 1815; + this.state = 1825; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1814; + this.state = 1824; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1817; + this.state = 1827; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 245 || _la === 398 || _la === 405)) { @@ -8599,53 +8606,53 @@ export class FlinkSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1818; + this.state = 1828; this.match(FlinkSqlParser.KW_IS); - this.state = 1820; + this.state = 1830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1819; + this.state = 1829; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1822; + this.state = 1832; localContext._kind = this.match(FlinkSqlParser.KW_DISTINCT); - this.state = 1823; + this.state = 1833; this.match(FlinkSqlParser.KW_FROM); - this.state = 1824; + this.state = 1834; localContext._right = this.valueExpression(0); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1826; + this.state = 1836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1825; + this.state = 1835; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1828; + this.state = 1838; localContext._kind = this.match(FlinkSqlParser.KW_SIMILAR); - this.state = 1829; + this.state = 1839; this.match(FlinkSqlParser.KW_TO); - this.state = 1830; + this.state = 1840; localContext._right = this.valueExpression(0); - this.state = 1833; + this.state = 1843; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { case 1: { - this.state = 1831; + this.state = 1841; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1832; + this.state = 1842; this.stringLiteral(); } break; @@ -8655,28 +8662,28 @@ export class FlinkSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1835; + this.state = 1845; this.match(FlinkSqlParser.KW_IS); - this.state = 1836; + this.state = 1846; this.match(FlinkSqlParser.KW_JSON); - this.state = 1840; + this.state = 1850; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: { - this.state = 1837; + this.state = 1847; this.match(FlinkSqlParser.KW_VALUE); } break; case 2: { - this.state = 1838; + this.state = 1848; this.match(FlinkSqlParser.KW_ARRAY); } break; case 3: { - this.state = 1839; + this.state = 1849; this.identifier(); } break; @@ -8699,30 +8706,99 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } + public jsonFunctionBranch(): JsonFunctionBranchContext { + let localContext = new JsonFunctionBranchContext(this.context, this.state); + this.enterRule(localContext, 266, FlinkSqlParser.RULE_jsonFunctionBranch); + try { + this.state = 1862; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 210, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 1854; + this.match(FlinkSqlParser.KW_NULL); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 1855; + this.match(FlinkSqlParser.KW_EMPTY); + this.state = 1856; + this.match(FlinkSqlParser.KW_ARRAY); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 1857; + this.match(FlinkSqlParser.KW_EMPTY); + this.state = 1858; + this.uid(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 1859; + this.match(FlinkSqlParser.KW_TRUE); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + { + this.state = 1860; + this.match(FlinkSqlParser.KW_FALSE); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 1861; + this.match(FlinkSqlParser.KW_UNKNOWN); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public likePredicate(): LikePredicateContext { let localContext = new LikePredicateContext(this.context, this.state); - this.enterRule(localContext, 266, FlinkSqlParser.RULE_likePredicate); + this.enterRule(localContext, 268, FlinkSqlParser.RULE_likePredicate); let _la: number; try { - this.state = 1873; + this.state = 1893; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1845; + this.state = 1865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1844; + this.state = 1864; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1847; + this.state = 1867; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1848; + this.state = 1868; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 11)) { @@ -8732,40 +8808,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1862; + this.state = 1882; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: { - this.state = 1849; + this.state = 1869; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1850; + this.state = 1870; this.match(FlinkSqlParser.RR_BRACKET); } break; case 2: { - this.state = 1851; + this.state = 1871; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1852; + this.state = 1872; this.expression(); - this.state = 1857; + this.state = 1877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1853; + this.state = 1873; this.match(FlinkSqlParser.COMMA); - this.state = 1854; + this.state = 1874; this.expression(); } } - this.state = 1859; + this.state = 1879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1860; + this.state = 1880; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8775,28 +8851,28 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1865; + this.state = 1885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1864; + this.state = 1884; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1867; + this.state = 1887; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1868; + this.state = 1888; localContext._pattern = this.valueExpression(0); - this.state = 1871; + this.state = 1891; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { - this.state = 1869; + this.state = 1889; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1870; + this.state = 1890; this.stringLiteral(); } break; @@ -8831,23 +8907,23 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ValueExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 268; - this.enterRecursionRule(localContext, 268, FlinkSqlParser.RULE_valueExpression, _p); + let _startState = 270; + this.enterRecursionRule(localContext, 270, FlinkSqlParser.RULE_valueExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1879; + this.state = 1899; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1876; + this.state = 1896; this.primaryExpression(0); } break; @@ -8856,7 +8932,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1877; + this.state = 1897; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3145729) !== 0))) { @@ -8866,15 +8942,15 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1878; + this.state = 1898; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1902; + this.state = 1922; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8882,19 +8958,19 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1900; + this.state = 1920; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1881; + this.state = 1901; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 1882; + this.state = 1902; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 453 || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 145) !== 0))) { @@ -8904,7 +8980,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1883; + this.state = 1903; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(7); } break; @@ -8913,11 +8989,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1884; + this.state = 1904; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 1885; + this.state = 1905; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 530)) & ~0x1F) === 0 && ((1 << (_la - 530)) & 11) !== 0))) { @@ -8927,7 +9003,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1886; + this.state = 1906; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(6); } break; @@ -8936,13 +9012,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1887; + this.state = 1907; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1888; + this.state = 1908; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 1889; + this.state = 1909; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(5); } break; @@ -8951,13 +9027,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1890; + this.state = 1910; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1891; + this.state = 1911; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_XOR_OP); - this.state = 1892; + this.state = 1912; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -8966,13 +9042,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1893; + this.state = 1913; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1894; + this.state = 1914; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 1895; + this.state = 1915; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -8981,22 +9057,22 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ComparisonContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ComparisonContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1896; + this.state = 1916; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1897; + this.state = 1917; this.comparisonOperator(); - this.state = 1898; + this.state = 1918; (localContext as ComparisonContext)._right = this.valueExpression(2); } break; } } } - this.state = 1904; + this.state = 1924; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 218, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); } } } @@ -9016,10 +9092,10 @@ export class FlinkSqlParser extends SQLParserBase { } public functionCallExpression(): FunctionCallExpressionContext { let localContext = new FunctionCallExpressionContext(this.context, this.state); - this.enterRule(localContext, 270, FlinkSqlParser.RULE_functionCallExpression); + this.enterRule(localContext, 272, FlinkSqlParser.RULE_functionCallExpression); let _la: number; try { - this.state = 1924; + this.state = 1944; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CURRENT_DATE: @@ -9029,7 +9105,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 1905; + this.state = 1925; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; @@ -9039,7 +9115,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 2); { - this.state = 1906; + this.state = 1926; this.functionNameAndParams(); } break; @@ -9180,47 +9256,47 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.ID_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 1907; + this.state = 1927; this.functionNameWithParams(); - this.state = 1908; + this.state = 1928; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1920; + this.state = 1940; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396848) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 10489249) !== 0) || ((((_la - 69)) & ~0x1F) === 0 && ((1 << (_la - 69)) & 1883341377) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 201330753) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641555) !== 0) || ((((_la - 182)) & ~0x1F) === 0 && ((1 << (_la - 182)) & 488456033) !== 0) || ((((_la - 215)) & ~0x1F) === 0 && ((1 << (_la - 215)) & 3892347713) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 537530369) !== 0) || ((((_la - 318)) & ~0x1F) === 0 && ((1 << (_la - 318)) & 131185) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 14681219) !== 0) || ((((_la - 390)) & ~0x1F) === 0 && ((1 << (_la - 390)) & 3238528833) !== 0) || ((((_la - 428)) & ~0x1F) === 0 && ((1 << (_la - 428)) & 4294966785) !== 0) || ((((_la - 460)) & ~0x1F) === 0 && ((1 << (_la - 460)) & 4294967295) !== 0) || ((((_la - 492)) & ~0x1F) === 0 && ((1 << (_la - 492)) & 33832959) !== 0) || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 31757) !== 0)) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { + case 1: { - this.state = 1910; + this.state = 1930; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: { - this.state = 1909; + this.state = 1929; this.setQuantifier(); } break; } - this.state = 1912; + this.state = 1932; this.functionParam(); - this.state = 1917; + this.state = 1937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1913; + this.state = 1933; this.match(FlinkSqlParser.COMMA); - this.state = 1914; + this.state = 1934; this.functionParam(); } } - this.state = 1919; + this.state = 1939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } + break; } - - this.state = 1922; + this.state = 1942; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9254,51 +9330,51 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 272; - this.enterRecursionRule(localContext, 272, FlinkSqlParser.RULE_primaryExpression, _p); + let _startState = 274; + this.enterRecursionRule(localContext, 274, FlinkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2001; + this.state = 2021; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { case 1: { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1927; + this.state = 1947; this.match(FlinkSqlParser.KW_CASE); - this.state = 1929; + this.state = 1949; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1928; + this.state = 1948; this.whenClause(); } } - this.state = 1931; + this.state = 1951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 429); - this.state = 1935; + this.state = 1955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1933; + this.state = 1953; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1934; + this.state = 1954; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 1937; + this.state = 1957; this.match(FlinkSqlParser.KW_END); } break; @@ -9307,37 +9383,37 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1939; + this.state = 1959; this.match(FlinkSqlParser.KW_CASE); - this.state = 1940; + this.state = 1960; (localContext as SimpleCaseContext)._value = this.expression(); - this.state = 1942; + this.state = 1962; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1941; + this.state = 1961; this.whenClause(); } } - this.state = 1944; + this.state = 1964; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 429); - this.state = 1948; + this.state = 1968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1946; + this.state = 1966; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1947; + this.state = 1967; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 1950; + this.state = 1970; this.match(FlinkSqlParser.KW_END); } break; @@ -9346,17 +9422,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1952; + this.state = 1972; this.match(FlinkSqlParser.KW_CAST); - this.state = 1953; + this.state = 1973; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1954; + this.state = 1974; this.expression(); - this.state = 1955; + this.state = 1975; this.match(FlinkSqlParser.KW_AS); - this.state = 1956; + this.state = 1976; this.columnType(); - this.state = 1957; + this.state = 1977; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9365,25 +9441,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FirstContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1959; + this.state = 1979; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1960; + this.state = 1980; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1961; + this.state = 1981; this.expression(); - this.state = 1964; + this.state = 1984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 462) { { - this.state = 1962; + this.state = 1982; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1963; + this.state = 1983; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1966; + this.state = 1986; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9392,25 +9468,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1968; + this.state = 1988; this.match(FlinkSqlParser.KW_LAST); - this.state = 1969; + this.state = 1989; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1970; + this.state = 1990; this.expression(); - this.state = 1973; + this.state = 1993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 462) { { - this.state = 1971; + this.state = 1991; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1972; + this.state = 1992; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1975; + this.state = 1995; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9419,17 +9495,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1977; + this.state = 1997; this.match(FlinkSqlParser.KW_POSITION); - this.state = 1978; + this.state = 1998; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1979; + this.state = 1999; (localContext as PositionContext)._substr = this.valueExpression(0); - this.state = 1980; + this.state = 2000; this.match(FlinkSqlParser.KW_IN); - this.state = 1981; + this.state = 2001; (localContext as PositionContext)._str = this.valueExpression(0); - this.state = 1982; + this.state = 2002; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9438,7 +9514,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ConstantDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1984; + this.state = 2004; this.constant(); } break; @@ -9447,7 +9523,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1985; + this.state = 2005; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9456,11 +9532,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1986; + this.state = 2006; this.uid(); - this.state = 1987; + this.state = 2007; this.match(FlinkSqlParser.DOT); - this.state = 1988; + this.state = 2008; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9469,11 +9545,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1990; + this.state = 2010; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1991; + this.state = 2011; this.queryStatement(0); - this.state = 1992; + this.state = 2012; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9482,7 +9558,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1994; + this.state = 2014; this.functionCallExpression(); } break; @@ -9491,7 +9567,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1995; + this.state = 2015; this.columnNamePath(); } break; @@ -9500,7 +9576,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new DereferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1996; + this.state = 2016; this.dereferenceDefinition(); } break; @@ -9509,19 +9585,19 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1997; + this.state = 2017; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1998; + this.state = 2018; this.expression(); - this.state = 1999; + this.state = 2019; this.match(FlinkSqlParser.RR_BRACKET); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2010; + this.state = 2030; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -9533,22 +9609,22 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_primaryExpression); - this.state = 2003; + this.state = 2023; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 2004; + this.state = 2024; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 2005; + this.state = 2025; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2006; + this.state = 2026; this.match(FlinkSqlParser.RS_BRACKET); } } } - this.state = 2012; + this.state = 2032; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); } } } @@ -9568,11 +9644,11 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 274, FlinkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 276, FlinkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2013; + this.state = 2033; this.uid(); } } @@ -9592,40 +9668,452 @@ export class FlinkSqlParser extends SQLParserBase { } public functionName(): FunctionNameContext { let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 276, FlinkSqlParser.RULE_functionName); + this.enterRule(localContext, 278, FlinkSqlParser.RULE_functionName); try { - this.state = 2019; + this.state = 2039; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2015; + this.state = 2035; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2016; + this.state = 2036; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2017; + this.state = 2037; this.reservedKeywordsFollowParamsUsedAsFuncName(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2018; + this.state = 2038; + this.uid(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public functionNameAndParams(): FunctionNameAndParamsContext { + let localContext = new FunctionNameAndParamsContext(this.context, this.state); + this.enterRule(localContext, 280, FlinkSqlParser.RULE_functionNameAndParams); + try { + this.state = 2045; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case FlinkSqlParser.KW_DATE: + case FlinkSqlParser.KW_TIME: + case FlinkSqlParser.KW_TIMESTAMP: + this.enterOuterAlt(localContext, 1); + { + this.state = 2041; + this.reservedKeywordsFollowParamsUsedAsFuncName(); + this.state = 2042; + this.match(FlinkSqlParser.STRING_LITERAL); + } + break; + case FlinkSqlParser.KW_INTERVAL: + this.enterOuterAlt(localContext, 2); + { + this.state = 2044; + this.timeIntervalExpression(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public functionNameWithParams(): FunctionNameWithParamsContext { + let localContext = new FunctionNameWithParamsContext(this.context, this.state); + this.enterRule(localContext, 282, FlinkSqlParser.RULE_functionNameWithParams); + try { + this.state = 2049; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 2047; + this.reservedKeywordsUsedAsFuncName(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2048; + this.uid(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public functionParam(): FunctionParamContext { + let localContext = new FunctionParamContext(this.context, this.state); + this.enterRule(localContext, 284, FlinkSqlParser.RULE_functionParam); + try { + this.state = 2059; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 2051; + this.reservedKeywordsUsedAsFuncParam(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2052; + this.timeIntervalUnit(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 2053; + this.timePointUnit(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 2054; + this.expression(); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + { + this.state = 2055; + this.jsonValueParams(); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 2056; + this.jsonQueryParams(); + } + break; + case 7: + this.enterOuterAlt(localContext, 7); + { + this.state = 2057; + this.jsonObjectParams(); + } + break; + case 8: + this.enterOuterAlt(localContext, 8); + { + this.state = 2058; + this.jsonArrayParams(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public jsonValueParams(): JsonValueParamsContext { + let localContext = new JsonValueParamsContext(this.context, this.state); + this.enterRule(localContext, 286, FlinkSqlParser.RULE_jsonValueParams); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2061; + this.columnNamePath(); + this.state = 2065; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + case 1: + { + this.state = 2062; this.uid(); + this.state = 2063; + this.columnType(); } break; } + this.state = 2075; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { + case 1: + { + this.state = 2071; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case FlinkSqlParser.KW_ADD: + case FlinkSqlParser.KW_AFTER: + case FlinkSqlParser.KW_ASC: + case FlinkSqlParser.KW_CASCADE: + case FlinkSqlParser.KW_CATALOG: + case FlinkSqlParser.KW_CENTURY: + case FlinkSqlParser.KW_CONFIG: + case FlinkSqlParser.KW_CONSTRAINTS: + case FlinkSqlParser.KW_CUMULATE: + case FlinkSqlParser.KW_DATA: + case FlinkSqlParser.KW_DATABASE: + case FlinkSqlParser.KW_DAYS: + case FlinkSqlParser.KW_DECADE: + case FlinkSqlParser.KW_DESC: + case FlinkSqlParser.KW_DESCRIPTOR: + case FlinkSqlParser.KW_DIV: + case FlinkSqlParser.KW_ENGINE: + case FlinkSqlParser.KW_EPOCH: + case FlinkSqlParser.KW_EXCLUDING: + case FlinkSqlParser.KW_FILE: + case FlinkSqlParser.KW_FIRST: + case FlinkSqlParser.KW_GENERATED: + case FlinkSqlParser.KW_HOP: + case FlinkSqlParser.KW_HOURS: + case FlinkSqlParser.KW_IGNORE: + case FlinkSqlParser.KW_INCLUDING: + case FlinkSqlParser.KW_JAR: + case FlinkSqlParser.KW_JARS: + case FlinkSqlParser.KW_JAVA: + case FlinkSqlParser.KW_KEY: + case FlinkSqlParser.KW_LAST: + case FlinkSqlParser.KW_LOAD: + case FlinkSqlParser.KW_MAP: + case FlinkSqlParser.KW_MICROSECOND: + case FlinkSqlParser.KW_MILLENNIUM: + case FlinkSqlParser.KW_MILLISECOND: + case FlinkSqlParser.KW_MINUTES: + case FlinkSqlParser.KW_MONTHS: + case FlinkSqlParser.KW_NANOSECOND: + case FlinkSqlParser.KW_NULLS: + case FlinkSqlParser.KW_OPTIONS: + case FlinkSqlParser.KW_PAST: + case FlinkSqlParser.KW_PLAN: + case FlinkSqlParser.KW_PRECEDING: + case FlinkSqlParser.KW_PYTHON: + case FlinkSqlParser.KW_PYTHON_ARCHIVES: + case FlinkSqlParser.KW_PYTHON_DEPENDENCIES: + case FlinkSqlParser.KW_PYTHON_FILES: + case FlinkSqlParser.KW_PYTHON_JAR: + case FlinkSqlParser.KW_PYTHON_PARAMETER: + case FlinkSqlParser.KW_PYTHON_REQUIREMENTS: + case FlinkSqlParser.KW_QUARTER: + case FlinkSqlParser.KW_REMOVE: + case FlinkSqlParser.KW_RESTRICT: + case FlinkSqlParser.KW_SECONDS: + case FlinkSqlParser.KW_SESSION: + case FlinkSqlParser.KW_SETS: + case FlinkSqlParser.KW_SIZE: + case FlinkSqlParser.KW_SLIDE: + case FlinkSqlParser.KW_STEP: + case FlinkSqlParser.KW_TEMPORARY: + case FlinkSqlParser.KW_TIMECOL: + case FlinkSqlParser.KW_TUMBLE: + case FlinkSqlParser.KW_UNLOAD: + case FlinkSqlParser.KW_VIEW: + case FlinkSqlParser.KW_WEEK: + case FlinkSqlParser.KW_YEARS: + case FlinkSqlParser.KW_ZONE: + case FlinkSqlParser.STRING_LITERAL: + case FlinkSqlParser.DIG_LITERAL: + case FlinkSqlParser.ID_LITERAL: + { + this.state = 2067; + this.uid(); + } + break; + case FlinkSqlParser.KW_NULL: + { + this.state = 2068; + this.match(FlinkSqlParser.KW_NULL); + } + break; + case FlinkSqlParser.KW_DEFAULT: + { + this.state = 2069; + this.match(FlinkSqlParser.KW_DEFAULT); + this.state = 2070; + this.valueExpression(0); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + this.state = 2073; + this.match(FlinkSqlParser.KW_ON); + this.state = 2074; + this.match(FlinkSqlParser.KW_EMPTY); + } + break; + } + this.state = 2085; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 104 || _la === 245 || ((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { + { + this.state = 2081; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case FlinkSqlParser.KW_ADD: + case FlinkSqlParser.KW_AFTER: + case FlinkSqlParser.KW_ASC: + case FlinkSqlParser.KW_CASCADE: + case FlinkSqlParser.KW_CATALOG: + case FlinkSqlParser.KW_CENTURY: + case FlinkSqlParser.KW_CONFIG: + case FlinkSqlParser.KW_CONSTRAINTS: + case FlinkSqlParser.KW_CUMULATE: + case FlinkSqlParser.KW_DATA: + case FlinkSqlParser.KW_DATABASE: + case FlinkSqlParser.KW_DAYS: + case FlinkSqlParser.KW_DECADE: + case FlinkSqlParser.KW_DESC: + case FlinkSqlParser.KW_DESCRIPTOR: + case FlinkSqlParser.KW_DIV: + case FlinkSqlParser.KW_ENGINE: + case FlinkSqlParser.KW_EPOCH: + case FlinkSqlParser.KW_EXCLUDING: + case FlinkSqlParser.KW_FILE: + case FlinkSqlParser.KW_FIRST: + case FlinkSqlParser.KW_GENERATED: + case FlinkSqlParser.KW_HOP: + case FlinkSqlParser.KW_HOURS: + case FlinkSqlParser.KW_IGNORE: + case FlinkSqlParser.KW_INCLUDING: + case FlinkSqlParser.KW_JAR: + case FlinkSqlParser.KW_JARS: + case FlinkSqlParser.KW_JAVA: + case FlinkSqlParser.KW_KEY: + case FlinkSqlParser.KW_LAST: + case FlinkSqlParser.KW_LOAD: + case FlinkSqlParser.KW_MAP: + case FlinkSqlParser.KW_MICROSECOND: + case FlinkSqlParser.KW_MILLENNIUM: + case FlinkSqlParser.KW_MILLISECOND: + case FlinkSqlParser.KW_MINUTES: + case FlinkSqlParser.KW_MONTHS: + case FlinkSqlParser.KW_NANOSECOND: + case FlinkSqlParser.KW_NULLS: + case FlinkSqlParser.KW_OPTIONS: + case FlinkSqlParser.KW_PAST: + case FlinkSqlParser.KW_PLAN: + case FlinkSqlParser.KW_PRECEDING: + case FlinkSqlParser.KW_PYTHON: + case FlinkSqlParser.KW_PYTHON_ARCHIVES: + case FlinkSqlParser.KW_PYTHON_DEPENDENCIES: + case FlinkSqlParser.KW_PYTHON_FILES: + case FlinkSqlParser.KW_PYTHON_JAR: + case FlinkSqlParser.KW_PYTHON_PARAMETER: + case FlinkSqlParser.KW_PYTHON_REQUIREMENTS: + case FlinkSqlParser.KW_QUARTER: + case FlinkSqlParser.KW_REMOVE: + case FlinkSqlParser.KW_RESTRICT: + case FlinkSqlParser.KW_SECONDS: + case FlinkSqlParser.KW_SESSION: + case FlinkSqlParser.KW_SETS: + case FlinkSqlParser.KW_SIZE: + case FlinkSqlParser.KW_SLIDE: + case FlinkSqlParser.KW_STEP: + case FlinkSqlParser.KW_TEMPORARY: + case FlinkSqlParser.KW_TIMECOL: + case FlinkSqlParser.KW_TUMBLE: + case FlinkSqlParser.KW_UNLOAD: + case FlinkSqlParser.KW_VIEW: + case FlinkSqlParser.KW_WEEK: + case FlinkSqlParser.KW_YEARS: + case FlinkSqlParser.KW_ZONE: + case FlinkSqlParser.STRING_LITERAL: + case FlinkSqlParser.DIG_LITERAL: + case FlinkSqlParser.ID_LITERAL: + { + this.state = 2077; + this.uid(); + } + break; + case FlinkSqlParser.KW_NULL: + { + this.state = 2078; + this.match(FlinkSqlParser.KW_NULL); + } + break; + case FlinkSqlParser.KW_DEFAULT: + { + this.state = 2079; + this.match(FlinkSqlParser.KW_DEFAULT); + this.state = 2080; + this.valueExpression(0); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + this.state = 2083; + this.match(FlinkSqlParser.KW_ON); + this.state = 2084; + this.uid(); + } + } + + } } catch (re) { if (re instanceof antlr.RecognitionException) { @@ -9635,39 +10123,97 @@ export class FlinkSqlParser extends SQLParserBase { } else { throw re; } - } - finally { - this.exitRule(); - } - return localContext; - } - public functionNameAndParams(): FunctionNameAndParamsContext { - let localContext = new FunctionNameAndParamsContext(this.context, this.state); - this.enterRule(localContext, 278, FlinkSqlParser.RULE_functionNameAndParams); - try { - this.state = 2025; + } + finally { + this.exitRule(); + } + return localContext; + } + public jsonQueryParams(): JsonQueryParamsContext { + let localContext = new JsonQueryParamsContext(this.context, this.state); + this.enterRule(localContext, 288, FlinkSqlParser.RULE_jsonQueryParams); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2087; + this.columnNamePath(); + this.state = 2099; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 434 || _la === 436) { + { + this.state = 2093; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case FlinkSqlParser.KW_WITHOUT: + { + this.state = 2088; + this.match(FlinkSqlParser.KW_WITHOUT); + } + break; + case FlinkSqlParser.KW_WITH: + { + this.state = 2089; + this.match(FlinkSqlParser.KW_WITH); + this.state = 2091; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { + case 1: + { + this.state = 2090; + this.uid(); + } + break; + } + } + break; + default: + throw new antlr.NoViableAltException(this); + } + this.state = 2096; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 13) { + { + this.state = 2095; + this.match(FlinkSqlParser.KW_ARRAY); + } + } + + this.state = 2098; + this.uid(); + } + } + + this.state = 2105; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case FlinkSqlParser.KW_DATE: - case FlinkSqlParser.KW_TIME: - case FlinkSqlParser.KW_TIMESTAMP: - this.enterOuterAlt(localContext, 1); + switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { + case 1: { - this.state = 2021; - this.reservedKeywordsFollowParamsUsedAsFuncName(); - this.state = 2022; - this.match(FlinkSqlParser.STRING_LITERAL); + this.state = 2101; + this.jsonFunctionBranch(); + this.state = 2102; + this.match(FlinkSqlParser.KW_ON); + this.state = 2103; + this.match(FlinkSqlParser.KW_EMPTY); } break; - case FlinkSqlParser.KW_INTERVAL: - this.enterOuterAlt(localContext, 2); + } + this.state = 2111; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 121 || _la === 140 || _la === 245 || _la === 398 || _la === 405) { { - this.state = 2024; - this.timeIntervalExpression(); + this.state = 2107; + this.jsonFunctionBranch(); + this.state = 2108; + this.match(FlinkSqlParser.KW_ON); + this.state = 2109; + this.uid(); } - break; - default: - throw new antlr.NoViableAltException(this); + } + } } catch (re) { @@ -9684,27 +10230,342 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public functionNameWithParams(): FunctionNameWithParamsContext { - let localContext = new FunctionNameWithParamsContext(this.context, this.state); - this.enterRule(localContext, 280, FlinkSqlParser.RULE_functionNameWithParams); + public jsonObjectParams(): JsonObjectParamsContext { + let localContext = new JsonObjectParamsContext(this.context, this.state); + this.enterRule(localContext, 290, FlinkSqlParser.RULE_jsonObjectParams); + let _la: number; try { - this.state = 2029; + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 2134; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 2027; - this.reservedKeywordsUsedAsFuncName(); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 251, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 2114; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { + case 1: + { + this.state = 2113; + this.match(FlinkSqlParser.KW_KEY); + } + break; + } + this.state = 2116; + this.columnNamePath(); + this.state = 2118; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 414) { + { + this.state = 2117; + this.match(FlinkSqlParser.KW_VALUE); + } + } + + this.state = 2130; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case FlinkSqlParser.KW_ABS: + case FlinkSqlParser.KW_ARRAY: + case FlinkSqlParser.KW_AVG: + case FlinkSqlParser.KW_CARDINALITY: + case FlinkSqlParser.KW_CASE: + case FlinkSqlParser.KW_CAST: + case FlinkSqlParser.KW_CEIL: + case FlinkSqlParser.KW_CEILING: + case FlinkSqlParser.KW_COALESCE: + case FlinkSqlParser.KW_COLLECT: + case FlinkSqlParser.KW_COUNT: + case FlinkSqlParser.KW_CUME_DIST: + case FlinkSqlParser.KW_CURRENT_DATE: + case FlinkSqlParser.KW_CURRENT_TIME: + case FlinkSqlParser.KW_CURRENT_TIMESTAMP: + case FlinkSqlParser.KW_DATE: + case FlinkSqlParser.KW_DAY: + case FlinkSqlParser.KW_DAYOFWEEK: + case FlinkSqlParser.KW_DAYOFYEAR: + case FlinkSqlParser.KW_DENSE_RANK: + case FlinkSqlParser.KW_ELEMENT: + case FlinkSqlParser.KW_EXP: + case FlinkSqlParser.KW_EXTRACT: + case FlinkSqlParser.KW_FALSE: + case FlinkSqlParser.KW_FIRST_VALUE: + case FlinkSqlParser.KW_FLOOR: + case FlinkSqlParser.KW_GROUPING: + case FlinkSqlParser.KW_HOUR: + case FlinkSqlParser.KW_IF: + case FlinkSqlParser.KW_INTERVAL: + case FlinkSqlParser.KW_JSON_ARRAY: + case FlinkSqlParser.KW_JSON_ARRAYAGG: + case FlinkSqlParser.KW_JSON_EXISTS: + case FlinkSqlParser.KW_JSON_OBJECT: + case FlinkSqlParser.KW_JSON_OBJECTAGG: + case FlinkSqlParser.KW_JSON_QUERY: + case FlinkSqlParser.KW_JSON_VALUE: + case FlinkSqlParser.KW_LAG: + case FlinkSqlParser.KW_LAST_VALUE: + case FlinkSqlParser.KW_LEAD: + case FlinkSqlParser.KW_LEFT: + case FlinkSqlParser.KW_LN: + case FlinkSqlParser.KW_LOCALTIME: + case FlinkSqlParser.KW_LOCALTIMESTAMP: + case FlinkSqlParser.KW_LOWER: + case FlinkSqlParser.KW_MAX: + case FlinkSqlParser.KW_MIN: + case FlinkSqlParser.KW_MINUTE: + case FlinkSqlParser.KW_MOD: + case FlinkSqlParser.KW_MONTH: + case FlinkSqlParser.KW_NOT: + case FlinkSqlParser.KW_NTILE: + case FlinkSqlParser.KW_NULL: + case FlinkSqlParser.KW_NULLIF: + case FlinkSqlParser.KW_OVERLAY: + case FlinkSqlParser.KW_PERCENT_RANK: + case FlinkSqlParser.KW_POSITION: + case FlinkSqlParser.KW_POWER: + case FlinkSqlParser.KW_RANK: + case FlinkSqlParser.KW_RIGHT: + case FlinkSqlParser.KW_ROW: + case FlinkSqlParser.KW_ROWS: + case FlinkSqlParser.KW_ROW_NUMBER: + case FlinkSqlParser.KW_SECOND: + case FlinkSqlParser.KW_STDDEV_POP: + case FlinkSqlParser.KW_STDDEV_SAMP: + case FlinkSqlParser.KW_SUBSTRING: + case FlinkSqlParser.KW_SUM: + case FlinkSqlParser.KW_TIME: + case FlinkSqlParser.KW_TIMESTAMP: + case FlinkSqlParser.KW_TIMESTAMP_DIFF: + case FlinkSqlParser.KW_TRIM: + case FlinkSqlParser.KW_TRUE: + case FlinkSqlParser.KW_TRUNCATE: + case FlinkSqlParser.KW_TRY_CAST: + case FlinkSqlParser.KW_UPPER: + case FlinkSqlParser.KW_VAR_POP: + case FlinkSqlParser.KW_VAR_SAMP: + case FlinkSqlParser.KW_YEAR: + case FlinkSqlParser.KW_ADD: + case FlinkSqlParser.KW_AFTER: + case FlinkSqlParser.KW_ASC: + case FlinkSqlParser.KW_CASCADE: + case FlinkSqlParser.KW_CATALOG: + case FlinkSqlParser.KW_CENTURY: + case FlinkSqlParser.KW_CONFIG: + case FlinkSqlParser.KW_CONSTRAINTS: + case FlinkSqlParser.KW_CUMULATE: + case FlinkSqlParser.KW_DATA: + case FlinkSqlParser.KW_DATABASE: + case FlinkSqlParser.KW_DAYS: + case FlinkSqlParser.KW_DECADE: + case FlinkSqlParser.KW_DESC: + case FlinkSqlParser.KW_DESCRIPTOR: + case FlinkSqlParser.KW_DIV: + case FlinkSqlParser.KW_ENGINE: + case FlinkSqlParser.KW_EPOCH: + case FlinkSqlParser.KW_EXCLUDING: + case FlinkSqlParser.KW_FILE: + case FlinkSqlParser.KW_FIRST: + case FlinkSqlParser.KW_GENERATED: + case FlinkSqlParser.KW_HOP: + case FlinkSqlParser.KW_HOURS: + case FlinkSqlParser.KW_IGNORE: + case FlinkSqlParser.KW_INCLUDING: + case FlinkSqlParser.KW_JAR: + case FlinkSqlParser.KW_JARS: + case FlinkSqlParser.KW_JAVA: + case FlinkSqlParser.KW_KEY: + case FlinkSqlParser.KW_LAST: + case FlinkSqlParser.KW_LOAD: + case FlinkSqlParser.KW_MAP: + case FlinkSqlParser.KW_MICROSECOND: + case FlinkSqlParser.KW_MILLENNIUM: + case FlinkSqlParser.KW_MILLISECOND: + case FlinkSqlParser.KW_MINUTES: + case FlinkSqlParser.KW_MONTHS: + case FlinkSqlParser.KW_NANOSECOND: + case FlinkSqlParser.KW_NULLS: + case FlinkSqlParser.KW_OPTIONS: + case FlinkSqlParser.KW_PAST: + case FlinkSqlParser.KW_PLAN: + case FlinkSqlParser.KW_PRECEDING: + case FlinkSqlParser.KW_PYTHON: + case FlinkSqlParser.KW_PYTHON_ARCHIVES: + case FlinkSqlParser.KW_PYTHON_DEPENDENCIES: + case FlinkSqlParser.KW_PYTHON_FILES: + case FlinkSqlParser.KW_PYTHON_JAR: + case FlinkSqlParser.KW_PYTHON_PARAMETER: + case FlinkSqlParser.KW_PYTHON_REQUIREMENTS: + case FlinkSqlParser.KW_QUARTER: + case FlinkSqlParser.KW_REMOVE: + case FlinkSqlParser.KW_RESTRICT: + case FlinkSqlParser.KW_SECONDS: + case FlinkSqlParser.KW_SESSION: + case FlinkSqlParser.KW_SETS: + case FlinkSqlParser.KW_SIZE: + case FlinkSqlParser.KW_SLIDE: + case FlinkSqlParser.KW_STEP: + case FlinkSqlParser.KW_TEMPORARY: + case FlinkSqlParser.KW_TIMECOL: + case FlinkSqlParser.KW_TUMBLE: + case FlinkSqlParser.KW_UNLOAD: + case FlinkSqlParser.KW_VIEW: + case FlinkSqlParser.KW_WEEK: + case FlinkSqlParser.KW_YEARS: + case FlinkSqlParser.KW_ZONE: + case FlinkSqlParser.BIT_NOT_OP: + case FlinkSqlParser.LR_BRACKET: + case FlinkSqlParser.ASTERISK_SIGN: + case FlinkSqlParser.HYPHEN_SIGN: + case FlinkSqlParser.ADD_SIGN: + case FlinkSqlParser.STRING_LITERAL: + case FlinkSqlParser.DIG_LITERAL: + case FlinkSqlParser.REAL_LITERAL: + case FlinkSqlParser.BIT_STRING: + case FlinkSqlParser.ID_LITERAL: + { + this.state = 2120; + this.valueExpression(0); + } + break; + case FlinkSqlParser.KW_JSON: + { + this.state = 2121; + this.match(FlinkSqlParser.KW_JSON); + this.state = 2122; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 2126; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396816) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 2147811437) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 29427209) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641555) !== 0) || ((((_la - 182)) & ~0x1F) === 0 && ((1 << (_la - 182)) & 487931745) !== 0) || ((((_la - 215)) & ~0x1F) === 0 && ((1 << (_la - 215)) & 3892347713) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 537530369) !== 0) || ((((_la - 318)) & ~0x1F) === 0 && ((1 << (_la - 318)) & 131185) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 14681219) !== 0) || ((((_la - 396)) & ~0x1F) === 0 && ((1 << (_la - 396)) & 50339869) !== 0) || ((((_la - 437)) & ~0x1F) === 0 && ((1 << (_la - 437)) & 4294967295) !== 0) || ((((_la - 469)) & ~0x1F) === 0 && ((1 << (_la - 469)) & 4294967295) !== 0) || ((((_la - 501)) & ~0x1F) === 0 && ((1 << (_la - 501)) & 1744896543) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 31) !== 0)) { + { + { + this.state = 2123; + this.valueExpression(0); + } + } + this.state = 2128; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 2129; + this.match(FlinkSqlParser.RR_BRACKET); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + } } - break; - case 2: - this.enterOuterAlt(localContext, 2); + this.state = 2136; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 251, this.context); + } + this.state = 2143; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 245 || ((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { { - this.state = 2028; - this.uid(); + this.state = 2139; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case FlinkSqlParser.KW_NULL: + { + this.state = 2137; + this.match(FlinkSqlParser.KW_NULL); + } + break; + case FlinkSqlParser.KW_ADD: + case FlinkSqlParser.KW_AFTER: + case FlinkSqlParser.KW_ASC: + case FlinkSqlParser.KW_CASCADE: + case FlinkSqlParser.KW_CATALOG: + case FlinkSqlParser.KW_CENTURY: + case FlinkSqlParser.KW_CONFIG: + case FlinkSqlParser.KW_CONSTRAINTS: + case FlinkSqlParser.KW_CUMULATE: + case FlinkSqlParser.KW_DATA: + case FlinkSqlParser.KW_DATABASE: + case FlinkSqlParser.KW_DAYS: + case FlinkSqlParser.KW_DECADE: + case FlinkSqlParser.KW_DESC: + case FlinkSqlParser.KW_DESCRIPTOR: + case FlinkSqlParser.KW_DIV: + case FlinkSqlParser.KW_ENGINE: + case FlinkSqlParser.KW_EPOCH: + case FlinkSqlParser.KW_EXCLUDING: + case FlinkSqlParser.KW_FILE: + case FlinkSqlParser.KW_FIRST: + case FlinkSqlParser.KW_GENERATED: + case FlinkSqlParser.KW_HOP: + case FlinkSqlParser.KW_HOURS: + case FlinkSqlParser.KW_IGNORE: + case FlinkSqlParser.KW_INCLUDING: + case FlinkSqlParser.KW_JAR: + case FlinkSqlParser.KW_JARS: + case FlinkSqlParser.KW_JAVA: + case FlinkSqlParser.KW_KEY: + case FlinkSqlParser.KW_LAST: + case FlinkSqlParser.KW_LOAD: + case FlinkSqlParser.KW_MAP: + case FlinkSqlParser.KW_MICROSECOND: + case FlinkSqlParser.KW_MILLENNIUM: + case FlinkSqlParser.KW_MILLISECOND: + case FlinkSqlParser.KW_MINUTES: + case FlinkSqlParser.KW_MONTHS: + case FlinkSqlParser.KW_NANOSECOND: + case FlinkSqlParser.KW_NULLS: + case FlinkSqlParser.KW_OPTIONS: + case FlinkSqlParser.KW_PAST: + case FlinkSqlParser.KW_PLAN: + case FlinkSqlParser.KW_PRECEDING: + case FlinkSqlParser.KW_PYTHON: + case FlinkSqlParser.KW_PYTHON_ARCHIVES: + case FlinkSqlParser.KW_PYTHON_DEPENDENCIES: + case FlinkSqlParser.KW_PYTHON_FILES: + case FlinkSqlParser.KW_PYTHON_JAR: + case FlinkSqlParser.KW_PYTHON_PARAMETER: + case FlinkSqlParser.KW_PYTHON_REQUIREMENTS: + case FlinkSqlParser.KW_QUARTER: + case FlinkSqlParser.KW_REMOVE: + case FlinkSqlParser.KW_RESTRICT: + case FlinkSqlParser.KW_SECONDS: + case FlinkSqlParser.KW_SESSION: + case FlinkSqlParser.KW_SETS: + case FlinkSqlParser.KW_SIZE: + case FlinkSqlParser.KW_SLIDE: + case FlinkSqlParser.KW_STEP: + case FlinkSqlParser.KW_TEMPORARY: + case FlinkSqlParser.KW_TIMECOL: + case FlinkSqlParser.KW_TUMBLE: + case FlinkSqlParser.KW_UNLOAD: + case FlinkSqlParser.KW_VIEW: + case FlinkSqlParser.KW_WEEK: + case FlinkSqlParser.KW_YEARS: + case FlinkSqlParser.KW_ZONE: + case FlinkSqlParser.STRING_LITERAL: + case FlinkSqlParser.DIG_LITERAL: + case FlinkSqlParser.ID_LITERAL: + { + this.state = 2138; + this.uid(); + } + break; + default: + throw new antlr.NoViableAltException(this); } - break; + this.state = 2141; + this.match(FlinkSqlParser.KW_ON); + this.state = 2142; + this.match(FlinkSqlParser.KW_NULL); + } + } + } } catch (re) { @@ -9721,41 +10582,130 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public functionParam(): FunctionParamContext { - let localContext = new FunctionParamContext(this.context, this.state); - this.enterRule(localContext, 282, FlinkSqlParser.RULE_functionParam); + public jsonArrayParams(): JsonArrayParamsContext { + let localContext = new JsonArrayParamsContext(this.context, this.state); + this.enterRule(localContext, 292, FlinkSqlParser.RULE_jsonArrayParams); + let _la: number; try { - this.state = 2035; + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 2148; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 2031; - this.reservedKeywordsUsedAsFuncParam(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 2032; - this.timeIntervalUnit(); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 254, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 2145; + this.valueExpression(0); + } + } } - break; - case 3: - this.enterOuterAlt(localContext, 3); + this.state = 2150; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 254, this.context); + } + this.state = 2157; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 245 || ((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { { - this.state = 2033; - this.timePointUnit(); + this.state = 2153; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case FlinkSqlParser.KW_NULL: + { + this.state = 2151; + this.match(FlinkSqlParser.KW_NULL); + } + break; + case FlinkSqlParser.KW_ADD: + case FlinkSqlParser.KW_AFTER: + case FlinkSqlParser.KW_ASC: + case FlinkSqlParser.KW_CASCADE: + case FlinkSqlParser.KW_CATALOG: + case FlinkSqlParser.KW_CENTURY: + case FlinkSqlParser.KW_CONFIG: + case FlinkSqlParser.KW_CONSTRAINTS: + case FlinkSqlParser.KW_CUMULATE: + case FlinkSqlParser.KW_DATA: + case FlinkSqlParser.KW_DATABASE: + case FlinkSqlParser.KW_DAYS: + case FlinkSqlParser.KW_DECADE: + case FlinkSqlParser.KW_DESC: + case FlinkSqlParser.KW_DESCRIPTOR: + case FlinkSqlParser.KW_DIV: + case FlinkSqlParser.KW_ENGINE: + case FlinkSqlParser.KW_EPOCH: + case FlinkSqlParser.KW_EXCLUDING: + case FlinkSqlParser.KW_FILE: + case FlinkSqlParser.KW_FIRST: + case FlinkSqlParser.KW_GENERATED: + case FlinkSqlParser.KW_HOP: + case FlinkSqlParser.KW_HOURS: + case FlinkSqlParser.KW_IGNORE: + case FlinkSqlParser.KW_INCLUDING: + case FlinkSqlParser.KW_JAR: + case FlinkSqlParser.KW_JARS: + case FlinkSqlParser.KW_JAVA: + case FlinkSqlParser.KW_KEY: + case FlinkSqlParser.KW_LAST: + case FlinkSqlParser.KW_LOAD: + case FlinkSqlParser.KW_MAP: + case FlinkSqlParser.KW_MICROSECOND: + case FlinkSqlParser.KW_MILLENNIUM: + case FlinkSqlParser.KW_MILLISECOND: + case FlinkSqlParser.KW_MINUTES: + case FlinkSqlParser.KW_MONTHS: + case FlinkSqlParser.KW_NANOSECOND: + case FlinkSqlParser.KW_NULLS: + case FlinkSqlParser.KW_OPTIONS: + case FlinkSqlParser.KW_PAST: + case FlinkSqlParser.KW_PLAN: + case FlinkSqlParser.KW_PRECEDING: + case FlinkSqlParser.KW_PYTHON: + case FlinkSqlParser.KW_PYTHON_ARCHIVES: + case FlinkSqlParser.KW_PYTHON_DEPENDENCIES: + case FlinkSqlParser.KW_PYTHON_FILES: + case FlinkSqlParser.KW_PYTHON_JAR: + case FlinkSqlParser.KW_PYTHON_PARAMETER: + case FlinkSqlParser.KW_PYTHON_REQUIREMENTS: + case FlinkSqlParser.KW_QUARTER: + case FlinkSqlParser.KW_REMOVE: + case FlinkSqlParser.KW_RESTRICT: + case FlinkSqlParser.KW_SECONDS: + case FlinkSqlParser.KW_SESSION: + case FlinkSqlParser.KW_SETS: + case FlinkSqlParser.KW_SIZE: + case FlinkSqlParser.KW_SLIDE: + case FlinkSqlParser.KW_STEP: + case FlinkSqlParser.KW_TEMPORARY: + case FlinkSqlParser.KW_TIMECOL: + case FlinkSqlParser.KW_TUMBLE: + case FlinkSqlParser.KW_UNLOAD: + case FlinkSqlParser.KW_VIEW: + case FlinkSqlParser.KW_WEEK: + case FlinkSqlParser.KW_YEARS: + case FlinkSqlParser.KW_ZONE: + case FlinkSqlParser.STRING_LITERAL: + case FlinkSqlParser.DIG_LITERAL: + case FlinkSqlParser.ID_LITERAL: + { + this.state = 2152; + this.uid(); + } + break; + default: + throw new antlr.NoViableAltException(this); } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 2034; - this.expression(); + this.state = 2155; + this.match(FlinkSqlParser.KW_ON); + this.state = 2156; + this.match(FlinkSqlParser.KW_NULL); } - break; + } + } } catch (re) { @@ -9774,11 +10724,11 @@ export class FlinkSqlParser extends SQLParserBase { } public dereferenceDefinition(): DereferenceDefinitionContext { let localContext = new DereferenceDefinitionContext(this.context, this.state); - this.enterRule(localContext, 284, FlinkSqlParser.RULE_dereferenceDefinition); + this.enterRule(localContext, 294, FlinkSqlParser.RULE_dereferenceDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 2037; + this.state = 2159; this.uid(); } } @@ -9798,11 +10748,11 @@ export class FlinkSqlParser extends SQLParserBase { } public correlationName(): CorrelationNameContext { let localContext = new CorrelationNameContext(this.context, this.state); - this.enterRule(localContext, 286, FlinkSqlParser.RULE_correlationName); + this.enterRule(localContext, 296, FlinkSqlParser.RULE_correlationName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2039; + this.state = 2161; this.identifier(); } } @@ -9822,22 +10772,22 @@ export class FlinkSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 288, FlinkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 298, FlinkSqlParser.RULE_qualifiedName); try { - this.state = 2043; + this.state = 2165; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2041; + this.state = 2163; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2042; + this.state = 2164; this.dereferenceDefinition(); } break; @@ -9859,24 +10809,24 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalExpression(): TimeIntervalExpressionContext { let localContext = new TimeIntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 290, FlinkSqlParser.RULE_timeIntervalExpression); + this.enterRule(localContext, 300, FlinkSqlParser.RULE_timeIntervalExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2045; + this.state = 2167; this.match(FlinkSqlParser.KW_INTERVAL); - this.state = 2048; + this.state = 2170; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 236, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { - this.state = 2046; + this.state = 2168; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 2047; + this.state = 2169; this.errorCapturingUnitToUnitInterval(); } break; @@ -9899,18 +10849,18 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 292, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 302, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2050; + this.state = 2172; this.multiUnitsInterval(); - this.state = 2052; + this.state = 2174; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: { - this.state = 2051; + this.state = 2173; this.unitToUnitInterval(); } break; @@ -9933,12 +10883,12 @@ export class FlinkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 294, FlinkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 304, FlinkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2057; + this.state = 2179; this.errorHandler.sync(this); alternative = 1; do { @@ -9946,9 +10896,9 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 2054; + this.state = 2176; this.intervalValue(); - this.state = 2055; + this.state = 2177; this.timeIntervalUnit(); } } @@ -9956,9 +10906,9 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2059; + this.state = 2181; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 238, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 260, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -9978,24 +10928,24 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 296, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 306, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2061; + this.state = 2183; localContext._body = this.unitToUnitInterval(); - this.state = 2064; + this.state = 2186; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { case 1: { - this.state = 2062; + this.state = 2184; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 2063; + this.state = 2185; localContext._error2 = this.unitToUnitInterval(); } break; @@ -10018,17 +10968,17 @@ export class FlinkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 298, FlinkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 308, FlinkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2066; + this.state = 2188; localContext._value = this.intervalValue(); - this.state = 2067; + this.state = 2189; localContext._from_ = this.timeIntervalUnit(); - this.state = 2068; + this.state = 2190; this.match(FlinkSqlParser.KW_TO); - this.state = 2069; + this.state = 2191; localContext._to = this.timeIntervalUnit(); } } @@ -10048,10 +10998,10 @@ export class FlinkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 300, FlinkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 310, FlinkSqlParser.RULE_intervalValue); let _la: number; try { - this.state = 2076; + this.state = 2198; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.HYPHEN_SIGN: @@ -10060,12 +11010,12 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2072; + this.state = 2194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 530 || _la === 531) { { - this.state = 2071; + this.state = 2193; _la = this.tokenStream.LA(1); if(!(_la === 530 || _la === 531)) { this.errorHandler.recoverInline(this); @@ -10077,7 +11027,7 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 2074; + this.state = 2196; _la = this.tokenStream.LA(1); if(!(_la === 539 || _la === 540)) { this.errorHandler.recoverInline(this); @@ -10091,7 +11041,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2075; + this.state = 2197; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10115,29 +11065,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 302, FlinkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 312, FlinkSqlParser.RULE_tableAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2079; + this.state = 2201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2078; + this.state = 2200; this.match(FlinkSqlParser.KW_AS); } } - this.state = 2081; + this.state = 2203; localContext._alias = this.identifier(); - this.state = 2083; + this.state = 2205; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: { - this.state = 2082; + this.state = 2204; this.identifierList(); } break; @@ -10160,13 +11110,13 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 304, FlinkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 314, FlinkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2085; + this.state = 2207; this.identifier(); - this.state = 2086; + this.state = 2208; this.errorCapturingIdentifierExtra(); } } @@ -10186,29 +11136,29 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 306, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localContext, 316, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); let _la: number; try { - this.state = 2095; + this.state = 2217; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_MINUS: localContext = new ErrorIdentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2090; + this.state = 2212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2088; + this.state = 2210; this.match(FlinkSqlParser.KW_MINUS); - this.state = 2089; + this.state = 2211; this.identifier(); } } - this.state = 2092; + this.state = 2214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 222); @@ -10242,15 +11192,15 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierList(): IdentifierListContext { let localContext = new IdentifierListContext(this.context, this.state); - this.enterRule(localContext, 308, FlinkSqlParser.RULE_identifierList); + this.enterRule(localContext, 318, FlinkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2097; + this.state = 2219; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2098; + this.state = 2220; this.identifierSeq(); - this.state = 2099; + this.state = 2221; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -10270,26 +11220,26 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierSeq(): IdentifierSeqContext { let localContext = new IdentifierSeqContext(this.context, this.state); - this.enterRule(localContext, 310, FlinkSqlParser.RULE_identifierSeq); + this.enterRule(localContext, 320, FlinkSqlParser.RULE_identifierSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2101; + this.state = 2223; this.identifier(); - this.state = 2106; + this.state = 2228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 2102; + this.state = 2224; this.match(FlinkSqlParser.COMMA); - this.state = 2103; + this.state = 2225; this.identifier(); } } - this.state = 2108; + this.state = 2230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10311,9 +11261,9 @@ export class FlinkSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 312, FlinkSqlParser.RULE_identifier); + this.enterRule(localContext, 322, FlinkSqlParser.RULE_identifier); try { - this.state = 2112; + this.state = 2234; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: @@ -10321,7 +11271,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2109; + this.state = 2231; this.unquotedIdentifier(); } break; @@ -10329,7 +11279,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QuotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2110; + this.state = 2232; this.quotedIdentifier(); } break; @@ -10404,7 +11354,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new NonReservedKeywordsAlternativeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2111; + this.state = 2233; this.nonReservedKeywords(); } break; @@ -10428,12 +11378,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unquotedIdentifier(): UnquotedIdentifierContext { let localContext = new UnquotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 314, FlinkSqlParser.RULE_unquotedIdentifier); + this.enterRule(localContext, 324, FlinkSqlParser.RULE_unquotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2114; + this.state = 2236; _la = this.tokenStream.LA(1); if(!(_la === 539 || _la === 542)) { this.errorHandler.recoverInline(this); @@ -10460,11 +11410,11 @@ export class FlinkSqlParser extends SQLParserBase { } public quotedIdentifier(): QuotedIdentifierContext { let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 316, FlinkSqlParser.RULE_quotedIdentifier); + this.enterRule(localContext, 326, FlinkSqlParser.RULE_quotedIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2116; + this.state = 2238; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -10484,17 +11434,17 @@ export class FlinkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 318, FlinkSqlParser.RULE_whenClause); + this.enterRule(localContext, 328, FlinkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2118; + this.state = 2240; this.match(FlinkSqlParser.KW_WHEN); - this.state = 2119; + this.state = 2241; localContext._condition = this.expression(); - this.state = 2120; + this.state = 2242; this.match(FlinkSqlParser.KW_THEN); - this.state = 2121; + this.state = 2243; localContext._result = this.expression(); } } @@ -10514,11 +11464,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPath(): CatalogPathContext { let localContext = new CatalogPathContext(this.context, this.state); - this.enterRule(localContext, 320, FlinkSqlParser.RULE_catalogPath); + this.enterRule(localContext, 330, FlinkSqlParser.RULE_catalogPath); try { this.enterOuterAlt(localContext, 1); { - this.state = 2123; + this.state = 2245; this.identifier(); } } @@ -10538,11 +11488,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPathCreate(): CatalogPathCreateContext { let localContext = new CatalogPathCreateContext(this.context, this.state); - this.enterRule(localContext, 322, FlinkSqlParser.RULE_catalogPathCreate); + this.enterRule(localContext, 332, FlinkSqlParser.RULE_catalogPathCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2125; + this.state = 2247; this.identifier(); } } @@ -10562,21 +11512,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePath(): DatabasePathContext { let localContext = new DatabasePathContext(this.context, this.state); - this.enterRule(localContext, 324, FlinkSqlParser.RULE_databasePath); + this.enterRule(localContext, 334, FlinkSqlParser.RULE_databasePath); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2127; + this.state = 2249; this.identifier(); - this.state = 2130; + this.state = 2252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2128; + this.state = 2250; this.match(FlinkSqlParser.DOT); - this.state = 2129; + this.state = 2251; this.identifier(); } } @@ -10599,21 +11549,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePathCreate(): DatabasePathCreateContext { let localContext = new DatabasePathCreateContext(this.context, this.state); - this.enterRule(localContext, 326, FlinkSqlParser.RULE_databasePathCreate); + this.enterRule(localContext, 336, FlinkSqlParser.RULE_databasePathCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2132; + this.state = 2254; this.identifier(); - this.state = 2135; + this.state = 2257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2133; + this.state = 2255; this.match(FlinkSqlParser.DOT); - this.state = 2134; + this.state = 2256; this.identifier(); } } @@ -10636,25 +11586,25 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePathCreate(): TablePathCreateContext { let localContext = new TablePathCreateContext(this.context, this.state); - this.enterRule(localContext, 328, FlinkSqlParser.RULE_tablePathCreate); + this.enterRule(localContext, 338, FlinkSqlParser.RULE_tablePathCreate); let _la: number; try { - this.state = 2149; + this.state = 2271; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2137; + this.state = 2259; this.identifier(); - this.state = 2140; + this.state = 2262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2138; + this.state = 2260; this.match(FlinkSqlParser.DOT); - this.state = 2139; + this.state = 2261; this.identifier(); } } @@ -10664,20 +11614,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2142; + this.state = 2264; this.identifier(); - this.state = 2143; + this.state = 2265; this.match(FlinkSqlParser.DOT); - this.state = 2144; + this.state = 2266; this.identifier(); - this.state = 2147; + this.state = 2269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2145; + this.state = 2267; this.match(FlinkSqlParser.DOT); - this.state = 2146; + this.state = 2268; this.identifier(); } } @@ -10702,24 +11652,24 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePath(): TablePathContext { let localContext = new TablePathContext(this.context, this.state); - this.enterRule(localContext, 330, FlinkSqlParser.RULE_tablePath); + this.enterRule(localContext, 340, FlinkSqlParser.RULE_tablePath); try { - this.state = 2163; + this.state = 2285; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2151; + this.state = 2273; this.identifier(); - this.state = 2154; + this.state = 2276; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: { - this.state = 2152; + this.state = 2274; this.match(FlinkSqlParser.DOT); - this.state = 2153; + this.state = 2275; this.identifier(); } break; @@ -10729,20 +11679,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2156; + this.state = 2278; this.identifier(); - this.state = 2157; + this.state = 2279; this.match(FlinkSqlParser.DOT); - this.state = 2158; + this.state = 2280; this.identifier(); - this.state = 2161; + this.state = 2283; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { case 1: { - this.state = 2159; + this.state = 2281; this.match(FlinkSqlParser.DOT); - this.state = 2160; + this.state = 2282; this.identifier(); } break; @@ -10767,24 +11717,24 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPath(): ViewPathContext { let localContext = new ViewPathContext(this.context, this.state); - this.enterRule(localContext, 332, FlinkSqlParser.RULE_viewPath); + this.enterRule(localContext, 342, FlinkSqlParser.RULE_viewPath); try { - this.state = 2177; + this.state = 2299; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2165; + this.state = 2287; this.identifier(); - this.state = 2168; + this.state = 2290; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { case 1: { - this.state = 2166; + this.state = 2288; this.match(FlinkSqlParser.DOT); - this.state = 2167; + this.state = 2289; this.identifier(); } break; @@ -10794,20 +11744,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2170; + this.state = 2292; this.identifier(); - this.state = 2171; + this.state = 2293; this.match(FlinkSqlParser.DOT); - this.state = 2172; + this.state = 2294; this.identifier(); - this.state = 2175; + this.state = 2297; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 279, this.context) ) { case 1: { - this.state = 2173; + this.state = 2295; this.match(FlinkSqlParser.DOT); - this.state = 2174; + this.state = 2296; this.identifier(); } break; @@ -10832,25 +11782,25 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPathCreate(): ViewPathCreateContext { let localContext = new ViewPathCreateContext(this.context, this.state); - this.enterRule(localContext, 334, FlinkSqlParser.RULE_viewPathCreate); + this.enterRule(localContext, 344, FlinkSqlParser.RULE_viewPathCreate); let _la: number; try { - this.state = 2191; + this.state = 2313; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 261, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2179; + this.state = 2301; this.identifier(); - this.state = 2182; + this.state = 2304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2180; + this.state = 2302; this.match(FlinkSqlParser.DOT); - this.state = 2181; + this.state = 2303; this.identifier(); } } @@ -10860,20 +11810,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2184; + this.state = 2306; this.identifier(); - this.state = 2185; + this.state = 2307; this.match(FlinkSqlParser.DOT); - this.state = 2186; + this.state = 2308; this.identifier(); - this.state = 2189; + this.state = 2311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2187; + this.state = 2309; this.match(FlinkSqlParser.DOT); - this.state = 2188; + this.state = 2310; this.identifier(); } } @@ -10898,30 +11848,30 @@ export class FlinkSqlParser extends SQLParserBase { } public uid(): UidContext { let localContext = new UidContext(this.context, this.state); - this.enterRule(localContext, 336, FlinkSqlParser.RULE_uid); + this.enterRule(localContext, 346, FlinkSqlParser.RULE_uid); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2193; + this.state = 2315; this.identifier(); - this.state = 2198; + this.state = 2320; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 262, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 284, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 2194; + this.state = 2316; this.match(FlinkSqlParser.DOT); - this.state = 2195; + this.state = 2317; this.identifier(); } } } - this.state = 2200; + this.state = 2322; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 262, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 284, this.context); } } } @@ -10941,13 +11891,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withOption(): WithOptionContext { let localContext = new WithOptionContext(this.context, this.state); - this.enterRule(localContext, 338, FlinkSqlParser.RULE_withOption); + this.enterRule(localContext, 348, FlinkSqlParser.RULE_withOption); try { this.enterOuterAlt(localContext, 1); { - this.state = 2201; + this.state = 2323; this.match(FlinkSqlParser.KW_WITH); - this.state = 2202; + this.state = 2324; this.tablePropertyList(); } } @@ -10967,15 +11917,15 @@ export class FlinkSqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 340, FlinkSqlParser.RULE_ifNotExists); + this.enterRule(localContext, 350, FlinkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2204; + this.state = 2326; this.match(FlinkSqlParser.KW_IF); - this.state = 2205; + this.state = 2327; this.match(FlinkSqlParser.KW_NOT); - this.state = 2206; + this.state = 2328; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10995,13 +11945,13 @@ export class FlinkSqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 342, FlinkSqlParser.RULE_ifExists); + this.enterRule(localContext, 352, FlinkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2208; + this.state = 2330; this.match(FlinkSqlParser.KW_IF); - this.state = 2209; + this.state = 2331; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -11021,32 +11971,32 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyList(): TablePropertyListContext { let localContext = new TablePropertyListContext(this.context, this.state); - this.enterRule(localContext, 344, FlinkSqlParser.RULE_tablePropertyList); + this.enterRule(localContext, 354, FlinkSqlParser.RULE_tablePropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2211; + this.state = 2333; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2212; + this.state = 2334; this.tableProperty(); - this.state = 2217; + this.state = 2339; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 2213; + this.state = 2335; this.match(FlinkSqlParser.COMMA); - this.state = 2214; + this.state = 2336; this.tableProperty(); } } - this.state = 2219; + this.state = 2341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2220; + this.state = 2342; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -11066,29 +12016,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableProperty(): TablePropertyContext { let localContext = new TablePropertyContext(this.context, this.state); - this.enterRule(localContext, 346, FlinkSqlParser.RULE_tableProperty); + this.enterRule(localContext, 356, FlinkSqlParser.RULE_tableProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2222; + this.state = 2344; localContext._key = this.tablePropertyKey(); - this.state = 2227; + this.state = 2349; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 140 || _la === 398 || _la === 506 || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 7) !== 0)) { { - this.state = 2224; + this.state = 2346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 506) { { - this.state = 2223; + this.state = 2345; this.match(FlinkSqlParser.EQUAL_SYMBOL); } } - this.state = 2226; + this.state = 2348; localContext._value = this.tablePropertyValue(); } } @@ -11111,29 +12061,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyKey(): TablePropertyKeyContext { let localContext = new TablePropertyKeyContext(this.context, this.state); - this.enterRule(localContext, 348, FlinkSqlParser.RULE_tablePropertyKey); + this.enterRule(localContext, 358, FlinkSqlParser.RULE_tablePropertyKey); try { - this.state = 2232; + this.state = 2354; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2229; + this.state = 2351; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2230; + this.state = 2352; this.dereferenceDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2231; + this.state = 2353; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11155,22 +12105,22 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyValue(): TablePropertyValueContext { let localContext = new TablePropertyValueContext(this.context, this.state); - this.enterRule(localContext, 350, FlinkSqlParser.RULE_tablePropertyValue); + this.enterRule(localContext, 360, FlinkSqlParser.RULE_tablePropertyValue); try { - this.state = 2238; + this.state = 2360; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2234; + this.state = 2356; this.match(FlinkSqlParser.DIG_LITERAL); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2235; + this.state = 2357; this.match(FlinkSqlParser.REAL_LITERAL); } break; @@ -11178,14 +12128,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 2236; + this.state = 2358; this.booleanLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2237; + this.state = 2359; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11209,40 +12159,40 @@ export class FlinkSqlParser extends SQLParserBase { } public logicalOperator(): LogicalOperatorContext { let localContext = new LogicalOperatorContext(this.context, this.state); - this.enterRule(localContext, 352, FlinkSqlParser.RULE_logicalOperator); + this.enterRule(localContext, 362, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 2246; + this.state = 2368; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 2240; + this.state = 2362; this.match(FlinkSqlParser.KW_AND); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 2241; + this.state = 2363; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 2242; + this.state = 2364; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.KW_OR: this.enterOuterAlt(localContext, 3); { - this.state = 2243; + this.state = 2365; this.match(FlinkSqlParser.KW_OR); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2244; + this.state = 2366; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 2245; + this.state = 2367; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11266,76 +12216,76 @@ export class FlinkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 354, FlinkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 364, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 2262; + this.state = 2384; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2248; + this.state = 2370; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2249; + this.state = 2371; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2250; + this.state = 2372; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2251; + this.state = 2373; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2252; + this.state = 2374; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2253; + this.state = 2375; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2254; + this.state = 2376; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2255; + this.state = 2377; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2256; + this.state = 2378; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2257; + this.state = 2379; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 2258; + this.state = 2380; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2259; + this.state = 2381; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2260; + this.state = 2382; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 2261; + this.state = 2383; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; @@ -11357,47 +12307,47 @@ export class FlinkSqlParser extends SQLParserBase { } public bitOperator(): BitOperatorContext { let localContext = new BitOperatorContext(this.context, this.state); - this.enterRule(localContext, 356, FlinkSqlParser.RULE_bitOperator); + this.enterRule(localContext, 366, FlinkSqlParser.RULE_bitOperator); try { - this.state = 2271; + this.state = 2393; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 2264; + this.state = 2386; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2265; + this.state = 2387; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case FlinkSqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 2266; + this.state = 2388; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2267; + this.state = 2389; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 2268; + this.state = 2390; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2269; + this.state = 2391; this.match(FlinkSqlParser.BIT_XOR_OP); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 2270; + this.state = 2392; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11421,12 +12371,12 @@ export class FlinkSqlParser extends SQLParserBase { } public mathOperator(): MathOperatorContext { let localContext = new MathOperatorContext(this.context, this.state); - this.enterRule(localContext, 358, FlinkSqlParser.RULE_mathOperator); + this.enterRule(localContext, 368, FlinkSqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2273; + this.state = 2395; _la = this.tokenStream.LA(1); if(!(_la === 453 || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 221) !== 0))) { this.errorHandler.recoverInline(this); @@ -11453,12 +12403,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unaryOperator(): UnaryOperatorContext { let localContext = new UnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 360, FlinkSqlParser.RULE_unaryOperator); + this.enterRule(localContext, 370, FlinkSqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2275; + this.state = 2397; _la = this.tokenStream.LA(1); if(!(_la === 242 || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 6291459) !== 0))) { this.errorHandler.recoverInline(this); @@ -11485,16 +12435,16 @@ export class FlinkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 362, FlinkSqlParser.RULE_constant); + this.enterRule(localContext, 372, FlinkSqlParser.RULE_constant); let _la: number; try { - this.state = 2291; + this.state = 2413; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 1); { - this.state = 2277; + this.state = 2399; this.timeIntervalExpression(); } break; @@ -11510,14 +12460,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_WEEK: this.enterOuterAlt(localContext, 2); { - this.state = 2278; + this.state = 2400; this.timePointLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 2279; + this.state = 2401; this.stringLiteral(); } break; @@ -11525,17 +12475,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2281; + this.state = 2403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 530) { { - this.state = 2280; + this.state = 2402; this.match(FlinkSqlParser.HYPHEN_SIGN); } } - this.state = 2283; + this.state = 2405; this.decimalLiteral(); } break; @@ -11543,21 +12493,21 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 5); { - this.state = 2284; + this.state = 2406; this.booleanLiteral(); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 6); { - this.state = 2285; + this.state = 2407; this.match(FlinkSqlParser.REAL_LITERAL); } break; case FlinkSqlParser.BIT_STRING: this.enterOuterAlt(localContext, 7); { - this.state = 2286; + this.state = 2408; this.match(FlinkSqlParser.BIT_STRING); } break; @@ -11565,17 +12515,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 8); { - this.state = 2288; + this.state = 2410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 2287; + this.state = 2409; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 2290; + this.state = 2412; this.match(FlinkSqlParser.KW_NULL); } break; @@ -11599,13 +12549,13 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointLiteral(): TimePointLiteralContext { let localContext = new TimePointLiteralContext(this.context, this.state); - this.enterRule(localContext, 364, FlinkSqlParser.RULE_timePointLiteral); + this.enterRule(localContext, 374, FlinkSqlParser.RULE_timePointLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2293; + this.state = 2415; this.timePointUnit(); - this.state = 2294; + this.state = 2416; this.stringLiteral(); } } @@ -11625,11 +12575,11 @@ export class FlinkSqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 366, FlinkSqlParser.RULE_stringLiteral); + this.enterRule(localContext, 376, FlinkSqlParser.RULE_stringLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2296; + this.state = 2418; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -11649,11 +12599,11 @@ export class FlinkSqlParser extends SQLParserBase { } public decimalLiteral(): DecimalLiteralContext { let localContext = new DecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 368, FlinkSqlParser.RULE_decimalLiteral); + this.enterRule(localContext, 378, FlinkSqlParser.RULE_decimalLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2298; + this.state = 2420; this.match(FlinkSqlParser.DIG_LITERAL); } } @@ -11673,12 +12623,12 @@ export class FlinkSqlParser extends SQLParserBase { } public booleanLiteral(): BooleanLiteralContext { let localContext = new BooleanLiteralContext(this.context, this.state); - this.enterRule(localContext, 370, FlinkSqlParser.RULE_booleanLiteral); + this.enterRule(localContext, 380, FlinkSqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2300; + this.state = 2422; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 398)) { this.errorHandler.recoverInline(this); @@ -11705,12 +12655,12 @@ export class FlinkSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 372, FlinkSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 382, FlinkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2302; + this.state = 2424; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 113)) { this.errorHandler.recoverInline(this); @@ -11737,12 +12687,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointUnit(): TimePointUnitContext { let localContext = new TimePointUnitContext(this.context, this.state); - this.enterRule(localContext, 374, FlinkSqlParser.RULE_timePointUnit); + this.enterRule(localContext, 384, FlinkSqlParser.RULE_timePointUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2304; + this.state = 2426; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 223 || _la === 230 || _la === 335 || _la === 437 || ((((_la - 471)) & ~0x1F) === 0 && ((1 << (_la - 471)) & 262149) !== 0) || _la === 503)) { this.errorHandler.recoverInline(this); @@ -11769,12 +12719,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalUnit(): TimeIntervalUnitContext { let localContext = new TimeIntervalUnitContext(this.context, this.state); - this.enterRule(localContext, 376, FlinkSqlParser.RULE_timeIntervalUnit); + this.enterRule(localContext, 386, FlinkSqlParser.RULE_timeIntervalUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2306; + this.state = 2428; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 223 || _la === 230 || _la === 335 || ((((_la - 428)) & ~0x1F) === 0 && ((1 << (_la - 428)) & 140542465) !== 0) || ((((_la - 461)) & ~0x1F) === 0 && ((1 << (_la - 461)) & 2415983617) !== 0) || _la === 503 || _la === 504)) { this.errorHandler.recoverInline(this); @@ -11801,12 +12751,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncParam(): ReservedKeywordsUsedAsFuncParamContext { let localContext = new ReservedKeywordsUsedAsFuncParamContext(this.context, this.state); - this.enterRule(localContext, 378, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); + this.enterRule(localContext, 388, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2308; + this.state = 2430; _la = this.tokenStream.LA(1); if(!(((((_la - 5)) & ~0x1F) === 0 && ((1 << (_la - 5)) & 268435713) !== 0) || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 113 || ((((_la - 201)) & ~0x1F) === 0 && ((1 << (_la - 201)) & 385) !== 0) || _la === 390 || _la === 414 || _la === 528)) { this.errorHandler.recoverInline(this); @@ -11833,12 +12783,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsNoParamsUsedAsFuncName(): ReservedKeywordsNoParamsUsedAsFuncNameContext { let localContext = new ReservedKeywordsNoParamsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 380, FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName); + this.enterRule(localContext, 390, FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2310; + this.state = 2432; _la = this.tokenStream.LA(1); if(!(((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 208 || _la === 209)) { this.errorHandler.recoverInline(this); @@ -11865,12 +12815,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsFollowParamsUsedAsFuncName(): ReservedKeywordsFollowParamsUsedAsFuncNameContext { let localContext = new ReservedKeywordsFollowParamsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 382, FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName); + this.enterRule(localContext, 392, FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2312; + this.state = 2434; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 379 || _la === 380)) { this.errorHandler.recoverInline(this); @@ -11897,12 +12847,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 384, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 394, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2314; + this.state = 2436; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396816) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 2147811433) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 25165825) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641553) !== 0) || ((((_la - 187)) & ~0x1F) === 0 && ((1 << (_la - 187)) & 277391867) !== 0) || ((((_la - 221)) & ~0x1F) === 0 && ((1 << (_la - 221)) & 41943565) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 537530369) !== 0) || ((((_la - 318)) & ~0x1F) === 0 && ((1 << (_la - 318)) & 131185) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 8389763) !== 0) || ((((_la - 396)) & ~0x1F) === 0 && ((1 << (_la - 396)) & 50339865) !== 0) || _la === 437 || _la === 470 || _la === 489 || _la === 503)) { this.errorHandler.recoverInline(this); @@ -11929,12 +12879,12 @@ export class FlinkSqlParser extends SQLParserBase { } public nonReservedKeywords(): NonReservedKeywordsContext { let localContext = new NonReservedKeywordsContext(this.context, this.state); - this.enterRule(localContext, 386, FlinkSqlParser.RULE_nonReservedKeywords); + this.enterRule(localContext, 396, FlinkSqlParser.RULE_nonReservedKeywords); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2316; + this.state = 2438; _la = this.tokenStream.LA(1); if(!(((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11970,9 +12920,9 @@ export class FlinkSqlParser extends SQLParserBase { return this.tableExpression_sempred(localContext as TableExpressionContext, predIndex); case 131: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); - case 134: + case 135: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 136: + case 137: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); } return true; @@ -12037,7 +12987,7 @@ export class FlinkSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,542,2319,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,542,2441,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, @@ -12069,959 +13019,1018 @@ export class FlinkSqlParser extends SQLParserBase { 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,1,0,5,0,390,8,0,10,0,12,0,393,9,0,1,0,1, - 0,1,1,1,1,3,1,399,8,1,1,1,3,1,402,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,3,2,416,8,2,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1, - 4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,434,8,4,1,5,1,5,3,5,438,8, - 5,1,6,1,6,1,6,1,7,1,7,1,7,1,7,3,7,447,8,7,1,7,1,7,1,7,3,7,452,8, - 7,1,8,1,8,1,8,5,8,457,8,8,10,8,12,8,460,9,8,1,9,1,9,1,10,1,10,1, - 10,1,10,1,10,1,10,3,10,470,8,10,1,11,1,11,1,11,1,11,1,11,5,11,477, - 8,11,10,11,12,11,480,9,11,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12, - 1,12,3,12,491,8,12,1,12,3,12,494,8,12,1,12,1,12,1,12,1,12,1,12,3, - 12,501,8,12,1,12,3,12,504,8,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12, - 512,8,12,1,12,1,12,3,12,516,8,12,1,12,1,12,1,12,3,12,521,8,12,1, - 12,3,12,524,8,12,1,13,1,13,1,13,1,13,1,13,3,13,531,8,13,1,14,1,14, - 1,14,1,14,1,15,1,15,3,15,539,8,15,1,16,1,16,3,16,543,8,16,1,17,1, - 17,1,17,1,17,1,18,1,18,1,18,1,18,1,18,1,18,3,18,555,8,18,1,18,1, - 18,1,18,1,18,1,18,1,18,3,18,563,8,18,1,18,1,18,3,18,567,8,18,1,18, - 1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18, - 1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18, - 1,18,1,18,1,18,3,18,599,8,18,1,19,3,19,602,8,19,1,19,4,19,605,8, - 19,11,19,12,19,606,1,20,1,20,3,20,611,8,20,1,21,1,21,3,21,615,8, - 21,1,21,1,21,3,21,619,8,21,1,21,1,21,1,21,1,21,1,21,5,21,626,8,21, - 10,21,12,21,629,9,21,1,21,1,21,3,21,633,8,21,1,21,1,21,3,21,637, - 8,21,1,21,1,21,3,21,641,8,21,1,21,1,21,1,21,3,21,646,8,21,1,21,3, - 21,649,8,21,1,21,1,21,3,21,653,8,21,1,22,1,22,1,22,3,22,658,8,22, - 1,22,1,22,1,22,1,22,3,22,664,8,22,1,23,1,23,1,23,3,23,669,8,23,1, - 24,1,24,1,24,3,24,674,8,24,1,24,1,24,3,24,678,8,24,1,25,1,25,3,25, - 682,8,25,1,26,1,26,3,26,686,8,26,1,27,1,27,1,28,1,28,1,28,1,28,5, - 28,694,8,28,10,28,12,28,697,9,28,1,28,1,28,1,29,1,29,1,29,3,29,704, - 8,29,1,29,1,29,3,29,708,8,29,1,29,1,29,3,29,712,8,29,1,29,1,29,3, - 29,716,8,29,1,29,1,29,3,29,720,8,29,1,29,1,29,3,29,724,8,29,1,29, - 1,29,3,29,728,8,29,1,29,1,29,3,29,732,8,29,1,29,1,29,3,29,736,8, - 29,3,29,738,8,29,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,3,31,748, - 8,31,1,31,1,31,1,32,1,32,1,32,1,32,3,32,756,8,32,1,32,1,32,1,33, - 1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,35,1,35,1,35, - 1,35,1,35,1,35,1,35,5,35,778,8,35,10,35,12,35,781,9,35,1,35,1,35, - 1,35,1,35,1,35,1,35,1,35,1,35,1,35,5,35,792,8,35,10,35,12,35,795, - 9,35,1,35,1,35,3,35,799,8,35,1,36,1,36,3,36,803,8,36,1,36,1,36,1, - 36,1,36,3,36,809,8,36,1,36,3,36,812,8,36,1,36,3,36,815,8,36,1,37, - 1,37,1,37,1,37,1,37,3,37,822,8,37,1,37,3,37,825,8,37,1,38,1,38,1, - 39,1,39,1,39,1,39,1,39,3,39,834,8,39,1,40,1,40,1,41,1,41,1,41,1, - 41,1,41,1,41,1,42,1,42,3,42,846,8,42,1,42,1,42,1,42,1,42,1,42,1, - 42,1,43,1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,1,46,1,46,1, - 46,1,46,5,46,868,8,46,10,46,12,46,871,9,46,1,46,1,46,1,47,1,47,1, - 47,1,47,1,47,5,47,880,8,47,10,47,12,47,883,9,47,1,47,1,47,3,47,887, - 8,47,1,48,1,48,3,48,891,8,48,1,49,1,49,1,49,1,49,5,49,897,8,49,10, - 49,12,49,900,9,49,1,49,3,49,903,8,49,1,50,1,50,1,50,1,50,3,50,909, - 8,50,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,3,52,919,8,52,1,52, - 1,52,1,52,3,52,924,8,52,1,52,1,52,1,53,1,53,3,53,930,8,53,1,53,1, - 53,3,53,934,8,53,1,53,1,53,3,53,938,8,53,1,53,1,53,3,53,942,8,53, - 1,53,1,53,1,53,1,54,1,54,1,54,1,54,3,54,951,8,54,1,54,1,54,3,54, - 955,8,54,1,54,1,54,1,54,1,54,1,54,3,54,962,8,54,1,54,3,54,965,8, - 54,1,55,1,55,1,55,1,55,1,55,1,55,5,55,973,8,55,10,55,12,55,976,9, - 55,1,56,1,56,1,57,1,57,1,57,3,57,983,8,57,1,57,1,57,1,57,1,57,1, - 57,1,57,3,57,991,8,57,1,58,1,58,3,58,995,8,58,1,58,1,58,1,58,1,59, - 1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,1010,8,60,1,61, - 1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,64,1,64,1,64, - 1,64,1,64,1,64,3,64,1029,8,64,1,65,1,65,1,65,1,65,1,65,1,66,1,66, - 1,66,1,66,3,66,1040,8,66,1,66,1,66,3,66,1044,8,66,1,66,1,66,1,66, - 1,66,1,66,3,66,1051,8,66,1,67,1,67,1,67,3,67,1056,8,67,1,67,1,67, - 1,68,1,68,3,68,1062,8,68,1,68,1,68,3,68,1066,8,68,1,68,1,68,1,69, - 1,69,1,69,3,69,1073,8,69,1,69,1,69,3,69,1077,8,69,1,70,1,70,3,70, - 1081,8,70,1,70,1,70,3,70,1085,8,70,1,70,1,70,1,71,1,71,1,71,1,71, - 3,71,1093,8,71,1,71,1,71,3,71,1097,8,71,1,71,1,71,1,72,3,72,1102, - 8,72,1,72,1,72,1,72,1,72,3,72,1108,8,72,1,73,1,73,1,73,1,73,3,73, - 1114,8,73,1,73,3,73,1117,8,73,1,73,1,73,3,73,1121,8,73,1,74,1,74, - 1,74,1,75,1,75,1,75,1,75,5,75,1130,8,75,10,75,12,75,1133,9,75,1, - 76,1,76,1,76,1,76,5,76,1139,8,76,10,76,12,76,1142,9,76,1,76,1,76, - 1,77,1,77,3,77,1148,8,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,4,78, - 1157,8,78,11,78,12,78,1158,1,78,1,78,1,79,1,79,1,79,1,79,1,79,1, - 79,4,79,1169,8,79,11,79,12,79,1170,1,79,1,79,1,80,1,80,1,80,1,80, - 1,80,1,80,1,80,1,80,1,80,1,80,1,80,3,80,1186,8,80,1,80,3,80,1189, - 8,80,1,80,1,80,3,80,1193,8,80,1,80,3,80,1196,8,80,3,80,1198,8,80, - 1,80,1,80,1,80,3,80,1203,8,80,1,80,1,80,3,80,1207,8,80,1,80,3,80, - 1210,8,80,5,80,1212,8,80,10,80,12,80,1215,9,80,1,81,1,81,1,81,1, - 81,5,81,1221,8,81,10,81,12,81,1224,9,81,1,82,1,82,1,82,1,82,5,82, - 1230,8,82,10,82,12,82,1233,9,82,1,83,1,83,1,83,1,83,1,83,5,83,1240, - 8,83,10,83,12,83,1243,9,83,1,83,1,83,3,83,1247,8,83,1,83,1,83,1, - 83,1,83,1,83,1,84,1,84,1,85,1,85,3,85,1258,8,85,1,85,3,85,1261,8, - 85,1,85,3,85,1264,8,85,1,85,3,85,1267,8,85,1,85,3,85,1270,8,85,1, - 85,1,85,1,85,1,85,3,85,1276,8,85,1,86,1,86,3,86,1280,8,86,1,86,1, - 86,1,86,1,86,5,86,1286,8,86,10,86,12,86,1289,9,86,3,86,1291,8,86, - 1,87,1,87,1,87,3,87,1296,8,87,1,87,3,87,1299,8,87,1,87,1,87,3,87, - 1303,8,87,1,87,3,87,1306,8,87,3,87,1308,8,87,1,88,1,88,1,88,1,88, - 1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,3,88,1322,8,88,1,89,1,89, - 1,89,1,90,1,90,1,90,1,90,5,90,1331,8,90,10,90,12,90,1334,9,90,1, - 90,1,90,3,90,1338,8,90,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1346,8, - 90,1,90,3,90,1349,8,90,1,90,3,90,1352,8,90,1,90,1,90,1,90,3,90,1357, - 8,90,5,90,1359,8,90,10,90,12,90,1362,9,90,1,91,1,91,3,91,1366,8, - 91,1,92,3,92,1369,8,92,1,92,1,92,3,92,1373,8,92,1,92,1,92,3,92,1377, - 8,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,3,92,1386,8,92,1,92,1,92, - 1,92,1,92,1,92,1,92,1,92,1,92,1,92,3,92,1397,8,92,1,93,1,93,1,93, + 2,192,7,192,2,193,7,193,2,194,7,194,2,195,7,195,2,196,7,196,2,197, + 7,197,2,198,7,198,1,0,5,0,400,8,0,10,0,12,0,403,9,0,1,0,1,0,1,1, + 1,1,3,1,409,8,1,1,1,3,1,412,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2, + 1,2,1,2,1,2,1,2,3,2,426,8,2,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4, + 1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,444,8,4,1,5,1,5,3,5,448,8,5,1,6, + 1,6,1,6,1,7,1,7,1,7,1,7,3,7,457,8,7,1,7,1,7,1,7,3,7,462,8,7,1,8, + 1,8,1,8,5,8,467,8,8,10,8,12,8,470,9,8,1,9,1,9,1,10,1,10,1,10,1,10, + 1,10,1,10,3,10,480,8,10,1,11,1,11,1,11,1,11,1,11,5,11,487,8,11,10, + 11,12,11,490,9,11,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,3, + 12,501,8,12,1,12,3,12,504,8,12,1,12,1,12,1,12,1,12,1,12,3,12,511, + 8,12,1,12,3,12,514,8,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,522,8, + 12,1,12,1,12,3,12,526,8,12,1,12,1,12,1,12,3,12,531,8,12,1,12,3,12, + 534,8,12,1,13,1,13,1,13,1,13,1,13,3,13,541,8,13,1,14,1,14,1,14,1, + 14,1,15,1,15,3,15,549,8,15,1,16,1,16,3,16,553,8,16,1,17,1,17,1,17, + 1,17,1,18,1,18,1,18,1,18,1,18,1,18,3,18,565,8,18,1,18,1,18,1,18, + 1,18,1,18,1,18,3,18,573,8,18,1,18,1,18,3,18,577,8,18,1,18,1,18,1, + 18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1, + 18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1, + 18,1,18,3,18,609,8,18,1,19,3,19,612,8,19,1,19,4,19,615,8,19,11,19, + 12,19,616,1,20,1,20,3,20,621,8,20,1,21,1,21,3,21,625,8,21,1,21,1, + 21,3,21,629,8,21,1,21,1,21,1,21,1,21,1,21,5,21,636,8,21,10,21,12, + 21,639,9,21,1,21,1,21,3,21,643,8,21,1,21,1,21,3,21,647,8,21,1,21, + 1,21,3,21,651,8,21,1,21,1,21,1,21,3,21,656,8,21,1,21,3,21,659,8, + 21,1,21,1,21,3,21,663,8,21,1,22,1,22,1,22,3,22,668,8,22,1,22,1,22, + 1,22,1,22,3,22,674,8,22,1,23,1,23,1,23,3,23,679,8,23,1,24,1,24,1, + 24,3,24,684,8,24,1,24,1,24,3,24,688,8,24,1,25,1,25,3,25,692,8,25, + 1,26,1,26,3,26,696,8,26,1,27,1,27,1,28,1,28,1,28,1,28,5,28,704,8, + 28,10,28,12,28,707,9,28,1,28,1,28,1,29,1,29,1,29,3,29,714,8,29,1, + 29,1,29,3,29,718,8,29,1,29,1,29,3,29,722,8,29,1,29,1,29,3,29,726, + 8,29,1,29,1,29,3,29,730,8,29,1,29,1,29,3,29,734,8,29,1,29,1,29,3, + 29,738,8,29,1,29,1,29,3,29,742,8,29,1,29,1,29,3,29,746,8,29,3,29, + 748,8,29,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,3,31,758,8,31,1, + 31,1,31,1,32,1,32,1,32,1,32,3,32,766,8,32,1,32,1,32,1,33,1,33,1, + 33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,35,1,35,1,35,1,35,1, + 35,1,35,1,35,5,35,788,8,35,10,35,12,35,791,9,35,1,35,1,35,1,35,1, + 35,1,35,1,35,1,35,1,35,1,35,5,35,802,8,35,10,35,12,35,805,9,35,1, + 35,1,35,3,35,809,8,35,1,36,1,36,3,36,813,8,36,1,36,1,36,1,36,1,36, + 3,36,819,8,36,1,36,3,36,822,8,36,1,36,3,36,825,8,36,1,37,1,37,1, + 37,1,37,1,37,3,37,832,8,37,1,37,3,37,835,8,37,1,38,1,38,1,39,1,39, + 1,39,1,39,1,39,3,39,844,8,39,1,40,1,40,1,41,1,41,1,41,1,41,1,41, + 1,41,1,42,1,42,3,42,856,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,43, + 1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46, + 5,46,878,8,46,10,46,12,46,881,9,46,1,46,1,46,1,47,1,47,1,47,1,47, + 1,47,5,47,890,8,47,10,47,12,47,893,9,47,1,47,1,47,3,47,897,8,47, + 1,48,1,48,3,48,901,8,48,1,49,1,49,1,49,1,49,5,49,907,8,49,10,49, + 12,49,910,9,49,1,49,3,49,913,8,49,1,50,1,50,1,50,1,50,3,50,919,8, + 50,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,3,52,929,8,52,1,52,1, + 52,1,52,3,52,934,8,52,1,52,1,52,1,53,1,53,3,53,940,8,53,1,53,1,53, + 3,53,944,8,53,1,53,1,53,3,53,948,8,53,1,53,1,53,3,53,952,8,53,1, + 53,1,53,1,53,1,54,1,54,1,54,1,54,3,54,961,8,54,1,54,1,54,3,54,965, + 8,54,1,54,1,54,1,54,1,54,1,54,3,54,972,8,54,1,54,3,54,975,8,54,1, + 55,1,55,1,55,1,55,1,55,1,55,5,55,983,8,55,10,55,12,55,986,9,55,1, + 56,1,56,1,57,1,57,1,57,3,57,993,8,57,1,57,1,57,1,57,1,57,1,57,1, + 57,3,57,1001,8,57,1,58,1,58,3,58,1005,8,58,1,58,1,58,1,58,1,59,1, + 59,1,59,1,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,1020,8,60,1,61,1, + 61,1,61,1,61,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,64,1,64,1,64,1, + 64,1,64,1,64,3,64,1039,8,64,1,65,1,65,1,65,1,65,1,65,1,66,1,66,1, + 66,1,66,3,66,1050,8,66,1,66,1,66,3,66,1054,8,66,1,66,1,66,1,66,1, + 66,1,66,3,66,1061,8,66,1,67,1,67,1,67,3,67,1066,8,67,1,67,1,67,1, + 68,1,68,3,68,1072,8,68,1,68,1,68,3,68,1076,8,68,1,68,1,68,1,69,1, + 69,1,69,3,69,1083,8,69,1,69,1,69,3,69,1087,8,69,1,70,1,70,3,70,1091, + 8,70,1,70,1,70,3,70,1095,8,70,1,70,1,70,1,71,1,71,1,71,1,71,3,71, + 1103,8,71,1,71,1,71,3,71,1107,8,71,1,71,1,71,1,72,3,72,1112,8,72, + 1,72,1,72,1,72,1,72,3,72,1118,8,72,1,73,1,73,1,73,1,73,3,73,1124, + 8,73,1,73,3,73,1127,8,73,1,73,1,73,3,73,1131,8,73,1,74,1,74,1,74, + 1,75,1,75,1,75,1,75,5,75,1140,8,75,10,75,12,75,1143,9,75,1,76,1, + 76,1,76,1,76,5,76,1149,8,76,10,76,12,76,1152,9,76,1,76,1,76,1,77, + 1,77,3,77,1158,8,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,4,78,1167, + 8,78,11,78,12,78,1168,1,78,1,78,1,79,1,79,1,79,1,79,1,79,1,79,4, + 79,1179,8,79,11,79,12,79,1180,1,79,1,79,1,80,1,80,1,80,1,80,1,80, + 1,80,1,80,1,80,1,80,1,80,1,80,3,80,1196,8,80,1,80,3,80,1199,8,80, + 1,80,1,80,3,80,1203,8,80,1,80,3,80,1206,8,80,3,80,1208,8,80,1,80, + 1,80,1,80,3,80,1213,8,80,1,80,1,80,3,80,1217,8,80,1,80,3,80,1220, + 8,80,5,80,1222,8,80,10,80,12,80,1225,9,80,1,81,1,81,1,81,1,81,5, + 81,1231,8,81,10,81,12,81,1234,9,81,1,82,1,82,1,82,1,82,5,82,1240, + 8,82,10,82,12,82,1243,9,82,1,83,1,83,1,83,1,83,1,83,5,83,1250,8, + 83,10,83,12,83,1253,9,83,1,83,1,83,3,83,1257,8,83,1,83,1,83,1,83, + 1,83,1,83,1,84,1,84,1,85,1,85,3,85,1268,8,85,1,85,3,85,1271,8,85, + 1,85,3,85,1274,8,85,1,85,3,85,1277,8,85,1,85,3,85,1280,8,85,1,85, + 1,85,1,85,1,85,3,85,1286,8,85,1,86,1,86,3,86,1290,8,86,1,86,1,86, + 1,86,1,86,5,86,1296,8,86,10,86,12,86,1299,9,86,3,86,1301,8,86,1, + 87,1,87,1,87,3,87,1306,8,87,1,87,3,87,1309,8,87,1,87,1,87,3,87,1313, + 8,87,1,87,3,87,1316,8,87,3,87,1318,8,87,1,88,1,88,1,88,1,88,1,88, + 1,88,1,88,1,88,1,88,1,88,1,88,1,88,3,88,1332,8,88,1,89,1,89,1,89, + 1,90,1,90,1,90,1,90,5,90,1341,8,90,10,90,12,90,1344,9,90,1,90,1, + 90,3,90,1348,8,90,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1356,8,90,1, + 90,3,90,1359,8,90,1,90,3,90,1362,8,90,1,90,1,90,1,90,3,90,1367,8, + 90,5,90,1369,8,90,10,90,12,90,1372,9,90,1,91,1,91,3,91,1376,8,91, + 1,92,3,92,1379,8,92,1,92,1,92,3,92,1383,8,92,1,92,1,92,3,92,1387, + 8,92,1,92,1,92,1,92,1,92,1,92,1,92,1,92,3,92,1396,8,92,1,92,1,92, + 1,92,1,92,1,92,1,92,1,92,1,92,1,92,3,92,1407,8,92,1,93,1,93,1,93, 1,93,1,93,1,93,1,94,1,94,1,95,1,95,1,95,1,95,1,95,1,96,1,96,1,96, - 1,96,1,96,1,97,1,97,1,97,1,97,1,97,5,97,1422,8,97,10,97,12,97,1425, + 1,96,1,96,1,97,1,97,1,97,1,97,1,97,5,97,1432,8,97,10,97,12,97,1435, 9,97,1,97,1,97,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,99,1,99,1,99, - 1,99,1,99,1,99,1,99,1,99,1,99,1,99,3,99,1446,8,99,1,100,1,100,1, - 101,1,101,1,101,1,101,1,101,1,102,1,102,1,102,1,102,3,102,1459,8, - 102,1,103,1,103,1,103,1,104,1,104,1,104,1,104,1,104,5,104,1469,8, - 104,10,104,12,104,1472,9,104,1,105,1,105,1,105,1,105,1,105,1,105, - 1,105,1,105,5,105,1482,8,105,10,105,12,105,1485,9,105,1,105,1,105, - 1,105,1,105,1,105,1,105,1,105,5,105,1494,8,105,10,105,12,105,1497, - 9,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,5,105,1506,8,105, - 10,105,12,105,1509,9,105,1,105,1,105,1,105,3,105,1514,8,105,1,106, + 1,99,1,99,1,99,1,99,1,99,1,99,1,99,3,99,1456,8,99,1,100,1,100,1, + 101,1,101,1,101,1,101,1,101,1,102,1,102,1,102,1,102,3,102,1469,8, + 102,1,103,1,103,1,103,1,104,1,104,1,104,1,104,1,104,5,104,1479,8, + 104,10,104,12,104,1482,9,104,1,105,1,105,1,105,1,105,1,105,1,105, + 1,105,1,105,5,105,1492,8,105,10,105,12,105,1495,9,105,1,105,1,105, + 1,105,1,105,1,105,1,105,1,105,5,105,1504,8,105,10,105,12,105,1507, + 9,105,1,105,1,105,1,105,1,105,1,105,1,105,1,105,5,105,1516,8,105, + 10,105,12,105,1519,9,105,1,105,1,105,1,105,3,105,1524,8,105,1,106, 1,106,1,106,1,107,1,107,1,108,1,108,1,108,1,108,1,108,1,108,1,108, 1,109,1,109,1,110,1,110,1,111,1,111,1,111,1,112,1,112,1,112,1,112, - 5,112,1539,8,112,10,112,12,112,1542,9,112,1,113,1,113,1,113,1,113, - 1,114,3,114,1549,8,114,1,114,1,114,3,114,1553,8,114,1,114,3,114, - 1556,8,114,1,114,3,114,1559,8,114,1,114,1,114,1,115,1,115,1,115, - 3,115,1566,8,115,1,115,3,115,1569,8,115,1,115,3,115,1572,8,115,1, - 115,3,115,1575,8,115,1,115,3,115,1578,8,115,1,115,3,115,1581,8,115, - 1,115,1,115,1,115,3,115,1586,8,115,1,115,3,115,1589,8,115,1,116, - 1,116,1,116,1,116,1,116,5,116,1596,8,116,10,116,12,116,1599,9,116, - 1,117,1,117,3,117,1603,8,117,1,117,1,117,3,117,1607,8,117,1,118, - 1,118,1,118,3,118,1612,8,118,1,119,1,119,1,119,1,119,3,119,1618, - 8,119,1,119,1,119,1,119,3,119,1623,8,119,5,119,1625,8,119,10,119, - 12,119,1628,9,119,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120, - 1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,1646,8,120, - 1,121,1,121,1,121,1,121,5,121,1652,8,121,10,121,12,121,1655,9,121, - 1,122,1,122,1,122,4,122,1660,8,122,11,122,12,122,1661,1,122,1,122, - 3,122,1666,8,122,1,123,1,123,3,123,1670,8,123,1,124,1,124,1,124, - 1,124,1,124,1,124,1,124,1,124,3,124,1680,8,124,1,125,1,125,1,125, + 5,112,1549,8,112,10,112,12,112,1552,9,112,1,113,1,113,1,113,1,113, + 1,114,3,114,1559,8,114,1,114,1,114,3,114,1563,8,114,1,114,3,114, + 1566,8,114,1,114,3,114,1569,8,114,1,114,1,114,1,115,1,115,1,115, + 3,115,1576,8,115,1,115,3,115,1579,8,115,1,115,3,115,1582,8,115,1, + 115,3,115,1585,8,115,1,115,3,115,1588,8,115,1,115,3,115,1591,8,115, + 1,115,1,115,1,115,3,115,1596,8,115,1,115,3,115,1599,8,115,1,116, + 1,116,1,116,1,116,1,116,5,116,1606,8,116,10,116,12,116,1609,9,116, + 1,117,1,117,3,117,1613,8,117,1,117,1,117,3,117,1617,8,117,1,118, + 1,118,1,118,3,118,1622,8,118,1,119,1,119,1,119,1,119,3,119,1628, + 8,119,1,119,1,119,1,119,3,119,1633,8,119,5,119,1635,8,119,10,119, + 12,119,1638,9,119,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120, + 1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120,1656,8,120, + 1,121,1,121,1,121,1,121,5,121,1662,8,121,10,121,12,121,1665,9,121, + 1,122,1,122,1,122,4,122,1670,8,122,11,122,12,122,1671,1,122,1,122, + 3,122,1676,8,122,1,123,1,123,3,123,1680,8,123,1,124,1,124,1,124, + 1,124,1,124,1,124,1,124,1,124,3,124,1690,8,124,1,125,1,125,1,125, 1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125, 1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125, - 1706,8,125,1,126,1,126,1,126,1,126,5,126,1712,8,126,10,126,12,126, - 1715,9,126,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127, - 3,127,1726,8,127,1,128,1,128,1,128,1,128,1,128,1,129,1,129,1,129, + 1716,8,125,1,126,1,126,1,126,1,126,5,126,1722,8,126,10,126,12,126, + 1725,9,126,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127,1,127, + 3,127,1736,8,127,1,128,1,128,1,128,1,128,1,128,1,129,1,129,1,129, 1,130,1,130,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131, - 1,131,3,131,1748,8,131,3,131,1750,8,131,1,131,1,131,1,131,1,131, - 1,131,1,131,1,131,1,131,1,131,3,131,1761,8,131,1,131,5,131,1764, - 8,131,10,131,12,131,1767,9,131,1,132,3,132,1770,8,132,1,132,1,132, - 3,132,1774,8,132,1,132,1,132,1,132,1,132,1,132,3,132,1781,8,132, - 1,132,1,132,1,132,1,132,1,132,5,132,1788,8,132,10,132,12,132,1791, - 9,132,1,132,1,132,1,132,3,132,1796,8,132,1,132,1,132,1,132,1,132, - 1,132,1,132,1,132,1,132,1,132,1,132,1,132,3,132,1809,8,132,1,132, - 1,132,1,132,1,132,1,132,3,132,1816,8,132,1,132,1,132,1,132,3,132, - 1821,8,132,1,132,1,132,1,132,1,132,3,132,1827,8,132,1,132,1,132, - 1,132,1,132,1,132,3,132,1834,8,132,1,132,1,132,1,132,1,132,1,132, - 3,132,1841,8,132,3,132,1843,8,132,1,133,3,133,1846,8,133,1,133,1, - 133,1,133,1,133,1,133,1,133,1,133,1,133,5,133,1856,8,133,10,133, - 12,133,1859,9,133,1,133,1,133,3,133,1863,8,133,1,133,3,133,1866, - 8,133,1,133,1,133,1,133,1,133,3,133,1872,8,133,3,133,1874,8,133, - 1,134,1,134,1,134,1,134,3,134,1880,8,134,1,134,1,134,1,134,1,134, - 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,134, - 1,134,1,134,1,134,1,134,5,134,1901,8,134,10,134,12,134,1904,9,134, - 1,135,1,135,1,135,1,135,1,135,3,135,1911,8,135,1,135,1,135,1,135, - 5,135,1916,8,135,10,135,12,135,1919,9,135,3,135,1921,8,135,1,135, - 1,135,3,135,1925,8,135,1,136,1,136,1,136,4,136,1930,8,136,11,136, - 12,136,1931,1,136,1,136,3,136,1936,8,136,1,136,1,136,1,136,1,136, - 1,136,4,136,1943,8,136,11,136,12,136,1944,1,136,1,136,3,136,1949, - 8,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136, - 1,136,1,136,1,136,1,136,3,136,1965,8,136,1,136,1,136,1,136,1,136, - 1,136,1,136,1,136,3,136,1974,8,136,1,136,1,136,1,136,1,136,1,136, - 1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136, - 1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,3,136, - 2002,8,136,1,136,1,136,1,136,1,136,1,136,5,136,2009,8,136,10,136, - 12,136,2012,9,136,1,137,1,137,1,138,1,138,1,138,1,138,3,138,2020, - 8,138,1,139,1,139,1,139,1,139,3,139,2026,8,139,1,140,1,140,3,140, - 2030,8,140,1,141,1,141,1,141,1,141,3,141,2036,8,141,1,142,1,142, - 1,143,1,143,1,144,1,144,3,144,2044,8,144,1,145,1,145,1,145,3,145, - 2049,8,145,1,146,1,146,3,146,2053,8,146,1,147,1,147,1,147,4,147, - 2058,8,147,11,147,12,147,2059,1,148,1,148,1,148,3,148,2065,8,148, - 1,149,1,149,1,149,1,149,1,149,1,150,3,150,2073,8,150,1,150,1,150, - 3,150,2077,8,150,1,151,3,151,2080,8,151,1,151,1,151,3,151,2084,8, - 151,1,152,1,152,1,152,1,153,1,153,4,153,2091,8,153,11,153,12,153, - 2092,1,153,3,153,2096,8,153,1,154,1,154,1,154,1,154,1,155,1,155, - 1,155,5,155,2105,8,155,10,155,12,155,2108,9,155,1,156,1,156,1,156, - 3,156,2113,8,156,1,157,1,157,1,158,1,158,1,159,1,159,1,159,1,159, - 1,159,1,160,1,160,1,161,1,161,1,162,1,162,1,162,3,162,2131,8,162, - 1,163,1,163,1,163,3,163,2136,8,163,1,164,1,164,1,164,3,164,2141, - 8,164,1,164,1,164,1,164,1,164,1,164,3,164,2148,8,164,3,164,2150, - 8,164,1,165,1,165,1,165,3,165,2155,8,165,1,165,1,165,1,165,1,165, - 1,165,3,165,2162,8,165,3,165,2164,8,165,1,166,1,166,1,166,3,166, - 2169,8,166,1,166,1,166,1,166,1,166,1,166,3,166,2176,8,166,3,166, - 2178,8,166,1,167,1,167,1,167,3,167,2183,8,167,1,167,1,167,1,167, - 1,167,1,167,3,167,2190,8,167,3,167,2192,8,167,1,168,1,168,1,168, - 5,168,2197,8,168,10,168,12,168,2200,9,168,1,169,1,169,1,169,1,170, - 1,170,1,170,1,170,1,171,1,171,1,171,1,172,1,172,1,172,1,172,5,172, - 2216,8,172,10,172,12,172,2219,9,172,1,172,1,172,1,173,1,173,3,173, - 2225,8,173,1,173,3,173,2228,8,173,1,174,1,174,1,174,3,174,2233,8, - 174,1,175,1,175,1,175,1,175,3,175,2239,8,175,1,176,1,176,1,176,1, - 176,1,176,1,176,3,176,2247,8,176,1,177,1,177,1,177,1,177,1,177,1, - 177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,177,3,177,2263,8, - 177,1,178,1,178,1,178,1,178,1,178,1,178,1,178,3,178,2272,8,178,1, - 179,1,179,1,180,1,180,1,181,1,181,1,181,1,181,3,181,2282,8,181,1, - 181,1,181,1,181,1,181,1,181,3,181,2289,8,181,1,181,3,181,2292,8, - 181,1,182,1,182,1,182,1,183,1,183,1,184,1,184,1,185,1,185,1,186, - 1,186,1,187,1,187,1,188,1,188,1,189,1,189,1,190,1,190,1,191,1,191, - 1,192,1,192,1,193,1,193,1,193,1,2198,5,160,180,262,268,272,194,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,0,47,2,0,109,109,451,451,3,0,45,45,128,128,189,189,4, - 0,42,42,90,90,423,423,465,465,2,0,442,442,448,448,2,0,151,151,170, - 170,2,0,438,438,490,490,2,0,483,486,488,488,3,0,32,32,91,91,245, - 245,11,0,28,29,35,35,46,46,92,92,178,179,345,345,361,361,379,379, - 382,382,388,388,417,418,2,0,434,434,436,436,4,0,101,102,115,115, - 144,144,247,247,2,0,13,13,232,232,2,0,456,456,463,463,3,0,5,5,271, - 271,445,445,3,0,267,267,456,456,463,463,3,0,426,426,459,459,478, - 478,3,0,331,331,466,466,482,482,2,0,441,441,491,491,2,0,183,183, - 266,266,3,0,130,130,180,180,403,403,4,0,152,152,174,174,202,202, - 318,318,3,0,446,446,460,460,500,500,4,0,251,251,447,447,495,497, - 499,499,2,0,74,74,321,321,3,0,460,460,493,493,500,500,2,0,440,440, - 451,451,2,0,458,458,468,468,4,0,140,140,245,245,398,398,405,405, - 2,0,19,19,370,370,2,0,5,5,11,11,2,0,510,510,530,531,4,0,453,453, - 528,528,532,532,535,535,2,0,530,531,533,533,1,0,530,531,1,0,539, - 540,2,0,539,539,542,542,4,0,453,453,528,528,530,532,534,535,3,0, - 242,242,509,510,530,531,2,0,140,140,398,398,2,0,5,5,113,113,10,0, - 97,97,165,165,223,223,230,230,335,335,437,437,471,471,473,473,489, - 489,503,503,15,0,97,97,165,165,223,223,230,230,335,335,428,428,437, - 437,443,443,449,450,455,455,461,461,471,476,489,489,492,492,503, - 504,11,0,5,5,13,13,33,33,78,78,84,85,113,113,201,201,208,209,390, - 390,414,414,528,528,3,0,78,78,84,85,208,209,2,0,91,91,379,380,53, - 0,4,4,13,13,23,23,38,38,41,41,43,44,54,54,56,56,69,69,75,75,98,99, - 107,107,119,119,134,134,139,139,143,143,145,145,160,160,165,165, - 167,167,187,188,190,195,198,198,200,200,202,202,206,206,210,210, - 215,215,221,221,223,224,230,230,244,244,246,246,265,265,277,277, - 282,282,284,284,294,294,318,318,322,324,335,335,358,359,365,365, - 368,368,381,381,396,396,399,400,409,409,420,421,437,437,470,470, - 489,489,503,503,1,0,438,505,2525,0,391,1,0,0,0,2,401,1,0,0,0,4,415, - 1,0,0,0,6,417,1,0,0,0,8,433,1,0,0,0,10,437,1,0,0,0,12,439,1,0,0, - 0,14,442,1,0,0,0,16,453,1,0,0,0,18,461,1,0,0,0,20,469,1,0,0,0,22, - 471,1,0,0,0,24,523,1,0,0,0,26,525,1,0,0,0,28,532,1,0,0,0,30,536, - 1,0,0,0,32,540,1,0,0,0,34,544,1,0,0,0,36,598,1,0,0,0,38,604,1,0, - 0,0,40,610,1,0,0,0,42,612,1,0,0,0,44,654,1,0,0,0,46,668,1,0,0,0, - 48,670,1,0,0,0,50,681,1,0,0,0,52,685,1,0,0,0,54,687,1,0,0,0,56,689, - 1,0,0,0,58,737,1,0,0,0,60,739,1,0,0,0,62,743,1,0,0,0,64,751,1,0, - 0,0,66,759,1,0,0,0,68,763,1,0,0,0,70,798,1,0,0,0,72,814,1,0,0,0, - 74,816,1,0,0,0,76,826,1,0,0,0,78,828,1,0,0,0,80,835,1,0,0,0,82,837, - 1,0,0,0,84,845,1,0,0,0,86,853,1,0,0,0,88,855,1,0,0,0,90,859,1,0, - 0,0,92,863,1,0,0,0,94,886,1,0,0,0,96,890,1,0,0,0,98,892,1,0,0,0, - 100,908,1,0,0,0,102,910,1,0,0,0,104,915,1,0,0,0,106,927,1,0,0,0, - 108,946,1,0,0,0,110,966,1,0,0,0,112,977,1,0,0,0,114,979,1,0,0,0, - 116,992,1,0,0,0,118,999,1,0,0,0,120,1002,1,0,0,0,122,1011,1,0,0, - 0,124,1015,1,0,0,0,126,1019,1,0,0,0,128,1022,1,0,0,0,130,1030,1, - 0,0,0,132,1035,1,0,0,0,134,1052,1,0,0,0,136,1059,1,0,0,0,138,1069, - 1,0,0,0,140,1078,1,0,0,0,142,1088,1,0,0,0,144,1107,1,0,0,0,146,1109, - 1,0,0,0,148,1122,1,0,0,0,150,1125,1,0,0,0,152,1134,1,0,0,0,154,1147, - 1,0,0,0,156,1149,1,0,0,0,158,1162,1,0,0,0,160,1197,1,0,0,0,162,1216, - 1,0,0,0,164,1225,1,0,0,0,166,1234,1,0,0,0,168,1253,1,0,0,0,170,1275, - 1,0,0,0,172,1277,1,0,0,0,174,1307,1,0,0,0,176,1321,1,0,0,0,178,1323, - 1,0,0,0,180,1337,1,0,0,0,182,1363,1,0,0,0,184,1396,1,0,0,0,186,1398, - 1,0,0,0,188,1404,1,0,0,0,190,1406,1,0,0,0,192,1411,1,0,0,0,194,1416, - 1,0,0,0,196,1428,1,0,0,0,198,1445,1,0,0,0,200,1447,1,0,0,0,202,1449, - 1,0,0,0,204,1458,1,0,0,0,206,1460,1,0,0,0,208,1463,1,0,0,0,210,1513, - 1,0,0,0,212,1515,1,0,0,0,214,1518,1,0,0,0,216,1520,1,0,0,0,218,1527, - 1,0,0,0,220,1529,1,0,0,0,222,1531,1,0,0,0,224,1534,1,0,0,0,226,1543, - 1,0,0,0,228,1548,1,0,0,0,230,1562,1,0,0,0,232,1590,1,0,0,0,234,1600, - 1,0,0,0,236,1608,1,0,0,0,238,1613,1,0,0,0,240,1645,1,0,0,0,242,1647, - 1,0,0,0,244,1656,1,0,0,0,246,1667,1,0,0,0,248,1679,1,0,0,0,250,1705, - 1,0,0,0,252,1707,1,0,0,0,254,1725,1,0,0,0,256,1727,1,0,0,0,258,1732, - 1,0,0,0,260,1735,1,0,0,0,262,1749,1,0,0,0,264,1842,1,0,0,0,266,1873, - 1,0,0,0,268,1879,1,0,0,0,270,1924,1,0,0,0,272,2001,1,0,0,0,274,2013, - 1,0,0,0,276,2019,1,0,0,0,278,2025,1,0,0,0,280,2029,1,0,0,0,282,2035, - 1,0,0,0,284,2037,1,0,0,0,286,2039,1,0,0,0,288,2043,1,0,0,0,290,2045, - 1,0,0,0,292,2050,1,0,0,0,294,2057,1,0,0,0,296,2061,1,0,0,0,298,2066, - 1,0,0,0,300,2076,1,0,0,0,302,2079,1,0,0,0,304,2085,1,0,0,0,306,2095, - 1,0,0,0,308,2097,1,0,0,0,310,2101,1,0,0,0,312,2112,1,0,0,0,314,2114, - 1,0,0,0,316,2116,1,0,0,0,318,2118,1,0,0,0,320,2123,1,0,0,0,322,2125, - 1,0,0,0,324,2127,1,0,0,0,326,2132,1,0,0,0,328,2149,1,0,0,0,330,2163, - 1,0,0,0,332,2177,1,0,0,0,334,2191,1,0,0,0,336,2193,1,0,0,0,338,2201, - 1,0,0,0,340,2204,1,0,0,0,342,2208,1,0,0,0,344,2211,1,0,0,0,346,2222, - 1,0,0,0,348,2232,1,0,0,0,350,2238,1,0,0,0,352,2246,1,0,0,0,354,2262, - 1,0,0,0,356,2271,1,0,0,0,358,2273,1,0,0,0,360,2275,1,0,0,0,362,2291, - 1,0,0,0,364,2293,1,0,0,0,366,2296,1,0,0,0,368,2298,1,0,0,0,370,2300, - 1,0,0,0,372,2302,1,0,0,0,374,2304,1,0,0,0,376,2306,1,0,0,0,378,2308, - 1,0,0,0,380,2310,1,0,0,0,382,2312,1,0,0,0,384,2314,1,0,0,0,386,2316, - 1,0,0,0,388,390,3,2,1,0,389,388,1,0,0,0,390,393,1,0,0,0,391,389, - 1,0,0,0,391,392,1,0,0,0,392,394,1,0,0,0,393,391,1,0,0,0,394,395, - 5,0,0,1,395,1,1,0,0,0,396,398,3,4,2,0,397,399,5,522,0,0,398,397, - 1,0,0,0,398,399,1,0,0,0,399,402,1,0,0,0,400,402,3,6,3,0,401,396, - 1,0,0,0,401,400,1,0,0,0,402,3,1,0,0,0,403,416,3,8,4,0,404,416,3, - 10,5,0,405,416,3,12,6,0,406,416,3,14,7,0,407,416,3,20,10,0,408,416, - 3,24,12,0,409,416,3,26,13,0,410,416,3,28,14,0,411,416,3,30,15,0, - 412,416,3,32,16,0,413,416,3,34,17,0,414,416,3,36,18,0,415,403,1, - 0,0,0,415,404,1,0,0,0,415,405,1,0,0,0,415,406,1,0,0,0,415,407,1, - 0,0,0,415,408,1,0,0,0,415,409,1,0,0,0,415,410,1,0,0,0,415,411,1, - 0,0,0,415,412,1,0,0,0,415,413,1,0,0,0,415,414,1,0,0,0,416,5,1,0, - 0,0,417,418,5,522,0,0,418,7,1,0,0,0,419,434,3,40,20,0,420,434,3, - 104,52,0,421,434,3,106,53,0,422,434,3,108,54,0,423,434,3,102,51, - 0,424,434,3,114,57,0,425,434,3,128,64,0,426,434,3,130,65,0,427,434, - 3,132,66,0,428,434,3,134,67,0,429,434,3,136,68,0,430,434,3,138,69, - 0,431,434,3,140,70,0,432,434,3,142,71,0,433,419,1,0,0,0,433,420, - 1,0,0,0,433,421,1,0,0,0,433,422,1,0,0,0,433,423,1,0,0,0,433,424, - 1,0,0,0,433,425,1,0,0,0,433,426,1,0,0,0,433,427,1,0,0,0,433,428, - 1,0,0,0,433,429,1,0,0,0,433,430,1,0,0,0,433,431,1,0,0,0,433,432, - 1,0,0,0,434,9,1,0,0,0,435,438,3,160,80,0,436,438,3,144,72,0,437, - 435,1,0,0,0,437,436,1,0,0,0,438,11,1,0,0,0,439,440,7,0,0,0,440,441, - 3,330,165,0,441,13,1,0,0,0,442,446,5,135,0,0,443,447,3,16,8,0,444, - 445,5,480,0,0,445,447,5,146,0,0,446,443,1,0,0,0,446,444,1,0,0,0, - 446,447,1,0,0,0,447,451,1,0,0,0,448,452,3,10,5,0,449,452,3,146,73, - 0,450,452,3,158,79,0,451,448,1,0,0,0,451,449,1,0,0,0,451,450,1,0, - 0,0,452,15,1,0,0,0,453,458,3,18,9,0,454,455,5,521,0,0,455,457,3, - 18,9,0,456,454,1,0,0,0,457,460,1,0,0,0,458,456,1,0,0,0,458,459,1, - 0,0,0,459,17,1,0,0,0,460,458,1,0,0,0,461,462,7,1,0,0,462,19,1,0, - 0,0,463,464,5,411,0,0,464,465,5,442,0,0,465,470,3,320,160,0,466, - 467,5,411,0,0,467,470,3,324,162,0,468,470,3,22,11,0,469,463,1,0, - 0,0,469,466,1,0,0,0,469,468,1,0,0,0,470,21,1,0,0,0,471,472,5,411, - 0,0,472,473,5,228,0,0,473,478,3,336,168,0,474,475,5,521,0,0,475, - 477,3,336,168,0,476,474,1,0,0,0,477,480,1,0,0,0,478,476,1,0,0,0, - 478,479,1,0,0,0,479,23,1,0,0,0,480,478,1,0,0,0,481,482,5,342,0,0, - 482,524,7,2,0,0,483,484,5,342,0,0,484,485,5,76,0,0,485,524,7,3,0, - 0,486,487,5,342,0,0,487,490,5,375,0,0,488,489,7,4,0,0,489,491,3, - 324,162,0,490,488,1,0,0,0,490,491,1,0,0,0,491,493,1,0,0,0,492,494, - 3,266,133,0,493,492,1,0,0,0,493,494,1,0,0,0,494,524,1,0,0,0,495, - 496,5,342,0,0,496,497,5,58,0,0,497,500,7,4,0,0,498,501,3,332,166, - 0,499,501,3,330,165,0,500,498,1,0,0,0,500,499,1,0,0,0,501,503,1, - 0,0,0,502,504,3,266,133,0,503,502,1,0,0,0,503,504,1,0,0,0,504,524, - 1,0,0,0,505,506,5,342,0,0,506,511,5,72,0,0,507,508,5,374,0,0,508, - 512,3,330,165,0,509,510,5,502,0,0,510,512,3,332,166,0,511,507,1, - 0,0,0,511,509,1,0,0,0,512,524,1,0,0,0,513,515,5,342,0,0,514,516, - 5,412,0,0,515,514,1,0,0,0,515,516,1,0,0,0,516,517,1,0,0,0,517,524, - 5,154,0,0,518,520,5,342,0,0,519,521,5,152,0,0,520,519,1,0,0,0,520, - 521,1,0,0,0,521,522,1,0,0,0,522,524,5,228,0,0,523,481,1,0,0,0,523, - 483,1,0,0,0,523,486,1,0,0,0,523,495,1,0,0,0,523,505,1,0,0,0,523, - 513,1,0,0,0,523,518,1,0,0,0,524,25,1,0,0,0,525,526,5,469,0,0,526, - 527,5,227,0,0,527,530,3,336,168,0,528,529,5,434,0,0,529,531,3,344, - 172,0,530,528,1,0,0,0,530,531,1,0,0,0,531,27,1,0,0,0,532,533,5,501, - 0,0,533,534,5,227,0,0,534,535,3,336,168,0,535,29,1,0,0,0,536,538, - 5,341,0,0,537,539,3,346,173,0,538,537,1,0,0,0,538,539,1,0,0,0,539, - 31,1,0,0,0,540,542,5,313,0,0,541,543,3,348,174,0,542,541,1,0,0,0, - 542,543,1,0,0,0,543,33,1,0,0,0,544,545,7,5,0,0,545,546,5,464,0,0, - 546,547,3,112,56,0,547,35,1,0,0,0,548,549,5,438,0,0,549,550,5,464, - 0,0,550,551,5,434,0,0,551,554,3,38,19,0,552,553,5,17,0,0,553,555, - 3,336,168,0,554,552,1,0,0,0,554,555,1,0,0,0,555,599,1,0,0,0,556, - 557,5,438,0,0,557,558,5,457,0,0,558,559,5,434,0,0,559,562,3,38,19, - 0,560,561,5,17,0,0,561,563,3,336,168,0,562,560,1,0,0,0,562,563,1, - 0,0,0,563,566,1,0,0,0,564,565,5,312,0,0,565,567,3,336,168,0,566, - 564,1,0,0,0,566,567,1,0,0,0,567,599,1,0,0,0,568,569,5,438,0,0,569, - 570,7,6,0,0,570,571,5,434,0,0,571,572,3,38,19,0,572,573,5,312,0, - 0,573,574,3,336,168,0,574,599,1,0,0,0,575,576,5,438,0,0,576,577, - 5,487,0,0,577,599,3,38,19,0,578,579,5,438,0,0,579,580,5,454,0,0, - 580,581,5,457,0,0,581,582,5,434,0,0,582,583,3,38,19,0,583,584,5, - 312,0,0,584,585,3,336,168,0,585,586,5,467,0,0,586,587,3,336,168, - 0,587,599,1,0,0,0,588,589,5,438,0,0,589,590,5,444,0,0,590,591,5, - 457,0,0,591,592,5,434,0,0,592,593,3,38,19,0,593,594,5,146,0,0,594, - 595,3,336,168,0,595,596,5,17,0,0,596,597,3,336,168,0,597,599,1,0, - 0,0,598,548,1,0,0,0,598,556,1,0,0,0,598,568,1,0,0,0,598,575,1,0, - 0,0,598,578,1,0,0,0,598,588,1,0,0,0,599,37,1,0,0,0,600,602,5,535, - 0,0,601,600,1,0,0,0,601,602,1,0,0,0,602,603,1,0,0,0,603,605,3,336, - 168,0,604,601,1,0,0,0,605,606,1,0,0,0,606,604,1,0,0,0,606,607,1, - 0,0,0,607,39,1,0,0,0,608,611,3,42,21,0,609,611,3,44,22,0,610,608, - 1,0,0,0,610,609,1,0,0,0,611,41,1,0,0,0,612,614,5,72,0,0,613,615, - 5,498,0,0,614,613,1,0,0,0,614,615,1,0,0,0,615,616,1,0,0,0,616,618, - 5,374,0,0,617,619,3,340,170,0,618,617,1,0,0,0,618,619,1,0,0,0,619, - 620,1,0,0,0,620,621,3,328,164,0,621,622,5,517,0,0,622,627,3,46,23, - 0,623,624,5,521,0,0,624,626,3,46,23,0,625,623,1,0,0,0,626,629,1, - 0,0,0,627,625,1,0,0,0,627,628,1,0,0,0,628,632,1,0,0,0,629,627,1, - 0,0,0,630,631,5,521,0,0,631,633,3,82,41,0,632,630,1,0,0,0,632,633, - 1,0,0,0,633,636,1,0,0,0,634,635,5,521,0,0,635,637,3,84,42,0,636, - 634,1,0,0,0,636,637,1,0,0,0,637,640,1,0,0,0,638,639,5,521,0,0,639, - 641,3,88,44,0,640,638,1,0,0,0,640,641,1,0,0,0,641,642,1,0,0,0,642, - 645,5,518,0,0,643,644,5,59,0,0,644,646,5,538,0,0,645,643,1,0,0,0, - 645,646,1,0,0,0,646,648,1,0,0,0,647,649,3,90,45,0,648,647,1,0,0, - 0,648,649,1,0,0,0,649,650,1,0,0,0,650,652,3,338,169,0,651,653,3, - 98,49,0,652,651,1,0,0,0,652,653,1,0,0,0,653,43,1,0,0,0,654,655,5, - 72,0,0,655,657,5,374,0,0,656,658,3,340,170,0,657,656,1,0,0,0,657, - 658,1,0,0,0,658,659,1,0,0,0,659,660,3,328,164,0,660,663,3,338,169, - 0,661,662,5,17,0,0,662,664,3,160,80,0,663,661,1,0,0,0,663,664,1, - 0,0,0,664,45,1,0,0,0,665,669,3,48,24,0,666,669,3,74,37,0,667,669, - 3,78,39,0,668,665,1,0,0,0,668,666,1,0,0,0,668,667,1,0,0,0,669,47, - 1,0,0,0,670,671,3,50,25,0,671,673,3,58,29,0,672,674,3,72,36,0,673, - 672,1,0,0,0,673,674,1,0,0,0,674,677,1,0,0,0,675,676,5,59,0,0,676, - 678,5,538,0,0,677,675,1,0,0,0,677,678,1,0,0,0,678,49,1,0,0,0,679, - 682,3,336,168,0,680,682,3,260,130,0,681,679,1,0,0,0,681,680,1,0, - 0,0,682,51,1,0,0,0,683,686,3,336,168,0,684,686,4,26,0,0,685,683, - 1,0,0,0,685,684,1,0,0,0,686,53,1,0,0,0,687,688,3,336,168,0,688,55, - 1,0,0,0,689,690,5,517,0,0,690,695,3,52,26,0,691,692,5,521,0,0,692, - 694,3,52,26,0,693,691,1,0,0,0,694,697,1,0,0,0,695,693,1,0,0,0,695, - 696,1,0,0,0,696,698,1,0,0,0,697,695,1,0,0,0,698,699,5,518,0,0,699, - 57,1,0,0,0,700,738,7,7,0,0,701,703,7,8,0,0,702,704,3,60,30,0,703, - 702,1,0,0,0,703,704,1,0,0,0,704,738,1,0,0,0,705,707,5,380,0,0,706, - 708,3,60,30,0,707,706,1,0,0,0,707,708,1,0,0,0,708,715,1,0,0,0,709, - 711,7,9,0,0,710,712,5,207,0,0,711,710,1,0,0,0,711,712,1,0,0,0,712, - 713,1,0,0,0,713,714,5,379,0,0,714,716,5,505,0,0,715,709,1,0,0,0, - 715,716,1,0,0,0,716,738,1,0,0,0,717,719,7,10,0,0,718,720,3,62,31, - 0,719,718,1,0,0,0,719,720,1,0,0,0,720,738,1,0,0,0,721,723,7,11,0, - 0,722,724,3,66,33,0,723,722,1,0,0,0,723,724,1,0,0,0,724,738,1,0, - 0,0,725,727,5,470,0,0,726,728,3,68,34,0,727,726,1,0,0,0,727,728, - 1,0,0,0,728,738,1,0,0,0,729,731,5,322,0,0,730,732,3,70,35,0,731, - 730,1,0,0,0,731,732,1,0,0,0,732,738,1,0,0,0,733,735,5,295,0,0,734, - 736,3,64,32,0,735,734,1,0,0,0,735,736,1,0,0,0,736,738,1,0,0,0,737, - 700,1,0,0,0,737,701,1,0,0,0,737,705,1,0,0,0,737,717,1,0,0,0,737, - 721,1,0,0,0,737,725,1,0,0,0,737,729,1,0,0,0,737,733,1,0,0,0,738, - 59,1,0,0,0,739,740,5,517,0,0,740,741,3,368,184,0,741,742,5,518,0, - 0,742,61,1,0,0,0,743,744,5,517,0,0,744,747,3,368,184,0,745,746,5, - 521,0,0,746,748,3,368,184,0,747,745,1,0,0,0,747,748,1,0,0,0,748, - 749,1,0,0,0,749,750,5,518,0,0,750,63,1,0,0,0,751,752,5,517,0,0,752, - 755,3,366,183,0,753,754,5,521,0,0,754,756,3,366,183,0,755,753,1, - 0,0,0,755,756,1,0,0,0,756,757,1,0,0,0,757,758,5,518,0,0,758,65,1, - 0,0,0,759,760,5,508,0,0,760,761,3,58,29,0,761,762,5,507,0,0,762, - 67,1,0,0,0,763,764,5,508,0,0,764,765,3,58,29,0,765,766,5,521,0,0, - 766,767,3,58,29,0,767,768,1,0,0,0,768,769,5,507,0,0,769,69,1,0,0, - 0,770,771,5,508,0,0,771,772,3,52,26,0,772,779,3,58,29,0,773,774, - 5,521,0,0,774,775,3,52,26,0,775,776,3,58,29,0,776,778,1,0,0,0,777, - 773,1,0,0,0,778,781,1,0,0,0,779,777,1,0,0,0,779,780,1,0,0,0,780, - 782,1,0,0,0,781,779,1,0,0,0,782,783,5,507,0,0,783,799,1,0,0,0,784, - 785,5,517,0,0,785,786,3,52,26,0,786,793,3,58,29,0,787,788,5,521, - 0,0,788,789,3,52,26,0,789,790,3,58,29,0,790,792,1,0,0,0,791,787, - 1,0,0,0,792,795,1,0,0,0,793,791,1,0,0,0,793,794,1,0,0,0,794,796, - 1,0,0,0,795,793,1,0,0,0,796,797,5,518,0,0,797,799,1,0,0,0,798,770, - 1,0,0,0,798,784,1,0,0,0,799,71,1,0,0,0,800,801,5,64,0,0,801,803, - 3,86,43,0,802,800,1,0,0,0,802,803,1,0,0,0,803,804,1,0,0,0,804,805, - 5,289,0,0,805,808,5,467,0,0,806,807,5,242,0,0,807,809,5,125,0,0, - 808,806,1,0,0,0,808,809,1,0,0,0,809,815,1,0,0,0,810,812,5,242,0, - 0,811,810,1,0,0,0,811,812,1,0,0,0,812,813,1,0,0,0,813,815,5,245, - 0,0,814,802,1,0,0,0,814,811,1,0,0,0,815,73,1,0,0,0,816,817,3,50, - 25,0,817,818,3,58,29,0,818,821,5,219,0,0,819,820,5,151,0,0,820,822, - 3,76,38,0,821,819,1,0,0,0,821,822,1,0,0,0,822,824,1,0,0,0,823,825, - 5,424,0,0,824,823,1,0,0,0,824,825,1,0,0,0,825,75,1,0,0,0,826,827, - 5,538,0,0,827,77,1,0,0,0,828,829,3,50,25,0,829,830,5,17,0,0,830, - 833,3,80,40,0,831,832,5,59,0,0,832,834,5,538,0,0,833,831,1,0,0,0, - 833,834,1,0,0,0,834,79,1,0,0,0,835,836,3,260,130,0,836,81,1,0,0, - 0,837,838,5,425,0,0,838,839,5,146,0,0,839,840,3,52,26,0,840,841, - 5,17,0,0,841,842,3,260,130,0,842,83,1,0,0,0,843,844,5,64,0,0,844, - 846,3,86,43,0,845,843,1,0,0,0,845,846,1,0,0,0,846,847,1,0,0,0,847, - 848,5,289,0,0,848,849,5,467,0,0,849,850,3,56,28,0,850,851,5,242, - 0,0,851,852,5,125,0,0,852,85,1,0,0,0,853,854,3,312,156,0,854,87, - 1,0,0,0,855,856,5,278,0,0,856,857,5,146,0,0,857,858,5,372,0,0,858, - 89,1,0,0,0,859,860,5,270,0,0,860,861,5,34,0,0,861,862,3,92,46,0, - 862,91,1,0,0,0,863,864,5,517,0,0,864,869,3,94,47,0,865,866,5,521, - 0,0,866,868,3,94,47,0,867,865,1,0,0,0,868,871,1,0,0,0,869,867,1, - 0,0,0,869,870,1,0,0,0,870,872,1,0,0,0,871,869,1,0,0,0,872,873,5, - 518,0,0,873,93,1,0,0,0,874,887,3,52,26,0,875,876,5,517,0,0,876,881, - 3,96,48,0,877,878,5,521,0,0,878,880,3,96,48,0,879,877,1,0,0,0,880, - 883,1,0,0,0,881,879,1,0,0,0,881,882,1,0,0,0,882,884,1,0,0,0,883, - 881,1,0,0,0,884,885,5,518,0,0,885,887,1,0,0,0,886,874,1,0,0,0,886, - 875,1,0,0,0,887,95,1,0,0,0,888,891,3,288,144,0,889,891,3,362,181, - 0,890,888,1,0,0,0,890,889,1,0,0,0,891,97,1,0,0,0,892,893,5,203,0, - 0,893,902,3,330,165,0,894,898,5,517,0,0,895,897,3,100,50,0,896,895, - 1,0,0,0,897,900,1,0,0,0,898,896,1,0,0,0,898,899,1,0,0,0,899,901, - 1,0,0,0,900,898,1,0,0,0,901,903,5,518,0,0,902,894,1,0,0,0,902,903, - 1,0,0,0,903,99,1,0,0,0,904,905,7,12,0,0,905,909,7,13,0,0,906,907, - 7,14,0,0,907,909,7,15,0,0,908,904,1,0,0,0,908,906,1,0,0,0,909,101, - 1,0,0,0,910,911,5,72,0,0,911,912,5,442,0,0,912,913,3,322,161,0,913, - 914,3,338,169,0,914,103,1,0,0,0,915,916,5,72,0,0,916,918,5,448,0, - 0,917,919,3,340,170,0,918,917,1,0,0,0,918,919,1,0,0,0,919,920,1, - 0,0,0,920,923,3,326,163,0,921,922,5,59,0,0,922,924,5,538,0,0,923, - 921,1,0,0,0,923,924,1,0,0,0,924,925,1,0,0,0,925,926,3,338,169,0, - 926,105,1,0,0,0,927,929,5,72,0,0,928,930,5,498,0,0,929,928,1,0,0, - 0,929,930,1,0,0,0,930,931,1,0,0,0,931,933,5,502,0,0,932,934,3,340, - 170,0,933,932,1,0,0,0,933,934,1,0,0,0,934,935,1,0,0,0,935,937,3, - 334,167,0,936,938,3,56,28,0,937,936,1,0,0,0,937,938,1,0,0,0,938, - 941,1,0,0,0,939,940,5,59,0,0,940,942,5,538,0,0,941,939,1,0,0,0,941, - 942,1,0,0,0,942,943,1,0,0,0,943,944,5,17,0,0,944,945,3,160,80,0, - 945,107,1,0,0,0,946,950,5,72,0,0,947,951,5,498,0,0,948,949,5,498, - 0,0,949,951,5,371,0,0,950,947,1,0,0,0,950,948,1,0,0,0,950,951,1, - 0,0,0,951,952,1,0,0,0,952,954,5,153,0,0,953,955,3,340,170,0,954, - 953,1,0,0,0,954,955,1,0,0,0,955,956,1,0,0,0,956,957,3,274,137,0, - 957,958,5,17,0,0,958,961,3,312,156,0,959,960,5,196,0,0,960,962,7, - 16,0,0,961,959,1,0,0,0,961,962,1,0,0,0,962,964,1,0,0,0,963,965,3, - 110,55,0,964,963,1,0,0,0,964,965,1,0,0,0,965,109,1,0,0,0,966,967, - 5,413,0,0,967,968,5,464,0,0,968,974,3,112,56,0,969,970,5,521,0,0, - 970,971,5,464,0,0,971,973,3,112,56,0,972,969,1,0,0,0,973,976,1,0, - 0,0,974,972,1,0,0,0,974,975,1,0,0,0,975,111,1,0,0,0,976,974,1,0, - 0,0,977,978,5,538,0,0,978,113,1,0,0,0,979,980,5,8,0,0,980,982,5, - 374,0,0,981,983,3,342,171,0,982,981,1,0,0,0,982,983,1,0,0,0,983, - 984,1,0,0,0,984,990,3,330,165,0,985,991,3,116,58,0,986,991,3,118, - 59,0,987,991,3,120,60,0,988,991,3,122,61,0,989,991,3,124,62,0,990, - 985,1,0,0,0,990,986,1,0,0,0,990,987,1,0,0,0,990,988,1,0,0,0,990, - 989,1,0,0,0,991,115,1,0,0,0,992,994,5,312,0,0,993,995,3,336,168, - 0,994,993,1,0,0,0,994,995,1,0,0,0,995,996,1,0,0,0,996,997,5,389, - 0,0,997,998,3,336,168,0,998,117,1,0,0,0,999,1000,5,341,0,0,1000, - 1001,3,344,172,0,1001,119,1,0,0,0,1002,1003,5,438,0,0,1003,1004, - 5,64,0,0,1004,1005,3,86,43,0,1005,1006,5,289,0,0,1006,1007,5,467, - 0,0,1007,1009,3,56,28,0,1008,1010,3,126,63,0,1009,1008,1,0,0,0,1009, - 1010,1,0,0,0,1010,121,1,0,0,0,1011,1012,5,116,0,0,1012,1013,5,64, - 0,0,1013,1014,3,86,43,0,1014,123,1,0,0,0,1015,1016,5,438,0,0,1016, - 1017,5,404,0,0,1017,1018,3,56,28,0,1018,125,1,0,0,0,1019,1020,5, - 242,0,0,1020,1021,5,125,0,0,1021,127,1,0,0,0,1022,1023,5,8,0,0,1023, - 1024,5,502,0,0,1024,1028,3,332,166,0,1025,1029,3,116,58,0,1026,1027, - 5,17,0,0,1027,1029,3,160,80,0,1028,1025,1,0,0,0,1028,1026,1,0,0, - 0,1029,129,1,0,0,0,1030,1031,5,8,0,0,1031,1032,5,448,0,0,1032,1033, - 3,324,162,0,1033,1034,3,118,59,0,1034,131,1,0,0,0,1035,1039,5,8, - 0,0,1036,1040,5,498,0,0,1037,1038,5,498,0,0,1038,1040,5,371,0,0, - 1039,1036,1,0,0,0,1039,1037,1,0,0,0,1039,1040,1,0,0,0,1040,1041, - 1,0,0,0,1041,1043,5,153,0,0,1042,1044,3,342,171,0,1043,1042,1,0, - 0,0,1043,1044,1,0,0,0,1044,1045,1,0,0,0,1045,1046,3,276,138,0,1046, - 1047,5,17,0,0,1047,1050,3,312,156,0,1048,1049,5,196,0,0,1049,1051, - 7,16,0,0,1050,1048,1,0,0,0,1050,1051,1,0,0,0,1051,133,1,0,0,0,1052, - 1053,5,116,0,0,1053,1055,5,442,0,0,1054,1056,3,342,171,0,1055,1054, - 1,0,0,0,1055,1056,1,0,0,0,1056,1057,1,0,0,0,1057,1058,3,320,160, - 0,1058,135,1,0,0,0,1059,1061,5,116,0,0,1060,1062,5,498,0,0,1061, - 1060,1,0,0,0,1061,1062,1,0,0,0,1062,1063,1,0,0,0,1063,1065,5,374, - 0,0,1064,1066,3,342,171,0,1065,1064,1,0,0,0,1065,1066,1,0,0,0,1066, - 1067,1,0,0,0,1067,1068,3,330,165,0,1068,137,1,0,0,0,1069,1070,5, - 116,0,0,1070,1072,5,448,0,0,1071,1073,3,342,171,0,1072,1071,1,0, - 0,0,1072,1073,1,0,0,0,1073,1074,1,0,0,0,1074,1076,3,324,162,0,1075, - 1077,7,17,0,0,1076,1075,1,0,0,0,1076,1077,1,0,0,0,1077,139,1,0,0, - 0,1078,1080,5,116,0,0,1079,1081,5,498,0,0,1080,1079,1,0,0,0,1080, - 1081,1,0,0,0,1081,1082,1,0,0,0,1082,1084,5,502,0,0,1083,1085,3,342, - 171,0,1084,1083,1,0,0,0,1084,1085,1,0,0,0,1085,1086,1,0,0,0,1086, - 1087,3,332,166,0,1087,141,1,0,0,0,1088,1092,5,116,0,0,1089,1093, - 5,498,0,0,1090,1091,5,498,0,0,1091,1093,5,371,0,0,1092,1089,1,0, - 0,0,1092,1090,1,0,0,0,1092,1093,1,0,0,0,1093,1094,1,0,0,0,1094,1096, - 5,153,0,0,1095,1097,3,342,171,0,1096,1095,1,0,0,0,1096,1097,1,0, - 0,0,1097,1098,1,0,0,0,1098,1099,3,276,138,0,1099,143,1,0,0,0,1100, - 1102,5,132,0,0,1101,1100,1,0,0,0,1101,1102,1,0,0,0,1102,1103,1,0, - 0,0,1103,1108,3,146,73,0,1104,1108,3,156,78,0,1105,1106,5,132,0, - 0,1106,1108,3,158,79,0,1107,1101,1,0,0,0,1107,1104,1,0,0,0,1107, - 1105,1,0,0,0,1108,145,1,0,0,0,1109,1110,5,177,0,0,1110,1111,7,18, - 0,0,1111,1120,3,330,165,0,1112,1114,3,148,74,0,1113,1112,1,0,0,0, - 1113,1114,1,0,0,0,1114,1116,1,0,0,0,1115,1117,3,56,28,0,1116,1115, - 1,0,0,0,1116,1117,1,0,0,0,1117,1118,1,0,0,0,1118,1121,3,160,80,0, - 1119,1121,3,150,75,0,1120,1113,1,0,0,0,1120,1119,1,0,0,0,1121,147, - 1,0,0,0,1122,1123,5,269,0,0,1123,1124,3,344,172,0,1124,149,1,0,0, - 0,1125,1126,5,415,0,0,1126,1131,3,152,76,0,1127,1128,5,521,0,0,1128, - 1130,3,152,76,0,1129,1127,1,0,0,0,1130,1133,1,0,0,0,1131,1129,1, - 0,0,0,1131,1132,1,0,0,0,1132,151,1,0,0,0,1133,1131,1,0,0,0,1134, - 1135,5,517,0,0,1135,1140,3,154,77,0,1136,1137,5,521,0,0,1137,1139, - 3,154,77,0,1138,1136,1,0,0,0,1139,1142,1,0,0,0,1140,1138,1,0,0,0, - 1140,1141,1,0,0,0,1141,1143,1,0,0,0,1142,1140,1,0,0,0,1143,1144, - 5,518,0,0,1144,153,1,0,0,0,1145,1148,3,362,181,0,1146,1148,3,270, - 135,0,1147,1145,1,0,0,0,1147,1146,1,0,0,0,1148,155,1,0,0,0,1149, - 1150,5,24,0,0,1150,1151,5,355,0,0,1151,1152,5,341,0,0,1152,1156, - 5,522,0,0,1153,1154,3,146,73,0,1154,1155,5,522,0,0,1155,1157,1,0, - 0,0,1156,1153,1,0,0,0,1157,1158,1,0,0,0,1158,1156,1,0,0,0,1158,1159, - 1,0,0,0,1159,1160,1,0,0,0,1160,1161,5,122,0,0,1161,157,1,0,0,0,1162, - 1163,5,355,0,0,1163,1164,5,341,0,0,1164,1168,5,24,0,0,1165,1166, - 3,146,73,0,1166,1167,5,522,0,0,1167,1169,1,0,0,0,1168,1165,1,0,0, - 0,1169,1170,1,0,0,0,1170,1168,1,0,0,0,1170,1171,1,0,0,0,1171,1172, - 1,0,0,0,1172,1173,5,122,0,0,1173,159,1,0,0,0,1174,1175,6,80,-1,0, - 1175,1198,3,162,81,0,1176,1177,3,164,82,0,1177,1178,3,160,80,5,1178, - 1198,1,0,0,0,1179,1180,5,517,0,0,1180,1181,3,160,80,0,1181,1182, - 5,518,0,0,1182,1198,1,0,0,0,1183,1185,3,172,86,0,1184,1186,3,232, - 116,0,1185,1184,1,0,0,0,1185,1186,1,0,0,0,1186,1188,1,0,0,0,1187, - 1189,3,236,118,0,1188,1187,1,0,0,0,1188,1189,1,0,0,0,1189,1198,1, - 0,0,0,1190,1192,3,170,85,0,1191,1193,3,232,116,0,1192,1191,1,0,0, - 0,1192,1193,1,0,0,0,1193,1195,1,0,0,0,1194,1196,3,236,118,0,1195, - 1194,1,0,0,0,1195,1196,1,0,0,0,1196,1198,1,0,0,0,1197,1174,1,0,0, - 0,1197,1176,1,0,0,0,1197,1179,1,0,0,0,1197,1183,1,0,0,0,1197,1190, - 1,0,0,0,1198,1213,1,0,0,0,1199,1200,10,3,0,0,1200,1202,7,19,0,0, - 1201,1203,5,5,0,0,1202,1201,1,0,0,0,1202,1203,1,0,0,0,1203,1204, - 1,0,0,0,1204,1206,3,160,80,0,1205,1207,3,232,116,0,1206,1205,1,0, - 0,0,1206,1207,1,0,0,0,1207,1209,1,0,0,0,1208,1210,3,236,118,0,1209, - 1208,1,0,0,0,1209,1210,1,0,0,0,1210,1212,1,0,0,0,1211,1199,1,0,0, - 0,1212,1215,1,0,0,0,1213,1211,1,0,0,0,1213,1214,1,0,0,0,1214,161, - 1,0,0,0,1215,1213,1,0,0,0,1216,1217,5,415,0,0,1217,1222,3,260,130, - 0,1218,1219,5,521,0,0,1219,1221,3,260,130,0,1220,1218,1,0,0,0,1221, - 1224,1,0,0,0,1222,1220,1,0,0,0,1222,1223,1,0,0,0,1223,163,1,0,0, - 0,1224,1222,1,0,0,0,1225,1226,5,434,0,0,1226,1231,3,166,83,0,1227, - 1228,5,521,0,0,1228,1230,3,166,83,0,1229,1227,1,0,0,0,1230,1233, - 1,0,0,0,1231,1229,1,0,0,0,1231,1232,1,0,0,0,1232,165,1,0,0,0,1233, - 1231,1,0,0,0,1234,1246,3,168,84,0,1235,1236,5,517,0,0,1236,1241, - 3,52,26,0,1237,1238,5,521,0,0,1238,1240,3,52,26,0,1239,1237,1,0, - 0,0,1240,1243,1,0,0,0,1241,1239,1,0,0,0,1241,1242,1,0,0,0,1242,1244, - 1,0,0,0,1243,1241,1,0,0,0,1244,1245,5,518,0,0,1245,1247,1,0,0,0, - 1246,1235,1,0,0,0,1246,1247,1,0,0,0,1247,1248,1,0,0,0,1248,1249, - 5,17,0,0,1249,1250,5,517,0,0,1250,1251,3,160,80,0,1251,1252,5,518, - 0,0,1252,167,1,0,0,0,1253,1254,3,312,156,0,1254,169,1,0,0,0,1255, - 1257,3,172,86,0,1256,1258,3,178,89,0,1257,1256,1,0,0,0,1257,1258, - 1,0,0,0,1258,1260,1,0,0,0,1259,1261,3,206,103,0,1260,1259,1,0,0, - 0,1260,1261,1,0,0,0,1261,1263,1,0,0,0,1262,1264,3,208,104,0,1263, - 1262,1,0,0,0,1263,1264,1,0,0,0,1264,1266,1,0,0,0,1265,1267,3,222, - 111,0,1266,1265,1,0,0,0,1266,1267,1,0,0,0,1267,1269,1,0,0,0,1268, - 1270,3,224,112,0,1269,1268,1,0,0,0,1269,1270,1,0,0,0,1270,1276,1, - 0,0,0,1271,1272,3,172,86,0,1272,1273,3,178,89,0,1273,1274,3,230, - 115,0,1274,1276,1,0,0,0,1275,1255,1,0,0,0,1275,1271,1,0,0,0,1276, - 171,1,0,0,0,1277,1279,5,337,0,0,1278,1280,3,372,186,0,1279,1278, - 1,0,0,0,1279,1280,1,0,0,0,1280,1290,1,0,0,0,1281,1291,5,528,0,0, - 1282,1287,3,174,87,0,1283,1284,5,521,0,0,1284,1286,3,174,87,0,1285, - 1283,1,0,0,0,1286,1289,1,0,0,0,1287,1285,1,0,0,0,1287,1288,1,0,0, - 0,1288,1291,1,0,0,0,1289,1287,1,0,0,0,1290,1281,1,0,0,0,1290,1282, - 1,0,0,0,1291,173,1,0,0,0,1292,1308,3,176,88,0,1293,1298,3,260,130, - 0,1294,1296,5,17,0,0,1295,1294,1,0,0,0,1295,1296,1,0,0,0,1296,1297, - 1,0,0,0,1297,1299,3,52,26,0,1298,1295,1,0,0,0,1298,1299,1,0,0,0, - 1299,1308,1,0,0,0,1300,1305,3,52,26,0,1301,1303,5,17,0,0,1302,1301, - 1,0,0,0,1302,1303,1,0,0,0,1303,1304,1,0,0,0,1304,1306,3,260,130, - 0,1305,1302,1,0,0,0,1305,1306,1,0,0,0,1306,1308,1,0,0,0,1307,1292, - 1,0,0,0,1307,1293,1,0,0,0,1307,1300,1,0,0,0,1308,175,1,0,0,0,1309, - 1310,3,272,136,0,1310,1311,5,263,0,0,1311,1312,3,228,114,0,1312, - 1313,5,17,0,0,1313,1314,3,312,156,0,1314,1322,1,0,0,0,1315,1316, - 3,272,136,0,1316,1317,5,263,0,0,1317,1318,3,304,152,0,1318,1319, - 5,17,0,0,1319,1320,3,312,156,0,1320,1322,1,0,0,0,1321,1309,1,0,0, - 0,1321,1315,1,0,0,0,1322,177,1,0,0,0,1323,1324,5,151,0,0,1324,1325, - 3,180,90,0,1325,179,1,0,0,0,1326,1327,6,90,-1,0,1327,1332,3,182, - 91,0,1328,1329,5,521,0,0,1329,1331,3,182,91,0,1330,1328,1,0,0,0, - 1331,1334,1,0,0,0,1332,1330,1,0,0,0,1332,1333,1,0,0,0,1333,1338, - 1,0,0,0,1334,1332,1,0,0,0,1335,1338,3,190,95,0,1336,1338,3,192,96, - 0,1337,1326,1,0,0,0,1337,1335,1,0,0,0,1337,1336,1,0,0,0,1338,1360, - 1,0,0,0,1339,1340,10,3,0,0,1340,1341,5,73,0,0,1341,1342,5,185,0, - 0,1342,1359,3,180,90,4,1343,1345,10,4,0,0,1344,1346,5,234,0,0,1345, - 1344,1,0,0,0,1345,1346,1,0,0,0,1346,1348,1,0,0,0,1347,1349,7,20, - 0,0,1348,1347,1,0,0,0,1348,1349,1,0,0,0,1349,1351,1,0,0,0,1350,1352, - 5,262,0,0,1351,1350,1,0,0,0,1351,1352,1,0,0,0,1352,1353,1,0,0,0, - 1353,1354,5,185,0,0,1354,1356,3,180,90,0,1355,1357,3,204,102,0,1356, - 1355,1,0,0,0,1356,1357,1,0,0,0,1357,1359,1,0,0,0,1358,1339,1,0,0, - 0,1358,1343,1,0,0,0,1359,1362,1,0,0,0,1360,1358,1,0,0,0,1360,1361, - 1,0,0,0,1361,181,1,0,0,0,1362,1360,1,0,0,0,1363,1365,3,184,92,0, - 1364,1366,3,302,151,0,1365,1364,1,0,0,0,1365,1366,1,0,0,0,1366,183, - 1,0,0,0,1367,1369,5,374,0,0,1368,1367,1,0,0,0,1368,1369,1,0,0,0, - 1369,1370,1,0,0,0,1370,1372,3,330,165,0,1371,1373,3,186,93,0,1372, - 1371,1,0,0,0,1372,1373,1,0,0,0,1373,1397,1,0,0,0,1374,1376,3,332, - 166,0,1375,1377,3,186,93,0,1376,1375,1,0,0,0,1376,1377,1,0,0,0,1377, - 1397,1,0,0,0,1378,1379,5,199,0,0,1379,1380,5,374,0,0,1380,1381,5, - 517,0,0,1381,1382,3,270,135,0,1382,1383,5,518,0,0,1383,1397,1,0, - 0,0,1384,1386,5,199,0,0,1385,1384,1,0,0,0,1385,1386,1,0,0,0,1386, - 1387,1,0,0,0,1387,1388,5,517,0,0,1388,1389,3,160,80,0,1389,1390, - 5,518,0,0,1390,1397,1,0,0,0,1391,1392,5,406,0,0,1392,1393,5,517, - 0,0,1393,1394,3,260,130,0,1394,1395,5,518,0,0,1395,1397,1,0,0,0, - 1396,1368,1,0,0,0,1396,1374,1,0,0,0,1396,1378,1,0,0,0,1396,1385, - 1,0,0,0,1396,1391,1,0,0,0,1397,185,1,0,0,0,1398,1399,5,146,0,0,1399, - 1400,5,372,0,0,1400,1401,5,17,0,0,1401,1402,5,250,0,0,1402,1403, - 3,188,94,0,1403,187,1,0,0,0,1404,1405,3,260,130,0,1405,189,1,0,0, - 0,1406,1407,5,517,0,0,1407,1408,3,150,75,0,1408,1409,5,518,0,0,1409, - 1410,3,302,151,0,1410,191,1,0,0,0,1411,1412,5,374,0,0,1412,1413, - 5,517,0,0,1413,1414,3,194,97,0,1414,1415,5,518,0,0,1415,193,1,0, - 0,0,1416,1417,3,196,98,0,1417,1418,5,517,0,0,1418,1423,3,198,99, - 0,1419,1420,5,521,0,0,1420,1422,3,198,99,0,1421,1419,1,0,0,0,1422, - 1425,1,0,0,0,1423,1421,1,0,0,0,1423,1424,1,0,0,0,1424,1426,1,0,0, - 0,1425,1423,1,0,0,0,1426,1427,5,518,0,0,1427,195,1,0,0,0,1428,1429, - 7,21,0,0,1429,197,1,0,0,0,1430,1431,5,374,0,0,1431,1446,3,220,110, - 0,1432,1446,3,202,101,0,1433,1446,3,290,145,0,1434,1435,5,447,0, - 0,1435,1436,5,537,0,0,1436,1437,5,374,0,0,1437,1446,3,220,110,0, - 1438,1439,5,499,0,0,1439,1440,5,537,0,0,1440,1446,3,202,101,0,1441, - 1442,3,200,100,0,1442,1443,5,537,0,0,1443,1444,3,290,145,0,1444, - 1446,1,0,0,0,1445,1430,1,0,0,0,1445,1432,1,0,0,0,1445,1433,1,0,0, - 0,1445,1434,1,0,0,0,1445,1438,1,0,0,0,1445,1441,1,0,0,0,1446,199, - 1,0,0,0,1447,1448,7,22,0,0,1448,201,1,0,0,0,1449,1450,5,452,0,0, - 1450,1451,5,517,0,0,1451,1452,3,52,26,0,1452,1453,5,518,0,0,1453, - 203,1,0,0,0,1454,1455,5,254,0,0,1455,1459,3,262,131,0,1456,1457, - 5,413,0,0,1457,1459,3,56,28,0,1458,1454,1,0,0,0,1458,1456,1,0,0, - 0,1459,205,1,0,0,0,1460,1461,5,431,0,0,1461,1462,3,262,131,0,1462, - 207,1,0,0,0,1463,1464,5,159,0,0,1464,1465,5,34,0,0,1465,1470,3,210, - 105,0,1466,1467,5,521,0,0,1467,1469,3,210,105,0,1468,1466,1,0,0, - 0,1469,1472,1,0,0,0,1470,1468,1,0,0,0,1470,1471,1,0,0,0,1471,209, - 1,0,0,0,1472,1470,1,0,0,0,1473,1514,3,52,26,0,1474,1514,3,216,108, - 0,1475,1476,5,517,0,0,1476,1514,5,518,0,0,1477,1478,5,517,0,0,1478, - 1483,3,260,130,0,1479,1480,5,521,0,0,1480,1482,3,260,130,0,1481, - 1479,1,0,0,0,1482,1485,1,0,0,0,1483,1481,1,0,0,0,1483,1484,1,0,0, - 0,1484,1486,1,0,0,0,1485,1483,1,0,0,0,1486,1487,5,518,0,0,1487,1514, - 1,0,0,0,1488,1489,3,214,107,0,1489,1490,5,517,0,0,1490,1495,3,260, - 130,0,1491,1492,5,521,0,0,1492,1494,3,260,130,0,1493,1491,1,0,0, - 0,1494,1497,1,0,0,0,1495,1493,1,0,0,0,1495,1496,1,0,0,0,1496,1498, - 1,0,0,0,1497,1495,1,0,0,0,1498,1499,5,518,0,0,1499,1514,1,0,0,0, - 1500,1501,3,212,106,0,1501,1502,5,517,0,0,1502,1507,3,210,105,0, - 1503,1504,5,521,0,0,1504,1506,3,210,105,0,1505,1503,1,0,0,0,1506, - 1509,1,0,0,0,1507,1505,1,0,0,0,1507,1508,1,0,0,0,1508,1510,1,0,0, - 0,1509,1507,1,0,0,0,1510,1511,5,518,0,0,1511,1514,1,0,0,0,1512,1514, - 3,260,130,0,1513,1473,1,0,0,0,1513,1474,1,0,0,0,1513,1475,1,0,0, - 0,1513,1477,1,0,0,0,1513,1488,1,0,0,0,1513,1500,1,0,0,0,1513,1512, - 1,0,0,0,1514,211,1,0,0,0,1515,1516,5,160,0,0,1516,1517,5,494,0,0, - 1517,213,1,0,0,0,1518,1519,7,23,0,0,1519,215,1,0,0,0,1520,1521,3, - 218,109,0,1521,1522,5,517,0,0,1522,1523,3,220,110,0,1523,1524,5, - 521,0,0,1524,1525,3,290,145,0,1525,1526,5,518,0,0,1526,217,1,0,0, - 0,1527,1528,7,24,0,0,1528,219,1,0,0,0,1529,1530,3,336,168,0,1530, - 221,1,0,0,0,1531,1532,5,163,0,0,1532,1533,3,262,131,0,1533,223,1, - 0,0,0,1534,1535,5,433,0,0,1535,1540,3,226,113,0,1536,1537,5,521, - 0,0,1537,1539,3,226,113,0,1538,1536,1,0,0,0,1539,1542,1,0,0,0,1540, - 1538,1,0,0,0,1540,1541,1,0,0,0,1541,225,1,0,0,0,1542,1540,1,0,0, - 0,1543,1544,3,304,152,0,1544,1545,5,17,0,0,1545,1546,3,228,114,0, - 1546,227,1,0,0,0,1547,1549,3,304,152,0,1548,1547,1,0,0,0,1548,1549, - 1,0,0,0,1549,1550,1,0,0,0,1550,1552,5,517,0,0,1551,1553,3,238,119, - 0,1552,1551,1,0,0,0,1552,1553,1,0,0,0,1553,1555,1,0,0,0,1554,1556, - 3,232,116,0,1555,1554,1,0,0,0,1555,1556,1,0,0,0,1556,1558,1,0,0, - 0,1557,1559,3,254,127,0,1558,1557,1,0,0,0,1558,1559,1,0,0,0,1559, - 1560,1,0,0,0,1560,1561,5,518,0,0,1561,229,1,0,0,0,1562,1563,5,214, - 0,0,1563,1565,5,517,0,0,1564,1566,3,238,119,0,1565,1564,1,0,0,0, - 1565,1566,1,0,0,0,1566,1568,1,0,0,0,1567,1569,3,232,116,0,1568,1567, - 1,0,0,0,1568,1569,1,0,0,0,1569,1571,1,0,0,0,1570,1572,3,242,121, - 0,1571,1570,1,0,0,0,1571,1572,1,0,0,0,1572,1574,1,0,0,0,1573,1575, - 3,248,124,0,1574,1573,1,0,0,0,1574,1575,1,0,0,0,1575,1577,1,0,0, - 0,1576,1578,3,250,125,0,1577,1576,1,0,0,0,1577,1578,1,0,0,0,1578, - 1580,1,0,0,0,1579,1581,3,244,122,0,1580,1579,1,0,0,0,1580,1581,1, - 0,0,0,1581,1582,1,0,0,0,1582,1583,3,252,126,0,1583,1588,5,518,0, - 0,1584,1586,5,17,0,0,1585,1584,1,0,0,0,1585,1586,1,0,0,0,1586,1587, - 1,0,0,0,1587,1589,3,312,156,0,1588,1585,1,0,0,0,1588,1589,1,0,0, - 0,1589,231,1,0,0,0,1590,1591,5,259,0,0,1591,1592,5,34,0,0,1592,1597, - 3,234,117,0,1593,1594,5,521,0,0,1594,1596,3,234,117,0,1595,1593, - 1,0,0,0,1596,1599,1,0,0,0,1597,1595,1,0,0,0,1597,1598,1,0,0,0,1598, - 233,1,0,0,0,1599,1597,1,0,0,0,1600,1602,3,52,26,0,1601,1603,7,25, - 0,0,1602,1601,1,0,0,0,1602,1603,1,0,0,0,1603,1606,1,0,0,0,1604,1605, - 5,477,0,0,1605,1607,7,26,0,0,1606,1604,1,0,0,0,1606,1607,1,0,0,0, - 1607,235,1,0,0,0,1608,1611,5,205,0,0,1609,1612,5,5,0,0,1610,1612, - 3,260,130,0,1611,1609,1,0,0,0,1611,1610,1,0,0,0,1612,237,1,0,0,0, - 1613,1614,5,269,0,0,1614,1617,5,34,0,0,1615,1618,3,52,26,0,1616, - 1618,3,272,136,0,1617,1615,1,0,0,0,1617,1616,1,0,0,0,1618,1626,1, - 0,0,0,1619,1622,5,521,0,0,1620,1623,3,52,26,0,1621,1623,3,272,136, - 0,1622,1620,1,0,0,0,1622,1621,1,0,0,0,1623,1625,1,0,0,0,1624,1619, - 1,0,0,0,1625,1628,1,0,0,0,1626,1624,1,0,0,0,1626,1627,1,0,0,0,1627, - 239,1,0,0,0,1628,1626,1,0,0,0,1629,1646,5,528,0,0,1630,1646,5,531, - 0,0,1631,1646,5,536,0,0,1632,1633,5,519,0,0,1633,1634,5,539,0,0, - 1634,1635,5,521,0,0,1635,1636,5,539,0,0,1636,1646,5,520,0,0,1637, - 1638,5,519,0,0,1638,1639,5,539,0,0,1639,1640,5,521,0,0,1640,1646, - 5,520,0,0,1641,1642,5,519,0,0,1642,1643,5,521,0,0,1643,1644,5,539, - 0,0,1644,1646,5,520,0,0,1645,1629,1,0,0,0,1645,1630,1,0,0,0,1645, - 1631,1,0,0,0,1645,1632,1,0,0,0,1645,1637,1,0,0,0,1645,1641,1,0,0, - 0,1646,241,1,0,0,0,1647,1648,5,216,0,0,1648,1653,3,174,87,0,1649, - 1650,5,521,0,0,1650,1652,3,174,87,0,1651,1649,1,0,0,0,1652,1655, - 1,0,0,0,1653,1651,1,0,0,0,1653,1654,1,0,0,0,1654,243,1,0,0,0,1655, - 1653,1,0,0,0,1656,1657,5,272,0,0,1657,1659,5,517,0,0,1658,1660,3, - 246,123,0,1659,1658,1,0,0,0,1660,1661,1,0,0,0,1661,1659,1,0,0,0, - 1661,1662,1,0,0,0,1662,1663,1,0,0,0,1663,1665,5,518,0,0,1664,1666, - 3,258,129,0,1665,1664,1,0,0,0,1665,1666,1,0,0,0,1666,245,1,0,0,0, - 1667,1669,3,314,157,0,1668,1670,3,240,120,0,1669,1668,1,0,0,0,1669, - 1670,1,0,0,0,1670,247,1,0,0,0,1671,1672,5,5,0,0,1672,1673,5,323, - 0,0,1673,1674,5,273,0,0,1674,1680,5,211,0,0,1675,1676,5,255,0,0, - 1676,1677,5,322,0,0,1677,1678,5,273,0,0,1678,1680,5,211,0,0,1679, - 1671,1,0,0,0,1679,1675,1,0,0,0,1680,249,1,0,0,0,1681,1682,5,439, - 0,0,1682,1683,5,211,0,0,1683,1684,5,344,0,0,1684,1685,5,479,0,0, - 1685,1686,5,468,0,0,1686,1706,5,322,0,0,1687,1688,5,439,0,0,1688, - 1689,5,211,0,0,1689,1690,5,344,0,0,1690,1691,5,389,0,0,1691,1692, - 5,238,0,0,1692,1706,5,322,0,0,1693,1694,5,439,0,0,1694,1695,5,211, - 0,0,1695,1696,5,344,0,0,1696,1697,5,389,0,0,1697,1698,5,468,0,0, - 1698,1706,3,314,157,0,1699,1700,5,439,0,0,1700,1701,5,211,0,0,1701, - 1702,5,344,0,0,1702,1703,5,389,0,0,1703,1704,5,458,0,0,1704,1706, - 3,314,157,0,1705,1681,1,0,0,0,1705,1687,1,0,0,0,1705,1693,1,0,0, - 0,1705,1699,1,0,0,0,1706,251,1,0,0,0,1707,1708,5,105,0,0,1708,1713, - 3,174,87,0,1709,1710,5,521,0,0,1710,1712,3,174,87,0,1711,1709,1, - 0,0,0,1712,1715,1,0,0,0,1713,1711,1,0,0,0,1713,1714,1,0,0,0,1714, - 253,1,0,0,0,1715,1713,1,0,0,0,1716,1717,5,293,0,0,1717,1718,5,27, - 0,0,1718,1719,3,290,145,0,1719,1720,3,256,128,0,1720,1726,1,0,0, - 0,1721,1722,5,323,0,0,1722,1723,5,27,0,0,1723,1724,5,539,0,0,1724, - 1726,3,256,128,0,1725,1716,1,0,0,0,1725,1721,1,0,0,0,1726,255,1, - 0,0,0,1727,1728,5,481,0,0,1728,1729,5,10,0,0,1729,1730,5,76,0,0, - 1730,1731,5,322,0,0,1731,257,1,0,0,0,1732,1733,5,435,0,0,1733,1734, - 3,290,145,0,1734,259,1,0,0,0,1735,1736,3,262,131,0,1736,261,1,0, - 0,0,1737,1738,6,131,-1,0,1738,1739,5,242,0,0,1739,1750,3,262,131, - 6,1740,1741,5,133,0,0,1741,1742,5,517,0,0,1742,1743,3,160,80,0,1743, - 1744,5,518,0,0,1744,1750,1,0,0,0,1745,1747,3,268,134,0,1746,1748, - 3,264,132,0,1747,1746,1,0,0,0,1747,1748,1,0,0,0,1748,1750,1,0,0, - 0,1749,1737,1,0,0,0,1749,1740,1,0,0,0,1749,1745,1,0,0,0,1750,1765, - 1,0,0,0,1751,1752,10,3,0,0,1752,1753,5,10,0,0,1753,1764,3,262,131, - 4,1754,1755,10,2,0,0,1755,1756,5,258,0,0,1756,1764,3,262,131,3,1757, - 1758,10,1,0,0,1758,1760,5,184,0,0,1759,1761,5,242,0,0,1760,1759, - 1,0,0,0,1760,1761,1,0,0,0,1761,1762,1,0,0,0,1762,1764,7,27,0,0,1763, - 1751,1,0,0,0,1763,1754,1,0,0,0,1763,1757,1,0,0,0,1764,1767,1,0,0, - 0,1765,1763,1,0,0,0,1765,1766,1,0,0,0,1766,263,1,0,0,0,1767,1765, - 1,0,0,0,1768,1770,5,242,0,0,1769,1768,1,0,0,0,1769,1770,1,0,0,0, - 1770,1771,1,0,0,0,1771,1773,5,27,0,0,1772,1774,7,28,0,0,1773,1772, - 1,0,0,0,1773,1774,1,0,0,0,1774,1775,1,0,0,0,1775,1776,3,268,134, - 0,1776,1777,5,10,0,0,1777,1778,3,268,134,0,1778,1843,1,0,0,0,1779, - 1781,5,242,0,0,1780,1779,1,0,0,0,1780,1781,1,0,0,0,1781,1782,1,0, - 0,0,1782,1783,5,170,0,0,1783,1784,5,517,0,0,1784,1789,3,260,130, - 0,1785,1786,5,521,0,0,1786,1788,3,260,130,0,1787,1785,1,0,0,0,1788, - 1791,1,0,0,0,1789,1787,1,0,0,0,1789,1790,1,0,0,0,1790,1792,1,0,0, - 0,1791,1789,1,0,0,0,1792,1793,5,518,0,0,1793,1843,1,0,0,0,1794,1796, - 5,242,0,0,1795,1794,1,0,0,0,1795,1796,1,0,0,0,1796,1797,1,0,0,0, - 1797,1798,5,170,0,0,1798,1799,5,517,0,0,1799,1800,3,160,80,0,1800, - 1801,5,518,0,0,1801,1843,1,0,0,0,1802,1803,5,133,0,0,1803,1804,5, - 517,0,0,1804,1805,3,160,80,0,1805,1806,5,518,0,0,1806,1843,1,0,0, - 0,1807,1809,5,242,0,0,1808,1807,1,0,0,0,1808,1809,1,0,0,0,1809,1810, - 1,0,0,0,1810,1811,5,319,0,0,1811,1843,3,268,134,0,1812,1843,3,266, - 133,0,1813,1815,5,184,0,0,1814,1816,5,242,0,0,1815,1814,1,0,0,0, - 1815,1816,1,0,0,0,1816,1817,1,0,0,0,1817,1843,7,27,0,0,1818,1820, - 5,184,0,0,1819,1821,5,242,0,0,1820,1819,1,0,0,0,1820,1821,1,0,0, - 0,1821,1822,1,0,0,0,1822,1823,5,113,0,0,1823,1824,5,151,0,0,1824, - 1843,3,268,134,0,1825,1827,5,242,0,0,1826,1825,1,0,0,0,1826,1827, - 1,0,0,0,1827,1828,1,0,0,0,1828,1829,5,343,0,0,1829,1830,5,389,0, - 0,1830,1833,3,268,134,0,1831,1832,5,127,0,0,1832,1834,3,366,183, - 0,1833,1831,1,0,0,0,1833,1834,1,0,0,0,1834,1843,1,0,0,0,1835,1836, - 5,184,0,0,1836,1840,5,186,0,0,1837,1841,5,414,0,0,1838,1841,5,13, - 0,0,1839,1841,3,312,156,0,1840,1837,1,0,0,0,1840,1838,1,0,0,0,1840, - 1839,1,0,0,0,1840,1841,1,0,0,0,1841,1843,1,0,0,0,1842,1769,1,0,0, - 0,1842,1780,1,0,0,0,1842,1795,1,0,0,0,1842,1802,1,0,0,0,1842,1808, - 1,0,0,0,1842,1812,1,0,0,0,1842,1813,1,0,0,0,1842,1818,1,0,0,0,1842, - 1826,1,0,0,0,1842,1835,1,0,0,0,1843,265,1,0,0,0,1844,1846,5,242, - 0,0,1845,1844,1,0,0,0,1845,1846,1,0,0,0,1846,1847,1,0,0,0,1847,1848, - 5,203,0,0,1848,1862,7,29,0,0,1849,1850,5,517,0,0,1850,1863,5,518, - 0,0,1851,1852,5,517,0,0,1852,1857,3,260,130,0,1853,1854,5,521,0, - 0,1854,1856,3,260,130,0,1855,1853,1,0,0,0,1856,1859,1,0,0,0,1857, - 1855,1,0,0,0,1857,1858,1,0,0,0,1858,1860,1,0,0,0,1859,1857,1,0,0, - 0,1860,1861,5,518,0,0,1861,1863,1,0,0,0,1862,1849,1,0,0,0,1862,1851, - 1,0,0,0,1863,1874,1,0,0,0,1864,1866,5,242,0,0,1865,1864,1,0,0,0, - 1865,1866,1,0,0,0,1866,1867,1,0,0,0,1867,1868,5,203,0,0,1868,1871, - 3,268,134,0,1869,1870,5,127,0,0,1870,1872,3,366,183,0,1871,1869, - 1,0,0,0,1871,1872,1,0,0,0,1872,1874,1,0,0,0,1873,1845,1,0,0,0,1873, - 1865,1,0,0,0,1874,267,1,0,0,0,1875,1876,6,134,-1,0,1876,1880,3,272, - 136,0,1877,1878,7,30,0,0,1878,1880,3,268,134,7,1879,1875,1,0,0,0, - 1879,1877,1,0,0,0,1880,1902,1,0,0,0,1881,1882,10,6,0,0,1882,1883, - 7,31,0,0,1883,1901,3,268,134,7,1884,1885,10,5,0,0,1885,1886,7,32, - 0,0,1886,1901,3,268,134,6,1887,1888,10,4,0,0,1888,1889,5,512,0,0, - 1889,1901,3,268,134,5,1890,1891,10,3,0,0,1891,1892,5,513,0,0,1892, - 1901,3,268,134,4,1893,1894,10,2,0,0,1894,1895,5,511,0,0,1895,1901, - 3,268,134,3,1896,1897,10,1,0,0,1897,1898,3,354,177,0,1898,1899,3, - 268,134,2,1899,1901,1,0,0,0,1900,1881,1,0,0,0,1900,1884,1,0,0,0, - 1900,1887,1,0,0,0,1900,1890,1,0,0,0,1900,1893,1,0,0,0,1900,1896, - 1,0,0,0,1901,1904,1,0,0,0,1902,1900,1,0,0,0,1902,1903,1,0,0,0,1903, - 269,1,0,0,0,1904,1902,1,0,0,0,1905,1925,3,380,190,0,1906,1925,3, - 278,139,0,1907,1908,3,280,140,0,1908,1920,5,517,0,0,1909,1911,3, - 372,186,0,1910,1909,1,0,0,0,1910,1911,1,0,0,0,1911,1912,1,0,0,0, - 1912,1917,3,282,141,0,1913,1914,5,521,0,0,1914,1916,3,282,141,0, - 1915,1913,1,0,0,0,1916,1919,1,0,0,0,1917,1915,1,0,0,0,1917,1918, - 1,0,0,0,1918,1921,1,0,0,0,1919,1917,1,0,0,0,1920,1910,1,0,0,0,1920, - 1921,1,0,0,0,1921,1922,1,0,0,0,1922,1923,5,518,0,0,1923,1925,1,0, - 0,0,1924,1905,1,0,0,0,1924,1906,1,0,0,0,1924,1907,1,0,0,0,1925,271, - 1,0,0,0,1926,1927,6,136,-1,0,1927,1929,5,40,0,0,1928,1930,3,318, - 159,0,1929,1928,1,0,0,0,1930,1931,1,0,0,0,1931,1929,1,0,0,0,1931, - 1932,1,0,0,0,1932,1935,1,0,0,0,1933,1934,5,120,0,0,1934,1936,3,260, - 130,0,1935,1933,1,0,0,0,1935,1936,1,0,0,0,1936,1937,1,0,0,0,1937, - 1938,5,122,0,0,1938,2002,1,0,0,0,1939,1940,5,40,0,0,1940,1942,3, - 260,130,0,1941,1943,3,318,159,0,1942,1941,1,0,0,0,1943,1944,1,0, - 0,0,1944,1942,1,0,0,0,1944,1945,1,0,0,0,1945,1948,1,0,0,0,1946,1947, - 5,120,0,0,1947,1949,3,260,130,0,1948,1946,1,0,0,0,1948,1949,1,0, - 0,0,1949,1950,1,0,0,0,1950,1951,5,122,0,0,1951,2002,1,0,0,0,1952, - 1953,5,41,0,0,1953,1954,5,517,0,0,1954,1955,3,260,130,0,1955,1956, - 5,17,0,0,1956,1957,3,58,29,0,1957,1958,5,518,0,0,1958,2002,1,0,0, - 0,1959,1960,5,458,0,0,1960,1961,5,517,0,0,1961,1964,3,260,130,0, - 1962,1963,5,462,0,0,1963,1965,5,477,0,0,1964,1962,1,0,0,0,1964,1965, - 1,0,0,0,1965,1966,1,0,0,0,1966,1967,5,518,0,0,1967,2002,1,0,0,0, - 1968,1969,5,468,0,0,1969,1970,5,517,0,0,1970,1973,3,260,130,0,1971, - 1972,5,462,0,0,1972,1974,5,477,0,0,1973,1971,1,0,0,0,1973,1974,1, - 0,0,0,1974,1975,1,0,0,0,1975,1976,5,518,0,0,1976,2002,1,0,0,0,1977, - 1978,5,282,0,0,1978,1979,5,517,0,0,1979,1980,3,268,134,0,1980,1981, - 5,170,0,0,1981,1982,3,268,134,0,1982,1983,5,518,0,0,1983,2002,1, - 0,0,0,1984,2002,3,362,181,0,1985,2002,5,528,0,0,1986,1987,3,336, - 168,0,1987,1988,5,514,0,0,1988,1989,5,528,0,0,1989,2002,1,0,0,0, - 1990,1991,5,517,0,0,1991,1992,3,160,80,0,1992,1993,5,518,0,0,1993, - 2002,1,0,0,0,1994,2002,3,270,135,0,1995,2002,3,54,27,0,1996,2002, - 3,284,142,0,1997,1998,5,517,0,0,1998,1999,3,260,130,0,1999,2000, - 5,518,0,0,2000,2002,1,0,0,0,2001,1926,1,0,0,0,2001,1939,1,0,0,0, - 2001,1952,1,0,0,0,2001,1959,1,0,0,0,2001,1968,1,0,0,0,2001,1977, - 1,0,0,0,2001,1984,1,0,0,0,2001,1985,1,0,0,0,2001,1986,1,0,0,0,2001, - 1990,1,0,0,0,2001,1994,1,0,0,0,2001,1995,1,0,0,0,2001,1996,1,0,0, - 0,2001,1997,1,0,0,0,2002,2010,1,0,0,0,2003,2004,10,4,0,0,2004,2005, - 5,515,0,0,2005,2006,3,268,134,0,2006,2007,5,516,0,0,2007,2009,1, - 0,0,0,2008,2003,1,0,0,0,2009,2012,1,0,0,0,2010,2008,1,0,0,0,2010, - 2011,1,0,0,0,2011,273,1,0,0,0,2012,2010,1,0,0,0,2013,2014,3,336, - 168,0,2014,275,1,0,0,0,2015,2020,3,384,192,0,2016,2020,3,380,190, - 0,2017,2020,3,382,191,0,2018,2020,3,336,168,0,2019,2015,1,0,0,0, - 2019,2016,1,0,0,0,2019,2017,1,0,0,0,2019,2018,1,0,0,0,2020,277,1, - 0,0,0,2021,2022,3,382,191,0,2022,2023,5,538,0,0,2023,2026,1,0,0, - 0,2024,2026,3,290,145,0,2025,2021,1,0,0,0,2025,2024,1,0,0,0,2026, - 279,1,0,0,0,2027,2030,3,384,192,0,2028,2030,3,336,168,0,2029,2027, - 1,0,0,0,2029,2028,1,0,0,0,2030,281,1,0,0,0,2031,2036,3,378,189,0, - 2032,2036,3,376,188,0,2033,2036,3,374,187,0,2034,2036,3,260,130, - 0,2035,2031,1,0,0,0,2035,2032,1,0,0,0,2035,2033,1,0,0,0,2035,2034, - 1,0,0,0,2036,283,1,0,0,0,2037,2038,3,336,168,0,2038,285,1,0,0,0, - 2039,2040,3,312,156,0,2040,287,1,0,0,0,2041,2044,3,312,156,0,2042, - 2044,3,284,142,0,2043,2041,1,0,0,0,2043,2042,1,0,0,0,2044,289,1, - 0,0,0,2045,2048,5,182,0,0,2046,2049,3,292,146,0,2047,2049,3,296, - 148,0,2048,2046,1,0,0,0,2048,2047,1,0,0,0,2048,2049,1,0,0,0,2049, - 291,1,0,0,0,2050,2052,3,294,147,0,2051,2053,3,298,149,0,2052,2051, - 1,0,0,0,2052,2053,1,0,0,0,2053,293,1,0,0,0,2054,2055,3,300,150,0, - 2055,2056,3,376,188,0,2056,2058,1,0,0,0,2057,2054,1,0,0,0,2058,2059, - 1,0,0,0,2059,2057,1,0,0,0,2059,2060,1,0,0,0,2060,295,1,0,0,0,2061, - 2064,3,298,149,0,2062,2065,3,294,147,0,2063,2065,3,298,149,0,2064, - 2062,1,0,0,0,2064,2063,1,0,0,0,2064,2065,1,0,0,0,2065,297,1,0,0, - 0,2066,2067,3,300,150,0,2067,2068,3,376,188,0,2068,2069,5,389,0, - 0,2069,2070,3,376,188,0,2070,299,1,0,0,0,2071,2073,7,33,0,0,2072, - 2071,1,0,0,0,2072,2073,1,0,0,0,2073,2074,1,0,0,0,2074,2077,7,34, - 0,0,2075,2077,5,538,0,0,2076,2072,1,0,0,0,2076,2075,1,0,0,0,2077, - 301,1,0,0,0,2078,2080,5,17,0,0,2079,2078,1,0,0,0,2079,2080,1,0,0, - 0,2080,2081,1,0,0,0,2081,2083,3,312,156,0,2082,2084,3,308,154,0, - 2083,2082,1,0,0,0,2083,2084,1,0,0,0,2084,303,1,0,0,0,2085,2086,3, - 312,156,0,2086,2087,3,306,153,0,2087,305,1,0,0,0,2088,2089,5,222, - 0,0,2089,2091,3,312,156,0,2090,2088,1,0,0,0,2091,2092,1,0,0,0,2092, - 2090,1,0,0,0,2092,2093,1,0,0,0,2093,2096,1,0,0,0,2094,2096,1,0,0, - 0,2095,2090,1,0,0,0,2095,2094,1,0,0,0,2096,307,1,0,0,0,2097,2098, - 5,517,0,0,2098,2099,3,310,155,0,2099,2100,5,518,0,0,2100,309,1,0, - 0,0,2101,2106,3,312,156,0,2102,2103,5,521,0,0,2103,2105,3,312,156, - 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,311,1,0,0,0,2108,2106,1,0,0,0,2109,2113,3,314,157,0, - 2110,2113,3,316,158,0,2111,2113,3,386,193,0,2112,2109,1,0,0,0,2112, - 2110,1,0,0,0,2112,2111,1,0,0,0,2113,313,1,0,0,0,2114,2115,7,35,0, - 0,2115,315,1,0,0,0,2116,2117,5,538,0,0,2117,317,1,0,0,0,2118,2119, - 5,429,0,0,2119,2120,3,260,130,0,2120,2121,5,377,0,0,2121,2122,3, - 260,130,0,2122,319,1,0,0,0,2123,2124,3,312,156,0,2124,321,1,0,0, - 0,2125,2126,3,312,156,0,2126,323,1,0,0,0,2127,2130,3,312,156,0,2128, - 2129,5,514,0,0,2129,2131,3,312,156,0,2130,2128,1,0,0,0,2130,2131, - 1,0,0,0,2131,325,1,0,0,0,2132,2135,3,312,156,0,2133,2134,5,514,0, - 0,2134,2136,3,312,156,0,2135,2133,1,0,0,0,2135,2136,1,0,0,0,2136, - 327,1,0,0,0,2137,2140,3,312,156,0,2138,2139,5,514,0,0,2139,2141, - 3,312,156,0,2140,2138,1,0,0,0,2140,2141,1,0,0,0,2141,2150,1,0,0, - 0,2142,2143,3,312,156,0,2143,2144,5,514,0,0,2144,2147,3,312,156, - 0,2145,2146,5,514,0,0,2146,2148,3,312,156,0,2147,2145,1,0,0,0,2147, - 2148,1,0,0,0,2148,2150,1,0,0,0,2149,2137,1,0,0,0,2149,2142,1,0,0, - 0,2150,329,1,0,0,0,2151,2154,3,312,156,0,2152,2153,5,514,0,0,2153, - 2155,3,312,156,0,2154,2152,1,0,0,0,2154,2155,1,0,0,0,2155,2164,1, - 0,0,0,2156,2157,3,312,156,0,2157,2158,5,514,0,0,2158,2161,3,312, - 156,0,2159,2160,5,514,0,0,2160,2162,3,312,156,0,2161,2159,1,0,0, - 0,2161,2162,1,0,0,0,2162,2164,1,0,0,0,2163,2151,1,0,0,0,2163,2156, - 1,0,0,0,2164,331,1,0,0,0,2165,2168,3,312,156,0,2166,2167,5,514,0, - 0,2167,2169,3,312,156,0,2168,2166,1,0,0,0,2168,2169,1,0,0,0,2169, - 2178,1,0,0,0,2170,2171,3,312,156,0,2171,2172,5,514,0,0,2172,2175, - 3,312,156,0,2173,2174,5,514,0,0,2174,2176,3,312,156,0,2175,2173, - 1,0,0,0,2175,2176,1,0,0,0,2176,2178,1,0,0,0,2177,2165,1,0,0,0,2177, - 2170,1,0,0,0,2178,333,1,0,0,0,2179,2182,3,312,156,0,2180,2181,5, - 514,0,0,2181,2183,3,312,156,0,2182,2180,1,0,0,0,2182,2183,1,0,0, - 0,2183,2192,1,0,0,0,2184,2185,3,312,156,0,2185,2186,5,514,0,0,2186, - 2189,3,312,156,0,2187,2188,5,514,0,0,2188,2190,3,312,156,0,2189, - 2187,1,0,0,0,2189,2190,1,0,0,0,2190,2192,1,0,0,0,2191,2179,1,0,0, - 0,2191,2184,1,0,0,0,2192,335,1,0,0,0,2193,2198,3,312,156,0,2194, - 2195,5,514,0,0,2195,2197,3,312,156,0,2196,2194,1,0,0,0,2197,2200, - 1,0,0,0,2198,2199,1,0,0,0,2198,2196,1,0,0,0,2199,337,1,0,0,0,2200, - 2198,1,0,0,0,2201,2202,5,434,0,0,2202,2203,3,344,172,0,2203,339, - 1,0,0,0,2204,2205,5,167,0,0,2205,2206,5,242,0,0,2206,2207,5,133, - 0,0,2207,341,1,0,0,0,2208,2209,5,167,0,0,2209,2210,5,133,0,0,2210, - 343,1,0,0,0,2211,2212,5,517,0,0,2212,2217,3,346,173,0,2213,2214, - 5,521,0,0,2214,2216,3,346,173,0,2215,2213,1,0,0,0,2216,2219,1,0, - 0,0,2217,2215,1,0,0,0,2217,2218,1,0,0,0,2218,2220,1,0,0,0,2219,2217, - 1,0,0,0,2220,2221,5,518,0,0,2221,345,1,0,0,0,2222,2227,3,348,174, - 0,2223,2225,5,506,0,0,2224,2223,1,0,0,0,2224,2225,1,0,0,0,2225,2226, - 1,0,0,0,2226,2228,3,350,175,0,2227,2224,1,0,0,0,2227,2228,1,0,0, - 0,2228,347,1,0,0,0,2229,2233,3,312,156,0,2230,2233,3,284,142,0,2231, - 2233,5,538,0,0,2232,2229,1,0,0,0,2232,2230,1,0,0,0,2232,2231,1,0, - 0,0,2233,349,1,0,0,0,2234,2239,5,539,0,0,2235,2239,5,540,0,0,2236, - 2239,3,370,185,0,2237,2239,5,538,0,0,2238,2234,1,0,0,0,2238,2235, - 1,0,0,0,2238,2236,1,0,0,0,2238,2237,1,0,0,0,2239,351,1,0,0,0,2240, - 2247,5,10,0,0,2241,2242,5,512,0,0,2242,2247,5,512,0,0,2243,2247, - 5,258,0,0,2244,2245,5,511,0,0,2245,2247,5,511,0,0,2246,2240,1,0, - 0,0,2246,2241,1,0,0,0,2246,2243,1,0,0,0,2246,2244,1,0,0,0,2247,353, - 1,0,0,0,2248,2263,5,506,0,0,2249,2263,5,507,0,0,2250,2263,5,508, - 0,0,2251,2252,5,508,0,0,2252,2263,5,506,0,0,2253,2254,5,507,0,0, - 2254,2263,5,506,0,0,2255,2256,5,508,0,0,2256,2263,5,507,0,0,2257, - 2258,5,509,0,0,2258,2263,5,506,0,0,2259,2260,5,508,0,0,2260,2261, - 5,506,0,0,2261,2263,5,507,0,0,2262,2248,1,0,0,0,2262,2249,1,0,0, - 0,2262,2250,1,0,0,0,2262,2251,1,0,0,0,2262,2253,1,0,0,0,2262,2255, - 1,0,0,0,2262,2257,1,0,0,0,2262,2259,1,0,0,0,2263,355,1,0,0,0,2264, - 2265,5,508,0,0,2265,2272,5,508,0,0,2266,2267,5,507,0,0,2267,2272, - 5,507,0,0,2268,2272,5,512,0,0,2269,2272,5,513,0,0,2270,2272,5,511, - 0,0,2271,2264,1,0,0,0,2271,2266,1,0,0,0,2271,2268,1,0,0,0,2271,2269, - 1,0,0,0,2271,2270,1,0,0,0,2272,357,1,0,0,0,2273,2274,7,36,0,0,2274, - 359,1,0,0,0,2275,2276,7,37,0,0,2276,361,1,0,0,0,2277,2292,3,290, - 145,0,2278,2292,3,364,182,0,2279,2292,3,366,183,0,2280,2282,5,530, - 0,0,2281,2280,1,0,0,0,2281,2282,1,0,0,0,2282,2283,1,0,0,0,2283,2292, - 3,368,184,0,2284,2292,3,370,185,0,2285,2292,5,540,0,0,2286,2292, - 5,541,0,0,2287,2289,5,242,0,0,2288,2287,1,0,0,0,2288,2289,1,0,0, - 0,2289,2290,1,0,0,0,2290,2292,5,245,0,0,2291,2277,1,0,0,0,2291,2278, - 1,0,0,0,2291,2279,1,0,0,0,2291,2281,1,0,0,0,2291,2284,1,0,0,0,2291, - 2285,1,0,0,0,2291,2286,1,0,0,0,2291,2288,1,0,0,0,2292,363,1,0,0, - 0,2293,2294,3,374,187,0,2294,2295,3,366,183,0,2295,365,1,0,0,0,2296, - 2297,5,538,0,0,2297,367,1,0,0,0,2298,2299,5,539,0,0,2299,369,1,0, - 0,0,2300,2301,7,38,0,0,2301,371,1,0,0,0,2302,2303,7,39,0,0,2303, - 373,1,0,0,0,2304,2305,7,40,0,0,2305,375,1,0,0,0,2306,2307,7,41,0, - 0,2307,377,1,0,0,0,2308,2309,7,42,0,0,2309,379,1,0,0,0,2310,2311, - 7,43,0,0,2311,381,1,0,0,0,2312,2313,7,44,0,0,2313,383,1,0,0,0,2314, - 2315,7,45,0,0,2315,385,1,0,0,0,2316,2317,7,46,0,0,2317,387,1,0,0, - 0,274,391,398,401,415,433,437,446,451,458,469,478,490,493,500,503, - 511,515,520,523,530,538,542,554,562,566,598,601,606,610,614,618, - 627,632,636,640,645,648,652,657,663,668,673,677,681,685,695,703, - 707,711,715,719,723,727,731,735,737,747,755,779,793,798,802,808, - 811,814,821,824,833,845,869,881,886,890,898,902,908,918,923,929, - 933,937,941,950,954,961,964,974,982,990,994,1009,1028,1039,1043, - 1050,1055,1061,1065,1072,1076,1080,1084,1092,1096,1101,1107,1113, - 1116,1120,1131,1140,1147,1158,1170,1185,1188,1192,1195,1197,1202, - 1206,1209,1213,1222,1231,1241,1246,1257,1260,1263,1266,1269,1275, - 1279,1287,1290,1295,1298,1302,1305,1307,1321,1332,1337,1345,1348, - 1351,1356,1358,1360,1365,1368,1372,1376,1385,1396,1423,1445,1458, - 1470,1483,1495,1507,1513,1540,1548,1552,1555,1558,1565,1568,1571, - 1574,1577,1580,1585,1588,1597,1602,1606,1611,1617,1622,1626,1645, - 1653,1661,1665,1669,1679,1705,1713,1725,1747,1749,1760,1763,1765, - 1769,1773,1780,1789,1795,1808,1815,1820,1826,1833,1840,1842,1845, - 1857,1862,1865,1871,1873,1879,1900,1902,1910,1917,1920,1924,1931, - 1935,1944,1948,1964,1973,2001,2010,2019,2025,2029,2035,2043,2048, - 2052,2059,2064,2072,2076,2079,2083,2092,2095,2106,2112,2130,2135, - 2140,2147,2149,2154,2161,2163,2168,2175,2177,2182,2189,2191,2198, - 2217,2224,2227,2232,2238,2246,2262,2271,2281,2288,2291 + 1,131,3,131,1758,8,131,3,131,1760,8,131,1,131,1,131,1,131,1,131, + 1,131,1,131,1,131,1,131,1,131,3,131,1771,8,131,1,131,5,131,1774, + 8,131,10,131,12,131,1777,9,131,1,132,3,132,1780,8,132,1,132,1,132, + 3,132,1784,8,132,1,132,1,132,1,132,1,132,1,132,3,132,1791,8,132, + 1,132,1,132,1,132,1,132,1,132,5,132,1798,8,132,10,132,12,132,1801, + 9,132,1,132,1,132,1,132,3,132,1806,8,132,1,132,1,132,1,132,1,132, + 1,132,1,132,1,132,1,132,1,132,1,132,1,132,3,132,1819,8,132,1,132, + 1,132,1,132,1,132,1,132,3,132,1826,8,132,1,132,1,132,1,132,3,132, + 1831,8,132,1,132,1,132,1,132,1,132,3,132,1837,8,132,1,132,1,132, + 1,132,1,132,1,132,3,132,1844,8,132,1,132,1,132,1,132,1,132,1,132, + 3,132,1851,8,132,3,132,1853,8,132,1,133,1,133,1,133,1,133,1,133, + 1,133,1,133,1,133,3,133,1863,8,133,1,134,3,134,1866,8,134,1,134, + 1,134,1,134,1,134,1,134,1,134,1,134,1,134,5,134,1876,8,134,10,134, + 12,134,1879,9,134,1,134,1,134,3,134,1883,8,134,1,134,3,134,1886, + 8,134,1,134,1,134,1,134,1,134,3,134,1892,8,134,3,134,1894,8,134, + 1,135,1,135,1,135,1,135,3,135,1900,8,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,5,135,1921,8,135,10,135,12,135,1924,9,135, + 1,136,1,136,1,136,1,136,1,136,3,136,1931,8,136,1,136,1,136,1,136, + 5,136,1936,8,136,10,136,12,136,1939,9,136,3,136,1941,8,136,1,136, + 1,136,3,136,1945,8,136,1,137,1,137,1,137,4,137,1950,8,137,11,137, + 12,137,1951,1,137,1,137,3,137,1956,8,137,1,137,1,137,1,137,1,137, + 1,137,4,137,1963,8,137,11,137,12,137,1964,1,137,1,137,3,137,1969, + 8,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137, + 1,137,1,137,1,137,1,137,3,137,1985,8,137,1,137,1,137,1,137,1,137, + 1,137,1,137,1,137,3,137,1994,8,137,1,137,1,137,1,137,1,137,1,137, + 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137, + 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,3,137, + 2022,8,137,1,137,1,137,1,137,1,137,1,137,5,137,2029,8,137,10,137, + 12,137,2032,9,137,1,138,1,138,1,139,1,139,1,139,1,139,3,139,2040, + 8,139,1,140,1,140,1,140,1,140,3,140,2046,8,140,1,141,1,141,3,141, + 2050,8,141,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142,3,142, + 2060,8,142,1,143,1,143,1,143,1,143,3,143,2066,8,143,1,143,1,143, + 1,143,1,143,3,143,2072,8,143,1,143,1,143,3,143,2076,8,143,1,143, + 1,143,1,143,1,143,3,143,2082,8,143,1,143,1,143,3,143,2086,8,143, + 1,144,1,144,1,144,1,144,3,144,2092,8,144,3,144,2094,8,144,1,144, + 3,144,2097,8,144,1,144,3,144,2100,8,144,1,144,1,144,1,144,1,144, + 3,144,2106,8,144,1,144,1,144,1,144,1,144,3,144,2112,8,144,1,145, + 3,145,2115,8,145,1,145,1,145,3,145,2119,8,145,1,145,1,145,1,145, + 1,145,5,145,2125,8,145,10,145,12,145,2128,9,145,1,145,3,145,2131, + 8,145,5,145,2133,8,145,10,145,12,145,2136,9,145,1,145,1,145,3,145, + 2140,8,145,1,145,1,145,3,145,2144,8,145,1,146,5,146,2147,8,146,10, + 146,12,146,2150,9,146,1,146,1,146,3,146,2154,8,146,1,146,1,146,3, + 146,2158,8,146,1,147,1,147,1,148,1,148,1,149,1,149,3,149,2166,8, + 149,1,150,1,150,1,150,3,150,2171,8,150,1,151,1,151,3,151,2175,8, + 151,1,152,1,152,1,152,4,152,2180,8,152,11,152,12,152,2181,1,153, + 1,153,1,153,3,153,2187,8,153,1,154,1,154,1,154,1,154,1,154,1,155, + 3,155,2195,8,155,1,155,1,155,3,155,2199,8,155,1,156,3,156,2202,8, + 156,1,156,1,156,3,156,2206,8,156,1,157,1,157,1,157,1,158,1,158,4, + 158,2213,8,158,11,158,12,158,2214,1,158,3,158,2218,8,158,1,159,1, + 159,1,159,1,159,1,160,1,160,1,160,5,160,2227,8,160,10,160,12,160, + 2230,9,160,1,161,1,161,1,161,3,161,2235,8,161,1,162,1,162,1,163, + 1,163,1,164,1,164,1,164,1,164,1,164,1,165,1,165,1,166,1,166,1,167, + 1,167,1,167,3,167,2253,8,167,1,168,1,168,1,168,3,168,2258,8,168, + 1,169,1,169,1,169,3,169,2263,8,169,1,169,1,169,1,169,1,169,1,169, + 3,169,2270,8,169,3,169,2272,8,169,1,170,1,170,1,170,3,170,2277,8, + 170,1,170,1,170,1,170,1,170,1,170,3,170,2284,8,170,3,170,2286,8, + 170,1,171,1,171,1,171,3,171,2291,8,171,1,171,1,171,1,171,1,171,1, + 171,3,171,2298,8,171,3,171,2300,8,171,1,172,1,172,1,172,3,172,2305, + 8,172,1,172,1,172,1,172,1,172,1,172,3,172,2312,8,172,3,172,2314, + 8,172,1,173,1,173,1,173,5,173,2319,8,173,10,173,12,173,2322,9,173, + 1,174,1,174,1,174,1,175,1,175,1,175,1,175,1,176,1,176,1,176,1,177, + 1,177,1,177,1,177,5,177,2338,8,177,10,177,12,177,2341,9,177,1,177, + 1,177,1,178,1,178,3,178,2347,8,178,1,178,3,178,2350,8,178,1,179, + 1,179,1,179,3,179,2355,8,179,1,180,1,180,1,180,1,180,3,180,2361, + 8,180,1,181,1,181,1,181,1,181,1,181,1,181,3,181,2369,8,181,1,182, + 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182, + 1,182,1,182,3,182,2385,8,182,1,183,1,183,1,183,1,183,1,183,1,183, + 1,183,3,183,2394,8,183,1,184,1,184,1,185,1,185,1,186,1,186,1,186, + 1,186,3,186,2404,8,186,1,186,1,186,1,186,1,186,1,186,3,186,2411, + 8,186,1,186,3,186,2414,8,186,1,187,1,187,1,187,1,188,1,188,1,189, + 1,189,1,190,1,190,1,191,1,191,1,192,1,192,1,193,1,193,1,194,1,194, + 1,195,1,195,1,196,1,196,1,197,1,197,1,198,1,198,1,198,1,2320,5,160, + 180,262,270,274,199,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32, + 34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76, + 78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114, + 116,118,120,122,124,126,128,130,132,134,136,138,140,142,144,146, + 148,150,152,154,156,158,160,162,164,166,168,170,172,174,176,178, + 180,182,184,186,188,190,192,194,196,198,200,202,204,206,208,210, + 212,214,216,218,220,222,224,226,228,230,232,234,236,238,240,242, + 244,246,248,250,252,254,256,258,260,262,264,266,268,270,272,274, + 276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306, + 308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338, + 340,342,344,346,348,350,352,354,356,358,360,362,364,366,368,370, + 372,374,376,378,380,382,384,386,388,390,392,394,396,0,47,2,0,109, + 109,451,451,3,0,45,45,128,128,189,189,4,0,42,42,90,90,423,423,465, + 465,2,0,442,442,448,448,2,0,151,151,170,170,2,0,438,438,490,490, + 2,0,483,486,488,488,3,0,32,32,91,91,245,245,11,0,28,29,35,35,46, + 46,92,92,178,179,345,345,361,361,379,379,382,382,388,388,417,418, + 2,0,434,434,436,436,4,0,101,102,115,115,144,144,247,247,2,0,13,13, + 232,232,2,0,456,456,463,463,3,0,5,5,271,271,445,445,3,0,267,267, + 456,456,463,463,3,0,426,426,459,459,478,478,3,0,331,331,466,466, + 482,482,2,0,441,441,491,491,2,0,183,183,266,266,3,0,130,130,180, + 180,403,403,4,0,152,152,174,174,202,202,318,318,3,0,446,446,460, + 460,500,500,4,0,251,251,447,447,495,497,499,499,2,0,74,74,321,321, + 3,0,460,460,493,493,500,500,2,0,440,440,451,451,2,0,458,458,468, + 468,4,0,140,140,245,245,398,398,405,405,2,0,19,19,370,370,2,0,5, + 5,11,11,2,0,510,510,530,531,4,0,453,453,528,528,532,532,535,535, + 2,0,530,531,533,533,1,0,530,531,1,0,539,540,2,0,539,539,542,542, + 4,0,453,453,528,528,530,532,534,535,3,0,242,242,509,510,530,531, + 2,0,140,140,398,398,2,0,5,5,113,113,10,0,97,97,165,165,223,223,230, + 230,335,335,437,437,471,471,473,473,489,489,503,503,15,0,97,97,165, + 165,223,223,230,230,335,335,428,428,437,437,443,443,449,450,455, + 455,461,461,471,476,489,489,492,492,503,504,11,0,5,5,13,13,33,33, + 78,78,84,85,113,113,201,201,208,209,390,390,414,414,528,528,3,0, + 78,78,84,85,208,209,2,0,91,91,379,380,53,0,4,4,13,13,23,23,38,38, + 41,41,43,44,54,54,56,56,69,69,75,75,98,99,107,107,119,119,134,134, + 139,139,143,143,145,145,160,160,165,165,167,167,187,188,190,195, + 198,198,200,200,202,202,206,206,210,210,215,215,221,221,223,224, + 230,230,244,244,246,246,265,265,277,277,282,282,284,284,294,294, + 318,318,322,324,335,335,358,359,365,365,368,368,381,381,396,396, + 399,400,409,409,420,421,437,437,470,470,489,489,503,503,1,0,438, + 505,2674,0,401,1,0,0,0,2,411,1,0,0,0,4,425,1,0,0,0,6,427,1,0,0,0, + 8,443,1,0,0,0,10,447,1,0,0,0,12,449,1,0,0,0,14,452,1,0,0,0,16,463, + 1,0,0,0,18,471,1,0,0,0,20,479,1,0,0,0,22,481,1,0,0,0,24,533,1,0, + 0,0,26,535,1,0,0,0,28,542,1,0,0,0,30,546,1,0,0,0,32,550,1,0,0,0, + 34,554,1,0,0,0,36,608,1,0,0,0,38,614,1,0,0,0,40,620,1,0,0,0,42,622, + 1,0,0,0,44,664,1,0,0,0,46,678,1,0,0,0,48,680,1,0,0,0,50,691,1,0, + 0,0,52,695,1,0,0,0,54,697,1,0,0,0,56,699,1,0,0,0,58,747,1,0,0,0, + 60,749,1,0,0,0,62,753,1,0,0,0,64,761,1,0,0,0,66,769,1,0,0,0,68,773, + 1,0,0,0,70,808,1,0,0,0,72,824,1,0,0,0,74,826,1,0,0,0,76,836,1,0, + 0,0,78,838,1,0,0,0,80,845,1,0,0,0,82,847,1,0,0,0,84,855,1,0,0,0, + 86,863,1,0,0,0,88,865,1,0,0,0,90,869,1,0,0,0,92,873,1,0,0,0,94,896, + 1,0,0,0,96,900,1,0,0,0,98,902,1,0,0,0,100,918,1,0,0,0,102,920,1, + 0,0,0,104,925,1,0,0,0,106,937,1,0,0,0,108,956,1,0,0,0,110,976,1, + 0,0,0,112,987,1,0,0,0,114,989,1,0,0,0,116,1002,1,0,0,0,118,1009, + 1,0,0,0,120,1012,1,0,0,0,122,1021,1,0,0,0,124,1025,1,0,0,0,126,1029, + 1,0,0,0,128,1032,1,0,0,0,130,1040,1,0,0,0,132,1045,1,0,0,0,134,1062, + 1,0,0,0,136,1069,1,0,0,0,138,1079,1,0,0,0,140,1088,1,0,0,0,142,1098, + 1,0,0,0,144,1117,1,0,0,0,146,1119,1,0,0,0,148,1132,1,0,0,0,150,1135, + 1,0,0,0,152,1144,1,0,0,0,154,1157,1,0,0,0,156,1159,1,0,0,0,158,1172, + 1,0,0,0,160,1207,1,0,0,0,162,1226,1,0,0,0,164,1235,1,0,0,0,166,1244, + 1,0,0,0,168,1263,1,0,0,0,170,1285,1,0,0,0,172,1287,1,0,0,0,174,1317, + 1,0,0,0,176,1331,1,0,0,0,178,1333,1,0,0,0,180,1347,1,0,0,0,182,1373, + 1,0,0,0,184,1406,1,0,0,0,186,1408,1,0,0,0,188,1414,1,0,0,0,190,1416, + 1,0,0,0,192,1421,1,0,0,0,194,1426,1,0,0,0,196,1438,1,0,0,0,198,1455, + 1,0,0,0,200,1457,1,0,0,0,202,1459,1,0,0,0,204,1468,1,0,0,0,206,1470, + 1,0,0,0,208,1473,1,0,0,0,210,1523,1,0,0,0,212,1525,1,0,0,0,214,1528, + 1,0,0,0,216,1530,1,0,0,0,218,1537,1,0,0,0,220,1539,1,0,0,0,222,1541, + 1,0,0,0,224,1544,1,0,0,0,226,1553,1,0,0,0,228,1558,1,0,0,0,230,1572, + 1,0,0,0,232,1600,1,0,0,0,234,1610,1,0,0,0,236,1618,1,0,0,0,238,1623, + 1,0,0,0,240,1655,1,0,0,0,242,1657,1,0,0,0,244,1666,1,0,0,0,246,1677, + 1,0,0,0,248,1689,1,0,0,0,250,1715,1,0,0,0,252,1717,1,0,0,0,254,1735, + 1,0,0,0,256,1737,1,0,0,0,258,1742,1,0,0,0,260,1745,1,0,0,0,262,1759, + 1,0,0,0,264,1852,1,0,0,0,266,1862,1,0,0,0,268,1893,1,0,0,0,270,1899, + 1,0,0,0,272,1944,1,0,0,0,274,2021,1,0,0,0,276,2033,1,0,0,0,278,2039, + 1,0,0,0,280,2045,1,0,0,0,282,2049,1,0,0,0,284,2059,1,0,0,0,286,2061, + 1,0,0,0,288,2087,1,0,0,0,290,2134,1,0,0,0,292,2148,1,0,0,0,294,2159, + 1,0,0,0,296,2161,1,0,0,0,298,2165,1,0,0,0,300,2167,1,0,0,0,302,2172, + 1,0,0,0,304,2179,1,0,0,0,306,2183,1,0,0,0,308,2188,1,0,0,0,310,2198, + 1,0,0,0,312,2201,1,0,0,0,314,2207,1,0,0,0,316,2217,1,0,0,0,318,2219, + 1,0,0,0,320,2223,1,0,0,0,322,2234,1,0,0,0,324,2236,1,0,0,0,326,2238, + 1,0,0,0,328,2240,1,0,0,0,330,2245,1,0,0,0,332,2247,1,0,0,0,334,2249, + 1,0,0,0,336,2254,1,0,0,0,338,2271,1,0,0,0,340,2285,1,0,0,0,342,2299, + 1,0,0,0,344,2313,1,0,0,0,346,2315,1,0,0,0,348,2323,1,0,0,0,350,2326, + 1,0,0,0,352,2330,1,0,0,0,354,2333,1,0,0,0,356,2344,1,0,0,0,358,2354, + 1,0,0,0,360,2360,1,0,0,0,362,2368,1,0,0,0,364,2384,1,0,0,0,366,2393, + 1,0,0,0,368,2395,1,0,0,0,370,2397,1,0,0,0,372,2413,1,0,0,0,374,2415, + 1,0,0,0,376,2418,1,0,0,0,378,2420,1,0,0,0,380,2422,1,0,0,0,382,2424, + 1,0,0,0,384,2426,1,0,0,0,386,2428,1,0,0,0,388,2430,1,0,0,0,390,2432, + 1,0,0,0,392,2434,1,0,0,0,394,2436,1,0,0,0,396,2438,1,0,0,0,398,400, + 3,2,1,0,399,398,1,0,0,0,400,403,1,0,0,0,401,399,1,0,0,0,401,402, + 1,0,0,0,402,404,1,0,0,0,403,401,1,0,0,0,404,405,5,0,0,1,405,1,1, + 0,0,0,406,408,3,4,2,0,407,409,5,522,0,0,408,407,1,0,0,0,408,409, + 1,0,0,0,409,412,1,0,0,0,410,412,3,6,3,0,411,406,1,0,0,0,411,410, + 1,0,0,0,412,3,1,0,0,0,413,426,3,8,4,0,414,426,3,10,5,0,415,426,3, + 12,6,0,416,426,3,14,7,0,417,426,3,20,10,0,418,426,3,24,12,0,419, + 426,3,26,13,0,420,426,3,28,14,0,421,426,3,30,15,0,422,426,3,32,16, + 0,423,426,3,34,17,0,424,426,3,36,18,0,425,413,1,0,0,0,425,414,1, + 0,0,0,425,415,1,0,0,0,425,416,1,0,0,0,425,417,1,0,0,0,425,418,1, + 0,0,0,425,419,1,0,0,0,425,420,1,0,0,0,425,421,1,0,0,0,425,422,1, + 0,0,0,425,423,1,0,0,0,425,424,1,0,0,0,426,5,1,0,0,0,427,428,5,522, + 0,0,428,7,1,0,0,0,429,444,3,40,20,0,430,444,3,104,52,0,431,444,3, + 106,53,0,432,444,3,108,54,0,433,444,3,102,51,0,434,444,3,114,57, + 0,435,444,3,128,64,0,436,444,3,130,65,0,437,444,3,132,66,0,438,444, + 3,134,67,0,439,444,3,136,68,0,440,444,3,138,69,0,441,444,3,140,70, + 0,442,444,3,142,71,0,443,429,1,0,0,0,443,430,1,0,0,0,443,431,1,0, + 0,0,443,432,1,0,0,0,443,433,1,0,0,0,443,434,1,0,0,0,443,435,1,0, + 0,0,443,436,1,0,0,0,443,437,1,0,0,0,443,438,1,0,0,0,443,439,1,0, + 0,0,443,440,1,0,0,0,443,441,1,0,0,0,443,442,1,0,0,0,444,9,1,0,0, + 0,445,448,3,160,80,0,446,448,3,144,72,0,447,445,1,0,0,0,447,446, + 1,0,0,0,448,11,1,0,0,0,449,450,7,0,0,0,450,451,3,340,170,0,451,13, + 1,0,0,0,452,456,5,135,0,0,453,457,3,16,8,0,454,455,5,480,0,0,455, + 457,5,146,0,0,456,453,1,0,0,0,456,454,1,0,0,0,456,457,1,0,0,0,457, + 461,1,0,0,0,458,462,3,10,5,0,459,462,3,146,73,0,460,462,3,158,79, + 0,461,458,1,0,0,0,461,459,1,0,0,0,461,460,1,0,0,0,462,15,1,0,0,0, + 463,468,3,18,9,0,464,465,5,521,0,0,465,467,3,18,9,0,466,464,1,0, + 0,0,467,470,1,0,0,0,468,466,1,0,0,0,468,469,1,0,0,0,469,17,1,0,0, + 0,470,468,1,0,0,0,471,472,7,1,0,0,472,19,1,0,0,0,473,474,5,411,0, + 0,474,475,5,442,0,0,475,480,3,330,165,0,476,477,5,411,0,0,477,480, + 3,334,167,0,478,480,3,22,11,0,479,473,1,0,0,0,479,476,1,0,0,0,479, + 478,1,0,0,0,480,21,1,0,0,0,481,482,5,411,0,0,482,483,5,228,0,0,483, + 488,3,346,173,0,484,485,5,521,0,0,485,487,3,346,173,0,486,484,1, + 0,0,0,487,490,1,0,0,0,488,486,1,0,0,0,488,489,1,0,0,0,489,23,1,0, + 0,0,490,488,1,0,0,0,491,492,5,342,0,0,492,534,7,2,0,0,493,494,5, + 342,0,0,494,495,5,76,0,0,495,534,7,3,0,0,496,497,5,342,0,0,497,500, + 5,375,0,0,498,499,7,4,0,0,499,501,3,334,167,0,500,498,1,0,0,0,500, + 501,1,0,0,0,501,503,1,0,0,0,502,504,3,268,134,0,503,502,1,0,0,0, + 503,504,1,0,0,0,504,534,1,0,0,0,505,506,5,342,0,0,506,507,5,58,0, + 0,507,510,7,4,0,0,508,511,3,342,171,0,509,511,3,340,170,0,510,508, + 1,0,0,0,510,509,1,0,0,0,511,513,1,0,0,0,512,514,3,268,134,0,513, + 512,1,0,0,0,513,514,1,0,0,0,514,534,1,0,0,0,515,516,5,342,0,0,516, + 521,5,72,0,0,517,518,5,374,0,0,518,522,3,340,170,0,519,520,5,502, + 0,0,520,522,3,342,171,0,521,517,1,0,0,0,521,519,1,0,0,0,522,534, + 1,0,0,0,523,525,5,342,0,0,524,526,5,412,0,0,525,524,1,0,0,0,525, + 526,1,0,0,0,526,527,1,0,0,0,527,534,5,154,0,0,528,530,5,342,0,0, + 529,531,5,152,0,0,530,529,1,0,0,0,530,531,1,0,0,0,531,532,1,0,0, + 0,532,534,5,228,0,0,533,491,1,0,0,0,533,493,1,0,0,0,533,496,1,0, + 0,0,533,505,1,0,0,0,533,515,1,0,0,0,533,523,1,0,0,0,533,528,1,0, + 0,0,534,25,1,0,0,0,535,536,5,469,0,0,536,537,5,227,0,0,537,540,3, + 346,173,0,538,539,5,434,0,0,539,541,3,354,177,0,540,538,1,0,0,0, + 540,541,1,0,0,0,541,27,1,0,0,0,542,543,5,501,0,0,543,544,5,227,0, + 0,544,545,3,346,173,0,545,29,1,0,0,0,546,548,5,341,0,0,547,549,3, + 356,178,0,548,547,1,0,0,0,548,549,1,0,0,0,549,31,1,0,0,0,550,552, + 5,313,0,0,551,553,3,358,179,0,552,551,1,0,0,0,552,553,1,0,0,0,553, + 33,1,0,0,0,554,555,7,5,0,0,555,556,5,464,0,0,556,557,3,112,56,0, + 557,35,1,0,0,0,558,559,5,438,0,0,559,560,5,464,0,0,560,561,5,434, + 0,0,561,564,3,38,19,0,562,563,5,17,0,0,563,565,3,346,173,0,564,562, + 1,0,0,0,564,565,1,0,0,0,565,609,1,0,0,0,566,567,5,438,0,0,567,568, + 5,457,0,0,568,569,5,434,0,0,569,572,3,38,19,0,570,571,5,17,0,0,571, + 573,3,346,173,0,572,570,1,0,0,0,572,573,1,0,0,0,573,576,1,0,0,0, + 574,575,5,312,0,0,575,577,3,346,173,0,576,574,1,0,0,0,576,577,1, + 0,0,0,577,609,1,0,0,0,578,579,5,438,0,0,579,580,7,6,0,0,580,581, + 5,434,0,0,581,582,3,38,19,0,582,583,5,312,0,0,583,584,3,346,173, + 0,584,609,1,0,0,0,585,586,5,438,0,0,586,587,5,487,0,0,587,609,3, + 38,19,0,588,589,5,438,0,0,589,590,5,454,0,0,590,591,5,457,0,0,591, + 592,5,434,0,0,592,593,3,38,19,0,593,594,5,312,0,0,594,595,3,346, + 173,0,595,596,5,467,0,0,596,597,3,346,173,0,597,609,1,0,0,0,598, + 599,5,438,0,0,599,600,5,444,0,0,600,601,5,457,0,0,601,602,5,434, + 0,0,602,603,3,38,19,0,603,604,5,146,0,0,604,605,3,346,173,0,605, + 606,5,17,0,0,606,607,3,346,173,0,607,609,1,0,0,0,608,558,1,0,0,0, + 608,566,1,0,0,0,608,578,1,0,0,0,608,585,1,0,0,0,608,588,1,0,0,0, + 608,598,1,0,0,0,609,37,1,0,0,0,610,612,5,535,0,0,611,610,1,0,0,0, + 611,612,1,0,0,0,612,613,1,0,0,0,613,615,3,346,173,0,614,611,1,0, + 0,0,615,616,1,0,0,0,616,614,1,0,0,0,616,617,1,0,0,0,617,39,1,0,0, + 0,618,621,3,42,21,0,619,621,3,44,22,0,620,618,1,0,0,0,620,619,1, + 0,0,0,621,41,1,0,0,0,622,624,5,72,0,0,623,625,5,498,0,0,624,623, + 1,0,0,0,624,625,1,0,0,0,625,626,1,0,0,0,626,628,5,374,0,0,627,629, + 3,350,175,0,628,627,1,0,0,0,628,629,1,0,0,0,629,630,1,0,0,0,630, + 631,3,338,169,0,631,632,5,517,0,0,632,637,3,46,23,0,633,634,5,521, + 0,0,634,636,3,46,23,0,635,633,1,0,0,0,636,639,1,0,0,0,637,635,1, + 0,0,0,637,638,1,0,0,0,638,642,1,0,0,0,639,637,1,0,0,0,640,641,5, + 521,0,0,641,643,3,82,41,0,642,640,1,0,0,0,642,643,1,0,0,0,643,646, + 1,0,0,0,644,645,5,521,0,0,645,647,3,84,42,0,646,644,1,0,0,0,646, + 647,1,0,0,0,647,650,1,0,0,0,648,649,5,521,0,0,649,651,3,88,44,0, + 650,648,1,0,0,0,650,651,1,0,0,0,651,652,1,0,0,0,652,655,5,518,0, + 0,653,654,5,59,0,0,654,656,5,538,0,0,655,653,1,0,0,0,655,656,1,0, + 0,0,656,658,1,0,0,0,657,659,3,90,45,0,658,657,1,0,0,0,658,659,1, + 0,0,0,659,660,1,0,0,0,660,662,3,348,174,0,661,663,3,98,49,0,662, + 661,1,0,0,0,662,663,1,0,0,0,663,43,1,0,0,0,664,665,5,72,0,0,665, + 667,5,374,0,0,666,668,3,350,175,0,667,666,1,0,0,0,667,668,1,0,0, + 0,668,669,1,0,0,0,669,670,3,338,169,0,670,673,3,348,174,0,671,672, + 5,17,0,0,672,674,3,160,80,0,673,671,1,0,0,0,673,674,1,0,0,0,674, + 45,1,0,0,0,675,679,3,48,24,0,676,679,3,74,37,0,677,679,3,78,39,0, + 678,675,1,0,0,0,678,676,1,0,0,0,678,677,1,0,0,0,679,47,1,0,0,0,680, + 681,3,50,25,0,681,683,3,58,29,0,682,684,3,72,36,0,683,682,1,0,0, + 0,683,684,1,0,0,0,684,687,1,0,0,0,685,686,5,59,0,0,686,688,5,538, + 0,0,687,685,1,0,0,0,687,688,1,0,0,0,688,49,1,0,0,0,689,692,3,346, + 173,0,690,692,3,260,130,0,691,689,1,0,0,0,691,690,1,0,0,0,692,51, + 1,0,0,0,693,696,3,346,173,0,694,696,4,26,0,0,695,693,1,0,0,0,695, + 694,1,0,0,0,696,53,1,0,0,0,697,698,3,346,173,0,698,55,1,0,0,0,699, + 700,5,517,0,0,700,705,3,52,26,0,701,702,5,521,0,0,702,704,3,52,26, + 0,703,701,1,0,0,0,704,707,1,0,0,0,705,703,1,0,0,0,705,706,1,0,0, + 0,706,708,1,0,0,0,707,705,1,0,0,0,708,709,5,518,0,0,709,57,1,0,0, + 0,710,748,7,7,0,0,711,713,7,8,0,0,712,714,3,60,30,0,713,712,1,0, + 0,0,713,714,1,0,0,0,714,748,1,0,0,0,715,717,5,380,0,0,716,718,3, + 60,30,0,717,716,1,0,0,0,717,718,1,0,0,0,718,725,1,0,0,0,719,721, + 7,9,0,0,720,722,5,207,0,0,721,720,1,0,0,0,721,722,1,0,0,0,722,723, + 1,0,0,0,723,724,5,379,0,0,724,726,5,505,0,0,725,719,1,0,0,0,725, + 726,1,0,0,0,726,748,1,0,0,0,727,729,7,10,0,0,728,730,3,62,31,0,729, + 728,1,0,0,0,729,730,1,0,0,0,730,748,1,0,0,0,731,733,7,11,0,0,732, + 734,3,66,33,0,733,732,1,0,0,0,733,734,1,0,0,0,734,748,1,0,0,0,735, + 737,5,470,0,0,736,738,3,68,34,0,737,736,1,0,0,0,737,738,1,0,0,0, + 738,748,1,0,0,0,739,741,5,322,0,0,740,742,3,70,35,0,741,740,1,0, + 0,0,741,742,1,0,0,0,742,748,1,0,0,0,743,745,5,295,0,0,744,746,3, + 64,32,0,745,744,1,0,0,0,745,746,1,0,0,0,746,748,1,0,0,0,747,710, + 1,0,0,0,747,711,1,0,0,0,747,715,1,0,0,0,747,727,1,0,0,0,747,731, + 1,0,0,0,747,735,1,0,0,0,747,739,1,0,0,0,747,743,1,0,0,0,748,59,1, + 0,0,0,749,750,5,517,0,0,750,751,3,378,189,0,751,752,5,518,0,0,752, + 61,1,0,0,0,753,754,5,517,0,0,754,757,3,378,189,0,755,756,5,521,0, + 0,756,758,3,378,189,0,757,755,1,0,0,0,757,758,1,0,0,0,758,759,1, + 0,0,0,759,760,5,518,0,0,760,63,1,0,0,0,761,762,5,517,0,0,762,765, + 3,376,188,0,763,764,5,521,0,0,764,766,3,376,188,0,765,763,1,0,0, + 0,765,766,1,0,0,0,766,767,1,0,0,0,767,768,5,518,0,0,768,65,1,0,0, + 0,769,770,5,508,0,0,770,771,3,58,29,0,771,772,5,507,0,0,772,67,1, + 0,0,0,773,774,5,508,0,0,774,775,3,58,29,0,775,776,5,521,0,0,776, + 777,3,58,29,0,777,778,1,0,0,0,778,779,5,507,0,0,779,69,1,0,0,0,780, + 781,5,508,0,0,781,782,3,52,26,0,782,789,3,58,29,0,783,784,5,521, + 0,0,784,785,3,52,26,0,785,786,3,58,29,0,786,788,1,0,0,0,787,783, + 1,0,0,0,788,791,1,0,0,0,789,787,1,0,0,0,789,790,1,0,0,0,790,792, + 1,0,0,0,791,789,1,0,0,0,792,793,5,507,0,0,793,809,1,0,0,0,794,795, + 5,517,0,0,795,796,3,52,26,0,796,803,3,58,29,0,797,798,5,521,0,0, + 798,799,3,52,26,0,799,800,3,58,29,0,800,802,1,0,0,0,801,797,1,0, + 0,0,802,805,1,0,0,0,803,801,1,0,0,0,803,804,1,0,0,0,804,806,1,0, + 0,0,805,803,1,0,0,0,806,807,5,518,0,0,807,809,1,0,0,0,808,780,1, + 0,0,0,808,794,1,0,0,0,809,71,1,0,0,0,810,811,5,64,0,0,811,813,3, + 86,43,0,812,810,1,0,0,0,812,813,1,0,0,0,813,814,1,0,0,0,814,815, + 5,289,0,0,815,818,5,467,0,0,816,817,5,242,0,0,817,819,5,125,0,0, + 818,816,1,0,0,0,818,819,1,0,0,0,819,825,1,0,0,0,820,822,5,242,0, + 0,821,820,1,0,0,0,821,822,1,0,0,0,822,823,1,0,0,0,823,825,5,245, + 0,0,824,812,1,0,0,0,824,821,1,0,0,0,825,73,1,0,0,0,826,827,3,50, + 25,0,827,828,3,58,29,0,828,831,5,219,0,0,829,830,5,151,0,0,830,832, + 3,76,38,0,831,829,1,0,0,0,831,832,1,0,0,0,832,834,1,0,0,0,833,835, + 5,424,0,0,834,833,1,0,0,0,834,835,1,0,0,0,835,75,1,0,0,0,836,837, + 5,538,0,0,837,77,1,0,0,0,838,839,3,50,25,0,839,840,5,17,0,0,840, + 843,3,80,40,0,841,842,5,59,0,0,842,844,5,538,0,0,843,841,1,0,0,0, + 843,844,1,0,0,0,844,79,1,0,0,0,845,846,3,260,130,0,846,81,1,0,0, + 0,847,848,5,425,0,0,848,849,5,146,0,0,849,850,3,52,26,0,850,851, + 5,17,0,0,851,852,3,260,130,0,852,83,1,0,0,0,853,854,5,64,0,0,854, + 856,3,86,43,0,855,853,1,0,0,0,855,856,1,0,0,0,856,857,1,0,0,0,857, + 858,5,289,0,0,858,859,5,467,0,0,859,860,3,56,28,0,860,861,5,242, + 0,0,861,862,5,125,0,0,862,85,1,0,0,0,863,864,3,322,161,0,864,87, + 1,0,0,0,865,866,5,278,0,0,866,867,5,146,0,0,867,868,5,372,0,0,868, + 89,1,0,0,0,869,870,5,270,0,0,870,871,5,34,0,0,871,872,3,92,46,0, + 872,91,1,0,0,0,873,874,5,517,0,0,874,879,3,94,47,0,875,876,5,521, + 0,0,876,878,3,94,47,0,877,875,1,0,0,0,878,881,1,0,0,0,879,877,1, + 0,0,0,879,880,1,0,0,0,880,882,1,0,0,0,881,879,1,0,0,0,882,883,5, + 518,0,0,883,93,1,0,0,0,884,897,3,52,26,0,885,886,5,517,0,0,886,891, + 3,96,48,0,887,888,5,521,0,0,888,890,3,96,48,0,889,887,1,0,0,0,890, + 893,1,0,0,0,891,889,1,0,0,0,891,892,1,0,0,0,892,894,1,0,0,0,893, + 891,1,0,0,0,894,895,5,518,0,0,895,897,1,0,0,0,896,884,1,0,0,0,896, + 885,1,0,0,0,897,95,1,0,0,0,898,901,3,298,149,0,899,901,3,372,186, + 0,900,898,1,0,0,0,900,899,1,0,0,0,901,97,1,0,0,0,902,903,5,203,0, + 0,903,912,3,340,170,0,904,908,5,517,0,0,905,907,3,100,50,0,906,905, + 1,0,0,0,907,910,1,0,0,0,908,906,1,0,0,0,908,909,1,0,0,0,909,911, + 1,0,0,0,910,908,1,0,0,0,911,913,5,518,0,0,912,904,1,0,0,0,912,913, + 1,0,0,0,913,99,1,0,0,0,914,915,7,12,0,0,915,919,7,13,0,0,916,917, + 7,14,0,0,917,919,7,15,0,0,918,914,1,0,0,0,918,916,1,0,0,0,919,101, + 1,0,0,0,920,921,5,72,0,0,921,922,5,442,0,0,922,923,3,332,166,0,923, + 924,3,348,174,0,924,103,1,0,0,0,925,926,5,72,0,0,926,928,5,448,0, + 0,927,929,3,350,175,0,928,927,1,0,0,0,928,929,1,0,0,0,929,930,1, + 0,0,0,930,933,3,336,168,0,931,932,5,59,0,0,932,934,5,538,0,0,933, + 931,1,0,0,0,933,934,1,0,0,0,934,935,1,0,0,0,935,936,3,348,174,0, + 936,105,1,0,0,0,937,939,5,72,0,0,938,940,5,498,0,0,939,938,1,0,0, + 0,939,940,1,0,0,0,940,941,1,0,0,0,941,943,5,502,0,0,942,944,3,350, + 175,0,943,942,1,0,0,0,943,944,1,0,0,0,944,945,1,0,0,0,945,947,3, + 344,172,0,946,948,3,56,28,0,947,946,1,0,0,0,947,948,1,0,0,0,948, + 951,1,0,0,0,949,950,5,59,0,0,950,952,5,538,0,0,951,949,1,0,0,0,951, + 952,1,0,0,0,952,953,1,0,0,0,953,954,5,17,0,0,954,955,3,160,80,0, + 955,107,1,0,0,0,956,960,5,72,0,0,957,961,5,498,0,0,958,959,5,498, + 0,0,959,961,5,371,0,0,960,957,1,0,0,0,960,958,1,0,0,0,960,961,1, + 0,0,0,961,962,1,0,0,0,962,964,5,153,0,0,963,965,3,350,175,0,964, + 963,1,0,0,0,964,965,1,0,0,0,965,966,1,0,0,0,966,967,3,276,138,0, + 967,968,5,17,0,0,968,971,3,322,161,0,969,970,5,196,0,0,970,972,7, + 16,0,0,971,969,1,0,0,0,971,972,1,0,0,0,972,974,1,0,0,0,973,975,3, + 110,55,0,974,973,1,0,0,0,974,975,1,0,0,0,975,109,1,0,0,0,976,977, + 5,413,0,0,977,978,5,464,0,0,978,984,3,112,56,0,979,980,5,521,0,0, + 980,981,5,464,0,0,981,983,3,112,56,0,982,979,1,0,0,0,983,986,1,0, + 0,0,984,982,1,0,0,0,984,985,1,0,0,0,985,111,1,0,0,0,986,984,1,0, + 0,0,987,988,5,538,0,0,988,113,1,0,0,0,989,990,5,8,0,0,990,992,5, + 374,0,0,991,993,3,352,176,0,992,991,1,0,0,0,992,993,1,0,0,0,993, + 994,1,0,0,0,994,1000,3,340,170,0,995,1001,3,116,58,0,996,1001,3, + 118,59,0,997,1001,3,120,60,0,998,1001,3,122,61,0,999,1001,3,124, + 62,0,1000,995,1,0,0,0,1000,996,1,0,0,0,1000,997,1,0,0,0,1000,998, + 1,0,0,0,1000,999,1,0,0,0,1001,115,1,0,0,0,1002,1004,5,312,0,0,1003, + 1005,3,346,173,0,1004,1003,1,0,0,0,1004,1005,1,0,0,0,1005,1006,1, + 0,0,0,1006,1007,5,389,0,0,1007,1008,3,346,173,0,1008,117,1,0,0,0, + 1009,1010,5,341,0,0,1010,1011,3,354,177,0,1011,119,1,0,0,0,1012, + 1013,5,438,0,0,1013,1014,5,64,0,0,1014,1015,3,86,43,0,1015,1016, + 5,289,0,0,1016,1017,5,467,0,0,1017,1019,3,56,28,0,1018,1020,3,126, + 63,0,1019,1018,1,0,0,0,1019,1020,1,0,0,0,1020,121,1,0,0,0,1021,1022, + 5,116,0,0,1022,1023,5,64,0,0,1023,1024,3,86,43,0,1024,123,1,0,0, + 0,1025,1026,5,438,0,0,1026,1027,5,404,0,0,1027,1028,3,56,28,0,1028, + 125,1,0,0,0,1029,1030,5,242,0,0,1030,1031,5,125,0,0,1031,127,1,0, + 0,0,1032,1033,5,8,0,0,1033,1034,5,502,0,0,1034,1038,3,342,171,0, + 1035,1039,3,116,58,0,1036,1037,5,17,0,0,1037,1039,3,160,80,0,1038, + 1035,1,0,0,0,1038,1036,1,0,0,0,1039,129,1,0,0,0,1040,1041,5,8,0, + 0,1041,1042,5,448,0,0,1042,1043,3,334,167,0,1043,1044,3,118,59,0, + 1044,131,1,0,0,0,1045,1049,5,8,0,0,1046,1050,5,498,0,0,1047,1048, + 5,498,0,0,1048,1050,5,371,0,0,1049,1046,1,0,0,0,1049,1047,1,0,0, + 0,1049,1050,1,0,0,0,1050,1051,1,0,0,0,1051,1053,5,153,0,0,1052,1054, + 3,352,176,0,1053,1052,1,0,0,0,1053,1054,1,0,0,0,1054,1055,1,0,0, + 0,1055,1056,3,278,139,0,1056,1057,5,17,0,0,1057,1060,3,322,161,0, + 1058,1059,5,196,0,0,1059,1061,7,16,0,0,1060,1058,1,0,0,0,1060,1061, + 1,0,0,0,1061,133,1,0,0,0,1062,1063,5,116,0,0,1063,1065,5,442,0,0, + 1064,1066,3,352,176,0,1065,1064,1,0,0,0,1065,1066,1,0,0,0,1066,1067, + 1,0,0,0,1067,1068,3,330,165,0,1068,135,1,0,0,0,1069,1071,5,116,0, + 0,1070,1072,5,498,0,0,1071,1070,1,0,0,0,1071,1072,1,0,0,0,1072,1073, + 1,0,0,0,1073,1075,5,374,0,0,1074,1076,3,352,176,0,1075,1074,1,0, + 0,0,1075,1076,1,0,0,0,1076,1077,1,0,0,0,1077,1078,3,340,170,0,1078, + 137,1,0,0,0,1079,1080,5,116,0,0,1080,1082,5,448,0,0,1081,1083,3, + 352,176,0,1082,1081,1,0,0,0,1082,1083,1,0,0,0,1083,1084,1,0,0,0, + 1084,1086,3,334,167,0,1085,1087,7,17,0,0,1086,1085,1,0,0,0,1086, + 1087,1,0,0,0,1087,139,1,0,0,0,1088,1090,5,116,0,0,1089,1091,5,498, + 0,0,1090,1089,1,0,0,0,1090,1091,1,0,0,0,1091,1092,1,0,0,0,1092,1094, + 5,502,0,0,1093,1095,3,352,176,0,1094,1093,1,0,0,0,1094,1095,1,0, + 0,0,1095,1096,1,0,0,0,1096,1097,3,342,171,0,1097,141,1,0,0,0,1098, + 1102,5,116,0,0,1099,1103,5,498,0,0,1100,1101,5,498,0,0,1101,1103, + 5,371,0,0,1102,1099,1,0,0,0,1102,1100,1,0,0,0,1102,1103,1,0,0,0, + 1103,1104,1,0,0,0,1104,1106,5,153,0,0,1105,1107,3,352,176,0,1106, + 1105,1,0,0,0,1106,1107,1,0,0,0,1107,1108,1,0,0,0,1108,1109,3,278, + 139,0,1109,143,1,0,0,0,1110,1112,5,132,0,0,1111,1110,1,0,0,0,1111, + 1112,1,0,0,0,1112,1113,1,0,0,0,1113,1118,3,146,73,0,1114,1118,3, + 156,78,0,1115,1116,5,132,0,0,1116,1118,3,158,79,0,1117,1111,1,0, + 0,0,1117,1114,1,0,0,0,1117,1115,1,0,0,0,1118,145,1,0,0,0,1119,1120, + 5,177,0,0,1120,1121,7,18,0,0,1121,1130,3,340,170,0,1122,1124,3,148, + 74,0,1123,1122,1,0,0,0,1123,1124,1,0,0,0,1124,1126,1,0,0,0,1125, + 1127,3,56,28,0,1126,1125,1,0,0,0,1126,1127,1,0,0,0,1127,1128,1,0, + 0,0,1128,1131,3,160,80,0,1129,1131,3,150,75,0,1130,1123,1,0,0,0, + 1130,1129,1,0,0,0,1131,147,1,0,0,0,1132,1133,5,269,0,0,1133,1134, + 3,354,177,0,1134,149,1,0,0,0,1135,1136,5,415,0,0,1136,1141,3,152, + 76,0,1137,1138,5,521,0,0,1138,1140,3,152,76,0,1139,1137,1,0,0,0, + 1140,1143,1,0,0,0,1141,1139,1,0,0,0,1141,1142,1,0,0,0,1142,151,1, + 0,0,0,1143,1141,1,0,0,0,1144,1145,5,517,0,0,1145,1150,3,154,77,0, + 1146,1147,5,521,0,0,1147,1149,3,154,77,0,1148,1146,1,0,0,0,1149, + 1152,1,0,0,0,1150,1148,1,0,0,0,1150,1151,1,0,0,0,1151,1153,1,0,0, + 0,1152,1150,1,0,0,0,1153,1154,5,518,0,0,1154,153,1,0,0,0,1155,1158, + 3,372,186,0,1156,1158,3,272,136,0,1157,1155,1,0,0,0,1157,1156,1, + 0,0,0,1158,155,1,0,0,0,1159,1160,5,24,0,0,1160,1161,5,355,0,0,1161, + 1162,5,341,0,0,1162,1166,5,522,0,0,1163,1164,3,146,73,0,1164,1165, + 5,522,0,0,1165,1167,1,0,0,0,1166,1163,1,0,0,0,1167,1168,1,0,0,0, + 1168,1166,1,0,0,0,1168,1169,1,0,0,0,1169,1170,1,0,0,0,1170,1171, + 5,122,0,0,1171,157,1,0,0,0,1172,1173,5,355,0,0,1173,1174,5,341,0, + 0,1174,1178,5,24,0,0,1175,1176,3,146,73,0,1176,1177,5,522,0,0,1177, + 1179,1,0,0,0,1178,1175,1,0,0,0,1179,1180,1,0,0,0,1180,1178,1,0,0, + 0,1180,1181,1,0,0,0,1181,1182,1,0,0,0,1182,1183,5,122,0,0,1183,159, + 1,0,0,0,1184,1185,6,80,-1,0,1185,1208,3,162,81,0,1186,1187,3,164, + 82,0,1187,1188,3,160,80,5,1188,1208,1,0,0,0,1189,1190,5,517,0,0, + 1190,1191,3,160,80,0,1191,1192,5,518,0,0,1192,1208,1,0,0,0,1193, + 1195,3,172,86,0,1194,1196,3,232,116,0,1195,1194,1,0,0,0,1195,1196, + 1,0,0,0,1196,1198,1,0,0,0,1197,1199,3,236,118,0,1198,1197,1,0,0, + 0,1198,1199,1,0,0,0,1199,1208,1,0,0,0,1200,1202,3,170,85,0,1201, + 1203,3,232,116,0,1202,1201,1,0,0,0,1202,1203,1,0,0,0,1203,1205,1, + 0,0,0,1204,1206,3,236,118,0,1205,1204,1,0,0,0,1205,1206,1,0,0,0, + 1206,1208,1,0,0,0,1207,1184,1,0,0,0,1207,1186,1,0,0,0,1207,1189, + 1,0,0,0,1207,1193,1,0,0,0,1207,1200,1,0,0,0,1208,1223,1,0,0,0,1209, + 1210,10,3,0,0,1210,1212,7,19,0,0,1211,1213,5,5,0,0,1212,1211,1,0, + 0,0,1212,1213,1,0,0,0,1213,1214,1,0,0,0,1214,1216,3,160,80,0,1215, + 1217,3,232,116,0,1216,1215,1,0,0,0,1216,1217,1,0,0,0,1217,1219,1, + 0,0,0,1218,1220,3,236,118,0,1219,1218,1,0,0,0,1219,1220,1,0,0,0, + 1220,1222,1,0,0,0,1221,1209,1,0,0,0,1222,1225,1,0,0,0,1223,1221, + 1,0,0,0,1223,1224,1,0,0,0,1224,161,1,0,0,0,1225,1223,1,0,0,0,1226, + 1227,5,415,0,0,1227,1232,3,260,130,0,1228,1229,5,521,0,0,1229,1231, + 3,260,130,0,1230,1228,1,0,0,0,1231,1234,1,0,0,0,1232,1230,1,0,0, + 0,1232,1233,1,0,0,0,1233,163,1,0,0,0,1234,1232,1,0,0,0,1235,1236, + 5,434,0,0,1236,1241,3,166,83,0,1237,1238,5,521,0,0,1238,1240,3,166, + 83,0,1239,1237,1,0,0,0,1240,1243,1,0,0,0,1241,1239,1,0,0,0,1241, + 1242,1,0,0,0,1242,165,1,0,0,0,1243,1241,1,0,0,0,1244,1256,3,168, + 84,0,1245,1246,5,517,0,0,1246,1251,3,52,26,0,1247,1248,5,521,0,0, + 1248,1250,3,52,26,0,1249,1247,1,0,0,0,1250,1253,1,0,0,0,1251,1249, + 1,0,0,0,1251,1252,1,0,0,0,1252,1254,1,0,0,0,1253,1251,1,0,0,0,1254, + 1255,5,518,0,0,1255,1257,1,0,0,0,1256,1245,1,0,0,0,1256,1257,1,0, + 0,0,1257,1258,1,0,0,0,1258,1259,5,17,0,0,1259,1260,5,517,0,0,1260, + 1261,3,160,80,0,1261,1262,5,518,0,0,1262,167,1,0,0,0,1263,1264,3, + 322,161,0,1264,169,1,0,0,0,1265,1267,3,172,86,0,1266,1268,3,178, + 89,0,1267,1266,1,0,0,0,1267,1268,1,0,0,0,1268,1270,1,0,0,0,1269, + 1271,3,206,103,0,1270,1269,1,0,0,0,1270,1271,1,0,0,0,1271,1273,1, + 0,0,0,1272,1274,3,208,104,0,1273,1272,1,0,0,0,1273,1274,1,0,0,0, + 1274,1276,1,0,0,0,1275,1277,3,222,111,0,1276,1275,1,0,0,0,1276,1277, + 1,0,0,0,1277,1279,1,0,0,0,1278,1280,3,224,112,0,1279,1278,1,0,0, + 0,1279,1280,1,0,0,0,1280,1286,1,0,0,0,1281,1282,3,172,86,0,1282, + 1283,3,178,89,0,1283,1284,3,230,115,0,1284,1286,1,0,0,0,1285,1265, + 1,0,0,0,1285,1281,1,0,0,0,1286,171,1,0,0,0,1287,1289,5,337,0,0,1288, + 1290,3,382,191,0,1289,1288,1,0,0,0,1289,1290,1,0,0,0,1290,1300,1, + 0,0,0,1291,1301,5,528,0,0,1292,1297,3,174,87,0,1293,1294,5,521,0, + 0,1294,1296,3,174,87,0,1295,1293,1,0,0,0,1296,1299,1,0,0,0,1297, + 1295,1,0,0,0,1297,1298,1,0,0,0,1298,1301,1,0,0,0,1299,1297,1,0,0, + 0,1300,1291,1,0,0,0,1300,1292,1,0,0,0,1301,173,1,0,0,0,1302,1318, + 3,176,88,0,1303,1308,3,260,130,0,1304,1306,5,17,0,0,1305,1304,1, + 0,0,0,1305,1306,1,0,0,0,1306,1307,1,0,0,0,1307,1309,3,52,26,0,1308, + 1305,1,0,0,0,1308,1309,1,0,0,0,1309,1318,1,0,0,0,1310,1315,3,52, + 26,0,1311,1313,5,17,0,0,1312,1311,1,0,0,0,1312,1313,1,0,0,0,1313, + 1314,1,0,0,0,1314,1316,3,260,130,0,1315,1312,1,0,0,0,1315,1316,1, + 0,0,0,1316,1318,1,0,0,0,1317,1302,1,0,0,0,1317,1303,1,0,0,0,1317, + 1310,1,0,0,0,1318,175,1,0,0,0,1319,1320,3,274,137,0,1320,1321,5, + 263,0,0,1321,1322,3,228,114,0,1322,1323,5,17,0,0,1323,1324,3,322, + 161,0,1324,1332,1,0,0,0,1325,1326,3,274,137,0,1326,1327,5,263,0, + 0,1327,1328,3,314,157,0,1328,1329,5,17,0,0,1329,1330,3,322,161,0, + 1330,1332,1,0,0,0,1331,1319,1,0,0,0,1331,1325,1,0,0,0,1332,177,1, + 0,0,0,1333,1334,5,151,0,0,1334,1335,3,180,90,0,1335,179,1,0,0,0, + 1336,1337,6,90,-1,0,1337,1342,3,182,91,0,1338,1339,5,521,0,0,1339, + 1341,3,182,91,0,1340,1338,1,0,0,0,1341,1344,1,0,0,0,1342,1340,1, + 0,0,0,1342,1343,1,0,0,0,1343,1348,1,0,0,0,1344,1342,1,0,0,0,1345, + 1348,3,190,95,0,1346,1348,3,192,96,0,1347,1336,1,0,0,0,1347,1345, + 1,0,0,0,1347,1346,1,0,0,0,1348,1370,1,0,0,0,1349,1350,10,3,0,0,1350, + 1351,5,73,0,0,1351,1352,5,185,0,0,1352,1369,3,180,90,4,1353,1355, + 10,4,0,0,1354,1356,5,234,0,0,1355,1354,1,0,0,0,1355,1356,1,0,0,0, + 1356,1358,1,0,0,0,1357,1359,7,20,0,0,1358,1357,1,0,0,0,1358,1359, + 1,0,0,0,1359,1361,1,0,0,0,1360,1362,5,262,0,0,1361,1360,1,0,0,0, + 1361,1362,1,0,0,0,1362,1363,1,0,0,0,1363,1364,5,185,0,0,1364,1366, + 3,180,90,0,1365,1367,3,204,102,0,1366,1365,1,0,0,0,1366,1367,1,0, + 0,0,1367,1369,1,0,0,0,1368,1349,1,0,0,0,1368,1353,1,0,0,0,1369,1372, + 1,0,0,0,1370,1368,1,0,0,0,1370,1371,1,0,0,0,1371,181,1,0,0,0,1372, + 1370,1,0,0,0,1373,1375,3,184,92,0,1374,1376,3,312,156,0,1375,1374, + 1,0,0,0,1375,1376,1,0,0,0,1376,183,1,0,0,0,1377,1379,5,374,0,0,1378, + 1377,1,0,0,0,1378,1379,1,0,0,0,1379,1380,1,0,0,0,1380,1382,3,340, + 170,0,1381,1383,3,186,93,0,1382,1381,1,0,0,0,1382,1383,1,0,0,0,1383, + 1407,1,0,0,0,1384,1386,3,342,171,0,1385,1387,3,186,93,0,1386,1385, + 1,0,0,0,1386,1387,1,0,0,0,1387,1407,1,0,0,0,1388,1389,5,199,0,0, + 1389,1390,5,374,0,0,1390,1391,5,517,0,0,1391,1392,3,272,136,0,1392, + 1393,5,518,0,0,1393,1407,1,0,0,0,1394,1396,5,199,0,0,1395,1394,1, + 0,0,0,1395,1396,1,0,0,0,1396,1397,1,0,0,0,1397,1398,5,517,0,0,1398, + 1399,3,160,80,0,1399,1400,5,518,0,0,1400,1407,1,0,0,0,1401,1402, + 5,406,0,0,1402,1403,5,517,0,0,1403,1404,3,260,130,0,1404,1405,5, + 518,0,0,1405,1407,1,0,0,0,1406,1378,1,0,0,0,1406,1384,1,0,0,0,1406, + 1388,1,0,0,0,1406,1395,1,0,0,0,1406,1401,1,0,0,0,1407,185,1,0,0, + 0,1408,1409,5,146,0,0,1409,1410,5,372,0,0,1410,1411,5,17,0,0,1411, + 1412,5,250,0,0,1412,1413,3,188,94,0,1413,187,1,0,0,0,1414,1415,3, + 260,130,0,1415,189,1,0,0,0,1416,1417,5,517,0,0,1417,1418,3,150,75, + 0,1418,1419,5,518,0,0,1419,1420,3,312,156,0,1420,191,1,0,0,0,1421, + 1422,5,374,0,0,1422,1423,5,517,0,0,1423,1424,3,194,97,0,1424,1425, + 5,518,0,0,1425,193,1,0,0,0,1426,1427,3,196,98,0,1427,1428,5,517, + 0,0,1428,1433,3,198,99,0,1429,1430,5,521,0,0,1430,1432,3,198,99, + 0,1431,1429,1,0,0,0,1432,1435,1,0,0,0,1433,1431,1,0,0,0,1433,1434, + 1,0,0,0,1434,1436,1,0,0,0,1435,1433,1,0,0,0,1436,1437,5,518,0,0, + 1437,195,1,0,0,0,1438,1439,7,21,0,0,1439,197,1,0,0,0,1440,1441,5, + 374,0,0,1441,1456,3,220,110,0,1442,1456,3,202,101,0,1443,1456,3, + 300,150,0,1444,1445,5,447,0,0,1445,1446,5,537,0,0,1446,1447,5,374, + 0,0,1447,1456,3,220,110,0,1448,1449,5,499,0,0,1449,1450,5,537,0, + 0,1450,1456,3,202,101,0,1451,1452,3,200,100,0,1452,1453,5,537,0, + 0,1453,1454,3,300,150,0,1454,1456,1,0,0,0,1455,1440,1,0,0,0,1455, + 1442,1,0,0,0,1455,1443,1,0,0,0,1455,1444,1,0,0,0,1455,1448,1,0,0, + 0,1455,1451,1,0,0,0,1456,199,1,0,0,0,1457,1458,7,22,0,0,1458,201, + 1,0,0,0,1459,1460,5,452,0,0,1460,1461,5,517,0,0,1461,1462,3,52,26, + 0,1462,1463,5,518,0,0,1463,203,1,0,0,0,1464,1465,5,254,0,0,1465, + 1469,3,262,131,0,1466,1467,5,413,0,0,1467,1469,3,56,28,0,1468,1464, + 1,0,0,0,1468,1466,1,0,0,0,1469,205,1,0,0,0,1470,1471,5,431,0,0,1471, + 1472,3,262,131,0,1472,207,1,0,0,0,1473,1474,5,159,0,0,1474,1475, + 5,34,0,0,1475,1480,3,210,105,0,1476,1477,5,521,0,0,1477,1479,3,210, + 105,0,1478,1476,1,0,0,0,1479,1482,1,0,0,0,1480,1478,1,0,0,0,1480, + 1481,1,0,0,0,1481,209,1,0,0,0,1482,1480,1,0,0,0,1483,1524,3,52,26, + 0,1484,1524,3,216,108,0,1485,1486,5,517,0,0,1486,1524,5,518,0,0, + 1487,1488,5,517,0,0,1488,1493,3,260,130,0,1489,1490,5,521,0,0,1490, + 1492,3,260,130,0,1491,1489,1,0,0,0,1492,1495,1,0,0,0,1493,1491,1, + 0,0,0,1493,1494,1,0,0,0,1494,1496,1,0,0,0,1495,1493,1,0,0,0,1496, + 1497,5,518,0,0,1497,1524,1,0,0,0,1498,1499,3,214,107,0,1499,1500, + 5,517,0,0,1500,1505,3,260,130,0,1501,1502,5,521,0,0,1502,1504,3, + 260,130,0,1503,1501,1,0,0,0,1504,1507,1,0,0,0,1505,1503,1,0,0,0, + 1505,1506,1,0,0,0,1506,1508,1,0,0,0,1507,1505,1,0,0,0,1508,1509, + 5,518,0,0,1509,1524,1,0,0,0,1510,1511,3,212,106,0,1511,1512,5,517, + 0,0,1512,1517,3,210,105,0,1513,1514,5,521,0,0,1514,1516,3,210,105, + 0,1515,1513,1,0,0,0,1516,1519,1,0,0,0,1517,1515,1,0,0,0,1517,1518, + 1,0,0,0,1518,1520,1,0,0,0,1519,1517,1,0,0,0,1520,1521,5,518,0,0, + 1521,1524,1,0,0,0,1522,1524,3,260,130,0,1523,1483,1,0,0,0,1523,1484, + 1,0,0,0,1523,1485,1,0,0,0,1523,1487,1,0,0,0,1523,1498,1,0,0,0,1523, + 1510,1,0,0,0,1523,1522,1,0,0,0,1524,211,1,0,0,0,1525,1526,5,160, + 0,0,1526,1527,5,494,0,0,1527,213,1,0,0,0,1528,1529,7,23,0,0,1529, + 215,1,0,0,0,1530,1531,3,218,109,0,1531,1532,5,517,0,0,1532,1533, + 3,220,110,0,1533,1534,5,521,0,0,1534,1535,3,300,150,0,1535,1536, + 5,518,0,0,1536,217,1,0,0,0,1537,1538,7,24,0,0,1538,219,1,0,0,0,1539, + 1540,3,346,173,0,1540,221,1,0,0,0,1541,1542,5,163,0,0,1542,1543, + 3,262,131,0,1543,223,1,0,0,0,1544,1545,5,433,0,0,1545,1550,3,226, + 113,0,1546,1547,5,521,0,0,1547,1549,3,226,113,0,1548,1546,1,0,0, + 0,1549,1552,1,0,0,0,1550,1548,1,0,0,0,1550,1551,1,0,0,0,1551,225, + 1,0,0,0,1552,1550,1,0,0,0,1553,1554,3,314,157,0,1554,1555,5,17,0, + 0,1555,1556,3,228,114,0,1556,227,1,0,0,0,1557,1559,3,314,157,0,1558, + 1557,1,0,0,0,1558,1559,1,0,0,0,1559,1560,1,0,0,0,1560,1562,5,517, + 0,0,1561,1563,3,238,119,0,1562,1561,1,0,0,0,1562,1563,1,0,0,0,1563, + 1565,1,0,0,0,1564,1566,3,232,116,0,1565,1564,1,0,0,0,1565,1566,1, + 0,0,0,1566,1568,1,0,0,0,1567,1569,3,254,127,0,1568,1567,1,0,0,0, + 1568,1569,1,0,0,0,1569,1570,1,0,0,0,1570,1571,5,518,0,0,1571,229, + 1,0,0,0,1572,1573,5,214,0,0,1573,1575,5,517,0,0,1574,1576,3,238, + 119,0,1575,1574,1,0,0,0,1575,1576,1,0,0,0,1576,1578,1,0,0,0,1577, + 1579,3,232,116,0,1578,1577,1,0,0,0,1578,1579,1,0,0,0,1579,1581,1, + 0,0,0,1580,1582,3,242,121,0,1581,1580,1,0,0,0,1581,1582,1,0,0,0, + 1582,1584,1,0,0,0,1583,1585,3,248,124,0,1584,1583,1,0,0,0,1584,1585, + 1,0,0,0,1585,1587,1,0,0,0,1586,1588,3,250,125,0,1587,1586,1,0,0, + 0,1587,1588,1,0,0,0,1588,1590,1,0,0,0,1589,1591,3,244,122,0,1590, + 1589,1,0,0,0,1590,1591,1,0,0,0,1591,1592,1,0,0,0,1592,1593,3,252, + 126,0,1593,1598,5,518,0,0,1594,1596,5,17,0,0,1595,1594,1,0,0,0,1595, + 1596,1,0,0,0,1596,1597,1,0,0,0,1597,1599,3,322,161,0,1598,1595,1, + 0,0,0,1598,1599,1,0,0,0,1599,231,1,0,0,0,1600,1601,5,259,0,0,1601, + 1602,5,34,0,0,1602,1607,3,234,117,0,1603,1604,5,521,0,0,1604,1606, + 3,234,117,0,1605,1603,1,0,0,0,1606,1609,1,0,0,0,1607,1605,1,0,0, + 0,1607,1608,1,0,0,0,1608,233,1,0,0,0,1609,1607,1,0,0,0,1610,1612, + 3,52,26,0,1611,1613,7,25,0,0,1612,1611,1,0,0,0,1612,1613,1,0,0,0, + 1613,1616,1,0,0,0,1614,1615,5,477,0,0,1615,1617,7,26,0,0,1616,1614, + 1,0,0,0,1616,1617,1,0,0,0,1617,235,1,0,0,0,1618,1621,5,205,0,0,1619, + 1622,5,5,0,0,1620,1622,3,260,130,0,1621,1619,1,0,0,0,1621,1620,1, + 0,0,0,1622,237,1,0,0,0,1623,1624,5,269,0,0,1624,1627,5,34,0,0,1625, + 1628,3,52,26,0,1626,1628,3,274,137,0,1627,1625,1,0,0,0,1627,1626, + 1,0,0,0,1628,1636,1,0,0,0,1629,1632,5,521,0,0,1630,1633,3,52,26, + 0,1631,1633,3,274,137,0,1632,1630,1,0,0,0,1632,1631,1,0,0,0,1633, + 1635,1,0,0,0,1634,1629,1,0,0,0,1635,1638,1,0,0,0,1636,1634,1,0,0, + 0,1636,1637,1,0,0,0,1637,239,1,0,0,0,1638,1636,1,0,0,0,1639,1656, + 5,528,0,0,1640,1656,5,531,0,0,1641,1656,5,536,0,0,1642,1643,5,519, + 0,0,1643,1644,5,539,0,0,1644,1645,5,521,0,0,1645,1646,5,539,0,0, + 1646,1656,5,520,0,0,1647,1648,5,519,0,0,1648,1649,5,539,0,0,1649, + 1650,5,521,0,0,1650,1656,5,520,0,0,1651,1652,5,519,0,0,1652,1653, + 5,521,0,0,1653,1654,5,539,0,0,1654,1656,5,520,0,0,1655,1639,1,0, + 0,0,1655,1640,1,0,0,0,1655,1641,1,0,0,0,1655,1642,1,0,0,0,1655,1647, + 1,0,0,0,1655,1651,1,0,0,0,1656,241,1,0,0,0,1657,1658,5,216,0,0,1658, + 1663,3,174,87,0,1659,1660,5,521,0,0,1660,1662,3,174,87,0,1661,1659, + 1,0,0,0,1662,1665,1,0,0,0,1663,1661,1,0,0,0,1663,1664,1,0,0,0,1664, + 243,1,0,0,0,1665,1663,1,0,0,0,1666,1667,5,272,0,0,1667,1669,5,517, + 0,0,1668,1670,3,246,123,0,1669,1668,1,0,0,0,1670,1671,1,0,0,0,1671, + 1669,1,0,0,0,1671,1672,1,0,0,0,1672,1673,1,0,0,0,1673,1675,5,518, + 0,0,1674,1676,3,258,129,0,1675,1674,1,0,0,0,1675,1676,1,0,0,0,1676, + 245,1,0,0,0,1677,1679,3,324,162,0,1678,1680,3,240,120,0,1679,1678, + 1,0,0,0,1679,1680,1,0,0,0,1680,247,1,0,0,0,1681,1682,5,5,0,0,1682, + 1683,5,323,0,0,1683,1684,5,273,0,0,1684,1690,5,211,0,0,1685,1686, + 5,255,0,0,1686,1687,5,322,0,0,1687,1688,5,273,0,0,1688,1690,5,211, + 0,0,1689,1681,1,0,0,0,1689,1685,1,0,0,0,1690,249,1,0,0,0,1691,1692, + 5,439,0,0,1692,1693,5,211,0,0,1693,1694,5,344,0,0,1694,1695,5,479, + 0,0,1695,1696,5,468,0,0,1696,1716,5,322,0,0,1697,1698,5,439,0,0, + 1698,1699,5,211,0,0,1699,1700,5,344,0,0,1700,1701,5,389,0,0,1701, + 1702,5,238,0,0,1702,1716,5,322,0,0,1703,1704,5,439,0,0,1704,1705, + 5,211,0,0,1705,1706,5,344,0,0,1706,1707,5,389,0,0,1707,1708,5,468, + 0,0,1708,1716,3,324,162,0,1709,1710,5,439,0,0,1710,1711,5,211,0, + 0,1711,1712,5,344,0,0,1712,1713,5,389,0,0,1713,1714,5,458,0,0,1714, + 1716,3,324,162,0,1715,1691,1,0,0,0,1715,1697,1,0,0,0,1715,1703,1, + 0,0,0,1715,1709,1,0,0,0,1716,251,1,0,0,0,1717,1718,5,105,0,0,1718, + 1723,3,174,87,0,1719,1720,5,521,0,0,1720,1722,3,174,87,0,1721,1719, + 1,0,0,0,1722,1725,1,0,0,0,1723,1721,1,0,0,0,1723,1724,1,0,0,0,1724, + 253,1,0,0,0,1725,1723,1,0,0,0,1726,1727,5,293,0,0,1727,1728,5,27, + 0,0,1728,1729,3,300,150,0,1729,1730,3,256,128,0,1730,1736,1,0,0, + 0,1731,1732,5,323,0,0,1732,1733,5,27,0,0,1733,1734,5,539,0,0,1734, + 1736,3,256,128,0,1735,1726,1,0,0,0,1735,1731,1,0,0,0,1736,255,1, + 0,0,0,1737,1738,5,481,0,0,1738,1739,5,10,0,0,1739,1740,5,76,0,0, + 1740,1741,5,322,0,0,1741,257,1,0,0,0,1742,1743,5,435,0,0,1743,1744, + 3,300,150,0,1744,259,1,0,0,0,1745,1746,3,262,131,0,1746,261,1,0, + 0,0,1747,1748,6,131,-1,0,1748,1749,5,242,0,0,1749,1760,3,262,131, + 6,1750,1751,5,133,0,0,1751,1752,5,517,0,0,1752,1753,3,160,80,0,1753, + 1754,5,518,0,0,1754,1760,1,0,0,0,1755,1757,3,270,135,0,1756,1758, + 3,264,132,0,1757,1756,1,0,0,0,1757,1758,1,0,0,0,1758,1760,1,0,0, + 0,1759,1747,1,0,0,0,1759,1750,1,0,0,0,1759,1755,1,0,0,0,1760,1775, + 1,0,0,0,1761,1762,10,3,0,0,1762,1763,5,10,0,0,1763,1774,3,262,131, + 4,1764,1765,10,2,0,0,1765,1766,5,258,0,0,1766,1774,3,262,131,3,1767, + 1768,10,1,0,0,1768,1770,5,184,0,0,1769,1771,5,242,0,0,1770,1769, + 1,0,0,0,1770,1771,1,0,0,0,1771,1772,1,0,0,0,1772,1774,7,27,0,0,1773, + 1761,1,0,0,0,1773,1764,1,0,0,0,1773,1767,1,0,0,0,1774,1777,1,0,0, + 0,1775,1773,1,0,0,0,1775,1776,1,0,0,0,1776,263,1,0,0,0,1777,1775, + 1,0,0,0,1778,1780,5,242,0,0,1779,1778,1,0,0,0,1779,1780,1,0,0,0, + 1780,1781,1,0,0,0,1781,1783,5,27,0,0,1782,1784,7,28,0,0,1783,1782, + 1,0,0,0,1783,1784,1,0,0,0,1784,1785,1,0,0,0,1785,1786,3,270,135, + 0,1786,1787,5,10,0,0,1787,1788,3,270,135,0,1788,1853,1,0,0,0,1789, + 1791,5,242,0,0,1790,1789,1,0,0,0,1790,1791,1,0,0,0,1791,1792,1,0, + 0,0,1792,1793,5,170,0,0,1793,1794,5,517,0,0,1794,1799,3,260,130, + 0,1795,1796,5,521,0,0,1796,1798,3,260,130,0,1797,1795,1,0,0,0,1798, + 1801,1,0,0,0,1799,1797,1,0,0,0,1799,1800,1,0,0,0,1800,1802,1,0,0, + 0,1801,1799,1,0,0,0,1802,1803,5,518,0,0,1803,1853,1,0,0,0,1804,1806, + 5,242,0,0,1805,1804,1,0,0,0,1805,1806,1,0,0,0,1806,1807,1,0,0,0, + 1807,1808,5,170,0,0,1808,1809,5,517,0,0,1809,1810,3,160,80,0,1810, + 1811,5,518,0,0,1811,1853,1,0,0,0,1812,1813,5,133,0,0,1813,1814,5, + 517,0,0,1814,1815,3,160,80,0,1815,1816,5,518,0,0,1816,1853,1,0,0, + 0,1817,1819,5,242,0,0,1818,1817,1,0,0,0,1818,1819,1,0,0,0,1819,1820, + 1,0,0,0,1820,1821,5,319,0,0,1821,1853,3,270,135,0,1822,1853,3,268, + 134,0,1823,1825,5,184,0,0,1824,1826,5,242,0,0,1825,1824,1,0,0,0, + 1825,1826,1,0,0,0,1826,1827,1,0,0,0,1827,1853,7,27,0,0,1828,1830, + 5,184,0,0,1829,1831,5,242,0,0,1830,1829,1,0,0,0,1830,1831,1,0,0, + 0,1831,1832,1,0,0,0,1832,1833,5,113,0,0,1833,1834,5,151,0,0,1834, + 1853,3,270,135,0,1835,1837,5,242,0,0,1836,1835,1,0,0,0,1836,1837, + 1,0,0,0,1837,1838,1,0,0,0,1838,1839,5,343,0,0,1839,1840,5,389,0, + 0,1840,1843,3,270,135,0,1841,1842,5,127,0,0,1842,1844,3,376,188, + 0,1843,1841,1,0,0,0,1843,1844,1,0,0,0,1844,1853,1,0,0,0,1845,1846, + 5,184,0,0,1846,1850,5,186,0,0,1847,1851,5,414,0,0,1848,1851,5,13, + 0,0,1849,1851,3,322,161,0,1850,1847,1,0,0,0,1850,1848,1,0,0,0,1850, + 1849,1,0,0,0,1850,1851,1,0,0,0,1851,1853,1,0,0,0,1852,1779,1,0,0, + 0,1852,1790,1,0,0,0,1852,1805,1,0,0,0,1852,1812,1,0,0,0,1852,1818, + 1,0,0,0,1852,1822,1,0,0,0,1852,1823,1,0,0,0,1852,1828,1,0,0,0,1852, + 1836,1,0,0,0,1852,1845,1,0,0,0,1853,265,1,0,0,0,1854,1863,5,245, + 0,0,1855,1856,5,121,0,0,1856,1863,5,13,0,0,1857,1858,5,121,0,0,1858, + 1863,3,346,173,0,1859,1863,5,398,0,0,1860,1863,5,140,0,0,1861,1863, + 5,405,0,0,1862,1854,1,0,0,0,1862,1855,1,0,0,0,1862,1857,1,0,0,0, + 1862,1859,1,0,0,0,1862,1860,1,0,0,0,1862,1861,1,0,0,0,1863,267,1, + 0,0,0,1864,1866,5,242,0,0,1865,1864,1,0,0,0,1865,1866,1,0,0,0,1866, + 1867,1,0,0,0,1867,1868,5,203,0,0,1868,1882,7,29,0,0,1869,1870,5, + 517,0,0,1870,1883,5,518,0,0,1871,1872,5,517,0,0,1872,1877,3,260, + 130,0,1873,1874,5,521,0,0,1874,1876,3,260,130,0,1875,1873,1,0,0, + 0,1876,1879,1,0,0,0,1877,1875,1,0,0,0,1877,1878,1,0,0,0,1878,1880, + 1,0,0,0,1879,1877,1,0,0,0,1880,1881,5,518,0,0,1881,1883,1,0,0,0, + 1882,1869,1,0,0,0,1882,1871,1,0,0,0,1883,1894,1,0,0,0,1884,1886, + 5,242,0,0,1885,1884,1,0,0,0,1885,1886,1,0,0,0,1886,1887,1,0,0,0, + 1887,1888,5,203,0,0,1888,1891,3,270,135,0,1889,1890,5,127,0,0,1890, + 1892,3,376,188,0,1891,1889,1,0,0,0,1891,1892,1,0,0,0,1892,1894,1, + 0,0,0,1893,1865,1,0,0,0,1893,1885,1,0,0,0,1894,269,1,0,0,0,1895, + 1896,6,135,-1,0,1896,1900,3,274,137,0,1897,1898,7,30,0,0,1898,1900, + 3,270,135,7,1899,1895,1,0,0,0,1899,1897,1,0,0,0,1900,1922,1,0,0, + 0,1901,1902,10,6,0,0,1902,1903,7,31,0,0,1903,1921,3,270,135,7,1904, + 1905,10,5,0,0,1905,1906,7,32,0,0,1906,1921,3,270,135,6,1907,1908, + 10,4,0,0,1908,1909,5,512,0,0,1909,1921,3,270,135,5,1910,1911,10, + 3,0,0,1911,1912,5,513,0,0,1912,1921,3,270,135,4,1913,1914,10,2,0, + 0,1914,1915,5,511,0,0,1915,1921,3,270,135,3,1916,1917,10,1,0,0,1917, + 1918,3,364,182,0,1918,1919,3,270,135,2,1919,1921,1,0,0,0,1920,1901, + 1,0,0,0,1920,1904,1,0,0,0,1920,1907,1,0,0,0,1920,1910,1,0,0,0,1920, + 1913,1,0,0,0,1920,1916,1,0,0,0,1921,1924,1,0,0,0,1922,1920,1,0,0, + 0,1922,1923,1,0,0,0,1923,271,1,0,0,0,1924,1922,1,0,0,0,1925,1945, + 3,390,195,0,1926,1945,3,280,140,0,1927,1928,3,282,141,0,1928,1940, + 5,517,0,0,1929,1931,3,382,191,0,1930,1929,1,0,0,0,1930,1931,1,0, + 0,0,1931,1932,1,0,0,0,1932,1937,3,284,142,0,1933,1934,5,521,0,0, + 1934,1936,3,284,142,0,1935,1933,1,0,0,0,1936,1939,1,0,0,0,1937,1935, + 1,0,0,0,1937,1938,1,0,0,0,1938,1941,1,0,0,0,1939,1937,1,0,0,0,1940, + 1930,1,0,0,0,1940,1941,1,0,0,0,1941,1942,1,0,0,0,1942,1943,5,518, + 0,0,1943,1945,1,0,0,0,1944,1925,1,0,0,0,1944,1926,1,0,0,0,1944,1927, + 1,0,0,0,1945,273,1,0,0,0,1946,1947,6,137,-1,0,1947,1949,5,40,0,0, + 1948,1950,3,328,164,0,1949,1948,1,0,0,0,1950,1951,1,0,0,0,1951,1949, + 1,0,0,0,1951,1952,1,0,0,0,1952,1955,1,0,0,0,1953,1954,5,120,0,0, + 1954,1956,3,260,130,0,1955,1953,1,0,0,0,1955,1956,1,0,0,0,1956,1957, + 1,0,0,0,1957,1958,5,122,0,0,1958,2022,1,0,0,0,1959,1960,5,40,0,0, + 1960,1962,3,260,130,0,1961,1963,3,328,164,0,1962,1961,1,0,0,0,1963, + 1964,1,0,0,0,1964,1962,1,0,0,0,1964,1965,1,0,0,0,1965,1968,1,0,0, + 0,1966,1967,5,120,0,0,1967,1969,3,260,130,0,1968,1966,1,0,0,0,1968, + 1969,1,0,0,0,1969,1970,1,0,0,0,1970,1971,5,122,0,0,1971,2022,1,0, + 0,0,1972,1973,5,41,0,0,1973,1974,5,517,0,0,1974,1975,3,260,130,0, + 1975,1976,5,17,0,0,1976,1977,3,58,29,0,1977,1978,5,518,0,0,1978, + 2022,1,0,0,0,1979,1980,5,458,0,0,1980,1981,5,517,0,0,1981,1984,3, + 260,130,0,1982,1983,5,462,0,0,1983,1985,5,477,0,0,1984,1982,1,0, + 0,0,1984,1985,1,0,0,0,1985,1986,1,0,0,0,1986,1987,5,518,0,0,1987, + 2022,1,0,0,0,1988,1989,5,468,0,0,1989,1990,5,517,0,0,1990,1993,3, + 260,130,0,1991,1992,5,462,0,0,1992,1994,5,477,0,0,1993,1991,1,0, + 0,0,1993,1994,1,0,0,0,1994,1995,1,0,0,0,1995,1996,5,518,0,0,1996, + 2022,1,0,0,0,1997,1998,5,282,0,0,1998,1999,5,517,0,0,1999,2000,3, + 270,135,0,2000,2001,5,170,0,0,2001,2002,3,270,135,0,2002,2003,5, + 518,0,0,2003,2022,1,0,0,0,2004,2022,3,372,186,0,2005,2022,5,528, + 0,0,2006,2007,3,346,173,0,2007,2008,5,514,0,0,2008,2009,5,528,0, + 0,2009,2022,1,0,0,0,2010,2011,5,517,0,0,2011,2012,3,160,80,0,2012, + 2013,5,518,0,0,2013,2022,1,0,0,0,2014,2022,3,272,136,0,2015,2022, + 3,54,27,0,2016,2022,3,294,147,0,2017,2018,5,517,0,0,2018,2019,3, + 260,130,0,2019,2020,5,518,0,0,2020,2022,1,0,0,0,2021,1946,1,0,0, + 0,2021,1959,1,0,0,0,2021,1972,1,0,0,0,2021,1979,1,0,0,0,2021,1988, + 1,0,0,0,2021,1997,1,0,0,0,2021,2004,1,0,0,0,2021,2005,1,0,0,0,2021, + 2006,1,0,0,0,2021,2010,1,0,0,0,2021,2014,1,0,0,0,2021,2015,1,0,0, + 0,2021,2016,1,0,0,0,2021,2017,1,0,0,0,2022,2030,1,0,0,0,2023,2024, + 10,4,0,0,2024,2025,5,515,0,0,2025,2026,3,270,135,0,2026,2027,5,516, + 0,0,2027,2029,1,0,0,0,2028,2023,1,0,0,0,2029,2032,1,0,0,0,2030,2028, + 1,0,0,0,2030,2031,1,0,0,0,2031,275,1,0,0,0,2032,2030,1,0,0,0,2033, + 2034,3,346,173,0,2034,277,1,0,0,0,2035,2040,3,394,197,0,2036,2040, + 3,390,195,0,2037,2040,3,392,196,0,2038,2040,3,346,173,0,2039,2035, + 1,0,0,0,2039,2036,1,0,0,0,2039,2037,1,0,0,0,2039,2038,1,0,0,0,2040, + 279,1,0,0,0,2041,2042,3,392,196,0,2042,2043,5,538,0,0,2043,2046, + 1,0,0,0,2044,2046,3,300,150,0,2045,2041,1,0,0,0,2045,2044,1,0,0, + 0,2046,281,1,0,0,0,2047,2050,3,394,197,0,2048,2050,3,346,173,0,2049, + 2047,1,0,0,0,2049,2048,1,0,0,0,2050,283,1,0,0,0,2051,2060,3,388, + 194,0,2052,2060,3,386,193,0,2053,2060,3,384,192,0,2054,2060,3,260, + 130,0,2055,2060,3,286,143,0,2056,2060,3,288,144,0,2057,2060,3,290, + 145,0,2058,2060,3,292,146,0,2059,2051,1,0,0,0,2059,2052,1,0,0,0, + 2059,2053,1,0,0,0,2059,2054,1,0,0,0,2059,2055,1,0,0,0,2059,2056, + 1,0,0,0,2059,2057,1,0,0,0,2059,2058,1,0,0,0,2060,285,1,0,0,0,2061, + 2065,3,54,27,0,2062,2063,3,346,173,0,2063,2064,3,58,29,0,2064,2066, + 1,0,0,0,2065,2062,1,0,0,0,2065,2066,1,0,0,0,2066,2075,1,0,0,0,2067, + 2072,3,346,173,0,2068,2072,5,245,0,0,2069,2070,5,104,0,0,2070,2072, + 3,270,135,0,2071,2067,1,0,0,0,2071,2068,1,0,0,0,2071,2069,1,0,0, + 0,2072,2073,1,0,0,0,2073,2074,5,254,0,0,2074,2076,5,121,0,0,2075, + 2071,1,0,0,0,2075,2076,1,0,0,0,2076,2085,1,0,0,0,2077,2082,3,346, + 173,0,2078,2082,5,245,0,0,2079,2080,5,104,0,0,2080,2082,3,270,135, + 0,2081,2077,1,0,0,0,2081,2078,1,0,0,0,2081,2079,1,0,0,0,2082,2083, + 1,0,0,0,2083,2084,5,254,0,0,2084,2086,3,346,173,0,2085,2081,1,0, + 0,0,2085,2086,1,0,0,0,2086,287,1,0,0,0,2087,2099,3,54,27,0,2088, + 2094,5,436,0,0,2089,2091,5,434,0,0,2090,2092,3,346,173,0,2091,2090, + 1,0,0,0,2091,2092,1,0,0,0,2092,2094,1,0,0,0,2093,2088,1,0,0,0,2093, + 2089,1,0,0,0,2094,2096,1,0,0,0,2095,2097,5,13,0,0,2096,2095,1,0, + 0,0,2096,2097,1,0,0,0,2097,2098,1,0,0,0,2098,2100,3,346,173,0,2099, + 2093,1,0,0,0,2099,2100,1,0,0,0,2100,2105,1,0,0,0,2101,2102,3,266, + 133,0,2102,2103,5,254,0,0,2103,2104,5,121,0,0,2104,2106,1,0,0,0, + 2105,2101,1,0,0,0,2105,2106,1,0,0,0,2106,2111,1,0,0,0,2107,2108, + 3,266,133,0,2108,2109,5,254,0,0,2109,2110,3,346,173,0,2110,2112, + 1,0,0,0,2111,2107,1,0,0,0,2111,2112,1,0,0,0,2112,289,1,0,0,0,2113, + 2115,5,467,0,0,2114,2113,1,0,0,0,2114,2115,1,0,0,0,2115,2116,1,0, + 0,0,2116,2118,3,54,27,0,2117,2119,5,414,0,0,2118,2117,1,0,0,0,2118, + 2119,1,0,0,0,2119,2130,1,0,0,0,2120,2131,3,270,135,0,2121,2122,5, + 186,0,0,2122,2126,5,517,0,0,2123,2125,3,270,135,0,2124,2123,1,0, + 0,0,2125,2128,1,0,0,0,2126,2124,1,0,0,0,2126,2127,1,0,0,0,2127,2129, + 1,0,0,0,2128,2126,1,0,0,0,2129,2131,5,518,0,0,2130,2120,1,0,0,0, + 2130,2121,1,0,0,0,2131,2133,1,0,0,0,2132,2114,1,0,0,0,2133,2136, + 1,0,0,0,2134,2132,1,0,0,0,2134,2135,1,0,0,0,2135,2143,1,0,0,0,2136, + 2134,1,0,0,0,2137,2140,5,245,0,0,2138,2140,3,346,173,0,2139,2137, + 1,0,0,0,2139,2138,1,0,0,0,2140,2141,1,0,0,0,2141,2142,5,254,0,0, + 2142,2144,5,245,0,0,2143,2139,1,0,0,0,2143,2144,1,0,0,0,2144,291, + 1,0,0,0,2145,2147,3,270,135,0,2146,2145,1,0,0,0,2147,2150,1,0,0, + 0,2148,2146,1,0,0,0,2148,2149,1,0,0,0,2149,2157,1,0,0,0,2150,2148, + 1,0,0,0,2151,2154,5,245,0,0,2152,2154,3,346,173,0,2153,2151,1,0, + 0,0,2153,2152,1,0,0,0,2154,2155,1,0,0,0,2155,2156,5,254,0,0,2156, + 2158,5,245,0,0,2157,2153,1,0,0,0,2157,2158,1,0,0,0,2158,293,1,0, + 0,0,2159,2160,3,346,173,0,2160,295,1,0,0,0,2161,2162,3,322,161,0, + 2162,297,1,0,0,0,2163,2166,3,322,161,0,2164,2166,3,294,147,0,2165, + 2163,1,0,0,0,2165,2164,1,0,0,0,2166,299,1,0,0,0,2167,2170,5,182, + 0,0,2168,2171,3,302,151,0,2169,2171,3,306,153,0,2170,2168,1,0,0, + 0,2170,2169,1,0,0,0,2170,2171,1,0,0,0,2171,301,1,0,0,0,2172,2174, + 3,304,152,0,2173,2175,3,308,154,0,2174,2173,1,0,0,0,2174,2175,1, + 0,0,0,2175,303,1,0,0,0,2176,2177,3,310,155,0,2177,2178,3,386,193, + 0,2178,2180,1,0,0,0,2179,2176,1,0,0,0,2180,2181,1,0,0,0,2181,2179, + 1,0,0,0,2181,2182,1,0,0,0,2182,305,1,0,0,0,2183,2186,3,308,154,0, + 2184,2187,3,304,152,0,2185,2187,3,308,154,0,2186,2184,1,0,0,0,2186, + 2185,1,0,0,0,2186,2187,1,0,0,0,2187,307,1,0,0,0,2188,2189,3,310, + 155,0,2189,2190,3,386,193,0,2190,2191,5,389,0,0,2191,2192,3,386, + 193,0,2192,309,1,0,0,0,2193,2195,7,33,0,0,2194,2193,1,0,0,0,2194, + 2195,1,0,0,0,2195,2196,1,0,0,0,2196,2199,7,34,0,0,2197,2199,5,538, + 0,0,2198,2194,1,0,0,0,2198,2197,1,0,0,0,2199,311,1,0,0,0,2200,2202, + 5,17,0,0,2201,2200,1,0,0,0,2201,2202,1,0,0,0,2202,2203,1,0,0,0,2203, + 2205,3,322,161,0,2204,2206,3,318,159,0,2205,2204,1,0,0,0,2205,2206, + 1,0,0,0,2206,313,1,0,0,0,2207,2208,3,322,161,0,2208,2209,3,316,158, + 0,2209,315,1,0,0,0,2210,2211,5,222,0,0,2211,2213,3,322,161,0,2212, + 2210,1,0,0,0,2213,2214,1,0,0,0,2214,2212,1,0,0,0,2214,2215,1,0,0, + 0,2215,2218,1,0,0,0,2216,2218,1,0,0,0,2217,2212,1,0,0,0,2217,2216, + 1,0,0,0,2218,317,1,0,0,0,2219,2220,5,517,0,0,2220,2221,3,320,160, + 0,2221,2222,5,518,0,0,2222,319,1,0,0,0,2223,2228,3,322,161,0,2224, + 2225,5,521,0,0,2225,2227,3,322,161,0,2226,2224,1,0,0,0,2227,2230, + 1,0,0,0,2228,2226,1,0,0,0,2228,2229,1,0,0,0,2229,321,1,0,0,0,2230, + 2228,1,0,0,0,2231,2235,3,324,162,0,2232,2235,3,326,163,0,2233,2235, + 3,396,198,0,2234,2231,1,0,0,0,2234,2232,1,0,0,0,2234,2233,1,0,0, + 0,2235,323,1,0,0,0,2236,2237,7,35,0,0,2237,325,1,0,0,0,2238,2239, + 5,538,0,0,2239,327,1,0,0,0,2240,2241,5,429,0,0,2241,2242,3,260,130, + 0,2242,2243,5,377,0,0,2243,2244,3,260,130,0,2244,329,1,0,0,0,2245, + 2246,3,322,161,0,2246,331,1,0,0,0,2247,2248,3,322,161,0,2248,333, + 1,0,0,0,2249,2252,3,322,161,0,2250,2251,5,514,0,0,2251,2253,3,322, + 161,0,2252,2250,1,0,0,0,2252,2253,1,0,0,0,2253,335,1,0,0,0,2254, + 2257,3,322,161,0,2255,2256,5,514,0,0,2256,2258,3,322,161,0,2257, + 2255,1,0,0,0,2257,2258,1,0,0,0,2258,337,1,0,0,0,2259,2262,3,322, + 161,0,2260,2261,5,514,0,0,2261,2263,3,322,161,0,2262,2260,1,0,0, + 0,2262,2263,1,0,0,0,2263,2272,1,0,0,0,2264,2265,3,322,161,0,2265, + 2266,5,514,0,0,2266,2269,3,322,161,0,2267,2268,5,514,0,0,2268,2270, + 3,322,161,0,2269,2267,1,0,0,0,2269,2270,1,0,0,0,2270,2272,1,0,0, + 0,2271,2259,1,0,0,0,2271,2264,1,0,0,0,2272,339,1,0,0,0,2273,2276, + 3,322,161,0,2274,2275,5,514,0,0,2275,2277,3,322,161,0,2276,2274, + 1,0,0,0,2276,2277,1,0,0,0,2277,2286,1,0,0,0,2278,2279,3,322,161, + 0,2279,2280,5,514,0,0,2280,2283,3,322,161,0,2281,2282,5,514,0,0, + 2282,2284,3,322,161,0,2283,2281,1,0,0,0,2283,2284,1,0,0,0,2284,2286, + 1,0,0,0,2285,2273,1,0,0,0,2285,2278,1,0,0,0,2286,341,1,0,0,0,2287, + 2290,3,322,161,0,2288,2289,5,514,0,0,2289,2291,3,322,161,0,2290, + 2288,1,0,0,0,2290,2291,1,0,0,0,2291,2300,1,0,0,0,2292,2293,3,322, + 161,0,2293,2294,5,514,0,0,2294,2297,3,322,161,0,2295,2296,5,514, + 0,0,2296,2298,3,322,161,0,2297,2295,1,0,0,0,2297,2298,1,0,0,0,2298, + 2300,1,0,0,0,2299,2287,1,0,0,0,2299,2292,1,0,0,0,2300,343,1,0,0, + 0,2301,2304,3,322,161,0,2302,2303,5,514,0,0,2303,2305,3,322,161, + 0,2304,2302,1,0,0,0,2304,2305,1,0,0,0,2305,2314,1,0,0,0,2306,2307, + 3,322,161,0,2307,2308,5,514,0,0,2308,2311,3,322,161,0,2309,2310, + 5,514,0,0,2310,2312,3,322,161,0,2311,2309,1,0,0,0,2311,2312,1,0, + 0,0,2312,2314,1,0,0,0,2313,2301,1,0,0,0,2313,2306,1,0,0,0,2314,345, + 1,0,0,0,2315,2320,3,322,161,0,2316,2317,5,514,0,0,2317,2319,3,322, + 161,0,2318,2316,1,0,0,0,2319,2322,1,0,0,0,2320,2321,1,0,0,0,2320, + 2318,1,0,0,0,2321,347,1,0,0,0,2322,2320,1,0,0,0,2323,2324,5,434, + 0,0,2324,2325,3,354,177,0,2325,349,1,0,0,0,2326,2327,5,167,0,0,2327, + 2328,5,242,0,0,2328,2329,5,133,0,0,2329,351,1,0,0,0,2330,2331,5, + 167,0,0,2331,2332,5,133,0,0,2332,353,1,0,0,0,2333,2334,5,517,0,0, + 2334,2339,3,356,178,0,2335,2336,5,521,0,0,2336,2338,3,356,178,0, + 2337,2335,1,0,0,0,2338,2341,1,0,0,0,2339,2337,1,0,0,0,2339,2340, + 1,0,0,0,2340,2342,1,0,0,0,2341,2339,1,0,0,0,2342,2343,5,518,0,0, + 2343,355,1,0,0,0,2344,2349,3,358,179,0,2345,2347,5,506,0,0,2346, + 2345,1,0,0,0,2346,2347,1,0,0,0,2347,2348,1,0,0,0,2348,2350,3,360, + 180,0,2349,2346,1,0,0,0,2349,2350,1,0,0,0,2350,357,1,0,0,0,2351, + 2355,3,322,161,0,2352,2355,3,294,147,0,2353,2355,5,538,0,0,2354, + 2351,1,0,0,0,2354,2352,1,0,0,0,2354,2353,1,0,0,0,2355,359,1,0,0, + 0,2356,2361,5,539,0,0,2357,2361,5,540,0,0,2358,2361,3,380,190,0, + 2359,2361,5,538,0,0,2360,2356,1,0,0,0,2360,2357,1,0,0,0,2360,2358, + 1,0,0,0,2360,2359,1,0,0,0,2361,361,1,0,0,0,2362,2369,5,10,0,0,2363, + 2364,5,512,0,0,2364,2369,5,512,0,0,2365,2369,5,258,0,0,2366,2367, + 5,511,0,0,2367,2369,5,511,0,0,2368,2362,1,0,0,0,2368,2363,1,0,0, + 0,2368,2365,1,0,0,0,2368,2366,1,0,0,0,2369,363,1,0,0,0,2370,2385, + 5,506,0,0,2371,2385,5,507,0,0,2372,2385,5,508,0,0,2373,2374,5,508, + 0,0,2374,2385,5,506,0,0,2375,2376,5,507,0,0,2376,2385,5,506,0,0, + 2377,2378,5,508,0,0,2378,2385,5,507,0,0,2379,2380,5,509,0,0,2380, + 2385,5,506,0,0,2381,2382,5,508,0,0,2382,2383,5,506,0,0,2383,2385, + 5,507,0,0,2384,2370,1,0,0,0,2384,2371,1,0,0,0,2384,2372,1,0,0,0, + 2384,2373,1,0,0,0,2384,2375,1,0,0,0,2384,2377,1,0,0,0,2384,2379, + 1,0,0,0,2384,2381,1,0,0,0,2385,365,1,0,0,0,2386,2387,5,508,0,0,2387, + 2394,5,508,0,0,2388,2389,5,507,0,0,2389,2394,5,507,0,0,2390,2394, + 5,512,0,0,2391,2394,5,513,0,0,2392,2394,5,511,0,0,2393,2386,1,0, + 0,0,2393,2388,1,0,0,0,2393,2390,1,0,0,0,2393,2391,1,0,0,0,2393,2392, + 1,0,0,0,2394,367,1,0,0,0,2395,2396,7,36,0,0,2396,369,1,0,0,0,2397, + 2398,7,37,0,0,2398,371,1,0,0,0,2399,2414,3,300,150,0,2400,2414,3, + 374,187,0,2401,2414,3,376,188,0,2402,2404,5,530,0,0,2403,2402,1, + 0,0,0,2403,2404,1,0,0,0,2404,2405,1,0,0,0,2405,2414,3,378,189,0, + 2406,2414,3,380,190,0,2407,2414,5,540,0,0,2408,2414,5,541,0,0,2409, + 2411,5,242,0,0,2410,2409,1,0,0,0,2410,2411,1,0,0,0,2411,2412,1,0, + 0,0,2412,2414,5,245,0,0,2413,2399,1,0,0,0,2413,2400,1,0,0,0,2413, + 2401,1,0,0,0,2413,2403,1,0,0,0,2413,2406,1,0,0,0,2413,2407,1,0,0, + 0,2413,2408,1,0,0,0,2413,2410,1,0,0,0,2414,373,1,0,0,0,2415,2416, + 3,384,192,0,2416,2417,3,376,188,0,2417,375,1,0,0,0,2418,2419,5,538, + 0,0,2419,377,1,0,0,0,2420,2421,5,539,0,0,2421,379,1,0,0,0,2422,2423, + 7,38,0,0,2423,381,1,0,0,0,2424,2425,7,39,0,0,2425,383,1,0,0,0,2426, + 2427,7,40,0,0,2427,385,1,0,0,0,2428,2429,7,41,0,0,2429,387,1,0,0, + 0,2430,2431,7,42,0,0,2431,389,1,0,0,0,2432,2433,7,43,0,0,2433,391, + 1,0,0,0,2434,2435,7,44,0,0,2435,393,1,0,0,0,2436,2437,7,45,0,0,2437, + 395,1,0,0,0,2438,2439,7,46,0,0,2439,397,1,0,0,0,296,401,408,411, + 425,443,447,456,461,468,479,488,500,503,510,513,521,525,530,533, + 540,548,552,564,572,576,608,611,616,620,624,628,637,642,646,650, + 655,658,662,667,673,678,683,687,691,695,705,713,717,721,725,729, + 733,737,741,745,747,757,765,789,803,808,812,818,821,824,831,834, + 843,855,879,891,896,900,908,912,918,928,933,939,943,947,951,960, + 964,971,974,984,992,1000,1004,1019,1038,1049,1053,1060,1065,1071, + 1075,1082,1086,1090,1094,1102,1106,1111,1117,1123,1126,1130,1141, + 1150,1157,1168,1180,1195,1198,1202,1205,1207,1212,1216,1219,1223, + 1232,1241,1251,1256,1267,1270,1273,1276,1279,1285,1289,1297,1300, + 1305,1308,1312,1315,1317,1331,1342,1347,1355,1358,1361,1366,1368, + 1370,1375,1378,1382,1386,1395,1406,1433,1455,1468,1480,1493,1505, + 1517,1523,1550,1558,1562,1565,1568,1575,1578,1581,1584,1587,1590, + 1595,1598,1607,1612,1616,1621,1627,1632,1636,1655,1663,1671,1675, + 1679,1689,1715,1723,1735,1757,1759,1770,1773,1775,1779,1783,1790, + 1799,1805,1818,1825,1830,1836,1843,1850,1852,1862,1865,1877,1882, + 1885,1891,1893,1899,1920,1922,1930,1937,1940,1944,1951,1955,1964, + 1968,1984,1993,2021,2030,2039,2045,2049,2059,2065,2071,2075,2081, + 2085,2091,2093,2096,2099,2105,2111,2114,2118,2126,2130,2134,2139, + 2143,2148,2153,2157,2165,2170,2174,2181,2186,2194,2198,2201,2205, + 2214,2217,2228,2234,2252,2257,2262,2269,2271,2276,2283,2285,2290, + 2297,2299,2304,2311,2313,2320,2339,2346,2349,2354,2360,2368,2384, + 2393,2403,2410,2413 ]; private static __ATN: antlr.ATN; @@ -19416,6 +20425,54 @@ export class PredicateContext extends antlr.ParserRuleContext { } +export class JsonFunctionBranchContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_NULL(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_NULL, 0); + } + public KW_EMPTY(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_EMPTY, 0); + } + public KW_ARRAY(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_ARRAY, 0); + } + public uid(): UidContext | null { + return this.getRuleContext(0, UidContext); + } + public KW_TRUE(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_TRUE, 0); + } + public KW_FALSE(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_FALSE, 0); + } + public KW_UNKNOWN(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_UNKNOWN, 0); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_jsonFunctionBranch; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterJsonFunctionBranch) { + listener.enterJsonFunctionBranch(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitJsonFunctionBranch) { + listener.exitJsonFunctionBranch(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitJsonFunctionBranch) { + return visitor.visitJsonFunctionBranch(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class LikePredicateContext extends antlr.ParserRuleContext { public _kind?: Token | null; public _quantifier?: Token | null; @@ -20401,6 +21458,18 @@ export class FunctionParamContext extends antlr.ParserRuleContext { public expression(): ExpressionContext | null { return this.getRuleContext(0, ExpressionContext); } + public jsonValueParams(): JsonValueParamsContext | null { + return this.getRuleContext(0, JsonValueParamsContext); + } + public jsonQueryParams(): JsonQueryParamsContext | null { + return this.getRuleContext(0, JsonQueryParamsContext); + } + public jsonObjectParams(): JsonObjectParamsContext | null { + return this.getRuleContext(0, JsonObjectParamsContext); + } + public jsonArrayParams(): JsonArrayParamsContext | null { + return this.getRuleContext(0, JsonArrayParamsContext); + } public override get ruleIndex(): number { return FlinkSqlParser.RULE_functionParam; } @@ -20424,6 +21493,312 @@ export class FunctionParamContext extends antlr.ParserRuleContext { } +export class JsonValueParamsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public columnNamePath(): ColumnNamePathContext { + return this.getRuleContext(0, ColumnNamePathContext)!; + } + public uid(): UidContext[]; + public uid(i: number): UidContext | null; + public uid(i?: number): UidContext[] | UidContext | null { + if (i === undefined) { + return this.getRuleContexts(UidContext); + } + + return this.getRuleContext(i, UidContext); + } + public columnType(): ColumnTypeContext | null { + return this.getRuleContext(0, ColumnTypeContext); + } + public KW_ON(): antlr.TerminalNode[]; + public KW_ON(i: number): antlr.TerminalNode | null; + public KW_ON(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.KW_ON); + } else { + return this.getToken(FlinkSqlParser.KW_ON, i); + } + } + public KW_EMPTY(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_EMPTY, 0); + } + public KW_NULL(): antlr.TerminalNode[]; + public KW_NULL(i: number): antlr.TerminalNode | null; + public KW_NULL(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.KW_NULL); + } else { + return this.getToken(FlinkSqlParser.KW_NULL, i); + } + } + public KW_DEFAULT(): antlr.TerminalNode[]; + public KW_DEFAULT(i: number): antlr.TerminalNode | null; + public KW_DEFAULT(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.KW_DEFAULT); + } else { + return this.getToken(FlinkSqlParser.KW_DEFAULT, i); + } + } + public valueExpression(): ValueExpressionContext[]; + public valueExpression(i: number): ValueExpressionContext | null; + public valueExpression(i?: number): ValueExpressionContext[] | ValueExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ValueExpressionContext); + } + + return this.getRuleContext(i, ValueExpressionContext); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_jsonValueParams; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterJsonValueParams) { + listener.enterJsonValueParams(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitJsonValueParams) { + listener.exitJsonValueParams(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitJsonValueParams) { + return visitor.visitJsonValueParams(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class JsonQueryParamsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public columnNamePath(): ColumnNamePathContext { + return this.getRuleContext(0, ColumnNamePathContext)!; + } + public uid(): UidContext[]; + public uid(i: number): UidContext | null; + public uid(i?: number): UidContext[] | UidContext | null { + if (i === undefined) { + return this.getRuleContexts(UidContext); + } + + return this.getRuleContext(i, UidContext); + } + public jsonFunctionBranch(): JsonFunctionBranchContext[]; + public jsonFunctionBranch(i: number): JsonFunctionBranchContext | null; + public jsonFunctionBranch(i?: number): JsonFunctionBranchContext[] | JsonFunctionBranchContext | null { + if (i === undefined) { + return this.getRuleContexts(JsonFunctionBranchContext); + } + + return this.getRuleContext(i, JsonFunctionBranchContext); + } + public KW_ON(): antlr.TerminalNode[]; + public KW_ON(i: number): antlr.TerminalNode | null; + public KW_ON(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.KW_ON); + } else { + return this.getToken(FlinkSqlParser.KW_ON, i); + } + } + public KW_EMPTY(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_EMPTY, 0); + } + public KW_WITHOUT(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_WITHOUT, 0); + } + public KW_WITH(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_WITH, 0); + } + public KW_ARRAY(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_ARRAY, 0); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_jsonQueryParams; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterJsonQueryParams) { + listener.enterJsonQueryParams(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitJsonQueryParams) { + listener.exitJsonQueryParams(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitJsonQueryParams) { + return visitor.visitJsonQueryParams(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class JsonObjectParamsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public columnNamePath(): ColumnNamePathContext[]; + public columnNamePath(i: number): ColumnNamePathContext | null; + public columnNamePath(i?: number): ColumnNamePathContext[] | ColumnNamePathContext | null { + if (i === undefined) { + return this.getRuleContexts(ColumnNamePathContext); + } + + return this.getRuleContext(i, ColumnNamePathContext); + } + public KW_ON(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_ON, 0); + } + public KW_NULL(): antlr.TerminalNode[]; + public KW_NULL(i: number): antlr.TerminalNode | null; + public KW_NULL(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.KW_NULL); + } else { + return this.getToken(FlinkSqlParser.KW_NULL, i); + } + } + public valueExpression(): ValueExpressionContext[]; + public valueExpression(i: number): ValueExpressionContext | null; + public valueExpression(i?: number): ValueExpressionContext[] | ValueExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ValueExpressionContext); + } + + return this.getRuleContext(i, ValueExpressionContext); + } + public KW_JSON(): antlr.TerminalNode[]; + public KW_JSON(i: number): antlr.TerminalNode | null; + public KW_JSON(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.KW_JSON); + } else { + return this.getToken(FlinkSqlParser.KW_JSON, i); + } + } + public LR_BRACKET(): antlr.TerminalNode[]; + public LR_BRACKET(i: number): antlr.TerminalNode | null; + public LR_BRACKET(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.LR_BRACKET); + } else { + return this.getToken(FlinkSqlParser.LR_BRACKET, i); + } + } + public RR_BRACKET(): antlr.TerminalNode[]; + public RR_BRACKET(i: number): antlr.TerminalNode | null; + public RR_BRACKET(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.RR_BRACKET); + } else { + return this.getToken(FlinkSqlParser.RR_BRACKET, i); + } + } + public uid(): UidContext | null { + return this.getRuleContext(0, UidContext); + } + public KW_KEY(): antlr.TerminalNode[]; + public KW_KEY(i: number): antlr.TerminalNode | null; + public KW_KEY(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.KW_KEY); + } else { + return this.getToken(FlinkSqlParser.KW_KEY, i); + } + } + public KW_VALUE(): antlr.TerminalNode[]; + public KW_VALUE(i: number): antlr.TerminalNode | null; + public KW_VALUE(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.KW_VALUE); + } else { + return this.getToken(FlinkSqlParser.KW_VALUE, i); + } + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_jsonObjectParams; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterJsonObjectParams) { + listener.enterJsonObjectParams(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitJsonObjectParams) { + listener.exitJsonObjectParams(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitJsonObjectParams) { + return visitor.visitJsonObjectParams(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class JsonArrayParamsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public valueExpression(): ValueExpressionContext[]; + public valueExpression(i: number): ValueExpressionContext | null; + public valueExpression(i?: number): ValueExpressionContext[] | ValueExpressionContext | null { + if (i === undefined) { + return this.getRuleContexts(ValueExpressionContext); + } + + return this.getRuleContext(i, ValueExpressionContext); + } + public KW_ON(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_ON, 0); + } + public KW_NULL(): antlr.TerminalNode[]; + public KW_NULL(i: number): antlr.TerminalNode | null; + public KW_NULL(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.KW_NULL); + } else { + return this.getToken(FlinkSqlParser.KW_NULL, i); + } + } + public uid(): UidContext | null { + return this.getRuleContext(0, UidContext); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_jsonArrayParams; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterJsonArrayParams) { + listener.enterJsonArrayParams(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitJsonArrayParams) { + listener.exitJsonArrayParams(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitJsonArrayParams) { + return visitor.visitJsonArrayParams(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class DereferenceDefinitionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/flink/FlinkSqlParserListener.ts b/src/lib/flink/FlinkSqlParserListener.ts index 07627b6d..a2eb2e8f 100644 --- a/src/lib/flink/FlinkSqlParserListener.ts +++ b/src/lib/flink/FlinkSqlParserListener.ts @@ -146,6 +146,7 @@ import { ExistsContext } from "./FlinkSqlParser.js"; import { LogicalNestedContext } from "./FlinkSqlParser.js"; import { LogicalBinaryContext } from "./FlinkSqlParser.js"; import { PredicateContext } from "./FlinkSqlParser.js"; +import { JsonFunctionBranchContext } from "./FlinkSqlParser.js"; import { LikePredicateContext } from "./FlinkSqlParser.js"; import { ValueExpressionDefaultContext } from "./FlinkSqlParser.js"; import { ComparisonContext } from "./FlinkSqlParser.js"; @@ -171,6 +172,10 @@ import { FunctionNameContext } from "./FlinkSqlParser.js"; import { FunctionNameAndParamsContext } from "./FlinkSqlParser.js"; import { FunctionNameWithParamsContext } from "./FlinkSqlParser.js"; import { FunctionParamContext } from "./FlinkSqlParser.js"; +import { JsonValueParamsContext } from "./FlinkSqlParser.js"; +import { JsonQueryParamsContext } from "./FlinkSqlParser.js"; +import { JsonObjectParamsContext } from "./FlinkSqlParser.js"; +import { JsonArrayParamsContext } from "./FlinkSqlParser.js"; import { DereferenceDefinitionContext } from "./FlinkSqlParser.js"; import { CorrelationNameContext } from "./FlinkSqlParser.js"; import { QualifiedNameContext } from "./FlinkSqlParser.js"; @@ -1627,6 +1632,16 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitPredicate?: (ctx: PredicateContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.jsonFunctionBranch`. + * @param ctx the parse tree + */ + enterJsonFunctionBranch?: (ctx: JsonFunctionBranchContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.jsonFunctionBranch`. + * @param ctx the parse tree + */ + exitJsonFunctionBranch?: (ctx: JsonFunctionBranchContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.likePredicate`. * @param ctx the parse tree @@ -1913,6 +1928,46 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitFunctionParam?: (ctx: FunctionParamContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.jsonValueParams`. + * @param ctx the parse tree + */ + enterJsonValueParams?: (ctx: JsonValueParamsContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.jsonValueParams`. + * @param ctx the parse tree + */ + exitJsonValueParams?: (ctx: JsonValueParamsContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.jsonQueryParams`. + * @param ctx the parse tree + */ + enterJsonQueryParams?: (ctx: JsonQueryParamsContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.jsonQueryParams`. + * @param ctx the parse tree + */ + exitJsonQueryParams?: (ctx: JsonQueryParamsContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.jsonObjectParams`. + * @param ctx the parse tree + */ + enterJsonObjectParams?: (ctx: JsonObjectParamsContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.jsonObjectParams`. + * @param ctx the parse tree + */ + exitJsonObjectParams?: (ctx: JsonObjectParamsContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.jsonArrayParams`. + * @param ctx the parse tree + */ + enterJsonArrayParams?: (ctx: JsonArrayParamsContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.jsonArrayParams`. + * @param ctx the parse tree + */ + exitJsonArrayParams?: (ctx: JsonArrayParamsContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.dereferenceDefinition`. * @param ctx the parse tree diff --git a/src/lib/flink/FlinkSqlParserVisitor.ts b/src/lib/flink/FlinkSqlParserVisitor.ts index 02b4937e..765b4de1 100644 --- a/src/lib/flink/FlinkSqlParserVisitor.ts +++ b/src/lib/flink/FlinkSqlParserVisitor.ts @@ -146,6 +146,7 @@ import { ExistsContext } from "./FlinkSqlParser.js"; import { LogicalNestedContext } from "./FlinkSqlParser.js"; import { LogicalBinaryContext } from "./FlinkSqlParser.js"; import { PredicateContext } from "./FlinkSqlParser.js"; +import { JsonFunctionBranchContext } from "./FlinkSqlParser.js"; import { LikePredicateContext } from "./FlinkSqlParser.js"; import { ValueExpressionDefaultContext } from "./FlinkSqlParser.js"; import { ComparisonContext } from "./FlinkSqlParser.js"; @@ -171,6 +172,10 @@ import { FunctionNameContext } from "./FlinkSqlParser.js"; import { FunctionNameAndParamsContext } from "./FlinkSqlParser.js"; import { FunctionNameWithParamsContext } from "./FlinkSqlParser.js"; import { FunctionParamContext } from "./FlinkSqlParser.js"; +import { JsonValueParamsContext } from "./FlinkSqlParser.js"; +import { JsonQueryParamsContext } from "./FlinkSqlParser.js"; +import { JsonObjectParamsContext } from "./FlinkSqlParser.js"; +import { JsonArrayParamsContext } from "./FlinkSqlParser.js"; import { DereferenceDefinitionContext } from "./FlinkSqlParser.js"; import { CorrelationNameContext } from "./FlinkSqlParser.js"; import { QualifiedNameContext } from "./FlinkSqlParser.js"; @@ -1071,6 +1076,12 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.jsonFunctionBranch`. + * @param ctx the parse tree + * @return the visitor result + */ + visitJsonFunctionBranch?: (ctx: JsonFunctionBranchContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.likePredicate`. * @param ctx the parse tree @@ -1239,6 +1250,30 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.jsonValueParams`. + * @param ctx the parse tree + * @return the visitor result + */ + visitJsonValueParams?: (ctx: JsonValueParamsContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.jsonQueryParams`. + * @param ctx the parse tree + * @return the visitor result + */ + visitJsonQueryParams?: (ctx: JsonQueryParamsContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.jsonObjectParams`. + * @param ctx the parse tree + * @return the visitor result + */ + visitJsonObjectParams?: (ctx: JsonObjectParamsContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.jsonArrayParams`. + * @param ctx the parse tree + * @return the visitor result + */ + visitJsonArrayParams?: (ctx: JsonArrayParamsContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.dereferenceDefinition`. * @param ctx the parse tree diff --git a/test/parser/flink/syntax/fixtures/select.sql b/test/parser/flink/syntax/fixtures/select.sql index 0b51270e..b656877e 100644 --- a/test/parser/flink/syntax/fixtures/select.sql +++ b/test/parser/flink/syntax/fixtures/select.sql @@ -57,4 +57,31 @@ SELECT COALESCE(SUM(c.amount), 0) AS total_amount FROM cust c; SELECT SUM(c.amount) AS total_amount FROM cust c; INSERT INTO SR_CATALOG.DEMOS.DETAIL_DEMO VALUES(2, 'YY', 2, CURRENT_DATE, NOW(),func1(),func2(1),func3('a',2)); -INSERT INTO SR_CATALOG.DEMOS.DETAIL_DEMO SELECT 2, 'YY', 2, CURRENT_DATE,NOW(),func1(),func2(1),func3('a',2); \ No newline at end of file +INSERT INTO SR_CATALOG.DEMOS.DETAIL_DEMO SELECT 2, 'YY', 2, CURRENT_DATE,NOW(),func1(),func2(1),func3('a',2); + +SELECT + user_id, + JSON_VALUE(event_data, '$.eventType' RETURNING STRING) AS event_type, + JSON_VALUE( + event_data, + '$.pageUrl' + NULL ON EMPTY + NULL ON ERROR + ) AS page_url, + JSON_VALUE(event_data, '$.productId' RETURNING STRING) AS product_id, + JSON_VALUE( + event_data, + '$.amount' + RETURNING DOUBLE + NULL ON EMPTY + NULL ON ERROR + ) AS amount, + JSON_VALUE('{"contains blank": "right"}', 'strict $.[''contains blank'']' NULL ON EMPTY DEFAULT 'wrong' ON ERROR) AS name1, + JSON_QUERY('{"a":[{"c":"c1"},{"c":"c2"}]}', 'lax $.a[*].c' RETURNING ARRAY) as d1, + JSON_QUERY('{}', 'lax $.invalid' EMPTY OBJECT ON EMPTY) asd2, + JSON_OBJECT('K1' VALUE JSON('{"K2": {"value": 42}}')), + JSON_ARRAY(CAST(NULL AS STRING) ABSENT ON NULL), + event_time +FROM user_behavior +WHERE JSON_VALUE(event_data, '$.eventType' RETURNING STRING) IS NOT NULL +; \ No newline at end of file