diff --git a/src/grammar/flink/FlinkSqlParser.g4 b/src/grammar/flink/FlinkSqlParser.g4 index 55a0eabf..06694f5a 100644 --- a/src/grammar/flink/FlinkSqlParser.g4 +++ b/src/grammar/flink/FlinkSqlParser.g4 @@ -487,8 +487,8 @@ selectClause projectItemDefinition : overWindowItem - | columnName (KW_AS? expression)? | expression (KW_AS? columnName)? + | columnName (KW_AS? expression)? ; overWindowItem @@ -515,7 +515,7 @@ tableReference tablePrimary : KW_TABLE? tablePath systemTimePeriod? | viewPath systemTimePeriod? - | KW_LATERAL KW_TABLE LR_BRACKET functionName LR_BRACKET functionParam (COMMA functionParam)* RR_BRACKET RR_BRACKET + | KW_LATERAL KW_TABLE LR_BRACKET functionCallExpression RR_BRACKET | KW_LATERAL? LR_BRACKET queryStatement RR_BRACKET | KW_UNNEST LR_BRACKET expression RR_BRACKET ; @@ -747,6 +747,12 @@ valueExpression | left=valueExpression comparisonOperator right=valueExpression # comparison ; +functionCallExpression + : reservedKeywordsNoParamsUsedAsFuncName + | functionNameAndParams + | functionNameWithParams LR_BRACKET (setQuantifier? functionParam (COMMA functionParam)*)? RR_BRACKET + ; + primaryExpression : KW_CASE whenClause+ (KW_ELSE elseExpression=expression)? KW_END # searchedCase | KW_CASE value=expression whenClause+ (KW_ELSE elseExpression=expression)? KW_END # simpleCase @@ -759,15 +765,14 @@ primaryExpression | ASTERISK_SIGN # star | uid DOT ASTERISK_SIGN # star // | LR_BRACKET namedExpression (COMMA namedExpression)+ RR_BRACKET #rowConstructor - | LR_BRACKET queryStatement RR_BRACKET # subqueryExpression - | functionName LR_BRACKET (setQuantifier? functionParam (COMMA functionParam)*)? RR_BRACKET # functionCall + | LR_BRACKET queryStatement RR_BRACKET # subqueryExpression + | functionCallExpression # functionCall // | identifier '->' expression #lambda // | '(' identifier (',' identifier)+ ')' '->' expression #lambda | value=primaryExpression LS_BRACKET index=valueExpression RS_BRACKET # subscript | identifier # columnReference | dereferenceDefinition # dereference | LR_BRACKET expression RR_BRACKET # parenthesizedExpression - | KW_CURRENT_TIMESTAMP # dateFunctionExpression // | EXTRACT LR_BRACKET field=identifier KW_FROM source=valueExpression RR_BRACKET #extract // | (SUBSTR | SUBSTRING) LR_BRACKET str=valueExpression (KW_FROM | COMMA) pos=valueExpression // ((KW_FOR | COMMA) len=valueExpression)? RR_BRACKET #substring @@ -782,6 +787,25 @@ functionNameCreate ; functionName + : reservedKeywordsUsedAsFuncName + | reservedKeywordsNoParamsUsedAsFuncName + | reservedKeywordsFollowParamsUsedAsFuncName + | uid + ; + +/** +* Built-in function name that is following with params directly without parentheses +* Reference Link:https://nightlies.apache.org/flink/flink-docs-release-1.16/zh/docs/dev/table/functions/systemfunctions/#%E6%97%B6%E9%97%B4%E5%87%BD%E6%95%B0 +*/ +functionNameAndParams + : reservedKeywordsFollowParamsUsedAsFuncName STRING_LITERAL + | timeIntervalExpression + ; + +/** +* Function name that is need to follow with parentheses and params +*/ +functionNameWithParams : reservedKeywordsUsedAsFuncName | uid ; @@ -1077,6 +1101,23 @@ reservedKeywordsUsedAsFuncParam | ASTERISK_SIGN ; +/** +* Built-in function name without parentheses and params +*/ +reservedKeywordsNoParamsUsedAsFuncName + : KW_LOCALTIME + | KW_LOCALTIMESTAMP + | KW_CURRENT_TIME + | KW_CURRENT_DATE + | KW_CURRENT_TIMESTAMP + ; + +reservedKeywordsFollowParamsUsedAsFuncName + : KW_DATE + | KW_TIME + | KW_TIMESTAMP + ; + reservedKeywordsUsedAsFuncName : KW_ABS | KW_ARRAY @@ -1089,10 +1130,6 @@ reservedKeywordsUsedAsFuncName | KW_COLLECT | KW_COUNT | KW_CUME_DIST - | KW_CURRENT_DATE - | KW_CURRENT_TIME - | KW_CURRENT_TIMESTAMP - | KW_DATE | KW_DAYOFWEEK | KW_DAYOFYEAR | KW_DENSE_RANK @@ -1109,8 +1146,6 @@ reservedKeywordsUsedAsFuncName | KW_LEAD | KW_LEFT | KW_LN - | KW_LOCALTIME - | KW_LOCALTIMESTAMP | KW_LOWER | KW_MAP | KW_MAX @@ -1135,8 +1170,6 @@ reservedKeywordsUsedAsFuncName | KW_STDDEV_SAMP | KW_SUBSTRING | KW_SUM - | KW_TIME - | KW_TIMESTAMP | KW_TIMESTAMP_DIFF | KW_TRIM | KW_TRUNCATE diff --git a/src/lib/flink/FlinkSqlParser.interp b/src/lib/flink/FlinkSqlParser.interp index cd835494..3eb10c9a 100644 --- a/src/lib/flink/FlinkSqlParser.interp +++ b/src/lib/flink/FlinkSqlParser.interp @@ -1220,9 +1220,12 @@ booleanExpression predicate likePredicate valueExpression +functionCallExpression primaryExpression functionNameCreate functionName +functionNameAndParams +functionNameWithParams functionParam dereferenceDefinition correlationName @@ -1272,9 +1275,11 @@ setQuantifier timePointUnit timeIntervalUnit reservedKeywordsUsedAsFuncParam +reservedKeywordsNoParamsUsedAsFuncName +reservedKeywordsFollowParamsUsedAsFuncName reservedKeywordsUsedAsFuncName nonReservedKeywords atn: -[4, 1, 541, 2282, 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, 1, 0, 5, 0, 376, 8, 0, 10, 0, 12, 0, 379, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 385, 8, 1, 1, 1, 3, 1, 388, 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, 402, 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, 420, 8, 4, 1, 5, 1, 5, 3, 5, 424, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 433, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 438, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 443, 8, 8, 10, 8, 12, 8, 446, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 456, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 463, 8, 11, 10, 11, 12, 11, 466, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 477, 8, 12, 1, 12, 3, 12, 480, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 487, 8, 12, 1, 12, 3, 12, 490, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 498, 8, 12, 1, 12, 1, 12, 3, 12, 502, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 507, 8, 12, 1, 12, 3, 12, 510, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 517, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 525, 8, 15, 1, 16, 1, 16, 3, 16, 529, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 541, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 549, 8, 18, 1, 18, 1, 18, 3, 18, 553, 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, 585, 8, 18, 1, 19, 3, 19, 588, 8, 19, 1, 19, 4, 19, 591, 8, 19, 11, 19, 12, 19, 592, 1, 20, 1, 20, 3, 20, 597, 8, 20, 1, 21, 1, 21, 3, 21, 601, 8, 21, 1, 21, 1, 21, 3, 21, 605, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 612, 8, 21, 10, 21, 12, 21, 615, 9, 21, 1, 21, 1, 21, 3, 21, 619, 8, 21, 1, 21, 1, 21, 3, 21, 623, 8, 21, 1, 21, 1, 21, 3, 21, 627, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 632, 8, 21, 1, 21, 3, 21, 635, 8, 21, 1, 21, 1, 21, 3, 21, 639, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 644, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 650, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 655, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 660, 8, 24, 1, 24, 1, 24, 3, 24, 664, 8, 24, 1, 25, 1, 25, 3, 25, 668, 8, 25, 1, 26, 1, 26, 3, 26, 672, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 678, 8, 27, 10, 27, 12, 27, 681, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 688, 8, 28, 1, 28, 1, 28, 3, 28, 692, 8, 28, 1, 28, 1, 28, 3, 28, 696, 8, 28, 1, 28, 1, 28, 3, 28, 700, 8, 28, 1, 28, 1, 28, 3, 28, 704, 8, 28, 1, 28, 1, 28, 3, 28, 708, 8, 28, 1, 28, 1, 28, 3, 28, 712, 8, 28, 1, 28, 1, 28, 3, 28, 716, 8, 28, 1, 28, 1, 28, 3, 28, 720, 8, 28, 3, 28, 722, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 732, 8, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 740, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 762, 8, 34, 10, 34, 12, 34, 765, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 776, 8, 34, 10, 34, 12, 34, 779, 9, 34, 1, 34, 1, 34, 3, 34, 783, 8, 34, 1, 35, 1, 35, 3, 35, 787, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 793, 8, 35, 1, 35, 3, 35, 796, 8, 35, 1, 35, 3, 35, 799, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 806, 8, 36, 1, 36, 3, 36, 809, 8, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 818, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 3, 41, 830, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 852, 8, 45, 10, 45, 12, 45, 855, 9, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 864, 8, 46, 10, 46, 12, 46, 867, 9, 46, 1, 46, 1, 46, 3, 46, 871, 8, 46, 1, 47, 1, 47, 3, 47, 875, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 881, 8, 48, 10, 48, 12, 48, 884, 9, 48, 1, 48, 3, 48, 887, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 893, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 3, 51, 903, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 908, 8, 51, 1, 51, 1, 51, 1, 52, 1, 52, 3, 52, 914, 8, 52, 1, 52, 1, 52, 3, 52, 918, 8, 52, 1, 52, 1, 52, 3, 52, 922, 8, 52, 1, 52, 1, 52, 3, 52, 926, 8, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 935, 8, 53, 1, 53, 1, 53, 3, 53, 939, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 946, 8, 53, 1, 53, 3, 53, 949, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 957, 8, 54, 10, 54, 12, 54, 960, 9, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 3, 56, 967, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 975, 8, 56, 1, 57, 1, 57, 3, 57, 979, 8, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 994, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1013, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1024, 8, 65, 1, 65, 1, 65, 3, 65, 1028, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1035, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 1040, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 3, 67, 1046, 8, 67, 1, 67, 1, 67, 3, 67, 1050, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1057, 8, 68, 1, 68, 1, 68, 3, 68, 1061, 8, 68, 1, 69, 1, 69, 3, 69, 1065, 8, 69, 1, 69, 1, 69, 3, 69, 1069, 8, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1077, 8, 70, 1, 70, 1, 70, 3, 70, 1081, 8, 70, 1, 70, 1, 70, 1, 71, 3, 71, 1086, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1092, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1098, 8, 72, 1, 72, 3, 72, 1101, 8, 72, 1, 72, 1, 72, 3, 72, 1105, 8, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 1114, 8, 74, 10, 74, 12, 74, 1117, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1123, 8, 75, 10, 75, 12, 75, 1126, 9, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 4, 76, 1137, 8, 76, 11, 76, 12, 76, 1138, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 4, 77, 1149, 8, 77, 11, 77, 12, 77, 1150, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1166, 8, 78, 1, 78, 3, 78, 1169, 8, 78, 1, 78, 1, 78, 3, 78, 1173, 8, 78, 1, 78, 3, 78, 1176, 8, 78, 3, 78, 1178, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1183, 8, 78, 1, 78, 1, 78, 3, 78, 1187, 8, 78, 1, 78, 3, 78, 1190, 8, 78, 5, 78, 1192, 8, 78, 10, 78, 12, 78, 1195, 9, 78, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 1201, 8, 79, 10, 79, 12, 79, 1204, 9, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 1210, 8, 80, 10, 80, 12, 80, 1213, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1220, 8, 81, 10, 81, 12, 81, 1223, 9, 81, 1, 81, 1, 81, 3, 81, 1227, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 1238, 8, 83, 1, 83, 3, 83, 1241, 8, 83, 1, 83, 3, 83, 1244, 8, 83, 1, 83, 3, 83, 1247, 8, 83, 1, 83, 3, 83, 1250, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1256, 8, 83, 1, 84, 1, 84, 3, 84, 1260, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 1266, 8, 84, 10, 84, 12, 84, 1269, 9, 84, 3, 84, 1271, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 1276, 8, 85, 1, 85, 3, 85, 1279, 8, 85, 1, 85, 1, 85, 3, 85, 1283, 8, 85, 1, 85, 3, 85, 1286, 8, 85, 3, 85, 1288, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 1302, 8, 86, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 1311, 8, 88, 10, 88, 12, 88, 1314, 9, 88, 1, 88, 1, 88, 3, 88, 1318, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1326, 8, 88, 1, 88, 3, 88, 1329, 8, 88, 1, 88, 3, 88, 1332, 8, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1337, 8, 88, 5, 88, 1339, 8, 88, 10, 88, 12, 88, 1342, 9, 88, 1, 89, 1, 89, 3, 89, 1346, 8, 89, 1, 90, 3, 90, 1349, 8, 90, 1, 90, 1, 90, 3, 90, 1353, 8, 90, 1, 90, 1, 90, 3, 90, 1357, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 5, 90, 1367, 8, 90, 10, 90, 12, 90, 1370, 9, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1376, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1387, 8, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 1412, 8, 95, 10, 95, 12, 95, 1415, 9, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 1436, 8, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1449, 8, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 1459, 8, 102, 10, 102, 12, 102, 1462, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1472, 8, 103, 10, 103, 12, 103, 1475, 9, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1484, 8, 103, 10, 103, 12, 103, 1487, 9, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1496, 8, 103, 10, 103, 12, 103, 1499, 9, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1504, 8, 103, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 1529, 8, 110, 10, 110, 12, 110, 1532, 9, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 3, 112, 1539, 8, 112, 1, 112, 1, 112, 3, 112, 1543, 8, 112, 1, 112, 3, 112, 1546, 8, 112, 1, 112, 3, 112, 1549, 8, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 3, 113, 1556, 8, 113, 1, 113, 3, 113, 1559, 8, 113, 1, 113, 3, 113, 1562, 8, 113, 1, 113, 3, 113, 1565, 8, 113, 1, 113, 3, 113, 1568, 8, 113, 1, 113, 3, 113, 1571, 8, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1576, 8, 113, 1, 113, 3, 113, 1579, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1586, 8, 114, 10, 114, 12, 114, 1589, 9, 114, 1, 115, 1, 115, 3, 115, 1593, 8, 115, 1, 115, 1, 115, 3, 115, 1597, 8, 115, 1, 116, 1, 116, 1, 116, 3, 116, 1602, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 1608, 8, 117, 1, 117, 1, 117, 1, 117, 3, 117, 1613, 8, 117, 5, 117, 1615, 8, 117, 10, 117, 12, 117, 1618, 9, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1636, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 1642, 8, 119, 10, 119, 12, 119, 1645, 9, 119, 1, 120, 1, 120, 1, 120, 4, 120, 1650, 8, 120, 11, 120, 12, 120, 1651, 1, 120, 1, 120, 3, 120, 1656, 8, 120, 1, 121, 1, 121, 3, 121, 1660, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1670, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1696, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 1702, 8, 124, 10, 124, 12, 124, 1705, 9, 124, 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, 1, 126, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1738, 8, 129, 3, 129, 1740, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1751, 8, 129, 1, 129, 5, 129, 1754, 8, 129, 10, 129, 12, 129, 1757, 9, 129, 1, 130, 3, 130, 1760, 8, 130, 1, 130, 1, 130, 3, 130, 1764, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1771, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 1778, 8, 130, 10, 130, 12, 130, 1781, 9, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1786, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1799, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1806, 8, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1811, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1817, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1824, 8, 130, 3, 130, 1826, 8, 130, 1, 131, 3, 131, 1829, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1839, 8, 131, 10, 131, 12, 131, 1842, 9, 131, 1, 131, 1, 131, 3, 131, 1846, 8, 131, 1, 131, 3, 131, 1849, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1855, 8, 131, 3, 131, 1857, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1863, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1884, 8, 132, 10, 132, 12, 132, 1887, 9, 132, 1, 133, 1, 133, 1, 133, 4, 133, 1892, 8, 133, 11, 133, 12, 133, 1893, 1, 133, 1, 133, 3, 133, 1898, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 4, 133, 1905, 8, 133, 11, 133, 12, 133, 1906, 1, 133, 1, 133, 3, 133, 1911, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1927, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1936, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1960, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1965, 8, 133, 10, 133, 12, 133, 1968, 9, 133, 3, 133, 1970, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1981, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1988, 8, 133, 10, 133, 12, 133, 1991, 9, 133, 1, 134, 1, 134, 1, 135, 1, 135, 3, 135, 1997, 8, 135, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 2003, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 3, 139, 2011, 8, 139, 1, 140, 1, 140, 1, 140, 3, 140, 2016, 8, 140, 1, 141, 1, 141, 3, 141, 2020, 8, 141, 1, 142, 1, 142, 1, 142, 4, 142, 2025, 8, 142, 11, 142, 12, 142, 2026, 1, 143, 1, 143, 1, 143, 3, 143, 2032, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 3, 145, 2040, 8, 145, 1, 145, 1, 145, 3, 145, 2044, 8, 145, 1, 146, 3, 146, 2047, 8, 146, 1, 146, 1, 146, 3, 146, 2051, 8, 146, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 4, 148, 2058, 8, 148, 11, 148, 12, 148, 2059, 1, 148, 3, 148, 2063, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 5, 150, 2072, 8, 150, 10, 150, 12, 150, 2075, 9, 150, 1, 151, 1, 151, 1, 151, 3, 151, 2080, 8, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 3, 157, 2098, 8, 157, 1, 158, 1, 158, 1, 158, 3, 158, 2103, 8, 158, 1, 159, 1, 159, 1, 159, 3, 159, 2108, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2115, 8, 159, 3, 159, 2117, 8, 159, 1, 160, 1, 160, 1, 160, 3, 160, 2122, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 2129, 8, 160, 3, 160, 2131, 8, 160, 1, 161, 1, 161, 1, 161, 3, 161, 2136, 8, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2143, 8, 161, 3, 161, 2145, 8, 161, 1, 162, 1, 162, 1, 162, 3, 162, 2150, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2157, 8, 162, 3, 162, 2159, 8, 162, 1, 163, 1, 163, 1, 163, 5, 163, 2164, 8, 163, 10, 163, 12, 163, 2167, 9, 163, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 5, 167, 2183, 8, 167, 10, 167, 12, 167, 2186, 9, 167, 1, 167, 1, 167, 1, 168, 1, 168, 3, 168, 2192, 8, 168, 1, 168, 3, 168, 2195, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2200, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2206, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2214, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2230, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2239, 8, 173, 1, 174, 1, 174, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2249, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2256, 8, 176, 1, 176, 3, 176, 2259, 8, 176, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 179, 1, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 182, 1, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 2165, 5, 156, 176, 258, 264, 266, 187, 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, 0, 45, 2, 0, 109, 109, 450, 450, 3, 0, 45, 45, 128, 128, 188, 188, 4, 0, 42, 42, 90, 90, 422, 422, 464, 464, 2, 0, 441, 441, 447, 447, 2, 0, 151, 151, 170, 170, 2, 0, 437, 437, 489, 489, 2, 0, 482, 485, 487, 487, 3, 0, 32, 32, 91, 91, 244, 244, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 344, 344, 360, 360, 378, 378, 381, 381, 387, 387, 416, 417, 2, 0, 433, 433, 435, 435, 4, 0, 101, 102, 115, 115, 144, 144, 246, 246, 2, 0, 13, 13, 231, 231, 2, 0, 455, 455, 462, 462, 3, 0, 5, 5, 270, 270, 444, 444, 3, 0, 266, 266, 455, 455, 462, 462, 3, 0, 425, 425, 458, 458, 477, 477, 3, 0, 330, 330, 465, 465, 481, 481, 2, 0, 440, 440, 490, 490, 2, 0, 183, 183, 265, 265, 3, 0, 130, 130, 180, 180, 402, 402, 4, 0, 152, 152, 174, 174, 201, 201, 317, 317, 3, 0, 445, 445, 459, 459, 499, 499, 4, 0, 250, 250, 446, 446, 494, 496, 498, 498, 2, 0, 74, 74, 320, 320, 3, 0, 459, 459, 492, 492, 499, 499, 2, 0, 439, 439, 450, 450, 2, 0, 457, 457, 467, 467, 4, 0, 140, 140, 244, 244, 397, 397, 404, 404, 2, 0, 19, 19, 369, 369, 2, 0, 5, 5, 11, 11, 2, 0, 509, 509, 529, 530, 4, 0, 452, 452, 527, 527, 531, 531, 534, 534, 2, 0, 529, 530, 532, 532, 1, 0, 529, 530, 1, 0, 538, 539, 2, 0, 538, 538, 541, 541, 4, 0, 452, 452, 527, 527, 529, 531, 533, 534, 3, 0, 241, 241, 508, 509, 529, 530, 2, 0, 140, 140, 397, 397, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 222, 222, 229, 229, 334, 334, 436, 436, 470, 470, 472, 472, 488, 488, 502, 502, 15, 0, 97, 97, 165, 165, 222, 222, 229, 229, 334, 334, 427, 427, 436, 436, 442, 442, 448, 449, 454, 454, 460, 460, 470, 475, 488, 488, 491, 491, 502, 503, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 200, 200, 207, 208, 389, 389, 413, 413, 527, 527, 55, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 78, 78, 84, 85, 91, 91, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 194, 194, 197, 197, 199, 199, 201, 201, 205, 205, 207, 209, 214, 214, 220, 220, 222, 223, 229, 229, 243, 243, 245, 245, 264, 264, 276, 276, 281, 281, 283, 283, 293, 293, 317, 317, 321, 323, 334, 334, 357, 358, 364, 364, 367, 367, 378, 380, 395, 395, 398, 399, 408, 408, 419, 420, 436, 436, 469, 469, 488, 488, 502, 502, 1, 0, 437, 504, 2486, 0, 377, 1, 0, 0, 0, 2, 387, 1, 0, 0, 0, 4, 401, 1, 0, 0, 0, 6, 403, 1, 0, 0, 0, 8, 419, 1, 0, 0, 0, 10, 423, 1, 0, 0, 0, 12, 425, 1, 0, 0, 0, 14, 428, 1, 0, 0, 0, 16, 439, 1, 0, 0, 0, 18, 447, 1, 0, 0, 0, 20, 455, 1, 0, 0, 0, 22, 457, 1, 0, 0, 0, 24, 509, 1, 0, 0, 0, 26, 511, 1, 0, 0, 0, 28, 518, 1, 0, 0, 0, 30, 522, 1, 0, 0, 0, 32, 526, 1, 0, 0, 0, 34, 530, 1, 0, 0, 0, 36, 584, 1, 0, 0, 0, 38, 590, 1, 0, 0, 0, 40, 596, 1, 0, 0, 0, 42, 598, 1, 0, 0, 0, 44, 640, 1, 0, 0, 0, 46, 654, 1, 0, 0, 0, 48, 656, 1, 0, 0, 0, 50, 667, 1, 0, 0, 0, 52, 671, 1, 0, 0, 0, 54, 673, 1, 0, 0, 0, 56, 721, 1, 0, 0, 0, 58, 723, 1, 0, 0, 0, 60, 727, 1, 0, 0, 0, 62, 735, 1, 0, 0, 0, 64, 743, 1, 0, 0, 0, 66, 747, 1, 0, 0, 0, 68, 782, 1, 0, 0, 0, 70, 798, 1, 0, 0, 0, 72, 800, 1, 0, 0, 0, 74, 810, 1, 0, 0, 0, 76, 812, 1, 0, 0, 0, 78, 819, 1, 0, 0, 0, 80, 821, 1, 0, 0, 0, 82, 829, 1, 0, 0, 0, 84, 837, 1, 0, 0, 0, 86, 839, 1, 0, 0, 0, 88, 843, 1, 0, 0, 0, 90, 847, 1, 0, 0, 0, 92, 870, 1, 0, 0, 0, 94, 874, 1, 0, 0, 0, 96, 876, 1, 0, 0, 0, 98, 892, 1, 0, 0, 0, 100, 894, 1, 0, 0, 0, 102, 899, 1, 0, 0, 0, 104, 911, 1, 0, 0, 0, 106, 930, 1, 0, 0, 0, 108, 950, 1, 0, 0, 0, 110, 961, 1, 0, 0, 0, 112, 963, 1, 0, 0, 0, 114, 976, 1, 0, 0, 0, 116, 983, 1, 0, 0, 0, 118, 986, 1, 0, 0, 0, 120, 995, 1, 0, 0, 0, 122, 999, 1, 0, 0, 0, 124, 1003, 1, 0, 0, 0, 126, 1006, 1, 0, 0, 0, 128, 1014, 1, 0, 0, 0, 130, 1019, 1, 0, 0, 0, 132, 1036, 1, 0, 0, 0, 134, 1043, 1, 0, 0, 0, 136, 1053, 1, 0, 0, 0, 138, 1062, 1, 0, 0, 0, 140, 1072, 1, 0, 0, 0, 142, 1091, 1, 0, 0, 0, 144, 1093, 1, 0, 0, 0, 146, 1106, 1, 0, 0, 0, 148, 1109, 1, 0, 0, 0, 150, 1118, 1, 0, 0, 0, 152, 1129, 1, 0, 0, 0, 154, 1142, 1, 0, 0, 0, 156, 1177, 1, 0, 0, 0, 158, 1196, 1, 0, 0, 0, 160, 1205, 1, 0, 0, 0, 162, 1214, 1, 0, 0, 0, 164, 1233, 1, 0, 0, 0, 166, 1255, 1, 0, 0, 0, 168, 1257, 1, 0, 0, 0, 170, 1287, 1, 0, 0, 0, 172, 1301, 1, 0, 0, 0, 174, 1303, 1, 0, 0, 0, 176, 1317, 1, 0, 0, 0, 178, 1343, 1, 0, 0, 0, 180, 1386, 1, 0, 0, 0, 182, 1388, 1, 0, 0, 0, 184, 1394, 1, 0, 0, 0, 186, 1396, 1, 0, 0, 0, 188, 1401, 1, 0, 0, 0, 190, 1406, 1, 0, 0, 0, 192, 1418, 1, 0, 0, 0, 194, 1435, 1, 0, 0, 0, 196, 1437, 1, 0, 0, 0, 198, 1439, 1, 0, 0, 0, 200, 1448, 1, 0, 0, 0, 202, 1450, 1, 0, 0, 0, 204, 1453, 1, 0, 0, 0, 206, 1503, 1, 0, 0, 0, 208, 1505, 1, 0, 0, 0, 210, 1508, 1, 0, 0, 0, 212, 1510, 1, 0, 0, 0, 214, 1517, 1, 0, 0, 0, 216, 1519, 1, 0, 0, 0, 218, 1521, 1, 0, 0, 0, 220, 1524, 1, 0, 0, 0, 222, 1533, 1, 0, 0, 0, 224, 1538, 1, 0, 0, 0, 226, 1552, 1, 0, 0, 0, 228, 1580, 1, 0, 0, 0, 230, 1590, 1, 0, 0, 0, 232, 1598, 1, 0, 0, 0, 234, 1603, 1, 0, 0, 0, 236, 1635, 1, 0, 0, 0, 238, 1637, 1, 0, 0, 0, 240, 1646, 1, 0, 0, 0, 242, 1657, 1, 0, 0, 0, 244, 1669, 1, 0, 0, 0, 246, 1695, 1, 0, 0, 0, 248, 1697, 1, 0, 0, 0, 250, 1715, 1, 0, 0, 0, 252, 1717, 1, 0, 0, 0, 254, 1722, 1, 0, 0, 0, 256, 1725, 1, 0, 0, 0, 258, 1739, 1, 0, 0, 0, 260, 1825, 1, 0, 0, 0, 262, 1856, 1, 0, 0, 0, 264, 1862, 1, 0, 0, 0, 266, 1980, 1, 0, 0, 0, 268, 1992, 1, 0, 0, 0, 270, 1996, 1, 0, 0, 0, 272, 2002, 1, 0, 0, 0, 274, 2004, 1, 0, 0, 0, 276, 2006, 1, 0, 0, 0, 278, 2010, 1, 0, 0, 0, 280, 2012, 1, 0, 0, 0, 282, 2017, 1, 0, 0, 0, 284, 2024, 1, 0, 0, 0, 286, 2028, 1, 0, 0, 0, 288, 2033, 1, 0, 0, 0, 290, 2043, 1, 0, 0, 0, 292, 2046, 1, 0, 0, 0, 294, 2052, 1, 0, 0, 0, 296, 2062, 1, 0, 0, 0, 298, 2064, 1, 0, 0, 0, 300, 2068, 1, 0, 0, 0, 302, 2079, 1, 0, 0, 0, 304, 2081, 1, 0, 0, 0, 306, 2083, 1, 0, 0, 0, 308, 2085, 1, 0, 0, 0, 310, 2090, 1, 0, 0, 0, 312, 2092, 1, 0, 0, 0, 314, 2094, 1, 0, 0, 0, 316, 2099, 1, 0, 0, 0, 318, 2116, 1, 0, 0, 0, 320, 2130, 1, 0, 0, 0, 322, 2144, 1, 0, 0, 0, 324, 2158, 1, 0, 0, 0, 326, 2160, 1, 0, 0, 0, 328, 2168, 1, 0, 0, 0, 330, 2171, 1, 0, 0, 0, 332, 2175, 1, 0, 0, 0, 334, 2178, 1, 0, 0, 0, 336, 2189, 1, 0, 0, 0, 338, 2199, 1, 0, 0, 0, 340, 2205, 1, 0, 0, 0, 342, 2213, 1, 0, 0, 0, 344, 2229, 1, 0, 0, 0, 346, 2238, 1, 0, 0, 0, 348, 2240, 1, 0, 0, 0, 350, 2242, 1, 0, 0, 0, 352, 2258, 1, 0, 0, 0, 354, 2260, 1, 0, 0, 0, 356, 2263, 1, 0, 0, 0, 358, 2265, 1, 0, 0, 0, 360, 2267, 1, 0, 0, 0, 362, 2269, 1, 0, 0, 0, 364, 2271, 1, 0, 0, 0, 366, 2273, 1, 0, 0, 0, 368, 2275, 1, 0, 0, 0, 370, 2277, 1, 0, 0, 0, 372, 2279, 1, 0, 0, 0, 374, 376, 3, 2, 1, 0, 375, 374, 1, 0, 0, 0, 376, 379, 1, 0, 0, 0, 377, 375, 1, 0, 0, 0, 377, 378, 1, 0, 0, 0, 378, 380, 1, 0, 0, 0, 379, 377, 1, 0, 0, 0, 380, 381, 5, 0, 0, 1, 381, 1, 1, 0, 0, 0, 382, 384, 3, 4, 2, 0, 383, 385, 5, 521, 0, 0, 384, 383, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 388, 1, 0, 0, 0, 386, 388, 3, 6, 3, 0, 387, 382, 1, 0, 0, 0, 387, 386, 1, 0, 0, 0, 388, 3, 1, 0, 0, 0, 389, 402, 3, 8, 4, 0, 390, 402, 3, 10, 5, 0, 391, 402, 3, 12, 6, 0, 392, 402, 3, 14, 7, 0, 393, 402, 3, 20, 10, 0, 394, 402, 3, 24, 12, 0, 395, 402, 3, 26, 13, 0, 396, 402, 3, 28, 14, 0, 397, 402, 3, 30, 15, 0, 398, 402, 3, 32, 16, 0, 399, 402, 3, 34, 17, 0, 400, 402, 3, 36, 18, 0, 401, 389, 1, 0, 0, 0, 401, 390, 1, 0, 0, 0, 401, 391, 1, 0, 0, 0, 401, 392, 1, 0, 0, 0, 401, 393, 1, 0, 0, 0, 401, 394, 1, 0, 0, 0, 401, 395, 1, 0, 0, 0, 401, 396, 1, 0, 0, 0, 401, 397, 1, 0, 0, 0, 401, 398, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 400, 1, 0, 0, 0, 402, 5, 1, 0, 0, 0, 403, 404, 5, 521, 0, 0, 404, 7, 1, 0, 0, 0, 405, 420, 3, 40, 20, 0, 406, 420, 3, 102, 51, 0, 407, 420, 3, 104, 52, 0, 408, 420, 3, 106, 53, 0, 409, 420, 3, 100, 50, 0, 410, 420, 3, 112, 56, 0, 411, 420, 3, 126, 63, 0, 412, 420, 3, 128, 64, 0, 413, 420, 3, 130, 65, 0, 414, 420, 3, 132, 66, 0, 415, 420, 3, 134, 67, 0, 416, 420, 3, 136, 68, 0, 417, 420, 3, 138, 69, 0, 418, 420, 3, 140, 70, 0, 419, 405, 1, 0, 0, 0, 419, 406, 1, 0, 0, 0, 419, 407, 1, 0, 0, 0, 419, 408, 1, 0, 0, 0, 419, 409, 1, 0, 0, 0, 419, 410, 1, 0, 0, 0, 419, 411, 1, 0, 0, 0, 419, 412, 1, 0, 0, 0, 419, 413, 1, 0, 0, 0, 419, 414, 1, 0, 0, 0, 419, 415, 1, 0, 0, 0, 419, 416, 1, 0, 0, 0, 419, 417, 1, 0, 0, 0, 419, 418, 1, 0, 0, 0, 420, 9, 1, 0, 0, 0, 421, 424, 3, 156, 78, 0, 422, 424, 3, 142, 71, 0, 423, 421, 1, 0, 0, 0, 423, 422, 1, 0, 0, 0, 424, 11, 1, 0, 0, 0, 425, 426, 7, 0, 0, 0, 426, 427, 3, 320, 160, 0, 427, 13, 1, 0, 0, 0, 428, 432, 5, 135, 0, 0, 429, 433, 3, 16, 8, 0, 430, 431, 5, 479, 0, 0, 431, 433, 5, 146, 0, 0, 432, 429, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 437, 1, 0, 0, 0, 434, 438, 3, 10, 5, 0, 435, 438, 3, 144, 72, 0, 436, 438, 3, 154, 77, 0, 437, 434, 1, 0, 0, 0, 437, 435, 1, 0, 0, 0, 437, 436, 1, 0, 0, 0, 438, 15, 1, 0, 0, 0, 439, 444, 3, 18, 9, 0, 440, 441, 5, 520, 0, 0, 441, 443, 3, 18, 9, 0, 442, 440, 1, 0, 0, 0, 443, 446, 1, 0, 0, 0, 444, 442, 1, 0, 0, 0, 444, 445, 1, 0, 0, 0, 445, 17, 1, 0, 0, 0, 446, 444, 1, 0, 0, 0, 447, 448, 7, 1, 0, 0, 448, 19, 1, 0, 0, 0, 449, 450, 5, 410, 0, 0, 450, 451, 5, 441, 0, 0, 451, 456, 3, 310, 155, 0, 452, 453, 5, 410, 0, 0, 453, 456, 3, 314, 157, 0, 454, 456, 3, 22, 11, 0, 455, 449, 1, 0, 0, 0, 455, 452, 1, 0, 0, 0, 455, 454, 1, 0, 0, 0, 456, 21, 1, 0, 0, 0, 457, 458, 5, 410, 0, 0, 458, 459, 5, 227, 0, 0, 459, 464, 3, 326, 163, 0, 460, 461, 5, 520, 0, 0, 461, 463, 3, 326, 163, 0, 462, 460, 1, 0, 0, 0, 463, 466, 1, 0, 0, 0, 464, 462, 1, 0, 0, 0, 464, 465, 1, 0, 0, 0, 465, 23, 1, 0, 0, 0, 466, 464, 1, 0, 0, 0, 467, 468, 5, 341, 0, 0, 468, 510, 7, 2, 0, 0, 469, 470, 5, 341, 0, 0, 470, 471, 5, 76, 0, 0, 471, 510, 7, 3, 0, 0, 472, 473, 5, 341, 0, 0, 473, 476, 5, 374, 0, 0, 474, 475, 7, 4, 0, 0, 475, 477, 3, 314, 157, 0, 476, 474, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 479, 1, 0, 0, 0, 478, 480, 3, 262, 131, 0, 479, 478, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 510, 1, 0, 0, 0, 481, 482, 5, 341, 0, 0, 482, 483, 5, 58, 0, 0, 483, 486, 7, 4, 0, 0, 484, 487, 3, 322, 161, 0, 485, 487, 3, 320, 160, 0, 486, 484, 1, 0, 0, 0, 486, 485, 1, 0, 0, 0, 487, 489, 1, 0, 0, 0, 488, 490, 3, 262, 131, 0, 489, 488, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 510, 1, 0, 0, 0, 491, 492, 5, 341, 0, 0, 492, 497, 5, 72, 0, 0, 493, 494, 5, 373, 0, 0, 494, 498, 3, 320, 160, 0, 495, 496, 5, 501, 0, 0, 496, 498, 3, 322, 161, 0, 497, 493, 1, 0, 0, 0, 497, 495, 1, 0, 0, 0, 498, 510, 1, 0, 0, 0, 499, 501, 5, 341, 0, 0, 500, 502, 5, 411, 0, 0, 501, 500, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 510, 5, 154, 0, 0, 504, 506, 5, 341, 0, 0, 505, 507, 5, 152, 0, 0, 506, 505, 1, 0, 0, 0, 506, 507, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 510, 5, 227, 0, 0, 509, 467, 1, 0, 0, 0, 509, 469, 1, 0, 0, 0, 509, 472, 1, 0, 0, 0, 509, 481, 1, 0, 0, 0, 509, 491, 1, 0, 0, 0, 509, 499, 1, 0, 0, 0, 509, 504, 1, 0, 0, 0, 510, 25, 1, 0, 0, 0, 511, 512, 5, 468, 0, 0, 512, 513, 5, 226, 0, 0, 513, 516, 3, 326, 163, 0, 514, 515, 5, 433, 0, 0, 515, 517, 3, 334, 167, 0, 516, 514, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 27, 1, 0, 0, 0, 518, 519, 5, 500, 0, 0, 519, 520, 5, 226, 0, 0, 520, 521, 3, 326, 163, 0, 521, 29, 1, 0, 0, 0, 522, 524, 5, 340, 0, 0, 523, 525, 3, 336, 168, 0, 524, 523, 1, 0, 0, 0, 524, 525, 1, 0, 0, 0, 525, 31, 1, 0, 0, 0, 526, 528, 5, 312, 0, 0, 527, 529, 3, 338, 169, 0, 528, 527, 1, 0, 0, 0, 528, 529, 1, 0, 0, 0, 529, 33, 1, 0, 0, 0, 530, 531, 7, 5, 0, 0, 531, 532, 5, 463, 0, 0, 532, 533, 3, 110, 55, 0, 533, 35, 1, 0, 0, 0, 534, 535, 5, 437, 0, 0, 535, 536, 5, 463, 0, 0, 536, 537, 5, 433, 0, 0, 537, 540, 3, 38, 19, 0, 538, 539, 5, 17, 0, 0, 539, 541, 3, 326, 163, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 585, 1, 0, 0, 0, 542, 543, 5, 437, 0, 0, 543, 544, 5, 456, 0, 0, 544, 545, 5, 433, 0, 0, 545, 548, 3, 38, 19, 0, 546, 547, 5, 17, 0, 0, 547, 549, 3, 326, 163, 0, 548, 546, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 552, 1, 0, 0, 0, 550, 551, 5, 311, 0, 0, 551, 553, 3, 326, 163, 0, 552, 550, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 585, 1, 0, 0, 0, 554, 555, 5, 437, 0, 0, 555, 556, 7, 6, 0, 0, 556, 557, 5, 433, 0, 0, 557, 558, 3, 38, 19, 0, 558, 559, 5, 311, 0, 0, 559, 560, 3, 326, 163, 0, 560, 585, 1, 0, 0, 0, 561, 562, 5, 437, 0, 0, 562, 563, 5, 486, 0, 0, 563, 585, 3, 38, 19, 0, 564, 565, 5, 437, 0, 0, 565, 566, 5, 453, 0, 0, 566, 567, 5, 456, 0, 0, 567, 568, 5, 433, 0, 0, 568, 569, 3, 38, 19, 0, 569, 570, 5, 311, 0, 0, 570, 571, 3, 326, 163, 0, 571, 572, 5, 466, 0, 0, 572, 573, 3, 326, 163, 0, 573, 585, 1, 0, 0, 0, 574, 575, 5, 437, 0, 0, 575, 576, 5, 443, 0, 0, 576, 577, 5, 456, 0, 0, 577, 578, 5, 433, 0, 0, 578, 579, 3, 38, 19, 0, 579, 580, 5, 146, 0, 0, 580, 581, 3, 326, 163, 0, 581, 582, 5, 17, 0, 0, 582, 583, 3, 326, 163, 0, 583, 585, 1, 0, 0, 0, 584, 534, 1, 0, 0, 0, 584, 542, 1, 0, 0, 0, 584, 554, 1, 0, 0, 0, 584, 561, 1, 0, 0, 0, 584, 564, 1, 0, 0, 0, 584, 574, 1, 0, 0, 0, 585, 37, 1, 0, 0, 0, 586, 588, 5, 534, 0, 0, 587, 586, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 591, 3, 326, 163, 0, 590, 587, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 590, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 39, 1, 0, 0, 0, 594, 597, 3, 42, 21, 0, 595, 597, 3, 44, 22, 0, 596, 594, 1, 0, 0, 0, 596, 595, 1, 0, 0, 0, 597, 41, 1, 0, 0, 0, 598, 600, 5, 72, 0, 0, 599, 601, 5, 497, 0, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 604, 5, 373, 0, 0, 603, 605, 3, 330, 165, 0, 604, 603, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 607, 3, 318, 159, 0, 607, 608, 5, 516, 0, 0, 608, 613, 3, 46, 23, 0, 609, 610, 5, 520, 0, 0, 610, 612, 3, 46, 23, 0, 611, 609, 1, 0, 0, 0, 612, 615, 1, 0, 0, 0, 613, 611, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 618, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 616, 617, 5, 520, 0, 0, 617, 619, 3, 80, 40, 0, 618, 616, 1, 0, 0, 0, 618, 619, 1, 0, 0, 0, 619, 622, 1, 0, 0, 0, 620, 621, 5, 520, 0, 0, 621, 623, 3, 82, 41, 0, 622, 620, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 626, 1, 0, 0, 0, 624, 625, 5, 520, 0, 0, 625, 627, 3, 86, 43, 0, 626, 624, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 631, 5, 517, 0, 0, 629, 630, 5, 59, 0, 0, 630, 632, 5, 537, 0, 0, 631, 629, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 634, 1, 0, 0, 0, 633, 635, 3, 88, 44, 0, 634, 633, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 638, 3, 328, 164, 0, 637, 639, 3, 96, 48, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 43, 1, 0, 0, 0, 640, 641, 5, 72, 0, 0, 641, 643, 5, 373, 0, 0, 642, 644, 3, 330, 165, 0, 643, 642, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 3, 318, 159, 0, 646, 649, 3, 328, 164, 0, 647, 648, 5, 17, 0, 0, 648, 650, 3, 156, 78, 0, 649, 647, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 45, 1, 0, 0, 0, 651, 655, 3, 48, 24, 0, 652, 655, 3, 72, 36, 0, 653, 655, 3, 76, 38, 0, 654, 651, 1, 0, 0, 0, 654, 652, 1, 0, 0, 0, 654, 653, 1, 0, 0, 0, 655, 47, 1, 0, 0, 0, 656, 657, 3, 50, 25, 0, 657, 659, 3, 56, 28, 0, 658, 660, 3, 70, 35, 0, 659, 658, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 663, 1, 0, 0, 0, 661, 662, 5, 59, 0, 0, 662, 664, 5, 537, 0, 0, 663, 661, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 49, 1, 0, 0, 0, 665, 668, 3, 326, 163, 0, 666, 668, 3, 256, 128, 0, 667, 665, 1, 0, 0, 0, 667, 666, 1, 0, 0, 0, 668, 51, 1, 0, 0, 0, 669, 672, 3, 326, 163, 0, 670, 672, 4, 26, 0, 0, 671, 669, 1, 0, 0, 0, 671, 670, 1, 0, 0, 0, 672, 53, 1, 0, 0, 0, 673, 674, 5, 516, 0, 0, 674, 679, 3, 52, 26, 0, 675, 676, 5, 520, 0, 0, 676, 678, 3, 52, 26, 0, 677, 675, 1, 0, 0, 0, 678, 681, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 682, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 682, 683, 5, 517, 0, 0, 683, 55, 1, 0, 0, 0, 684, 722, 7, 7, 0, 0, 685, 687, 7, 8, 0, 0, 686, 688, 3, 58, 29, 0, 687, 686, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 722, 1, 0, 0, 0, 689, 691, 5, 379, 0, 0, 690, 692, 3, 58, 29, 0, 691, 690, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 699, 1, 0, 0, 0, 693, 695, 7, 9, 0, 0, 694, 696, 5, 206, 0, 0, 695, 694, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 698, 5, 378, 0, 0, 698, 700, 5, 504, 0, 0, 699, 693, 1, 0, 0, 0, 699, 700, 1, 0, 0, 0, 700, 722, 1, 0, 0, 0, 701, 703, 7, 10, 0, 0, 702, 704, 3, 60, 30, 0, 703, 702, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 722, 1, 0, 0, 0, 705, 707, 7, 11, 0, 0, 706, 708, 3, 64, 32, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 722, 1, 0, 0, 0, 709, 711, 5, 469, 0, 0, 710, 712, 3, 66, 33, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 722, 1, 0, 0, 0, 713, 715, 5, 321, 0, 0, 714, 716, 3, 68, 34, 0, 715, 714, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 722, 1, 0, 0, 0, 717, 719, 5, 294, 0, 0, 718, 720, 3, 62, 31, 0, 719, 718, 1, 0, 0, 0, 719, 720, 1, 0, 0, 0, 720, 722, 1, 0, 0, 0, 721, 684, 1, 0, 0, 0, 721, 685, 1, 0, 0, 0, 721, 689, 1, 0, 0, 0, 721, 701, 1, 0, 0, 0, 721, 705, 1, 0, 0, 0, 721, 709, 1, 0, 0, 0, 721, 713, 1, 0, 0, 0, 721, 717, 1, 0, 0, 0, 722, 57, 1, 0, 0, 0, 723, 724, 5, 516, 0, 0, 724, 725, 3, 358, 179, 0, 725, 726, 5, 517, 0, 0, 726, 59, 1, 0, 0, 0, 727, 728, 5, 516, 0, 0, 728, 731, 3, 358, 179, 0, 729, 730, 5, 520, 0, 0, 730, 732, 3, 358, 179, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 734, 5, 517, 0, 0, 734, 61, 1, 0, 0, 0, 735, 736, 5, 516, 0, 0, 736, 739, 3, 356, 178, 0, 737, 738, 5, 520, 0, 0, 738, 740, 3, 356, 178, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 742, 5, 517, 0, 0, 742, 63, 1, 0, 0, 0, 743, 744, 5, 507, 0, 0, 744, 745, 3, 56, 28, 0, 745, 746, 5, 506, 0, 0, 746, 65, 1, 0, 0, 0, 747, 748, 5, 507, 0, 0, 748, 749, 3, 56, 28, 0, 749, 750, 5, 520, 0, 0, 750, 751, 3, 56, 28, 0, 751, 752, 1, 0, 0, 0, 752, 753, 5, 506, 0, 0, 753, 67, 1, 0, 0, 0, 754, 755, 5, 507, 0, 0, 755, 756, 3, 52, 26, 0, 756, 763, 3, 56, 28, 0, 757, 758, 5, 520, 0, 0, 758, 759, 3, 52, 26, 0, 759, 760, 3, 56, 28, 0, 760, 762, 1, 0, 0, 0, 761, 757, 1, 0, 0, 0, 762, 765, 1, 0, 0, 0, 763, 761, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 766, 1, 0, 0, 0, 765, 763, 1, 0, 0, 0, 766, 767, 5, 506, 0, 0, 767, 783, 1, 0, 0, 0, 768, 769, 5, 516, 0, 0, 769, 770, 3, 52, 26, 0, 770, 777, 3, 56, 28, 0, 771, 772, 5, 520, 0, 0, 772, 773, 3, 52, 26, 0, 773, 774, 3, 56, 28, 0, 774, 776, 1, 0, 0, 0, 775, 771, 1, 0, 0, 0, 776, 779, 1, 0, 0, 0, 777, 775, 1, 0, 0, 0, 777, 778, 1, 0, 0, 0, 778, 780, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 780, 781, 5, 517, 0, 0, 781, 783, 1, 0, 0, 0, 782, 754, 1, 0, 0, 0, 782, 768, 1, 0, 0, 0, 783, 69, 1, 0, 0, 0, 784, 785, 5, 64, 0, 0, 785, 787, 3, 84, 42, 0, 786, 784, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 789, 5, 288, 0, 0, 789, 792, 5, 466, 0, 0, 790, 791, 5, 241, 0, 0, 791, 793, 5, 125, 0, 0, 792, 790, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 799, 1, 0, 0, 0, 794, 796, 5, 241, 0, 0, 795, 794, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 799, 5, 244, 0, 0, 798, 786, 1, 0, 0, 0, 798, 795, 1, 0, 0, 0, 799, 71, 1, 0, 0, 0, 800, 801, 3, 50, 25, 0, 801, 802, 3, 56, 28, 0, 802, 805, 5, 218, 0, 0, 803, 804, 5, 151, 0, 0, 804, 806, 3, 74, 37, 0, 805, 803, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 808, 1, 0, 0, 0, 807, 809, 5, 423, 0, 0, 808, 807, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 73, 1, 0, 0, 0, 810, 811, 5, 537, 0, 0, 811, 75, 1, 0, 0, 0, 812, 813, 3, 50, 25, 0, 813, 814, 5, 17, 0, 0, 814, 817, 3, 78, 39, 0, 815, 816, 5, 59, 0, 0, 816, 818, 5, 537, 0, 0, 817, 815, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 77, 1, 0, 0, 0, 819, 820, 3, 256, 128, 0, 820, 79, 1, 0, 0, 0, 821, 822, 5, 424, 0, 0, 822, 823, 5, 146, 0, 0, 823, 824, 3, 52, 26, 0, 824, 825, 5, 17, 0, 0, 825, 826, 3, 256, 128, 0, 826, 81, 1, 0, 0, 0, 827, 828, 5, 64, 0, 0, 828, 830, 3, 84, 42, 0, 829, 827, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 832, 5, 288, 0, 0, 832, 833, 5, 466, 0, 0, 833, 834, 3, 54, 27, 0, 834, 835, 5, 241, 0, 0, 835, 836, 5, 125, 0, 0, 836, 83, 1, 0, 0, 0, 837, 838, 3, 302, 151, 0, 838, 85, 1, 0, 0, 0, 839, 840, 5, 277, 0, 0, 840, 841, 5, 146, 0, 0, 841, 842, 5, 371, 0, 0, 842, 87, 1, 0, 0, 0, 843, 844, 5, 269, 0, 0, 844, 845, 5, 34, 0, 0, 845, 846, 3, 90, 45, 0, 846, 89, 1, 0, 0, 0, 847, 848, 5, 516, 0, 0, 848, 853, 3, 92, 46, 0, 849, 850, 5, 520, 0, 0, 850, 852, 3, 92, 46, 0, 851, 849, 1, 0, 0, 0, 852, 855, 1, 0, 0, 0, 853, 851, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 856, 1, 0, 0, 0, 855, 853, 1, 0, 0, 0, 856, 857, 5, 517, 0, 0, 857, 91, 1, 0, 0, 0, 858, 871, 3, 52, 26, 0, 859, 860, 5, 516, 0, 0, 860, 865, 3, 94, 47, 0, 861, 862, 5, 520, 0, 0, 862, 864, 3, 94, 47, 0, 863, 861, 1, 0, 0, 0, 864, 867, 1, 0, 0, 0, 865, 863, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 868, 1, 0, 0, 0, 867, 865, 1, 0, 0, 0, 868, 869, 5, 517, 0, 0, 869, 871, 1, 0, 0, 0, 870, 858, 1, 0, 0, 0, 870, 859, 1, 0, 0, 0, 871, 93, 1, 0, 0, 0, 872, 875, 3, 278, 139, 0, 873, 875, 3, 352, 176, 0, 874, 872, 1, 0, 0, 0, 874, 873, 1, 0, 0, 0, 875, 95, 1, 0, 0, 0, 876, 877, 5, 202, 0, 0, 877, 886, 3, 320, 160, 0, 878, 882, 5, 516, 0, 0, 879, 881, 3, 98, 49, 0, 880, 879, 1, 0, 0, 0, 881, 884, 1, 0, 0, 0, 882, 880, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 885, 1, 0, 0, 0, 884, 882, 1, 0, 0, 0, 885, 887, 5, 517, 0, 0, 886, 878, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 97, 1, 0, 0, 0, 888, 889, 7, 12, 0, 0, 889, 893, 7, 13, 0, 0, 890, 891, 7, 14, 0, 0, 891, 893, 7, 15, 0, 0, 892, 888, 1, 0, 0, 0, 892, 890, 1, 0, 0, 0, 893, 99, 1, 0, 0, 0, 894, 895, 5, 72, 0, 0, 895, 896, 5, 441, 0, 0, 896, 897, 3, 312, 156, 0, 897, 898, 3, 328, 164, 0, 898, 101, 1, 0, 0, 0, 899, 900, 5, 72, 0, 0, 900, 902, 5, 447, 0, 0, 901, 903, 3, 330, 165, 0, 902, 901, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 904, 1, 0, 0, 0, 904, 907, 3, 316, 158, 0, 905, 906, 5, 59, 0, 0, 906, 908, 5, 537, 0, 0, 907, 905, 1, 0, 0, 0, 907, 908, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 910, 3, 328, 164, 0, 910, 103, 1, 0, 0, 0, 911, 913, 5, 72, 0, 0, 912, 914, 5, 497, 0, 0, 913, 912, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 917, 5, 501, 0, 0, 916, 918, 3, 330, 165, 0, 917, 916, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 921, 3, 324, 162, 0, 920, 922, 3, 54, 27, 0, 921, 920, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 925, 1, 0, 0, 0, 923, 924, 5, 59, 0, 0, 924, 926, 5, 537, 0, 0, 925, 923, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 928, 5, 17, 0, 0, 928, 929, 3, 156, 78, 0, 929, 105, 1, 0, 0, 0, 930, 934, 5, 72, 0, 0, 931, 935, 5, 497, 0, 0, 932, 933, 5, 497, 0, 0, 933, 935, 5, 370, 0, 0, 934, 931, 1, 0, 0, 0, 934, 932, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 938, 5, 153, 0, 0, 937, 939, 3, 330, 165, 0, 938, 937, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 3, 268, 134, 0, 941, 942, 5, 17, 0, 0, 942, 945, 3, 302, 151, 0, 943, 944, 5, 195, 0, 0, 944, 946, 7, 16, 0, 0, 945, 943, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 948, 1, 0, 0, 0, 947, 949, 3, 108, 54, 0, 948, 947, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 107, 1, 0, 0, 0, 950, 951, 5, 412, 0, 0, 951, 952, 5, 463, 0, 0, 952, 958, 3, 110, 55, 0, 953, 954, 5, 520, 0, 0, 954, 955, 5, 463, 0, 0, 955, 957, 3, 110, 55, 0, 956, 953, 1, 0, 0, 0, 957, 960, 1, 0, 0, 0, 958, 956, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 109, 1, 0, 0, 0, 960, 958, 1, 0, 0, 0, 961, 962, 5, 537, 0, 0, 962, 111, 1, 0, 0, 0, 963, 964, 5, 8, 0, 0, 964, 966, 5, 373, 0, 0, 965, 967, 3, 332, 166, 0, 966, 965, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 974, 3, 320, 160, 0, 969, 975, 3, 114, 57, 0, 970, 975, 3, 116, 58, 0, 971, 975, 3, 118, 59, 0, 972, 975, 3, 120, 60, 0, 973, 975, 3, 122, 61, 0, 974, 969, 1, 0, 0, 0, 974, 970, 1, 0, 0, 0, 974, 971, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 974, 973, 1, 0, 0, 0, 975, 113, 1, 0, 0, 0, 976, 978, 5, 311, 0, 0, 977, 979, 3, 326, 163, 0, 978, 977, 1, 0, 0, 0, 978, 979, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 5, 388, 0, 0, 981, 982, 3, 326, 163, 0, 982, 115, 1, 0, 0, 0, 983, 984, 5, 340, 0, 0, 984, 985, 3, 334, 167, 0, 985, 117, 1, 0, 0, 0, 986, 987, 5, 437, 0, 0, 987, 988, 5, 64, 0, 0, 988, 989, 3, 84, 42, 0, 989, 990, 5, 288, 0, 0, 990, 991, 5, 466, 0, 0, 991, 993, 3, 54, 27, 0, 992, 994, 3, 124, 62, 0, 993, 992, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 119, 1, 0, 0, 0, 995, 996, 5, 116, 0, 0, 996, 997, 5, 64, 0, 0, 997, 998, 3, 84, 42, 0, 998, 121, 1, 0, 0, 0, 999, 1000, 5, 437, 0, 0, 1000, 1001, 5, 403, 0, 0, 1001, 1002, 3, 54, 27, 0, 1002, 123, 1, 0, 0, 0, 1003, 1004, 5, 241, 0, 0, 1004, 1005, 5, 125, 0, 0, 1005, 125, 1, 0, 0, 0, 1006, 1007, 5, 8, 0, 0, 1007, 1008, 5, 501, 0, 0, 1008, 1012, 3, 322, 161, 0, 1009, 1013, 3, 114, 57, 0, 1010, 1011, 5, 17, 0, 0, 1011, 1013, 3, 156, 78, 0, 1012, 1009, 1, 0, 0, 0, 1012, 1010, 1, 0, 0, 0, 1013, 127, 1, 0, 0, 0, 1014, 1015, 5, 8, 0, 0, 1015, 1016, 5, 447, 0, 0, 1016, 1017, 3, 314, 157, 0, 1017, 1018, 3, 116, 58, 0, 1018, 129, 1, 0, 0, 0, 1019, 1023, 5, 8, 0, 0, 1020, 1024, 5, 497, 0, 0, 1021, 1022, 5, 497, 0, 0, 1022, 1024, 5, 370, 0, 0, 1023, 1020, 1, 0, 0, 0, 1023, 1021, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1027, 5, 153, 0, 0, 1026, 1028, 3, 332, 166, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1030, 3, 270, 135, 0, 1030, 1031, 5, 17, 0, 0, 1031, 1034, 3, 302, 151, 0, 1032, 1033, 5, 195, 0, 0, 1033, 1035, 7, 16, 0, 0, 1034, 1032, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 131, 1, 0, 0, 0, 1036, 1037, 5, 116, 0, 0, 1037, 1039, 5, 441, 0, 0, 1038, 1040, 3, 332, 166, 0, 1039, 1038, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1042, 3, 310, 155, 0, 1042, 133, 1, 0, 0, 0, 1043, 1045, 5, 116, 0, 0, 1044, 1046, 5, 497, 0, 0, 1045, 1044, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1049, 5, 373, 0, 0, 1048, 1050, 3, 332, 166, 0, 1049, 1048, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1052, 3, 320, 160, 0, 1052, 135, 1, 0, 0, 0, 1053, 1054, 5, 116, 0, 0, 1054, 1056, 5, 447, 0, 0, 1055, 1057, 3, 332, 166, 0, 1056, 1055, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1060, 3, 314, 157, 0, 1059, 1061, 7, 17, 0, 0, 1060, 1059, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 137, 1, 0, 0, 0, 1062, 1064, 5, 116, 0, 0, 1063, 1065, 5, 497, 0, 0, 1064, 1063, 1, 0, 0, 0, 1064, 1065, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1068, 5, 501, 0, 0, 1067, 1069, 3, 332, 166, 0, 1068, 1067, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1071, 3, 322, 161, 0, 1071, 139, 1, 0, 0, 0, 1072, 1076, 5, 116, 0, 0, 1073, 1077, 5, 497, 0, 0, 1074, 1075, 5, 497, 0, 0, 1075, 1077, 5, 370, 0, 0, 1076, 1073, 1, 0, 0, 0, 1076, 1074, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1080, 5, 153, 0, 0, 1079, 1081, 3, 332, 166, 0, 1080, 1079, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1083, 3, 270, 135, 0, 1083, 141, 1, 0, 0, 0, 1084, 1086, 5, 132, 0, 0, 1085, 1084, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1092, 3, 144, 72, 0, 1088, 1092, 3, 152, 76, 0, 1089, 1090, 5, 132, 0, 0, 1090, 1092, 3, 154, 77, 0, 1091, 1085, 1, 0, 0, 0, 1091, 1088, 1, 0, 0, 0, 1091, 1089, 1, 0, 0, 0, 1092, 143, 1, 0, 0, 0, 1093, 1094, 5, 177, 0, 0, 1094, 1095, 7, 18, 0, 0, 1095, 1104, 3, 320, 160, 0, 1096, 1098, 3, 146, 73, 0, 1097, 1096, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 1, 0, 0, 0, 1099, 1101, 3, 54, 27, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1105, 3, 156, 78, 0, 1103, 1105, 3, 148, 74, 0, 1104, 1097, 1, 0, 0, 0, 1104, 1103, 1, 0, 0, 0, 1105, 145, 1, 0, 0, 0, 1106, 1107, 5, 268, 0, 0, 1107, 1108, 3, 334, 167, 0, 1108, 147, 1, 0, 0, 0, 1109, 1110, 5, 414, 0, 0, 1110, 1115, 3, 150, 75, 0, 1111, 1112, 5, 520, 0, 0, 1112, 1114, 3, 150, 75, 0, 1113, 1111, 1, 0, 0, 0, 1114, 1117, 1, 0, 0, 0, 1115, 1113, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 149, 1, 0, 0, 0, 1117, 1115, 1, 0, 0, 0, 1118, 1119, 5, 516, 0, 0, 1119, 1124, 3, 352, 176, 0, 1120, 1121, 5, 520, 0, 0, 1121, 1123, 3, 352, 176, 0, 1122, 1120, 1, 0, 0, 0, 1123, 1126, 1, 0, 0, 0, 1124, 1122, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1127, 1, 0, 0, 0, 1126, 1124, 1, 0, 0, 0, 1127, 1128, 5, 517, 0, 0, 1128, 151, 1, 0, 0, 0, 1129, 1130, 5, 24, 0, 0, 1130, 1131, 5, 354, 0, 0, 1131, 1132, 5, 340, 0, 0, 1132, 1136, 5, 521, 0, 0, 1133, 1134, 3, 144, 72, 0, 1134, 1135, 5, 521, 0, 0, 1135, 1137, 1, 0, 0, 0, 1136, 1133, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1141, 5, 122, 0, 0, 1141, 153, 1, 0, 0, 0, 1142, 1143, 5, 354, 0, 0, 1143, 1144, 5, 340, 0, 0, 1144, 1148, 5, 24, 0, 0, 1145, 1146, 3, 144, 72, 0, 1146, 1147, 5, 521, 0, 0, 1147, 1149, 1, 0, 0, 0, 1148, 1145, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1153, 5, 122, 0, 0, 1153, 155, 1, 0, 0, 0, 1154, 1155, 6, 78, -1, 0, 1155, 1178, 3, 158, 79, 0, 1156, 1157, 3, 160, 80, 0, 1157, 1158, 3, 156, 78, 5, 1158, 1178, 1, 0, 0, 0, 1159, 1160, 5, 516, 0, 0, 1160, 1161, 3, 156, 78, 0, 1161, 1162, 5, 517, 0, 0, 1162, 1178, 1, 0, 0, 0, 1163, 1165, 3, 168, 84, 0, 1164, 1166, 3, 228, 114, 0, 1165, 1164, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1168, 1, 0, 0, 0, 1167, 1169, 3, 232, 116, 0, 1168, 1167, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1178, 1, 0, 0, 0, 1170, 1172, 3, 166, 83, 0, 1171, 1173, 3, 228, 114, 0, 1172, 1171, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1175, 1, 0, 0, 0, 1174, 1176, 3, 232, 116, 0, 1175, 1174, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1178, 1, 0, 0, 0, 1177, 1154, 1, 0, 0, 0, 1177, 1156, 1, 0, 0, 0, 1177, 1159, 1, 0, 0, 0, 1177, 1163, 1, 0, 0, 0, 1177, 1170, 1, 0, 0, 0, 1178, 1193, 1, 0, 0, 0, 1179, 1180, 10, 3, 0, 0, 1180, 1182, 7, 19, 0, 0, 1181, 1183, 5, 5, 0, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1184, 1, 0, 0, 0, 1184, 1186, 3, 156, 78, 0, 1185, 1187, 3, 228, 114, 0, 1186, 1185, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1189, 1, 0, 0, 0, 1188, 1190, 3, 232, 116, 0, 1189, 1188, 1, 0, 0, 0, 1189, 1190, 1, 0, 0, 0, 1190, 1192, 1, 0, 0, 0, 1191, 1179, 1, 0, 0, 0, 1192, 1195, 1, 0, 0, 0, 1193, 1191, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 157, 1, 0, 0, 0, 1195, 1193, 1, 0, 0, 0, 1196, 1197, 5, 414, 0, 0, 1197, 1202, 3, 256, 128, 0, 1198, 1199, 5, 520, 0, 0, 1199, 1201, 3, 256, 128, 0, 1200, 1198, 1, 0, 0, 0, 1201, 1204, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 159, 1, 0, 0, 0, 1204, 1202, 1, 0, 0, 0, 1205, 1206, 5, 433, 0, 0, 1206, 1211, 3, 162, 81, 0, 1207, 1208, 5, 520, 0, 0, 1208, 1210, 3, 162, 81, 0, 1209, 1207, 1, 0, 0, 0, 1210, 1213, 1, 0, 0, 0, 1211, 1209, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 161, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1214, 1226, 3, 164, 82, 0, 1215, 1216, 5, 516, 0, 0, 1216, 1221, 3, 52, 26, 0, 1217, 1218, 5, 520, 0, 0, 1218, 1220, 3, 52, 26, 0, 1219, 1217, 1, 0, 0, 0, 1220, 1223, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1224, 1, 0, 0, 0, 1223, 1221, 1, 0, 0, 0, 1224, 1225, 5, 517, 0, 0, 1225, 1227, 1, 0, 0, 0, 1226, 1215, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1229, 5, 17, 0, 0, 1229, 1230, 5, 516, 0, 0, 1230, 1231, 3, 156, 78, 0, 1231, 1232, 5, 517, 0, 0, 1232, 163, 1, 0, 0, 0, 1233, 1234, 3, 302, 151, 0, 1234, 165, 1, 0, 0, 0, 1235, 1237, 3, 168, 84, 0, 1236, 1238, 3, 174, 87, 0, 1237, 1236, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1240, 1, 0, 0, 0, 1239, 1241, 3, 202, 101, 0, 1240, 1239, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1243, 1, 0, 0, 0, 1242, 1244, 3, 204, 102, 0, 1243, 1242, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1246, 1, 0, 0, 0, 1245, 1247, 3, 218, 109, 0, 1246, 1245, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1249, 1, 0, 0, 0, 1248, 1250, 3, 220, 110, 0, 1249, 1248, 1, 0, 0, 0, 1249, 1250, 1, 0, 0, 0, 1250, 1256, 1, 0, 0, 0, 1251, 1252, 3, 168, 84, 0, 1252, 1253, 3, 174, 87, 0, 1253, 1254, 3, 226, 113, 0, 1254, 1256, 1, 0, 0, 0, 1255, 1235, 1, 0, 0, 0, 1255, 1251, 1, 0, 0, 0, 1256, 167, 1, 0, 0, 0, 1257, 1259, 5, 336, 0, 0, 1258, 1260, 3, 362, 181, 0, 1259, 1258, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1270, 1, 0, 0, 0, 1261, 1271, 5, 527, 0, 0, 1262, 1267, 3, 170, 85, 0, 1263, 1264, 5, 520, 0, 0, 1264, 1266, 3, 170, 85, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1269, 1, 0, 0, 0, 1267, 1265, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1271, 1, 0, 0, 0, 1269, 1267, 1, 0, 0, 0, 1270, 1261, 1, 0, 0, 0, 1270, 1262, 1, 0, 0, 0, 1271, 169, 1, 0, 0, 0, 1272, 1288, 3, 172, 86, 0, 1273, 1278, 3, 52, 26, 0, 1274, 1276, 5, 17, 0, 0, 1275, 1274, 1, 0, 0, 0, 1275, 1276, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1279, 3, 256, 128, 0, 1278, 1275, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1288, 1, 0, 0, 0, 1280, 1285, 3, 256, 128, 0, 1281, 1283, 5, 17, 0, 0, 1282, 1281, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1286, 3, 52, 26, 0, 1285, 1282, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1288, 1, 0, 0, 0, 1287, 1272, 1, 0, 0, 0, 1287, 1273, 1, 0, 0, 0, 1287, 1280, 1, 0, 0, 0, 1288, 171, 1, 0, 0, 0, 1289, 1290, 3, 266, 133, 0, 1290, 1291, 5, 262, 0, 0, 1291, 1292, 3, 224, 112, 0, 1292, 1293, 5, 17, 0, 0, 1293, 1294, 3, 302, 151, 0, 1294, 1302, 1, 0, 0, 0, 1295, 1296, 3, 266, 133, 0, 1296, 1297, 5, 262, 0, 0, 1297, 1298, 3, 294, 147, 0, 1298, 1299, 5, 17, 0, 0, 1299, 1300, 3, 302, 151, 0, 1300, 1302, 1, 0, 0, 0, 1301, 1289, 1, 0, 0, 0, 1301, 1295, 1, 0, 0, 0, 1302, 173, 1, 0, 0, 0, 1303, 1304, 5, 151, 0, 0, 1304, 1305, 3, 176, 88, 0, 1305, 175, 1, 0, 0, 0, 1306, 1307, 6, 88, -1, 0, 1307, 1312, 3, 178, 89, 0, 1308, 1309, 5, 520, 0, 0, 1309, 1311, 3, 178, 89, 0, 1310, 1308, 1, 0, 0, 0, 1311, 1314, 1, 0, 0, 0, 1312, 1310, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1318, 1, 0, 0, 0, 1314, 1312, 1, 0, 0, 0, 1315, 1318, 3, 186, 93, 0, 1316, 1318, 3, 188, 94, 0, 1317, 1306, 1, 0, 0, 0, 1317, 1315, 1, 0, 0, 0, 1317, 1316, 1, 0, 0, 0, 1318, 1340, 1, 0, 0, 0, 1319, 1320, 10, 3, 0, 0, 1320, 1321, 5, 73, 0, 0, 1321, 1322, 5, 185, 0, 0, 1322, 1339, 3, 176, 88, 4, 1323, 1325, 10, 4, 0, 0, 1324, 1326, 5, 233, 0, 0, 1325, 1324, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1328, 1, 0, 0, 0, 1327, 1329, 7, 20, 0, 0, 1328, 1327, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1331, 1, 0, 0, 0, 1330, 1332, 5, 261, 0, 0, 1331, 1330, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1334, 5, 185, 0, 0, 1334, 1336, 3, 176, 88, 0, 1335, 1337, 3, 200, 100, 0, 1336, 1335, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1339, 1, 0, 0, 0, 1338, 1319, 1, 0, 0, 0, 1338, 1323, 1, 0, 0, 0, 1339, 1342, 1, 0, 0, 0, 1340, 1338, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 177, 1, 0, 0, 0, 1342, 1340, 1, 0, 0, 0, 1343, 1345, 3, 180, 90, 0, 1344, 1346, 3, 292, 146, 0, 1345, 1344, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 179, 1, 0, 0, 0, 1347, 1349, 5, 373, 0, 0, 1348, 1347, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1352, 3, 320, 160, 0, 1351, 1353, 3, 182, 91, 0, 1352, 1351, 1, 0, 0, 0, 1352, 1353, 1, 0, 0, 0, 1353, 1387, 1, 0, 0, 0, 1354, 1356, 3, 322, 161, 0, 1355, 1357, 3, 182, 91, 0, 1356, 1355, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1387, 1, 0, 0, 0, 1358, 1359, 5, 198, 0, 0, 1359, 1360, 5, 373, 0, 0, 1360, 1361, 5, 516, 0, 0, 1361, 1362, 3, 270, 135, 0, 1362, 1363, 5, 516, 0, 0, 1363, 1368, 3, 272, 136, 0, 1364, 1365, 5, 520, 0, 0, 1365, 1367, 3, 272, 136, 0, 1366, 1364, 1, 0, 0, 0, 1367, 1370, 1, 0, 0, 0, 1368, 1366, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1371, 1, 0, 0, 0, 1370, 1368, 1, 0, 0, 0, 1371, 1372, 5, 517, 0, 0, 1372, 1373, 5, 517, 0, 0, 1373, 1387, 1, 0, 0, 0, 1374, 1376, 5, 198, 0, 0, 1375, 1374, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1378, 5, 516, 0, 0, 1378, 1379, 3, 156, 78, 0, 1379, 1380, 5, 517, 0, 0, 1380, 1387, 1, 0, 0, 0, 1381, 1382, 5, 405, 0, 0, 1382, 1383, 5, 516, 0, 0, 1383, 1384, 3, 256, 128, 0, 1384, 1385, 5, 517, 0, 0, 1385, 1387, 1, 0, 0, 0, 1386, 1348, 1, 0, 0, 0, 1386, 1354, 1, 0, 0, 0, 1386, 1358, 1, 0, 0, 0, 1386, 1375, 1, 0, 0, 0, 1386, 1381, 1, 0, 0, 0, 1387, 181, 1, 0, 0, 0, 1388, 1389, 5, 146, 0, 0, 1389, 1390, 5, 371, 0, 0, 1390, 1391, 5, 17, 0, 0, 1391, 1392, 5, 249, 0, 0, 1392, 1393, 3, 184, 92, 0, 1393, 183, 1, 0, 0, 0, 1394, 1395, 3, 256, 128, 0, 1395, 185, 1, 0, 0, 0, 1396, 1397, 5, 516, 0, 0, 1397, 1398, 3, 148, 74, 0, 1398, 1399, 5, 517, 0, 0, 1399, 1400, 3, 292, 146, 0, 1400, 187, 1, 0, 0, 0, 1401, 1402, 5, 373, 0, 0, 1402, 1403, 5, 516, 0, 0, 1403, 1404, 3, 190, 95, 0, 1404, 1405, 5, 517, 0, 0, 1405, 189, 1, 0, 0, 0, 1406, 1407, 3, 192, 96, 0, 1407, 1408, 5, 516, 0, 0, 1408, 1413, 3, 194, 97, 0, 1409, 1410, 5, 520, 0, 0, 1410, 1412, 3, 194, 97, 0, 1411, 1409, 1, 0, 0, 0, 1412, 1415, 1, 0, 0, 0, 1413, 1411, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1416, 1, 0, 0, 0, 1415, 1413, 1, 0, 0, 0, 1416, 1417, 5, 517, 0, 0, 1417, 191, 1, 0, 0, 0, 1418, 1419, 7, 21, 0, 0, 1419, 193, 1, 0, 0, 0, 1420, 1421, 5, 373, 0, 0, 1421, 1436, 3, 216, 108, 0, 1422, 1436, 3, 198, 99, 0, 1423, 1436, 3, 280, 140, 0, 1424, 1425, 5, 446, 0, 0, 1425, 1426, 5, 536, 0, 0, 1426, 1427, 5, 373, 0, 0, 1427, 1436, 3, 216, 108, 0, 1428, 1429, 5, 498, 0, 0, 1429, 1430, 5, 536, 0, 0, 1430, 1436, 3, 198, 99, 0, 1431, 1432, 3, 196, 98, 0, 1432, 1433, 5, 536, 0, 0, 1433, 1434, 3, 280, 140, 0, 1434, 1436, 1, 0, 0, 0, 1435, 1420, 1, 0, 0, 0, 1435, 1422, 1, 0, 0, 0, 1435, 1423, 1, 0, 0, 0, 1435, 1424, 1, 0, 0, 0, 1435, 1428, 1, 0, 0, 0, 1435, 1431, 1, 0, 0, 0, 1436, 195, 1, 0, 0, 0, 1437, 1438, 7, 22, 0, 0, 1438, 197, 1, 0, 0, 0, 1439, 1440, 5, 451, 0, 0, 1440, 1441, 5, 516, 0, 0, 1441, 1442, 3, 52, 26, 0, 1442, 1443, 5, 517, 0, 0, 1443, 199, 1, 0, 0, 0, 1444, 1445, 5, 253, 0, 0, 1445, 1449, 3, 258, 129, 0, 1446, 1447, 5, 412, 0, 0, 1447, 1449, 3, 54, 27, 0, 1448, 1444, 1, 0, 0, 0, 1448, 1446, 1, 0, 0, 0, 1449, 201, 1, 0, 0, 0, 1450, 1451, 5, 430, 0, 0, 1451, 1452, 3, 258, 129, 0, 1452, 203, 1, 0, 0, 0, 1453, 1454, 5, 159, 0, 0, 1454, 1455, 5, 34, 0, 0, 1455, 1460, 3, 206, 103, 0, 1456, 1457, 5, 520, 0, 0, 1457, 1459, 3, 206, 103, 0, 1458, 1456, 1, 0, 0, 0, 1459, 1462, 1, 0, 0, 0, 1460, 1458, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, 0, 1461, 205, 1, 0, 0, 0, 1462, 1460, 1, 0, 0, 0, 1463, 1504, 3, 52, 26, 0, 1464, 1504, 3, 212, 106, 0, 1465, 1466, 5, 516, 0, 0, 1466, 1504, 5, 517, 0, 0, 1467, 1468, 5, 516, 0, 0, 1468, 1473, 3, 256, 128, 0, 1469, 1470, 5, 520, 0, 0, 1470, 1472, 3, 256, 128, 0, 1471, 1469, 1, 0, 0, 0, 1472, 1475, 1, 0, 0, 0, 1473, 1471, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1476, 1, 0, 0, 0, 1475, 1473, 1, 0, 0, 0, 1476, 1477, 5, 517, 0, 0, 1477, 1504, 1, 0, 0, 0, 1478, 1479, 3, 210, 105, 0, 1479, 1480, 5, 516, 0, 0, 1480, 1485, 3, 256, 128, 0, 1481, 1482, 5, 520, 0, 0, 1482, 1484, 3, 256, 128, 0, 1483, 1481, 1, 0, 0, 0, 1484, 1487, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1488, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1488, 1489, 5, 517, 0, 0, 1489, 1504, 1, 0, 0, 0, 1490, 1491, 3, 208, 104, 0, 1491, 1492, 5, 516, 0, 0, 1492, 1497, 3, 206, 103, 0, 1493, 1494, 5, 520, 0, 0, 1494, 1496, 3, 206, 103, 0, 1495, 1493, 1, 0, 0, 0, 1496, 1499, 1, 0, 0, 0, 1497, 1495, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1500, 1, 0, 0, 0, 1499, 1497, 1, 0, 0, 0, 1500, 1501, 5, 517, 0, 0, 1501, 1504, 1, 0, 0, 0, 1502, 1504, 3, 256, 128, 0, 1503, 1463, 1, 0, 0, 0, 1503, 1464, 1, 0, 0, 0, 1503, 1465, 1, 0, 0, 0, 1503, 1467, 1, 0, 0, 0, 1503, 1478, 1, 0, 0, 0, 1503, 1490, 1, 0, 0, 0, 1503, 1502, 1, 0, 0, 0, 1504, 207, 1, 0, 0, 0, 1505, 1506, 5, 160, 0, 0, 1506, 1507, 5, 493, 0, 0, 1507, 209, 1, 0, 0, 0, 1508, 1509, 7, 23, 0, 0, 1509, 211, 1, 0, 0, 0, 1510, 1511, 3, 214, 107, 0, 1511, 1512, 5, 516, 0, 0, 1512, 1513, 3, 216, 108, 0, 1513, 1514, 5, 520, 0, 0, 1514, 1515, 3, 280, 140, 0, 1515, 1516, 5, 517, 0, 0, 1516, 213, 1, 0, 0, 0, 1517, 1518, 7, 24, 0, 0, 1518, 215, 1, 0, 0, 0, 1519, 1520, 3, 326, 163, 0, 1520, 217, 1, 0, 0, 0, 1521, 1522, 5, 163, 0, 0, 1522, 1523, 3, 258, 129, 0, 1523, 219, 1, 0, 0, 0, 1524, 1525, 5, 432, 0, 0, 1525, 1530, 3, 222, 111, 0, 1526, 1527, 5, 520, 0, 0, 1527, 1529, 3, 222, 111, 0, 1528, 1526, 1, 0, 0, 0, 1529, 1532, 1, 0, 0, 0, 1530, 1528, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 221, 1, 0, 0, 0, 1532, 1530, 1, 0, 0, 0, 1533, 1534, 3, 294, 147, 0, 1534, 1535, 5, 17, 0, 0, 1535, 1536, 3, 224, 112, 0, 1536, 223, 1, 0, 0, 0, 1537, 1539, 3, 294, 147, 0, 1538, 1537, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1542, 5, 516, 0, 0, 1541, 1543, 3, 234, 117, 0, 1542, 1541, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1545, 1, 0, 0, 0, 1544, 1546, 3, 228, 114, 0, 1545, 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1548, 1, 0, 0, 0, 1547, 1549, 3, 250, 125, 0, 1548, 1547, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1551, 5, 517, 0, 0, 1551, 225, 1, 0, 0, 0, 1552, 1553, 5, 213, 0, 0, 1553, 1555, 5, 516, 0, 0, 1554, 1556, 3, 234, 117, 0, 1555, 1554, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1558, 1, 0, 0, 0, 1557, 1559, 3, 228, 114, 0, 1558, 1557, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1561, 1, 0, 0, 0, 1560, 1562, 3, 238, 119, 0, 1561, 1560, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 1564, 1, 0, 0, 0, 1563, 1565, 3, 244, 122, 0, 1564, 1563, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1567, 1, 0, 0, 0, 1566, 1568, 3, 246, 123, 0, 1567, 1566, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1570, 1, 0, 0, 0, 1569, 1571, 3, 240, 120, 0, 1570, 1569, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 3, 248, 124, 0, 1573, 1578, 5, 517, 0, 0, 1574, 1576, 5, 17, 0, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1579, 3, 302, 151, 0, 1578, 1575, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 227, 1, 0, 0, 0, 1580, 1581, 5, 258, 0, 0, 1581, 1582, 5, 34, 0, 0, 1582, 1587, 3, 230, 115, 0, 1583, 1584, 5, 520, 0, 0, 1584, 1586, 3, 230, 115, 0, 1585, 1583, 1, 0, 0, 0, 1586, 1589, 1, 0, 0, 0, 1587, 1585, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 229, 1, 0, 0, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1592, 3, 52, 26, 0, 1591, 1593, 7, 25, 0, 0, 1592, 1591, 1, 0, 0, 0, 1592, 1593, 1, 0, 0, 0, 1593, 1596, 1, 0, 0, 0, 1594, 1595, 5, 476, 0, 0, 1595, 1597, 7, 26, 0, 0, 1596, 1594, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 231, 1, 0, 0, 0, 1598, 1601, 5, 204, 0, 0, 1599, 1602, 5, 5, 0, 0, 1600, 1602, 3, 256, 128, 0, 1601, 1599, 1, 0, 0, 0, 1601, 1600, 1, 0, 0, 0, 1602, 233, 1, 0, 0, 0, 1603, 1604, 5, 268, 0, 0, 1604, 1607, 5, 34, 0, 0, 1605, 1608, 3, 52, 26, 0, 1606, 1608, 3, 266, 133, 0, 1607, 1605, 1, 0, 0, 0, 1607, 1606, 1, 0, 0, 0, 1608, 1616, 1, 0, 0, 0, 1609, 1612, 5, 520, 0, 0, 1610, 1613, 3, 52, 26, 0, 1611, 1613, 3, 266, 133, 0, 1612, 1610, 1, 0, 0, 0, 1612, 1611, 1, 0, 0, 0, 1613, 1615, 1, 0, 0, 0, 1614, 1609, 1, 0, 0, 0, 1615, 1618, 1, 0, 0, 0, 1616, 1614, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1617, 235, 1, 0, 0, 0, 1618, 1616, 1, 0, 0, 0, 1619, 1636, 5, 527, 0, 0, 1620, 1636, 5, 530, 0, 0, 1621, 1636, 5, 535, 0, 0, 1622, 1623, 5, 518, 0, 0, 1623, 1624, 5, 538, 0, 0, 1624, 1625, 5, 520, 0, 0, 1625, 1626, 5, 538, 0, 0, 1626, 1636, 5, 519, 0, 0, 1627, 1628, 5, 518, 0, 0, 1628, 1629, 5, 538, 0, 0, 1629, 1630, 5, 520, 0, 0, 1630, 1636, 5, 519, 0, 0, 1631, 1632, 5, 518, 0, 0, 1632, 1633, 5, 520, 0, 0, 1633, 1634, 5, 538, 0, 0, 1634, 1636, 5, 519, 0, 0, 1635, 1619, 1, 0, 0, 0, 1635, 1620, 1, 0, 0, 0, 1635, 1621, 1, 0, 0, 0, 1635, 1622, 1, 0, 0, 0, 1635, 1627, 1, 0, 0, 0, 1635, 1631, 1, 0, 0, 0, 1636, 237, 1, 0, 0, 0, 1637, 1638, 5, 215, 0, 0, 1638, 1643, 3, 170, 85, 0, 1639, 1640, 5, 520, 0, 0, 1640, 1642, 3, 170, 85, 0, 1641, 1639, 1, 0, 0, 0, 1642, 1645, 1, 0, 0, 0, 1643, 1641, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 239, 1, 0, 0, 0, 1645, 1643, 1, 0, 0, 0, 1646, 1647, 5, 271, 0, 0, 1647, 1649, 5, 516, 0, 0, 1648, 1650, 3, 242, 121, 0, 1649, 1648, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1649, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1655, 5, 517, 0, 0, 1654, 1656, 3, 254, 127, 0, 1655, 1654, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 241, 1, 0, 0, 0, 1657, 1659, 3, 304, 152, 0, 1658, 1660, 3, 236, 118, 0, 1659, 1658, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 243, 1, 0, 0, 0, 1661, 1662, 5, 5, 0, 0, 1662, 1663, 5, 322, 0, 0, 1663, 1664, 5, 272, 0, 0, 1664, 1670, 5, 210, 0, 0, 1665, 1666, 5, 254, 0, 0, 1666, 1667, 5, 321, 0, 0, 1667, 1668, 5, 272, 0, 0, 1668, 1670, 5, 210, 0, 0, 1669, 1661, 1, 0, 0, 0, 1669, 1665, 1, 0, 0, 0, 1670, 245, 1, 0, 0, 0, 1671, 1672, 5, 438, 0, 0, 1672, 1673, 5, 210, 0, 0, 1673, 1674, 5, 343, 0, 0, 1674, 1675, 5, 478, 0, 0, 1675, 1676, 5, 467, 0, 0, 1676, 1696, 5, 321, 0, 0, 1677, 1678, 5, 438, 0, 0, 1678, 1679, 5, 210, 0, 0, 1679, 1680, 5, 343, 0, 0, 1680, 1681, 5, 388, 0, 0, 1681, 1682, 5, 237, 0, 0, 1682, 1696, 5, 321, 0, 0, 1683, 1684, 5, 438, 0, 0, 1684, 1685, 5, 210, 0, 0, 1685, 1686, 5, 343, 0, 0, 1686, 1687, 5, 388, 0, 0, 1687, 1688, 5, 467, 0, 0, 1688, 1696, 3, 304, 152, 0, 1689, 1690, 5, 438, 0, 0, 1690, 1691, 5, 210, 0, 0, 1691, 1692, 5, 343, 0, 0, 1692, 1693, 5, 388, 0, 0, 1693, 1694, 5, 457, 0, 0, 1694, 1696, 3, 304, 152, 0, 1695, 1671, 1, 0, 0, 0, 1695, 1677, 1, 0, 0, 0, 1695, 1683, 1, 0, 0, 0, 1695, 1689, 1, 0, 0, 0, 1696, 247, 1, 0, 0, 0, 1697, 1698, 5, 105, 0, 0, 1698, 1703, 3, 170, 85, 0, 1699, 1700, 5, 520, 0, 0, 1700, 1702, 3, 170, 85, 0, 1701, 1699, 1, 0, 0, 0, 1702, 1705, 1, 0, 0, 0, 1703, 1701, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 249, 1, 0, 0, 0, 1705, 1703, 1, 0, 0, 0, 1706, 1707, 5, 292, 0, 0, 1707, 1708, 5, 27, 0, 0, 1708, 1709, 3, 280, 140, 0, 1709, 1710, 3, 252, 126, 0, 1710, 1716, 1, 0, 0, 0, 1711, 1712, 5, 322, 0, 0, 1712, 1713, 5, 27, 0, 0, 1713, 1714, 5, 538, 0, 0, 1714, 1716, 3, 252, 126, 0, 1715, 1706, 1, 0, 0, 0, 1715, 1711, 1, 0, 0, 0, 1716, 251, 1, 0, 0, 0, 1717, 1718, 5, 480, 0, 0, 1718, 1719, 5, 10, 0, 0, 1719, 1720, 5, 76, 0, 0, 1720, 1721, 5, 321, 0, 0, 1721, 253, 1, 0, 0, 0, 1722, 1723, 5, 434, 0, 0, 1723, 1724, 3, 280, 140, 0, 1724, 255, 1, 0, 0, 0, 1725, 1726, 3, 258, 129, 0, 1726, 257, 1, 0, 0, 0, 1727, 1728, 6, 129, -1, 0, 1728, 1729, 5, 241, 0, 0, 1729, 1740, 3, 258, 129, 6, 1730, 1731, 5, 133, 0, 0, 1731, 1732, 5, 516, 0, 0, 1732, 1733, 3, 156, 78, 0, 1733, 1734, 5, 517, 0, 0, 1734, 1740, 1, 0, 0, 0, 1735, 1737, 3, 264, 132, 0, 1736, 1738, 3, 260, 130, 0, 1737, 1736, 1, 0, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1740, 1, 0, 0, 0, 1739, 1727, 1, 0, 0, 0, 1739, 1730, 1, 0, 0, 0, 1739, 1735, 1, 0, 0, 0, 1740, 1755, 1, 0, 0, 0, 1741, 1742, 10, 3, 0, 0, 1742, 1743, 5, 10, 0, 0, 1743, 1754, 3, 258, 129, 4, 1744, 1745, 10, 2, 0, 0, 1745, 1746, 5, 257, 0, 0, 1746, 1754, 3, 258, 129, 3, 1747, 1748, 10, 1, 0, 0, 1748, 1750, 5, 184, 0, 0, 1749, 1751, 5, 241, 0, 0, 1750, 1749, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1754, 7, 27, 0, 0, 1753, 1741, 1, 0, 0, 0, 1753, 1744, 1, 0, 0, 0, 1753, 1747, 1, 0, 0, 0, 1754, 1757, 1, 0, 0, 0, 1755, 1753, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 259, 1, 0, 0, 0, 1757, 1755, 1, 0, 0, 0, 1758, 1760, 5, 241, 0, 0, 1759, 1758, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1763, 5, 27, 0, 0, 1762, 1764, 7, 28, 0, 0, 1763, 1762, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 3, 264, 132, 0, 1766, 1767, 5, 10, 0, 0, 1767, 1768, 3, 264, 132, 0, 1768, 1826, 1, 0, 0, 0, 1769, 1771, 5, 241, 0, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1773, 5, 170, 0, 0, 1773, 1774, 5, 516, 0, 0, 1774, 1779, 3, 256, 128, 0, 1775, 1776, 5, 520, 0, 0, 1776, 1778, 3, 256, 128, 0, 1777, 1775, 1, 0, 0, 0, 1778, 1781, 1, 0, 0, 0, 1779, 1777, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1782, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1782, 1783, 5, 517, 0, 0, 1783, 1826, 1, 0, 0, 0, 1784, 1786, 5, 241, 0, 0, 1785, 1784, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1788, 5, 170, 0, 0, 1788, 1789, 5, 516, 0, 0, 1789, 1790, 3, 156, 78, 0, 1790, 1791, 5, 517, 0, 0, 1791, 1826, 1, 0, 0, 0, 1792, 1793, 5, 133, 0, 0, 1793, 1794, 5, 516, 0, 0, 1794, 1795, 3, 156, 78, 0, 1795, 1796, 5, 517, 0, 0, 1796, 1826, 1, 0, 0, 0, 1797, 1799, 5, 241, 0, 0, 1798, 1797, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1801, 5, 318, 0, 0, 1801, 1826, 3, 264, 132, 0, 1802, 1826, 3, 262, 131, 0, 1803, 1805, 5, 184, 0, 0, 1804, 1806, 5, 241, 0, 0, 1805, 1804, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1826, 7, 27, 0, 0, 1808, 1810, 5, 184, 0, 0, 1809, 1811, 5, 241, 0, 0, 1810, 1809, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1813, 5, 113, 0, 0, 1813, 1814, 5, 151, 0, 0, 1814, 1826, 3, 264, 132, 0, 1815, 1817, 5, 241, 0, 0, 1816, 1815, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1819, 5, 342, 0, 0, 1819, 1820, 5, 388, 0, 0, 1820, 1823, 3, 264, 132, 0, 1821, 1822, 5, 127, 0, 0, 1822, 1824, 3, 356, 178, 0, 1823, 1821, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1826, 1, 0, 0, 0, 1825, 1759, 1, 0, 0, 0, 1825, 1770, 1, 0, 0, 0, 1825, 1785, 1, 0, 0, 0, 1825, 1792, 1, 0, 0, 0, 1825, 1798, 1, 0, 0, 0, 1825, 1802, 1, 0, 0, 0, 1825, 1803, 1, 0, 0, 0, 1825, 1808, 1, 0, 0, 0, 1825, 1816, 1, 0, 0, 0, 1826, 261, 1, 0, 0, 0, 1827, 1829, 5, 241, 0, 0, 1828, 1827, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 1831, 5, 202, 0, 0, 1831, 1845, 7, 29, 0, 0, 1832, 1833, 5, 516, 0, 0, 1833, 1846, 5, 517, 0, 0, 1834, 1835, 5, 516, 0, 0, 1835, 1840, 3, 256, 128, 0, 1836, 1837, 5, 520, 0, 0, 1837, 1839, 3, 256, 128, 0, 1838, 1836, 1, 0, 0, 0, 1839, 1842, 1, 0, 0, 0, 1840, 1838, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1843, 1, 0, 0, 0, 1842, 1840, 1, 0, 0, 0, 1843, 1844, 5, 517, 0, 0, 1844, 1846, 1, 0, 0, 0, 1845, 1832, 1, 0, 0, 0, 1845, 1834, 1, 0, 0, 0, 1846, 1857, 1, 0, 0, 0, 1847, 1849, 5, 241, 0, 0, 1848, 1847, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1851, 5, 202, 0, 0, 1851, 1854, 3, 264, 132, 0, 1852, 1853, 5, 127, 0, 0, 1853, 1855, 3, 356, 178, 0, 1854, 1852, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1857, 1, 0, 0, 0, 1856, 1828, 1, 0, 0, 0, 1856, 1848, 1, 0, 0, 0, 1857, 263, 1, 0, 0, 0, 1858, 1859, 6, 132, -1, 0, 1859, 1863, 3, 266, 133, 0, 1860, 1861, 7, 30, 0, 0, 1861, 1863, 3, 264, 132, 7, 1862, 1858, 1, 0, 0, 0, 1862, 1860, 1, 0, 0, 0, 1863, 1885, 1, 0, 0, 0, 1864, 1865, 10, 6, 0, 0, 1865, 1866, 7, 31, 0, 0, 1866, 1884, 3, 264, 132, 7, 1867, 1868, 10, 5, 0, 0, 1868, 1869, 7, 32, 0, 0, 1869, 1884, 3, 264, 132, 6, 1870, 1871, 10, 4, 0, 0, 1871, 1872, 5, 511, 0, 0, 1872, 1884, 3, 264, 132, 5, 1873, 1874, 10, 3, 0, 0, 1874, 1875, 5, 512, 0, 0, 1875, 1884, 3, 264, 132, 4, 1876, 1877, 10, 2, 0, 0, 1877, 1878, 5, 510, 0, 0, 1878, 1884, 3, 264, 132, 3, 1879, 1880, 10, 1, 0, 0, 1880, 1881, 3, 344, 172, 0, 1881, 1882, 3, 264, 132, 2, 1882, 1884, 1, 0, 0, 0, 1883, 1864, 1, 0, 0, 0, 1883, 1867, 1, 0, 0, 0, 1883, 1870, 1, 0, 0, 0, 1883, 1873, 1, 0, 0, 0, 1883, 1876, 1, 0, 0, 0, 1883, 1879, 1, 0, 0, 0, 1884, 1887, 1, 0, 0, 0, 1885, 1883, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 265, 1, 0, 0, 0, 1887, 1885, 1, 0, 0, 0, 1888, 1889, 6, 133, -1, 0, 1889, 1891, 5, 40, 0, 0, 1890, 1892, 3, 308, 154, 0, 1891, 1890, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1891, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1897, 1, 0, 0, 0, 1895, 1896, 5, 120, 0, 0, 1896, 1898, 3, 256, 128, 0, 1897, 1895, 1, 0, 0, 0, 1897, 1898, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 1900, 5, 122, 0, 0, 1900, 1981, 1, 0, 0, 0, 1901, 1902, 5, 40, 0, 0, 1902, 1904, 3, 256, 128, 0, 1903, 1905, 3, 308, 154, 0, 1904, 1903, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1904, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1910, 1, 0, 0, 0, 1908, 1909, 5, 120, 0, 0, 1909, 1911, 3, 256, 128, 0, 1910, 1908, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1913, 5, 122, 0, 0, 1913, 1981, 1, 0, 0, 0, 1914, 1915, 5, 41, 0, 0, 1915, 1916, 5, 516, 0, 0, 1916, 1917, 3, 256, 128, 0, 1917, 1918, 5, 17, 0, 0, 1918, 1919, 3, 56, 28, 0, 1919, 1920, 5, 517, 0, 0, 1920, 1981, 1, 0, 0, 0, 1921, 1922, 5, 457, 0, 0, 1922, 1923, 5, 516, 0, 0, 1923, 1926, 3, 256, 128, 0, 1924, 1925, 5, 461, 0, 0, 1925, 1927, 5, 476, 0, 0, 1926, 1924, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1929, 5, 517, 0, 0, 1929, 1981, 1, 0, 0, 0, 1930, 1931, 5, 467, 0, 0, 1931, 1932, 5, 516, 0, 0, 1932, 1935, 3, 256, 128, 0, 1933, 1934, 5, 461, 0, 0, 1934, 1936, 5, 476, 0, 0, 1935, 1933, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 1, 0, 0, 0, 1937, 1938, 5, 517, 0, 0, 1938, 1981, 1, 0, 0, 0, 1939, 1940, 5, 281, 0, 0, 1940, 1941, 5, 516, 0, 0, 1941, 1942, 3, 264, 132, 0, 1942, 1943, 5, 170, 0, 0, 1943, 1944, 3, 264, 132, 0, 1944, 1945, 5, 517, 0, 0, 1945, 1981, 1, 0, 0, 0, 1946, 1981, 3, 352, 176, 0, 1947, 1981, 5, 527, 0, 0, 1948, 1949, 3, 326, 163, 0, 1949, 1950, 5, 513, 0, 0, 1950, 1951, 5, 527, 0, 0, 1951, 1981, 1, 0, 0, 0, 1952, 1953, 5, 516, 0, 0, 1953, 1954, 3, 156, 78, 0, 1954, 1955, 5, 517, 0, 0, 1955, 1981, 1, 0, 0, 0, 1956, 1957, 3, 270, 135, 0, 1957, 1969, 5, 516, 0, 0, 1958, 1960, 3, 362, 181, 0, 1959, 1958, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1966, 3, 272, 136, 0, 1962, 1963, 5, 520, 0, 0, 1963, 1965, 3, 272, 136, 0, 1964, 1962, 1, 0, 0, 0, 1965, 1968, 1, 0, 0, 0, 1966, 1964, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1970, 1, 0, 0, 0, 1968, 1966, 1, 0, 0, 0, 1969, 1959, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1972, 5, 517, 0, 0, 1972, 1981, 1, 0, 0, 0, 1973, 1981, 3, 302, 151, 0, 1974, 1981, 3, 274, 137, 0, 1975, 1976, 5, 516, 0, 0, 1976, 1977, 3, 256, 128, 0, 1977, 1978, 5, 517, 0, 0, 1978, 1981, 1, 0, 0, 0, 1979, 1981, 5, 85, 0, 0, 1980, 1888, 1, 0, 0, 0, 1980, 1901, 1, 0, 0, 0, 1980, 1914, 1, 0, 0, 0, 1980, 1921, 1, 0, 0, 0, 1980, 1930, 1, 0, 0, 0, 1980, 1939, 1, 0, 0, 0, 1980, 1946, 1, 0, 0, 0, 1980, 1947, 1, 0, 0, 0, 1980, 1948, 1, 0, 0, 0, 1980, 1952, 1, 0, 0, 0, 1980, 1956, 1, 0, 0, 0, 1980, 1973, 1, 0, 0, 0, 1980, 1974, 1, 0, 0, 0, 1980, 1975, 1, 0, 0, 0, 1980, 1979, 1, 0, 0, 0, 1981, 1989, 1, 0, 0, 0, 1982, 1983, 10, 5, 0, 0, 1983, 1984, 5, 514, 0, 0, 1984, 1985, 3, 264, 132, 0, 1985, 1986, 5, 515, 0, 0, 1986, 1988, 1, 0, 0, 0, 1987, 1982, 1, 0, 0, 0, 1988, 1991, 1, 0, 0, 0, 1989, 1987, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 267, 1, 0, 0, 0, 1991, 1989, 1, 0, 0, 0, 1992, 1993, 3, 326, 163, 0, 1993, 269, 1, 0, 0, 0, 1994, 1997, 3, 370, 185, 0, 1995, 1997, 3, 326, 163, 0, 1996, 1994, 1, 0, 0, 0, 1996, 1995, 1, 0, 0, 0, 1997, 271, 1, 0, 0, 0, 1998, 2003, 3, 368, 184, 0, 1999, 2003, 3, 366, 183, 0, 2000, 2003, 3, 364, 182, 0, 2001, 2003, 3, 256, 128, 0, 2002, 1998, 1, 0, 0, 0, 2002, 1999, 1, 0, 0, 0, 2002, 2000, 1, 0, 0, 0, 2002, 2001, 1, 0, 0, 0, 2003, 273, 1, 0, 0, 0, 2004, 2005, 3, 326, 163, 0, 2005, 275, 1, 0, 0, 0, 2006, 2007, 3, 302, 151, 0, 2007, 277, 1, 0, 0, 0, 2008, 2011, 3, 302, 151, 0, 2009, 2011, 3, 274, 137, 0, 2010, 2008, 1, 0, 0, 0, 2010, 2009, 1, 0, 0, 0, 2011, 279, 1, 0, 0, 0, 2012, 2015, 5, 182, 0, 0, 2013, 2016, 3, 282, 141, 0, 2014, 2016, 3, 286, 143, 0, 2015, 2013, 1, 0, 0, 0, 2015, 2014, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 281, 1, 0, 0, 0, 2017, 2019, 3, 284, 142, 0, 2018, 2020, 3, 288, 144, 0, 2019, 2018, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 283, 1, 0, 0, 0, 2021, 2022, 3, 290, 145, 0, 2022, 2023, 3, 366, 183, 0, 2023, 2025, 1, 0, 0, 0, 2024, 2021, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2024, 1, 0, 0, 0, 2026, 2027, 1, 0, 0, 0, 2027, 285, 1, 0, 0, 0, 2028, 2031, 3, 288, 144, 0, 2029, 2032, 3, 284, 142, 0, 2030, 2032, 3, 288, 144, 0, 2031, 2029, 1, 0, 0, 0, 2031, 2030, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 287, 1, 0, 0, 0, 2033, 2034, 3, 290, 145, 0, 2034, 2035, 3, 366, 183, 0, 2035, 2036, 5, 388, 0, 0, 2036, 2037, 3, 366, 183, 0, 2037, 289, 1, 0, 0, 0, 2038, 2040, 7, 33, 0, 0, 2039, 2038, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2044, 7, 34, 0, 0, 2042, 2044, 5, 537, 0, 0, 2043, 2039, 1, 0, 0, 0, 2043, 2042, 1, 0, 0, 0, 2044, 291, 1, 0, 0, 0, 2045, 2047, 5, 17, 0, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2050, 3, 302, 151, 0, 2049, 2051, 3, 298, 149, 0, 2050, 2049, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 293, 1, 0, 0, 0, 2052, 2053, 3, 302, 151, 0, 2053, 2054, 3, 296, 148, 0, 2054, 295, 1, 0, 0, 0, 2055, 2056, 5, 221, 0, 0, 2056, 2058, 3, 302, 151, 0, 2057, 2055, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2057, 1, 0, 0, 0, 2059, 2060, 1, 0, 0, 0, 2060, 2063, 1, 0, 0, 0, 2061, 2063, 1, 0, 0, 0, 2062, 2057, 1, 0, 0, 0, 2062, 2061, 1, 0, 0, 0, 2063, 297, 1, 0, 0, 0, 2064, 2065, 5, 516, 0, 0, 2065, 2066, 3, 300, 150, 0, 2066, 2067, 5, 517, 0, 0, 2067, 299, 1, 0, 0, 0, 2068, 2073, 3, 302, 151, 0, 2069, 2070, 5, 520, 0, 0, 2070, 2072, 3, 302, 151, 0, 2071, 2069, 1, 0, 0, 0, 2072, 2075, 1, 0, 0, 0, 2073, 2071, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 301, 1, 0, 0, 0, 2075, 2073, 1, 0, 0, 0, 2076, 2080, 3, 304, 152, 0, 2077, 2080, 3, 306, 153, 0, 2078, 2080, 3, 372, 186, 0, 2079, 2076, 1, 0, 0, 0, 2079, 2077, 1, 0, 0, 0, 2079, 2078, 1, 0, 0, 0, 2080, 303, 1, 0, 0, 0, 2081, 2082, 7, 35, 0, 0, 2082, 305, 1, 0, 0, 0, 2083, 2084, 5, 537, 0, 0, 2084, 307, 1, 0, 0, 0, 2085, 2086, 5, 428, 0, 0, 2086, 2087, 3, 256, 128, 0, 2087, 2088, 5, 376, 0, 0, 2088, 2089, 3, 256, 128, 0, 2089, 309, 1, 0, 0, 0, 2090, 2091, 3, 302, 151, 0, 2091, 311, 1, 0, 0, 0, 2092, 2093, 3, 302, 151, 0, 2093, 313, 1, 0, 0, 0, 2094, 2097, 3, 302, 151, 0, 2095, 2096, 5, 513, 0, 0, 2096, 2098, 3, 302, 151, 0, 2097, 2095, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 315, 1, 0, 0, 0, 2099, 2102, 3, 302, 151, 0, 2100, 2101, 5, 513, 0, 0, 2101, 2103, 3, 302, 151, 0, 2102, 2100, 1, 0, 0, 0, 2102, 2103, 1, 0, 0, 0, 2103, 317, 1, 0, 0, 0, 2104, 2107, 3, 302, 151, 0, 2105, 2106, 5, 513, 0, 0, 2106, 2108, 3, 302, 151, 0, 2107, 2105, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 2117, 1, 0, 0, 0, 2109, 2110, 3, 302, 151, 0, 2110, 2111, 5, 513, 0, 0, 2111, 2114, 3, 302, 151, 0, 2112, 2113, 5, 513, 0, 0, 2113, 2115, 3, 302, 151, 0, 2114, 2112, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 2117, 1, 0, 0, 0, 2116, 2104, 1, 0, 0, 0, 2116, 2109, 1, 0, 0, 0, 2117, 319, 1, 0, 0, 0, 2118, 2121, 3, 302, 151, 0, 2119, 2120, 5, 513, 0, 0, 2120, 2122, 3, 302, 151, 0, 2121, 2119, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2131, 1, 0, 0, 0, 2123, 2124, 3, 302, 151, 0, 2124, 2125, 5, 513, 0, 0, 2125, 2128, 3, 302, 151, 0, 2126, 2127, 5, 513, 0, 0, 2127, 2129, 3, 302, 151, 0, 2128, 2126, 1, 0, 0, 0, 2128, 2129, 1, 0, 0, 0, 2129, 2131, 1, 0, 0, 0, 2130, 2118, 1, 0, 0, 0, 2130, 2123, 1, 0, 0, 0, 2131, 321, 1, 0, 0, 0, 2132, 2135, 3, 302, 151, 0, 2133, 2134, 5, 513, 0, 0, 2134, 2136, 3, 302, 151, 0, 2135, 2133, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2145, 1, 0, 0, 0, 2137, 2138, 3, 302, 151, 0, 2138, 2139, 5, 513, 0, 0, 2139, 2142, 3, 302, 151, 0, 2140, 2141, 5, 513, 0, 0, 2141, 2143, 3, 302, 151, 0, 2142, 2140, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2145, 1, 0, 0, 0, 2144, 2132, 1, 0, 0, 0, 2144, 2137, 1, 0, 0, 0, 2145, 323, 1, 0, 0, 0, 2146, 2149, 3, 302, 151, 0, 2147, 2148, 5, 513, 0, 0, 2148, 2150, 3, 302, 151, 0, 2149, 2147, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2159, 1, 0, 0, 0, 2151, 2152, 3, 302, 151, 0, 2152, 2153, 5, 513, 0, 0, 2153, 2156, 3, 302, 151, 0, 2154, 2155, 5, 513, 0, 0, 2155, 2157, 3, 302, 151, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2159, 1, 0, 0, 0, 2158, 2146, 1, 0, 0, 0, 2158, 2151, 1, 0, 0, 0, 2159, 325, 1, 0, 0, 0, 2160, 2165, 3, 302, 151, 0, 2161, 2162, 5, 513, 0, 0, 2162, 2164, 3, 302, 151, 0, 2163, 2161, 1, 0, 0, 0, 2164, 2167, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2165, 2163, 1, 0, 0, 0, 2166, 327, 1, 0, 0, 0, 2167, 2165, 1, 0, 0, 0, 2168, 2169, 5, 433, 0, 0, 2169, 2170, 3, 334, 167, 0, 2170, 329, 1, 0, 0, 0, 2171, 2172, 5, 167, 0, 0, 2172, 2173, 5, 241, 0, 0, 2173, 2174, 5, 133, 0, 0, 2174, 331, 1, 0, 0, 0, 2175, 2176, 5, 167, 0, 0, 2176, 2177, 5, 133, 0, 0, 2177, 333, 1, 0, 0, 0, 2178, 2179, 5, 516, 0, 0, 2179, 2184, 3, 336, 168, 0, 2180, 2181, 5, 520, 0, 0, 2181, 2183, 3, 336, 168, 0, 2182, 2180, 1, 0, 0, 0, 2183, 2186, 1, 0, 0, 0, 2184, 2182, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2187, 1, 0, 0, 0, 2186, 2184, 1, 0, 0, 0, 2187, 2188, 5, 517, 0, 0, 2188, 335, 1, 0, 0, 0, 2189, 2194, 3, 338, 169, 0, 2190, 2192, 5, 505, 0, 0, 2191, 2190, 1, 0, 0, 0, 2191, 2192, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2193, 2195, 3, 340, 170, 0, 2194, 2191, 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 337, 1, 0, 0, 0, 2196, 2200, 3, 302, 151, 0, 2197, 2200, 3, 274, 137, 0, 2198, 2200, 5, 537, 0, 0, 2199, 2196, 1, 0, 0, 0, 2199, 2197, 1, 0, 0, 0, 2199, 2198, 1, 0, 0, 0, 2200, 339, 1, 0, 0, 0, 2201, 2206, 5, 538, 0, 0, 2202, 2206, 5, 539, 0, 0, 2203, 2206, 3, 360, 180, 0, 2204, 2206, 5, 537, 0, 0, 2205, 2201, 1, 0, 0, 0, 2205, 2202, 1, 0, 0, 0, 2205, 2203, 1, 0, 0, 0, 2205, 2204, 1, 0, 0, 0, 2206, 341, 1, 0, 0, 0, 2207, 2214, 5, 10, 0, 0, 2208, 2209, 5, 511, 0, 0, 2209, 2214, 5, 511, 0, 0, 2210, 2214, 5, 257, 0, 0, 2211, 2212, 5, 510, 0, 0, 2212, 2214, 5, 510, 0, 0, 2213, 2207, 1, 0, 0, 0, 2213, 2208, 1, 0, 0, 0, 2213, 2210, 1, 0, 0, 0, 2213, 2211, 1, 0, 0, 0, 2214, 343, 1, 0, 0, 0, 2215, 2230, 5, 505, 0, 0, 2216, 2230, 5, 506, 0, 0, 2217, 2230, 5, 507, 0, 0, 2218, 2219, 5, 507, 0, 0, 2219, 2230, 5, 505, 0, 0, 2220, 2221, 5, 506, 0, 0, 2221, 2230, 5, 505, 0, 0, 2222, 2223, 5, 507, 0, 0, 2223, 2230, 5, 506, 0, 0, 2224, 2225, 5, 508, 0, 0, 2225, 2230, 5, 505, 0, 0, 2226, 2227, 5, 507, 0, 0, 2227, 2228, 5, 505, 0, 0, 2228, 2230, 5, 506, 0, 0, 2229, 2215, 1, 0, 0, 0, 2229, 2216, 1, 0, 0, 0, 2229, 2217, 1, 0, 0, 0, 2229, 2218, 1, 0, 0, 0, 2229, 2220, 1, 0, 0, 0, 2229, 2222, 1, 0, 0, 0, 2229, 2224, 1, 0, 0, 0, 2229, 2226, 1, 0, 0, 0, 2230, 345, 1, 0, 0, 0, 2231, 2232, 5, 507, 0, 0, 2232, 2239, 5, 507, 0, 0, 2233, 2234, 5, 506, 0, 0, 2234, 2239, 5, 506, 0, 0, 2235, 2239, 5, 511, 0, 0, 2236, 2239, 5, 512, 0, 0, 2237, 2239, 5, 510, 0, 0, 2238, 2231, 1, 0, 0, 0, 2238, 2233, 1, 0, 0, 0, 2238, 2235, 1, 0, 0, 0, 2238, 2236, 1, 0, 0, 0, 2238, 2237, 1, 0, 0, 0, 2239, 347, 1, 0, 0, 0, 2240, 2241, 7, 36, 0, 0, 2241, 349, 1, 0, 0, 0, 2242, 2243, 7, 37, 0, 0, 2243, 351, 1, 0, 0, 0, 2244, 2259, 3, 280, 140, 0, 2245, 2259, 3, 354, 177, 0, 2246, 2259, 3, 356, 178, 0, 2247, 2249, 5, 529, 0, 0, 2248, 2247, 1, 0, 0, 0, 2248, 2249, 1, 0, 0, 0, 2249, 2250, 1, 0, 0, 0, 2250, 2259, 3, 358, 179, 0, 2251, 2259, 3, 360, 180, 0, 2252, 2259, 5, 539, 0, 0, 2253, 2259, 5, 540, 0, 0, 2254, 2256, 5, 241, 0, 0, 2255, 2254, 1, 0, 0, 0, 2255, 2256, 1, 0, 0, 0, 2256, 2257, 1, 0, 0, 0, 2257, 2259, 5, 244, 0, 0, 2258, 2244, 1, 0, 0, 0, 2258, 2245, 1, 0, 0, 0, 2258, 2246, 1, 0, 0, 0, 2258, 2248, 1, 0, 0, 0, 2258, 2251, 1, 0, 0, 0, 2258, 2252, 1, 0, 0, 0, 2258, 2253, 1, 0, 0, 0, 2258, 2255, 1, 0, 0, 0, 2259, 353, 1, 0, 0, 0, 2260, 2261, 3, 364, 182, 0, 2261, 2262, 3, 356, 178, 0, 2262, 355, 1, 0, 0, 0, 2263, 2264, 5, 537, 0, 0, 2264, 357, 1, 0, 0, 0, 2265, 2266, 5, 538, 0, 0, 2266, 359, 1, 0, 0, 0, 2267, 2268, 7, 38, 0, 0, 2268, 361, 1, 0, 0, 0, 2269, 2270, 7, 39, 0, 0, 2270, 363, 1, 0, 0, 0, 2271, 2272, 7, 40, 0, 0, 2272, 365, 1, 0, 0, 0, 2273, 2274, 7, 41, 0, 0, 2274, 367, 1, 0, 0, 0, 2275, 2276, 7, 42, 0, 0, 2276, 369, 1, 0, 0, 0, 2277, 2278, 7, 43, 0, 0, 2278, 371, 1, 0, 0, 0, 2279, 2280, 7, 44, 0, 0, 2280, 373, 1, 0, 0, 0, 270, 377, 384, 387, 401, 419, 423, 432, 437, 444, 455, 464, 476, 479, 486, 489, 497, 501, 506, 509, 516, 524, 528, 540, 548, 552, 584, 587, 592, 596, 600, 604, 613, 618, 622, 626, 631, 634, 638, 643, 649, 654, 659, 663, 667, 671, 679, 687, 691, 695, 699, 703, 707, 711, 715, 719, 721, 731, 739, 763, 777, 782, 786, 792, 795, 798, 805, 808, 817, 829, 853, 865, 870, 874, 882, 886, 892, 902, 907, 913, 917, 921, 925, 934, 938, 945, 948, 958, 966, 974, 978, 993, 1012, 1023, 1027, 1034, 1039, 1045, 1049, 1056, 1060, 1064, 1068, 1076, 1080, 1085, 1091, 1097, 1100, 1104, 1115, 1124, 1138, 1150, 1165, 1168, 1172, 1175, 1177, 1182, 1186, 1189, 1193, 1202, 1211, 1221, 1226, 1237, 1240, 1243, 1246, 1249, 1255, 1259, 1267, 1270, 1275, 1278, 1282, 1285, 1287, 1301, 1312, 1317, 1325, 1328, 1331, 1336, 1338, 1340, 1345, 1348, 1352, 1356, 1368, 1375, 1386, 1413, 1435, 1448, 1460, 1473, 1485, 1497, 1503, 1530, 1538, 1542, 1545, 1548, 1555, 1558, 1561, 1564, 1567, 1570, 1575, 1578, 1587, 1592, 1596, 1601, 1607, 1612, 1616, 1635, 1643, 1651, 1655, 1659, 1669, 1695, 1703, 1715, 1737, 1739, 1750, 1753, 1755, 1759, 1763, 1770, 1779, 1785, 1798, 1805, 1810, 1816, 1823, 1825, 1828, 1840, 1845, 1848, 1854, 1856, 1862, 1883, 1885, 1893, 1897, 1906, 1910, 1926, 1935, 1959, 1966, 1969, 1980, 1989, 1996, 2002, 2010, 2015, 2019, 2026, 2031, 2039, 2043, 2046, 2050, 2059, 2062, 2073, 2079, 2097, 2102, 2107, 2114, 2116, 2121, 2128, 2130, 2135, 2142, 2144, 2149, 2156, 2158, 2165, 2184, 2191, 2194, 2199, 2205, 2213, 2229, 2238, 2248, 2255, 2258] \ No newline at end of file +[4, 1, 541, 2302, 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, 1, 0, 5, 0, 386, 8, 0, 10, 0, 12, 0, 389, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 395, 8, 1, 1, 1, 3, 1, 398, 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, 412, 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, 430, 8, 4, 1, 5, 1, 5, 3, 5, 434, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 443, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 448, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 453, 8, 8, 10, 8, 12, 8, 456, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 466, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 473, 8, 11, 10, 11, 12, 11, 476, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 487, 8, 12, 1, 12, 3, 12, 490, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 497, 8, 12, 1, 12, 3, 12, 500, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 508, 8, 12, 1, 12, 1, 12, 3, 12, 512, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 517, 8, 12, 1, 12, 3, 12, 520, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 527, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 535, 8, 15, 1, 16, 1, 16, 3, 16, 539, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 551, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 559, 8, 18, 1, 18, 1, 18, 3, 18, 563, 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, 595, 8, 18, 1, 19, 3, 19, 598, 8, 19, 1, 19, 4, 19, 601, 8, 19, 11, 19, 12, 19, 602, 1, 20, 1, 20, 3, 20, 607, 8, 20, 1, 21, 1, 21, 3, 21, 611, 8, 21, 1, 21, 1, 21, 3, 21, 615, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 622, 8, 21, 10, 21, 12, 21, 625, 9, 21, 1, 21, 1, 21, 3, 21, 629, 8, 21, 1, 21, 1, 21, 3, 21, 633, 8, 21, 1, 21, 1, 21, 3, 21, 637, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 642, 8, 21, 1, 21, 3, 21, 645, 8, 21, 1, 21, 1, 21, 3, 21, 649, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 654, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 660, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 665, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 670, 8, 24, 1, 24, 1, 24, 3, 24, 674, 8, 24, 1, 25, 1, 25, 3, 25, 678, 8, 25, 1, 26, 1, 26, 3, 26, 682, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 688, 8, 27, 10, 27, 12, 27, 691, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 3, 28, 698, 8, 28, 1, 28, 1, 28, 3, 28, 702, 8, 28, 1, 28, 1, 28, 3, 28, 706, 8, 28, 1, 28, 1, 28, 3, 28, 710, 8, 28, 1, 28, 1, 28, 3, 28, 714, 8, 28, 1, 28, 1, 28, 3, 28, 718, 8, 28, 1, 28, 1, 28, 3, 28, 722, 8, 28, 1, 28, 1, 28, 3, 28, 726, 8, 28, 1, 28, 1, 28, 3, 28, 730, 8, 28, 3, 28, 732, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 742, 8, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 750, 8, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 772, 8, 34, 10, 34, 12, 34, 775, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 786, 8, 34, 10, 34, 12, 34, 789, 9, 34, 1, 34, 1, 34, 3, 34, 793, 8, 34, 1, 35, 1, 35, 3, 35, 797, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 803, 8, 35, 1, 35, 3, 35, 806, 8, 35, 1, 35, 3, 35, 809, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 816, 8, 36, 1, 36, 3, 36, 819, 8, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 828, 8, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 3, 41, 840, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 5, 45, 862, 8, 45, 10, 45, 12, 45, 865, 9, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 874, 8, 46, 10, 46, 12, 46, 877, 9, 46, 1, 46, 1, 46, 3, 46, 881, 8, 46, 1, 47, 1, 47, 3, 47, 885, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 891, 8, 48, 10, 48, 12, 48, 894, 9, 48, 1, 48, 3, 48, 897, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 903, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 3, 51, 913, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 918, 8, 51, 1, 51, 1, 51, 1, 52, 1, 52, 3, 52, 924, 8, 52, 1, 52, 1, 52, 3, 52, 928, 8, 52, 1, 52, 1, 52, 3, 52, 932, 8, 52, 1, 52, 1, 52, 3, 52, 936, 8, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 945, 8, 53, 1, 53, 1, 53, 3, 53, 949, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 956, 8, 53, 1, 53, 3, 53, 959, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 967, 8, 54, 10, 54, 12, 54, 970, 9, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 3, 56, 977, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 985, 8, 56, 1, 57, 1, 57, 3, 57, 989, 8, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1004, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1023, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1034, 8, 65, 1, 65, 1, 65, 3, 65, 1038, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1045, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 1050, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 3, 67, 1056, 8, 67, 1, 67, 1, 67, 3, 67, 1060, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1067, 8, 68, 1, 68, 1, 68, 3, 68, 1071, 8, 68, 1, 69, 1, 69, 3, 69, 1075, 8, 69, 1, 69, 1, 69, 3, 69, 1079, 8, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1087, 8, 70, 1, 70, 1, 70, 3, 70, 1091, 8, 70, 1, 70, 1, 70, 1, 71, 3, 71, 1096, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1102, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1108, 8, 72, 1, 72, 3, 72, 1111, 8, 72, 1, 72, 1, 72, 3, 72, 1115, 8, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 1124, 8, 74, 10, 74, 12, 74, 1127, 9, 74, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 1133, 8, 75, 10, 75, 12, 75, 1136, 9, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 4, 76, 1147, 8, 76, 11, 76, 12, 76, 1148, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 4, 77, 1159, 8, 77, 11, 77, 12, 77, 1160, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1176, 8, 78, 1, 78, 3, 78, 1179, 8, 78, 1, 78, 1, 78, 3, 78, 1183, 8, 78, 1, 78, 3, 78, 1186, 8, 78, 3, 78, 1188, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1193, 8, 78, 1, 78, 1, 78, 3, 78, 1197, 8, 78, 1, 78, 3, 78, 1200, 8, 78, 5, 78, 1202, 8, 78, 10, 78, 12, 78, 1205, 9, 78, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 1211, 8, 79, 10, 79, 12, 79, 1214, 9, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 1220, 8, 80, 10, 80, 12, 80, 1223, 9, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 5, 81, 1230, 8, 81, 10, 81, 12, 81, 1233, 9, 81, 1, 81, 1, 81, 3, 81, 1237, 8, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 1248, 8, 83, 1, 83, 3, 83, 1251, 8, 83, 1, 83, 3, 83, 1254, 8, 83, 1, 83, 3, 83, 1257, 8, 83, 1, 83, 3, 83, 1260, 8, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1266, 8, 83, 1, 84, 1, 84, 3, 84, 1270, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 1276, 8, 84, 10, 84, 12, 84, 1279, 9, 84, 3, 84, 1281, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 1286, 8, 85, 1, 85, 3, 85, 1289, 8, 85, 1, 85, 1, 85, 3, 85, 1293, 8, 85, 1, 85, 3, 85, 1296, 8, 85, 3, 85, 1298, 8, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 3, 86, 1312, 8, 86, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 1321, 8, 88, 10, 88, 12, 88, 1324, 9, 88, 1, 88, 1, 88, 3, 88, 1328, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1336, 8, 88, 1, 88, 3, 88, 1339, 8, 88, 1, 88, 3, 88, 1342, 8, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1347, 8, 88, 5, 88, 1349, 8, 88, 10, 88, 12, 88, 1352, 9, 88, 1, 89, 1, 89, 3, 89, 1356, 8, 89, 1, 90, 3, 90, 1359, 8, 90, 1, 90, 1, 90, 3, 90, 1363, 8, 90, 1, 90, 1, 90, 3, 90, 1367, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1376, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1387, 8, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 5, 95, 1412, 8, 95, 10, 95, 12, 95, 1415, 9, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 1436, 8, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1449, 8, 100, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 1459, 8, 102, 10, 102, 12, 102, 1462, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1472, 8, 103, 10, 103, 12, 103, 1475, 9, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1484, 8, 103, 10, 103, 12, 103, 1487, 9, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1496, 8, 103, 10, 103, 12, 103, 1499, 9, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1504, 8, 103, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 5, 110, 1529, 8, 110, 10, 110, 12, 110, 1532, 9, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 3, 112, 1539, 8, 112, 1, 112, 1, 112, 3, 112, 1543, 8, 112, 1, 112, 3, 112, 1546, 8, 112, 1, 112, 3, 112, 1549, 8, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 3, 113, 1556, 8, 113, 1, 113, 3, 113, 1559, 8, 113, 1, 113, 3, 113, 1562, 8, 113, 1, 113, 3, 113, 1565, 8, 113, 1, 113, 3, 113, 1568, 8, 113, 1, 113, 3, 113, 1571, 8, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1576, 8, 113, 1, 113, 3, 113, 1579, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 1586, 8, 114, 10, 114, 12, 114, 1589, 9, 114, 1, 115, 1, 115, 3, 115, 1593, 8, 115, 1, 115, 1, 115, 3, 115, 1597, 8, 115, 1, 116, 1, 116, 1, 116, 3, 116, 1602, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 1608, 8, 117, 1, 117, 1, 117, 1, 117, 3, 117, 1613, 8, 117, 5, 117, 1615, 8, 117, 10, 117, 12, 117, 1618, 9, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1636, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 1642, 8, 119, 10, 119, 12, 119, 1645, 9, 119, 1, 120, 1, 120, 1, 120, 4, 120, 1650, 8, 120, 11, 120, 12, 120, 1651, 1, 120, 1, 120, 3, 120, 1656, 8, 120, 1, 121, 1, 121, 3, 121, 1660, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1670, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1696, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 1702, 8, 124, 10, 124, 12, 124, 1705, 9, 124, 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, 1, 126, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1738, 8, 129, 3, 129, 1740, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1751, 8, 129, 1, 129, 5, 129, 1754, 8, 129, 10, 129, 12, 129, 1757, 9, 129, 1, 130, 3, 130, 1760, 8, 130, 1, 130, 1, 130, 3, 130, 1764, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1771, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 1778, 8, 130, 10, 130, 12, 130, 1781, 9, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1786, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1799, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1806, 8, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1811, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1817, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1824, 8, 130, 3, 130, 1826, 8, 130, 1, 131, 3, 131, 1829, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1839, 8, 131, 10, 131, 12, 131, 1842, 9, 131, 1, 131, 1, 131, 3, 131, 1846, 8, 131, 1, 131, 3, 131, 1849, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1855, 8, 131, 3, 131, 1857, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1863, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1884, 8, 132, 10, 132, 12, 132, 1887, 9, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1894, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1899, 8, 133, 10, 133, 12, 133, 1902, 9, 133, 3, 133, 1904, 8, 133, 1, 133, 1, 133, 3, 133, 1908, 8, 133, 1, 134, 1, 134, 1, 134, 4, 134, 1913, 8, 134, 11, 134, 12, 134, 1914, 1, 134, 1, 134, 3, 134, 1919, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 4, 134, 1926, 8, 134, 11, 134, 12, 134, 1927, 1, 134, 1, 134, 3, 134, 1932, 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, 3, 134, 1948, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1957, 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, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1985, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1992, 8, 134, 10, 134, 12, 134, 1995, 9, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 2003, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 2009, 8, 137, 1, 138, 1, 138, 3, 138, 2013, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2019, 8, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 142, 1, 142, 3, 142, 2027, 8, 142, 1, 143, 1, 143, 1, 143, 3, 143, 2032, 8, 143, 1, 144, 1, 144, 3, 144, 2036, 8, 144, 1, 145, 1, 145, 1, 145, 4, 145, 2041, 8, 145, 11, 145, 12, 145, 2042, 1, 146, 1, 146, 1, 146, 3, 146, 2048, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 3, 148, 2056, 8, 148, 1, 148, 1, 148, 3, 148, 2060, 8, 148, 1, 149, 3, 149, 2063, 8, 149, 1, 149, 1, 149, 3, 149, 2067, 8, 149, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 4, 151, 2074, 8, 151, 11, 151, 12, 151, 2075, 1, 151, 3, 151, 2079, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 5, 153, 2088, 8, 153, 10, 153, 12, 153, 2091, 9, 153, 1, 154, 1, 154, 1, 154, 3, 154, 2096, 8, 154, 1, 155, 1, 155, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 3, 160, 2114, 8, 160, 1, 161, 1, 161, 1, 161, 3, 161, 2119, 8, 161, 1, 162, 1, 162, 1, 162, 3, 162, 2124, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2131, 8, 162, 3, 162, 2133, 8, 162, 1, 163, 1, 163, 1, 163, 3, 163, 2138, 8, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 3, 163, 2145, 8, 163, 3, 163, 2147, 8, 163, 1, 164, 1, 164, 1, 164, 3, 164, 2152, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2159, 8, 164, 3, 164, 2161, 8, 164, 1, 165, 1, 165, 1, 165, 3, 165, 2166, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2173, 8, 165, 3, 165, 2175, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 2180, 8, 166, 10, 166, 12, 166, 2183, 9, 166, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2199, 8, 170, 10, 170, 12, 170, 2202, 9, 170, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 2208, 8, 171, 1, 171, 3, 171, 2211, 8, 171, 1, 172, 1, 172, 1, 172, 3, 172, 2216, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2222, 8, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2230, 8, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2246, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2255, 8, 176, 1, 177, 1, 177, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2265, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2272, 8, 179, 1, 179, 3, 179, 2275, 8, 179, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 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, 191, 1, 2181, 5, 156, 176, 258, 264, 268, 192, 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, 0, 47, 2, 0, 109, 109, 450, 450, 3, 0, 45, 45, 128, 128, 188, 188, 4, 0, 42, 42, 90, 90, 422, 422, 464, 464, 2, 0, 441, 441, 447, 447, 2, 0, 151, 151, 170, 170, 2, 0, 437, 437, 489, 489, 2, 0, 482, 485, 487, 487, 3, 0, 32, 32, 91, 91, 244, 244, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 344, 344, 360, 360, 378, 378, 381, 381, 387, 387, 416, 417, 2, 0, 433, 433, 435, 435, 4, 0, 101, 102, 115, 115, 144, 144, 246, 246, 2, 0, 13, 13, 231, 231, 2, 0, 455, 455, 462, 462, 3, 0, 5, 5, 270, 270, 444, 444, 3, 0, 266, 266, 455, 455, 462, 462, 3, 0, 425, 425, 458, 458, 477, 477, 3, 0, 330, 330, 465, 465, 481, 481, 2, 0, 440, 440, 490, 490, 2, 0, 183, 183, 265, 265, 3, 0, 130, 130, 180, 180, 402, 402, 4, 0, 152, 152, 174, 174, 201, 201, 317, 317, 3, 0, 445, 445, 459, 459, 499, 499, 4, 0, 250, 250, 446, 446, 494, 496, 498, 498, 2, 0, 74, 74, 320, 320, 3, 0, 459, 459, 492, 492, 499, 499, 2, 0, 439, 439, 450, 450, 2, 0, 457, 457, 467, 467, 4, 0, 140, 140, 244, 244, 397, 397, 404, 404, 2, 0, 19, 19, 369, 369, 2, 0, 5, 5, 11, 11, 2, 0, 509, 509, 529, 530, 4, 0, 452, 452, 527, 527, 531, 531, 534, 534, 2, 0, 529, 530, 532, 532, 1, 0, 529, 530, 1, 0, 538, 539, 2, 0, 538, 538, 541, 541, 4, 0, 452, 452, 527, 527, 529, 531, 533, 534, 3, 0, 241, 241, 508, 509, 529, 530, 2, 0, 140, 140, 397, 397, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 222, 222, 229, 229, 334, 334, 436, 436, 470, 470, 472, 472, 488, 488, 502, 502, 15, 0, 97, 97, 165, 165, 222, 222, 229, 229, 334, 334, 427, 427, 436, 436, 442, 442, 448, 449, 454, 454, 460, 460, 470, 475, 488, 488, 491, 491, 502, 503, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 200, 200, 207, 208, 389, 389, 413, 413, 527, 527, 3, 0, 78, 78, 84, 85, 207, 208, 2, 0, 91, 91, 378, 379, 52, 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, 194, 194, 197, 197, 199, 199, 201, 201, 205, 205, 209, 209, 214, 214, 220, 220, 222, 223, 229, 229, 243, 243, 245, 245, 264, 264, 276, 276, 281, 281, 283, 283, 293, 293, 317, 317, 321, 323, 334, 334, 357, 358, 364, 364, 367, 367, 380, 380, 395, 395, 398, 399, 408, 408, 419, 420, 436, 436, 469, 469, 488, 488, 502, 502, 1, 0, 437, 504, 2505, 0, 387, 1, 0, 0, 0, 2, 397, 1, 0, 0, 0, 4, 411, 1, 0, 0, 0, 6, 413, 1, 0, 0, 0, 8, 429, 1, 0, 0, 0, 10, 433, 1, 0, 0, 0, 12, 435, 1, 0, 0, 0, 14, 438, 1, 0, 0, 0, 16, 449, 1, 0, 0, 0, 18, 457, 1, 0, 0, 0, 20, 465, 1, 0, 0, 0, 22, 467, 1, 0, 0, 0, 24, 519, 1, 0, 0, 0, 26, 521, 1, 0, 0, 0, 28, 528, 1, 0, 0, 0, 30, 532, 1, 0, 0, 0, 32, 536, 1, 0, 0, 0, 34, 540, 1, 0, 0, 0, 36, 594, 1, 0, 0, 0, 38, 600, 1, 0, 0, 0, 40, 606, 1, 0, 0, 0, 42, 608, 1, 0, 0, 0, 44, 650, 1, 0, 0, 0, 46, 664, 1, 0, 0, 0, 48, 666, 1, 0, 0, 0, 50, 677, 1, 0, 0, 0, 52, 681, 1, 0, 0, 0, 54, 683, 1, 0, 0, 0, 56, 731, 1, 0, 0, 0, 58, 733, 1, 0, 0, 0, 60, 737, 1, 0, 0, 0, 62, 745, 1, 0, 0, 0, 64, 753, 1, 0, 0, 0, 66, 757, 1, 0, 0, 0, 68, 792, 1, 0, 0, 0, 70, 808, 1, 0, 0, 0, 72, 810, 1, 0, 0, 0, 74, 820, 1, 0, 0, 0, 76, 822, 1, 0, 0, 0, 78, 829, 1, 0, 0, 0, 80, 831, 1, 0, 0, 0, 82, 839, 1, 0, 0, 0, 84, 847, 1, 0, 0, 0, 86, 849, 1, 0, 0, 0, 88, 853, 1, 0, 0, 0, 90, 857, 1, 0, 0, 0, 92, 880, 1, 0, 0, 0, 94, 884, 1, 0, 0, 0, 96, 886, 1, 0, 0, 0, 98, 902, 1, 0, 0, 0, 100, 904, 1, 0, 0, 0, 102, 909, 1, 0, 0, 0, 104, 921, 1, 0, 0, 0, 106, 940, 1, 0, 0, 0, 108, 960, 1, 0, 0, 0, 110, 971, 1, 0, 0, 0, 112, 973, 1, 0, 0, 0, 114, 986, 1, 0, 0, 0, 116, 993, 1, 0, 0, 0, 118, 996, 1, 0, 0, 0, 120, 1005, 1, 0, 0, 0, 122, 1009, 1, 0, 0, 0, 124, 1013, 1, 0, 0, 0, 126, 1016, 1, 0, 0, 0, 128, 1024, 1, 0, 0, 0, 130, 1029, 1, 0, 0, 0, 132, 1046, 1, 0, 0, 0, 134, 1053, 1, 0, 0, 0, 136, 1063, 1, 0, 0, 0, 138, 1072, 1, 0, 0, 0, 140, 1082, 1, 0, 0, 0, 142, 1101, 1, 0, 0, 0, 144, 1103, 1, 0, 0, 0, 146, 1116, 1, 0, 0, 0, 148, 1119, 1, 0, 0, 0, 150, 1128, 1, 0, 0, 0, 152, 1139, 1, 0, 0, 0, 154, 1152, 1, 0, 0, 0, 156, 1187, 1, 0, 0, 0, 158, 1206, 1, 0, 0, 0, 160, 1215, 1, 0, 0, 0, 162, 1224, 1, 0, 0, 0, 164, 1243, 1, 0, 0, 0, 166, 1265, 1, 0, 0, 0, 168, 1267, 1, 0, 0, 0, 170, 1297, 1, 0, 0, 0, 172, 1311, 1, 0, 0, 0, 174, 1313, 1, 0, 0, 0, 176, 1327, 1, 0, 0, 0, 178, 1353, 1, 0, 0, 0, 180, 1386, 1, 0, 0, 0, 182, 1388, 1, 0, 0, 0, 184, 1394, 1, 0, 0, 0, 186, 1396, 1, 0, 0, 0, 188, 1401, 1, 0, 0, 0, 190, 1406, 1, 0, 0, 0, 192, 1418, 1, 0, 0, 0, 194, 1435, 1, 0, 0, 0, 196, 1437, 1, 0, 0, 0, 198, 1439, 1, 0, 0, 0, 200, 1448, 1, 0, 0, 0, 202, 1450, 1, 0, 0, 0, 204, 1453, 1, 0, 0, 0, 206, 1503, 1, 0, 0, 0, 208, 1505, 1, 0, 0, 0, 210, 1508, 1, 0, 0, 0, 212, 1510, 1, 0, 0, 0, 214, 1517, 1, 0, 0, 0, 216, 1519, 1, 0, 0, 0, 218, 1521, 1, 0, 0, 0, 220, 1524, 1, 0, 0, 0, 222, 1533, 1, 0, 0, 0, 224, 1538, 1, 0, 0, 0, 226, 1552, 1, 0, 0, 0, 228, 1580, 1, 0, 0, 0, 230, 1590, 1, 0, 0, 0, 232, 1598, 1, 0, 0, 0, 234, 1603, 1, 0, 0, 0, 236, 1635, 1, 0, 0, 0, 238, 1637, 1, 0, 0, 0, 240, 1646, 1, 0, 0, 0, 242, 1657, 1, 0, 0, 0, 244, 1669, 1, 0, 0, 0, 246, 1695, 1, 0, 0, 0, 248, 1697, 1, 0, 0, 0, 250, 1715, 1, 0, 0, 0, 252, 1717, 1, 0, 0, 0, 254, 1722, 1, 0, 0, 0, 256, 1725, 1, 0, 0, 0, 258, 1739, 1, 0, 0, 0, 260, 1825, 1, 0, 0, 0, 262, 1856, 1, 0, 0, 0, 264, 1862, 1, 0, 0, 0, 266, 1907, 1, 0, 0, 0, 268, 1984, 1, 0, 0, 0, 270, 1996, 1, 0, 0, 0, 272, 2002, 1, 0, 0, 0, 274, 2008, 1, 0, 0, 0, 276, 2012, 1, 0, 0, 0, 278, 2018, 1, 0, 0, 0, 280, 2020, 1, 0, 0, 0, 282, 2022, 1, 0, 0, 0, 284, 2026, 1, 0, 0, 0, 286, 2028, 1, 0, 0, 0, 288, 2033, 1, 0, 0, 0, 290, 2040, 1, 0, 0, 0, 292, 2044, 1, 0, 0, 0, 294, 2049, 1, 0, 0, 0, 296, 2059, 1, 0, 0, 0, 298, 2062, 1, 0, 0, 0, 300, 2068, 1, 0, 0, 0, 302, 2078, 1, 0, 0, 0, 304, 2080, 1, 0, 0, 0, 306, 2084, 1, 0, 0, 0, 308, 2095, 1, 0, 0, 0, 310, 2097, 1, 0, 0, 0, 312, 2099, 1, 0, 0, 0, 314, 2101, 1, 0, 0, 0, 316, 2106, 1, 0, 0, 0, 318, 2108, 1, 0, 0, 0, 320, 2110, 1, 0, 0, 0, 322, 2115, 1, 0, 0, 0, 324, 2132, 1, 0, 0, 0, 326, 2146, 1, 0, 0, 0, 328, 2160, 1, 0, 0, 0, 330, 2174, 1, 0, 0, 0, 332, 2176, 1, 0, 0, 0, 334, 2184, 1, 0, 0, 0, 336, 2187, 1, 0, 0, 0, 338, 2191, 1, 0, 0, 0, 340, 2194, 1, 0, 0, 0, 342, 2205, 1, 0, 0, 0, 344, 2215, 1, 0, 0, 0, 346, 2221, 1, 0, 0, 0, 348, 2229, 1, 0, 0, 0, 350, 2245, 1, 0, 0, 0, 352, 2254, 1, 0, 0, 0, 354, 2256, 1, 0, 0, 0, 356, 2258, 1, 0, 0, 0, 358, 2274, 1, 0, 0, 0, 360, 2276, 1, 0, 0, 0, 362, 2279, 1, 0, 0, 0, 364, 2281, 1, 0, 0, 0, 366, 2283, 1, 0, 0, 0, 368, 2285, 1, 0, 0, 0, 370, 2287, 1, 0, 0, 0, 372, 2289, 1, 0, 0, 0, 374, 2291, 1, 0, 0, 0, 376, 2293, 1, 0, 0, 0, 378, 2295, 1, 0, 0, 0, 380, 2297, 1, 0, 0, 0, 382, 2299, 1, 0, 0, 0, 384, 386, 3, 2, 1, 0, 385, 384, 1, 0, 0, 0, 386, 389, 1, 0, 0, 0, 387, 385, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 390, 1, 0, 0, 0, 389, 387, 1, 0, 0, 0, 390, 391, 5, 0, 0, 1, 391, 1, 1, 0, 0, 0, 392, 394, 3, 4, 2, 0, 393, 395, 5, 521, 0, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 398, 1, 0, 0, 0, 396, 398, 3, 6, 3, 0, 397, 392, 1, 0, 0, 0, 397, 396, 1, 0, 0, 0, 398, 3, 1, 0, 0, 0, 399, 412, 3, 8, 4, 0, 400, 412, 3, 10, 5, 0, 401, 412, 3, 12, 6, 0, 402, 412, 3, 14, 7, 0, 403, 412, 3, 20, 10, 0, 404, 412, 3, 24, 12, 0, 405, 412, 3, 26, 13, 0, 406, 412, 3, 28, 14, 0, 407, 412, 3, 30, 15, 0, 408, 412, 3, 32, 16, 0, 409, 412, 3, 34, 17, 0, 410, 412, 3, 36, 18, 0, 411, 399, 1, 0, 0, 0, 411, 400, 1, 0, 0, 0, 411, 401, 1, 0, 0, 0, 411, 402, 1, 0, 0, 0, 411, 403, 1, 0, 0, 0, 411, 404, 1, 0, 0, 0, 411, 405, 1, 0, 0, 0, 411, 406, 1, 0, 0, 0, 411, 407, 1, 0, 0, 0, 411, 408, 1, 0, 0, 0, 411, 409, 1, 0, 0, 0, 411, 410, 1, 0, 0, 0, 412, 5, 1, 0, 0, 0, 413, 414, 5, 521, 0, 0, 414, 7, 1, 0, 0, 0, 415, 430, 3, 40, 20, 0, 416, 430, 3, 102, 51, 0, 417, 430, 3, 104, 52, 0, 418, 430, 3, 106, 53, 0, 419, 430, 3, 100, 50, 0, 420, 430, 3, 112, 56, 0, 421, 430, 3, 126, 63, 0, 422, 430, 3, 128, 64, 0, 423, 430, 3, 130, 65, 0, 424, 430, 3, 132, 66, 0, 425, 430, 3, 134, 67, 0, 426, 430, 3, 136, 68, 0, 427, 430, 3, 138, 69, 0, 428, 430, 3, 140, 70, 0, 429, 415, 1, 0, 0, 0, 429, 416, 1, 0, 0, 0, 429, 417, 1, 0, 0, 0, 429, 418, 1, 0, 0, 0, 429, 419, 1, 0, 0, 0, 429, 420, 1, 0, 0, 0, 429, 421, 1, 0, 0, 0, 429, 422, 1, 0, 0, 0, 429, 423, 1, 0, 0, 0, 429, 424, 1, 0, 0, 0, 429, 425, 1, 0, 0, 0, 429, 426, 1, 0, 0, 0, 429, 427, 1, 0, 0, 0, 429, 428, 1, 0, 0, 0, 430, 9, 1, 0, 0, 0, 431, 434, 3, 156, 78, 0, 432, 434, 3, 142, 71, 0, 433, 431, 1, 0, 0, 0, 433, 432, 1, 0, 0, 0, 434, 11, 1, 0, 0, 0, 435, 436, 7, 0, 0, 0, 436, 437, 3, 326, 163, 0, 437, 13, 1, 0, 0, 0, 438, 442, 5, 135, 0, 0, 439, 443, 3, 16, 8, 0, 440, 441, 5, 479, 0, 0, 441, 443, 5, 146, 0, 0, 442, 439, 1, 0, 0, 0, 442, 440, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 447, 1, 0, 0, 0, 444, 448, 3, 10, 5, 0, 445, 448, 3, 144, 72, 0, 446, 448, 3, 154, 77, 0, 447, 444, 1, 0, 0, 0, 447, 445, 1, 0, 0, 0, 447, 446, 1, 0, 0, 0, 448, 15, 1, 0, 0, 0, 449, 454, 3, 18, 9, 0, 450, 451, 5, 520, 0, 0, 451, 453, 3, 18, 9, 0, 452, 450, 1, 0, 0, 0, 453, 456, 1, 0, 0, 0, 454, 452, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 17, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 457, 458, 7, 1, 0, 0, 458, 19, 1, 0, 0, 0, 459, 460, 5, 410, 0, 0, 460, 461, 5, 441, 0, 0, 461, 466, 3, 316, 158, 0, 462, 463, 5, 410, 0, 0, 463, 466, 3, 320, 160, 0, 464, 466, 3, 22, 11, 0, 465, 459, 1, 0, 0, 0, 465, 462, 1, 0, 0, 0, 465, 464, 1, 0, 0, 0, 466, 21, 1, 0, 0, 0, 467, 468, 5, 410, 0, 0, 468, 469, 5, 227, 0, 0, 469, 474, 3, 332, 166, 0, 470, 471, 5, 520, 0, 0, 471, 473, 3, 332, 166, 0, 472, 470, 1, 0, 0, 0, 473, 476, 1, 0, 0, 0, 474, 472, 1, 0, 0, 0, 474, 475, 1, 0, 0, 0, 475, 23, 1, 0, 0, 0, 476, 474, 1, 0, 0, 0, 477, 478, 5, 341, 0, 0, 478, 520, 7, 2, 0, 0, 479, 480, 5, 341, 0, 0, 480, 481, 5, 76, 0, 0, 481, 520, 7, 3, 0, 0, 482, 483, 5, 341, 0, 0, 483, 486, 5, 374, 0, 0, 484, 485, 7, 4, 0, 0, 485, 487, 3, 320, 160, 0, 486, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 489, 1, 0, 0, 0, 488, 490, 3, 262, 131, 0, 489, 488, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 520, 1, 0, 0, 0, 491, 492, 5, 341, 0, 0, 492, 493, 5, 58, 0, 0, 493, 496, 7, 4, 0, 0, 494, 497, 3, 328, 164, 0, 495, 497, 3, 326, 163, 0, 496, 494, 1, 0, 0, 0, 496, 495, 1, 0, 0, 0, 497, 499, 1, 0, 0, 0, 498, 500, 3, 262, 131, 0, 499, 498, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 520, 1, 0, 0, 0, 501, 502, 5, 341, 0, 0, 502, 507, 5, 72, 0, 0, 503, 504, 5, 373, 0, 0, 504, 508, 3, 326, 163, 0, 505, 506, 5, 501, 0, 0, 506, 508, 3, 328, 164, 0, 507, 503, 1, 0, 0, 0, 507, 505, 1, 0, 0, 0, 508, 520, 1, 0, 0, 0, 509, 511, 5, 341, 0, 0, 510, 512, 5, 411, 0, 0, 511, 510, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 520, 5, 154, 0, 0, 514, 516, 5, 341, 0, 0, 515, 517, 5, 152, 0, 0, 516, 515, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 520, 5, 227, 0, 0, 519, 477, 1, 0, 0, 0, 519, 479, 1, 0, 0, 0, 519, 482, 1, 0, 0, 0, 519, 491, 1, 0, 0, 0, 519, 501, 1, 0, 0, 0, 519, 509, 1, 0, 0, 0, 519, 514, 1, 0, 0, 0, 520, 25, 1, 0, 0, 0, 521, 522, 5, 468, 0, 0, 522, 523, 5, 226, 0, 0, 523, 526, 3, 332, 166, 0, 524, 525, 5, 433, 0, 0, 525, 527, 3, 340, 170, 0, 526, 524, 1, 0, 0, 0, 526, 527, 1, 0, 0, 0, 527, 27, 1, 0, 0, 0, 528, 529, 5, 500, 0, 0, 529, 530, 5, 226, 0, 0, 530, 531, 3, 332, 166, 0, 531, 29, 1, 0, 0, 0, 532, 534, 5, 340, 0, 0, 533, 535, 3, 342, 171, 0, 534, 533, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 31, 1, 0, 0, 0, 536, 538, 5, 312, 0, 0, 537, 539, 3, 344, 172, 0, 538, 537, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 33, 1, 0, 0, 0, 540, 541, 7, 5, 0, 0, 541, 542, 5, 463, 0, 0, 542, 543, 3, 110, 55, 0, 543, 35, 1, 0, 0, 0, 544, 545, 5, 437, 0, 0, 545, 546, 5, 463, 0, 0, 546, 547, 5, 433, 0, 0, 547, 550, 3, 38, 19, 0, 548, 549, 5, 17, 0, 0, 549, 551, 3, 332, 166, 0, 550, 548, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 595, 1, 0, 0, 0, 552, 553, 5, 437, 0, 0, 553, 554, 5, 456, 0, 0, 554, 555, 5, 433, 0, 0, 555, 558, 3, 38, 19, 0, 556, 557, 5, 17, 0, 0, 557, 559, 3, 332, 166, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 562, 1, 0, 0, 0, 560, 561, 5, 311, 0, 0, 561, 563, 3, 332, 166, 0, 562, 560, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 595, 1, 0, 0, 0, 564, 565, 5, 437, 0, 0, 565, 566, 7, 6, 0, 0, 566, 567, 5, 433, 0, 0, 567, 568, 3, 38, 19, 0, 568, 569, 5, 311, 0, 0, 569, 570, 3, 332, 166, 0, 570, 595, 1, 0, 0, 0, 571, 572, 5, 437, 0, 0, 572, 573, 5, 486, 0, 0, 573, 595, 3, 38, 19, 0, 574, 575, 5, 437, 0, 0, 575, 576, 5, 453, 0, 0, 576, 577, 5, 456, 0, 0, 577, 578, 5, 433, 0, 0, 578, 579, 3, 38, 19, 0, 579, 580, 5, 311, 0, 0, 580, 581, 3, 332, 166, 0, 581, 582, 5, 466, 0, 0, 582, 583, 3, 332, 166, 0, 583, 595, 1, 0, 0, 0, 584, 585, 5, 437, 0, 0, 585, 586, 5, 443, 0, 0, 586, 587, 5, 456, 0, 0, 587, 588, 5, 433, 0, 0, 588, 589, 3, 38, 19, 0, 589, 590, 5, 146, 0, 0, 590, 591, 3, 332, 166, 0, 591, 592, 5, 17, 0, 0, 592, 593, 3, 332, 166, 0, 593, 595, 1, 0, 0, 0, 594, 544, 1, 0, 0, 0, 594, 552, 1, 0, 0, 0, 594, 564, 1, 0, 0, 0, 594, 571, 1, 0, 0, 0, 594, 574, 1, 0, 0, 0, 594, 584, 1, 0, 0, 0, 595, 37, 1, 0, 0, 0, 596, 598, 5, 534, 0, 0, 597, 596, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 601, 3, 332, 166, 0, 600, 597, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 600, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 39, 1, 0, 0, 0, 604, 607, 3, 42, 21, 0, 605, 607, 3, 44, 22, 0, 606, 604, 1, 0, 0, 0, 606, 605, 1, 0, 0, 0, 607, 41, 1, 0, 0, 0, 608, 610, 5, 72, 0, 0, 609, 611, 5, 497, 0, 0, 610, 609, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 612, 1, 0, 0, 0, 612, 614, 5, 373, 0, 0, 613, 615, 3, 336, 168, 0, 614, 613, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 617, 3, 324, 162, 0, 617, 618, 5, 516, 0, 0, 618, 623, 3, 46, 23, 0, 619, 620, 5, 520, 0, 0, 620, 622, 3, 46, 23, 0, 621, 619, 1, 0, 0, 0, 622, 625, 1, 0, 0, 0, 623, 621, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 628, 1, 0, 0, 0, 625, 623, 1, 0, 0, 0, 626, 627, 5, 520, 0, 0, 627, 629, 3, 80, 40, 0, 628, 626, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 632, 1, 0, 0, 0, 630, 631, 5, 520, 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, 520, 0, 0, 635, 637, 3, 86, 43, 0, 636, 634, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 638, 1, 0, 0, 0, 638, 641, 5, 517, 0, 0, 639, 640, 5, 59, 0, 0, 640, 642, 5, 537, 0, 0, 641, 639, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 644, 1, 0, 0, 0, 643, 645, 3, 88, 44, 0, 644, 643, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 648, 3, 334, 167, 0, 647, 649, 3, 96, 48, 0, 648, 647, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 43, 1, 0, 0, 0, 650, 651, 5, 72, 0, 0, 651, 653, 5, 373, 0, 0, 652, 654, 3, 336, 168, 0, 653, 652, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 3, 324, 162, 0, 656, 659, 3, 334, 167, 0, 657, 658, 5, 17, 0, 0, 658, 660, 3, 156, 78, 0, 659, 657, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 45, 1, 0, 0, 0, 661, 665, 3, 48, 24, 0, 662, 665, 3, 72, 36, 0, 663, 665, 3, 76, 38, 0, 664, 661, 1, 0, 0, 0, 664, 662, 1, 0, 0, 0, 664, 663, 1, 0, 0, 0, 665, 47, 1, 0, 0, 0, 666, 667, 3, 50, 25, 0, 667, 669, 3, 56, 28, 0, 668, 670, 3, 70, 35, 0, 669, 668, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 673, 1, 0, 0, 0, 671, 672, 5, 59, 0, 0, 672, 674, 5, 537, 0, 0, 673, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 49, 1, 0, 0, 0, 675, 678, 3, 332, 166, 0, 676, 678, 3, 256, 128, 0, 677, 675, 1, 0, 0, 0, 677, 676, 1, 0, 0, 0, 678, 51, 1, 0, 0, 0, 679, 682, 3, 332, 166, 0, 680, 682, 4, 26, 0, 0, 681, 679, 1, 0, 0, 0, 681, 680, 1, 0, 0, 0, 682, 53, 1, 0, 0, 0, 683, 684, 5, 516, 0, 0, 684, 689, 3, 52, 26, 0, 685, 686, 5, 520, 0, 0, 686, 688, 3, 52, 26, 0, 687, 685, 1, 0, 0, 0, 688, 691, 1, 0, 0, 0, 689, 687, 1, 0, 0, 0, 689, 690, 1, 0, 0, 0, 690, 692, 1, 0, 0, 0, 691, 689, 1, 0, 0, 0, 692, 693, 5, 517, 0, 0, 693, 55, 1, 0, 0, 0, 694, 732, 7, 7, 0, 0, 695, 697, 7, 8, 0, 0, 696, 698, 3, 58, 29, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 732, 1, 0, 0, 0, 699, 701, 5, 379, 0, 0, 700, 702, 3, 58, 29, 0, 701, 700, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 709, 1, 0, 0, 0, 703, 705, 7, 9, 0, 0, 704, 706, 5, 206, 0, 0, 705, 704, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 5, 378, 0, 0, 708, 710, 5, 504, 0, 0, 709, 703, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 732, 1, 0, 0, 0, 711, 713, 7, 10, 0, 0, 712, 714, 3, 60, 30, 0, 713, 712, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 732, 1, 0, 0, 0, 715, 717, 7, 11, 0, 0, 716, 718, 3, 64, 32, 0, 717, 716, 1, 0, 0, 0, 717, 718, 1, 0, 0, 0, 718, 732, 1, 0, 0, 0, 719, 721, 5, 469, 0, 0, 720, 722, 3, 66, 33, 0, 721, 720, 1, 0, 0, 0, 721, 722, 1, 0, 0, 0, 722, 732, 1, 0, 0, 0, 723, 725, 5, 321, 0, 0, 724, 726, 3, 68, 34, 0, 725, 724, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 732, 1, 0, 0, 0, 727, 729, 5, 294, 0, 0, 728, 730, 3, 62, 31, 0, 729, 728, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 732, 1, 0, 0, 0, 731, 694, 1, 0, 0, 0, 731, 695, 1, 0, 0, 0, 731, 699, 1, 0, 0, 0, 731, 711, 1, 0, 0, 0, 731, 715, 1, 0, 0, 0, 731, 719, 1, 0, 0, 0, 731, 723, 1, 0, 0, 0, 731, 727, 1, 0, 0, 0, 732, 57, 1, 0, 0, 0, 733, 734, 5, 516, 0, 0, 734, 735, 3, 364, 182, 0, 735, 736, 5, 517, 0, 0, 736, 59, 1, 0, 0, 0, 737, 738, 5, 516, 0, 0, 738, 741, 3, 364, 182, 0, 739, 740, 5, 520, 0, 0, 740, 742, 3, 364, 182, 0, 741, 739, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 5, 517, 0, 0, 744, 61, 1, 0, 0, 0, 745, 746, 5, 516, 0, 0, 746, 749, 3, 362, 181, 0, 747, 748, 5, 520, 0, 0, 748, 750, 3, 362, 181, 0, 749, 747, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 752, 5, 517, 0, 0, 752, 63, 1, 0, 0, 0, 753, 754, 5, 507, 0, 0, 754, 755, 3, 56, 28, 0, 755, 756, 5, 506, 0, 0, 756, 65, 1, 0, 0, 0, 757, 758, 5, 507, 0, 0, 758, 759, 3, 56, 28, 0, 759, 760, 5, 520, 0, 0, 760, 761, 3, 56, 28, 0, 761, 762, 1, 0, 0, 0, 762, 763, 5, 506, 0, 0, 763, 67, 1, 0, 0, 0, 764, 765, 5, 507, 0, 0, 765, 766, 3, 52, 26, 0, 766, 773, 3, 56, 28, 0, 767, 768, 5, 520, 0, 0, 768, 769, 3, 52, 26, 0, 769, 770, 3, 56, 28, 0, 770, 772, 1, 0, 0, 0, 771, 767, 1, 0, 0, 0, 772, 775, 1, 0, 0, 0, 773, 771, 1, 0, 0, 0, 773, 774, 1, 0, 0, 0, 774, 776, 1, 0, 0, 0, 775, 773, 1, 0, 0, 0, 776, 777, 5, 506, 0, 0, 777, 793, 1, 0, 0, 0, 778, 779, 5, 516, 0, 0, 779, 780, 3, 52, 26, 0, 780, 787, 3, 56, 28, 0, 781, 782, 5, 520, 0, 0, 782, 783, 3, 52, 26, 0, 783, 784, 3, 56, 28, 0, 784, 786, 1, 0, 0, 0, 785, 781, 1, 0, 0, 0, 786, 789, 1, 0, 0, 0, 787, 785, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 790, 1, 0, 0, 0, 789, 787, 1, 0, 0, 0, 790, 791, 5, 517, 0, 0, 791, 793, 1, 0, 0, 0, 792, 764, 1, 0, 0, 0, 792, 778, 1, 0, 0, 0, 793, 69, 1, 0, 0, 0, 794, 795, 5, 64, 0, 0, 795, 797, 3, 84, 42, 0, 796, 794, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 799, 5, 288, 0, 0, 799, 802, 5, 466, 0, 0, 800, 801, 5, 241, 0, 0, 801, 803, 5, 125, 0, 0, 802, 800, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 809, 1, 0, 0, 0, 804, 806, 5, 241, 0, 0, 805, 804, 1, 0, 0, 0, 805, 806, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 809, 5, 244, 0, 0, 808, 796, 1, 0, 0, 0, 808, 805, 1, 0, 0, 0, 809, 71, 1, 0, 0, 0, 810, 811, 3, 50, 25, 0, 811, 812, 3, 56, 28, 0, 812, 815, 5, 218, 0, 0, 813, 814, 5, 151, 0, 0, 814, 816, 3, 74, 37, 0, 815, 813, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 818, 1, 0, 0, 0, 817, 819, 5, 423, 0, 0, 818, 817, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 73, 1, 0, 0, 0, 820, 821, 5, 537, 0, 0, 821, 75, 1, 0, 0, 0, 822, 823, 3, 50, 25, 0, 823, 824, 5, 17, 0, 0, 824, 827, 3, 78, 39, 0, 825, 826, 5, 59, 0, 0, 826, 828, 5, 537, 0, 0, 827, 825, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 77, 1, 0, 0, 0, 829, 830, 3, 256, 128, 0, 830, 79, 1, 0, 0, 0, 831, 832, 5, 424, 0, 0, 832, 833, 5, 146, 0, 0, 833, 834, 3, 52, 26, 0, 834, 835, 5, 17, 0, 0, 835, 836, 3, 256, 128, 0, 836, 81, 1, 0, 0, 0, 837, 838, 5, 64, 0, 0, 838, 840, 3, 84, 42, 0, 839, 837, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 5, 288, 0, 0, 842, 843, 5, 466, 0, 0, 843, 844, 3, 54, 27, 0, 844, 845, 5, 241, 0, 0, 845, 846, 5, 125, 0, 0, 846, 83, 1, 0, 0, 0, 847, 848, 3, 308, 154, 0, 848, 85, 1, 0, 0, 0, 849, 850, 5, 277, 0, 0, 850, 851, 5, 146, 0, 0, 851, 852, 5, 371, 0, 0, 852, 87, 1, 0, 0, 0, 853, 854, 5, 269, 0, 0, 854, 855, 5, 34, 0, 0, 855, 856, 3, 90, 45, 0, 856, 89, 1, 0, 0, 0, 857, 858, 5, 516, 0, 0, 858, 863, 3, 92, 46, 0, 859, 860, 5, 520, 0, 0, 860, 862, 3, 92, 46, 0, 861, 859, 1, 0, 0, 0, 862, 865, 1, 0, 0, 0, 863, 861, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 866, 1, 0, 0, 0, 865, 863, 1, 0, 0, 0, 866, 867, 5, 517, 0, 0, 867, 91, 1, 0, 0, 0, 868, 881, 3, 52, 26, 0, 869, 870, 5, 516, 0, 0, 870, 875, 3, 94, 47, 0, 871, 872, 5, 520, 0, 0, 872, 874, 3, 94, 47, 0, 873, 871, 1, 0, 0, 0, 874, 877, 1, 0, 0, 0, 875, 873, 1, 0, 0, 0, 875, 876, 1, 0, 0, 0, 876, 878, 1, 0, 0, 0, 877, 875, 1, 0, 0, 0, 878, 879, 5, 517, 0, 0, 879, 881, 1, 0, 0, 0, 880, 868, 1, 0, 0, 0, 880, 869, 1, 0, 0, 0, 881, 93, 1, 0, 0, 0, 882, 885, 3, 284, 142, 0, 883, 885, 3, 358, 179, 0, 884, 882, 1, 0, 0, 0, 884, 883, 1, 0, 0, 0, 885, 95, 1, 0, 0, 0, 886, 887, 5, 202, 0, 0, 887, 896, 3, 326, 163, 0, 888, 892, 5, 516, 0, 0, 889, 891, 3, 98, 49, 0, 890, 889, 1, 0, 0, 0, 891, 894, 1, 0, 0, 0, 892, 890, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 895, 1, 0, 0, 0, 894, 892, 1, 0, 0, 0, 895, 897, 5, 517, 0, 0, 896, 888, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 97, 1, 0, 0, 0, 898, 899, 7, 12, 0, 0, 899, 903, 7, 13, 0, 0, 900, 901, 7, 14, 0, 0, 901, 903, 7, 15, 0, 0, 902, 898, 1, 0, 0, 0, 902, 900, 1, 0, 0, 0, 903, 99, 1, 0, 0, 0, 904, 905, 5, 72, 0, 0, 905, 906, 5, 441, 0, 0, 906, 907, 3, 318, 159, 0, 907, 908, 3, 334, 167, 0, 908, 101, 1, 0, 0, 0, 909, 910, 5, 72, 0, 0, 910, 912, 5, 447, 0, 0, 911, 913, 3, 336, 168, 0, 912, 911, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 917, 3, 322, 161, 0, 915, 916, 5, 59, 0, 0, 916, 918, 5, 537, 0, 0, 917, 915, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 920, 3, 334, 167, 0, 920, 103, 1, 0, 0, 0, 921, 923, 5, 72, 0, 0, 922, 924, 5, 497, 0, 0, 923, 922, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 927, 5, 501, 0, 0, 926, 928, 3, 336, 168, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 931, 3, 330, 165, 0, 930, 932, 3, 54, 27, 0, 931, 930, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 935, 1, 0, 0, 0, 933, 934, 5, 59, 0, 0, 934, 936, 5, 537, 0, 0, 935, 933, 1, 0, 0, 0, 935, 936, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 938, 5, 17, 0, 0, 938, 939, 3, 156, 78, 0, 939, 105, 1, 0, 0, 0, 940, 944, 5, 72, 0, 0, 941, 945, 5, 497, 0, 0, 942, 943, 5, 497, 0, 0, 943, 945, 5, 370, 0, 0, 944, 941, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 948, 5, 153, 0, 0, 947, 949, 3, 336, 168, 0, 948, 947, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 951, 3, 270, 135, 0, 951, 952, 5, 17, 0, 0, 952, 955, 3, 308, 154, 0, 953, 954, 5, 195, 0, 0, 954, 956, 7, 16, 0, 0, 955, 953, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 958, 1, 0, 0, 0, 957, 959, 3, 108, 54, 0, 958, 957, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 107, 1, 0, 0, 0, 960, 961, 5, 412, 0, 0, 961, 962, 5, 463, 0, 0, 962, 968, 3, 110, 55, 0, 963, 964, 5, 520, 0, 0, 964, 965, 5, 463, 0, 0, 965, 967, 3, 110, 55, 0, 966, 963, 1, 0, 0, 0, 967, 970, 1, 0, 0, 0, 968, 966, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 109, 1, 0, 0, 0, 970, 968, 1, 0, 0, 0, 971, 972, 5, 537, 0, 0, 972, 111, 1, 0, 0, 0, 973, 974, 5, 8, 0, 0, 974, 976, 5, 373, 0, 0, 975, 977, 3, 338, 169, 0, 976, 975, 1, 0, 0, 0, 976, 977, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 984, 3, 326, 163, 0, 979, 985, 3, 114, 57, 0, 980, 985, 3, 116, 58, 0, 981, 985, 3, 118, 59, 0, 982, 985, 3, 120, 60, 0, 983, 985, 3, 122, 61, 0, 984, 979, 1, 0, 0, 0, 984, 980, 1, 0, 0, 0, 984, 981, 1, 0, 0, 0, 984, 982, 1, 0, 0, 0, 984, 983, 1, 0, 0, 0, 985, 113, 1, 0, 0, 0, 986, 988, 5, 311, 0, 0, 987, 989, 3, 332, 166, 0, 988, 987, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 5, 388, 0, 0, 991, 992, 3, 332, 166, 0, 992, 115, 1, 0, 0, 0, 993, 994, 5, 340, 0, 0, 994, 995, 3, 340, 170, 0, 995, 117, 1, 0, 0, 0, 996, 997, 5, 437, 0, 0, 997, 998, 5, 64, 0, 0, 998, 999, 3, 84, 42, 0, 999, 1000, 5, 288, 0, 0, 1000, 1001, 5, 466, 0, 0, 1001, 1003, 3, 54, 27, 0, 1002, 1004, 3, 124, 62, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 119, 1, 0, 0, 0, 1005, 1006, 5, 116, 0, 0, 1006, 1007, 5, 64, 0, 0, 1007, 1008, 3, 84, 42, 0, 1008, 121, 1, 0, 0, 0, 1009, 1010, 5, 437, 0, 0, 1010, 1011, 5, 403, 0, 0, 1011, 1012, 3, 54, 27, 0, 1012, 123, 1, 0, 0, 0, 1013, 1014, 5, 241, 0, 0, 1014, 1015, 5, 125, 0, 0, 1015, 125, 1, 0, 0, 0, 1016, 1017, 5, 8, 0, 0, 1017, 1018, 5, 501, 0, 0, 1018, 1022, 3, 328, 164, 0, 1019, 1023, 3, 114, 57, 0, 1020, 1021, 5, 17, 0, 0, 1021, 1023, 3, 156, 78, 0, 1022, 1019, 1, 0, 0, 0, 1022, 1020, 1, 0, 0, 0, 1023, 127, 1, 0, 0, 0, 1024, 1025, 5, 8, 0, 0, 1025, 1026, 5, 447, 0, 0, 1026, 1027, 3, 320, 160, 0, 1027, 1028, 3, 116, 58, 0, 1028, 129, 1, 0, 0, 0, 1029, 1033, 5, 8, 0, 0, 1030, 1034, 5, 497, 0, 0, 1031, 1032, 5, 497, 0, 0, 1032, 1034, 5, 370, 0, 0, 1033, 1030, 1, 0, 0, 0, 1033, 1031, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1037, 5, 153, 0, 0, 1036, 1038, 3, 338, 169, 0, 1037, 1036, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1040, 3, 272, 136, 0, 1040, 1041, 5, 17, 0, 0, 1041, 1044, 3, 308, 154, 0, 1042, 1043, 5, 195, 0, 0, 1043, 1045, 7, 16, 0, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 131, 1, 0, 0, 0, 1046, 1047, 5, 116, 0, 0, 1047, 1049, 5, 441, 0, 0, 1048, 1050, 3, 338, 169, 0, 1049, 1048, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1052, 3, 316, 158, 0, 1052, 133, 1, 0, 0, 0, 1053, 1055, 5, 116, 0, 0, 1054, 1056, 5, 497, 0, 0, 1055, 1054, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1059, 5, 373, 0, 0, 1058, 1060, 3, 338, 169, 0, 1059, 1058, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1062, 3, 326, 163, 0, 1062, 135, 1, 0, 0, 0, 1063, 1064, 5, 116, 0, 0, 1064, 1066, 5, 447, 0, 0, 1065, 1067, 3, 338, 169, 0, 1066, 1065, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1070, 3, 320, 160, 0, 1069, 1071, 7, 17, 0, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 137, 1, 0, 0, 0, 1072, 1074, 5, 116, 0, 0, 1073, 1075, 5, 497, 0, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1078, 5, 501, 0, 0, 1077, 1079, 3, 338, 169, 0, 1078, 1077, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 3, 328, 164, 0, 1081, 139, 1, 0, 0, 0, 1082, 1086, 5, 116, 0, 0, 1083, 1087, 5, 497, 0, 0, 1084, 1085, 5, 497, 0, 0, 1085, 1087, 5, 370, 0, 0, 1086, 1083, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1090, 5, 153, 0, 0, 1089, 1091, 3, 338, 169, 0, 1090, 1089, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1093, 3, 272, 136, 0, 1093, 141, 1, 0, 0, 0, 1094, 1096, 5, 132, 0, 0, 1095, 1094, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1102, 3, 144, 72, 0, 1098, 1102, 3, 152, 76, 0, 1099, 1100, 5, 132, 0, 0, 1100, 1102, 3, 154, 77, 0, 1101, 1095, 1, 0, 0, 0, 1101, 1098, 1, 0, 0, 0, 1101, 1099, 1, 0, 0, 0, 1102, 143, 1, 0, 0, 0, 1103, 1104, 5, 177, 0, 0, 1104, 1105, 7, 18, 0, 0, 1105, 1114, 3, 326, 163, 0, 1106, 1108, 3, 146, 73, 0, 1107, 1106, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1110, 1, 0, 0, 0, 1109, 1111, 3, 54, 27, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1115, 3, 156, 78, 0, 1113, 1115, 3, 148, 74, 0, 1114, 1107, 1, 0, 0, 0, 1114, 1113, 1, 0, 0, 0, 1115, 145, 1, 0, 0, 0, 1116, 1117, 5, 268, 0, 0, 1117, 1118, 3, 340, 170, 0, 1118, 147, 1, 0, 0, 0, 1119, 1120, 5, 414, 0, 0, 1120, 1125, 3, 150, 75, 0, 1121, 1122, 5, 520, 0, 0, 1122, 1124, 3, 150, 75, 0, 1123, 1121, 1, 0, 0, 0, 1124, 1127, 1, 0, 0, 0, 1125, 1123, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 149, 1, 0, 0, 0, 1127, 1125, 1, 0, 0, 0, 1128, 1129, 5, 516, 0, 0, 1129, 1134, 3, 358, 179, 0, 1130, 1131, 5, 520, 0, 0, 1131, 1133, 3, 358, 179, 0, 1132, 1130, 1, 0, 0, 0, 1133, 1136, 1, 0, 0, 0, 1134, 1132, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1137, 1, 0, 0, 0, 1136, 1134, 1, 0, 0, 0, 1137, 1138, 5, 517, 0, 0, 1138, 151, 1, 0, 0, 0, 1139, 1140, 5, 24, 0, 0, 1140, 1141, 5, 354, 0, 0, 1141, 1142, 5, 340, 0, 0, 1142, 1146, 5, 521, 0, 0, 1143, 1144, 3, 144, 72, 0, 1144, 1145, 5, 521, 0, 0, 1145, 1147, 1, 0, 0, 0, 1146, 1143, 1, 0, 0, 0, 1147, 1148, 1, 0, 0, 0, 1148, 1146, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 5, 122, 0, 0, 1151, 153, 1, 0, 0, 0, 1152, 1153, 5, 354, 0, 0, 1153, 1154, 5, 340, 0, 0, 1154, 1158, 5, 24, 0, 0, 1155, 1156, 3, 144, 72, 0, 1156, 1157, 5, 521, 0, 0, 1157, 1159, 1, 0, 0, 0, 1158, 1155, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1158, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1163, 5, 122, 0, 0, 1163, 155, 1, 0, 0, 0, 1164, 1165, 6, 78, -1, 0, 1165, 1188, 3, 158, 79, 0, 1166, 1167, 3, 160, 80, 0, 1167, 1168, 3, 156, 78, 5, 1168, 1188, 1, 0, 0, 0, 1169, 1170, 5, 516, 0, 0, 1170, 1171, 3, 156, 78, 0, 1171, 1172, 5, 517, 0, 0, 1172, 1188, 1, 0, 0, 0, 1173, 1175, 3, 168, 84, 0, 1174, 1176, 3, 228, 114, 0, 1175, 1174, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1178, 1, 0, 0, 0, 1177, 1179, 3, 232, 116, 0, 1178, 1177, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1188, 1, 0, 0, 0, 1180, 1182, 3, 166, 83, 0, 1181, 1183, 3, 228, 114, 0, 1182, 1181, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1185, 1, 0, 0, 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, 1164, 1, 0, 0, 0, 1187, 1166, 1, 0, 0, 0, 1187, 1169, 1, 0, 0, 0, 1187, 1173, 1, 0, 0, 0, 1187, 1180, 1, 0, 0, 0, 1188, 1203, 1, 0, 0, 0, 1189, 1190, 10, 3, 0, 0, 1190, 1192, 7, 19, 0, 0, 1191, 1193, 5, 5, 0, 0, 1192, 1191, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1196, 3, 156, 78, 0, 1195, 1197, 3, 228, 114, 0, 1196, 1195, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1199, 1, 0, 0, 0, 1198, 1200, 3, 232, 116, 0, 1199, 1198, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1202, 1, 0, 0, 0, 1201, 1189, 1, 0, 0, 0, 1202, 1205, 1, 0, 0, 0, 1203, 1201, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 157, 1, 0, 0, 0, 1205, 1203, 1, 0, 0, 0, 1206, 1207, 5, 414, 0, 0, 1207, 1212, 3, 256, 128, 0, 1208, 1209, 5, 520, 0, 0, 1209, 1211, 3, 256, 128, 0, 1210, 1208, 1, 0, 0, 0, 1211, 1214, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 159, 1, 0, 0, 0, 1214, 1212, 1, 0, 0, 0, 1215, 1216, 5, 433, 0, 0, 1216, 1221, 3, 162, 81, 0, 1217, 1218, 5, 520, 0, 0, 1218, 1220, 3, 162, 81, 0, 1219, 1217, 1, 0, 0, 0, 1220, 1223, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 161, 1, 0, 0, 0, 1223, 1221, 1, 0, 0, 0, 1224, 1236, 3, 164, 82, 0, 1225, 1226, 5, 516, 0, 0, 1226, 1231, 3, 52, 26, 0, 1227, 1228, 5, 520, 0, 0, 1228, 1230, 3, 52, 26, 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, 1234, 1, 0, 0, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1235, 5, 517, 0, 0, 1235, 1237, 1, 0, 0, 0, 1236, 1225, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1239, 5, 17, 0, 0, 1239, 1240, 5, 516, 0, 0, 1240, 1241, 3, 156, 78, 0, 1241, 1242, 5, 517, 0, 0, 1242, 163, 1, 0, 0, 0, 1243, 1244, 3, 308, 154, 0, 1244, 165, 1, 0, 0, 0, 1245, 1247, 3, 168, 84, 0, 1246, 1248, 3, 174, 87, 0, 1247, 1246, 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 1250, 1, 0, 0, 0, 1249, 1251, 3, 202, 101, 0, 1250, 1249, 1, 0, 0, 0, 1250, 1251, 1, 0, 0, 0, 1251, 1253, 1, 0, 0, 0, 1252, 1254, 3, 204, 102, 0, 1253, 1252, 1, 0, 0, 0, 1253, 1254, 1, 0, 0, 0, 1254, 1256, 1, 0, 0, 0, 1255, 1257, 3, 218, 109, 0, 1256, 1255, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1259, 1, 0, 0, 0, 1258, 1260, 3, 220, 110, 0, 1259, 1258, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1266, 1, 0, 0, 0, 1261, 1262, 3, 168, 84, 0, 1262, 1263, 3, 174, 87, 0, 1263, 1264, 3, 226, 113, 0, 1264, 1266, 1, 0, 0, 0, 1265, 1245, 1, 0, 0, 0, 1265, 1261, 1, 0, 0, 0, 1266, 167, 1, 0, 0, 0, 1267, 1269, 5, 336, 0, 0, 1268, 1270, 3, 368, 184, 0, 1269, 1268, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1280, 1, 0, 0, 0, 1271, 1281, 5, 527, 0, 0, 1272, 1277, 3, 170, 85, 0, 1273, 1274, 5, 520, 0, 0, 1274, 1276, 3, 170, 85, 0, 1275, 1273, 1, 0, 0, 0, 1276, 1279, 1, 0, 0, 0, 1277, 1275, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1281, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1280, 1271, 1, 0, 0, 0, 1280, 1272, 1, 0, 0, 0, 1281, 169, 1, 0, 0, 0, 1282, 1298, 3, 172, 86, 0, 1283, 1288, 3, 256, 128, 0, 1284, 1286, 5, 17, 0, 0, 1285, 1284, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1289, 3, 52, 26, 0, 1288, 1285, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1298, 1, 0, 0, 0, 1290, 1295, 3, 52, 26, 0, 1291, 1293, 5, 17, 0, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1296, 3, 256, 128, 0, 1295, 1292, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1298, 1, 0, 0, 0, 1297, 1282, 1, 0, 0, 0, 1297, 1283, 1, 0, 0, 0, 1297, 1290, 1, 0, 0, 0, 1298, 171, 1, 0, 0, 0, 1299, 1300, 3, 268, 134, 0, 1300, 1301, 5, 262, 0, 0, 1301, 1302, 3, 224, 112, 0, 1302, 1303, 5, 17, 0, 0, 1303, 1304, 3, 308, 154, 0, 1304, 1312, 1, 0, 0, 0, 1305, 1306, 3, 268, 134, 0, 1306, 1307, 5, 262, 0, 0, 1307, 1308, 3, 300, 150, 0, 1308, 1309, 5, 17, 0, 0, 1309, 1310, 3, 308, 154, 0, 1310, 1312, 1, 0, 0, 0, 1311, 1299, 1, 0, 0, 0, 1311, 1305, 1, 0, 0, 0, 1312, 173, 1, 0, 0, 0, 1313, 1314, 5, 151, 0, 0, 1314, 1315, 3, 176, 88, 0, 1315, 175, 1, 0, 0, 0, 1316, 1317, 6, 88, -1, 0, 1317, 1322, 3, 178, 89, 0, 1318, 1319, 5, 520, 0, 0, 1319, 1321, 3, 178, 89, 0, 1320, 1318, 1, 0, 0, 0, 1321, 1324, 1, 0, 0, 0, 1322, 1320, 1, 0, 0, 0, 1322, 1323, 1, 0, 0, 0, 1323, 1328, 1, 0, 0, 0, 1324, 1322, 1, 0, 0, 0, 1325, 1328, 3, 186, 93, 0, 1326, 1328, 3, 188, 94, 0, 1327, 1316, 1, 0, 0, 0, 1327, 1325, 1, 0, 0, 0, 1327, 1326, 1, 0, 0, 0, 1328, 1350, 1, 0, 0, 0, 1329, 1330, 10, 3, 0, 0, 1330, 1331, 5, 73, 0, 0, 1331, 1332, 5, 185, 0, 0, 1332, 1349, 3, 176, 88, 4, 1333, 1335, 10, 4, 0, 0, 1334, 1336, 5, 233, 0, 0, 1335, 1334, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1338, 1, 0, 0, 0, 1337, 1339, 7, 20, 0, 0, 1338, 1337, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1341, 1, 0, 0, 0, 1340, 1342, 5, 261, 0, 0, 1341, 1340, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1344, 5, 185, 0, 0, 1344, 1346, 3, 176, 88, 0, 1345, 1347, 3, 200, 100, 0, 1346, 1345, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1349, 1, 0, 0, 0, 1348, 1329, 1, 0, 0, 0, 1348, 1333, 1, 0, 0, 0, 1349, 1352, 1, 0, 0, 0, 1350, 1348, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 177, 1, 0, 0, 0, 1352, 1350, 1, 0, 0, 0, 1353, 1355, 3, 180, 90, 0, 1354, 1356, 3, 298, 149, 0, 1355, 1354, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 179, 1, 0, 0, 0, 1357, 1359, 5, 373, 0, 0, 1358, 1357, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1362, 3, 326, 163, 0, 1361, 1363, 3, 182, 91, 0, 1362, 1361, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1387, 1, 0, 0, 0, 1364, 1366, 3, 328, 164, 0, 1365, 1367, 3, 182, 91, 0, 1366, 1365, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1387, 1, 0, 0, 0, 1368, 1369, 5, 198, 0, 0, 1369, 1370, 5, 373, 0, 0, 1370, 1371, 5, 516, 0, 0, 1371, 1372, 3, 266, 133, 0, 1372, 1373, 5, 517, 0, 0, 1373, 1387, 1, 0, 0, 0, 1374, 1376, 5, 198, 0, 0, 1375, 1374, 1, 0, 0, 0, 1375, 1376, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1378, 5, 516, 0, 0, 1378, 1379, 3, 156, 78, 0, 1379, 1380, 5, 517, 0, 0, 1380, 1387, 1, 0, 0, 0, 1381, 1382, 5, 405, 0, 0, 1382, 1383, 5, 516, 0, 0, 1383, 1384, 3, 256, 128, 0, 1384, 1385, 5, 517, 0, 0, 1385, 1387, 1, 0, 0, 0, 1386, 1358, 1, 0, 0, 0, 1386, 1364, 1, 0, 0, 0, 1386, 1368, 1, 0, 0, 0, 1386, 1375, 1, 0, 0, 0, 1386, 1381, 1, 0, 0, 0, 1387, 181, 1, 0, 0, 0, 1388, 1389, 5, 146, 0, 0, 1389, 1390, 5, 371, 0, 0, 1390, 1391, 5, 17, 0, 0, 1391, 1392, 5, 249, 0, 0, 1392, 1393, 3, 184, 92, 0, 1393, 183, 1, 0, 0, 0, 1394, 1395, 3, 256, 128, 0, 1395, 185, 1, 0, 0, 0, 1396, 1397, 5, 516, 0, 0, 1397, 1398, 3, 148, 74, 0, 1398, 1399, 5, 517, 0, 0, 1399, 1400, 3, 298, 149, 0, 1400, 187, 1, 0, 0, 0, 1401, 1402, 5, 373, 0, 0, 1402, 1403, 5, 516, 0, 0, 1403, 1404, 3, 190, 95, 0, 1404, 1405, 5, 517, 0, 0, 1405, 189, 1, 0, 0, 0, 1406, 1407, 3, 192, 96, 0, 1407, 1408, 5, 516, 0, 0, 1408, 1413, 3, 194, 97, 0, 1409, 1410, 5, 520, 0, 0, 1410, 1412, 3, 194, 97, 0, 1411, 1409, 1, 0, 0, 0, 1412, 1415, 1, 0, 0, 0, 1413, 1411, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1416, 1, 0, 0, 0, 1415, 1413, 1, 0, 0, 0, 1416, 1417, 5, 517, 0, 0, 1417, 191, 1, 0, 0, 0, 1418, 1419, 7, 21, 0, 0, 1419, 193, 1, 0, 0, 0, 1420, 1421, 5, 373, 0, 0, 1421, 1436, 3, 216, 108, 0, 1422, 1436, 3, 198, 99, 0, 1423, 1436, 3, 286, 143, 0, 1424, 1425, 5, 446, 0, 0, 1425, 1426, 5, 536, 0, 0, 1426, 1427, 5, 373, 0, 0, 1427, 1436, 3, 216, 108, 0, 1428, 1429, 5, 498, 0, 0, 1429, 1430, 5, 536, 0, 0, 1430, 1436, 3, 198, 99, 0, 1431, 1432, 3, 196, 98, 0, 1432, 1433, 5, 536, 0, 0, 1433, 1434, 3, 286, 143, 0, 1434, 1436, 1, 0, 0, 0, 1435, 1420, 1, 0, 0, 0, 1435, 1422, 1, 0, 0, 0, 1435, 1423, 1, 0, 0, 0, 1435, 1424, 1, 0, 0, 0, 1435, 1428, 1, 0, 0, 0, 1435, 1431, 1, 0, 0, 0, 1436, 195, 1, 0, 0, 0, 1437, 1438, 7, 22, 0, 0, 1438, 197, 1, 0, 0, 0, 1439, 1440, 5, 451, 0, 0, 1440, 1441, 5, 516, 0, 0, 1441, 1442, 3, 52, 26, 0, 1442, 1443, 5, 517, 0, 0, 1443, 199, 1, 0, 0, 0, 1444, 1445, 5, 253, 0, 0, 1445, 1449, 3, 258, 129, 0, 1446, 1447, 5, 412, 0, 0, 1447, 1449, 3, 54, 27, 0, 1448, 1444, 1, 0, 0, 0, 1448, 1446, 1, 0, 0, 0, 1449, 201, 1, 0, 0, 0, 1450, 1451, 5, 430, 0, 0, 1451, 1452, 3, 258, 129, 0, 1452, 203, 1, 0, 0, 0, 1453, 1454, 5, 159, 0, 0, 1454, 1455, 5, 34, 0, 0, 1455, 1460, 3, 206, 103, 0, 1456, 1457, 5, 520, 0, 0, 1457, 1459, 3, 206, 103, 0, 1458, 1456, 1, 0, 0, 0, 1459, 1462, 1, 0, 0, 0, 1460, 1458, 1, 0, 0, 0, 1460, 1461, 1, 0, 0, 0, 1461, 205, 1, 0, 0, 0, 1462, 1460, 1, 0, 0, 0, 1463, 1504, 3, 52, 26, 0, 1464, 1504, 3, 212, 106, 0, 1465, 1466, 5, 516, 0, 0, 1466, 1504, 5, 517, 0, 0, 1467, 1468, 5, 516, 0, 0, 1468, 1473, 3, 256, 128, 0, 1469, 1470, 5, 520, 0, 0, 1470, 1472, 3, 256, 128, 0, 1471, 1469, 1, 0, 0, 0, 1472, 1475, 1, 0, 0, 0, 1473, 1471, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1476, 1, 0, 0, 0, 1475, 1473, 1, 0, 0, 0, 1476, 1477, 5, 517, 0, 0, 1477, 1504, 1, 0, 0, 0, 1478, 1479, 3, 210, 105, 0, 1479, 1480, 5, 516, 0, 0, 1480, 1485, 3, 256, 128, 0, 1481, 1482, 5, 520, 0, 0, 1482, 1484, 3, 256, 128, 0, 1483, 1481, 1, 0, 0, 0, 1484, 1487, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1488, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1488, 1489, 5, 517, 0, 0, 1489, 1504, 1, 0, 0, 0, 1490, 1491, 3, 208, 104, 0, 1491, 1492, 5, 516, 0, 0, 1492, 1497, 3, 206, 103, 0, 1493, 1494, 5, 520, 0, 0, 1494, 1496, 3, 206, 103, 0, 1495, 1493, 1, 0, 0, 0, 1496, 1499, 1, 0, 0, 0, 1497, 1495, 1, 0, 0, 0, 1497, 1498, 1, 0, 0, 0, 1498, 1500, 1, 0, 0, 0, 1499, 1497, 1, 0, 0, 0, 1500, 1501, 5, 517, 0, 0, 1501, 1504, 1, 0, 0, 0, 1502, 1504, 3, 256, 128, 0, 1503, 1463, 1, 0, 0, 0, 1503, 1464, 1, 0, 0, 0, 1503, 1465, 1, 0, 0, 0, 1503, 1467, 1, 0, 0, 0, 1503, 1478, 1, 0, 0, 0, 1503, 1490, 1, 0, 0, 0, 1503, 1502, 1, 0, 0, 0, 1504, 207, 1, 0, 0, 0, 1505, 1506, 5, 160, 0, 0, 1506, 1507, 5, 493, 0, 0, 1507, 209, 1, 0, 0, 0, 1508, 1509, 7, 23, 0, 0, 1509, 211, 1, 0, 0, 0, 1510, 1511, 3, 214, 107, 0, 1511, 1512, 5, 516, 0, 0, 1512, 1513, 3, 216, 108, 0, 1513, 1514, 5, 520, 0, 0, 1514, 1515, 3, 286, 143, 0, 1515, 1516, 5, 517, 0, 0, 1516, 213, 1, 0, 0, 0, 1517, 1518, 7, 24, 0, 0, 1518, 215, 1, 0, 0, 0, 1519, 1520, 3, 332, 166, 0, 1520, 217, 1, 0, 0, 0, 1521, 1522, 5, 163, 0, 0, 1522, 1523, 3, 258, 129, 0, 1523, 219, 1, 0, 0, 0, 1524, 1525, 5, 432, 0, 0, 1525, 1530, 3, 222, 111, 0, 1526, 1527, 5, 520, 0, 0, 1527, 1529, 3, 222, 111, 0, 1528, 1526, 1, 0, 0, 0, 1529, 1532, 1, 0, 0, 0, 1530, 1528, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 221, 1, 0, 0, 0, 1532, 1530, 1, 0, 0, 0, 1533, 1534, 3, 300, 150, 0, 1534, 1535, 5, 17, 0, 0, 1535, 1536, 3, 224, 112, 0, 1536, 223, 1, 0, 0, 0, 1537, 1539, 3, 300, 150, 0, 1538, 1537, 1, 0, 0, 0, 1538, 1539, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1542, 5, 516, 0, 0, 1541, 1543, 3, 234, 117, 0, 1542, 1541, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1545, 1, 0, 0, 0, 1544, 1546, 3, 228, 114, 0, 1545, 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1548, 1, 0, 0, 0, 1547, 1549, 3, 250, 125, 0, 1548, 1547, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1551, 5, 517, 0, 0, 1551, 225, 1, 0, 0, 0, 1552, 1553, 5, 213, 0, 0, 1553, 1555, 5, 516, 0, 0, 1554, 1556, 3, 234, 117, 0, 1555, 1554, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1558, 1, 0, 0, 0, 1557, 1559, 3, 228, 114, 0, 1558, 1557, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1561, 1, 0, 0, 0, 1560, 1562, 3, 238, 119, 0, 1561, 1560, 1, 0, 0, 0, 1561, 1562, 1, 0, 0, 0, 1562, 1564, 1, 0, 0, 0, 1563, 1565, 3, 244, 122, 0, 1564, 1563, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1567, 1, 0, 0, 0, 1566, 1568, 3, 246, 123, 0, 1567, 1566, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1570, 1, 0, 0, 0, 1569, 1571, 3, 240, 120, 0, 1570, 1569, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 3, 248, 124, 0, 1573, 1578, 5, 517, 0, 0, 1574, 1576, 5, 17, 0, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1579, 3, 308, 154, 0, 1578, 1575, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 227, 1, 0, 0, 0, 1580, 1581, 5, 258, 0, 0, 1581, 1582, 5, 34, 0, 0, 1582, 1587, 3, 230, 115, 0, 1583, 1584, 5, 520, 0, 0, 1584, 1586, 3, 230, 115, 0, 1585, 1583, 1, 0, 0, 0, 1586, 1589, 1, 0, 0, 0, 1587, 1585, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 229, 1, 0, 0, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1592, 3, 52, 26, 0, 1591, 1593, 7, 25, 0, 0, 1592, 1591, 1, 0, 0, 0, 1592, 1593, 1, 0, 0, 0, 1593, 1596, 1, 0, 0, 0, 1594, 1595, 5, 476, 0, 0, 1595, 1597, 7, 26, 0, 0, 1596, 1594, 1, 0, 0, 0, 1596, 1597, 1, 0, 0, 0, 1597, 231, 1, 0, 0, 0, 1598, 1601, 5, 204, 0, 0, 1599, 1602, 5, 5, 0, 0, 1600, 1602, 3, 256, 128, 0, 1601, 1599, 1, 0, 0, 0, 1601, 1600, 1, 0, 0, 0, 1602, 233, 1, 0, 0, 0, 1603, 1604, 5, 268, 0, 0, 1604, 1607, 5, 34, 0, 0, 1605, 1608, 3, 52, 26, 0, 1606, 1608, 3, 268, 134, 0, 1607, 1605, 1, 0, 0, 0, 1607, 1606, 1, 0, 0, 0, 1608, 1616, 1, 0, 0, 0, 1609, 1612, 5, 520, 0, 0, 1610, 1613, 3, 52, 26, 0, 1611, 1613, 3, 268, 134, 0, 1612, 1610, 1, 0, 0, 0, 1612, 1611, 1, 0, 0, 0, 1613, 1615, 1, 0, 0, 0, 1614, 1609, 1, 0, 0, 0, 1615, 1618, 1, 0, 0, 0, 1616, 1614, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1617, 235, 1, 0, 0, 0, 1618, 1616, 1, 0, 0, 0, 1619, 1636, 5, 527, 0, 0, 1620, 1636, 5, 530, 0, 0, 1621, 1636, 5, 535, 0, 0, 1622, 1623, 5, 518, 0, 0, 1623, 1624, 5, 538, 0, 0, 1624, 1625, 5, 520, 0, 0, 1625, 1626, 5, 538, 0, 0, 1626, 1636, 5, 519, 0, 0, 1627, 1628, 5, 518, 0, 0, 1628, 1629, 5, 538, 0, 0, 1629, 1630, 5, 520, 0, 0, 1630, 1636, 5, 519, 0, 0, 1631, 1632, 5, 518, 0, 0, 1632, 1633, 5, 520, 0, 0, 1633, 1634, 5, 538, 0, 0, 1634, 1636, 5, 519, 0, 0, 1635, 1619, 1, 0, 0, 0, 1635, 1620, 1, 0, 0, 0, 1635, 1621, 1, 0, 0, 0, 1635, 1622, 1, 0, 0, 0, 1635, 1627, 1, 0, 0, 0, 1635, 1631, 1, 0, 0, 0, 1636, 237, 1, 0, 0, 0, 1637, 1638, 5, 215, 0, 0, 1638, 1643, 3, 170, 85, 0, 1639, 1640, 5, 520, 0, 0, 1640, 1642, 3, 170, 85, 0, 1641, 1639, 1, 0, 0, 0, 1642, 1645, 1, 0, 0, 0, 1643, 1641, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 239, 1, 0, 0, 0, 1645, 1643, 1, 0, 0, 0, 1646, 1647, 5, 271, 0, 0, 1647, 1649, 5, 516, 0, 0, 1648, 1650, 3, 242, 121, 0, 1649, 1648, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1649, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1655, 5, 517, 0, 0, 1654, 1656, 3, 254, 127, 0, 1655, 1654, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 241, 1, 0, 0, 0, 1657, 1659, 3, 310, 155, 0, 1658, 1660, 3, 236, 118, 0, 1659, 1658, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 243, 1, 0, 0, 0, 1661, 1662, 5, 5, 0, 0, 1662, 1663, 5, 322, 0, 0, 1663, 1664, 5, 272, 0, 0, 1664, 1670, 5, 210, 0, 0, 1665, 1666, 5, 254, 0, 0, 1666, 1667, 5, 321, 0, 0, 1667, 1668, 5, 272, 0, 0, 1668, 1670, 5, 210, 0, 0, 1669, 1661, 1, 0, 0, 0, 1669, 1665, 1, 0, 0, 0, 1670, 245, 1, 0, 0, 0, 1671, 1672, 5, 438, 0, 0, 1672, 1673, 5, 210, 0, 0, 1673, 1674, 5, 343, 0, 0, 1674, 1675, 5, 478, 0, 0, 1675, 1676, 5, 467, 0, 0, 1676, 1696, 5, 321, 0, 0, 1677, 1678, 5, 438, 0, 0, 1678, 1679, 5, 210, 0, 0, 1679, 1680, 5, 343, 0, 0, 1680, 1681, 5, 388, 0, 0, 1681, 1682, 5, 237, 0, 0, 1682, 1696, 5, 321, 0, 0, 1683, 1684, 5, 438, 0, 0, 1684, 1685, 5, 210, 0, 0, 1685, 1686, 5, 343, 0, 0, 1686, 1687, 5, 388, 0, 0, 1687, 1688, 5, 467, 0, 0, 1688, 1696, 3, 310, 155, 0, 1689, 1690, 5, 438, 0, 0, 1690, 1691, 5, 210, 0, 0, 1691, 1692, 5, 343, 0, 0, 1692, 1693, 5, 388, 0, 0, 1693, 1694, 5, 457, 0, 0, 1694, 1696, 3, 310, 155, 0, 1695, 1671, 1, 0, 0, 0, 1695, 1677, 1, 0, 0, 0, 1695, 1683, 1, 0, 0, 0, 1695, 1689, 1, 0, 0, 0, 1696, 247, 1, 0, 0, 0, 1697, 1698, 5, 105, 0, 0, 1698, 1703, 3, 170, 85, 0, 1699, 1700, 5, 520, 0, 0, 1700, 1702, 3, 170, 85, 0, 1701, 1699, 1, 0, 0, 0, 1702, 1705, 1, 0, 0, 0, 1703, 1701, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 249, 1, 0, 0, 0, 1705, 1703, 1, 0, 0, 0, 1706, 1707, 5, 292, 0, 0, 1707, 1708, 5, 27, 0, 0, 1708, 1709, 3, 286, 143, 0, 1709, 1710, 3, 252, 126, 0, 1710, 1716, 1, 0, 0, 0, 1711, 1712, 5, 322, 0, 0, 1712, 1713, 5, 27, 0, 0, 1713, 1714, 5, 538, 0, 0, 1714, 1716, 3, 252, 126, 0, 1715, 1706, 1, 0, 0, 0, 1715, 1711, 1, 0, 0, 0, 1716, 251, 1, 0, 0, 0, 1717, 1718, 5, 480, 0, 0, 1718, 1719, 5, 10, 0, 0, 1719, 1720, 5, 76, 0, 0, 1720, 1721, 5, 321, 0, 0, 1721, 253, 1, 0, 0, 0, 1722, 1723, 5, 434, 0, 0, 1723, 1724, 3, 286, 143, 0, 1724, 255, 1, 0, 0, 0, 1725, 1726, 3, 258, 129, 0, 1726, 257, 1, 0, 0, 0, 1727, 1728, 6, 129, -1, 0, 1728, 1729, 5, 241, 0, 0, 1729, 1740, 3, 258, 129, 6, 1730, 1731, 5, 133, 0, 0, 1731, 1732, 5, 516, 0, 0, 1732, 1733, 3, 156, 78, 0, 1733, 1734, 5, 517, 0, 0, 1734, 1740, 1, 0, 0, 0, 1735, 1737, 3, 264, 132, 0, 1736, 1738, 3, 260, 130, 0, 1737, 1736, 1, 0, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1740, 1, 0, 0, 0, 1739, 1727, 1, 0, 0, 0, 1739, 1730, 1, 0, 0, 0, 1739, 1735, 1, 0, 0, 0, 1740, 1755, 1, 0, 0, 0, 1741, 1742, 10, 3, 0, 0, 1742, 1743, 5, 10, 0, 0, 1743, 1754, 3, 258, 129, 4, 1744, 1745, 10, 2, 0, 0, 1745, 1746, 5, 257, 0, 0, 1746, 1754, 3, 258, 129, 3, 1747, 1748, 10, 1, 0, 0, 1748, 1750, 5, 184, 0, 0, 1749, 1751, 5, 241, 0, 0, 1750, 1749, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1754, 7, 27, 0, 0, 1753, 1741, 1, 0, 0, 0, 1753, 1744, 1, 0, 0, 0, 1753, 1747, 1, 0, 0, 0, 1754, 1757, 1, 0, 0, 0, 1755, 1753, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 259, 1, 0, 0, 0, 1757, 1755, 1, 0, 0, 0, 1758, 1760, 5, 241, 0, 0, 1759, 1758, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1763, 5, 27, 0, 0, 1762, 1764, 7, 28, 0, 0, 1763, 1762, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 3, 264, 132, 0, 1766, 1767, 5, 10, 0, 0, 1767, 1768, 3, 264, 132, 0, 1768, 1826, 1, 0, 0, 0, 1769, 1771, 5, 241, 0, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1773, 5, 170, 0, 0, 1773, 1774, 5, 516, 0, 0, 1774, 1779, 3, 256, 128, 0, 1775, 1776, 5, 520, 0, 0, 1776, 1778, 3, 256, 128, 0, 1777, 1775, 1, 0, 0, 0, 1778, 1781, 1, 0, 0, 0, 1779, 1777, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1782, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1782, 1783, 5, 517, 0, 0, 1783, 1826, 1, 0, 0, 0, 1784, 1786, 5, 241, 0, 0, 1785, 1784, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1788, 5, 170, 0, 0, 1788, 1789, 5, 516, 0, 0, 1789, 1790, 3, 156, 78, 0, 1790, 1791, 5, 517, 0, 0, 1791, 1826, 1, 0, 0, 0, 1792, 1793, 5, 133, 0, 0, 1793, 1794, 5, 516, 0, 0, 1794, 1795, 3, 156, 78, 0, 1795, 1796, 5, 517, 0, 0, 1796, 1826, 1, 0, 0, 0, 1797, 1799, 5, 241, 0, 0, 1798, 1797, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1801, 5, 318, 0, 0, 1801, 1826, 3, 264, 132, 0, 1802, 1826, 3, 262, 131, 0, 1803, 1805, 5, 184, 0, 0, 1804, 1806, 5, 241, 0, 0, 1805, 1804, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1826, 7, 27, 0, 0, 1808, 1810, 5, 184, 0, 0, 1809, 1811, 5, 241, 0, 0, 1810, 1809, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1813, 5, 113, 0, 0, 1813, 1814, 5, 151, 0, 0, 1814, 1826, 3, 264, 132, 0, 1815, 1817, 5, 241, 0, 0, 1816, 1815, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1819, 5, 342, 0, 0, 1819, 1820, 5, 388, 0, 0, 1820, 1823, 3, 264, 132, 0, 1821, 1822, 5, 127, 0, 0, 1822, 1824, 3, 362, 181, 0, 1823, 1821, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1826, 1, 0, 0, 0, 1825, 1759, 1, 0, 0, 0, 1825, 1770, 1, 0, 0, 0, 1825, 1785, 1, 0, 0, 0, 1825, 1792, 1, 0, 0, 0, 1825, 1798, 1, 0, 0, 0, 1825, 1802, 1, 0, 0, 0, 1825, 1803, 1, 0, 0, 0, 1825, 1808, 1, 0, 0, 0, 1825, 1816, 1, 0, 0, 0, 1826, 261, 1, 0, 0, 0, 1827, 1829, 5, 241, 0, 0, 1828, 1827, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 1831, 5, 202, 0, 0, 1831, 1845, 7, 29, 0, 0, 1832, 1833, 5, 516, 0, 0, 1833, 1846, 5, 517, 0, 0, 1834, 1835, 5, 516, 0, 0, 1835, 1840, 3, 256, 128, 0, 1836, 1837, 5, 520, 0, 0, 1837, 1839, 3, 256, 128, 0, 1838, 1836, 1, 0, 0, 0, 1839, 1842, 1, 0, 0, 0, 1840, 1838, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1843, 1, 0, 0, 0, 1842, 1840, 1, 0, 0, 0, 1843, 1844, 5, 517, 0, 0, 1844, 1846, 1, 0, 0, 0, 1845, 1832, 1, 0, 0, 0, 1845, 1834, 1, 0, 0, 0, 1846, 1857, 1, 0, 0, 0, 1847, 1849, 5, 241, 0, 0, 1848, 1847, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1851, 5, 202, 0, 0, 1851, 1854, 3, 264, 132, 0, 1852, 1853, 5, 127, 0, 0, 1853, 1855, 3, 362, 181, 0, 1854, 1852, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1857, 1, 0, 0, 0, 1856, 1828, 1, 0, 0, 0, 1856, 1848, 1, 0, 0, 0, 1857, 263, 1, 0, 0, 0, 1858, 1859, 6, 132, -1, 0, 1859, 1863, 3, 268, 134, 0, 1860, 1861, 7, 30, 0, 0, 1861, 1863, 3, 264, 132, 7, 1862, 1858, 1, 0, 0, 0, 1862, 1860, 1, 0, 0, 0, 1863, 1885, 1, 0, 0, 0, 1864, 1865, 10, 6, 0, 0, 1865, 1866, 7, 31, 0, 0, 1866, 1884, 3, 264, 132, 7, 1867, 1868, 10, 5, 0, 0, 1868, 1869, 7, 32, 0, 0, 1869, 1884, 3, 264, 132, 6, 1870, 1871, 10, 4, 0, 0, 1871, 1872, 5, 511, 0, 0, 1872, 1884, 3, 264, 132, 5, 1873, 1874, 10, 3, 0, 0, 1874, 1875, 5, 512, 0, 0, 1875, 1884, 3, 264, 132, 4, 1876, 1877, 10, 2, 0, 0, 1877, 1878, 5, 510, 0, 0, 1878, 1884, 3, 264, 132, 3, 1879, 1880, 10, 1, 0, 0, 1880, 1881, 3, 350, 175, 0, 1881, 1882, 3, 264, 132, 2, 1882, 1884, 1, 0, 0, 0, 1883, 1864, 1, 0, 0, 0, 1883, 1867, 1, 0, 0, 0, 1883, 1870, 1, 0, 0, 0, 1883, 1873, 1, 0, 0, 0, 1883, 1876, 1, 0, 0, 0, 1883, 1879, 1, 0, 0, 0, 1884, 1887, 1, 0, 0, 0, 1885, 1883, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 265, 1, 0, 0, 0, 1887, 1885, 1, 0, 0, 0, 1888, 1908, 3, 376, 188, 0, 1889, 1908, 3, 274, 137, 0, 1890, 1891, 3, 276, 138, 0, 1891, 1903, 5, 516, 0, 0, 1892, 1894, 3, 368, 184, 0, 1893, 1892, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1900, 3, 278, 139, 0, 1896, 1897, 5, 520, 0, 0, 1897, 1899, 3, 278, 139, 0, 1898, 1896, 1, 0, 0, 0, 1899, 1902, 1, 0, 0, 0, 1900, 1898, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 1904, 1, 0, 0, 0, 1902, 1900, 1, 0, 0, 0, 1903, 1893, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1906, 5, 517, 0, 0, 1906, 1908, 1, 0, 0, 0, 1907, 1888, 1, 0, 0, 0, 1907, 1889, 1, 0, 0, 0, 1907, 1890, 1, 0, 0, 0, 1908, 267, 1, 0, 0, 0, 1909, 1910, 6, 134, -1, 0, 1910, 1912, 5, 40, 0, 0, 1911, 1913, 3, 314, 157, 0, 1912, 1911, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1912, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1918, 1, 0, 0, 0, 1916, 1917, 5, 120, 0, 0, 1917, 1919, 3, 256, 128, 0, 1918, 1916, 1, 0, 0, 0, 1918, 1919, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 1921, 5, 122, 0, 0, 1921, 1985, 1, 0, 0, 0, 1922, 1923, 5, 40, 0, 0, 1923, 1925, 3, 256, 128, 0, 1924, 1926, 3, 314, 157, 0, 1925, 1924, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1925, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1931, 1, 0, 0, 0, 1929, 1930, 5, 120, 0, 0, 1930, 1932, 3, 256, 128, 0, 1931, 1929, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1934, 5, 122, 0, 0, 1934, 1985, 1, 0, 0, 0, 1935, 1936, 5, 41, 0, 0, 1936, 1937, 5, 516, 0, 0, 1937, 1938, 3, 256, 128, 0, 1938, 1939, 5, 17, 0, 0, 1939, 1940, 3, 56, 28, 0, 1940, 1941, 5, 517, 0, 0, 1941, 1985, 1, 0, 0, 0, 1942, 1943, 5, 457, 0, 0, 1943, 1944, 5, 516, 0, 0, 1944, 1947, 3, 256, 128, 0, 1945, 1946, 5, 461, 0, 0, 1946, 1948, 5, 476, 0, 0, 1947, 1945, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1949, 1, 0, 0, 0, 1949, 1950, 5, 517, 0, 0, 1950, 1985, 1, 0, 0, 0, 1951, 1952, 5, 467, 0, 0, 1952, 1953, 5, 516, 0, 0, 1953, 1956, 3, 256, 128, 0, 1954, 1955, 5, 461, 0, 0, 1955, 1957, 5, 476, 0, 0, 1956, 1954, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1959, 5, 517, 0, 0, 1959, 1985, 1, 0, 0, 0, 1960, 1961, 5, 281, 0, 0, 1961, 1962, 5, 516, 0, 0, 1962, 1963, 3, 264, 132, 0, 1963, 1964, 5, 170, 0, 0, 1964, 1965, 3, 264, 132, 0, 1965, 1966, 5, 517, 0, 0, 1966, 1985, 1, 0, 0, 0, 1967, 1985, 3, 358, 179, 0, 1968, 1985, 5, 527, 0, 0, 1969, 1970, 3, 332, 166, 0, 1970, 1971, 5, 513, 0, 0, 1971, 1972, 5, 527, 0, 0, 1972, 1985, 1, 0, 0, 0, 1973, 1974, 5, 516, 0, 0, 1974, 1975, 3, 156, 78, 0, 1975, 1976, 5, 517, 0, 0, 1976, 1985, 1, 0, 0, 0, 1977, 1985, 3, 266, 133, 0, 1978, 1985, 3, 308, 154, 0, 1979, 1985, 3, 280, 140, 0, 1980, 1981, 5, 516, 0, 0, 1981, 1982, 3, 256, 128, 0, 1982, 1983, 5, 517, 0, 0, 1983, 1985, 1, 0, 0, 0, 1984, 1909, 1, 0, 0, 0, 1984, 1922, 1, 0, 0, 0, 1984, 1935, 1, 0, 0, 0, 1984, 1942, 1, 0, 0, 0, 1984, 1951, 1, 0, 0, 0, 1984, 1960, 1, 0, 0, 0, 1984, 1967, 1, 0, 0, 0, 1984, 1968, 1, 0, 0, 0, 1984, 1969, 1, 0, 0, 0, 1984, 1973, 1, 0, 0, 0, 1984, 1977, 1, 0, 0, 0, 1984, 1978, 1, 0, 0, 0, 1984, 1979, 1, 0, 0, 0, 1984, 1980, 1, 0, 0, 0, 1985, 1993, 1, 0, 0, 0, 1986, 1987, 10, 4, 0, 0, 1987, 1988, 5, 514, 0, 0, 1988, 1989, 3, 264, 132, 0, 1989, 1990, 5, 515, 0, 0, 1990, 1992, 1, 0, 0, 0, 1991, 1986, 1, 0, 0, 0, 1992, 1995, 1, 0, 0, 0, 1993, 1991, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 269, 1, 0, 0, 0, 1995, 1993, 1, 0, 0, 0, 1996, 1997, 3, 332, 166, 0, 1997, 271, 1, 0, 0, 0, 1998, 2003, 3, 380, 190, 0, 1999, 2003, 3, 376, 188, 0, 2000, 2003, 3, 378, 189, 0, 2001, 2003, 3, 332, 166, 0, 2002, 1998, 1, 0, 0, 0, 2002, 1999, 1, 0, 0, 0, 2002, 2000, 1, 0, 0, 0, 2002, 2001, 1, 0, 0, 0, 2003, 273, 1, 0, 0, 0, 2004, 2005, 3, 378, 189, 0, 2005, 2006, 5, 537, 0, 0, 2006, 2009, 1, 0, 0, 0, 2007, 2009, 3, 286, 143, 0, 2008, 2004, 1, 0, 0, 0, 2008, 2007, 1, 0, 0, 0, 2009, 275, 1, 0, 0, 0, 2010, 2013, 3, 380, 190, 0, 2011, 2013, 3, 332, 166, 0, 2012, 2010, 1, 0, 0, 0, 2012, 2011, 1, 0, 0, 0, 2013, 277, 1, 0, 0, 0, 2014, 2019, 3, 374, 187, 0, 2015, 2019, 3, 372, 186, 0, 2016, 2019, 3, 370, 185, 0, 2017, 2019, 3, 256, 128, 0, 2018, 2014, 1, 0, 0, 0, 2018, 2015, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2018, 2017, 1, 0, 0, 0, 2019, 279, 1, 0, 0, 0, 2020, 2021, 3, 332, 166, 0, 2021, 281, 1, 0, 0, 0, 2022, 2023, 3, 308, 154, 0, 2023, 283, 1, 0, 0, 0, 2024, 2027, 3, 308, 154, 0, 2025, 2027, 3, 280, 140, 0, 2026, 2024, 1, 0, 0, 0, 2026, 2025, 1, 0, 0, 0, 2027, 285, 1, 0, 0, 0, 2028, 2031, 5, 182, 0, 0, 2029, 2032, 3, 288, 144, 0, 2030, 2032, 3, 292, 146, 0, 2031, 2029, 1, 0, 0, 0, 2031, 2030, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 287, 1, 0, 0, 0, 2033, 2035, 3, 290, 145, 0, 2034, 2036, 3, 294, 147, 0, 2035, 2034, 1, 0, 0, 0, 2035, 2036, 1, 0, 0, 0, 2036, 289, 1, 0, 0, 0, 2037, 2038, 3, 296, 148, 0, 2038, 2039, 3, 372, 186, 0, 2039, 2041, 1, 0, 0, 0, 2040, 2037, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2040, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 291, 1, 0, 0, 0, 2044, 2047, 3, 294, 147, 0, 2045, 2048, 3, 290, 145, 0, 2046, 2048, 3, 294, 147, 0, 2047, 2045, 1, 0, 0, 0, 2047, 2046, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 293, 1, 0, 0, 0, 2049, 2050, 3, 296, 148, 0, 2050, 2051, 3, 372, 186, 0, 2051, 2052, 5, 388, 0, 0, 2052, 2053, 3, 372, 186, 0, 2053, 295, 1, 0, 0, 0, 2054, 2056, 7, 33, 0, 0, 2055, 2054, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2057, 1, 0, 0, 0, 2057, 2060, 7, 34, 0, 0, 2058, 2060, 5, 537, 0, 0, 2059, 2055, 1, 0, 0, 0, 2059, 2058, 1, 0, 0, 0, 2060, 297, 1, 0, 0, 0, 2061, 2063, 5, 17, 0, 0, 2062, 2061, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2066, 3, 308, 154, 0, 2065, 2067, 3, 304, 152, 0, 2066, 2065, 1, 0, 0, 0, 2066, 2067, 1, 0, 0, 0, 2067, 299, 1, 0, 0, 0, 2068, 2069, 3, 308, 154, 0, 2069, 2070, 3, 302, 151, 0, 2070, 301, 1, 0, 0, 0, 2071, 2072, 5, 221, 0, 0, 2072, 2074, 3, 308, 154, 0, 2073, 2071, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2073, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2079, 1, 0, 0, 0, 2077, 2079, 1, 0, 0, 0, 2078, 2073, 1, 0, 0, 0, 2078, 2077, 1, 0, 0, 0, 2079, 303, 1, 0, 0, 0, 2080, 2081, 5, 516, 0, 0, 2081, 2082, 3, 306, 153, 0, 2082, 2083, 5, 517, 0, 0, 2083, 305, 1, 0, 0, 0, 2084, 2089, 3, 308, 154, 0, 2085, 2086, 5, 520, 0, 0, 2086, 2088, 3, 308, 154, 0, 2087, 2085, 1, 0, 0, 0, 2088, 2091, 1, 0, 0, 0, 2089, 2087, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 307, 1, 0, 0, 0, 2091, 2089, 1, 0, 0, 0, 2092, 2096, 3, 310, 155, 0, 2093, 2096, 3, 312, 156, 0, 2094, 2096, 3, 382, 191, 0, 2095, 2092, 1, 0, 0, 0, 2095, 2093, 1, 0, 0, 0, 2095, 2094, 1, 0, 0, 0, 2096, 309, 1, 0, 0, 0, 2097, 2098, 7, 35, 0, 0, 2098, 311, 1, 0, 0, 0, 2099, 2100, 5, 537, 0, 0, 2100, 313, 1, 0, 0, 0, 2101, 2102, 5, 428, 0, 0, 2102, 2103, 3, 256, 128, 0, 2103, 2104, 5, 376, 0, 0, 2104, 2105, 3, 256, 128, 0, 2105, 315, 1, 0, 0, 0, 2106, 2107, 3, 308, 154, 0, 2107, 317, 1, 0, 0, 0, 2108, 2109, 3, 308, 154, 0, 2109, 319, 1, 0, 0, 0, 2110, 2113, 3, 308, 154, 0, 2111, 2112, 5, 513, 0, 0, 2112, 2114, 3, 308, 154, 0, 2113, 2111, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 321, 1, 0, 0, 0, 2115, 2118, 3, 308, 154, 0, 2116, 2117, 5, 513, 0, 0, 2117, 2119, 3, 308, 154, 0, 2118, 2116, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 323, 1, 0, 0, 0, 2120, 2123, 3, 308, 154, 0, 2121, 2122, 5, 513, 0, 0, 2122, 2124, 3, 308, 154, 0, 2123, 2121, 1, 0, 0, 0, 2123, 2124, 1, 0, 0, 0, 2124, 2133, 1, 0, 0, 0, 2125, 2126, 3, 308, 154, 0, 2126, 2127, 5, 513, 0, 0, 2127, 2130, 3, 308, 154, 0, 2128, 2129, 5, 513, 0, 0, 2129, 2131, 3, 308, 154, 0, 2130, 2128, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2133, 1, 0, 0, 0, 2132, 2120, 1, 0, 0, 0, 2132, 2125, 1, 0, 0, 0, 2133, 325, 1, 0, 0, 0, 2134, 2137, 3, 308, 154, 0, 2135, 2136, 5, 513, 0, 0, 2136, 2138, 3, 308, 154, 0, 2137, 2135, 1, 0, 0, 0, 2137, 2138, 1, 0, 0, 0, 2138, 2147, 1, 0, 0, 0, 2139, 2140, 3, 308, 154, 0, 2140, 2141, 5, 513, 0, 0, 2141, 2144, 3, 308, 154, 0, 2142, 2143, 5, 513, 0, 0, 2143, 2145, 3, 308, 154, 0, 2144, 2142, 1, 0, 0, 0, 2144, 2145, 1, 0, 0, 0, 2145, 2147, 1, 0, 0, 0, 2146, 2134, 1, 0, 0, 0, 2146, 2139, 1, 0, 0, 0, 2147, 327, 1, 0, 0, 0, 2148, 2151, 3, 308, 154, 0, 2149, 2150, 5, 513, 0, 0, 2150, 2152, 3, 308, 154, 0, 2151, 2149, 1, 0, 0, 0, 2151, 2152, 1, 0, 0, 0, 2152, 2161, 1, 0, 0, 0, 2153, 2154, 3, 308, 154, 0, 2154, 2155, 5, 513, 0, 0, 2155, 2158, 3, 308, 154, 0, 2156, 2157, 5, 513, 0, 0, 2157, 2159, 3, 308, 154, 0, 2158, 2156, 1, 0, 0, 0, 2158, 2159, 1, 0, 0, 0, 2159, 2161, 1, 0, 0, 0, 2160, 2148, 1, 0, 0, 0, 2160, 2153, 1, 0, 0, 0, 2161, 329, 1, 0, 0, 0, 2162, 2165, 3, 308, 154, 0, 2163, 2164, 5, 513, 0, 0, 2164, 2166, 3, 308, 154, 0, 2165, 2163, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2175, 1, 0, 0, 0, 2167, 2168, 3, 308, 154, 0, 2168, 2169, 5, 513, 0, 0, 2169, 2172, 3, 308, 154, 0, 2170, 2171, 5, 513, 0, 0, 2171, 2173, 3, 308, 154, 0, 2172, 2170, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 2175, 1, 0, 0, 0, 2174, 2162, 1, 0, 0, 0, 2174, 2167, 1, 0, 0, 0, 2175, 331, 1, 0, 0, 0, 2176, 2181, 3, 308, 154, 0, 2177, 2178, 5, 513, 0, 0, 2178, 2180, 3, 308, 154, 0, 2179, 2177, 1, 0, 0, 0, 2180, 2183, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2181, 2179, 1, 0, 0, 0, 2182, 333, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2184, 2185, 5, 433, 0, 0, 2185, 2186, 3, 340, 170, 0, 2186, 335, 1, 0, 0, 0, 2187, 2188, 5, 167, 0, 0, 2188, 2189, 5, 241, 0, 0, 2189, 2190, 5, 133, 0, 0, 2190, 337, 1, 0, 0, 0, 2191, 2192, 5, 167, 0, 0, 2192, 2193, 5, 133, 0, 0, 2193, 339, 1, 0, 0, 0, 2194, 2195, 5, 516, 0, 0, 2195, 2200, 3, 342, 171, 0, 2196, 2197, 5, 520, 0, 0, 2197, 2199, 3, 342, 171, 0, 2198, 2196, 1, 0, 0, 0, 2199, 2202, 1, 0, 0, 0, 2200, 2198, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 2203, 1, 0, 0, 0, 2202, 2200, 1, 0, 0, 0, 2203, 2204, 5, 517, 0, 0, 2204, 341, 1, 0, 0, 0, 2205, 2210, 3, 344, 172, 0, 2206, 2208, 5, 505, 0, 0, 2207, 2206, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2209, 1, 0, 0, 0, 2209, 2211, 3, 346, 173, 0, 2210, 2207, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 343, 1, 0, 0, 0, 2212, 2216, 3, 308, 154, 0, 2213, 2216, 3, 280, 140, 0, 2214, 2216, 5, 537, 0, 0, 2215, 2212, 1, 0, 0, 0, 2215, 2213, 1, 0, 0, 0, 2215, 2214, 1, 0, 0, 0, 2216, 345, 1, 0, 0, 0, 2217, 2222, 5, 538, 0, 0, 2218, 2222, 5, 539, 0, 0, 2219, 2222, 3, 366, 183, 0, 2220, 2222, 5, 537, 0, 0, 2221, 2217, 1, 0, 0, 0, 2221, 2218, 1, 0, 0, 0, 2221, 2219, 1, 0, 0, 0, 2221, 2220, 1, 0, 0, 0, 2222, 347, 1, 0, 0, 0, 2223, 2230, 5, 10, 0, 0, 2224, 2225, 5, 511, 0, 0, 2225, 2230, 5, 511, 0, 0, 2226, 2230, 5, 257, 0, 0, 2227, 2228, 5, 510, 0, 0, 2228, 2230, 5, 510, 0, 0, 2229, 2223, 1, 0, 0, 0, 2229, 2224, 1, 0, 0, 0, 2229, 2226, 1, 0, 0, 0, 2229, 2227, 1, 0, 0, 0, 2230, 349, 1, 0, 0, 0, 2231, 2246, 5, 505, 0, 0, 2232, 2246, 5, 506, 0, 0, 2233, 2246, 5, 507, 0, 0, 2234, 2235, 5, 507, 0, 0, 2235, 2246, 5, 505, 0, 0, 2236, 2237, 5, 506, 0, 0, 2237, 2246, 5, 505, 0, 0, 2238, 2239, 5, 507, 0, 0, 2239, 2246, 5, 506, 0, 0, 2240, 2241, 5, 508, 0, 0, 2241, 2246, 5, 505, 0, 0, 2242, 2243, 5, 507, 0, 0, 2243, 2244, 5, 505, 0, 0, 2244, 2246, 5, 506, 0, 0, 2245, 2231, 1, 0, 0, 0, 2245, 2232, 1, 0, 0, 0, 2245, 2233, 1, 0, 0, 0, 2245, 2234, 1, 0, 0, 0, 2245, 2236, 1, 0, 0, 0, 2245, 2238, 1, 0, 0, 0, 2245, 2240, 1, 0, 0, 0, 2245, 2242, 1, 0, 0, 0, 2246, 351, 1, 0, 0, 0, 2247, 2248, 5, 507, 0, 0, 2248, 2255, 5, 507, 0, 0, 2249, 2250, 5, 506, 0, 0, 2250, 2255, 5, 506, 0, 0, 2251, 2255, 5, 511, 0, 0, 2252, 2255, 5, 512, 0, 0, 2253, 2255, 5, 510, 0, 0, 2254, 2247, 1, 0, 0, 0, 2254, 2249, 1, 0, 0, 0, 2254, 2251, 1, 0, 0, 0, 2254, 2252, 1, 0, 0, 0, 2254, 2253, 1, 0, 0, 0, 2255, 353, 1, 0, 0, 0, 2256, 2257, 7, 36, 0, 0, 2257, 355, 1, 0, 0, 0, 2258, 2259, 7, 37, 0, 0, 2259, 357, 1, 0, 0, 0, 2260, 2275, 3, 286, 143, 0, 2261, 2275, 3, 360, 180, 0, 2262, 2275, 3, 362, 181, 0, 2263, 2265, 5, 529, 0, 0, 2264, 2263, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 2275, 3, 364, 182, 0, 2267, 2275, 3, 366, 183, 0, 2268, 2275, 5, 539, 0, 0, 2269, 2275, 5, 540, 0, 0, 2270, 2272, 5, 241, 0, 0, 2271, 2270, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2273, 1, 0, 0, 0, 2273, 2275, 5, 244, 0, 0, 2274, 2260, 1, 0, 0, 0, 2274, 2261, 1, 0, 0, 0, 2274, 2262, 1, 0, 0, 0, 2274, 2264, 1, 0, 0, 0, 2274, 2267, 1, 0, 0, 0, 2274, 2268, 1, 0, 0, 0, 2274, 2269, 1, 0, 0, 0, 2274, 2271, 1, 0, 0, 0, 2275, 359, 1, 0, 0, 0, 2276, 2277, 3, 370, 185, 0, 2277, 2278, 3, 362, 181, 0, 2278, 361, 1, 0, 0, 0, 2279, 2280, 5, 537, 0, 0, 2280, 363, 1, 0, 0, 0, 2281, 2282, 5, 538, 0, 0, 2282, 365, 1, 0, 0, 0, 2283, 2284, 7, 38, 0, 0, 2284, 367, 1, 0, 0, 0, 2285, 2286, 7, 39, 0, 0, 2286, 369, 1, 0, 0, 0, 2287, 2288, 7, 40, 0, 0, 2288, 371, 1, 0, 0, 0, 2289, 2290, 7, 41, 0, 0, 2290, 373, 1, 0, 0, 0, 2291, 2292, 7, 42, 0, 0, 2292, 375, 1, 0, 0, 0, 2293, 2294, 7, 43, 0, 0, 2294, 377, 1, 0, 0, 0, 2295, 2296, 7, 44, 0, 0, 2296, 379, 1, 0, 0, 0, 2297, 2298, 7, 45, 0, 0, 2298, 381, 1, 0, 0, 0, 2299, 2300, 7, 46, 0, 0, 2300, 383, 1, 0, 0, 0, 272, 387, 394, 397, 411, 429, 433, 442, 447, 454, 465, 474, 486, 489, 496, 499, 507, 511, 516, 519, 526, 534, 538, 550, 558, 562, 594, 597, 602, 606, 610, 614, 623, 628, 632, 636, 641, 644, 648, 653, 659, 664, 669, 673, 677, 681, 689, 697, 701, 705, 709, 713, 717, 721, 725, 729, 731, 741, 749, 773, 787, 792, 796, 802, 805, 808, 815, 818, 827, 839, 863, 875, 880, 884, 892, 896, 902, 912, 917, 923, 927, 931, 935, 944, 948, 955, 958, 968, 976, 984, 988, 1003, 1022, 1033, 1037, 1044, 1049, 1055, 1059, 1066, 1070, 1074, 1078, 1086, 1090, 1095, 1101, 1107, 1110, 1114, 1125, 1134, 1148, 1160, 1175, 1178, 1182, 1185, 1187, 1192, 1196, 1199, 1203, 1212, 1221, 1231, 1236, 1247, 1250, 1253, 1256, 1259, 1265, 1269, 1277, 1280, 1285, 1288, 1292, 1295, 1297, 1311, 1322, 1327, 1335, 1338, 1341, 1346, 1348, 1350, 1355, 1358, 1362, 1366, 1375, 1386, 1413, 1435, 1448, 1460, 1473, 1485, 1497, 1503, 1530, 1538, 1542, 1545, 1548, 1555, 1558, 1561, 1564, 1567, 1570, 1575, 1578, 1587, 1592, 1596, 1601, 1607, 1612, 1616, 1635, 1643, 1651, 1655, 1659, 1669, 1695, 1703, 1715, 1737, 1739, 1750, 1753, 1755, 1759, 1763, 1770, 1779, 1785, 1798, 1805, 1810, 1816, 1823, 1825, 1828, 1840, 1845, 1848, 1854, 1856, 1862, 1883, 1885, 1893, 1900, 1903, 1907, 1914, 1918, 1927, 1931, 1947, 1956, 1984, 1993, 2002, 2008, 2012, 2018, 2026, 2031, 2035, 2042, 2047, 2055, 2059, 2062, 2066, 2075, 2078, 2089, 2095, 2113, 2118, 2123, 2130, 2132, 2137, 2144, 2146, 2151, 2158, 2160, 2165, 2172, 2174, 2181, 2200, 2207, 2210, 2215, 2221, 2229, 2245, 2254, 2264, 2271, 2274] \ No newline at end of file diff --git a/src/lib/flink/FlinkSqlParser.ts b/src/lib/flink/FlinkSqlParser.ts index 30e7d500..4d1601c6 100644 --- a/src/lib/flink/FlinkSqlParser.ts +++ b/src/lib/flink/FlinkSqlParser.ts @@ -691,60 +691,65 @@ export class FlinkSqlParser extends SQLParserBase { public static readonly RULE_predicate = 130; public static readonly RULE_likePredicate = 131; public static readonly RULE_valueExpression = 132; - public static readonly RULE_primaryExpression = 133; - public static readonly RULE_functionNameCreate = 134; - public static readonly RULE_functionName = 135; - public static readonly RULE_functionParam = 136; - public static readonly RULE_dereferenceDefinition = 137; - public static readonly RULE_correlationName = 138; - public static readonly RULE_qualifiedName = 139; - public static readonly RULE_timeIntervalExpression = 140; - public static readonly RULE_errorCapturingMultiUnitsInterval = 141; - public static readonly RULE_multiUnitsInterval = 142; - public static readonly RULE_errorCapturingUnitToUnitInterval = 143; - public static readonly RULE_unitToUnitInterval = 144; - public static readonly RULE_intervalValue = 145; - public static readonly RULE_tableAlias = 146; - public static readonly RULE_errorCapturingIdentifier = 147; - public static readonly RULE_errorCapturingIdentifierExtra = 148; - public static readonly RULE_identifierList = 149; - public static readonly RULE_identifierSeq = 150; - public static readonly RULE_identifier = 151; - public static readonly RULE_unquotedIdentifier = 152; - public static readonly RULE_quotedIdentifier = 153; - public static readonly RULE_whenClause = 154; - public static readonly RULE_catalogPath = 155; - public static readonly RULE_catalogPathCreate = 156; - public static readonly RULE_databasePath = 157; - public static readonly RULE_databasePathCreate = 158; - public static readonly RULE_tablePathCreate = 159; - public static readonly RULE_tablePath = 160; - public static readonly RULE_viewPath = 161; - public static readonly RULE_viewPathCreate = 162; - public static readonly RULE_uid = 163; - public static readonly RULE_withOption = 164; - public static readonly RULE_ifNotExists = 165; - public static readonly RULE_ifExists = 166; - public static readonly RULE_tablePropertyList = 167; - public static readonly RULE_tableProperty = 168; - public static readonly RULE_tablePropertyKey = 169; - public static readonly RULE_tablePropertyValue = 170; - public static readonly RULE_logicalOperator = 171; - public static readonly RULE_comparisonOperator = 172; - public static readonly RULE_bitOperator = 173; - public static readonly RULE_mathOperator = 174; - public static readonly RULE_unaryOperator = 175; - public static readonly RULE_constant = 176; - public static readonly RULE_timePointLiteral = 177; - public static readonly RULE_stringLiteral = 178; - public static readonly RULE_decimalLiteral = 179; - public static readonly RULE_booleanLiteral = 180; - public static readonly RULE_setQuantifier = 181; - public static readonly RULE_timePointUnit = 182; - public static readonly RULE_timeIntervalUnit = 183; - public static readonly RULE_reservedKeywordsUsedAsFuncParam = 184; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 185; - public static readonly RULE_nonReservedKeywords = 186; + public static readonly RULE_functionCallExpression = 133; + public static readonly RULE_primaryExpression = 134; + public static readonly RULE_functionNameCreate = 135; + public static readonly RULE_functionName = 136; + public static readonly RULE_functionNameAndParams = 137; + public static readonly RULE_functionNameWithParams = 138; + public static readonly RULE_functionParam = 139; + public static readonly RULE_dereferenceDefinition = 140; + public static readonly RULE_correlationName = 141; + public static readonly RULE_qualifiedName = 142; + public static readonly RULE_timeIntervalExpression = 143; + public static readonly RULE_errorCapturingMultiUnitsInterval = 144; + public static readonly RULE_multiUnitsInterval = 145; + public static readonly RULE_errorCapturingUnitToUnitInterval = 146; + public static readonly RULE_unitToUnitInterval = 147; + public static readonly RULE_intervalValue = 148; + public static readonly RULE_tableAlias = 149; + public static readonly RULE_errorCapturingIdentifier = 150; + public static readonly RULE_errorCapturingIdentifierExtra = 151; + public static readonly RULE_identifierList = 152; + public static readonly RULE_identifierSeq = 153; + public static readonly RULE_identifier = 154; + public static readonly RULE_unquotedIdentifier = 155; + public static readonly RULE_quotedIdentifier = 156; + public static readonly RULE_whenClause = 157; + public static readonly RULE_catalogPath = 158; + public static readonly RULE_catalogPathCreate = 159; + public static readonly RULE_databasePath = 160; + public static readonly RULE_databasePathCreate = 161; + public static readonly RULE_tablePathCreate = 162; + public static readonly RULE_tablePath = 163; + public static readonly RULE_viewPath = 164; + public static readonly RULE_viewPathCreate = 165; + public static readonly RULE_uid = 166; + public static readonly RULE_withOption = 167; + public static readonly RULE_ifNotExists = 168; + public static readonly RULE_ifExists = 169; + public static readonly RULE_tablePropertyList = 170; + public static readonly RULE_tableProperty = 171; + public static readonly RULE_tablePropertyKey = 172; + public static readonly RULE_tablePropertyValue = 173; + public static readonly RULE_logicalOperator = 174; + public static readonly RULE_comparisonOperator = 175; + public static readonly RULE_bitOperator = 176; + public static readonly RULE_mathOperator = 177; + public static readonly RULE_unaryOperator = 178; + public static readonly RULE_constant = 179; + public static readonly RULE_timePointLiteral = 180; + public static readonly RULE_stringLiteral = 181; + public static readonly RULE_decimalLiteral = 182; + public static readonly RULE_booleanLiteral = 183; + public static readonly RULE_setQuantifier = 184; + public static readonly RULE_timePointUnit = 185; + public static readonly RULE_timeIntervalUnit = 186; + public static readonly RULE_reservedKeywordsUsedAsFuncParam = 187; + public static readonly RULE_reservedKeywordsNoParamsUsedAsFuncName = 188; + public static readonly RULE_reservedKeywordsFollowParamsUsedAsFuncName = 189; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 190; + public static readonly RULE_nonReservedKeywords = 191; public static readonly literalNames = [ null, null, null, null, "'ABS'", "'ALL'", "'ALLOCATE'", "'ALLOW'", @@ -991,8 +996,9 @@ export class FlinkSqlParser extends SQLParserBase { "quantifiers", "measuresClause", "patternDefination", "patternVariable", "outputMode", "afterMatchStrategy", "patternVariablesDefination", "windowFrame", "frameBound", "withinClause", "expression", "booleanExpression", - "predicate", "likePredicate", "valueExpression", "primaryExpression", - "functionNameCreate", "functionName", "functionParam", "dereferenceDefinition", + "predicate", "likePredicate", "valueExpression", "functionCallExpression", + "primaryExpression", "functionNameCreate", "functionName", "functionNameAndParams", + "functionNameWithParams", "functionParam", "dereferenceDefinition", "correlationName", "qualifiedName", "timeIntervalExpression", "errorCapturingMultiUnitsInterval", "multiUnitsInterval", "errorCapturingUnitToUnitInterval", "unitToUnitInterval", "intervalValue", "tableAlias", "errorCapturingIdentifier", "errorCapturingIdentifierExtra", @@ -1005,6 +1011,7 @@ export class FlinkSqlParser extends SQLParserBase { "mathOperator", "unaryOperator", "constant", "timePointLiteral", "stringLiteral", "decimalLiteral", "booleanLiteral", "setQuantifier", "timePointUnit", "timeIntervalUnit", "reservedKeywordsUsedAsFuncParam", + "reservedKeywordsNoParamsUsedAsFuncName", "reservedKeywordsFollowParamsUsedAsFuncName", "reservedKeywordsUsedAsFuncName", "nonReservedKeywords", ]; @@ -1029,21 +1036,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 377; + this.state = 387; 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 - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 822083585) !== 0) || ((((_la - 410)) & ~0x1F) === 0 && ((1 << (_la - 410)) & 142606353) !== 0) || _la === 450 || _la === 468 || ((((_la - 489)) & ~0x1F) === 0 && ((1 << (_la - 489)) & 134219777) !== 0) || _la === 521) { { { - this.state = 374; + this.state = 384; this.singleStatement(); } } - this.state = 379; + this.state = 389; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 380; + this.state = 390; this.match(FlinkSqlParser.EOF); } } @@ -1065,7 +1072,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SingleStatementContext(this.context, this.state); this.enterRule(localContext, 2, FlinkSqlParser.RULE_singleStatement); try { - this.state = 387; + this.state = 397; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALTER: @@ -1091,14 +1098,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 382; + this.state = 392; this.sqlStatement(); - this.state = 384; + this.state = 394; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1, this.context) ) { case 1: { - this.state = 383; + this.state = 393; this.match(FlinkSqlParser.SEMICOLON); } break; @@ -1108,7 +1115,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.SEMICOLON: this.enterOuterAlt(localContext, 2); { - this.state = 386; + this.state = 396; this.emptyStatement(); } break; @@ -1134,90 +1141,90 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, FlinkSqlParser.RULE_sqlStatement); try { - this.state = 401; + this.state = 411; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 389; + this.state = 399; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 390; + this.state = 400; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 391; + this.state = 401; this.describeStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 392; + this.state = 402; this.explainStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 393; + this.state = 403; this.useStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 394; + this.state = 404; this.showStatememt(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 395; + this.state = 405; this.loadStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 396; + this.state = 406; this.unloadStatememt(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 397; + this.state = 407; this.setStatememt(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 398; + this.state = 408; this.resetStatememt(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 399; + this.state = 409; this.jarStatememt(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 400; + this.state = 410; this.dtAddStatement(); } break; @@ -1243,7 +1250,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 403; + this.state = 413; this.match(FlinkSqlParser.SEMICOLON); } } @@ -1265,104 +1272,104 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 8, FlinkSqlParser.RULE_ddlStatement); try { - this.state = 419; + this.state = 429; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 405; + this.state = 415; this.createTable(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 406; + this.state = 416; this.createDatabase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 407; + this.state = 417; this.createView(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 408; + this.state = 418; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 409; + this.state = 419; this.createCatalog(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 410; + this.state = 420; this.alterTable(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 411; + this.state = 421; this.alterView(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 412; + this.state = 422; this.alterDatabase(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 413; + this.state = 423; this.alterFunction(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 414; + this.state = 424; this.dropCatalog(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 415; + this.state = 425; this.dropTable(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 416; + this.state = 426; this.dropDatabase(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 417; + this.state = 427; this.dropView(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 418; + this.state = 428; this.dropFunction(); } break; @@ -1386,7 +1393,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new DmlStatementContext(this.context, this.state); this.enterRule(localContext, 10, FlinkSqlParser.RULE_dmlStatement); try { - this.state = 423; + this.state = 433; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_SELECT: @@ -1395,7 +1402,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 421; + this.state = 431; this.queryStatement(0); } break; @@ -1404,7 +1411,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 2); { - this.state = 422; + this.state = 432; this.insertStatement(); } break; @@ -1433,7 +1440,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 425; + this.state = 435; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -1442,7 +1449,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 426; + this.state = 436; this.tablePath(); } } @@ -1466,24 +1473,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 428; + this.state = 438; this.match(FlinkSqlParser.KW_EXPLAIN); - this.state = 432; + this.state = 442; 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 = 429; + this.state = 439; this.explainDetails(); } break; case FlinkSqlParser.KW_PLAN: { - this.state = 430; + this.state = 440; this.match(FlinkSqlParser.KW_PLAN); - this.state = 431; + this.state = 441; this.match(FlinkSqlParser.KW_FOR); } break; @@ -1499,24 +1506,24 @@ export class FlinkSqlParser extends SQLParserBase { default: break; } - this.state = 437; + this.state = 447; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: { - this.state = 434; + this.state = 444; this.dmlStatement(); } break; case 2: { - this.state = 435; + this.state = 445; this.insertSimpleStatement(); } break; case 3: { - this.state = 436; + this.state = 446; this.insertMulStatement(); } break; @@ -1544,21 +1551,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 439; + this.state = 449; this.explainDetail(); - this.state = 444; + this.state = 454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 440; + this.state = 450; this.match(FlinkSqlParser.COMMA); - this.state = 441; + this.state = 451; this.explainDetail(); } } - this.state = 446; + this.state = 456; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1585,7 +1592,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 447; + this.state = 457; _la = this.tokenStream.LA(1); if(!(_la === 45 || _la === 128 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -1614,33 +1621,33 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new UseStatementContext(this.context, this.state); this.enterRule(localContext, 20, FlinkSqlParser.RULE_useStatement); try { - this.state = 455; + this.state = 465; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 449; + this.state = 459; this.match(FlinkSqlParser.KW_USE); - this.state = 450; + this.state = 460; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 451; + this.state = 461; this.catalogPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 452; + this.state = 462; this.match(FlinkSqlParser.KW_USE); - this.state = 453; + this.state = 463; this.databasePath(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 454; + this.state = 464; this.useModuleStatement(); } break; @@ -1667,25 +1674,25 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 457; + this.state = 467; this.match(FlinkSqlParser.KW_USE); - this.state = 458; + this.state = 468; this.match(FlinkSqlParser.KW_MODULES); - this.state = 459; + this.state = 469; this.uid(); - this.state = 464; + this.state = 474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 460; + this.state = 470; this.match(FlinkSqlParser.COMMA); - this.state = 461; + this.state = 471; this.uid(); } } - this.state = 466; + this.state = 476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -1710,15 +1717,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 24, FlinkSqlParser.RULE_showStatememt); let _la: number; try { - this.state = 509; + this.state = 519; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 467; + this.state = 477; this.match(FlinkSqlParser.KW_SHOW); - this.state = 468; + this.state = 478; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 90 || _la === 422 || _la === 464)) { this.errorHandler.recoverInline(this); @@ -1732,11 +1739,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 469; + this.state = 479; this.match(FlinkSqlParser.KW_SHOW); - this.state = 470; + this.state = 480; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 471; + this.state = 481; _la = this.tokenStream.LA(1); if(!(_la === 441 || _la === 447)) { this.errorHandler.recoverInline(this); @@ -1750,16 +1757,16 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 472; + this.state = 482; this.match(FlinkSqlParser.KW_SHOW); - this.state = 473; + this.state = 483; this.match(FlinkSqlParser.KW_TABLES); - this.state = 476; + this.state = 486; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151 || _la === 170) { { - this.state = 474; + this.state = 484; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1768,17 +1775,17 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 475; + this.state = 485; this.databasePath(); } } - this.state = 479; + this.state = 489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202 || _la === 241) { { - this.state = 478; + this.state = 488; this.likePredicate(); } } @@ -1788,11 +1795,11 @@ export class FlinkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 481; + this.state = 491; this.match(FlinkSqlParser.KW_SHOW); - this.state = 482; + this.state = 492; this.match(FlinkSqlParser.KW_COLUMNS); - this.state = 483; + this.state = 493; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -1801,28 +1808,28 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 486; + this.state = 496; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 13, this.context) ) { case 1: { - this.state = 484; + this.state = 494; this.viewPath(); } break; case 2: { - this.state = 485; + this.state = 495; this.tablePath(); } break; } - this.state = 489; + this.state = 499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202 || _la === 241) { { - this.state = 488; + this.state = 498; this.likePredicate(); } } @@ -1832,26 +1839,26 @@ export class FlinkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 491; + this.state = 501; this.match(FlinkSqlParser.KW_SHOW); - this.state = 492; + this.state = 502; this.match(FlinkSqlParser.KW_CREATE); - this.state = 497; + this.state = 507; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_TABLE: { - this.state = 493; + this.state = 503; this.match(FlinkSqlParser.KW_TABLE); - this.state = 494; + this.state = 504; this.tablePath(); } break; case FlinkSqlParser.KW_VIEW: { - this.state = 495; + this.state = 505; this.match(FlinkSqlParser.KW_VIEW); - this.state = 496; + this.state = 506; this.viewPath(); } break; @@ -1863,38 +1870,38 @@ export class FlinkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 499; + this.state = 509; this.match(FlinkSqlParser.KW_SHOW); - this.state = 501; + this.state = 511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 411) { { - this.state = 500; + this.state = 510; this.match(FlinkSqlParser.KW_USER); } } - this.state = 503; + this.state = 513; this.match(FlinkSqlParser.KW_FUNCTIONS); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 504; + this.state = 514; this.match(FlinkSqlParser.KW_SHOW); - this.state = 506; + this.state = 516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152) { { - this.state = 505; + this.state = 515; this.match(FlinkSqlParser.KW_FULL); } } - this.state = 508; + this.state = 518; this.match(FlinkSqlParser.KW_MODULES); } break; @@ -1920,20 +1927,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 511; + this.state = 521; this.match(FlinkSqlParser.KW_LOAD); - this.state = 512; + this.state = 522; this.match(FlinkSqlParser.KW_MODULE); - this.state = 513; + this.state = 523; this.uid(); - this.state = 516; + this.state = 526; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 19, this.context) ) { case 1: { - this.state = 514; + this.state = 524; this.match(FlinkSqlParser.KW_WITH); - this.state = 515; + this.state = 525; this.tablePropertyList(); } break; @@ -1960,11 +1967,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 518; + this.state = 528; this.match(FlinkSqlParser.KW_UNLOAD); - this.state = 519; + this.state = 529; this.match(FlinkSqlParser.KW_MODULE); - this.state = 520; + this.state = 530; this.uid(); } } @@ -1988,14 +1995,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 522; + this.state = 532; this.match(FlinkSqlParser.KW_SET); - this.state = 524; + this.state = 534; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 20, this.context) ) { case 1: { - this.state = 523; + this.state = 533; this.tableProperty(); } break; @@ -2022,14 +2029,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 526; + this.state = 536; this.match(FlinkSqlParser.KW_RESET); - this.state = 528; + this.state = 538; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 21, this.context) ) { case 1: { - this.state = 527; + this.state = 537; this.tablePropertyKey(); } break; @@ -2057,7 +2064,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 530; + this.state = 540; _la = this.tokenStream.LA(1); if(!(_la === 437 || _la === 489)) { this.errorHandler.recoverInline(this); @@ -2066,9 +2073,9 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 531; + this.state = 541; this.match(FlinkSqlParser.KW_JAR); - this.state = 532; + this.state = 542; this.jarFileName(); } } @@ -2091,28 +2098,28 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 36, FlinkSqlParser.RULE_dtAddStatement); let _la: number; try { - this.state = 584; + this.state = 594; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 534; + this.state = 544; this.match(FlinkSqlParser.KW_ADD); - this.state = 535; + this.state = 545; this.match(FlinkSqlParser.KW_JAR); - this.state = 536; + this.state = 546; this.match(FlinkSqlParser.KW_WITH); - this.state = 537; + this.state = 547; this.dtFilePath(); - this.state = 540; + this.state = 550; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 538; + this.state = 548; this.match(FlinkSqlParser.KW_AS); - this.state = 539; + this.state = 549; this.uid(); } } @@ -2122,34 +2129,34 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 542; + this.state = 552; this.match(FlinkSqlParser.KW_ADD); - this.state = 543; + this.state = 553; this.match(FlinkSqlParser.KW_FILE); - this.state = 544; + this.state = 554; this.match(FlinkSqlParser.KW_WITH); - this.state = 545; + this.state = 555; this.dtFilePath(); - this.state = 548; + this.state = 558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 546; + this.state = 556; this.match(FlinkSqlParser.KW_AS); - this.state = 547; + this.state = 557; this.uid(); } } - this.state = 552; + this.state = 562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 311) { { - this.state = 550; + this.state = 560; this.match(FlinkSqlParser.KW_RENAME); - this.state = 551; + this.state = 561; this.uid(); } } @@ -2159,9 +2166,9 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 554; + this.state = 564; this.match(FlinkSqlParser.KW_ADD); - this.state = 555; + this.state = 565; _la = this.tokenStream.LA(1); if(!(((((_la - 482)) & ~0x1F) === 0 && ((1 << (_la - 482)) & 47) !== 0))) { this.errorHandler.recoverInline(this); @@ -2170,70 +2177,70 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 556; + this.state = 566; this.match(FlinkSqlParser.KW_WITH); - this.state = 557; + this.state = 567; this.dtFilePath(); - this.state = 558; + this.state = 568; this.match(FlinkSqlParser.KW_RENAME); - this.state = 559; + this.state = 569; this.uid(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 561; + this.state = 571; this.match(FlinkSqlParser.KW_ADD); - this.state = 562; + this.state = 572; this.match(FlinkSqlParser.KW_PYTHON_PARAMETER); - this.state = 563; + this.state = 573; this.dtFilePath(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 564; + this.state = 574; this.match(FlinkSqlParser.KW_ADD); - this.state = 565; + this.state = 575; this.match(FlinkSqlParser.KW_ENGINE); - this.state = 566; + this.state = 576; this.match(FlinkSqlParser.KW_FILE); - this.state = 567; + this.state = 577; this.match(FlinkSqlParser.KW_WITH); - this.state = 568; + this.state = 578; this.dtFilePath(); - this.state = 569; + this.state = 579; this.match(FlinkSqlParser.KW_RENAME); - this.state = 570; + this.state = 580; this.uid(); - this.state = 571; + this.state = 581; this.match(FlinkSqlParser.KW_KEY); - this.state = 572; + this.state = 582; this.uid(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 574; + this.state = 584; this.match(FlinkSqlParser.KW_ADD); - this.state = 575; + this.state = 585; this.match(FlinkSqlParser.KW_CONFIG); - this.state = 576; + this.state = 586; this.match(FlinkSqlParser.KW_FILE); - this.state = 577; + this.state = 587; this.match(FlinkSqlParser.KW_WITH); - this.state = 578; + this.state = 588; this.dtFilePath(); - this.state = 579; + this.state = 589; this.match(FlinkSqlParser.KW_FOR); - this.state = 580; + this.state = 590; this.uid(); - this.state = 581; + this.state = 591; this.match(FlinkSqlParser.KW_AS); - this.state = 582; + this.state = 592; this.uid(); } break; @@ -2261,7 +2268,7 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 590; + this.state = 600; this.errorHandler.sync(this); alternative = 1; do { @@ -2269,17 +2276,17 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 587; + this.state = 597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 534) { { - this.state = 586; + this.state = 596; this.match(FlinkSqlParser.SLASH_SIGN); } } - this.state = 589; + this.state = 599; this.uid(); } } @@ -2287,7 +2294,7 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 592; + this.state = 602; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -2313,18 +2320,18 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 596; + this.state = 606; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 594; + this.state = 604; this.simpleCreateTable(); } break; case 2: { - this.state = 595; + this.state = 605; this.createTableAsSelect(); } break; @@ -2353,122 +2360,122 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 598; + this.state = 608; this.match(FlinkSqlParser.KW_CREATE); - this.state = 600; + this.state = 610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 497) { { - this.state = 599; + this.state = 609; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 602; + this.state = 612; this.match(FlinkSqlParser.KW_TABLE); - this.state = 604; + this.state = 614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 603; + this.state = 613; this.ifNotExists(); } } - this.state = 606; + this.state = 616; this.tablePathCreate(); - this.state = 607; + this.state = 617; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 608; + this.state = 618; this.columnOptionDefinition(); - this.state = 613; + this.state = 623; 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 = 609; + this.state = 619; this.match(FlinkSqlParser.COMMA); - this.state = 610; + this.state = 620; this.columnOptionDefinition(); } } } - this.state = 615; + this.state = 625; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); } - this.state = 618; + this.state = 628; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 616; + this.state = 626; this.match(FlinkSqlParser.COMMA); - this.state = 617; + this.state = 627; this.watermarkDefinition(); } break; } - this.state = 622; + this.state = 632; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: { - this.state = 620; + this.state = 630; this.match(FlinkSqlParser.COMMA); - this.state = 621; + this.state = 631; this.tableConstraint(); } break; } - this.state = 626; + this.state = 636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 520) { { - this.state = 624; + this.state = 634; this.match(FlinkSqlParser.COMMA); - this.state = 625; + this.state = 635; this.selfDefinitionClause(); } } - this.state = 628; + this.state = 638; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 631; + this.state = 641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 629; + this.state = 639; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 630; + this.state = 640; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 634; + this.state = 644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 633; + this.state = 643; this.partitionDefinition(); } } - this.state = 636; + this.state = 646; this.withOption(); - this.state = 638; + this.state = 648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202) { { - this.state = 637; + this.state = 647; this.likeDefinition(); } } @@ -2496,32 +2503,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 640; + this.state = 650; this.match(FlinkSqlParser.KW_CREATE); - this.state = 641; + this.state = 651; this.match(FlinkSqlParser.KW_TABLE); - this.state = 643; + this.state = 653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 642; + this.state = 652; this.ifNotExists(); } } - this.state = 645; + this.state = 655; this.tablePathCreate(); - this.state = 646; + this.state = 656; this.withOption(); - this.state = 649; + this.state = 659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 647; + this.state = 657; this.match(FlinkSqlParser.KW_AS); - this.state = 648; + this.state = 658; this.queryStatement(0); } } @@ -2546,27 +2553,27 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnOptionDefinitionContext(this.context, this.state); this.enterRule(localContext, 46, FlinkSqlParser.RULE_columnOptionDefinition); try { - this.state = 654; + this.state = 664; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 40, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 651; + this.state = 661; this.physicalColumnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 652; + this.state = 662; this.metadataColumnDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 653; + this.state = 663; this.computedColumnDefinition(); } break; @@ -2593,28 +2600,28 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 656; + this.state = 666; this.columnNameCreate(); - this.state = 657; + this.state = 667; this.columnType(); - this.state = 659; + this.state = 669; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 241 || _la === 244 || _la === 288) { { - this.state = 658; + this.state = 668; this.columnConstraint(); } } - this.state = 663; + this.state = 673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 661; + this.state = 671; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 662; + this.state = 672; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -2639,20 +2646,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnNameCreateContext(this.context, this.state); this.enterRule(localContext, 50, FlinkSqlParser.RULE_columnNameCreate); try { - this.state = 667; + this.state = 677; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 43, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 665; + this.state = 675; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 666; + this.state = 676; this.expression(); } break; @@ -2676,20 +2683,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 52, FlinkSqlParser.RULE_columnName); try { - this.state = 671; + this.state = 681; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 669; + this.state = 679; this.uid(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 670; + this.state = 680; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -2718,27 +2725,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 673; + this.state = 683; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 674; + this.state = 684; this.columnName(); - this.state = 679; + this.state = 689; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 675; + this.state = 685; this.match(FlinkSqlParser.COMMA); - this.state = 676; + this.state = 686; this.columnName(); } } - this.state = 681; + this.state = 691; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 682; + this.state = 692; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -2761,7 +2768,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 56, FlinkSqlParser.RULE_columnType); let _la: number; try { - this.state = 721; + this.state = 731; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_BOOLEAN: @@ -2769,7 +2776,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 684; + this.state = 694; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 32 || _la === 91 || _la === 244)) { @@ -2797,7 +2804,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 2); { - this.state = 685; + this.state = 695; 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 === 344 || _la === 360 || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 521) !== 0) || _la === 416 || _la === 417)) { @@ -2807,12 +2814,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 687; + this.state = 697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 686; + this.state = 696; this.lengthOneDimension(); } } @@ -2822,24 +2829,24 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 689; + this.state = 699; localContext._colType = this.match(FlinkSqlParser.KW_TIMESTAMP); - this.state = 691; + this.state = 701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 690; + this.state = 700; this.lengthOneDimension(); } } - this.state = 699; + this.state = 709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 433 || _la === 435) { { - this.state = 693; + this.state = 703; _la = this.tokenStream.LA(1); if(!(_la === 433 || _la === 435)) { this.errorHandler.recoverInline(this); @@ -2848,19 +2855,19 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 695; + this.state = 705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 694; + this.state = 704; this.match(FlinkSqlParser.KW_LOCAL); } } - this.state = 697; + this.state = 707; this.match(FlinkSqlParser.KW_TIME); - this.state = 698; + this.state = 708; this.match(FlinkSqlParser.KW_ZONE); } } @@ -2874,7 +2881,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NUMERIC: this.enterOuterAlt(localContext, 4); { - this.state = 701; + this.state = 711; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 16387) !== 0) || _la === 144 || _la === 246)) { @@ -2884,12 +2891,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 === 516) { { - this.state = 702; + this.state = 712; this.lengthTwoOptionalDimension(); } } @@ -2900,7 +2907,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MULTISET: this.enterOuterAlt(localContext, 5); { - this.state = 705; + this.state = 715; localContext._colType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 231)) { @@ -2910,12 +2917,12 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 707; + this.state = 717; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 507) { { - this.state = 706; + this.state = 716; this.lengthOneTypeDimension(); } } @@ -2925,14 +2932,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_MAP: this.enterOuterAlt(localContext, 6); { - this.state = 709; + this.state = 719; localContext._colType = this.match(FlinkSqlParser.KW_MAP); - this.state = 711; + this.state = 721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 507) { { - this.state = 710; + this.state = 720; this.mapTypeDimension(); } } @@ -2942,14 +2949,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_ROW: this.enterOuterAlt(localContext, 7); { - this.state = 713; + this.state = 723; localContext._colType = this.match(FlinkSqlParser.KW_ROW); - this.state = 715; + this.state = 725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 507 || _la === 516) { { - this.state = 714; + this.state = 724; this.rowTypeDimension(); } } @@ -2959,14 +2966,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_RAW: this.enterOuterAlt(localContext, 8); { - this.state = 717; + this.state = 727; localContext._colType = this.match(FlinkSqlParser.KW_RAW); - this.state = 719; + this.state = 729; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 718; + this.state = 728; this.lengthTwoStringDimension(); } } @@ -2997,11 +3004,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 723; + this.state = 733; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 724; + this.state = 734; this.decimalLiteral(); - this.state = 725; + this.state = 735; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3026,23 +3033,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 727; + this.state = 737; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 728; + this.state = 738; this.decimalLiteral(); - this.state = 731; + this.state = 741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 520) { { - this.state = 729; + this.state = 739; this.match(FlinkSqlParser.COMMA); - this.state = 730; + this.state = 740; this.decimalLiteral(); } } - this.state = 733; + this.state = 743; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3067,23 +3074,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 735; + this.state = 745; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 736; + this.state = 746; this.stringLiteral(); - this.state = 739; + this.state = 749; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 520) { { - this.state = 737; + this.state = 747; this.match(FlinkSqlParser.COMMA); - this.state = 738; + this.state = 748; this.stringLiteral(); } } - this.state = 741; + this.state = 751; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3107,11 +3114,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 743; + this.state = 753; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 744; + this.state = 754; this.columnType(); - this.state = 745; + this.state = 755; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3135,17 +3142,17 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 747; + this.state = 757; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 748; + this.state = 758; this.columnType(); { - this.state = 749; + this.state = 759; this.match(FlinkSqlParser.COMMA); - this.state = 750; + this.state = 760; this.columnType(); } - this.state = 752; + this.state = 762; this.match(FlinkSqlParser.GREATER_SYMBOL); } } @@ -3168,68 +3175,68 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 68, FlinkSqlParser.RULE_rowTypeDimension); let _la: number; try { - this.state = 782; + this.state = 792; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 754; + this.state = 764; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 755; + this.state = 765; this.columnName(); - this.state = 756; + this.state = 766; this.columnType(); - this.state = 763; + this.state = 773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 757; + this.state = 767; this.match(FlinkSqlParser.COMMA); - this.state = 758; + this.state = 768; this.columnName(); - this.state = 759; + this.state = 769; this.columnType(); } } - this.state = 765; + this.state = 775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 766; + this.state = 776; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 2); { - this.state = 768; + this.state = 778; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 769; + this.state = 779; this.columnName(); - this.state = 770; + this.state = 780; this.columnType(); - this.state = 777; + this.state = 787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 771; + this.state = 781; this.match(FlinkSqlParser.COMMA); - this.state = 772; + this.state = 782; this.columnName(); - this.state = 773; + this.state = 783; this.columnType(); } } - this.state = 779; + this.state = 789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 780; + this.state = 790; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3256,37 +3263,37 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 70, FlinkSqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 798; + this.state = 808; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CONSTRAINT: case FlinkSqlParser.KW_PRIMARY: this.enterOuterAlt(localContext, 1); { - this.state = 786; + this.state = 796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 784; + this.state = 794; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 785; + this.state = 795; this.constraintName(); } } - this.state = 788; + this.state = 798; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 789; + this.state = 799; this.match(FlinkSqlParser.KW_KEY); - this.state = 792; + this.state = 802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 790; + this.state = 800; this.match(FlinkSqlParser.KW_NOT); - this.state = 791; + this.state = 801; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3297,17 +3304,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 2); { - this.state = 795; + this.state = 805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 794; + this.state = 804; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 797; + this.state = 807; this.match(FlinkSqlParser.KW_NULL); } break; @@ -3336,30 +3343,30 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 800; + this.state = 810; this.columnNameCreate(); - this.state = 801; + this.state = 811; this.columnType(); - this.state = 802; + this.state = 812; this.match(FlinkSqlParser.KW_METADATA); - this.state = 805; + this.state = 815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 803; + this.state = 813; this.match(FlinkSqlParser.KW_FROM); - this.state = 804; + this.state = 814; this.metadataKey(); } } - this.state = 808; + this.state = 818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 807; + this.state = 817; this.match(FlinkSqlParser.KW_VIRTUAL); } } @@ -3386,7 +3393,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 810; + this.state = 820; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3411,20 +3418,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 812; + this.state = 822; this.columnNameCreate(); - this.state = 813; + this.state = 823; this.match(FlinkSqlParser.KW_AS); - this.state = 814; + this.state = 824; this.computedColumnExpression(); - this.state = 817; + this.state = 827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 815; + this.state = 825; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 816; + this.state = 826; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -3451,7 +3458,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 819; + this.state = 829; this.expression(); } } @@ -3475,15 +3482,15 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 821; + this.state = 831; this.match(FlinkSqlParser.KW_WATERMARK); - this.state = 822; + this.state = 832; this.match(FlinkSqlParser.KW_FOR); - this.state = 823; + this.state = 833; this.columnName(); - this.state = 824; + this.state = 834; this.match(FlinkSqlParser.KW_AS); - this.state = 825; + this.state = 835; this.expression(); } } @@ -3508,27 +3515,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 829; + this.state = 839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 827; + this.state = 837; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 828; + this.state = 838; this.constraintName(); } } - this.state = 831; + this.state = 841; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 832; + this.state = 842; this.match(FlinkSqlParser.KW_KEY); - this.state = 833; + this.state = 843; this.columnNameList(); - this.state = 834; + this.state = 844; this.match(FlinkSqlParser.KW_NOT); - this.state = 835; + this.state = 845; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -3552,7 +3559,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 837; + this.state = 847; this.identifier(); } } @@ -3576,11 +3583,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 839; + this.state = 849; this.match(FlinkSqlParser.KW_PERIOD); - this.state = 840; + this.state = 850; this.match(FlinkSqlParser.KW_FOR); - this.state = 841; + this.state = 851; this.match(FlinkSqlParser.KW_SYSTEM_TIME); } } @@ -3604,11 +3611,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 843; + this.state = 853; this.match(FlinkSqlParser.KW_PARTITIONED); - this.state = 844; + this.state = 854; this.match(FlinkSqlParser.KW_BY); - this.state = 845; + this.state = 855; this.transformList(); } } @@ -3633,27 +3640,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 847; + this.state = 857; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 848; + this.state = 858; this.transform(); - this.state = 853; + this.state = 863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 849; + this.state = 859; this.match(FlinkSqlParser.COMMA); - this.state = 850; + this.state = 860; this.transform(); } } - this.state = 855; + this.state = 865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 856; + this.state = 866; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -3676,14 +3683,14 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 92, FlinkSqlParser.RULE_transform); let _la: number; try { - this.state = 870; + this.state = 880; 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 = 858; + this.state = 868; this.columnName(); } break; @@ -3691,27 +3698,27 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ApplyTransformContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 859; + this.state = 869; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 860; + this.state = 870; this.transformArgument(); - this.state = 865; + this.state = 875; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 861; + this.state = 871; this.match(FlinkSqlParser.COMMA); - this.state = 862; + this.state = 872; this.transformArgument(); } } - this.state = 867; + this.state = 877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 868; + this.state = 878; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3735,20 +3742,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new TransformArgumentContext(this.context, this.state); this.enterRule(localContext, 94, FlinkSqlParser.RULE_transformArgument); try { - this.state = 874; + this.state = 884; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 872; + this.state = 882; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 873; + this.state = 883; this.constant(); } break; @@ -3775,32 +3782,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 876; + this.state = 886; this.match(FlinkSqlParser.KW_LIKE); - this.state = 877; + this.state = 887; this.tablePath(); - this.state = 886; + this.state = 896; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: { - this.state = 878; + this.state = 888; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 882; + this.state = 892; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 266 || _la === 455 || _la === 462) { { { - this.state = 879; + this.state = 889; this.likeOption(); } } - this.state = 884; + this.state = 894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 885; + this.state = 895; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -3826,14 +3833,14 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 98, FlinkSqlParser.RULE_likeOption); let _la: number; try { - this.state = 892; + this.state = 902; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 75, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 888; + this.state = 898; _la = this.tokenStream.LA(1); if(!(_la === 455 || _la === 462)) { this.errorHandler.recoverInline(this); @@ -3842,7 +3849,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 889; + this.state = 899; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 270 || _la === 444)) { this.errorHandler.recoverInline(this); @@ -3858,7 +3865,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 890; + this.state = 900; _la = this.tokenStream.LA(1); if(!(_la === 266 || _la === 455 || _la === 462)) { this.errorHandler.recoverInline(this); @@ -3867,7 +3874,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 891; + this.state = 901; _la = this.tokenStream.LA(1); if(!(_la === 425 || _la === 458 || _la === 477)) { this.errorHandler.recoverInline(this); @@ -3901,13 +3908,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 894; + this.state = 904; this.match(FlinkSqlParser.KW_CREATE); - this.state = 895; + this.state = 905; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 896; + this.state = 906; this.catalogPathCreate(); - this.state = 897; + this.state = 907; this.withOption(); } } @@ -3932,35 +3939,35 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 899; + this.state = 909; this.match(FlinkSqlParser.KW_CREATE); - this.state = 900; + this.state = 910; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 902; + this.state = 912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 901; + this.state = 911; this.ifNotExists(); } } - this.state = 904; + this.state = 914; this.databasePathCreate(); - this.state = 907; + this.state = 917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 905; + this.state = 915; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 906; + this.state = 916; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 909; + this.state = 919; this.withOption(); } } @@ -3985,57 +3992,57 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 911; + this.state = 921; this.match(FlinkSqlParser.KW_CREATE); - this.state = 913; + this.state = 923; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 497) { { - this.state = 912; + this.state = 922; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 915; + this.state = 925; this.match(FlinkSqlParser.KW_VIEW); - this.state = 917; + this.state = 927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 916; + this.state = 926; this.ifNotExists(); } } - this.state = 919; + this.state = 929; this.viewPathCreate(); - this.state = 921; + this.state = 931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 920; + this.state = 930; this.columnNameList(); } } - this.state = 925; + this.state = 935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 923; + this.state = 933; this.match(FlinkSqlParser.KW_COMMENT); - this.state = 924; + this.state = 934; localContext._comment = this.match(FlinkSqlParser.STRING_LITERAL); } } - this.state = 927; + this.state = 937; this.match(FlinkSqlParser.KW_AS); - this.state = 928; + this.state = 938; this.queryStatement(0); } } @@ -4060,52 +4067,52 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 930; + this.state = 940; this.match(FlinkSqlParser.KW_CREATE); - this.state = 934; + this.state = 944; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: { - this.state = 931; + this.state = 941; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 932; + this.state = 942; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 933; + this.state = 943; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 936; + this.state = 946; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 938; + this.state = 948; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 937; + this.state = 947; this.ifNotExists(); } } - this.state = 940; + this.state = 950; this.functionNameCreate(); - this.state = 941; + this.state = 951; this.match(FlinkSqlParser.KW_AS); - this.state = 942; + this.state = 952; this.identifier(); - this.state = 945; + this.state = 955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 943; + this.state = 953; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 944; + this.state = 954; _la = this.tokenStream.LA(1); if(!(_la === 330 || _la === 465 || _la === 481)) { this.errorHandler.recoverInline(this); @@ -4117,12 +4124,12 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 948; + this.state = 958; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 412) { { - this.state = 947; + this.state = 957; this.usingClause(); } } @@ -4150,27 +4157,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 950; + this.state = 960; this.match(FlinkSqlParser.KW_USING); - this.state = 951; + this.state = 961; this.match(FlinkSqlParser.KW_JAR); - this.state = 952; + this.state = 962; this.jarFileName(); - this.state = 958; + this.state = 968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 953; + this.state = 963; this.match(FlinkSqlParser.COMMA); - this.state = 954; + this.state = 964; this.match(FlinkSqlParser.KW_JAR); - this.state = 955; + this.state = 965; this.jarFileName(); } } - this.state = 960; + this.state = 970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4196,7 +4203,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 961; + this.state = 971; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -4221,52 +4228,52 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 963; + this.state = 973; this.match(FlinkSqlParser.KW_ALTER); - this.state = 964; + this.state = 974; this.match(FlinkSqlParser.KW_TABLE); - this.state = 966; + this.state = 976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 965; + this.state = 975; this.ifExists(); } } - this.state = 968; + this.state = 978; this.tablePath(); - this.state = 974; + this.state = 984; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { case 1: { - this.state = 969; + this.state = 979; this.renameDefinition(); } break; case 2: { - this.state = 970; + this.state = 980; this.setKeyValueDefinition(); } break; case 3: { - this.state = 971; + this.state = 981; this.addConstraint(); } break; case 4: { - this.state = 972; + this.state = 982; this.dropConstraint(); } break; case 5: { - this.state = 973; + this.state = 983; this.addUnique(); } break; @@ -4294,21 +4301,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 976; + this.state = 986; this.match(FlinkSqlParser.KW_RENAME); - this.state = 978; + this.state = 988; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_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)) & 15) !== 0) || ((((_la - 537)) & ~0x1F) === 0 && ((1 << (_la - 537)) & 19) !== 0)) { { - this.state = 977; + this.state = 987; this.uid(); } } - this.state = 980; + this.state = 990; this.match(FlinkSqlParser.KW_TO); - this.state = 981; + this.state = 991; this.uid(); } } @@ -4332,9 +4339,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 983; + this.state = 993; this.match(FlinkSqlParser.KW_SET); - this.state = 984; + this.state = 994; this.tablePropertyList(); } } @@ -4359,24 +4366,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 986; + this.state = 996; this.match(FlinkSqlParser.KW_ADD); - this.state = 987; + this.state = 997; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 988; + this.state = 998; this.constraintName(); - this.state = 989; + this.state = 999; this.match(FlinkSqlParser.KW_PRIMARY); - this.state = 990; + this.state = 1000; this.match(FlinkSqlParser.KW_KEY); - this.state = 991; + this.state = 1001; this.columnNameList(); - this.state = 993; + this.state = 1003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 992; + this.state = 1002; this.notForced(); } } @@ -4403,11 +4410,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 995; + this.state = 1005; this.match(FlinkSqlParser.KW_DROP); - this.state = 996; + this.state = 1006; this.match(FlinkSqlParser.KW_CONSTRAINT); - this.state = 997; + this.state = 1007; this.constraintName(); } } @@ -4431,11 +4438,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 999; + this.state = 1009; this.match(FlinkSqlParser.KW_ADD); - this.state = 1000; + this.state = 1010; this.match(FlinkSqlParser.KW_UNIQUE); - this.state = 1001; + this.state = 1011; this.columnNameList(); } } @@ -4459,9 +4466,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1003; + this.state = 1013; this.match(FlinkSqlParser.KW_NOT); - this.state = 1004; + this.state = 1014; this.match(FlinkSqlParser.KW_ENFORCED); } } @@ -4485,26 +4492,26 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1006; + this.state = 1016; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1007; + this.state = 1017; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1008; + this.state = 1018; this.viewPath(); - this.state = 1012; + this.state = 1022; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RENAME: { - this.state = 1009; + this.state = 1019; this.renameDefinition(); } break; case FlinkSqlParser.KW_AS: { - this.state = 1010; + this.state = 1020; this.match(FlinkSqlParser.KW_AS); - this.state = 1011; + this.state = 1021; this.queryStatement(0); } break; @@ -4533,13 +4540,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1014; + this.state = 1024; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1015; + this.state = 1025; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1016; + this.state = 1026; this.databasePath(); - this.state = 1017; + this.state = 1027; this.setKeyValueDefinition(); } } @@ -4564,52 +4571,52 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1019; + this.state = 1029; this.match(FlinkSqlParser.KW_ALTER); - this.state = 1023; + this.state = 1033; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { case 1: { - this.state = 1020; + this.state = 1030; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1021; + this.state = 1031; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1022; + this.state = 1032; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1025; + this.state = 1035; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1027; + this.state = 1037; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { - this.state = 1026; + this.state = 1036; this.ifExists(); } break; } - this.state = 1029; + this.state = 1039; this.functionName(); - this.state = 1030; + this.state = 1040; this.match(FlinkSqlParser.KW_AS); - this.state = 1031; + this.state = 1041; this.identifier(); - this.state = 1034; + this.state = 1044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 195) { { - this.state = 1032; + this.state = 1042; this.match(FlinkSqlParser.KW_LANGUAGE); - this.state = 1033; + this.state = 1043; _la = this.tokenStream.LA(1); if(!(_la === 330 || _la === 465 || _la === 481)) { this.errorHandler.recoverInline(this); @@ -4644,21 +4651,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1036; + this.state = 1046; this.match(FlinkSqlParser.KW_DROP); - this.state = 1037; + this.state = 1047; this.match(FlinkSqlParser.KW_CATALOG); - this.state = 1039; + this.state = 1049; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1038; + this.state = 1048; this.ifExists(); } } - this.state = 1041; + this.state = 1051; this.catalogPath(); } } @@ -4683,31 +4690,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1043; + this.state = 1053; this.match(FlinkSqlParser.KW_DROP); - this.state = 1045; + this.state = 1055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 497) { { - this.state = 1044; + this.state = 1054; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1047; + this.state = 1057; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1049; + this.state = 1059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1048; + this.state = 1058; this.ifExists(); } } - this.state = 1051; + this.state = 1061; this.tablePath(); } } @@ -4732,28 +4739,28 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1053; + this.state = 1063; this.match(FlinkSqlParser.KW_DROP); - this.state = 1054; + this.state = 1064; this.match(FlinkSqlParser.KW_DATABASE); - this.state = 1056; + this.state = 1066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1055; + this.state = 1065; this.ifExists(); } } - this.state = 1058; + this.state = 1068; this.databasePath(); - this.state = 1060; + this.state = 1070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 440 || _la === 490) { { - this.state = 1059; + this.state = 1069; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 440 || _la === 490)) { @@ -4789,31 +4796,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1062; + this.state = 1072; this.match(FlinkSqlParser.KW_DROP); - this.state = 1064; + this.state = 1074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 497) { { - this.state = 1063; + this.state = 1073; this.match(FlinkSqlParser.KW_TEMPORARY); } } - this.state = 1066; + this.state = 1076; this.match(FlinkSqlParser.KW_VIEW); - this.state = 1068; + this.state = 1078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 1067; + this.state = 1077; this.ifExists(); } } - this.state = 1070; + this.state = 1080; this.viewPath(); } } @@ -4837,39 +4844,39 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1072; + this.state = 1082; this.match(FlinkSqlParser.KW_DROP); - this.state = 1076; + this.state = 1086; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1073; + this.state = 1083; this.match(FlinkSqlParser.KW_TEMPORARY); } break; case 2: { - this.state = 1074; + this.state = 1084; this.match(FlinkSqlParser.KW_TEMPORARY); - this.state = 1075; + this.state = 1085; this.match(FlinkSqlParser.KW_SYSTEM); } break; } - this.state = 1078; + this.state = 1088; this.match(FlinkSqlParser.KW_FUNCTION); - this.state = 1080; + this.state = 1090; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1079; + this.state = 1089; this.ifExists(); } break; } - this.state = 1082; + this.state = 1092; this.functionName(); } } @@ -4892,24 +4899,24 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 142, FlinkSqlParser.RULE_insertStatement); let _la: number; try { - this.state = 1091; + this.state = 1101; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 105, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1085; + this.state = 1095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 1084; + this.state = 1094; this.match(FlinkSqlParser.KW_EXECUTE); } } - this.state = 1087; + this.state = 1097; this.insertSimpleStatement(); } } @@ -4917,7 +4924,7 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1088; + this.state = 1098; this.insertMulStatementCompatibility(); } break; @@ -4925,9 +4932,9 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1089; + this.state = 1099; this.match(FlinkSqlParser.KW_EXECUTE); - this.state = 1090; + this.state = 1100; this.insertMulStatement(); } } @@ -4955,9 +4962,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1093; + this.state = 1103; this.match(FlinkSqlParser.KW_INSERT); - this.state = 1094; + this.state = 1104; _la = this.tokenStream.LA(1); if(!(_la === 183 || _la === 265)) { this.errorHandler.recoverInline(this); @@ -4966,40 +4973,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1095; + this.state = 1105; this.tablePath(); - this.state = 1104; + this.state = 1114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1097; + this.state = 1107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 268) { { - this.state = 1096; + this.state = 1106; this.insertPartitionDefinition(); } } - this.state = 1100; + this.state = 1110; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: { - this.state = 1099; + this.state = 1109; this.columnNameList(); } break; } - this.state = 1102; + this.state = 1112; this.queryStatement(0); } break; case 2: { - this.state = 1103; + this.state = 1113; this.valuesDefinition(); } break; @@ -5026,9 +5033,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1106; + this.state = 1116; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1107; + this.state = 1117; this.tablePropertyList(); } } @@ -5053,23 +5060,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1109; + this.state = 1119; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1110; + this.state = 1120; this.valuesRowDefinition(); - this.state = 1115; + this.state = 1125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1111; + this.state = 1121; this.match(FlinkSqlParser.COMMA); - this.state = 1112; + this.state = 1122; this.valuesRowDefinition(); } } - this.state = 1117; + this.state = 1127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5096,27 +5103,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1118; + this.state = 1128; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1119; + this.state = 1129; this.constant(); - this.state = 1124; + this.state = 1134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1120; + this.state = 1130; this.match(FlinkSqlParser.COMMA); - this.state = 1121; + this.state = 1131; this.constant(); } } - this.state = 1126; + this.state = 1136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1127; + this.state = 1137; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5141,31 +5148,31 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1129; + this.state = 1139; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1130; + this.state = 1140; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1131; + this.state = 1141; this.match(FlinkSqlParser.KW_SET); - this.state = 1132; + this.state = 1142; this.match(FlinkSqlParser.SEMICOLON); - this.state = 1136; + this.state = 1146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1133; + this.state = 1143; this.insertSimpleStatement(); - this.state = 1134; + this.state = 1144; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1138; + this.state = 1148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 177); - this.state = 1140; + this.state = 1150; this.match(FlinkSqlParser.KW_END); } } @@ -5190,29 +5197,29 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1142; + this.state = 1152; this.match(FlinkSqlParser.KW_STATEMENT); - this.state = 1143; + this.state = 1153; this.match(FlinkSqlParser.KW_SET); - this.state = 1144; + this.state = 1154; this.match(FlinkSqlParser.KW_BEGIN); - this.state = 1148; + this.state = 1158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1145; + this.state = 1155; this.insertSimpleStatement(); - this.state = 1146; + this.state = 1156; this.match(FlinkSqlParser.SEMICOLON); } } - this.state = 1150; + this.state = 1160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 177); - this.state = 1152; + this.state = 1162; this.match(FlinkSqlParser.KW_END); } } @@ -5249,53 +5256,53 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1177; + this.state = 1187; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1155; + this.state = 1165; this.valuesCaluse(); } break; case 2: { - this.state = 1156; + this.state = 1166; this.withClause(); - this.state = 1157; + this.state = 1167; this.queryStatement(5); } break; case 3: { - this.state = 1159; + this.state = 1169; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1160; + this.state = 1170; this.queryStatement(0); - this.state = 1161; + this.state = 1171; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: { - this.state = 1163; + this.state = 1173; this.selectClause(); - this.state = 1165; + this.state = 1175; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1164; + this.state = 1174; this.orderByCaluse(); } break; } - this.state = 1168; + this.state = 1178; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 114, this.context) ) { case 1: { - this.state = 1167; + this.state = 1177; this.limitClause(); } break; @@ -5304,24 +5311,24 @@ export class FlinkSqlParser extends SQLParserBase { break; case 5: { - this.state = 1170; + this.state = 1180; this.selectStatement(); - this.state = 1172; + this.state = 1182; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 115, this.context) ) { case 1: { - this.state = 1171; + this.state = 1181; this.orderByCaluse(); } break; } - this.state = 1175; + this.state = 1185; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1174; + this.state = 1184; this.limitClause(); } break; @@ -5330,7 +5337,7 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1193; + this.state = 1203; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -5344,11 +5351,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QueryStatementContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_queryStatement); - this.state = 1179; + this.state = 1189; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1180; + this.state = 1190; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 180 || _la === 402)) { @@ -5358,34 +5365,34 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1182; + this.state = 1192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5) { { - this.state = 1181; + this.state = 1191; this.match(FlinkSqlParser.KW_ALL); } } - this.state = 1184; + this.state = 1194; localContext._right = this.queryStatement(0); - this.state = 1186; + this.state = 1196; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1185; + this.state = 1195; this.orderByCaluse(); } break; } - this.state = 1189; + this.state = 1199; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1188; + this.state = 1198; this.limitClause(); } break; @@ -5393,7 +5400,7 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1195; + this.state = 1205; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 121, this.context); } @@ -5420,25 +5427,25 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1196; + this.state = 1206; this.match(FlinkSqlParser.KW_VALUES); - this.state = 1197; + this.state = 1207; this.expression(); - this.state = 1202; + this.state = 1212; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1198; + this.state = 1208; this.match(FlinkSqlParser.COMMA); - this.state = 1199; + this.state = 1209; this.expression(); } } } - this.state = 1204; + this.state = 1214; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 122, this.context); } @@ -5465,23 +5472,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1205; + this.state = 1215; this.match(FlinkSqlParser.KW_WITH); - this.state = 1206; + this.state = 1216; this.withItem(); - this.state = 1211; + this.state = 1221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1207; + this.state = 1217; this.match(FlinkSqlParser.COMMA); - this.state = 1208; + this.state = 1218; this.withItem(); } } - this.state = 1213; + this.state = 1223; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5508,45 +5515,45 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1214; + this.state = 1224; this.withItemName(); - this.state = 1226; + this.state = 1236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 516) { { - this.state = 1215; + this.state = 1225; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1216; + this.state = 1226; this.columnName(); - this.state = 1221; + this.state = 1231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 1217; + this.state = 1227; this.match(FlinkSqlParser.COMMA); - this.state = 1218; + this.state = 1228; this.columnName(); } } - this.state = 1223; + this.state = 1233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1224; + this.state = 1234; this.match(FlinkSqlParser.RR_BRACKET); } } - this.state = 1228; + this.state = 1238; this.match(FlinkSqlParser.KW_AS); - this.state = 1229; + this.state = 1239; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1230; + this.state = 1240; this.queryStatement(0); - this.state = 1231; + this.state = 1241; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -5570,7 +5577,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1233; + this.state = 1243; this.identifier(); } } @@ -5592,60 +5599,60 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new SelectStatementContext(this.context, this.state); this.enterRule(localContext, 166, FlinkSqlParser.RULE_selectStatement); try { - this.state = 1255; + this.state = 1265; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1235; + this.state = 1245; this.selectClause(); - this.state = 1237; + this.state = 1247; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: { - this.state = 1236; + this.state = 1246; this.fromClause(); } break; } - this.state = 1240; + this.state = 1250; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 127, this.context) ) { case 1: { - this.state = 1239; + this.state = 1249; this.whereClause(); } break; } - this.state = 1243; + this.state = 1253; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: { - this.state = 1242; + this.state = 1252; this.groupByClause(); } break; } - this.state = 1246; + this.state = 1256; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: { - this.state = 1245; + this.state = 1255; this.havingClause(); } break; } - this.state = 1249; + this.state = 1259; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 130, this.context) ) { case 1: { - this.state = 1248; + this.state = 1258; this.windowClause(); } break; @@ -5655,11 +5662,11 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1251; + this.state = 1261; this.selectClause(); - this.state = 1252; + this.state = 1262; this.fromClause(); - this.state = 1253; + this.state = 1263; this.matchRecognizeClause(); } break; @@ -5686,46 +5693,46 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1257; + this.state = 1267; this.match(FlinkSqlParser.KW_SELECT); - this.state = 1259; + this.state = 1269; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1258; + this.state = 1268; this.setQuantifier(); } break; } - this.state = 1270; + this.state = 1280; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 134, this.context) ) { case 1: { - this.state = 1261; + this.state = 1271; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; case 2: { - this.state = 1262; + this.state = 1272; this.projectItemDefinition(); - this.state = 1267; + this.state = 1277; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1263; + this.state = 1273; this.match(FlinkSqlParser.COMMA); - this.state = 1264; + this.state = 1274; this.projectItemDefinition(); } } } - this.state = 1269; + this.state = 1279; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 133, this.context); } @@ -5753,38 +5760,38 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 170, FlinkSqlParser.RULE_projectItemDefinition); let _la: number; try { - this.state = 1287; + this.state = 1297; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1272; + this.state = 1282; this.overWindowItem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1273; - this.columnName(); - this.state = 1278; + this.state = 1283; + this.expression(); + this.state = 1288; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 136, this.context) ) { case 1: { - this.state = 1275; + this.state = 1285; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 17) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 135, this.context) ) { + case 1: { - this.state = 1274; + this.state = 1284; this.match(FlinkSqlParser.KW_AS); } + break; } - - this.state = 1277; - this.expression(); + this.state = 1287; + this.columnName(); } break; } @@ -5793,25 +5800,25 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1280; - this.expression(); - this.state = 1285; + this.state = 1290; + this.columnName(); + this.state = 1295; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { case 1: { - this.state = 1282; + this.state = 1292; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 17) { { - this.state = 1281; + this.state = 1291; this.match(FlinkSqlParser.KW_AS); } - break; } - this.state = 1284; - this.columnName(); + + this.state = 1294; + this.expression(); } break; } @@ -5837,36 +5844,36 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new OverWindowItemContext(this.context, this.state); this.enterRule(localContext, 172, FlinkSqlParser.RULE_overWindowItem); try { - this.state = 1301; + this.state = 1311; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1289; + this.state = 1299; this.primaryExpression(0); - this.state = 1290; + this.state = 1300; this.match(FlinkSqlParser.KW_OVER); - this.state = 1291; + this.state = 1301; this.windowSpec(); - this.state = 1292; + this.state = 1302; this.match(FlinkSqlParser.KW_AS); - this.state = 1293; + this.state = 1303; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1295; + this.state = 1305; this.primaryExpression(0); - this.state = 1296; + this.state = 1306; this.match(FlinkSqlParser.KW_OVER); - this.state = 1297; + this.state = 1307; this.errorCapturingIdentifier(); - this.state = 1298; + this.state = 1308; this.match(FlinkSqlParser.KW_AS); - this.state = 1299; + this.state = 1309; this.identifier(); } break; @@ -5892,9 +5899,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1303; + this.state = 1313; this.match(FlinkSqlParser.KW_FROM); - this.state = 1304; + this.state = 1314; this.tableExpression(0); } } @@ -5931,28 +5938,28 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1317; + this.state = 1327; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { case 1: { - this.state = 1307; + this.state = 1317; this.tableReference(); - this.state = 1312; + this.state = 1322; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1308; + this.state = 1318; this.match(FlinkSqlParser.COMMA); - this.state = 1309; + this.state = 1319; this.tableReference(); } } } - this.state = 1314; + this.state = 1324; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 141, this.context); } @@ -5960,19 +5967,19 @@ export class FlinkSqlParser extends SQLParserBase { break; case 2: { - this.state = 1315; + this.state = 1325; this.inlineDataValueClause(); } break; case 3: { - this.state = 1316; + this.state = 1326; this.windoTVFClause(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1340; + this.state = 1350; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 148, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -5982,22 +5989,22 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1338; + this.state = 1348; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { case 1: { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1319; + this.state = 1329; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1320; + this.state = 1330; this.match(FlinkSqlParser.KW_CROSS); - this.state = 1321; + this.state = 1331; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1322; + this.state = 1332; this.tableExpression(4); } break; @@ -6005,26 +6012,26 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1323; + this.state = 1333; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1325; + this.state = 1335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 233) { { - this.state = 1324; + this.state = 1334; this.match(FlinkSqlParser.KW_NATURAL); } } - this.state = 1328; + this.state = 1338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 174 || _la === 201 || _la === 317) { { - this.state = 1327; + this.state = 1337; _la = this.tokenStream.LA(1); if(!(_la === 152 || _la === 174 || _la === 201 || _la === 317)) { this.errorHandler.recoverInline(this); @@ -6036,26 +6043,26 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1331; + this.state = 1341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 261) { { - this.state = 1330; + this.state = 1340; this.match(FlinkSqlParser.KW_OUTER); } } - this.state = 1333; + this.state = 1343; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1334; + this.state = 1344; this.tableExpression(0); - this.state = 1336; + this.state = 1346; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: { - this.state = 1335; + this.state = 1345; this.joinCondition(); } break; @@ -6065,7 +6072,7 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1342; + this.state = 1352; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 148, this.context); } @@ -6091,14 +6098,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1343; + this.state = 1353; this.tablePrimary(); - this.state = 1345; + this.state = 1355; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 149, this.context) ) { case 1: { - this.state = 1344; + this.state = 1354; this.tableAlias(); } break; @@ -6126,28 +6133,28 @@ export class FlinkSqlParser extends SQLParserBase { try { this.state = 1386; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 154, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1348; + this.state = 1358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 373) { { - this.state = 1347; + this.state = 1357; this.match(FlinkSqlParser.KW_TABLE); } } - this.state = 1350; + this.state = 1360; this.tablePath(); - this.state = 1352; + this.state = 1362; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { case 1: { - this.state = 1351; + this.state = 1361; this.systemTimePeriod(); } break; @@ -6157,14 +6164,14 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1354; + this.state = 1364; this.viewPath(); - this.state = 1356; + this.state = 1366; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1355; + this.state = 1365; this.systemTimePeriod(); } break; @@ -6174,36 +6181,14 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1358; + this.state = 1368; this.match(FlinkSqlParser.KW_LATERAL); - this.state = 1359; + this.state = 1369; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1360; + this.state = 1370; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1361; - this.functionName(); - this.state = 1362; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1363; - this.functionParam(); - this.state = 1368; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 520) { - { - { - this.state = 1364; - this.match(FlinkSqlParser.COMMA); - this.state = 1365; - this.functionParam(); - } - } - this.state = 1370; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } this.state = 1371; - this.match(FlinkSqlParser.RR_BRACKET); + this.functionCallExpression(); this.state = 1372; this.match(FlinkSqlParser.RR_BRACKET); } @@ -6459,7 +6444,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.state = 1435; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { @@ -6680,7 +6665,7 @@ export class FlinkSqlParser extends SQLParserBase { this.groupItemDefinition(); this.state = 1460; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 159, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { @@ -6694,7 +6679,7 @@ export class FlinkSqlParser extends SQLParserBase { } this.state = 1462; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 159, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); } } } @@ -6719,7 +6704,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.state = 1503; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { @@ -7038,7 +7023,7 @@ export class FlinkSqlParser extends SQLParserBase { this.namedWindow(); this.state = 1530; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 164, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 163, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { @@ -7052,7 +7037,7 @@ export class FlinkSqlParser extends SQLParserBase { } this.state = 1532; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 164, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 163, this.context); } } } @@ -7242,7 +7227,7 @@ export class FlinkSqlParser extends SQLParserBase { this.match(FlinkSqlParser.RR_BRACKET); this.state = 1578; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 175, this.context) ) { case 1: { this.state = 1575; @@ -7291,7 +7276,7 @@ export class FlinkSqlParser extends SQLParserBase { this.orderItemDefition(); this.state = 1587; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 176, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { @@ -7305,7 +7290,7 @@ export class FlinkSqlParser extends SQLParserBase { } this.state = 1589; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 176, this.context); } } } @@ -7334,7 +7319,7 @@ export class FlinkSqlParser extends SQLParserBase { this.columnName(); this.state = 1592; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 177, this.context) ) { case 1: { this.state = 1591; @@ -7352,7 +7337,7 @@ export class FlinkSqlParser extends SQLParserBase { } this.state = 1596; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 179, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 178, this.context) ) { case 1: { this.state = 1594; @@ -7591,7 +7576,7 @@ export class FlinkSqlParser extends SQLParserBase { this.match(FlinkSqlParser.KW_BY); this.state = 1607; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 180, this.context) ) { case 1: { this.state = 1605; @@ -7615,7 +7600,7 @@ export class FlinkSqlParser extends SQLParserBase { this.match(FlinkSqlParser.COMMA); this.state = 1612; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: { this.state = 1610; @@ -7657,7 +7642,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.state = 1635; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { @@ -7936,7 +7921,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.state = 1695; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 189, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { @@ -8216,7 +8201,7 @@ export class FlinkSqlParser extends SQLParserBase { { this.state = 1739; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { case 1: { localContext = new LogicalNotContext(localContext); @@ -8253,7 +8238,7 @@ export class FlinkSqlParser extends SQLParserBase { this.valueExpression(0); this.state = 1737; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 193, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 192, this.context) ) { case 1: { this.state = 1736; @@ -8267,7 +8252,7 @@ export class FlinkSqlParser extends SQLParserBase { this.context!.stop = this.tokenStream.LT(-1); this.state = 1755; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8277,7 +8262,7 @@ export class FlinkSqlParser extends SQLParserBase { { this.state = 1753; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 196, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); @@ -8345,7 +8330,7 @@ export class FlinkSqlParser extends SQLParserBase { } this.state = 1757; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 197, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); } } } @@ -8370,7 +8355,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.state = 1825; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { @@ -8583,7 +8568,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext._right = this.valueExpression(0); this.state = 1823; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 206, this.context) ) { case 1: { this.state = 1821; @@ -8618,7 +8603,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.state = 1856; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { @@ -8646,7 +8631,7 @@ export class FlinkSqlParser extends SQLParserBase { } this.state = 1845; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 210, this.context) ) { case 1: { this.state = 1832; @@ -8703,7 +8688,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext._pattern = this.valueExpression(0); this.state = 1854; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { case 1: { this.state = 1852; @@ -8752,7 +8737,7 @@ export class FlinkSqlParser extends SQLParserBase { { this.state = 1862; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: { localContext = new ValueExpressionDefaultContext(localContext); @@ -8786,7 +8771,7 @@ export class FlinkSqlParser extends SQLParserBase { this.context!.stop = this.tokenStream.LT(-1); this.state = 1885; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 217, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -8796,7 +8781,7 @@ export class FlinkSqlParser extends SQLParserBase { { this.state = 1883; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 216, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 215, this.context) ) { case 1: { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); @@ -8908,7 +8893,7 @@ export class FlinkSqlParser extends SQLParserBase { } this.state = 1887; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 217, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); } } } @@ -8926,6 +8911,227 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } + public functionCallExpression(): FunctionCallExpressionContext { + let localContext = new FunctionCallExpressionContext(this.context, this.state); + this.enterRule(localContext, 266, FlinkSqlParser.RULE_functionCallExpression); + let _la: number; + try { + this.state = 1907; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case FlinkSqlParser.KW_CURRENT_DATE: + case FlinkSqlParser.KW_CURRENT_TIME: + case FlinkSqlParser.KW_CURRENT_TIMESTAMP: + case FlinkSqlParser.KW_LOCALTIME: + case FlinkSqlParser.KW_LOCALTIMESTAMP: + this.enterOuterAlt(localContext, 1); + { + this.state = 1888; + this.reservedKeywordsNoParamsUsedAsFuncName(); + } + break; + case FlinkSqlParser.KW_DATE: + case FlinkSqlParser.KW_INTERVAL: + case FlinkSqlParser.KW_TIME: + case FlinkSqlParser.KW_TIMESTAMP: + this.enterOuterAlt(localContext, 2); + { + this.state = 1889; + this.functionNameAndParams(); + } + break; + case FlinkSqlParser.KW_ABS: + case FlinkSqlParser.KW_ARRAY: + case FlinkSqlParser.KW_AVG: + case FlinkSqlParser.KW_CARDINALITY: + 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_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_FIRST_VALUE: + case FlinkSqlParser.KW_FLOOR: + case FlinkSqlParser.KW_GROUPING: + case FlinkSqlParser.KW_HOUR: + case FlinkSqlParser.KW_IF: + case FlinkSqlParser.KW_LAG: + case FlinkSqlParser.KW_LAST_VALUE: + case FlinkSqlParser.KW_LEAD: + case FlinkSqlParser.KW_LEFT: + case FlinkSqlParser.KW_LN: + 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_NTILE: + 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_TIMESTAMP_DIFF: + case FlinkSqlParser.KW_TRIM: + 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.STRING_LITERAL: + case FlinkSqlParser.DIG_LITERAL: + case FlinkSqlParser.ID_LITERAL: + this.enterOuterAlt(localContext, 3); + { + this.state = 1890; + this.functionNameWithParams(); + this.state = 1891; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1903; + 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)) & 244224001) !== 0) || ((((_la - 214)) & ~0x1F) === 0 && ((1 << (_la - 214)) & 3892347713) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 537530369) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 131185) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 14681219) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 3238528833) !== 0) || ((((_la - 427)) & ~0x1F) === 0 && ((1 << (_la - 427)) & 4294966785) !== 0) || ((((_la - 459)) & ~0x1F) === 0 && ((1 << (_la - 459)) & 4294967295) !== 0) || ((((_la - 491)) & ~0x1F) === 0 && ((1 << (_la - 491)) & 33832959) !== 0) || ((((_la - 527)) & ~0x1F) === 0 && ((1 << (_la - 527)) & 31757) !== 0)) { + { + this.state = 1893; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 217, this.context) ) { + case 1: + { + this.state = 1892; + this.setQuantifier(); + } + break; + } + this.state = 1895; + this.functionParam(); + this.state = 1900; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 520) { + { + { + this.state = 1896; + this.match(FlinkSqlParser.COMMA); + this.state = 1897; + this.functionParam(); + } + } + this.state = 1902; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + } + } + + this.state = 1905; + this.match(FlinkSqlParser.RR_BRACKET); + } + 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 primaryExpression(): PrimaryExpressionContext; public primaryExpression(_p: number): PrimaryExpressionContext; @@ -8938,14 +9144,14 @@ export class FlinkSqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PrimaryExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 266; - this.enterRecursionRule(localContext, 266, FlinkSqlParser.RULE_primaryExpression, _p); + let _startState = 268; + this.enterRecursionRule(localContext, 268, FlinkSqlParser.RULE_primaryExpression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1980; + this.state = 1984; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { case 1: @@ -8954,35 +9160,35 @@ export class FlinkSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1889; + this.state = 1910; this.match(FlinkSqlParser.KW_CASE); - this.state = 1891; + this.state = 1912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1890; + this.state = 1911; this.whenClause(); } } - this.state = 1893; + this.state = 1914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 428); - this.state = 1897; + this.state = 1918; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1895; + this.state = 1916; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1896; + this.state = 1917; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 1899; + this.state = 1920; this.match(FlinkSqlParser.KW_END); } break; @@ -8991,37 +9197,37 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1901; + this.state = 1922; this.match(FlinkSqlParser.KW_CASE); - this.state = 1902; + this.state = 1923; (localContext as SimpleCaseContext)._value = this.expression(); - this.state = 1904; + this.state = 1925; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1903; + this.state = 1924; this.whenClause(); } } - this.state = 1906; + this.state = 1927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 428); - this.state = 1910; + this.state = 1931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 1908; + this.state = 1929; this.match(FlinkSqlParser.KW_ELSE); - this.state = 1909; + this.state = 1930; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 1912; + this.state = 1933; this.match(FlinkSqlParser.KW_END); } break; @@ -9030,17 +9236,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1914; + this.state = 1935; this.match(FlinkSqlParser.KW_CAST); - this.state = 1915; + this.state = 1936; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1916; + this.state = 1937; this.expression(); - this.state = 1917; + this.state = 1938; this.match(FlinkSqlParser.KW_AS); - this.state = 1918; + this.state = 1939; this.columnType(); - this.state = 1919; + this.state = 1940; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9049,25 +9255,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FirstContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1921; + this.state = 1942; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1922; + this.state = 1943; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1923; + this.state = 1944; this.expression(); - this.state = 1926; + this.state = 1947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 461) { { - this.state = 1924; + this.state = 1945; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1925; + this.state = 1946; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1928; + this.state = 1949; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9076,25 +9282,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1930; + this.state = 1951; this.match(FlinkSqlParser.KW_LAST); - this.state = 1931; + this.state = 1952; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1932; + this.state = 1953; this.expression(); - this.state = 1935; + this.state = 1956; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 461) { { - this.state = 1933; + this.state = 1954; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 1934; + this.state = 1955; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 1937; + this.state = 1958; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9103,17 +9309,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1939; + this.state = 1960; this.match(FlinkSqlParser.KW_POSITION); - this.state = 1940; + this.state = 1961; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1941; + this.state = 1962; (localContext as PositionContext)._substr = this.valueExpression(0); - this.state = 1942; + this.state = 1963; this.match(FlinkSqlParser.KW_IN); - this.state = 1943; + this.state = 1964; (localContext as PositionContext)._str = this.valueExpression(0); - this.state = 1944; + this.state = 1965; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9122,7 +9328,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ConstantDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1946; + this.state = 1967; this.constant(); } break; @@ -9131,7 +9337,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1947; + this.state = 1968; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9140,11 +9346,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1948; + this.state = 1969; this.uid(); - this.state = 1949; + this.state = 1970; this.match(FlinkSqlParser.DOT); - this.state = 1950; + this.state = 1971; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9153,11 +9359,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1952; + this.state = 1973; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1953; + this.state = 1974; this.queryStatement(0); - this.state = 1954; + this.state = 1975; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9166,48 +9372,8 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1956; - this.functionName(); - this.state = 1957; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1969; - 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)) & 244224001) !== 0) || ((((_la - 214)) & ~0x1F) === 0 && ((1 << (_la - 214)) & 3892347713) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 537530369) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 131185) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 14681219) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 3238528833) !== 0) || ((((_la - 427)) & ~0x1F) === 0 && ((1 << (_la - 427)) & 4294966785) !== 0) || ((((_la - 459)) & ~0x1F) === 0 && ((1 << (_la - 459)) & 4294967295) !== 0) || ((((_la - 491)) & ~0x1F) === 0 && ((1 << (_la - 491)) & 33832959) !== 0) || ((((_la - 527)) & ~0x1F) === 0 && ((1 << (_la - 527)) & 31757) !== 0)) { - { - this.state = 1959; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 224, this.context) ) { - case 1: - { - this.state = 1958; - this.setQuantifier(); - } - break; - } - this.state = 1961; - this.functionParam(); - this.state = 1966; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 520) { - { - { - this.state = 1962; - this.match(FlinkSqlParser.COMMA); - this.state = 1963; - this.functionParam(); - } - } - this.state = 1968; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - } - } - - this.state = 1971; - this.match(FlinkSqlParser.RR_BRACKET); + this.state = 1977; + this.functionCallExpression(); } break; case 12: @@ -9215,7 +9381,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1973; + this.state = 1978; this.identifier(); } break; @@ -9224,7 +9390,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new DereferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1974; + this.state = 1979; this.dereferenceDefinition(); } break; @@ -9233,26 +9399,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1975; + this.state = 1980; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1976; + this.state = 1981; this.expression(); - this.state = 1977; + this.state = 1982; this.match(FlinkSqlParser.RR_BRACKET); } break; - case 15: - { - localContext = new DateFunctionExpressionContext(localContext); - this.context = localContext; - previousContext = localContext; - this.state = 1979; - this.match(FlinkSqlParser.KW_CURRENT_TIMESTAMP); - } - break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1989; + this.state = 1993; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -9266,20 +9423,20 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_primaryExpression); - this.state = 1982; - if (!(this.precpred(this.context, 5))) { - throw this.createFailedPredicateException("this.precpred(this.context, 5)"); + this.state = 1986; + if (!(this.precpred(this.context, 4))) { + throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1983; + this.state = 1987; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 1984; + this.state = 1988; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 1985; + this.state = 1989; this.match(FlinkSqlParser.RS_BRACKET); } } } - this.state = 1991; + this.state = 1995; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 228, this.context); } @@ -9301,11 +9458,11 @@ export class FlinkSqlParser extends SQLParserBase { } public functionNameCreate(): FunctionNameCreateContext { let localContext = new FunctionNameCreateContext(this.context, this.state); - this.enterRule(localContext, 268, FlinkSqlParser.RULE_functionNameCreate); + this.enterRule(localContext, 270, FlinkSqlParser.RULE_functionNameCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 1992; + this.state = 1996; this.uid(); } } @@ -9323,24 +9480,118 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } - public functionName(): FunctionNameContext { - let localContext = new FunctionNameContext(this.context, this.state); - this.enterRule(localContext, 270, FlinkSqlParser.RULE_functionName); + public functionName(): FunctionNameContext { + let localContext = new FunctionNameContext(this.context, this.state); + this.enterRule(localContext, 272, FlinkSqlParser.RULE_functionName); + try { + this.state = 2002; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 1998; + this.reservedKeywordsUsedAsFuncName(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 1999; + this.reservedKeywordsNoParamsUsedAsFuncName(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 2000; + this.reservedKeywordsFollowParamsUsedAsFuncName(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 2001; + 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, 274, FlinkSqlParser.RULE_functionNameAndParams); + try { + this.state = 2008; + 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 = 2004; + this.reservedKeywordsFollowParamsUsedAsFuncName(); + this.state = 2005; + this.match(FlinkSqlParser.STRING_LITERAL); + } + break; + case FlinkSqlParser.KW_INTERVAL: + this.enterOuterAlt(localContext, 2); + { + this.state = 2007; + 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, 276, FlinkSqlParser.RULE_functionNameWithParams); try { - this.state = 1996; + this.state = 2012; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1994; + this.state = 2010; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1995; + this.state = 2011; this.uid(); } break; @@ -9362,36 +9613,36 @@ export class FlinkSqlParser extends SQLParserBase { } public functionParam(): FunctionParamContext { let localContext = new FunctionParamContext(this.context, this.state); - this.enterRule(localContext, 272, FlinkSqlParser.RULE_functionParam); + this.enterRule(localContext, 278, FlinkSqlParser.RULE_functionParam); try { - this.state = 2002; + this.state = 2018; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1998; + this.state = 2014; this.reservedKeywordsUsedAsFuncParam(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1999; + this.state = 2015; this.timeIntervalUnit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2000; + this.state = 2016; this.timePointUnit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2001; + this.state = 2017; this.expression(); } break; @@ -9413,11 +9664,11 @@ export class FlinkSqlParser extends SQLParserBase { } public dereferenceDefinition(): DereferenceDefinitionContext { let localContext = new DereferenceDefinitionContext(this.context, this.state); - this.enterRule(localContext, 274, FlinkSqlParser.RULE_dereferenceDefinition); + this.enterRule(localContext, 280, FlinkSqlParser.RULE_dereferenceDefinition); try { this.enterOuterAlt(localContext, 1); { - this.state = 2004; + this.state = 2020; this.uid(); } } @@ -9437,11 +9688,11 @@ export class FlinkSqlParser extends SQLParserBase { } public correlationName(): CorrelationNameContext { let localContext = new CorrelationNameContext(this.context, this.state); - this.enterRule(localContext, 276, FlinkSqlParser.RULE_correlationName); + this.enterRule(localContext, 282, FlinkSqlParser.RULE_correlationName); try { this.enterOuterAlt(localContext, 1); { - this.state = 2006; + this.state = 2022; this.identifier(); } } @@ -9461,22 +9712,22 @@ export class FlinkSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 278, FlinkSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 284, FlinkSqlParser.RULE_qualifiedName); try { - this.state = 2010; + this.state = 2026; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2008; + this.state = 2024; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2009; + this.state = 2025; this.dereferenceDefinition(); } break; @@ -9498,24 +9749,24 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalExpression(): TimeIntervalExpressionContext { let localContext = new TimeIntervalExpressionContext(this.context, this.state); - this.enterRule(localContext, 280, FlinkSqlParser.RULE_timeIntervalExpression); + this.enterRule(localContext, 286, FlinkSqlParser.RULE_timeIntervalExpression); try { this.enterOuterAlt(localContext, 1); { - this.state = 2012; + this.state = 2028; this.match(FlinkSqlParser.KW_INTERVAL); - this.state = 2015; + this.state = 2031; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 234, this.context) ) { case 1: { - this.state = 2013; + this.state = 2029; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 2014; + this.state = 2030; this.errorCapturingUnitToUnitInterval(); } break; @@ -9538,18 +9789,18 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingMultiUnitsInterval(): ErrorCapturingMultiUnitsIntervalContext { let localContext = new ErrorCapturingMultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 282, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localContext, 288, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2017; + this.state = 2033; this.multiUnitsInterval(); - this.state = 2019; + this.state = 2035; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 233, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: { - this.state = 2018; + this.state = 2034; this.unitToUnitInterval(); } break; @@ -9572,12 +9823,12 @@ export class FlinkSqlParser extends SQLParserBase { } public multiUnitsInterval(): MultiUnitsIntervalContext { let localContext = new MultiUnitsIntervalContext(this.context, this.state); - this.enterRule(localContext, 284, FlinkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localContext, 290, FlinkSqlParser.RULE_multiUnitsInterval); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2024; + this.state = 2040; this.errorHandler.sync(this); alternative = 1; do { @@ -9585,9 +9836,9 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 2021; + this.state = 2037; this.intervalValue(); - this.state = 2022; + this.state = 2038; this.timeIntervalUnit(); } } @@ -9595,9 +9846,9 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2026; + this.state = 2042; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 234, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 236, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -9617,24 +9868,24 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingUnitToUnitInterval(): ErrorCapturingUnitToUnitIntervalContext { let localContext = new ErrorCapturingUnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 286, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localContext, 292, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2028; + this.state = 2044; localContext._body = this.unitToUnitInterval(); - this.state = 2031; + this.state = 2047; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: { - this.state = 2029; + this.state = 2045; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 2030; + this.state = 2046; localContext._error2 = this.unitToUnitInterval(); } break; @@ -9657,17 +9908,17 @@ export class FlinkSqlParser extends SQLParserBase { } public unitToUnitInterval(): UnitToUnitIntervalContext { let localContext = new UnitToUnitIntervalContext(this.context, this.state); - this.enterRule(localContext, 288, FlinkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localContext, 294, FlinkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localContext, 1); { - this.state = 2033; + this.state = 2049; localContext._value = this.intervalValue(); - this.state = 2034; + this.state = 2050; localContext._from_ = this.timeIntervalUnit(); - this.state = 2035; + this.state = 2051; this.match(FlinkSqlParser.KW_TO); - this.state = 2036; + this.state = 2052; localContext._to = this.timeIntervalUnit(); } } @@ -9687,10 +9938,10 @@ export class FlinkSqlParser extends SQLParserBase { } public intervalValue(): IntervalValueContext { let localContext = new IntervalValueContext(this.context, this.state); - this.enterRule(localContext, 290, FlinkSqlParser.RULE_intervalValue); + this.enterRule(localContext, 296, FlinkSqlParser.RULE_intervalValue); let _la: number; try { - this.state = 2043; + this.state = 2059; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.HYPNEN_SIGN: @@ -9699,12 +9950,12 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2039; + this.state = 2055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 529 || _la === 530) { { - this.state = 2038; + this.state = 2054; _la = this.tokenStream.LA(1); if(!(_la === 529 || _la === 530)) { this.errorHandler.recoverInline(this); @@ -9716,7 +9967,7 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 2041; + this.state = 2057; _la = this.tokenStream.LA(1); if(!(_la === 538 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -9730,7 +9981,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2042; + this.state = 2058; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -9754,29 +10005,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableAlias(): TableAliasContext { let localContext = new TableAliasContext(this.context, this.state); - this.enterRule(localContext, 292, FlinkSqlParser.RULE_tableAlias); + this.enterRule(localContext, 298, FlinkSqlParser.RULE_tableAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2046; + this.state = 2062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2045; + this.state = 2061; this.match(FlinkSqlParser.KW_AS); } } - this.state = 2048; + this.state = 2064; localContext._alias = this.identifier(); - this.state = 2050; + this.state = 2066; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 2049; + this.state = 2065; this.identifierList(); } break; @@ -9799,13 +10050,13 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifier(): ErrorCapturingIdentifierContext { let localContext = new ErrorCapturingIdentifierContext(this.context, this.state); - this.enterRule(localContext, 294, FlinkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localContext, 300, FlinkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2052; + this.state = 2068; this.identifier(); - this.state = 2053; + this.state = 2069; this.errorCapturingIdentifierExtra(); } } @@ -9825,29 +10076,29 @@ export class FlinkSqlParser extends SQLParserBase { } public errorCapturingIdentifierExtra(): ErrorCapturingIdentifierExtraContext { let localContext = new ErrorCapturingIdentifierExtraContext(this.context, this.state); - this.enterRule(localContext, 296, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localContext, 302, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); let _la: number; try { - this.state = 2062; + this.state = 2078; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_MINUS: localContext = new ErrorIdentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2057; + this.state = 2073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2055; + this.state = 2071; this.match(FlinkSqlParser.KW_MINUS); - this.state = 2056; + this.state = 2072; this.identifier(); } } - this.state = 2059; + this.state = 2075; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 221); @@ -9881,15 +10132,15 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierList(): IdentifierListContext { let localContext = new IdentifierListContext(this.context, this.state); - this.enterRule(localContext, 298, FlinkSqlParser.RULE_identifierList); + this.enterRule(localContext, 304, FlinkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localContext, 1); { - this.state = 2064; + this.state = 2080; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2065; + this.state = 2081; this.identifierSeq(); - this.state = 2066; + this.state = 2082; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -9909,26 +10160,26 @@ export class FlinkSqlParser extends SQLParserBase { } public identifierSeq(): IdentifierSeqContext { let localContext = new IdentifierSeqContext(this.context, this.state); - this.enterRule(localContext, 300, FlinkSqlParser.RULE_identifierSeq); + this.enterRule(localContext, 306, FlinkSqlParser.RULE_identifierSeq); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2068; + this.state = 2084; this.identifier(); - this.state = 2073; + this.state = 2089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 2069; + this.state = 2085; this.match(FlinkSqlParser.COMMA); - this.state = 2070; + this.state = 2086; this.identifier(); } } - this.state = 2075; + this.state = 2091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9950,9 +10201,9 @@ export class FlinkSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 302, FlinkSqlParser.RULE_identifier); + this.enterRule(localContext, 308, FlinkSqlParser.RULE_identifier); try { - this.state = 2079; + this.state = 2095; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: @@ -9960,7 +10211,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2076; + this.state = 2092; this.unquotedIdentifier(); } break; @@ -9968,7 +10219,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QuotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2077; + this.state = 2093; this.quotedIdentifier(); } break; @@ -10043,7 +10294,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new NonReservedKeywordsAlternativeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2078; + this.state = 2094; this.nonReservedKeywords(); } break; @@ -10067,12 +10318,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unquotedIdentifier(): UnquotedIdentifierContext { let localContext = new UnquotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 304, FlinkSqlParser.RULE_unquotedIdentifier); + this.enterRule(localContext, 310, FlinkSqlParser.RULE_unquotedIdentifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2081; + this.state = 2097; _la = this.tokenStream.LA(1); if(!(_la === 538 || _la === 541)) { this.errorHandler.recoverInline(this); @@ -10099,11 +10350,11 @@ export class FlinkSqlParser extends SQLParserBase { } public quotedIdentifier(): QuotedIdentifierContext { let localContext = new QuotedIdentifierContext(this.context, this.state); - this.enterRule(localContext, 306, FlinkSqlParser.RULE_quotedIdentifier); + this.enterRule(localContext, 312, FlinkSqlParser.RULE_quotedIdentifier); try { this.enterOuterAlt(localContext, 1); { - this.state = 2083; + this.state = 2099; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -10123,17 +10374,17 @@ export class FlinkSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 308, FlinkSqlParser.RULE_whenClause); + this.enterRule(localContext, 314, FlinkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2085; + this.state = 2101; this.match(FlinkSqlParser.KW_WHEN); - this.state = 2086; + this.state = 2102; localContext._condition = this.expression(); - this.state = 2087; + this.state = 2103; this.match(FlinkSqlParser.KW_THEN); - this.state = 2088; + this.state = 2104; localContext._result = this.expression(); } } @@ -10153,11 +10404,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPath(): CatalogPathContext { let localContext = new CatalogPathContext(this.context, this.state); - this.enterRule(localContext, 310, FlinkSqlParser.RULE_catalogPath); + this.enterRule(localContext, 316, FlinkSqlParser.RULE_catalogPath); try { this.enterOuterAlt(localContext, 1); { - this.state = 2090; + this.state = 2106; this.identifier(); } } @@ -10177,11 +10428,11 @@ export class FlinkSqlParser extends SQLParserBase { } public catalogPathCreate(): CatalogPathCreateContext { let localContext = new CatalogPathCreateContext(this.context, this.state); - this.enterRule(localContext, 312, FlinkSqlParser.RULE_catalogPathCreate); + this.enterRule(localContext, 318, FlinkSqlParser.RULE_catalogPathCreate); try { this.enterOuterAlt(localContext, 1); { - this.state = 2092; + this.state = 2108; this.identifier(); } } @@ -10201,21 +10452,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePath(): DatabasePathContext { let localContext = new DatabasePathContext(this.context, this.state); - this.enterRule(localContext, 314, FlinkSqlParser.RULE_databasePath); + this.enterRule(localContext, 320, FlinkSqlParser.RULE_databasePath); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2094; + this.state = 2110; this.identifier(); - this.state = 2097; + this.state = 2113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2095; + this.state = 2111; this.match(FlinkSqlParser.DOT); - this.state = 2096; + this.state = 2112; this.identifier(); } } @@ -10238,21 +10489,21 @@ export class FlinkSqlParser extends SQLParserBase { } public databasePathCreate(): DatabasePathCreateContext { let localContext = new DatabasePathCreateContext(this.context, this.state); - this.enterRule(localContext, 316, FlinkSqlParser.RULE_databasePathCreate); + this.enterRule(localContext, 322, FlinkSqlParser.RULE_databasePathCreate); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2099; + this.state = 2115; this.identifier(); - this.state = 2102; + this.state = 2118; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2100; + this.state = 2116; this.match(FlinkSqlParser.DOT); - this.state = 2101; + this.state = 2117; this.identifier(); } } @@ -10275,25 +10526,25 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePathCreate(): TablePathCreateContext { let localContext = new TablePathCreateContext(this.context, this.state); - this.enterRule(localContext, 318, FlinkSqlParser.RULE_tablePathCreate); + this.enterRule(localContext, 324, FlinkSqlParser.RULE_tablePathCreate); let _la: number; try { - this.state = 2116; + this.state = 2132; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2104; + this.state = 2120; this.identifier(); - this.state = 2107; + this.state = 2123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2105; + this.state = 2121; this.match(FlinkSqlParser.DOT); - this.state = 2106; + this.state = 2122; this.identifier(); } } @@ -10303,20 +10554,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2109; + this.state = 2125; this.identifier(); - this.state = 2110; + this.state = 2126; this.match(FlinkSqlParser.DOT); - this.state = 2111; + this.state = 2127; this.identifier(); - this.state = 2114; + this.state = 2130; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2112; + this.state = 2128; this.match(FlinkSqlParser.DOT); - this.state = 2113; + this.state = 2129; this.identifier(); } } @@ -10341,24 +10592,24 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePath(): TablePathContext { let localContext = new TablePathContext(this.context, this.state); - this.enterRule(localContext, 320, FlinkSqlParser.RULE_tablePath); + this.enterRule(localContext, 326, FlinkSqlParser.RULE_tablePath); try { - this.state = 2130; + this.state = 2146; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2118; + this.state = 2134; this.identifier(); - this.state = 2121; + this.state = 2137; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 251, this.context) ) { case 1: { - this.state = 2119; + this.state = 2135; this.match(FlinkSqlParser.DOT); - this.state = 2120; + this.state = 2136; this.identifier(); } break; @@ -10368,20 +10619,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2123; + this.state = 2139; this.identifier(); - this.state = 2124; + this.state = 2140; this.match(FlinkSqlParser.DOT); - this.state = 2125; + this.state = 2141; this.identifier(); - this.state = 2128; + this.state = 2144; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2126; + this.state = 2142; this.match(FlinkSqlParser.DOT); - this.state = 2127; + this.state = 2143; this.identifier(); } break; @@ -10406,24 +10657,24 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPath(): ViewPathContext { let localContext = new ViewPathContext(this.context, this.state); - this.enterRule(localContext, 322, FlinkSqlParser.RULE_viewPath); + this.enterRule(localContext, 328, FlinkSqlParser.RULE_viewPath); try { - this.state = 2144; + this.state = 2160; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2132; + this.state = 2148; this.identifier(); - this.state = 2135; + this.state = 2151; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: { - this.state = 2133; + this.state = 2149; this.match(FlinkSqlParser.DOT); - this.state = 2134; + this.state = 2150; this.identifier(); } break; @@ -10433,20 +10684,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2137; + this.state = 2153; this.identifier(); - this.state = 2138; + this.state = 2154; this.match(FlinkSqlParser.DOT); - this.state = 2139; + this.state = 2155; this.identifier(); - this.state = 2142; + this.state = 2158; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: { - this.state = 2140; + this.state = 2156; this.match(FlinkSqlParser.DOT); - this.state = 2141; + this.state = 2157; this.identifier(); } break; @@ -10471,25 +10722,25 @@ export class FlinkSqlParser extends SQLParserBase { } public viewPathCreate(): ViewPathCreateContext { let localContext = new ViewPathCreateContext(this.context, this.state); - this.enterRule(localContext, 324, FlinkSqlParser.RULE_viewPathCreate); + this.enterRule(localContext, 330, FlinkSqlParser.RULE_viewPathCreate); let _la: number; try { - this.state = 2158; + this.state = 2174; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2146; + this.state = 2162; this.identifier(); - this.state = 2149; + this.state = 2165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2147; + this.state = 2163; this.match(FlinkSqlParser.DOT); - this.state = 2148; + this.state = 2164; this.identifier(); } } @@ -10499,20 +10750,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2151; + this.state = 2167; this.identifier(); - this.state = 2152; + this.state = 2168; this.match(FlinkSqlParser.DOT); - this.state = 2153; + this.state = 2169; this.identifier(); - this.state = 2156; + this.state = 2172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 2154; + this.state = 2170; this.match(FlinkSqlParser.DOT); - this.state = 2155; + this.state = 2171; this.identifier(); } } @@ -10537,30 +10788,30 @@ export class FlinkSqlParser extends SQLParserBase { } public uid(): UidContext { let localContext = new UidContext(this.context, this.state); - this.enterRule(localContext, 326, FlinkSqlParser.RULE_uid); + this.enterRule(localContext, 332, FlinkSqlParser.RULE_uid); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2160; + this.state = 2176; this.identifier(); - this.state = 2165; + this.state = 2181; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 258, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 260, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 2161; + this.state = 2177; this.match(FlinkSqlParser.DOT); - this.state = 2162; + this.state = 2178; this.identifier(); } } } - this.state = 2167; + this.state = 2183; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 258, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 260, this.context); } } } @@ -10580,13 +10831,13 @@ export class FlinkSqlParser extends SQLParserBase { } public withOption(): WithOptionContext { let localContext = new WithOptionContext(this.context, this.state); - this.enterRule(localContext, 328, FlinkSqlParser.RULE_withOption); + this.enterRule(localContext, 334, FlinkSqlParser.RULE_withOption); try { this.enterOuterAlt(localContext, 1); { - this.state = 2168; + this.state = 2184; this.match(FlinkSqlParser.KW_WITH); - this.state = 2169; + this.state = 2185; this.tablePropertyList(); } } @@ -10606,15 +10857,15 @@ export class FlinkSqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 330, FlinkSqlParser.RULE_ifNotExists); + this.enterRule(localContext, 336, FlinkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2171; + this.state = 2187; this.match(FlinkSqlParser.KW_IF); - this.state = 2172; + this.state = 2188; this.match(FlinkSqlParser.KW_NOT); - this.state = 2173; + this.state = 2189; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10634,13 +10885,13 @@ export class FlinkSqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 332, FlinkSqlParser.RULE_ifExists); + this.enterRule(localContext, 338, FlinkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 2175; + this.state = 2191; this.match(FlinkSqlParser.KW_IF); - this.state = 2176; + this.state = 2192; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -10660,32 +10911,32 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyList(): TablePropertyListContext { let localContext = new TablePropertyListContext(this.context, this.state); - this.enterRule(localContext, 334, FlinkSqlParser.RULE_tablePropertyList); + this.enterRule(localContext, 340, FlinkSqlParser.RULE_tablePropertyList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2178; + this.state = 2194; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2179; + this.state = 2195; this.tableProperty(); - this.state = 2184; + this.state = 2200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 520) { { { - this.state = 2180; + this.state = 2196; this.match(FlinkSqlParser.COMMA); - this.state = 2181; + this.state = 2197; this.tableProperty(); } } - this.state = 2186; + this.state = 2202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2187; + this.state = 2203; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -10705,29 +10956,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tableProperty(): TablePropertyContext { let localContext = new TablePropertyContext(this.context, this.state); - this.enterRule(localContext, 336, FlinkSqlParser.RULE_tableProperty); + this.enterRule(localContext, 342, FlinkSqlParser.RULE_tableProperty); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2189; + this.state = 2205; localContext._key = this.tablePropertyKey(); - this.state = 2194; + this.state = 2210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 140 || _la === 397 || _la === 505 || ((((_la - 537)) & ~0x1F) === 0 && ((1 << (_la - 537)) & 7) !== 0)) { { - this.state = 2191; + this.state = 2207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 505) { { - this.state = 2190; + this.state = 2206; this.match(FlinkSqlParser.EQUAL_SYMBOL); } } - this.state = 2193; + this.state = 2209; localContext._value = this.tablePropertyValue(); } } @@ -10750,29 +11001,29 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyKey(): TablePropertyKeyContext { let localContext = new TablePropertyKeyContext(this.context, this.state); - this.enterRule(localContext, 338, FlinkSqlParser.RULE_tablePropertyKey); + this.enterRule(localContext, 344, FlinkSqlParser.RULE_tablePropertyKey); try { - this.state = 2199; + this.state = 2215; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 264, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2196; + this.state = 2212; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2197; + this.state = 2213; this.dereferenceDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2198; + this.state = 2214; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10794,22 +11045,22 @@ export class FlinkSqlParser extends SQLParserBase { } public tablePropertyValue(): TablePropertyValueContext { let localContext = new TablePropertyValueContext(this.context, this.state); - this.enterRule(localContext, 340, FlinkSqlParser.RULE_tablePropertyValue); + this.enterRule(localContext, 346, FlinkSqlParser.RULE_tablePropertyValue); try { - this.state = 2205; + this.state = 2221; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2201; + this.state = 2217; this.match(FlinkSqlParser.DIG_LITERAL); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2202; + this.state = 2218; this.match(FlinkSqlParser.REAL_LITERAL); } break; @@ -10817,14 +11068,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 2203; + this.state = 2219; this.booleanLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2204; + this.state = 2220; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10848,40 +11099,40 @@ export class FlinkSqlParser extends SQLParserBase { } public logicalOperator(): LogicalOperatorContext { let localContext = new LogicalOperatorContext(this.context, this.state); - this.enterRule(localContext, 342, FlinkSqlParser.RULE_logicalOperator); + this.enterRule(localContext, 348, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 2213; + this.state = 2229; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 2207; + this.state = 2223; this.match(FlinkSqlParser.KW_AND); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 2208; + this.state = 2224; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 2209; + this.state = 2225; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.KW_OR: this.enterOuterAlt(localContext, 3); { - this.state = 2210; + this.state = 2226; this.match(FlinkSqlParser.KW_OR); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2211; + this.state = 2227; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 2212; + this.state = 2228; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -10905,76 +11156,76 @@ export class FlinkSqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 344, FlinkSqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 350, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 2229; + this.state = 2245; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2215; + this.state = 2231; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2216; + this.state = 2232; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2217; + this.state = 2233; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2218; + this.state = 2234; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2219; + this.state = 2235; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2220; + this.state = 2236; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2221; + this.state = 2237; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2222; + this.state = 2238; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2223; + this.state = 2239; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2224; + this.state = 2240; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 2225; + this.state = 2241; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2226; + this.state = 2242; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2227; + this.state = 2243; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 2228; + this.state = 2244; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; @@ -10996,47 +11247,47 @@ export class FlinkSqlParser extends SQLParserBase { } public bitOperator(): BitOperatorContext { let localContext = new BitOperatorContext(this.context, this.state); - this.enterRule(localContext, 346, FlinkSqlParser.RULE_bitOperator); + this.enterRule(localContext, 352, FlinkSqlParser.RULE_bitOperator); try { - this.state = 2238; + this.state = 2254; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 2231; + this.state = 2247; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2232; + this.state = 2248; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case FlinkSqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 2233; + this.state = 2249; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2234; + this.state = 2250; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 2235; + this.state = 2251; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2236; + this.state = 2252; this.match(FlinkSqlParser.BIT_XOR_OP); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 2237; + this.state = 2253; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11060,12 +11311,12 @@ export class FlinkSqlParser extends SQLParserBase { } public mathOperator(): MathOperatorContext { let localContext = new MathOperatorContext(this.context, this.state); - this.enterRule(localContext, 348, FlinkSqlParser.RULE_mathOperator); + this.enterRule(localContext, 354, FlinkSqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2240; + this.state = 2256; _la = this.tokenStream.LA(1); if(!(_la === 452 || ((((_la - 527)) & ~0x1F) === 0 && ((1 << (_la - 527)) & 221) !== 0))) { this.errorHandler.recoverInline(this); @@ -11092,12 +11343,12 @@ export class FlinkSqlParser extends SQLParserBase { } public unaryOperator(): UnaryOperatorContext { let localContext = new UnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 350, FlinkSqlParser.RULE_unaryOperator); + this.enterRule(localContext, 356, FlinkSqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2242; + this.state = 2258; _la = this.tokenStream.LA(1); if(!(_la === 241 || ((((_la - 508)) & ~0x1F) === 0 && ((1 << (_la - 508)) & 6291459) !== 0))) { this.errorHandler.recoverInline(this); @@ -11124,16 +11375,16 @@ export class FlinkSqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 352, FlinkSqlParser.RULE_constant); + this.enterRule(localContext, 358, FlinkSqlParser.RULE_constant); let _la: number; try { - this.state = 2258; + this.state = 2274; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 1); { - this.state = 2244; + this.state = 2260; this.timeIntervalExpression(); } break; @@ -11149,14 +11400,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_WEEK: this.enterOuterAlt(localContext, 2); { - this.state = 2245; + this.state = 2261; this.timePointLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 2246; + this.state = 2262; this.stringLiteral(); } break; @@ -11164,17 +11415,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2248; + this.state = 2264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 529) { { - this.state = 2247; + this.state = 2263; this.match(FlinkSqlParser.HYPNEN_SIGN); } } - this.state = 2250; + this.state = 2266; this.decimalLiteral(); } break; @@ -11182,21 +11433,21 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 5); { - this.state = 2251; + this.state = 2267; this.booleanLiteral(); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 6); { - this.state = 2252; + this.state = 2268; this.match(FlinkSqlParser.REAL_LITERAL); } break; case FlinkSqlParser.BIT_STRING: this.enterOuterAlt(localContext, 7); { - this.state = 2253; + this.state = 2269; this.match(FlinkSqlParser.BIT_STRING); } break; @@ -11204,17 +11455,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 8); { - this.state = 2255; + this.state = 2271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 241) { { - this.state = 2254; + this.state = 2270; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 2257; + this.state = 2273; this.match(FlinkSqlParser.KW_NULL); } break; @@ -11238,13 +11489,13 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointLiteral(): TimePointLiteralContext { let localContext = new TimePointLiteralContext(this.context, this.state); - this.enterRule(localContext, 354, FlinkSqlParser.RULE_timePointLiteral); + this.enterRule(localContext, 360, FlinkSqlParser.RULE_timePointLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2260; + this.state = 2276; this.timePointUnit(); - this.state = 2261; + this.state = 2277; this.stringLiteral(); } } @@ -11264,11 +11515,11 @@ export class FlinkSqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 356, FlinkSqlParser.RULE_stringLiteral); + this.enterRule(localContext, 362, FlinkSqlParser.RULE_stringLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2263; + this.state = 2279; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -11288,11 +11539,11 @@ export class FlinkSqlParser extends SQLParserBase { } public decimalLiteral(): DecimalLiteralContext { let localContext = new DecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 358, FlinkSqlParser.RULE_decimalLiteral); + this.enterRule(localContext, 364, FlinkSqlParser.RULE_decimalLiteral); try { this.enterOuterAlt(localContext, 1); { - this.state = 2265; + this.state = 2281; this.match(FlinkSqlParser.DIG_LITERAL); } } @@ -11312,12 +11563,12 @@ export class FlinkSqlParser extends SQLParserBase { } public booleanLiteral(): BooleanLiteralContext { let localContext = new BooleanLiteralContext(this.context, this.state); - this.enterRule(localContext, 360, FlinkSqlParser.RULE_booleanLiteral); + this.enterRule(localContext, 366, FlinkSqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2267; + this.state = 2283; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 397)) { this.errorHandler.recoverInline(this); @@ -11344,12 +11595,12 @@ export class FlinkSqlParser extends SQLParserBase { } public setQuantifier(): SetQuantifierContext { let localContext = new SetQuantifierContext(this.context, this.state); - this.enterRule(localContext, 362, FlinkSqlParser.RULE_setQuantifier); + this.enterRule(localContext, 368, FlinkSqlParser.RULE_setQuantifier); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2269; + this.state = 2285; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 113)) { this.errorHandler.recoverInline(this); @@ -11376,12 +11627,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timePointUnit(): TimePointUnitContext { let localContext = new TimePointUnitContext(this.context, this.state); - this.enterRule(localContext, 364, FlinkSqlParser.RULE_timePointUnit); + this.enterRule(localContext, 370, FlinkSqlParser.RULE_timePointUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2271; + this.state = 2287; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 222 || _la === 229 || _la === 334 || _la === 436 || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 262149) !== 0) || _la === 502)) { this.errorHandler.recoverInline(this); @@ -11408,12 +11659,12 @@ export class FlinkSqlParser extends SQLParserBase { } public timeIntervalUnit(): TimeIntervalUnitContext { let localContext = new TimeIntervalUnitContext(this.context, this.state); - this.enterRule(localContext, 366, FlinkSqlParser.RULE_timeIntervalUnit); + this.enterRule(localContext, 372, FlinkSqlParser.RULE_timeIntervalUnit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2273; + this.state = 2289; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 222 || _la === 229 || _la === 334 || ((((_la - 427)) & ~0x1F) === 0 && ((1 << (_la - 427)) & 140542465) !== 0) || ((((_la - 460)) & ~0x1F) === 0 && ((1 << (_la - 460)) & 2415983617) !== 0) || _la === 502 || _la === 503)) { this.errorHandler.recoverInline(this); @@ -11440,12 +11691,12 @@ export class FlinkSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncParam(): ReservedKeywordsUsedAsFuncParamContext { let localContext = new ReservedKeywordsUsedAsFuncParamContext(this.context, this.state); - this.enterRule(localContext, 368, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); + this.enterRule(localContext, 374, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncParam); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2275; + this.state = 2291; _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 - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 385) !== 0) || _la === 389 || _la === 413 || _la === 527)) { this.errorHandler.recoverInline(this); @@ -11470,16 +11721,80 @@ export class FlinkSqlParser extends SQLParserBase { } return localContext; } + public reservedKeywordsNoParamsUsedAsFuncName(): ReservedKeywordsNoParamsUsedAsFuncNameContext { + let localContext = new ReservedKeywordsNoParamsUsedAsFuncNameContext(this.context, this.state); + this.enterRule(localContext, 376, FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2293; + _la = this.tokenStream.LA(1); + if(!(((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 207 || _la === 208)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public reservedKeywordsFollowParamsUsedAsFuncName(): ReservedKeywordsFollowParamsUsedAsFuncNameContext { + let localContext = new ReservedKeywordsFollowParamsUsedAsFuncNameContext(this.context, this.state); + this.enterRule(localContext, 378, FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2295; + _la = this.tokenStream.LA(1); + if(!(_la === 91 || _la === 378 || _la === 379)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 370, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 380, FlinkSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2277; + this.state = 2297; _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)) & 25232905) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641553) !== 0) || ((((_la - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 873523369) !== 0) || ((((_la - 229)) & ~0x1F) === 0 && ((1 << (_la - 229)) & 81921) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 537530369) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 131185) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 14681219) !== 0) || ((((_la - 395)) & ~0x1F) === 0 && ((1 << (_la - 395)) & 50339865) !== 0) || _la === 436 || _la === 469 || _la === 488 || _la === 502)) { + 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 - 194)) & ~0x1F) === 0 && ((1 << (_la - 194)) & 873498793) !== 0) || ((((_la - 229)) & ~0x1F) === 0 && ((1 << (_la - 229)) & 81921) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 537530369) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 131185) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 8389763) !== 0) || ((((_la - 395)) & ~0x1F) === 0 && ((1 << (_la - 395)) & 50339865) !== 0) || _la === 436 || _la === 469 || _la === 488 || _la === 502)) { this.errorHandler.recoverInline(this); } else { @@ -11504,12 +11819,12 @@ export class FlinkSqlParser extends SQLParserBase { } public nonReservedKeywords(): NonReservedKeywordsContext { let localContext = new NonReservedKeywordsContext(this.context, this.state); - this.enterRule(localContext, 372, FlinkSqlParser.RULE_nonReservedKeywords); + this.enterRule(localContext, 382, FlinkSqlParser.RULE_nonReservedKeywords); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2279; + this.state = 2299; _la = this.tokenStream.LA(1); if(!(((((_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)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -11547,7 +11862,7 @@ export class FlinkSqlParser extends SQLParserBase { return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); case 132: return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); - case 133: + case 134: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); } return true; @@ -11606,13 +11921,13 @@ export class FlinkSqlParser extends SQLParserBase { private primaryExpression_sempred(localContext: PrimaryExpressionContext | null, predIndex: number): boolean { switch (predIndex) { case 13: - return this.precpred(this.context, 5); + return this.precpred(this.context, 4); } return true; } public static readonly _serializedATN: number[] = [ - 4,1,541,2282,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,541,2302,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, @@ -11643,95 +11958,95 @@ export class FlinkSqlParser extends SQLParserBase { 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,1,0,5,0,376,8,0,10,0,12,0,379,9,0,1,0,1,0,1,1,1,1,3,1,385, - 8,1,1,1,3,1,388,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,402,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,420,8,4,1,5,1,5,3,5,424,8,5,1,6,1,6,1,6,1,7, - 1,7,1,7,1,7,3,7,433,8,7,1,7,1,7,1,7,3,7,438,8,7,1,8,1,8,1,8,5,8, - 443,8,8,10,8,12,8,446,9,8,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10, - 3,10,456,8,10,1,11,1,11,1,11,1,11,1,11,5,11,463,8,11,10,11,12,11, - 466,9,11,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,477,8, - 12,1,12,3,12,480,8,12,1,12,1,12,1,12,1,12,1,12,3,12,487,8,12,1,12, - 3,12,490,8,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,498,8,12,1,12,1, - 12,3,12,502,8,12,1,12,1,12,1,12,3,12,507,8,12,1,12,3,12,510,8,12, - 1,13,1,13,1,13,1,13,1,13,3,13,517,8,13,1,14,1,14,1,14,1,14,1,15, - 1,15,3,15,525,8,15,1,16,1,16,3,16,529,8,16,1,17,1,17,1,17,1,17,1, - 18,1,18,1,18,1,18,1,18,1,18,3,18,541,8,18,1,18,1,18,1,18,1,18,1, - 18,1,18,3,18,549,8,18,1,18,1,18,3,18,553,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,585,8,18,1,19,3,19,588,8,19,1,19,4,19,591,8,19,11,19,12,19, - 592,1,20,1,20,3,20,597,8,20,1,21,1,21,3,21,601,8,21,1,21,1,21,3, - 21,605,8,21,1,21,1,21,1,21,1,21,1,21,5,21,612,8,21,10,21,12,21,615, - 9,21,1,21,1,21,3,21,619,8,21,1,21,1,21,3,21,623,8,21,1,21,1,21,3, - 21,627,8,21,1,21,1,21,1,21,3,21,632,8,21,1,21,3,21,635,8,21,1,21, - 1,21,3,21,639,8,21,1,22,1,22,1,22,3,22,644,8,22,1,22,1,22,1,22,1, - 22,3,22,650,8,22,1,23,1,23,1,23,3,23,655,8,23,1,24,1,24,1,24,3,24, - 660,8,24,1,24,1,24,3,24,664,8,24,1,25,1,25,3,25,668,8,25,1,26,1, - 26,3,26,672,8,26,1,27,1,27,1,27,1,27,5,27,678,8,27,10,27,12,27,681, - 9,27,1,27,1,27,1,28,1,28,1,28,3,28,688,8,28,1,28,1,28,3,28,692,8, - 28,1,28,1,28,3,28,696,8,28,1,28,1,28,3,28,700,8,28,1,28,1,28,3,28, - 704,8,28,1,28,1,28,3,28,708,8,28,1,28,1,28,3,28,712,8,28,1,28,1, - 28,3,28,716,8,28,1,28,1,28,3,28,720,8,28,3,28,722,8,28,1,29,1,29, - 1,29,1,29,1,30,1,30,1,30,1,30,3,30,732,8,30,1,30,1,30,1,31,1,31, - 1,31,1,31,3,31,740,8,31,1,31,1,31,1,32,1,32,1,32,1,32,1,33,1,33, - 1,33,1,33,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,5,34, - 762,8,34,10,34,12,34,765,9,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34, - 1,34,1,34,5,34,776,8,34,10,34,12,34,779,9,34,1,34,1,34,3,34,783, - 8,34,1,35,1,35,3,35,787,8,35,1,35,1,35,1,35,1,35,3,35,793,8,35,1, - 35,3,35,796,8,35,1,35,3,35,799,8,35,1,36,1,36,1,36,1,36,1,36,3,36, - 806,8,36,1,36,3,36,809,8,36,1,37,1,37,1,38,1,38,1,38,1,38,1,38,3, - 38,818,8,38,1,39,1,39,1,40,1,40,1,40,1,40,1,40,1,40,1,41,1,41,3, - 41,830,8,41,1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42,1,43,1,43,1, - 43,1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,5,45,852,8,45,10, - 45,12,45,855,9,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,5,46,864,8, - 46,10,46,12,46,867,9,46,1,46,1,46,3,46,871,8,46,1,47,1,47,3,47,875, - 8,47,1,48,1,48,1,48,1,48,5,48,881,8,48,10,48,12,48,884,9,48,1,48, - 3,48,887,8,48,1,49,1,49,1,49,1,49,3,49,893,8,49,1,50,1,50,1,50,1, - 50,1,50,1,51,1,51,1,51,3,51,903,8,51,1,51,1,51,1,51,3,51,908,8,51, - 1,51,1,51,1,52,1,52,3,52,914,8,52,1,52,1,52,3,52,918,8,52,1,52,1, - 52,3,52,922,8,52,1,52,1,52,3,52,926,8,52,1,52,1,52,1,52,1,53,1,53, - 1,53,1,53,3,53,935,8,53,1,53,1,53,3,53,939,8,53,1,53,1,53,1,53,1, - 53,1,53,3,53,946,8,53,1,53,3,53,949,8,53,1,54,1,54,1,54,1,54,1,54, - 1,54,5,54,957,8,54,10,54,12,54,960,9,54,1,55,1,55,1,56,1,56,1,56, - 3,56,967,8,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,975,8,56,1,57,1, - 57,3,57,979,8,57,1,57,1,57,1,57,1,58,1,58,1,58,1,59,1,59,1,59,1, - 59,1,59,1,59,1,59,3,59,994,8,59,1,60,1,60,1,60,1,60,1,61,1,61,1, - 61,1,61,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,63,3,63,1013,8, - 63,1,64,1,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,3,65,1024,8,65,1, - 65,1,65,3,65,1028,8,65,1,65,1,65,1,65,1,65,1,65,3,65,1035,8,65,1, - 66,1,66,1,66,3,66,1040,8,66,1,66,1,66,1,67,1,67,3,67,1046,8,67,1, - 67,1,67,3,67,1050,8,67,1,67,1,67,1,68,1,68,1,68,3,68,1057,8,68,1, - 68,1,68,3,68,1061,8,68,1,69,1,69,3,69,1065,8,69,1,69,1,69,3,69,1069, - 8,69,1,69,1,69,1,70,1,70,1,70,1,70,3,70,1077,8,70,1,70,1,70,3,70, - 1081,8,70,1,70,1,70,1,71,3,71,1086,8,71,1,71,1,71,1,71,1,71,3,71, - 1092,8,71,1,72,1,72,1,72,1,72,3,72,1098,8,72,1,72,3,72,1101,8,72, - 1,72,1,72,3,72,1105,8,72,1,73,1,73,1,73,1,74,1,74,1,74,1,74,5,74, - 1114,8,74,10,74,12,74,1117,9,74,1,75,1,75,1,75,1,75,5,75,1123,8, - 75,10,75,12,75,1126,9,75,1,75,1,75,1,76,1,76,1,76,1,76,1,76,1,76, - 1,76,4,76,1137,8,76,11,76,12,76,1138,1,76,1,76,1,77,1,77,1,77,1, - 77,1,77,1,77,4,77,1149,8,77,11,77,12,77,1150,1,77,1,77,1,78,1,78, - 1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,3,78,1166,8,78,1,78, - 3,78,1169,8,78,1,78,1,78,3,78,1173,8,78,1,78,3,78,1176,8,78,3,78, - 1178,8,78,1,78,1,78,1,78,3,78,1183,8,78,1,78,1,78,3,78,1187,8,78, - 1,78,3,78,1190,8,78,5,78,1192,8,78,10,78,12,78,1195,9,78,1,79,1, - 79,1,79,1,79,5,79,1201,8,79,10,79,12,79,1204,9,79,1,80,1,80,1,80, - 1,80,5,80,1210,8,80,10,80,12,80,1213,9,80,1,81,1,81,1,81,1,81,1, - 81,5,81,1220,8,81,10,81,12,81,1223,9,81,1,81,1,81,3,81,1227,8,81, - 1,81,1,81,1,81,1,81,1,81,1,82,1,82,1,83,1,83,3,83,1238,8,83,1,83, - 3,83,1241,8,83,1,83,3,83,1244,8,83,1,83,3,83,1247,8,83,1,83,3,83, - 1250,8,83,1,83,1,83,1,83,1,83,3,83,1256,8,83,1,84,1,84,3,84,1260, - 8,84,1,84,1,84,1,84,1,84,5,84,1266,8,84,10,84,12,84,1269,9,84,3, - 84,1271,8,84,1,85,1,85,1,85,3,85,1276,8,85,1,85,3,85,1279,8,85,1, - 85,1,85,3,85,1283,8,85,1,85,3,85,1286,8,85,3,85,1288,8,85,1,86,1, - 86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,3,86,1302,8, - 86,1,87,1,87,1,87,1,88,1,88,1,88,1,88,5,88,1311,8,88,10,88,12,88, - 1314,9,88,1,88,1,88,3,88,1318,8,88,1,88,1,88,1,88,1,88,1,88,1,88, - 3,88,1326,8,88,1,88,3,88,1329,8,88,1,88,3,88,1332,8,88,1,88,1,88, - 1,88,3,88,1337,8,88,5,88,1339,8,88,10,88,12,88,1342,9,88,1,89,1, - 89,3,89,1346,8,89,1,90,3,90,1349,8,90,1,90,1,90,3,90,1353,8,90,1, - 90,1,90,3,90,1357,8,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,5, - 90,1367,8,90,10,90,12,90,1370,9,90,1,90,1,90,1,90,1,90,3,90,1376, + 7,186,2,187,7,187,2,188,7,188,2,189,7,189,2,190,7,190,2,191,7,191, + 1,0,5,0,386,8,0,10,0,12,0,389,9,0,1,0,1,0,1,1,1,1,3,1,395,8,1,1, + 1,3,1,398,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,412,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,430,8,4,1,5,1,5,3,5,434,8,5,1,6,1,6,1,6,1,7,1,7,1, + 7,1,7,3,7,443,8,7,1,7,1,7,1,7,3,7,448,8,7,1,8,1,8,1,8,5,8,453,8, + 8,10,8,12,8,456,9,8,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,3,10,466, + 8,10,1,11,1,11,1,11,1,11,1,11,5,11,473,8,11,10,11,12,11,476,9,11, + 1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,487,8,12,1,12, + 3,12,490,8,12,1,12,1,12,1,12,1,12,1,12,3,12,497,8,12,1,12,3,12,500, + 8,12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,508,8,12,1,12,1,12,3,12, + 512,8,12,1,12,1,12,1,12,3,12,517,8,12,1,12,3,12,520,8,12,1,13,1, + 13,1,13,1,13,1,13,3,13,527,8,13,1,14,1,14,1,14,1,14,1,15,1,15,3, + 15,535,8,15,1,16,1,16,3,16,539,8,16,1,17,1,17,1,17,1,17,1,18,1,18, + 1,18,1,18,1,18,1,18,3,18,551,8,18,1,18,1,18,1,18,1,18,1,18,1,18, + 3,18,559,8,18,1,18,1,18,3,18,563,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,595, + 8,18,1,19,3,19,598,8,19,1,19,4,19,601,8,19,11,19,12,19,602,1,20, + 1,20,3,20,607,8,20,1,21,1,21,3,21,611,8,21,1,21,1,21,3,21,615,8, + 21,1,21,1,21,1,21,1,21,1,21,5,21,622,8,21,10,21,12,21,625,9,21,1, + 21,1,21,3,21,629,8,21,1,21,1,21,3,21,633,8,21,1,21,1,21,3,21,637, + 8,21,1,21,1,21,1,21,3,21,642,8,21,1,21,3,21,645,8,21,1,21,1,21,3, + 21,649,8,21,1,22,1,22,1,22,3,22,654,8,22,1,22,1,22,1,22,1,22,3,22, + 660,8,22,1,23,1,23,1,23,3,23,665,8,23,1,24,1,24,1,24,3,24,670,8, + 24,1,24,1,24,3,24,674,8,24,1,25,1,25,3,25,678,8,25,1,26,1,26,3,26, + 682,8,26,1,27,1,27,1,27,1,27,5,27,688,8,27,10,27,12,27,691,9,27, + 1,27,1,27,1,28,1,28,1,28,3,28,698,8,28,1,28,1,28,3,28,702,8,28,1, + 28,1,28,3,28,706,8,28,1,28,1,28,3,28,710,8,28,1,28,1,28,3,28,714, + 8,28,1,28,1,28,3,28,718,8,28,1,28,1,28,3,28,722,8,28,1,28,1,28,3, + 28,726,8,28,1,28,1,28,3,28,730,8,28,3,28,732,8,28,1,29,1,29,1,29, + 1,29,1,30,1,30,1,30,1,30,3,30,742,8,30,1,30,1,30,1,31,1,31,1,31, + 1,31,3,31,750,8,31,1,31,1,31,1,32,1,32,1,32,1,32,1,33,1,33,1,33, + 1,33,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,5,34,772, + 8,34,10,34,12,34,775,9,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34, + 1,34,5,34,786,8,34,10,34,12,34,789,9,34,1,34,1,34,3,34,793,8,34, + 1,35,1,35,3,35,797,8,35,1,35,1,35,1,35,1,35,3,35,803,8,35,1,35,3, + 35,806,8,35,1,35,3,35,809,8,35,1,36,1,36,1,36,1,36,1,36,3,36,816, + 8,36,1,36,3,36,819,8,36,1,37,1,37,1,38,1,38,1,38,1,38,1,38,3,38, + 828,8,38,1,39,1,39,1,40,1,40,1,40,1,40,1,40,1,40,1,41,1,41,3,41, + 840,8,41,1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42,1,43,1,43,1,43, + 1,43,1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,5,45,862,8,45,10,45, + 12,45,865,9,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,5,46,874,8,46, + 10,46,12,46,877,9,46,1,46,1,46,3,46,881,8,46,1,47,1,47,3,47,885, + 8,47,1,48,1,48,1,48,1,48,5,48,891,8,48,10,48,12,48,894,9,48,1,48, + 3,48,897,8,48,1,49,1,49,1,49,1,49,3,49,903,8,49,1,50,1,50,1,50,1, + 50,1,50,1,51,1,51,1,51,3,51,913,8,51,1,51,1,51,1,51,3,51,918,8,51, + 1,51,1,51,1,52,1,52,3,52,924,8,52,1,52,1,52,3,52,928,8,52,1,52,1, + 52,3,52,932,8,52,1,52,1,52,3,52,936,8,52,1,52,1,52,1,52,1,53,1,53, + 1,53,1,53,3,53,945,8,53,1,53,1,53,3,53,949,8,53,1,53,1,53,1,53,1, + 53,1,53,3,53,956,8,53,1,53,3,53,959,8,53,1,54,1,54,1,54,1,54,1,54, + 1,54,5,54,967,8,54,10,54,12,54,970,9,54,1,55,1,55,1,56,1,56,1,56, + 3,56,977,8,56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,985,8,56,1,57,1, + 57,3,57,989,8,57,1,57,1,57,1,57,1,58,1,58,1,58,1,59,1,59,1,59,1, + 59,1,59,1,59,1,59,3,59,1004,8,59,1,60,1,60,1,60,1,60,1,61,1,61,1, + 61,1,61,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,63,3,63,1023,8, + 63,1,64,1,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,3,65,1034,8,65,1, + 65,1,65,3,65,1038,8,65,1,65,1,65,1,65,1,65,1,65,3,65,1045,8,65,1, + 66,1,66,1,66,3,66,1050,8,66,1,66,1,66,1,67,1,67,3,67,1056,8,67,1, + 67,1,67,3,67,1060,8,67,1,67,1,67,1,68,1,68,1,68,3,68,1067,8,68,1, + 68,1,68,3,68,1071,8,68,1,69,1,69,3,69,1075,8,69,1,69,1,69,3,69,1079, + 8,69,1,69,1,69,1,70,1,70,1,70,1,70,3,70,1087,8,70,1,70,1,70,3,70, + 1091,8,70,1,70,1,70,1,71,3,71,1096,8,71,1,71,1,71,1,71,1,71,3,71, + 1102,8,71,1,72,1,72,1,72,1,72,3,72,1108,8,72,1,72,3,72,1111,8,72, + 1,72,1,72,3,72,1115,8,72,1,73,1,73,1,73,1,74,1,74,1,74,1,74,5,74, + 1124,8,74,10,74,12,74,1127,9,74,1,75,1,75,1,75,1,75,5,75,1133,8, + 75,10,75,12,75,1136,9,75,1,75,1,75,1,76,1,76,1,76,1,76,1,76,1,76, + 1,76,4,76,1147,8,76,11,76,12,76,1148,1,76,1,76,1,77,1,77,1,77,1, + 77,1,77,1,77,4,77,1159,8,77,11,77,12,77,1160,1,77,1,77,1,78,1,78, + 1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,78,3,78,1176,8,78,1,78, + 3,78,1179,8,78,1,78,1,78,3,78,1183,8,78,1,78,3,78,1186,8,78,3,78, + 1188,8,78,1,78,1,78,1,78,3,78,1193,8,78,1,78,1,78,3,78,1197,8,78, + 1,78,3,78,1200,8,78,5,78,1202,8,78,10,78,12,78,1205,9,78,1,79,1, + 79,1,79,1,79,5,79,1211,8,79,10,79,12,79,1214,9,79,1,80,1,80,1,80, + 1,80,5,80,1220,8,80,10,80,12,80,1223,9,80,1,81,1,81,1,81,1,81,1, + 81,5,81,1230,8,81,10,81,12,81,1233,9,81,1,81,1,81,3,81,1237,8,81, + 1,81,1,81,1,81,1,81,1,81,1,82,1,82,1,83,1,83,3,83,1248,8,83,1,83, + 3,83,1251,8,83,1,83,3,83,1254,8,83,1,83,3,83,1257,8,83,1,83,3,83, + 1260,8,83,1,83,1,83,1,83,1,83,3,83,1266,8,83,1,84,1,84,3,84,1270, + 8,84,1,84,1,84,1,84,1,84,5,84,1276,8,84,10,84,12,84,1279,9,84,3, + 84,1281,8,84,1,85,1,85,1,85,3,85,1286,8,85,1,85,3,85,1289,8,85,1, + 85,1,85,3,85,1293,8,85,1,85,3,85,1296,8,85,3,85,1298,8,85,1,86,1, + 86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,1,86,3,86,1312,8, + 86,1,87,1,87,1,87,1,88,1,88,1,88,1,88,5,88,1321,8,88,10,88,12,88, + 1324,9,88,1,88,1,88,3,88,1328,8,88,1,88,1,88,1,88,1,88,1,88,1,88, + 3,88,1336,8,88,1,88,3,88,1339,8,88,1,88,3,88,1342,8,88,1,88,1,88, + 1,88,3,88,1347,8,88,5,88,1349,8,88,10,88,12,88,1352,9,88,1,89,1, + 89,3,89,1356,8,89,1,90,3,90,1359,8,90,1,90,1,90,3,90,1363,8,90,1, + 90,1,90,3,90,1367,8,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1376, 8,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,1,90,3,90,1387,8,90, 1,91,1,91,1,91,1,91,1,91,1,91,1,92,1,92,1,93,1,93,1,93,1,93,1,93, 1,94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,95,1,95,5,95,1412,8,95, @@ -11784,49 +12099,51 @@ export class FlinkSqlParser extends SQLParserBase { 8,131,3,131,1857,8,131,1,132,1,132,1,132,1,132,3,132,1863,8,132, 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, 1,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132,5,132,1884,8,132, - 10,132,12,132,1887,9,132,1,133,1,133,1,133,4,133,1892,8,133,11,133, - 12,133,1893,1,133,1,133,3,133,1898,8,133,1,133,1,133,1,133,1,133, - 1,133,4,133,1905,8,133,11,133,12,133,1906,1,133,1,133,3,133,1911, - 8,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133, - 1,133,1,133,1,133,1,133,3,133,1927,8,133,1,133,1,133,1,133,1,133, - 1,133,1,133,1,133,3,133,1936,8,133,1,133,1,133,1,133,1,133,1,133, - 1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133, - 1,133,1,133,1,133,1,133,1,133,1,133,3,133,1960,8,133,1,133,1,133, - 1,133,5,133,1965,8,133,10,133,12,133,1968,9,133,3,133,1970,8,133, - 1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,3,133,1981, - 8,133,1,133,1,133,1,133,1,133,1,133,5,133,1988,8,133,10,133,12,133, - 1991,9,133,1,134,1,134,1,135,1,135,3,135,1997,8,135,1,136,1,136, - 1,136,1,136,3,136,2003,8,136,1,137,1,137,1,138,1,138,1,139,1,139, - 3,139,2011,8,139,1,140,1,140,1,140,3,140,2016,8,140,1,141,1,141, - 3,141,2020,8,141,1,142,1,142,1,142,4,142,2025,8,142,11,142,12,142, - 2026,1,143,1,143,1,143,3,143,2032,8,143,1,144,1,144,1,144,1,144, - 1,144,1,145,3,145,2040,8,145,1,145,1,145,3,145,2044,8,145,1,146, - 3,146,2047,8,146,1,146,1,146,3,146,2051,8,146,1,147,1,147,1,147, - 1,148,1,148,4,148,2058,8,148,11,148,12,148,2059,1,148,3,148,2063, - 8,148,1,149,1,149,1,149,1,149,1,150,1,150,1,150,5,150,2072,8,150, - 10,150,12,150,2075,9,150,1,151,1,151,1,151,3,151,2080,8,151,1,152, - 1,152,1,153,1,153,1,154,1,154,1,154,1,154,1,154,1,155,1,155,1,156, - 1,156,1,157,1,157,1,157,3,157,2098,8,157,1,158,1,158,1,158,3,158, - 2103,8,158,1,159,1,159,1,159,3,159,2108,8,159,1,159,1,159,1,159, - 1,159,1,159,3,159,2115,8,159,3,159,2117,8,159,1,160,1,160,1,160, - 3,160,2122,8,160,1,160,1,160,1,160,1,160,1,160,3,160,2129,8,160, - 3,160,2131,8,160,1,161,1,161,1,161,3,161,2136,8,161,1,161,1,161, - 1,161,1,161,1,161,3,161,2143,8,161,3,161,2145,8,161,1,162,1,162, - 1,162,3,162,2150,8,162,1,162,1,162,1,162,1,162,1,162,3,162,2157, - 8,162,3,162,2159,8,162,1,163,1,163,1,163,5,163,2164,8,163,10,163, - 12,163,2167,9,163,1,164,1,164,1,164,1,165,1,165,1,165,1,165,1,166, - 1,166,1,166,1,167,1,167,1,167,1,167,5,167,2183,8,167,10,167,12,167, - 2186,9,167,1,167,1,167,1,168,1,168,3,168,2192,8,168,1,168,3,168, - 2195,8,168,1,169,1,169,1,169,3,169,2200,8,169,1,170,1,170,1,170, - 1,170,3,170,2206,8,170,1,171,1,171,1,171,1,171,1,171,1,171,3,171, - 2214,8,171,1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172, - 1,172,1,172,1,172,1,172,1,172,3,172,2230,8,172,1,173,1,173,1,173, - 1,173,1,173,1,173,1,173,3,173,2239,8,173,1,174,1,174,1,175,1,175, - 1,176,1,176,1,176,1,176,3,176,2249,8,176,1,176,1,176,1,176,1,176, - 1,176,3,176,2256,8,176,1,176,3,176,2259,8,176,1,177,1,177,1,177, - 1,178,1,178,1,179,1,179,1,180,1,180,1,181,1,181,1,182,1,182,1,183, - 1,183,1,184,1,184,1,185,1,185,1,186,1,186,1,186,1,2165,5,156,176, - 258,264,266,187,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34, + 10,132,12,132,1887,9,132,1,133,1,133,1,133,1,133,1,133,3,133,1894, + 8,133,1,133,1,133,1,133,5,133,1899,8,133,10,133,12,133,1902,9,133, + 3,133,1904,8,133,1,133,1,133,3,133,1908,8,133,1,134,1,134,1,134, + 4,134,1913,8,134,11,134,12,134,1914,1,134,1,134,3,134,1919,8,134, + 1,134,1,134,1,134,1,134,1,134,4,134,1926,8,134,11,134,12,134,1927, + 1,134,1,134,3,134,1932,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,3,134,1948,8,134, + 1,134,1,134,1,134,1,134,1,134,1,134,1,134,3,134,1957,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,1,134,1,134,1,134,1,134, + 1,134,1,134,1,134,3,134,1985,8,134,1,134,1,134,1,134,1,134,1,134, + 5,134,1992,8,134,10,134,12,134,1995,9,134,1,135,1,135,1,136,1,136, + 1,136,1,136,3,136,2003,8,136,1,137,1,137,1,137,1,137,3,137,2009, + 8,137,1,138,1,138,3,138,2013,8,138,1,139,1,139,1,139,1,139,3,139, + 2019,8,139,1,140,1,140,1,141,1,141,1,142,1,142,3,142,2027,8,142, + 1,143,1,143,1,143,3,143,2032,8,143,1,144,1,144,3,144,2036,8,144, + 1,145,1,145,1,145,4,145,2041,8,145,11,145,12,145,2042,1,146,1,146, + 1,146,3,146,2048,8,146,1,147,1,147,1,147,1,147,1,147,1,148,3,148, + 2056,8,148,1,148,1,148,3,148,2060,8,148,1,149,3,149,2063,8,149,1, + 149,1,149,3,149,2067,8,149,1,150,1,150,1,150,1,151,1,151,4,151,2074, + 8,151,11,151,12,151,2075,1,151,3,151,2079,8,151,1,152,1,152,1,152, + 1,152,1,153,1,153,1,153,5,153,2088,8,153,10,153,12,153,2091,9,153, + 1,154,1,154,1,154,3,154,2096,8,154,1,155,1,155,1,156,1,156,1,157, + 1,157,1,157,1,157,1,157,1,158,1,158,1,159,1,159,1,160,1,160,1,160, + 3,160,2114,8,160,1,161,1,161,1,161,3,161,2119,8,161,1,162,1,162, + 1,162,3,162,2124,8,162,1,162,1,162,1,162,1,162,1,162,3,162,2131, + 8,162,3,162,2133,8,162,1,163,1,163,1,163,3,163,2138,8,163,1,163, + 1,163,1,163,1,163,1,163,3,163,2145,8,163,3,163,2147,8,163,1,164, + 1,164,1,164,3,164,2152,8,164,1,164,1,164,1,164,1,164,1,164,3,164, + 2159,8,164,3,164,2161,8,164,1,165,1,165,1,165,3,165,2166,8,165,1, + 165,1,165,1,165,1,165,1,165,3,165,2173,8,165,3,165,2175,8,165,1, + 166,1,166,1,166,5,166,2180,8,166,10,166,12,166,2183,9,166,1,167, + 1,167,1,167,1,168,1,168,1,168,1,168,1,169,1,169,1,169,1,170,1,170, + 1,170,1,170,5,170,2199,8,170,10,170,12,170,2202,9,170,1,170,1,170, + 1,171,1,171,3,171,2208,8,171,1,171,3,171,2211,8,171,1,172,1,172, + 1,172,3,172,2216,8,172,1,173,1,173,1,173,1,173,3,173,2222,8,173, + 1,174,1,174,1,174,1,174,1,174,1,174,3,174,2230,8,174,1,175,1,175, + 1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175, + 1,175,3,175,2246,8,175,1,176,1,176,1,176,1,176,1,176,1,176,1,176, + 3,176,2255,8,176,1,177,1,177,1,178,1,178,1,179,1,179,1,179,1,179, + 3,179,2265,8,179,1,179,1,179,1,179,1,179,1,179,3,179,2272,8,179, + 1,179,3,179,2275,8,179,1,180,1,180,1,180,1,181,1,181,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,191,1,2181,5,156,176, + 258,264,268,192,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, @@ -11837,429 +12154,428 @@ export class FlinkSqlParser extends SQLParserBase { 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, - 0,45,2,0,109,109,450,450,3,0,45,45,128,128,188,188,4,0,42,42,90, - 90,422,422,464,464,2,0,441,441,447,447,2,0,151,151,170,170,2,0,437, - 437,489,489,2,0,482,485,487,487,3,0,32,32,91,91,244,244,11,0,28, - 29,35,35,46,46,92,92,178,179,344,344,360,360,378,378,381,381,387, - 387,416,417,2,0,433,433,435,435,4,0,101,102,115,115,144,144,246, - 246,2,0,13,13,231,231,2,0,455,455,462,462,3,0,5,5,270,270,444,444, - 3,0,266,266,455,455,462,462,3,0,425,425,458,458,477,477,3,0,330, - 330,465,465,481,481,2,0,440,440,490,490,2,0,183,183,265,265,3,0, - 130,130,180,180,402,402,4,0,152,152,174,174,201,201,317,317,3,0, - 445,445,459,459,499,499,4,0,250,250,446,446,494,496,498,498,2,0, - 74,74,320,320,3,0,459,459,492,492,499,499,2,0,439,439,450,450,2, - 0,457,457,467,467,4,0,140,140,244,244,397,397,404,404,2,0,19,19, - 369,369,2,0,5,5,11,11,2,0,509,509,529,530,4,0,452,452,527,527,531, - 531,534,534,2,0,529,530,532,532,1,0,529,530,1,0,538,539,2,0,538, - 538,541,541,4,0,452,452,527,527,529,531,533,534,3,0,241,241,508, - 509,529,530,2,0,140,140,397,397,2,0,5,5,113,113,10,0,97,97,165,165, - 222,222,229,229,334,334,436,436,470,470,472,472,488,488,502,502, - 15,0,97,97,165,165,222,222,229,229,334,334,427,427,436,436,442,442, - 448,449,454,454,460,460,470,475,488,488,491,491,502,503,11,0,5,5, - 13,13,33,33,78,78,84,85,113,113,200,200,207,208,389,389,413,413, - 527,527,55,0,4,4,13,13,23,23,38,38,41,41,43,44,54,54,56,56,69,69, - 75,75,78,78,84,85,91,91,98,99,107,107,119,119,134,134,139,139,143, - 143,145,145,160,160,165,165,167,167,194,194,197,197,199,199,201, - 201,205,205,207,209,214,214,220,220,222,223,229,229,243,243,245, - 245,264,264,276,276,281,281,283,283,293,293,317,317,321,323,334, - 334,357,358,364,364,367,367,378,380,395,395,398,399,408,408,419, - 420,436,436,469,469,488,488,502,502,1,0,437,504,2486,0,377,1,0,0, - 0,2,387,1,0,0,0,4,401,1,0,0,0,6,403,1,0,0,0,8,419,1,0,0,0,10,423, - 1,0,0,0,12,425,1,0,0,0,14,428,1,0,0,0,16,439,1,0,0,0,18,447,1,0, - 0,0,20,455,1,0,0,0,22,457,1,0,0,0,24,509,1,0,0,0,26,511,1,0,0,0, - 28,518,1,0,0,0,30,522,1,0,0,0,32,526,1,0,0,0,34,530,1,0,0,0,36,584, - 1,0,0,0,38,590,1,0,0,0,40,596,1,0,0,0,42,598,1,0,0,0,44,640,1,0, - 0,0,46,654,1,0,0,0,48,656,1,0,0,0,50,667,1,0,0,0,52,671,1,0,0,0, - 54,673,1,0,0,0,56,721,1,0,0,0,58,723,1,0,0,0,60,727,1,0,0,0,62,735, - 1,0,0,0,64,743,1,0,0,0,66,747,1,0,0,0,68,782,1,0,0,0,70,798,1,0, - 0,0,72,800,1,0,0,0,74,810,1,0,0,0,76,812,1,0,0,0,78,819,1,0,0,0, - 80,821,1,0,0,0,82,829,1,0,0,0,84,837,1,0,0,0,86,839,1,0,0,0,88,843, - 1,0,0,0,90,847,1,0,0,0,92,870,1,0,0,0,94,874,1,0,0,0,96,876,1,0, - 0,0,98,892,1,0,0,0,100,894,1,0,0,0,102,899,1,0,0,0,104,911,1,0,0, - 0,106,930,1,0,0,0,108,950,1,0,0,0,110,961,1,0,0,0,112,963,1,0,0, - 0,114,976,1,0,0,0,116,983,1,0,0,0,118,986,1,0,0,0,120,995,1,0,0, - 0,122,999,1,0,0,0,124,1003,1,0,0,0,126,1006,1,0,0,0,128,1014,1,0, - 0,0,130,1019,1,0,0,0,132,1036,1,0,0,0,134,1043,1,0,0,0,136,1053, - 1,0,0,0,138,1062,1,0,0,0,140,1072,1,0,0,0,142,1091,1,0,0,0,144,1093, - 1,0,0,0,146,1106,1,0,0,0,148,1109,1,0,0,0,150,1118,1,0,0,0,152,1129, - 1,0,0,0,154,1142,1,0,0,0,156,1177,1,0,0,0,158,1196,1,0,0,0,160,1205, - 1,0,0,0,162,1214,1,0,0,0,164,1233,1,0,0,0,166,1255,1,0,0,0,168,1257, - 1,0,0,0,170,1287,1,0,0,0,172,1301,1,0,0,0,174,1303,1,0,0,0,176,1317, - 1,0,0,0,178,1343,1,0,0,0,180,1386,1,0,0,0,182,1388,1,0,0,0,184,1394, - 1,0,0,0,186,1396,1,0,0,0,188,1401,1,0,0,0,190,1406,1,0,0,0,192,1418, - 1,0,0,0,194,1435,1,0,0,0,196,1437,1,0,0,0,198,1439,1,0,0,0,200,1448, - 1,0,0,0,202,1450,1,0,0,0,204,1453,1,0,0,0,206,1503,1,0,0,0,208,1505, - 1,0,0,0,210,1508,1,0,0,0,212,1510,1,0,0,0,214,1517,1,0,0,0,216,1519, - 1,0,0,0,218,1521,1,0,0,0,220,1524,1,0,0,0,222,1533,1,0,0,0,224,1538, - 1,0,0,0,226,1552,1,0,0,0,228,1580,1,0,0,0,230,1590,1,0,0,0,232,1598, - 1,0,0,0,234,1603,1,0,0,0,236,1635,1,0,0,0,238,1637,1,0,0,0,240,1646, - 1,0,0,0,242,1657,1,0,0,0,244,1669,1,0,0,0,246,1695,1,0,0,0,248,1697, - 1,0,0,0,250,1715,1,0,0,0,252,1717,1,0,0,0,254,1722,1,0,0,0,256,1725, - 1,0,0,0,258,1739,1,0,0,0,260,1825,1,0,0,0,262,1856,1,0,0,0,264,1862, - 1,0,0,0,266,1980,1,0,0,0,268,1992,1,0,0,0,270,1996,1,0,0,0,272,2002, - 1,0,0,0,274,2004,1,0,0,0,276,2006,1,0,0,0,278,2010,1,0,0,0,280,2012, - 1,0,0,0,282,2017,1,0,0,0,284,2024,1,0,0,0,286,2028,1,0,0,0,288,2033, - 1,0,0,0,290,2043,1,0,0,0,292,2046,1,0,0,0,294,2052,1,0,0,0,296,2062, - 1,0,0,0,298,2064,1,0,0,0,300,2068,1,0,0,0,302,2079,1,0,0,0,304,2081, - 1,0,0,0,306,2083,1,0,0,0,308,2085,1,0,0,0,310,2090,1,0,0,0,312,2092, - 1,0,0,0,314,2094,1,0,0,0,316,2099,1,0,0,0,318,2116,1,0,0,0,320,2130, - 1,0,0,0,322,2144,1,0,0,0,324,2158,1,0,0,0,326,2160,1,0,0,0,328,2168, - 1,0,0,0,330,2171,1,0,0,0,332,2175,1,0,0,0,334,2178,1,0,0,0,336,2189, - 1,0,0,0,338,2199,1,0,0,0,340,2205,1,0,0,0,342,2213,1,0,0,0,344,2229, - 1,0,0,0,346,2238,1,0,0,0,348,2240,1,0,0,0,350,2242,1,0,0,0,352,2258, - 1,0,0,0,354,2260,1,0,0,0,356,2263,1,0,0,0,358,2265,1,0,0,0,360,2267, - 1,0,0,0,362,2269,1,0,0,0,364,2271,1,0,0,0,366,2273,1,0,0,0,368,2275, - 1,0,0,0,370,2277,1,0,0,0,372,2279,1,0,0,0,374,376,3,2,1,0,375,374, - 1,0,0,0,376,379,1,0,0,0,377,375,1,0,0,0,377,378,1,0,0,0,378,380, - 1,0,0,0,379,377,1,0,0,0,380,381,5,0,0,1,381,1,1,0,0,0,382,384,3, - 4,2,0,383,385,5,521,0,0,384,383,1,0,0,0,384,385,1,0,0,0,385,388, - 1,0,0,0,386,388,3,6,3,0,387,382,1,0,0,0,387,386,1,0,0,0,388,3,1, - 0,0,0,389,402,3,8,4,0,390,402,3,10,5,0,391,402,3,12,6,0,392,402, - 3,14,7,0,393,402,3,20,10,0,394,402,3,24,12,0,395,402,3,26,13,0,396, - 402,3,28,14,0,397,402,3,30,15,0,398,402,3,32,16,0,399,402,3,34,17, - 0,400,402,3,36,18,0,401,389,1,0,0,0,401,390,1,0,0,0,401,391,1,0, - 0,0,401,392,1,0,0,0,401,393,1,0,0,0,401,394,1,0,0,0,401,395,1,0, - 0,0,401,396,1,0,0,0,401,397,1,0,0,0,401,398,1,0,0,0,401,399,1,0, - 0,0,401,400,1,0,0,0,402,5,1,0,0,0,403,404,5,521,0,0,404,7,1,0,0, - 0,405,420,3,40,20,0,406,420,3,102,51,0,407,420,3,104,52,0,408,420, - 3,106,53,0,409,420,3,100,50,0,410,420,3,112,56,0,411,420,3,126,63, - 0,412,420,3,128,64,0,413,420,3,130,65,0,414,420,3,132,66,0,415,420, - 3,134,67,0,416,420,3,136,68,0,417,420,3,138,69,0,418,420,3,140,70, - 0,419,405,1,0,0,0,419,406,1,0,0,0,419,407,1,0,0,0,419,408,1,0,0, - 0,419,409,1,0,0,0,419,410,1,0,0,0,419,411,1,0,0,0,419,412,1,0,0, - 0,419,413,1,0,0,0,419,414,1,0,0,0,419,415,1,0,0,0,419,416,1,0,0, - 0,419,417,1,0,0,0,419,418,1,0,0,0,420,9,1,0,0,0,421,424,3,156,78, - 0,422,424,3,142,71,0,423,421,1,0,0,0,423,422,1,0,0,0,424,11,1,0, - 0,0,425,426,7,0,0,0,426,427,3,320,160,0,427,13,1,0,0,0,428,432,5, - 135,0,0,429,433,3,16,8,0,430,431,5,479,0,0,431,433,5,146,0,0,432, - 429,1,0,0,0,432,430,1,0,0,0,432,433,1,0,0,0,433,437,1,0,0,0,434, - 438,3,10,5,0,435,438,3,144,72,0,436,438,3,154,77,0,437,434,1,0,0, - 0,437,435,1,0,0,0,437,436,1,0,0,0,438,15,1,0,0,0,439,444,3,18,9, - 0,440,441,5,520,0,0,441,443,3,18,9,0,442,440,1,0,0,0,443,446,1,0, - 0,0,444,442,1,0,0,0,444,445,1,0,0,0,445,17,1,0,0,0,446,444,1,0,0, - 0,447,448,7,1,0,0,448,19,1,0,0,0,449,450,5,410,0,0,450,451,5,441, - 0,0,451,456,3,310,155,0,452,453,5,410,0,0,453,456,3,314,157,0,454, - 456,3,22,11,0,455,449,1,0,0,0,455,452,1,0,0,0,455,454,1,0,0,0,456, - 21,1,0,0,0,457,458,5,410,0,0,458,459,5,227,0,0,459,464,3,326,163, - 0,460,461,5,520,0,0,461,463,3,326,163,0,462,460,1,0,0,0,463,466, - 1,0,0,0,464,462,1,0,0,0,464,465,1,0,0,0,465,23,1,0,0,0,466,464,1, - 0,0,0,467,468,5,341,0,0,468,510,7,2,0,0,469,470,5,341,0,0,470,471, - 5,76,0,0,471,510,7,3,0,0,472,473,5,341,0,0,473,476,5,374,0,0,474, - 475,7,4,0,0,475,477,3,314,157,0,476,474,1,0,0,0,476,477,1,0,0,0, - 477,479,1,0,0,0,478,480,3,262,131,0,479,478,1,0,0,0,479,480,1,0, - 0,0,480,510,1,0,0,0,481,482,5,341,0,0,482,483,5,58,0,0,483,486,7, - 4,0,0,484,487,3,322,161,0,485,487,3,320,160,0,486,484,1,0,0,0,486, - 485,1,0,0,0,487,489,1,0,0,0,488,490,3,262,131,0,489,488,1,0,0,0, - 489,490,1,0,0,0,490,510,1,0,0,0,491,492,5,341,0,0,492,497,5,72,0, - 0,493,494,5,373,0,0,494,498,3,320,160,0,495,496,5,501,0,0,496,498, - 3,322,161,0,497,493,1,0,0,0,497,495,1,0,0,0,498,510,1,0,0,0,499, - 501,5,341,0,0,500,502,5,411,0,0,501,500,1,0,0,0,501,502,1,0,0,0, - 502,503,1,0,0,0,503,510,5,154,0,0,504,506,5,341,0,0,505,507,5,152, - 0,0,506,505,1,0,0,0,506,507,1,0,0,0,507,508,1,0,0,0,508,510,5,227, - 0,0,509,467,1,0,0,0,509,469,1,0,0,0,509,472,1,0,0,0,509,481,1,0, - 0,0,509,491,1,0,0,0,509,499,1,0,0,0,509,504,1,0,0,0,510,25,1,0,0, - 0,511,512,5,468,0,0,512,513,5,226,0,0,513,516,3,326,163,0,514,515, - 5,433,0,0,515,517,3,334,167,0,516,514,1,0,0,0,516,517,1,0,0,0,517, - 27,1,0,0,0,518,519,5,500,0,0,519,520,5,226,0,0,520,521,3,326,163, - 0,521,29,1,0,0,0,522,524,5,340,0,0,523,525,3,336,168,0,524,523,1, - 0,0,0,524,525,1,0,0,0,525,31,1,0,0,0,526,528,5,312,0,0,527,529,3, - 338,169,0,528,527,1,0,0,0,528,529,1,0,0,0,529,33,1,0,0,0,530,531, - 7,5,0,0,531,532,5,463,0,0,532,533,3,110,55,0,533,35,1,0,0,0,534, - 535,5,437,0,0,535,536,5,463,0,0,536,537,5,433,0,0,537,540,3,38,19, - 0,538,539,5,17,0,0,539,541,3,326,163,0,540,538,1,0,0,0,540,541,1, - 0,0,0,541,585,1,0,0,0,542,543,5,437,0,0,543,544,5,456,0,0,544,545, - 5,433,0,0,545,548,3,38,19,0,546,547,5,17,0,0,547,549,3,326,163,0, - 548,546,1,0,0,0,548,549,1,0,0,0,549,552,1,0,0,0,550,551,5,311,0, - 0,551,553,3,326,163,0,552,550,1,0,0,0,552,553,1,0,0,0,553,585,1, - 0,0,0,554,555,5,437,0,0,555,556,7,6,0,0,556,557,5,433,0,0,557,558, - 3,38,19,0,558,559,5,311,0,0,559,560,3,326,163,0,560,585,1,0,0,0, - 561,562,5,437,0,0,562,563,5,486,0,0,563,585,3,38,19,0,564,565,5, - 437,0,0,565,566,5,453,0,0,566,567,5,456,0,0,567,568,5,433,0,0,568, - 569,3,38,19,0,569,570,5,311,0,0,570,571,3,326,163,0,571,572,5,466, - 0,0,572,573,3,326,163,0,573,585,1,0,0,0,574,575,5,437,0,0,575,576, - 5,443,0,0,576,577,5,456,0,0,577,578,5,433,0,0,578,579,3,38,19,0, - 579,580,5,146,0,0,580,581,3,326,163,0,581,582,5,17,0,0,582,583,3, - 326,163,0,583,585,1,0,0,0,584,534,1,0,0,0,584,542,1,0,0,0,584,554, - 1,0,0,0,584,561,1,0,0,0,584,564,1,0,0,0,584,574,1,0,0,0,585,37,1, - 0,0,0,586,588,5,534,0,0,587,586,1,0,0,0,587,588,1,0,0,0,588,589, - 1,0,0,0,589,591,3,326,163,0,590,587,1,0,0,0,591,592,1,0,0,0,592, - 590,1,0,0,0,592,593,1,0,0,0,593,39,1,0,0,0,594,597,3,42,21,0,595, - 597,3,44,22,0,596,594,1,0,0,0,596,595,1,0,0,0,597,41,1,0,0,0,598, - 600,5,72,0,0,599,601,5,497,0,0,600,599,1,0,0,0,600,601,1,0,0,0,601, - 602,1,0,0,0,602,604,5,373,0,0,603,605,3,330,165,0,604,603,1,0,0, - 0,604,605,1,0,0,0,605,606,1,0,0,0,606,607,3,318,159,0,607,608,5, - 516,0,0,608,613,3,46,23,0,609,610,5,520,0,0,610,612,3,46,23,0,611, - 609,1,0,0,0,612,615,1,0,0,0,613,611,1,0,0,0,613,614,1,0,0,0,614, - 618,1,0,0,0,615,613,1,0,0,0,616,617,5,520,0,0,617,619,3,80,40,0, - 618,616,1,0,0,0,618,619,1,0,0,0,619,622,1,0,0,0,620,621,5,520,0, - 0,621,623,3,82,41,0,622,620,1,0,0,0,622,623,1,0,0,0,623,626,1,0, - 0,0,624,625,5,520,0,0,625,627,3,86,43,0,626,624,1,0,0,0,626,627, - 1,0,0,0,627,628,1,0,0,0,628,631,5,517,0,0,629,630,5,59,0,0,630,632, - 5,537,0,0,631,629,1,0,0,0,631,632,1,0,0,0,632,634,1,0,0,0,633,635, - 3,88,44,0,634,633,1,0,0,0,634,635,1,0,0,0,635,636,1,0,0,0,636,638, - 3,328,164,0,637,639,3,96,48,0,638,637,1,0,0,0,638,639,1,0,0,0,639, - 43,1,0,0,0,640,641,5,72,0,0,641,643,5,373,0,0,642,644,3,330,165, - 0,643,642,1,0,0,0,643,644,1,0,0,0,644,645,1,0,0,0,645,646,3,318, - 159,0,646,649,3,328,164,0,647,648,5,17,0,0,648,650,3,156,78,0,649, - 647,1,0,0,0,649,650,1,0,0,0,650,45,1,0,0,0,651,655,3,48,24,0,652, - 655,3,72,36,0,653,655,3,76,38,0,654,651,1,0,0,0,654,652,1,0,0,0, - 654,653,1,0,0,0,655,47,1,0,0,0,656,657,3,50,25,0,657,659,3,56,28, - 0,658,660,3,70,35,0,659,658,1,0,0,0,659,660,1,0,0,0,660,663,1,0, - 0,0,661,662,5,59,0,0,662,664,5,537,0,0,663,661,1,0,0,0,663,664,1, - 0,0,0,664,49,1,0,0,0,665,668,3,326,163,0,666,668,3,256,128,0,667, - 665,1,0,0,0,667,666,1,0,0,0,668,51,1,0,0,0,669,672,3,326,163,0,670, - 672,4,26,0,0,671,669,1,0,0,0,671,670,1,0,0,0,672,53,1,0,0,0,673, - 674,5,516,0,0,674,679,3,52,26,0,675,676,5,520,0,0,676,678,3,52,26, - 0,677,675,1,0,0,0,678,681,1,0,0,0,679,677,1,0,0,0,679,680,1,0,0, - 0,680,682,1,0,0,0,681,679,1,0,0,0,682,683,5,517,0,0,683,55,1,0,0, - 0,684,722,7,7,0,0,685,687,7,8,0,0,686,688,3,58,29,0,687,686,1,0, - 0,0,687,688,1,0,0,0,688,722,1,0,0,0,689,691,5,379,0,0,690,692,3, - 58,29,0,691,690,1,0,0,0,691,692,1,0,0,0,692,699,1,0,0,0,693,695, - 7,9,0,0,694,696,5,206,0,0,695,694,1,0,0,0,695,696,1,0,0,0,696,697, - 1,0,0,0,697,698,5,378,0,0,698,700,5,504,0,0,699,693,1,0,0,0,699, - 700,1,0,0,0,700,722,1,0,0,0,701,703,7,10,0,0,702,704,3,60,30,0,703, - 702,1,0,0,0,703,704,1,0,0,0,704,722,1,0,0,0,705,707,7,11,0,0,706, - 708,3,64,32,0,707,706,1,0,0,0,707,708,1,0,0,0,708,722,1,0,0,0,709, - 711,5,469,0,0,710,712,3,66,33,0,711,710,1,0,0,0,711,712,1,0,0,0, - 712,722,1,0,0,0,713,715,5,321,0,0,714,716,3,68,34,0,715,714,1,0, - 0,0,715,716,1,0,0,0,716,722,1,0,0,0,717,719,5,294,0,0,718,720,3, - 62,31,0,719,718,1,0,0,0,719,720,1,0,0,0,720,722,1,0,0,0,721,684, - 1,0,0,0,721,685,1,0,0,0,721,689,1,0,0,0,721,701,1,0,0,0,721,705, - 1,0,0,0,721,709,1,0,0,0,721,713,1,0,0,0,721,717,1,0,0,0,722,57,1, - 0,0,0,723,724,5,516,0,0,724,725,3,358,179,0,725,726,5,517,0,0,726, - 59,1,0,0,0,727,728,5,516,0,0,728,731,3,358,179,0,729,730,5,520,0, - 0,730,732,3,358,179,0,731,729,1,0,0,0,731,732,1,0,0,0,732,733,1, - 0,0,0,733,734,5,517,0,0,734,61,1,0,0,0,735,736,5,516,0,0,736,739, - 3,356,178,0,737,738,5,520,0,0,738,740,3,356,178,0,739,737,1,0,0, - 0,739,740,1,0,0,0,740,741,1,0,0,0,741,742,5,517,0,0,742,63,1,0,0, - 0,743,744,5,507,0,0,744,745,3,56,28,0,745,746,5,506,0,0,746,65,1, - 0,0,0,747,748,5,507,0,0,748,749,3,56,28,0,749,750,5,520,0,0,750, - 751,3,56,28,0,751,752,1,0,0,0,752,753,5,506,0,0,753,67,1,0,0,0,754, - 755,5,507,0,0,755,756,3,52,26,0,756,763,3,56,28,0,757,758,5,520, - 0,0,758,759,3,52,26,0,759,760,3,56,28,0,760,762,1,0,0,0,761,757, - 1,0,0,0,762,765,1,0,0,0,763,761,1,0,0,0,763,764,1,0,0,0,764,766, - 1,0,0,0,765,763,1,0,0,0,766,767,5,506,0,0,767,783,1,0,0,0,768,769, - 5,516,0,0,769,770,3,52,26,0,770,777,3,56,28,0,771,772,5,520,0,0, - 772,773,3,52,26,0,773,774,3,56,28,0,774,776,1,0,0,0,775,771,1,0, - 0,0,776,779,1,0,0,0,777,775,1,0,0,0,777,778,1,0,0,0,778,780,1,0, - 0,0,779,777,1,0,0,0,780,781,5,517,0,0,781,783,1,0,0,0,782,754,1, - 0,0,0,782,768,1,0,0,0,783,69,1,0,0,0,784,785,5,64,0,0,785,787,3, - 84,42,0,786,784,1,0,0,0,786,787,1,0,0,0,787,788,1,0,0,0,788,789, - 5,288,0,0,789,792,5,466,0,0,790,791,5,241,0,0,791,793,5,125,0,0, - 792,790,1,0,0,0,792,793,1,0,0,0,793,799,1,0,0,0,794,796,5,241,0, - 0,795,794,1,0,0,0,795,796,1,0,0,0,796,797,1,0,0,0,797,799,5,244, - 0,0,798,786,1,0,0,0,798,795,1,0,0,0,799,71,1,0,0,0,800,801,3,50, - 25,0,801,802,3,56,28,0,802,805,5,218,0,0,803,804,5,151,0,0,804,806, - 3,74,37,0,805,803,1,0,0,0,805,806,1,0,0,0,806,808,1,0,0,0,807,809, - 5,423,0,0,808,807,1,0,0,0,808,809,1,0,0,0,809,73,1,0,0,0,810,811, - 5,537,0,0,811,75,1,0,0,0,812,813,3,50,25,0,813,814,5,17,0,0,814, - 817,3,78,39,0,815,816,5,59,0,0,816,818,5,537,0,0,817,815,1,0,0,0, - 817,818,1,0,0,0,818,77,1,0,0,0,819,820,3,256,128,0,820,79,1,0,0, - 0,821,822,5,424,0,0,822,823,5,146,0,0,823,824,3,52,26,0,824,825, - 5,17,0,0,825,826,3,256,128,0,826,81,1,0,0,0,827,828,5,64,0,0,828, - 830,3,84,42,0,829,827,1,0,0,0,829,830,1,0,0,0,830,831,1,0,0,0,831, - 832,5,288,0,0,832,833,5,466,0,0,833,834,3,54,27,0,834,835,5,241, - 0,0,835,836,5,125,0,0,836,83,1,0,0,0,837,838,3,302,151,0,838,85, - 1,0,0,0,839,840,5,277,0,0,840,841,5,146,0,0,841,842,5,371,0,0,842, - 87,1,0,0,0,843,844,5,269,0,0,844,845,5,34,0,0,845,846,3,90,45,0, - 846,89,1,0,0,0,847,848,5,516,0,0,848,853,3,92,46,0,849,850,5,520, - 0,0,850,852,3,92,46,0,851,849,1,0,0,0,852,855,1,0,0,0,853,851,1, - 0,0,0,853,854,1,0,0,0,854,856,1,0,0,0,855,853,1,0,0,0,856,857,5, - 517,0,0,857,91,1,0,0,0,858,871,3,52,26,0,859,860,5,516,0,0,860,865, - 3,94,47,0,861,862,5,520,0,0,862,864,3,94,47,0,863,861,1,0,0,0,864, - 867,1,0,0,0,865,863,1,0,0,0,865,866,1,0,0,0,866,868,1,0,0,0,867, - 865,1,0,0,0,868,869,5,517,0,0,869,871,1,0,0,0,870,858,1,0,0,0,870, - 859,1,0,0,0,871,93,1,0,0,0,872,875,3,278,139,0,873,875,3,352,176, - 0,874,872,1,0,0,0,874,873,1,0,0,0,875,95,1,0,0,0,876,877,5,202,0, - 0,877,886,3,320,160,0,878,882,5,516,0,0,879,881,3,98,49,0,880,879, - 1,0,0,0,881,884,1,0,0,0,882,880,1,0,0,0,882,883,1,0,0,0,883,885, - 1,0,0,0,884,882,1,0,0,0,885,887,5,517,0,0,886,878,1,0,0,0,886,887, - 1,0,0,0,887,97,1,0,0,0,888,889,7,12,0,0,889,893,7,13,0,0,890,891, - 7,14,0,0,891,893,7,15,0,0,892,888,1,0,0,0,892,890,1,0,0,0,893,99, - 1,0,0,0,894,895,5,72,0,0,895,896,5,441,0,0,896,897,3,312,156,0,897, - 898,3,328,164,0,898,101,1,0,0,0,899,900,5,72,0,0,900,902,5,447,0, - 0,901,903,3,330,165,0,902,901,1,0,0,0,902,903,1,0,0,0,903,904,1, - 0,0,0,904,907,3,316,158,0,905,906,5,59,0,0,906,908,5,537,0,0,907, - 905,1,0,0,0,907,908,1,0,0,0,908,909,1,0,0,0,909,910,3,328,164,0, - 910,103,1,0,0,0,911,913,5,72,0,0,912,914,5,497,0,0,913,912,1,0,0, - 0,913,914,1,0,0,0,914,915,1,0,0,0,915,917,5,501,0,0,916,918,3,330, - 165,0,917,916,1,0,0,0,917,918,1,0,0,0,918,919,1,0,0,0,919,921,3, - 324,162,0,920,922,3,54,27,0,921,920,1,0,0,0,921,922,1,0,0,0,922, - 925,1,0,0,0,923,924,5,59,0,0,924,926,5,537,0,0,925,923,1,0,0,0,925, - 926,1,0,0,0,926,927,1,0,0,0,927,928,5,17,0,0,928,929,3,156,78,0, - 929,105,1,0,0,0,930,934,5,72,0,0,931,935,5,497,0,0,932,933,5,497, - 0,0,933,935,5,370,0,0,934,931,1,0,0,0,934,932,1,0,0,0,934,935,1, - 0,0,0,935,936,1,0,0,0,936,938,5,153,0,0,937,939,3,330,165,0,938, - 937,1,0,0,0,938,939,1,0,0,0,939,940,1,0,0,0,940,941,3,268,134,0, - 941,942,5,17,0,0,942,945,3,302,151,0,943,944,5,195,0,0,944,946,7, - 16,0,0,945,943,1,0,0,0,945,946,1,0,0,0,946,948,1,0,0,0,947,949,3, - 108,54,0,948,947,1,0,0,0,948,949,1,0,0,0,949,107,1,0,0,0,950,951, - 5,412,0,0,951,952,5,463,0,0,952,958,3,110,55,0,953,954,5,520,0,0, - 954,955,5,463,0,0,955,957,3,110,55,0,956,953,1,0,0,0,957,960,1,0, - 0,0,958,956,1,0,0,0,958,959,1,0,0,0,959,109,1,0,0,0,960,958,1,0, - 0,0,961,962,5,537,0,0,962,111,1,0,0,0,963,964,5,8,0,0,964,966,5, - 373,0,0,965,967,3,332,166,0,966,965,1,0,0,0,966,967,1,0,0,0,967, - 968,1,0,0,0,968,974,3,320,160,0,969,975,3,114,57,0,970,975,3,116, - 58,0,971,975,3,118,59,0,972,975,3,120,60,0,973,975,3,122,61,0,974, - 969,1,0,0,0,974,970,1,0,0,0,974,971,1,0,0,0,974,972,1,0,0,0,974, - 973,1,0,0,0,975,113,1,0,0,0,976,978,5,311,0,0,977,979,3,326,163, - 0,978,977,1,0,0,0,978,979,1,0,0,0,979,980,1,0,0,0,980,981,5,388, - 0,0,981,982,3,326,163,0,982,115,1,0,0,0,983,984,5,340,0,0,984,985, - 3,334,167,0,985,117,1,0,0,0,986,987,5,437,0,0,987,988,5,64,0,0,988, - 989,3,84,42,0,989,990,5,288,0,0,990,991,5,466,0,0,991,993,3,54,27, - 0,992,994,3,124,62,0,993,992,1,0,0,0,993,994,1,0,0,0,994,119,1,0, - 0,0,995,996,5,116,0,0,996,997,5,64,0,0,997,998,3,84,42,0,998,121, - 1,0,0,0,999,1000,5,437,0,0,1000,1001,5,403,0,0,1001,1002,3,54,27, - 0,1002,123,1,0,0,0,1003,1004,5,241,0,0,1004,1005,5,125,0,0,1005, - 125,1,0,0,0,1006,1007,5,8,0,0,1007,1008,5,501,0,0,1008,1012,3,322, - 161,0,1009,1013,3,114,57,0,1010,1011,5,17,0,0,1011,1013,3,156,78, - 0,1012,1009,1,0,0,0,1012,1010,1,0,0,0,1013,127,1,0,0,0,1014,1015, - 5,8,0,0,1015,1016,5,447,0,0,1016,1017,3,314,157,0,1017,1018,3,116, - 58,0,1018,129,1,0,0,0,1019,1023,5,8,0,0,1020,1024,5,497,0,0,1021, - 1022,5,497,0,0,1022,1024,5,370,0,0,1023,1020,1,0,0,0,1023,1021,1, - 0,0,0,1023,1024,1,0,0,0,1024,1025,1,0,0,0,1025,1027,5,153,0,0,1026, - 1028,3,332,166,0,1027,1026,1,0,0,0,1027,1028,1,0,0,0,1028,1029,1, - 0,0,0,1029,1030,3,270,135,0,1030,1031,5,17,0,0,1031,1034,3,302,151, - 0,1032,1033,5,195,0,0,1033,1035,7,16,0,0,1034,1032,1,0,0,0,1034, - 1035,1,0,0,0,1035,131,1,0,0,0,1036,1037,5,116,0,0,1037,1039,5,441, - 0,0,1038,1040,3,332,166,0,1039,1038,1,0,0,0,1039,1040,1,0,0,0,1040, - 1041,1,0,0,0,1041,1042,3,310,155,0,1042,133,1,0,0,0,1043,1045,5, - 116,0,0,1044,1046,5,497,0,0,1045,1044,1,0,0,0,1045,1046,1,0,0,0, - 1046,1047,1,0,0,0,1047,1049,5,373,0,0,1048,1050,3,332,166,0,1049, - 1048,1,0,0,0,1049,1050,1,0,0,0,1050,1051,1,0,0,0,1051,1052,3,320, - 160,0,1052,135,1,0,0,0,1053,1054,5,116,0,0,1054,1056,5,447,0,0,1055, - 1057,3,332,166,0,1056,1055,1,0,0,0,1056,1057,1,0,0,0,1057,1058,1, - 0,0,0,1058,1060,3,314,157,0,1059,1061,7,17,0,0,1060,1059,1,0,0,0, - 1060,1061,1,0,0,0,1061,137,1,0,0,0,1062,1064,5,116,0,0,1063,1065, - 5,497,0,0,1064,1063,1,0,0,0,1064,1065,1,0,0,0,1065,1066,1,0,0,0, - 1066,1068,5,501,0,0,1067,1069,3,332,166,0,1068,1067,1,0,0,0,1068, - 1069,1,0,0,0,1069,1070,1,0,0,0,1070,1071,3,322,161,0,1071,139,1, - 0,0,0,1072,1076,5,116,0,0,1073,1077,5,497,0,0,1074,1075,5,497,0, - 0,1075,1077,5,370,0,0,1076,1073,1,0,0,0,1076,1074,1,0,0,0,1076,1077, - 1,0,0,0,1077,1078,1,0,0,0,1078,1080,5,153,0,0,1079,1081,3,332,166, - 0,1080,1079,1,0,0,0,1080,1081,1,0,0,0,1081,1082,1,0,0,0,1082,1083, - 3,270,135,0,1083,141,1,0,0,0,1084,1086,5,132,0,0,1085,1084,1,0,0, - 0,1085,1086,1,0,0,0,1086,1087,1,0,0,0,1087,1092,3,144,72,0,1088, - 1092,3,152,76,0,1089,1090,5,132,0,0,1090,1092,3,154,77,0,1091,1085, - 1,0,0,0,1091,1088,1,0,0,0,1091,1089,1,0,0,0,1092,143,1,0,0,0,1093, - 1094,5,177,0,0,1094,1095,7,18,0,0,1095,1104,3,320,160,0,1096,1098, - 3,146,73,0,1097,1096,1,0,0,0,1097,1098,1,0,0,0,1098,1100,1,0,0,0, - 1099,1101,3,54,27,0,1100,1099,1,0,0,0,1100,1101,1,0,0,0,1101,1102, - 1,0,0,0,1102,1105,3,156,78,0,1103,1105,3,148,74,0,1104,1097,1,0, - 0,0,1104,1103,1,0,0,0,1105,145,1,0,0,0,1106,1107,5,268,0,0,1107, - 1108,3,334,167,0,1108,147,1,0,0,0,1109,1110,5,414,0,0,1110,1115, - 3,150,75,0,1111,1112,5,520,0,0,1112,1114,3,150,75,0,1113,1111,1, - 0,0,0,1114,1117,1,0,0,0,1115,1113,1,0,0,0,1115,1116,1,0,0,0,1116, - 149,1,0,0,0,1117,1115,1,0,0,0,1118,1119,5,516,0,0,1119,1124,3,352, - 176,0,1120,1121,5,520,0,0,1121,1123,3,352,176,0,1122,1120,1,0,0, - 0,1123,1126,1,0,0,0,1124,1122,1,0,0,0,1124,1125,1,0,0,0,1125,1127, - 1,0,0,0,1126,1124,1,0,0,0,1127,1128,5,517,0,0,1128,151,1,0,0,0,1129, - 1130,5,24,0,0,1130,1131,5,354,0,0,1131,1132,5,340,0,0,1132,1136, - 5,521,0,0,1133,1134,3,144,72,0,1134,1135,5,521,0,0,1135,1137,1,0, - 0,0,1136,1133,1,0,0,0,1137,1138,1,0,0,0,1138,1136,1,0,0,0,1138,1139, - 1,0,0,0,1139,1140,1,0,0,0,1140,1141,5,122,0,0,1141,153,1,0,0,0,1142, - 1143,5,354,0,0,1143,1144,5,340,0,0,1144,1148,5,24,0,0,1145,1146, - 3,144,72,0,1146,1147,5,521,0,0,1147,1149,1,0,0,0,1148,1145,1,0,0, - 0,1149,1150,1,0,0,0,1150,1148,1,0,0,0,1150,1151,1,0,0,0,1151,1152, - 1,0,0,0,1152,1153,5,122,0,0,1153,155,1,0,0,0,1154,1155,6,78,-1,0, - 1155,1178,3,158,79,0,1156,1157,3,160,80,0,1157,1158,3,156,78,5,1158, - 1178,1,0,0,0,1159,1160,5,516,0,0,1160,1161,3,156,78,0,1161,1162, - 5,517,0,0,1162,1178,1,0,0,0,1163,1165,3,168,84,0,1164,1166,3,228, - 114,0,1165,1164,1,0,0,0,1165,1166,1,0,0,0,1166,1168,1,0,0,0,1167, - 1169,3,232,116,0,1168,1167,1,0,0,0,1168,1169,1,0,0,0,1169,1178,1, - 0,0,0,1170,1172,3,166,83,0,1171,1173,3,228,114,0,1172,1171,1,0,0, - 0,1172,1173,1,0,0,0,1173,1175,1,0,0,0,1174,1176,3,232,116,0,1175, - 1174,1,0,0,0,1175,1176,1,0,0,0,1176,1178,1,0,0,0,1177,1154,1,0,0, - 0,1177,1156,1,0,0,0,1177,1159,1,0,0,0,1177,1163,1,0,0,0,1177,1170, - 1,0,0,0,1178,1193,1,0,0,0,1179,1180,10,3,0,0,1180,1182,7,19,0,0, - 1181,1183,5,5,0,0,1182,1181,1,0,0,0,1182,1183,1,0,0,0,1183,1184, - 1,0,0,0,1184,1186,3,156,78,0,1185,1187,3,228,114,0,1186,1185,1,0, - 0,0,1186,1187,1,0,0,0,1187,1189,1,0,0,0,1188,1190,3,232,116,0,1189, - 1188,1,0,0,0,1189,1190,1,0,0,0,1190,1192,1,0,0,0,1191,1179,1,0,0, - 0,1192,1195,1,0,0,0,1193,1191,1,0,0,0,1193,1194,1,0,0,0,1194,157, - 1,0,0,0,1195,1193,1,0,0,0,1196,1197,5,414,0,0,1197,1202,3,256,128, - 0,1198,1199,5,520,0,0,1199,1201,3,256,128,0,1200,1198,1,0,0,0,1201, - 1204,1,0,0,0,1202,1200,1,0,0,0,1202,1203,1,0,0,0,1203,159,1,0,0, - 0,1204,1202,1,0,0,0,1205,1206,5,433,0,0,1206,1211,3,162,81,0,1207, - 1208,5,520,0,0,1208,1210,3,162,81,0,1209,1207,1,0,0,0,1210,1213, - 1,0,0,0,1211,1209,1,0,0,0,1211,1212,1,0,0,0,1212,161,1,0,0,0,1213, - 1211,1,0,0,0,1214,1226,3,164,82,0,1215,1216,5,516,0,0,1216,1221, - 3,52,26,0,1217,1218,5,520,0,0,1218,1220,3,52,26,0,1219,1217,1,0, - 0,0,1220,1223,1,0,0,0,1221,1219,1,0,0,0,1221,1222,1,0,0,0,1222,1224, - 1,0,0,0,1223,1221,1,0,0,0,1224,1225,5,517,0,0,1225,1227,1,0,0,0, - 1226,1215,1,0,0,0,1226,1227,1,0,0,0,1227,1228,1,0,0,0,1228,1229, - 5,17,0,0,1229,1230,5,516,0,0,1230,1231,3,156,78,0,1231,1232,5,517, - 0,0,1232,163,1,0,0,0,1233,1234,3,302,151,0,1234,165,1,0,0,0,1235, - 1237,3,168,84,0,1236,1238,3,174,87,0,1237,1236,1,0,0,0,1237,1238, - 1,0,0,0,1238,1240,1,0,0,0,1239,1241,3,202,101,0,1240,1239,1,0,0, - 0,1240,1241,1,0,0,0,1241,1243,1,0,0,0,1242,1244,3,204,102,0,1243, - 1242,1,0,0,0,1243,1244,1,0,0,0,1244,1246,1,0,0,0,1245,1247,3,218, - 109,0,1246,1245,1,0,0,0,1246,1247,1,0,0,0,1247,1249,1,0,0,0,1248, - 1250,3,220,110,0,1249,1248,1,0,0,0,1249,1250,1,0,0,0,1250,1256,1, - 0,0,0,1251,1252,3,168,84,0,1252,1253,3,174,87,0,1253,1254,3,226, - 113,0,1254,1256,1,0,0,0,1255,1235,1,0,0,0,1255,1251,1,0,0,0,1256, - 167,1,0,0,0,1257,1259,5,336,0,0,1258,1260,3,362,181,0,1259,1258, - 1,0,0,0,1259,1260,1,0,0,0,1260,1270,1,0,0,0,1261,1271,5,527,0,0, - 1262,1267,3,170,85,0,1263,1264,5,520,0,0,1264,1266,3,170,85,0,1265, - 1263,1,0,0,0,1266,1269,1,0,0,0,1267,1265,1,0,0,0,1267,1268,1,0,0, - 0,1268,1271,1,0,0,0,1269,1267,1,0,0,0,1270,1261,1,0,0,0,1270,1262, - 1,0,0,0,1271,169,1,0,0,0,1272,1288,3,172,86,0,1273,1278,3,52,26, - 0,1274,1276,5,17,0,0,1275,1274,1,0,0,0,1275,1276,1,0,0,0,1276,1277, - 1,0,0,0,1277,1279,3,256,128,0,1278,1275,1,0,0,0,1278,1279,1,0,0, - 0,1279,1288,1,0,0,0,1280,1285,3,256,128,0,1281,1283,5,17,0,0,1282, - 1281,1,0,0,0,1282,1283,1,0,0,0,1283,1284,1,0,0,0,1284,1286,3,52, - 26,0,1285,1282,1,0,0,0,1285,1286,1,0,0,0,1286,1288,1,0,0,0,1287, - 1272,1,0,0,0,1287,1273,1,0,0,0,1287,1280,1,0,0,0,1288,171,1,0,0, - 0,1289,1290,3,266,133,0,1290,1291,5,262,0,0,1291,1292,3,224,112, - 0,1292,1293,5,17,0,0,1293,1294,3,302,151,0,1294,1302,1,0,0,0,1295, - 1296,3,266,133,0,1296,1297,5,262,0,0,1297,1298,3,294,147,0,1298, - 1299,5,17,0,0,1299,1300,3,302,151,0,1300,1302,1,0,0,0,1301,1289, - 1,0,0,0,1301,1295,1,0,0,0,1302,173,1,0,0,0,1303,1304,5,151,0,0,1304, - 1305,3,176,88,0,1305,175,1,0,0,0,1306,1307,6,88,-1,0,1307,1312,3, - 178,89,0,1308,1309,5,520,0,0,1309,1311,3,178,89,0,1310,1308,1,0, - 0,0,1311,1314,1,0,0,0,1312,1310,1,0,0,0,1312,1313,1,0,0,0,1313,1318, - 1,0,0,0,1314,1312,1,0,0,0,1315,1318,3,186,93,0,1316,1318,3,188,94, - 0,1317,1306,1,0,0,0,1317,1315,1,0,0,0,1317,1316,1,0,0,0,1318,1340, - 1,0,0,0,1319,1320,10,3,0,0,1320,1321,5,73,0,0,1321,1322,5,185,0, - 0,1322,1339,3,176,88,4,1323,1325,10,4,0,0,1324,1326,5,233,0,0,1325, - 1324,1,0,0,0,1325,1326,1,0,0,0,1326,1328,1,0,0,0,1327,1329,7,20, - 0,0,1328,1327,1,0,0,0,1328,1329,1,0,0,0,1329,1331,1,0,0,0,1330,1332, - 5,261,0,0,1331,1330,1,0,0,0,1331,1332,1,0,0,0,1332,1333,1,0,0,0, - 1333,1334,5,185,0,0,1334,1336,3,176,88,0,1335,1337,3,200,100,0,1336, - 1335,1,0,0,0,1336,1337,1,0,0,0,1337,1339,1,0,0,0,1338,1319,1,0,0, - 0,1338,1323,1,0,0,0,1339,1342,1,0,0,0,1340,1338,1,0,0,0,1340,1341, - 1,0,0,0,1341,177,1,0,0,0,1342,1340,1,0,0,0,1343,1345,3,180,90,0, - 1344,1346,3,292,146,0,1345,1344,1,0,0,0,1345,1346,1,0,0,0,1346,179, - 1,0,0,0,1347,1349,5,373,0,0,1348,1347,1,0,0,0,1348,1349,1,0,0,0, - 1349,1350,1,0,0,0,1350,1352,3,320,160,0,1351,1353,3,182,91,0,1352, - 1351,1,0,0,0,1352,1353,1,0,0,0,1353,1387,1,0,0,0,1354,1356,3,322, - 161,0,1355,1357,3,182,91,0,1356,1355,1,0,0,0,1356,1357,1,0,0,0,1357, - 1387,1,0,0,0,1358,1359,5,198,0,0,1359,1360,5,373,0,0,1360,1361,5, - 516,0,0,1361,1362,3,270,135,0,1362,1363,5,516,0,0,1363,1368,3,272, - 136,0,1364,1365,5,520,0,0,1365,1367,3,272,136,0,1366,1364,1,0,0, - 0,1367,1370,1,0,0,0,1368,1366,1,0,0,0,1368,1369,1,0,0,0,1369,1371, - 1,0,0,0,1370,1368,1,0,0,0,1371,1372,5,517,0,0,1372,1373,5,517,0, - 0,1373,1387,1,0,0,0,1374,1376,5,198,0,0,1375,1374,1,0,0,0,1375,1376, - 1,0,0,0,1376,1377,1,0,0,0,1377,1378,5,516,0,0,1378,1379,3,156,78, - 0,1379,1380,5,517,0,0,1380,1387,1,0,0,0,1381,1382,5,405,0,0,1382, - 1383,5,516,0,0,1383,1384,3,256,128,0,1384,1385,5,517,0,0,1385,1387, - 1,0,0,0,1386,1348,1,0,0,0,1386,1354,1,0,0,0,1386,1358,1,0,0,0,1386, - 1375,1,0,0,0,1386,1381,1,0,0,0,1387,181,1,0,0,0,1388,1389,5,146, - 0,0,1389,1390,5,371,0,0,1390,1391,5,17,0,0,1391,1392,5,249,0,0,1392, - 1393,3,184,92,0,1393,183,1,0,0,0,1394,1395,3,256,128,0,1395,185, - 1,0,0,0,1396,1397,5,516,0,0,1397,1398,3,148,74,0,1398,1399,5,517, - 0,0,1399,1400,3,292,146,0,1400,187,1,0,0,0,1401,1402,5,373,0,0,1402, - 1403,5,516,0,0,1403,1404,3,190,95,0,1404,1405,5,517,0,0,1405,189, - 1,0,0,0,1406,1407,3,192,96,0,1407,1408,5,516,0,0,1408,1413,3,194, - 97,0,1409,1410,5,520,0,0,1410,1412,3,194,97,0,1411,1409,1,0,0,0, - 1412,1415,1,0,0,0,1413,1411,1,0,0,0,1413,1414,1,0,0,0,1414,1416, - 1,0,0,0,1415,1413,1,0,0,0,1416,1417,5,517,0,0,1417,191,1,0,0,0,1418, - 1419,7,21,0,0,1419,193,1,0,0,0,1420,1421,5,373,0,0,1421,1436,3,216, - 108,0,1422,1436,3,198,99,0,1423,1436,3,280,140,0,1424,1425,5,446, - 0,0,1425,1426,5,536,0,0,1426,1427,5,373,0,0,1427,1436,3,216,108, - 0,1428,1429,5,498,0,0,1429,1430,5,536,0,0,1430,1436,3,198,99,0,1431, - 1432,3,196,98,0,1432,1433,5,536,0,0,1433,1434,3,280,140,0,1434,1436, - 1,0,0,0,1435,1420,1,0,0,0,1435,1422,1,0,0,0,1435,1423,1,0,0,0,1435, + 374,376,378,380,382,0,47,2,0,109,109,450,450,3,0,45,45,128,128,188, + 188,4,0,42,42,90,90,422,422,464,464,2,0,441,441,447,447,2,0,151, + 151,170,170,2,0,437,437,489,489,2,0,482,485,487,487,3,0,32,32,91, + 91,244,244,11,0,28,29,35,35,46,46,92,92,178,179,344,344,360,360, + 378,378,381,381,387,387,416,417,2,0,433,433,435,435,4,0,101,102, + 115,115,144,144,246,246,2,0,13,13,231,231,2,0,455,455,462,462,3, + 0,5,5,270,270,444,444,3,0,266,266,455,455,462,462,3,0,425,425,458, + 458,477,477,3,0,330,330,465,465,481,481,2,0,440,440,490,490,2,0, + 183,183,265,265,3,0,130,130,180,180,402,402,4,0,152,152,174,174, + 201,201,317,317,3,0,445,445,459,459,499,499,4,0,250,250,446,446, + 494,496,498,498,2,0,74,74,320,320,3,0,459,459,492,492,499,499,2, + 0,439,439,450,450,2,0,457,457,467,467,4,0,140,140,244,244,397,397, + 404,404,2,0,19,19,369,369,2,0,5,5,11,11,2,0,509,509,529,530,4,0, + 452,452,527,527,531,531,534,534,2,0,529,530,532,532,1,0,529,530, + 1,0,538,539,2,0,538,538,541,541,4,0,452,452,527,527,529,531,533, + 534,3,0,241,241,508,509,529,530,2,0,140,140,397,397,2,0,5,5,113, + 113,10,0,97,97,165,165,222,222,229,229,334,334,436,436,470,470,472, + 472,488,488,502,502,15,0,97,97,165,165,222,222,229,229,334,334,427, + 427,436,436,442,442,448,449,454,454,460,460,470,475,488,488,491, + 491,502,503,11,0,5,5,13,13,33,33,78,78,84,85,113,113,200,200,207, + 208,389,389,413,413,527,527,3,0,78,78,84,85,207,208,2,0,91,91,378, + 379,52,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,194,194,197,197,199,199,201,201,205,205,209,209, + 214,214,220,220,222,223,229,229,243,243,245,245,264,264,276,276, + 281,281,283,283,293,293,317,317,321,323,334,334,357,358,364,364, + 367,367,380,380,395,395,398,399,408,408,419,420,436,436,469,469, + 488,488,502,502,1,0,437,504,2505,0,387,1,0,0,0,2,397,1,0,0,0,4,411, + 1,0,0,0,6,413,1,0,0,0,8,429,1,0,0,0,10,433,1,0,0,0,12,435,1,0,0, + 0,14,438,1,0,0,0,16,449,1,0,0,0,18,457,1,0,0,0,20,465,1,0,0,0,22, + 467,1,0,0,0,24,519,1,0,0,0,26,521,1,0,0,0,28,528,1,0,0,0,30,532, + 1,0,0,0,32,536,1,0,0,0,34,540,1,0,0,0,36,594,1,0,0,0,38,600,1,0, + 0,0,40,606,1,0,0,0,42,608,1,0,0,0,44,650,1,0,0,0,46,664,1,0,0,0, + 48,666,1,0,0,0,50,677,1,0,0,0,52,681,1,0,0,0,54,683,1,0,0,0,56,731, + 1,0,0,0,58,733,1,0,0,0,60,737,1,0,0,0,62,745,1,0,0,0,64,753,1,0, + 0,0,66,757,1,0,0,0,68,792,1,0,0,0,70,808,1,0,0,0,72,810,1,0,0,0, + 74,820,1,0,0,0,76,822,1,0,0,0,78,829,1,0,0,0,80,831,1,0,0,0,82,839, + 1,0,0,0,84,847,1,0,0,0,86,849,1,0,0,0,88,853,1,0,0,0,90,857,1,0, + 0,0,92,880,1,0,0,0,94,884,1,0,0,0,96,886,1,0,0,0,98,902,1,0,0,0, + 100,904,1,0,0,0,102,909,1,0,0,0,104,921,1,0,0,0,106,940,1,0,0,0, + 108,960,1,0,0,0,110,971,1,0,0,0,112,973,1,0,0,0,114,986,1,0,0,0, + 116,993,1,0,0,0,118,996,1,0,0,0,120,1005,1,0,0,0,122,1009,1,0,0, + 0,124,1013,1,0,0,0,126,1016,1,0,0,0,128,1024,1,0,0,0,130,1029,1, + 0,0,0,132,1046,1,0,0,0,134,1053,1,0,0,0,136,1063,1,0,0,0,138,1072, + 1,0,0,0,140,1082,1,0,0,0,142,1101,1,0,0,0,144,1103,1,0,0,0,146,1116, + 1,0,0,0,148,1119,1,0,0,0,150,1128,1,0,0,0,152,1139,1,0,0,0,154,1152, + 1,0,0,0,156,1187,1,0,0,0,158,1206,1,0,0,0,160,1215,1,0,0,0,162,1224, + 1,0,0,0,164,1243,1,0,0,0,166,1265,1,0,0,0,168,1267,1,0,0,0,170,1297, + 1,0,0,0,172,1311,1,0,0,0,174,1313,1,0,0,0,176,1327,1,0,0,0,178,1353, + 1,0,0,0,180,1386,1,0,0,0,182,1388,1,0,0,0,184,1394,1,0,0,0,186,1396, + 1,0,0,0,188,1401,1,0,0,0,190,1406,1,0,0,0,192,1418,1,0,0,0,194,1435, + 1,0,0,0,196,1437,1,0,0,0,198,1439,1,0,0,0,200,1448,1,0,0,0,202,1450, + 1,0,0,0,204,1453,1,0,0,0,206,1503,1,0,0,0,208,1505,1,0,0,0,210,1508, + 1,0,0,0,212,1510,1,0,0,0,214,1517,1,0,0,0,216,1519,1,0,0,0,218,1521, + 1,0,0,0,220,1524,1,0,0,0,222,1533,1,0,0,0,224,1538,1,0,0,0,226,1552, + 1,0,0,0,228,1580,1,0,0,0,230,1590,1,0,0,0,232,1598,1,0,0,0,234,1603, + 1,0,0,0,236,1635,1,0,0,0,238,1637,1,0,0,0,240,1646,1,0,0,0,242,1657, + 1,0,0,0,244,1669,1,0,0,0,246,1695,1,0,0,0,248,1697,1,0,0,0,250,1715, + 1,0,0,0,252,1717,1,0,0,0,254,1722,1,0,0,0,256,1725,1,0,0,0,258,1739, + 1,0,0,0,260,1825,1,0,0,0,262,1856,1,0,0,0,264,1862,1,0,0,0,266,1907, + 1,0,0,0,268,1984,1,0,0,0,270,1996,1,0,0,0,272,2002,1,0,0,0,274,2008, + 1,0,0,0,276,2012,1,0,0,0,278,2018,1,0,0,0,280,2020,1,0,0,0,282,2022, + 1,0,0,0,284,2026,1,0,0,0,286,2028,1,0,0,0,288,2033,1,0,0,0,290,2040, + 1,0,0,0,292,2044,1,0,0,0,294,2049,1,0,0,0,296,2059,1,0,0,0,298,2062, + 1,0,0,0,300,2068,1,0,0,0,302,2078,1,0,0,0,304,2080,1,0,0,0,306,2084, + 1,0,0,0,308,2095,1,0,0,0,310,2097,1,0,0,0,312,2099,1,0,0,0,314,2101, + 1,0,0,0,316,2106,1,0,0,0,318,2108,1,0,0,0,320,2110,1,0,0,0,322,2115, + 1,0,0,0,324,2132,1,0,0,0,326,2146,1,0,0,0,328,2160,1,0,0,0,330,2174, + 1,0,0,0,332,2176,1,0,0,0,334,2184,1,0,0,0,336,2187,1,0,0,0,338,2191, + 1,0,0,0,340,2194,1,0,0,0,342,2205,1,0,0,0,344,2215,1,0,0,0,346,2221, + 1,0,0,0,348,2229,1,0,0,0,350,2245,1,0,0,0,352,2254,1,0,0,0,354,2256, + 1,0,0,0,356,2258,1,0,0,0,358,2274,1,0,0,0,360,2276,1,0,0,0,362,2279, + 1,0,0,0,364,2281,1,0,0,0,366,2283,1,0,0,0,368,2285,1,0,0,0,370,2287, + 1,0,0,0,372,2289,1,0,0,0,374,2291,1,0,0,0,376,2293,1,0,0,0,378,2295, + 1,0,0,0,380,2297,1,0,0,0,382,2299,1,0,0,0,384,386,3,2,1,0,385,384, + 1,0,0,0,386,389,1,0,0,0,387,385,1,0,0,0,387,388,1,0,0,0,388,390, + 1,0,0,0,389,387,1,0,0,0,390,391,5,0,0,1,391,1,1,0,0,0,392,394,3, + 4,2,0,393,395,5,521,0,0,394,393,1,0,0,0,394,395,1,0,0,0,395,398, + 1,0,0,0,396,398,3,6,3,0,397,392,1,0,0,0,397,396,1,0,0,0,398,3,1, + 0,0,0,399,412,3,8,4,0,400,412,3,10,5,0,401,412,3,12,6,0,402,412, + 3,14,7,0,403,412,3,20,10,0,404,412,3,24,12,0,405,412,3,26,13,0,406, + 412,3,28,14,0,407,412,3,30,15,0,408,412,3,32,16,0,409,412,3,34,17, + 0,410,412,3,36,18,0,411,399,1,0,0,0,411,400,1,0,0,0,411,401,1,0, + 0,0,411,402,1,0,0,0,411,403,1,0,0,0,411,404,1,0,0,0,411,405,1,0, + 0,0,411,406,1,0,0,0,411,407,1,0,0,0,411,408,1,0,0,0,411,409,1,0, + 0,0,411,410,1,0,0,0,412,5,1,0,0,0,413,414,5,521,0,0,414,7,1,0,0, + 0,415,430,3,40,20,0,416,430,3,102,51,0,417,430,3,104,52,0,418,430, + 3,106,53,0,419,430,3,100,50,0,420,430,3,112,56,0,421,430,3,126,63, + 0,422,430,3,128,64,0,423,430,3,130,65,0,424,430,3,132,66,0,425,430, + 3,134,67,0,426,430,3,136,68,0,427,430,3,138,69,0,428,430,3,140,70, + 0,429,415,1,0,0,0,429,416,1,0,0,0,429,417,1,0,0,0,429,418,1,0,0, + 0,429,419,1,0,0,0,429,420,1,0,0,0,429,421,1,0,0,0,429,422,1,0,0, + 0,429,423,1,0,0,0,429,424,1,0,0,0,429,425,1,0,0,0,429,426,1,0,0, + 0,429,427,1,0,0,0,429,428,1,0,0,0,430,9,1,0,0,0,431,434,3,156,78, + 0,432,434,3,142,71,0,433,431,1,0,0,0,433,432,1,0,0,0,434,11,1,0, + 0,0,435,436,7,0,0,0,436,437,3,326,163,0,437,13,1,0,0,0,438,442,5, + 135,0,0,439,443,3,16,8,0,440,441,5,479,0,0,441,443,5,146,0,0,442, + 439,1,0,0,0,442,440,1,0,0,0,442,443,1,0,0,0,443,447,1,0,0,0,444, + 448,3,10,5,0,445,448,3,144,72,0,446,448,3,154,77,0,447,444,1,0,0, + 0,447,445,1,0,0,0,447,446,1,0,0,0,448,15,1,0,0,0,449,454,3,18,9, + 0,450,451,5,520,0,0,451,453,3,18,9,0,452,450,1,0,0,0,453,456,1,0, + 0,0,454,452,1,0,0,0,454,455,1,0,0,0,455,17,1,0,0,0,456,454,1,0,0, + 0,457,458,7,1,0,0,458,19,1,0,0,0,459,460,5,410,0,0,460,461,5,441, + 0,0,461,466,3,316,158,0,462,463,5,410,0,0,463,466,3,320,160,0,464, + 466,3,22,11,0,465,459,1,0,0,0,465,462,1,0,0,0,465,464,1,0,0,0,466, + 21,1,0,0,0,467,468,5,410,0,0,468,469,5,227,0,0,469,474,3,332,166, + 0,470,471,5,520,0,0,471,473,3,332,166,0,472,470,1,0,0,0,473,476, + 1,0,0,0,474,472,1,0,0,0,474,475,1,0,0,0,475,23,1,0,0,0,476,474,1, + 0,0,0,477,478,5,341,0,0,478,520,7,2,0,0,479,480,5,341,0,0,480,481, + 5,76,0,0,481,520,7,3,0,0,482,483,5,341,0,0,483,486,5,374,0,0,484, + 485,7,4,0,0,485,487,3,320,160,0,486,484,1,0,0,0,486,487,1,0,0,0, + 487,489,1,0,0,0,488,490,3,262,131,0,489,488,1,0,0,0,489,490,1,0, + 0,0,490,520,1,0,0,0,491,492,5,341,0,0,492,493,5,58,0,0,493,496,7, + 4,0,0,494,497,3,328,164,0,495,497,3,326,163,0,496,494,1,0,0,0,496, + 495,1,0,0,0,497,499,1,0,0,0,498,500,3,262,131,0,499,498,1,0,0,0, + 499,500,1,0,0,0,500,520,1,0,0,0,501,502,5,341,0,0,502,507,5,72,0, + 0,503,504,5,373,0,0,504,508,3,326,163,0,505,506,5,501,0,0,506,508, + 3,328,164,0,507,503,1,0,0,0,507,505,1,0,0,0,508,520,1,0,0,0,509, + 511,5,341,0,0,510,512,5,411,0,0,511,510,1,0,0,0,511,512,1,0,0,0, + 512,513,1,0,0,0,513,520,5,154,0,0,514,516,5,341,0,0,515,517,5,152, + 0,0,516,515,1,0,0,0,516,517,1,0,0,0,517,518,1,0,0,0,518,520,5,227, + 0,0,519,477,1,0,0,0,519,479,1,0,0,0,519,482,1,0,0,0,519,491,1,0, + 0,0,519,501,1,0,0,0,519,509,1,0,0,0,519,514,1,0,0,0,520,25,1,0,0, + 0,521,522,5,468,0,0,522,523,5,226,0,0,523,526,3,332,166,0,524,525, + 5,433,0,0,525,527,3,340,170,0,526,524,1,0,0,0,526,527,1,0,0,0,527, + 27,1,0,0,0,528,529,5,500,0,0,529,530,5,226,0,0,530,531,3,332,166, + 0,531,29,1,0,0,0,532,534,5,340,0,0,533,535,3,342,171,0,534,533,1, + 0,0,0,534,535,1,0,0,0,535,31,1,0,0,0,536,538,5,312,0,0,537,539,3, + 344,172,0,538,537,1,0,0,0,538,539,1,0,0,0,539,33,1,0,0,0,540,541, + 7,5,0,0,541,542,5,463,0,0,542,543,3,110,55,0,543,35,1,0,0,0,544, + 545,5,437,0,0,545,546,5,463,0,0,546,547,5,433,0,0,547,550,3,38,19, + 0,548,549,5,17,0,0,549,551,3,332,166,0,550,548,1,0,0,0,550,551,1, + 0,0,0,551,595,1,0,0,0,552,553,5,437,0,0,553,554,5,456,0,0,554,555, + 5,433,0,0,555,558,3,38,19,0,556,557,5,17,0,0,557,559,3,332,166,0, + 558,556,1,0,0,0,558,559,1,0,0,0,559,562,1,0,0,0,560,561,5,311,0, + 0,561,563,3,332,166,0,562,560,1,0,0,0,562,563,1,0,0,0,563,595,1, + 0,0,0,564,565,5,437,0,0,565,566,7,6,0,0,566,567,5,433,0,0,567,568, + 3,38,19,0,568,569,5,311,0,0,569,570,3,332,166,0,570,595,1,0,0,0, + 571,572,5,437,0,0,572,573,5,486,0,0,573,595,3,38,19,0,574,575,5, + 437,0,0,575,576,5,453,0,0,576,577,5,456,0,0,577,578,5,433,0,0,578, + 579,3,38,19,0,579,580,5,311,0,0,580,581,3,332,166,0,581,582,5,466, + 0,0,582,583,3,332,166,0,583,595,1,0,0,0,584,585,5,437,0,0,585,586, + 5,443,0,0,586,587,5,456,0,0,587,588,5,433,0,0,588,589,3,38,19,0, + 589,590,5,146,0,0,590,591,3,332,166,0,591,592,5,17,0,0,592,593,3, + 332,166,0,593,595,1,0,0,0,594,544,1,0,0,0,594,552,1,0,0,0,594,564, + 1,0,0,0,594,571,1,0,0,0,594,574,1,0,0,0,594,584,1,0,0,0,595,37,1, + 0,0,0,596,598,5,534,0,0,597,596,1,0,0,0,597,598,1,0,0,0,598,599, + 1,0,0,0,599,601,3,332,166,0,600,597,1,0,0,0,601,602,1,0,0,0,602, + 600,1,0,0,0,602,603,1,0,0,0,603,39,1,0,0,0,604,607,3,42,21,0,605, + 607,3,44,22,0,606,604,1,0,0,0,606,605,1,0,0,0,607,41,1,0,0,0,608, + 610,5,72,0,0,609,611,5,497,0,0,610,609,1,0,0,0,610,611,1,0,0,0,611, + 612,1,0,0,0,612,614,5,373,0,0,613,615,3,336,168,0,614,613,1,0,0, + 0,614,615,1,0,0,0,615,616,1,0,0,0,616,617,3,324,162,0,617,618,5, + 516,0,0,618,623,3,46,23,0,619,620,5,520,0,0,620,622,3,46,23,0,621, + 619,1,0,0,0,622,625,1,0,0,0,623,621,1,0,0,0,623,624,1,0,0,0,624, + 628,1,0,0,0,625,623,1,0,0,0,626,627,5,520,0,0,627,629,3,80,40,0, + 628,626,1,0,0,0,628,629,1,0,0,0,629,632,1,0,0,0,630,631,5,520,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,520,0,0,635,637,3,86,43,0,636,634,1,0,0,0,636,637, + 1,0,0,0,637,638,1,0,0,0,638,641,5,517,0,0,639,640,5,59,0,0,640,642, + 5,537,0,0,641,639,1,0,0,0,641,642,1,0,0,0,642,644,1,0,0,0,643,645, + 3,88,44,0,644,643,1,0,0,0,644,645,1,0,0,0,645,646,1,0,0,0,646,648, + 3,334,167,0,647,649,3,96,48,0,648,647,1,0,0,0,648,649,1,0,0,0,649, + 43,1,0,0,0,650,651,5,72,0,0,651,653,5,373,0,0,652,654,3,336,168, + 0,653,652,1,0,0,0,653,654,1,0,0,0,654,655,1,0,0,0,655,656,3,324, + 162,0,656,659,3,334,167,0,657,658,5,17,0,0,658,660,3,156,78,0,659, + 657,1,0,0,0,659,660,1,0,0,0,660,45,1,0,0,0,661,665,3,48,24,0,662, + 665,3,72,36,0,663,665,3,76,38,0,664,661,1,0,0,0,664,662,1,0,0,0, + 664,663,1,0,0,0,665,47,1,0,0,0,666,667,3,50,25,0,667,669,3,56,28, + 0,668,670,3,70,35,0,669,668,1,0,0,0,669,670,1,0,0,0,670,673,1,0, + 0,0,671,672,5,59,0,0,672,674,5,537,0,0,673,671,1,0,0,0,673,674,1, + 0,0,0,674,49,1,0,0,0,675,678,3,332,166,0,676,678,3,256,128,0,677, + 675,1,0,0,0,677,676,1,0,0,0,678,51,1,0,0,0,679,682,3,332,166,0,680, + 682,4,26,0,0,681,679,1,0,0,0,681,680,1,0,0,0,682,53,1,0,0,0,683, + 684,5,516,0,0,684,689,3,52,26,0,685,686,5,520,0,0,686,688,3,52,26, + 0,687,685,1,0,0,0,688,691,1,0,0,0,689,687,1,0,0,0,689,690,1,0,0, + 0,690,692,1,0,0,0,691,689,1,0,0,0,692,693,5,517,0,0,693,55,1,0,0, + 0,694,732,7,7,0,0,695,697,7,8,0,0,696,698,3,58,29,0,697,696,1,0, + 0,0,697,698,1,0,0,0,698,732,1,0,0,0,699,701,5,379,0,0,700,702,3, + 58,29,0,701,700,1,0,0,0,701,702,1,0,0,0,702,709,1,0,0,0,703,705, + 7,9,0,0,704,706,5,206,0,0,705,704,1,0,0,0,705,706,1,0,0,0,706,707, + 1,0,0,0,707,708,5,378,0,0,708,710,5,504,0,0,709,703,1,0,0,0,709, + 710,1,0,0,0,710,732,1,0,0,0,711,713,7,10,0,0,712,714,3,60,30,0,713, + 712,1,0,0,0,713,714,1,0,0,0,714,732,1,0,0,0,715,717,7,11,0,0,716, + 718,3,64,32,0,717,716,1,0,0,0,717,718,1,0,0,0,718,732,1,0,0,0,719, + 721,5,469,0,0,720,722,3,66,33,0,721,720,1,0,0,0,721,722,1,0,0,0, + 722,732,1,0,0,0,723,725,5,321,0,0,724,726,3,68,34,0,725,724,1,0, + 0,0,725,726,1,0,0,0,726,732,1,0,0,0,727,729,5,294,0,0,728,730,3, + 62,31,0,729,728,1,0,0,0,729,730,1,0,0,0,730,732,1,0,0,0,731,694, + 1,0,0,0,731,695,1,0,0,0,731,699,1,0,0,0,731,711,1,0,0,0,731,715, + 1,0,0,0,731,719,1,0,0,0,731,723,1,0,0,0,731,727,1,0,0,0,732,57,1, + 0,0,0,733,734,5,516,0,0,734,735,3,364,182,0,735,736,5,517,0,0,736, + 59,1,0,0,0,737,738,5,516,0,0,738,741,3,364,182,0,739,740,5,520,0, + 0,740,742,3,364,182,0,741,739,1,0,0,0,741,742,1,0,0,0,742,743,1, + 0,0,0,743,744,5,517,0,0,744,61,1,0,0,0,745,746,5,516,0,0,746,749, + 3,362,181,0,747,748,5,520,0,0,748,750,3,362,181,0,749,747,1,0,0, + 0,749,750,1,0,0,0,750,751,1,0,0,0,751,752,5,517,0,0,752,63,1,0,0, + 0,753,754,5,507,0,0,754,755,3,56,28,0,755,756,5,506,0,0,756,65,1, + 0,0,0,757,758,5,507,0,0,758,759,3,56,28,0,759,760,5,520,0,0,760, + 761,3,56,28,0,761,762,1,0,0,0,762,763,5,506,0,0,763,67,1,0,0,0,764, + 765,5,507,0,0,765,766,3,52,26,0,766,773,3,56,28,0,767,768,5,520, + 0,0,768,769,3,52,26,0,769,770,3,56,28,0,770,772,1,0,0,0,771,767, + 1,0,0,0,772,775,1,0,0,0,773,771,1,0,0,0,773,774,1,0,0,0,774,776, + 1,0,0,0,775,773,1,0,0,0,776,777,5,506,0,0,777,793,1,0,0,0,778,779, + 5,516,0,0,779,780,3,52,26,0,780,787,3,56,28,0,781,782,5,520,0,0, + 782,783,3,52,26,0,783,784,3,56,28,0,784,786,1,0,0,0,785,781,1,0, + 0,0,786,789,1,0,0,0,787,785,1,0,0,0,787,788,1,0,0,0,788,790,1,0, + 0,0,789,787,1,0,0,0,790,791,5,517,0,0,791,793,1,0,0,0,792,764,1, + 0,0,0,792,778,1,0,0,0,793,69,1,0,0,0,794,795,5,64,0,0,795,797,3, + 84,42,0,796,794,1,0,0,0,796,797,1,0,0,0,797,798,1,0,0,0,798,799, + 5,288,0,0,799,802,5,466,0,0,800,801,5,241,0,0,801,803,5,125,0,0, + 802,800,1,0,0,0,802,803,1,0,0,0,803,809,1,0,0,0,804,806,5,241,0, + 0,805,804,1,0,0,0,805,806,1,0,0,0,806,807,1,0,0,0,807,809,5,244, + 0,0,808,796,1,0,0,0,808,805,1,0,0,0,809,71,1,0,0,0,810,811,3,50, + 25,0,811,812,3,56,28,0,812,815,5,218,0,0,813,814,5,151,0,0,814,816, + 3,74,37,0,815,813,1,0,0,0,815,816,1,0,0,0,816,818,1,0,0,0,817,819, + 5,423,0,0,818,817,1,0,0,0,818,819,1,0,0,0,819,73,1,0,0,0,820,821, + 5,537,0,0,821,75,1,0,0,0,822,823,3,50,25,0,823,824,5,17,0,0,824, + 827,3,78,39,0,825,826,5,59,0,0,826,828,5,537,0,0,827,825,1,0,0,0, + 827,828,1,0,0,0,828,77,1,0,0,0,829,830,3,256,128,0,830,79,1,0,0, + 0,831,832,5,424,0,0,832,833,5,146,0,0,833,834,3,52,26,0,834,835, + 5,17,0,0,835,836,3,256,128,0,836,81,1,0,0,0,837,838,5,64,0,0,838, + 840,3,84,42,0,839,837,1,0,0,0,839,840,1,0,0,0,840,841,1,0,0,0,841, + 842,5,288,0,0,842,843,5,466,0,0,843,844,3,54,27,0,844,845,5,241, + 0,0,845,846,5,125,0,0,846,83,1,0,0,0,847,848,3,308,154,0,848,85, + 1,0,0,0,849,850,5,277,0,0,850,851,5,146,0,0,851,852,5,371,0,0,852, + 87,1,0,0,0,853,854,5,269,0,0,854,855,5,34,0,0,855,856,3,90,45,0, + 856,89,1,0,0,0,857,858,5,516,0,0,858,863,3,92,46,0,859,860,5,520, + 0,0,860,862,3,92,46,0,861,859,1,0,0,0,862,865,1,0,0,0,863,861,1, + 0,0,0,863,864,1,0,0,0,864,866,1,0,0,0,865,863,1,0,0,0,866,867,5, + 517,0,0,867,91,1,0,0,0,868,881,3,52,26,0,869,870,5,516,0,0,870,875, + 3,94,47,0,871,872,5,520,0,0,872,874,3,94,47,0,873,871,1,0,0,0,874, + 877,1,0,0,0,875,873,1,0,0,0,875,876,1,0,0,0,876,878,1,0,0,0,877, + 875,1,0,0,0,878,879,5,517,0,0,879,881,1,0,0,0,880,868,1,0,0,0,880, + 869,1,0,0,0,881,93,1,0,0,0,882,885,3,284,142,0,883,885,3,358,179, + 0,884,882,1,0,0,0,884,883,1,0,0,0,885,95,1,0,0,0,886,887,5,202,0, + 0,887,896,3,326,163,0,888,892,5,516,0,0,889,891,3,98,49,0,890,889, + 1,0,0,0,891,894,1,0,0,0,892,890,1,0,0,0,892,893,1,0,0,0,893,895, + 1,0,0,0,894,892,1,0,0,0,895,897,5,517,0,0,896,888,1,0,0,0,896,897, + 1,0,0,0,897,97,1,0,0,0,898,899,7,12,0,0,899,903,7,13,0,0,900,901, + 7,14,0,0,901,903,7,15,0,0,902,898,1,0,0,0,902,900,1,0,0,0,903,99, + 1,0,0,0,904,905,5,72,0,0,905,906,5,441,0,0,906,907,3,318,159,0,907, + 908,3,334,167,0,908,101,1,0,0,0,909,910,5,72,0,0,910,912,5,447,0, + 0,911,913,3,336,168,0,912,911,1,0,0,0,912,913,1,0,0,0,913,914,1, + 0,0,0,914,917,3,322,161,0,915,916,5,59,0,0,916,918,5,537,0,0,917, + 915,1,0,0,0,917,918,1,0,0,0,918,919,1,0,0,0,919,920,3,334,167,0, + 920,103,1,0,0,0,921,923,5,72,0,0,922,924,5,497,0,0,923,922,1,0,0, + 0,923,924,1,0,0,0,924,925,1,0,0,0,925,927,5,501,0,0,926,928,3,336, + 168,0,927,926,1,0,0,0,927,928,1,0,0,0,928,929,1,0,0,0,929,931,3, + 330,165,0,930,932,3,54,27,0,931,930,1,0,0,0,931,932,1,0,0,0,932, + 935,1,0,0,0,933,934,5,59,0,0,934,936,5,537,0,0,935,933,1,0,0,0,935, + 936,1,0,0,0,936,937,1,0,0,0,937,938,5,17,0,0,938,939,3,156,78,0, + 939,105,1,0,0,0,940,944,5,72,0,0,941,945,5,497,0,0,942,943,5,497, + 0,0,943,945,5,370,0,0,944,941,1,0,0,0,944,942,1,0,0,0,944,945,1, + 0,0,0,945,946,1,0,0,0,946,948,5,153,0,0,947,949,3,336,168,0,948, + 947,1,0,0,0,948,949,1,0,0,0,949,950,1,0,0,0,950,951,3,270,135,0, + 951,952,5,17,0,0,952,955,3,308,154,0,953,954,5,195,0,0,954,956,7, + 16,0,0,955,953,1,0,0,0,955,956,1,0,0,0,956,958,1,0,0,0,957,959,3, + 108,54,0,958,957,1,0,0,0,958,959,1,0,0,0,959,107,1,0,0,0,960,961, + 5,412,0,0,961,962,5,463,0,0,962,968,3,110,55,0,963,964,5,520,0,0, + 964,965,5,463,0,0,965,967,3,110,55,0,966,963,1,0,0,0,967,970,1,0, + 0,0,968,966,1,0,0,0,968,969,1,0,0,0,969,109,1,0,0,0,970,968,1,0, + 0,0,971,972,5,537,0,0,972,111,1,0,0,0,973,974,5,8,0,0,974,976,5, + 373,0,0,975,977,3,338,169,0,976,975,1,0,0,0,976,977,1,0,0,0,977, + 978,1,0,0,0,978,984,3,326,163,0,979,985,3,114,57,0,980,985,3,116, + 58,0,981,985,3,118,59,0,982,985,3,120,60,0,983,985,3,122,61,0,984, + 979,1,0,0,0,984,980,1,0,0,0,984,981,1,0,0,0,984,982,1,0,0,0,984, + 983,1,0,0,0,985,113,1,0,0,0,986,988,5,311,0,0,987,989,3,332,166, + 0,988,987,1,0,0,0,988,989,1,0,0,0,989,990,1,0,0,0,990,991,5,388, + 0,0,991,992,3,332,166,0,992,115,1,0,0,0,993,994,5,340,0,0,994,995, + 3,340,170,0,995,117,1,0,0,0,996,997,5,437,0,0,997,998,5,64,0,0,998, + 999,3,84,42,0,999,1000,5,288,0,0,1000,1001,5,466,0,0,1001,1003,3, + 54,27,0,1002,1004,3,124,62,0,1003,1002,1,0,0,0,1003,1004,1,0,0,0, + 1004,119,1,0,0,0,1005,1006,5,116,0,0,1006,1007,5,64,0,0,1007,1008, + 3,84,42,0,1008,121,1,0,0,0,1009,1010,5,437,0,0,1010,1011,5,403,0, + 0,1011,1012,3,54,27,0,1012,123,1,0,0,0,1013,1014,5,241,0,0,1014, + 1015,5,125,0,0,1015,125,1,0,0,0,1016,1017,5,8,0,0,1017,1018,5,501, + 0,0,1018,1022,3,328,164,0,1019,1023,3,114,57,0,1020,1021,5,17,0, + 0,1021,1023,3,156,78,0,1022,1019,1,0,0,0,1022,1020,1,0,0,0,1023, + 127,1,0,0,0,1024,1025,5,8,0,0,1025,1026,5,447,0,0,1026,1027,3,320, + 160,0,1027,1028,3,116,58,0,1028,129,1,0,0,0,1029,1033,5,8,0,0,1030, + 1034,5,497,0,0,1031,1032,5,497,0,0,1032,1034,5,370,0,0,1033,1030, + 1,0,0,0,1033,1031,1,0,0,0,1033,1034,1,0,0,0,1034,1035,1,0,0,0,1035, + 1037,5,153,0,0,1036,1038,3,338,169,0,1037,1036,1,0,0,0,1037,1038, + 1,0,0,0,1038,1039,1,0,0,0,1039,1040,3,272,136,0,1040,1041,5,17,0, + 0,1041,1044,3,308,154,0,1042,1043,5,195,0,0,1043,1045,7,16,0,0,1044, + 1042,1,0,0,0,1044,1045,1,0,0,0,1045,131,1,0,0,0,1046,1047,5,116, + 0,0,1047,1049,5,441,0,0,1048,1050,3,338,169,0,1049,1048,1,0,0,0, + 1049,1050,1,0,0,0,1050,1051,1,0,0,0,1051,1052,3,316,158,0,1052,133, + 1,0,0,0,1053,1055,5,116,0,0,1054,1056,5,497,0,0,1055,1054,1,0,0, + 0,1055,1056,1,0,0,0,1056,1057,1,0,0,0,1057,1059,5,373,0,0,1058,1060, + 3,338,169,0,1059,1058,1,0,0,0,1059,1060,1,0,0,0,1060,1061,1,0,0, + 0,1061,1062,3,326,163,0,1062,135,1,0,0,0,1063,1064,5,116,0,0,1064, + 1066,5,447,0,0,1065,1067,3,338,169,0,1066,1065,1,0,0,0,1066,1067, + 1,0,0,0,1067,1068,1,0,0,0,1068,1070,3,320,160,0,1069,1071,7,17,0, + 0,1070,1069,1,0,0,0,1070,1071,1,0,0,0,1071,137,1,0,0,0,1072,1074, + 5,116,0,0,1073,1075,5,497,0,0,1074,1073,1,0,0,0,1074,1075,1,0,0, + 0,1075,1076,1,0,0,0,1076,1078,5,501,0,0,1077,1079,3,338,169,0,1078, + 1077,1,0,0,0,1078,1079,1,0,0,0,1079,1080,1,0,0,0,1080,1081,3,328, + 164,0,1081,139,1,0,0,0,1082,1086,5,116,0,0,1083,1087,5,497,0,0,1084, + 1085,5,497,0,0,1085,1087,5,370,0,0,1086,1083,1,0,0,0,1086,1084,1, + 0,0,0,1086,1087,1,0,0,0,1087,1088,1,0,0,0,1088,1090,5,153,0,0,1089, + 1091,3,338,169,0,1090,1089,1,0,0,0,1090,1091,1,0,0,0,1091,1092,1, + 0,0,0,1092,1093,3,272,136,0,1093,141,1,0,0,0,1094,1096,5,132,0,0, + 1095,1094,1,0,0,0,1095,1096,1,0,0,0,1096,1097,1,0,0,0,1097,1102, + 3,144,72,0,1098,1102,3,152,76,0,1099,1100,5,132,0,0,1100,1102,3, + 154,77,0,1101,1095,1,0,0,0,1101,1098,1,0,0,0,1101,1099,1,0,0,0,1102, + 143,1,0,0,0,1103,1104,5,177,0,0,1104,1105,7,18,0,0,1105,1114,3,326, + 163,0,1106,1108,3,146,73,0,1107,1106,1,0,0,0,1107,1108,1,0,0,0,1108, + 1110,1,0,0,0,1109,1111,3,54,27,0,1110,1109,1,0,0,0,1110,1111,1,0, + 0,0,1111,1112,1,0,0,0,1112,1115,3,156,78,0,1113,1115,3,148,74,0, + 1114,1107,1,0,0,0,1114,1113,1,0,0,0,1115,145,1,0,0,0,1116,1117,5, + 268,0,0,1117,1118,3,340,170,0,1118,147,1,0,0,0,1119,1120,5,414,0, + 0,1120,1125,3,150,75,0,1121,1122,5,520,0,0,1122,1124,3,150,75,0, + 1123,1121,1,0,0,0,1124,1127,1,0,0,0,1125,1123,1,0,0,0,1125,1126, + 1,0,0,0,1126,149,1,0,0,0,1127,1125,1,0,0,0,1128,1129,5,516,0,0,1129, + 1134,3,358,179,0,1130,1131,5,520,0,0,1131,1133,3,358,179,0,1132, + 1130,1,0,0,0,1133,1136,1,0,0,0,1134,1132,1,0,0,0,1134,1135,1,0,0, + 0,1135,1137,1,0,0,0,1136,1134,1,0,0,0,1137,1138,5,517,0,0,1138,151, + 1,0,0,0,1139,1140,5,24,0,0,1140,1141,5,354,0,0,1141,1142,5,340,0, + 0,1142,1146,5,521,0,0,1143,1144,3,144,72,0,1144,1145,5,521,0,0,1145, + 1147,1,0,0,0,1146,1143,1,0,0,0,1147,1148,1,0,0,0,1148,1146,1,0,0, + 0,1148,1149,1,0,0,0,1149,1150,1,0,0,0,1150,1151,5,122,0,0,1151,153, + 1,0,0,0,1152,1153,5,354,0,0,1153,1154,5,340,0,0,1154,1158,5,24,0, + 0,1155,1156,3,144,72,0,1156,1157,5,521,0,0,1157,1159,1,0,0,0,1158, + 1155,1,0,0,0,1159,1160,1,0,0,0,1160,1158,1,0,0,0,1160,1161,1,0,0, + 0,1161,1162,1,0,0,0,1162,1163,5,122,0,0,1163,155,1,0,0,0,1164,1165, + 6,78,-1,0,1165,1188,3,158,79,0,1166,1167,3,160,80,0,1167,1168,3, + 156,78,5,1168,1188,1,0,0,0,1169,1170,5,516,0,0,1170,1171,3,156,78, + 0,1171,1172,5,517,0,0,1172,1188,1,0,0,0,1173,1175,3,168,84,0,1174, + 1176,3,228,114,0,1175,1174,1,0,0,0,1175,1176,1,0,0,0,1176,1178,1, + 0,0,0,1177,1179,3,232,116,0,1178,1177,1,0,0,0,1178,1179,1,0,0,0, + 1179,1188,1,0,0,0,1180,1182,3,166,83,0,1181,1183,3,228,114,0,1182, + 1181,1,0,0,0,1182,1183,1,0,0,0,1183,1185,1,0,0,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, + 1164,1,0,0,0,1187,1166,1,0,0,0,1187,1169,1,0,0,0,1187,1173,1,0,0, + 0,1187,1180,1,0,0,0,1188,1203,1,0,0,0,1189,1190,10,3,0,0,1190,1192, + 7,19,0,0,1191,1193,5,5,0,0,1192,1191,1,0,0,0,1192,1193,1,0,0,0,1193, + 1194,1,0,0,0,1194,1196,3,156,78,0,1195,1197,3,228,114,0,1196,1195, + 1,0,0,0,1196,1197,1,0,0,0,1197,1199,1,0,0,0,1198,1200,3,232,116, + 0,1199,1198,1,0,0,0,1199,1200,1,0,0,0,1200,1202,1,0,0,0,1201,1189, + 1,0,0,0,1202,1205,1,0,0,0,1203,1201,1,0,0,0,1203,1204,1,0,0,0,1204, + 157,1,0,0,0,1205,1203,1,0,0,0,1206,1207,5,414,0,0,1207,1212,3,256, + 128,0,1208,1209,5,520,0,0,1209,1211,3,256,128,0,1210,1208,1,0,0, + 0,1211,1214,1,0,0,0,1212,1210,1,0,0,0,1212,1213,1,0,0,0,1213,159, + 1,0,0,0,1214,1212,1,0,0,0,1215,1216,5,433,0,0,1216,1221,3,162,81, + 0,1217,1218,5,520,0,0,1218,1220,3,162,81,0,1219,1217,1,0,0,0,1220, + 1223,1,0,0,0,1221,1219,1,0,0,0,1221,1222,1,0,0,0,1222,161,1,0,0, + 0,1223,1221,1,0,0,0,1224,1236,3,164,82,0,1225,1226,5,516,0,0,1226, + 1231,3,52,26,0,1227,1228,5,520,0,0,1228,1230,3,52,26,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, + 1234,1,0,0,0,1233,1231,1,0,0,0,1234,1235,5,517,0,0,1235,1237,1,0, + 0,0,1236,1225,1,0,0,0,1236,1237,1,0,0,0,1237,1238,1,0,0,0,1238,1239, + 5,17,0,0,1239,1240,5,516,0,0,1240,1241,3,156,78,0,1241,1242,5,517, + 0,0,1242,163,1,0,0,0,1243,1244,3,308,154,0,1244,165,1,0,0,0,1245, + 1247,3,168,84,0,1246,1248,3,174,87,0,1247,1246,1,0,0,0,1247,1248, + 1,0,0,0,1248,1250,1,0,0,0,1249,1251,3,202,101,0,1250,1249,1,0,0, + 0,1250,1251,1,0,0,0,1251,1253,1,0,0,0,1252,1254,3,204,102,0,1253, + 1252,1,0,0,0,1253,1254,1,0,0,0,1254,1256,1,0,0,0,1255,1257,3,218, + 109,0,1256,1255,1,0,0,0,1256,1257,1,0,0,0,1257,1259,1,0,0,0,1258, + 1260,3,220,110,0,1259,1258,1,0,0,0,1259,1260,1,0,0,0,1260,1266,1, + 0,0,0,1261,1262,3,168,84,0,1262,1263,3,174,87,0,1263,1264,3,226, + 113,0,1264,1266,1,0,0,0,1265,1245,1,0,0,0,1265,1261,1,0,0,0,1266, + 167,1,0,0,0,1267,1269,5,336,0,0,1268,1270,3,368,184,0,1269,1268, + 1,0,0,0,1269,1270,1,0,0,0,1270,1280,1,0,0,0,1271,1281,5,527,0,0, + 1272,1277,3,170,85,0,1273,1274,5,520,0,0,1274,1276,3,170,85,0,1275, + 1273,1,0,0,0,1276,1279,1,0,0,0,1277,1275,1,0,0,0,1277,1278,1,0,0, + 0,1278,1281,1,0,0,0,1279,1277,1,0,0,0,1280,1271,1,0,0,0,1280,1272, + 1,0,0,0,1281,169,1,0,0,0,1282,1298,3,172,86,0,1283,1288,3,256,128, + 0,1284,1286,5,17,0,0,1285,1284,1,0,0,0,1285,1286,1,0,0,0,1286,1287, + 1,0,0,0,1287,1289,3,52,26,0,1288,1285,1,0,0,0,1288,1289,1,0,0,0, + 1289,1298,1,0,0,0,1290,1295,3,52,26,0,1291,1293,5,17,0,0,1292,1291, + 1,0,0,0,1292,1293,1,0,0,0,1293,1294,1,0,0,0,1294,1296,3,256,128, + 0,1295,1292,1,0,0,0,1295,1296,1,0,0,0,1296,1298,1,0,0,0,1297,1282, + 1,0,0,0,1297,1283,1,0,0,0,1297,1290,1,0,0,0,1298,171,1,0,0,0,1299, + 1300,3,268,134,0,1300,1301,5,262,0,0,1301,1302,3,224,112,0,1302, + 1303,5,17,0,0,1303,1304,3,308,154,0,1304,1312,1,0,0,0,1305,1306, + 3,268,134,0,1306,1307,5,262,0,0,1307,1308,3,300,150,0,1308,1309, + 5,17,0,0,1309,1310,3,308,154,0,1310,1312,1,0,0,0,1311,1299,1,0,0, + 0,1311,1305,1,0,0,0,1312,173,1,0,0,0,1313,1314,5,151,0,0,1314,1315, + 3,176,88,0,1315,175,1,0,0,0,1316,1317,6,88,-1,0,1317,1322,3,178, + 89,0,1318,1319,5,520,0,0,1319,1321,3,178,89,0,1320,1318,1,0,0,0, + 1321,1324,1,0,0,0,1322,1320,1,0,0,0,1322,1323,1,0,0,0,1323,1328, + 1,0,0,0,1324,1322,1,0,0,0,1325,1328,3,186,93,0,1326,1328,3,188,94, + 0,1327,1316,1,0,0,0,1327,1325,1,0,0,0,1327,1326,1,0,0,0,1328,1350, + 1,0,0,0,1329,1330,10,3,0,0,1330,1331,5,73,0,0,1331,1332,5,185,0, + 0,1332,1349,3,176,88,4,1333,1335,10,4,0,0,1334,1336,5,233,0,0,1335, + 1334,1,0,0,0,1335,1336,1,0,0,0,1336,1338,1,0,0,0,1337,1339,7,20, + 0,0,1338,1337,1,0,0,0,1338,1339,1,0,0,0,1339,1341,1,0,0,0,1340,1342, + 5,261,0,0,1341,1340,1,0,0,0,1341,1342,1,0,0,0,1342,1343,1,0,0,0, + 1343,1344,5,185,0,0,1344,1346,3,176,88,0,1345,1347,3,200,100,0,1346, + 1345,1,0,0,0,1346,1347,1,0,0,0,1347,1349,1,0,0,0,1348,1329,1,0,0, + 0,1348,1333,1,0,0,0,1349,1352,1,0,0,0,1350,1348,1,0,0,0,1350,1351, + 1,0,0,0,1351,177,1,0,0,0,1352,1350,1,0,0,0,1353,1355,3,180,90,0, + 1354,1356,3,298,149,0,1355,1354,1,0,0,0,1355,1356,1,0,0,0,1356,179, + 1,0,0,0,1357,1359,5,373,0,0,1358,1357,1,0,0,0,1358,1359,1,0,0,0, + 1359,1360,1,0,0,0,1360,1362,3,326,163,0,1361,1363,3,182,91,0,1362, + 1361,1,0,0,0,1362,1363,1,0,0,0,1363,1387,1,0,0,0,1364,1366,3,328, + 164,0,1365,1367,3,182,91,0,1366,1365,1,0,0,0,1366,1367,1,0,0,0,1367, + 1387,1,0,0,0,1368,1369,5,198,0,0,1369,1370,5,373,0,0,1370,1371,5, + 516,0,0,1371,1372,3,266,133,0,1372,1373,5,517,0,0,1373,1387,1,0, + 0,0,1374,1376,5,198,0,0,1375,1374,1,0,0,0,1375,1376,1,0,0,0,1376, + 1377,1,0,0,0,1377,1378,5,516,0,0,1378,1379,3,156,78,0,1379,1380, + 5,517,0,0,1380,1387,1,0,0,0,1381,1382,5,405,0,0,1382,1383,5,516, + 0,0,1383,1384,3,256,128,0,1384,1385,5,517,0,0,1385,1387,1,0,0,0, + 1386,1358,1,0,0,0,1386,1364,1,0,0,0,1386,1368,1,0,0,0,1386,1375, + 1,0,0,0,1386,1381,1,0,0,0,1387,181,1,0,0,0,1388,1389,5,146,0,0,1389, + 1390,5,371,0,0,1390,1391,5,17,0,0,1391,1392,5,249,0,0,1392,1393, + 3,184,92,0,1393,183,1,0,0,0,1394,1395,3,256,128,0,1395,185,1,0,0, + 0,1396,1397,5,516,0,0,1397,1398,3,148,74,0,1398,1399,5,517,0,0,1399, + 1400,3,298,149,0,1400,187,1,0,0,0,1401,1402,5,373,0,0,1402,1403, + 5,516,0,0,1403,1404,3,190,95,0,1404,1405,5,517,0,0,1405,189,1,0, + 0,0,1406,1407,3,192,96,0,1407,1408,5,516,0,0,1408,1413,3,194,97, + 0,1409,1410,5,520,0,0,1410,1412,3,194,97,0,1411,1409,1,0,0,0,1412, + 1415,1,0,0,0,1413,1411,1,0,0,0,1413,1414,1,0,0,0,1414,1416,1,0,0, + 0,1415,1413,1,0,0,0,1416,1417,5,517,0,0,1417,191,1,0,0,0,1418,1419, + 7,21,0,0,1419,193,1,0,0,0,1420,1421,5,373,0,0,1421,1436,3,216,108, + 0,1422,1436,3,198,99,0,1423,1436,3,286,143,0,1424,1425,5,446,0,0, + 1425,1426,5,536,0,0,1426,1427,5,373,0,0,1427,1436,3,216,108,0,1428, + 1429,5,498,0,0,1429,1430,5,536,0,0,1430,1436,3,198,99,0,1431,1432, + 3,196,98,0,1432,1433,5,536,0,0,1433,1434,3,286,143,0,1434,1436,1, + 0,0,0,1435,1420,1,0,0,0,1435,1422,1,0,0,0,1435,1423,1,0,0,0,1435, 1424,1,0,0,0,1435,1428,1,0,0,0,1435,1431,1,0,0,0,1436,195,1,0,0, 0,1437,1438,7,22,0,0,1438,197,1,0,0,0,1439,1440,5,451,0,0,1440,1441, 5,516,0,0,1441,1442,3,52,26,0,1442,1443,5,517,0,0,1443,199,1,0,0, @@ -12287,14 +12603,14 @@ export class FlinkSqlParser extends SQLParserBase { 207,1,0,0,0,1505,1506,5,160,0,0,1506,1507,5,493,0,0,1507,209,1,0, 0,0,1508,1509,7,23,0,0,1509,211,1,0,0,0,1510,1511,3,214,107,0,1511, 1512,5,516,0,0,1512,1513,3,216,108,0,1513,1514,5,520,0,0,1514,1515, - 3,280,140,0,1515,1516,5,517,0,0,1516,213,1,0,0,0,1517,1518,7,24, - 0,0,1518,215,1,0,0,0,1519,1520,3,326,163,0,1520,217,1,0,0,0,1521, + 3,286,143,0,1515,1516,5,517,0,0,1516,213,1,0,0,0,1517,1518,7,24, + 0,0,1518,215,1,0,0,0,1519,1520,3,332,166,0,1520,217,1,0,0,0,1521, 1522,5,163,0,0,1522,1523,3,258,129,0,1523,219,1,0,0,0,1524,1525, 5,432,0,0,1525,1530,3,222,111,0,1526,1527,5,520,0,0,1527,1529,3, 222,111,0,1528,1526,1,0,0,0,1529,1532,1,0,0,0,1530,1528,1,0,0,0, 1530,1531,1,0,0,0,1531,221,1,0,0,0,1532,1530,1,0,0,0,1533,1534,3, - 294,147,0,1534,1535,5,17,0,0,1535,1536,3,224,112,0,1536,223,1,0, - 0,0,1537,1539,3,294,147,0,1538,1537,1,0,0,0,1538,1539,1,0,0,0,1539, + 300,150,0,1534,1535,5,17,0,0,1535,1536,3,224,112,0,1536,223,1,0, + 0,0,1537,1539,3,300,150,0,1538,1537,1,0,0,0,1538,1539,1,0,0,0,1539, 1540,1,0,0,0,1540,1542,5,516,0,0,1541,1543,3,234,117,0,1542,1541, 1,0,0,0,1542,1543,1,0,0,0,1543,1545,1,0,0,0,1544,1546,3,228,114, 0,1545,1544,1,0,0,0,1545,1546,1,0,0,0,1546,1548,1,0,0,0,1547,1549, @@ -12309,7 +12625,7 @@ export class FlinkSqlParser extends SQLParserBase { 0,0,0,1569,1571,3,240,120,0,1570,1569,1,0,0,0,1570,1571,1,0,0,0, 1571,1572,1,0,0,0,1572,1573,3,248,124,0,1573,1578,5,517,0,0,1574, 1576,5,17,0,0,1575,1574,1,0,0,0,1575,1576,1,0,0,0,1576,1577,1,0, - 0,0,1577,1579,3,302,151,0,1578,1575,1,0,0,0,1578,1579,1,0,0,0,1579, + 0,0,1577,1579,3,308,154,0,1578,1575,1,0,0,0,1578,1579,1,0,0,0,1579, 227,1,0,0,0,1580,1581,5,258,0,0,1581,1582,5,34,0,0,1582,1587,3,230, 115,0,1583,1584,5,520,0,0,1584,1586,3,230,115,0,1585,1583,1,0,0, 0,1586,1589,1,0,0,0,1587,1585,1,0,0,0,1587,1588,1,0,0,0,1588,229, @@ -12319,8 +12635,8 @@ export class FlinkSqlParser extends SQLParserBase { 1597,231,1,0,0,0,1598,1601,5,204,0,0,1599,1602,5,5,0,0,1600,1602, 3,256,128,0,1601,1599,1,0,0,0,1601,1600,1,0,0,0,1602,233,1,0,0,0, 1603,1604,5,268,0,0,1604,1607,5,34,0,0,1605,1608,3,52,26,0,1606, - 1608,3,266,133,0,1607,1605,1,0,0,0,1607,1606,1,0,0,0,1608,1616,1, - 0,0,0,1609,1612,5,520,0,0,1610,1613,3,52,26,0,1611,1613,3,266,133, + 1608,3,268,134,0,1607,1605,1,0,0,0,1607,1606,1,0,0,0,1608,1616,1, + 0,0,0,1609,1612,5,520,0,0,1610,1613,3,52,26,0,1611,1613,3,268,134, 0,1612,1610,1,0,0,0,1612,1611,1,0,0,0,1613,1615,1,0,0,0,1614,1609, 1,0,0,0,1615,1618,1,0,0,0,1616,1614,1,0,0,0,1616,1617,1,0,0,0,1617, 235,1,0,0,0,1618,1616,1,0,0,0,1619,1636,5,527,0,0,1620,1636,5,530, @@ -12337,7 +12653,7 @@ export class FlinkSqlParser extends SQLParserBase { 242,121,0,1649,1648,1,0,0,0,1650,1651,1,0,0,0,1651,1649,1,0,0,0, 1651,1652,1,0,0,0,1652,1653,1,0,0,0,1653,1655,5,517,0,0,1654,1656, 3,254,127,0,1655,1654,1,0,0,0,1655,1656,1,0,0,0,1656,241,1,0,0,0, - 1657,1659,3,304,152,0,1658,1660,3,236,118,0,1659,1658,1,0,0,0,1659, + 1657,1659,3,310,155,0,1658,1660,3,236,118,0,1659,1658,1,0,0,0,1659, 1660,1,0,0,0,1660,243,1,0,0,0,1661,1662,5,5,0,0,1662,1663,5,322, 0,0,1663,1664,5,272,0,0,1664,1670,5,210,0,0,1665,1666,5,254,0,0, 1666,1667,5,321,0,0,1667,1668,5,272,0,0,1668,1670,5,210,0,0,1669, @@ -12347,19 +12663,19 @@ export class FlinkSqlParser extends SQLParserBase { 1679,5,210,0,0,1679,1680,5,343,0,0,1680,1681,5,388,0,0,1681,1682, 5,237,0,0,1682,1696,5,321,0,0,1683,1684,5,438,0,0,1684,1685,5,210, 0,0,1685,1686,5,343,0,0,1686,1687,5,388,0,0,1687,1688,5,467,0,0, - 1688,1696,3,304,152,0,1689,1690,5,438,0,0,1690,1691,5,210,0,0,1691, + 1688,1696,3,310,155,0,1689,1690,5,438,0,0,1690,1691,5,210,0,0,1691, 1692,5,343,0,0,1692,1693,5,388,0,0,1693,1694,5,457,0,0,1694,1696, - 3,304,152,0,1695,1671,1,0,0,0,1695,1677,1,0,0,0,1695,1683,1,0,0, + 3,310,155,0,1695,1671,1,0,0,0,1695,1677,1,0,0,0,1695,1683,1,0,0, 0,1695,1689,1,0,0,0,1696,247,1,0,0,0,1697,1698,5,105,0,0,1698,1703, 3,170,85,0,1699,1700,5,520,0,0,1700,1702,3,170,85,0,1701,1699,1, 0,0,0,1702,1705,1,0,0,0,1703,1701,1,0,0,0,1703,1704,1,0,0,0,1704, 249,1,0,0,0,1705,1703,1,0,0,0,1706,1707,5,292,0,0,1707,1708,5,27, - 0,0,1708,1709,3,280,140,0,1709,1710,3,252,126,0,1710,1716,1,0,0, + 0,0,1708,1709,3,286,143,0,1709,1710,3,252,126,0,1710,1716,1,0,0, 0,1711,1712,5,322,0,0,1712,1713,5,27,0,0,1713,1714,5,538,0,0,1714, 1716,3,252,126,0,1715,1706,1,0,0,0,1715,1711,1,0,0,0,1716,251,1, 0,0,0,1717,1718,5,480,0,0,1718,1719,5,10,0,0,1719,1720,5,76,0,0, 1720,1721,5,321,0,0,1721,253,1,0,0,0,1722,1723,5,434,0,0,1723,1724, - 3,280,140,0,1724,255,1,0,0,0,1725,1726,3,258,129,0,1726,257,1,0, + 3,286,143,0,1724,255,1,0,0,0,1725,1726,3,258,129,0,1726,257,1,0, 0,0,1727,1728,6,129,-1,0,1728,1729,5,241,0,0,1729,1740,3,258,129, 6,1730,1731,5,133,0,0,1731,1732,5,516,0,0,1732,1733,3,156,78,0,1733, 1734,5,517,0,0,1734,1740,1,0,0,0,1735,1737,3,264,132,0,1736,1738, @@ -12392,7 +12708,7 @@ export class FlinkSqlParser extends SQLParserBase { 0,1811,1812,1,0,0,0,1812,1813,5,113,0,0,1813,1814,5,151,0,0,1814, 1826,3,264,132,0,1815,1817,5,241,0,0,1816,1815,1,0,0,0,1816,1817, 1,0,0,0,1817,1818,1,0,0,0,1818,1819,5,342,0,0,1819,1820,5,388,0, - 0,1820,1823,3,264,132,0,1821,1822,5,127,0,0,1822,1824,3,356,178, + 0,1820,1823,3,264,132,0,1821,1822,5,127,0,0,1822,1824,3,362,181, 0,1823,1821,1,0,0,0,1823,1824,1,0,0,0,1824,1826,1,0,0,0,1825,1759, 1,0,0,0,1825,1770,1,0,0,0,1825,1785,1,0,0,0,1825,1792,1,0,0,0,1825, 1798,1,0,0,0,1825,1802,1,0,0,0,1825,1803,1,0,0,0,1825,1808,1,0,0, @@ -12405,181 +12721,189 @@ export class FlinkSqlParser extends SQLParserBase { 5,517,0,0,1844,1846,1,0,0,0,1845,1832,1,0,0,0,1845,1834,1,0,0,0, 1846,1857,1,0,0,0,1847,1849,5,241,0,0,1848,1847,1,0,0,0,1848,1849, 1,0,0,0,1849,1850,1,0,0,0,1850,1851,5,202,0,0,1851,1854,3,264,132, - 0,1852,1853,5,127,0,0,1853,1855,3,356,178,0,1854,1852,1,0,0,0,1854, + 0,1852,1853,5,127,0,0,1853,1855,3,362,181,0,1854,1852,1,0,0,0,1854, 1855,1,0,0,0,1855,1857,1,0,0,0,1856,1828,1,0,0,0,1856,1848,1,0,0, - 0,1857,263,1,0,0,0,1858,1859,6,132,-1,0,1859,1863,3,266,133,0,1860, + 0,1857,263,1,0,0,0,1858,1859,6,132,-1,0,1859,1863,3,268,134,0,1860, 1861,7,30,0,0,1861,1863,3,264,132,7,1862,1858,1,0,0,0,1862,1860, 1,0,0,0,1863,1885,1,0,0,0,1864,1865,10,6,0,0,1865,1866,7,31,0,0, 1866,1884,3,264,132,7,1867,1868,10,5,0,0,1868,1869,7,32,0,0,1869, 1884,3,264,132,6,1870,1871,10,4,0,0,1871,1872,5,511,0,0,1872,1884, 3,264,132,5,1873,1874,10,3,0,0,1874,1875,5,512,0,0,1875,1884,3,264, 132,4,1876,1877,10,2,0,0,1877,1878,5,510,0,0,1878,1884,3,264,132, - 3,1879,1880,10,1,0,0,1880,1881,3,344,172,0,1881,1882,3,264,132,2, + 3,1879,1880,10,1,0,0,1880,1881,3,350,175,0,1881,1882,3,264,132,2, 1882,1884,1,0,0,0,1883,1864,1,0,0,0,1883,1867,1,0,0,0,1883,1870, 1,0,0,0,1883,1873,1,0,0,0,1883,1876,1,0,0,0,1883,1879,1,0,0,0,1884, 1887,1,0,0,0,1885,1883,1,0,0,0,1885,1886,1,0,0,0,1886,265,1,0,0, - 0,1887,1885,1,0,0,0,1888,1889,6,133,-1,0,1889,1891,5,40,0,0,1890, - 1892,3,308,154,0,1891,1890,1,0,0,0,1892,1893,1,0,0,0,1893,1891,1, - 0,0,0,1893,1894,1,0,0,0,1894,1897,1,0,0,0,1895,1896,5,120,0,0,1896, - 1898,3,256,128,0,1897,1895,1,0,0,0,1897,1898,1,0,0,0,1898,1899,1, - 0,0,0,1899,1900,5,122,0,0,1900,1981,1,0,0,0,1901,1902,5,40,0,0,1902, - 1904,3,256,128,0,1903,1905,3,308,154,0,1904,1903,1,0,0,0,1905,1906, - 1,0,0,0,1906,1904,1,0,0,0,1906,1907,1,0,0,0,1907,1910,1,0,0,0,1908, - 1909,5,120,0,0,1909,1911,3,256,128,0,1910,1908,1,0,0,0,1910,1911, - 1,0,0,0,1911,1912,1,0,0,0,1912,1913,5,122,0,0,1913,1981,1,0,0,0, - 1914,1915,5,41,0,0,1915,1916,5,516,0,0,1916,1917,3,256,128,0,1917, - 1918,5,17,0,0,1918,1919,3,56,28,0,1919,1920,5,517,0,0,1920,1981, - 1,0,0,0,1921,1922,5,457,0,0,1922,1923,5,516,0,0,1923,1926,3,256, - 128,0,1924,1925,5,461,0,0,1925,1927,5,476,0,0,1926,1924,1,0,0,0, - 1926,1927,1,0,0,0,1927,1928,1,0,0,0,1928,1929,5,517,0,0,1929,1981, - 1,0,0,0,1930,1931,5,467,0,0,1931,1932,5,516,0,0,1932,1935,3,256, - 128,0,1933,1934,5,461,0,0,1934,1936,5,476,0,0,1935,1933,1,0,0,0, - 1935,1936,1,0,0,0,1936,1937,1,0,0,0,1937,1938,5,517,0,0,1938,1981, - 1,0,0,0,1939,1940,5,281,0,0,1940,1941,5,516,0,0,1941,1942,3,264, - 132,0,1942,1943,5,170,0,0,1943,1944,3,264,132,0,1944,1945,5,517, - 0,0,1945,1981,1,0,0,0,1946,1981,3,352,176,0,1947,1981,5,527,0,0, - 1948,1949,3,326,163,0,1949,1950,5,513,0,0,1950,1951,5,527,0,0,1951, - 1981,1,0,0,0,1952,1953,5,516,0,0,1953,1954,3,156,78,0,1954,1955, - 5,517,0,0,1955,1981,1,0,0,0,1956,1957,3,270,135,0,1957,1969,5,516, - 0,0,1958,1960,3,362,181,0,1959,1958,1,0,0,0,1959,1960,1,0,0,0,1960, - 1961,1,0,0,0,1961,1966,3,272,136,0,1962,1963,5,520,0,0,1963,1965, - 3,272,136,0,1964,1962,1,0,0,0,1965,1968,1,0,0,0,1966,1964,1,0,0, - 0,1966,1967,1,0,0,0,1967,1970,1,0,0,0,1968,1966,1,0,0,0,1969,1959, - 1,0,0,0,1969,1970,1,0,0,0,1970,1971,1,0,0,0,1971,1972,5,517,0,0, - 1972,1981,1,0,0,0,1973,1981,3,302,151,0,1974,1981,3,274,137,0,1975, - 1976,5,516,0,0,1976,1977,3,256,128,0,1977,1978,5,517,0,0,1978,1981, - 1,0,0,0,1979,1981,5,85,0,0,1980,1888,1,0,0,0,1980,1901,1,0,0,0,1980, - 1914,1,0,0,0,1980,1921,1,0,0,0,1980,1930,1,0,0,0,1980,1939,1,0,0, - 0,1980,1946,1,0,0,0,1980,1947,1,0,0,0,1980,1948,1,0,0,0,1980,1952, - 1,0,0,0,1980,1956,1,0,0,0,1980,1973,1,0,0,0,1980,1974,1,0,0,0,1980, - 1975,1,0,0,0,1980,1979,1,0,0,0,1981,1989,1,0,0,0,1982,1983,10,5, - 0,0,1983,1984,5,514,0,0,1984,1985,3,264,132,0,1985,1986,5,515,0, - 0,1986,1988,1,0,0,0,1987,1982,1,0,0,0,1988,1991,1,0,0,0,1989,1987, - 1,0,0,0,1989,1990,1,0,0,0,1990,267,1,0,0,0,1991,1989,1,0,0,0,1992, - 1993,3,326,163,0,1993,269,1,0,0,0,1994,1997,3,370,185,0,1995,1997, - 3,326,163,0,1996,1994,1,0,0,0,1996,1995,1,0,0,0,1997,271,1,0,0,0, - 1998,2003,3,368,184,0,1999,2003,3,366,183,0,2000,2003,3,364,182, - 0,2001,2003,3,256,128,0,2002,1998,1,0,0,0,2002,1999,1,0,0,0,2002, - 2000,1,0,0,0,2002,2001,1,0,0,0,2003,273,1,0,0,0,2004,2005,3,326, - 163,0,2005,275,1,0,0,0,2006,2007,3,302,151,0,2007,277,1,0,0,0,2008, - 2011,3,302,151,0,2009,2011,3,274,137,0,2010,2008,1,0,0,0,2010,2009, - 1,0,0,0,2011,279,1,0,0,0,2012,2015,5,182,0,0,2013,2016,3,282,141, - 0,2014,2016,3,286,143,0,2015,2013,1,0,0,0,2015,2014,1,0,0,0,2015, - 2016,1,0,0,0,2016,281,1,0,0,0,2017,2019,3,284,142,0,2018,2020,3, - 288,144,0,2019,2018,1,0,0,0,2019,2020,1,0,0,0,2020,283,1,0,0,0,2021, - 2022,3,290,145,0,2022,2023,3,366,183,0,2023,2025,1,0,0,0,2024,2021, - 1,0,0,0,2025,2026,1,0,0,0,2026,2024,1,0,0,0,2026,2027,1,0,0,0,2027, - 285,1,0,0,0,2028,2031,3,288,144,0,2029,2032,3,284,142,0,2030,2032, - 3,288,144,0,2031,2029,1,0,0,0,2031,2030,1,0,0,0,2031,2032,1,0,0, - 0,2032,287,1,0,0,0,2033,2034,3,290,145,0,2034,2035,3,366,183,0,2035, - 2036,5,388,0,0,2036,2037,3,366,183,0,2037,289,1,0,0,0,2038,2040, - 7,33,0,0,2039,2038,1,0,0,0,2039,2040,1,0,0,0,2040,2041,1,0,0,0,2041, - 2044,7,34,0,0,2042,2044,5,537,0,0,2043,2039,1,0,0,0,2043,2042,1, - 0,0,0,2044,291,1,0,0,0,2045,2047,5,17,0,0,2046,2045,1,0,0,0,2046, - 2047,1,0,0,0,2047,2048,1,0,0,0,2048,2050,3,302,151,0,2049,2051,3, - 298,149,0,2050,2049,1,0,0,0,2050,2051,1,0,0,0,2051,293,1,0,0,0,2052, - 2053,3,302,151,0,2053,2054,3,296,148,0,2054,295,1,0,0,0,2055,2056, - 5,221,0,0,2056,2058,3,302,151,0,2057,2055,1,0,0,0,2058,2059,1,0, - 0,0,2059,2057,1,0,0,0,2059,2060,1,0,0,0,2060,2063,1,0,0,0,2061,2063, - 1,0,0,0,2062,2057,1,0,0,0,2062,2061,1,0,0,0,2063,297,1,0,0,0,2064, - 2065,5,516,0,0,2065,2066,3,300,150,0,2066,2067,5,517,0,0,2067,299, - 1,0,0,0,2068,2073,3,302,151,0,2069,2070,5,520,0,0,2070,2072,3,302, - 151,0,2071,2069,1,0,0,0,2072,2075,1,0,0,0,2073,2071,1,0,0,0,2073, - 2074,1,0,0,0,2074,301,1,0,0,0,2075,2073,1,0,0,0,2076,2080,3,304, - 152,0,2077,2080,3,306,153,0,2078,2080,3,372,186,0,2079,2076,1,0, - 0,0,2079,2077,1,0,0,0,2079,2078,1,0,0,0,2080,303,1,0,0,0,2081,2082, - 7,35,0,0,2082,305,1,0,0,0,2083,2084,5,537,0,0,2084,307,1,0,0,0,2085, - 2086,5,428,0,0,2086,2087,3,256,128,0,2087,2088,5,376,0,0,2088,2089, - 3,256,128,0,2089,309,1,0,0,0,2090,2091,3,302,151,0,2091,311,1,0, - 0,0,2092,2093,3,302,151,0,2093,313,1,0,0,0,2094,2097,3,302,151,0, - 2095,2096,5,513,0,0,2096,2098,3,302,151,0,2097,2095,1,0,0,0,2097, - 2098,1,0,0,0,2098,315,1,0,0,0,2099,2102,3,302,151,0,2100,2101,5, - 513,0,0,2101,2103,3,302,151,0,2102,2100,1,0,0,0,2102,2103,1,0,0, - 0,2103,317,1,0,0,0,2104,2107,3,302,151,0,2105,2106,5,513,0,0,2106, - 2108,3,302,151,0,2107,2105,1,0,0,0,2107,2108,1,0,0,0,2108,2117,1, - 0,0,0,2109,2110,3,302,151,0,2110,2111,5,513,0,0,2111,2114,3,302, - 151,0,2112,2113,5,513,0,0,2113,2115,3,302,151,0,2114,2112,1,0,0, - 0,2114,2115,1,0,0,0,2115,2117,1,0,0,0,2116,2104,1,0,0,0,2116,2109, - 1,0,0,0,2117,319,1,0,0,0,2118,2121,3,302,151,0,2119,2120,5,513,0, - 0,2120,2122,3,302,151,0,2121,2119,1,0,0,0,2121,2122,1,0,0,0,2122, - 2131,1,0,0,0,2123,2124,3,302,151,0,2124,2125,5,513,0,0,2125,2128, - 3,302,151,0,2126,2127,5,513,0,0,2127,2129,3,302,151,0,2128,2126, - 1,0,0,0,2128,2129,1,0,0,0,2129,2131,1,0,0,0,2130,2118,1,0,0,0,2130, - 2123,1,0,0,0,2131,321,1,0,0,0,2132,2135,3,302,151,0,2133,2134,5, - 513,0,0,2134,2136,3,302,151,0,2135,2133,1,0,0,0,2135,2136,1,0,0, - 0,2136,2145,1,0,0,0,2137,2138,3,302,151,0,2138,2139,5,513,0,0,2139, - 2142,3,302,151,0,2140,2141,5,513,0,0,2141,2143,3,302,151,0,2142, - 2140,1,0,0,0,2142,2143,1,0,0,0,2143,2145,1,0,0,0,2144,2132,1,0,0, - 0,2144,2137,1,0,0,0,2145,323,1,0,0,0,2146,2149,3,302,151,0,2147, - 2148,5,513,0,0,2148,2150,3,302,151,0,2149,2147,1,0,0,0,2149,2150, - 1,0,0,0,2150,2159,1,0,0,0,2151,2152,3,302,151,0,2152,2153,5,513, - 0,0,2153,2156,3,302,151,0,2154,2155,5,513,0,0,2155,2157,3,302,151, - 0,2156,2154,1,0,0,0,2156,2157,1,0,0,0,2157,2159,1,0,0,0,2158,2146, - 1,0,0,0,2158,2151,1,0,0,0,2159,325,1,0,0,0,2160,2165,3,302,151,0, - 2161,2162,5,513,0,0,2162,2164,3,302,151,0,2163,2161,1,0,0,0,2164, - 2167,1,0,0,0,2165,2166,1,0,0,0,2165,2163,1,0,0,0,2166,327,1,0,0, - 0,2167,2165,1,0,0,0,2168,2169,5,433,0,0,2169,2170,3,334,167,0,2170, - 329,1,0,0,0,2171,2172,5,167,0,0,2172,2173,5,241,0,0,2173,2174,5, - 133,0,0,2174,331,1,0,0,0,2175,2176,5,167,0,0,2176,2177,5,133,0,0, - 2177,333,1,0,0,0,2178,2179,5,516,0,0,2179,2184,3,336,168,0,2180, - 2181,5,520,0,0,2181,2183,3,336,168,0,2182,2180,1,0,0,0,2183,2186, - 1,0,0,0,2184,2182,1,0,0,0,2184,2185,1,0,0,0,2185,2187,1,0,0,0,2186, - 2184,1,0,0,0,2187,2188,5,517,0,0,2188,335,1,0,0,0,2189,2194,3,338, - 169,0,2190,2192,5,505,0,0,2191,2190,1,0,0,0,2191,2192,1,0,0,0,2192, - 2193,1,0,0,0,2193,2195,3,340,170,0,2194,2191,1,0,0,0,2194,2195,1, - 0,0,0,2195,337,1,0,0,0,2196,2200,3,302,151,0,2197,2200,3,274,137, - 0,2198,2200,5,537,0,0,2199,2196,1,0,0,0,2199,2197,1,0,0,0,2199,2198, - 1,0,0,0,2200,339,1,0,0,0,2201,2206,5,538,0,0,2202,2206,5,539,0,0, - 2203,2206,3,360,180,0,2204,2206,5,537,0,0,2205,2201,1,0,0,0,2205, - 2202,1,0,0,0,2205,2203,1,0,0,0,2205,2204,1,0,0,0,2206,341,1,0,0, - 0,2207,2214,5,10,0,0,2208,2209,5,511,0,0,2209,2214,5,511,0,0,2210, - 2214,5,257,0,0,2211,2212,5,510,0,0,2212,2214,5,510,0,0,2213,2207, - 1,0,0,0,2213,2208,1,0,0,0,2213,2210,1,0,0,0,2213,2211,1,0,0,0,2214, - 343,1,0,0,0,2215,2230,5,505,0,0,2216,2230,5,506,0,0,2217,2230,5, - 507,0,0,2218,2219,5,507,0,0,2219,2230,5,505,0,0,2220,2221,5,506, - 0,0,2221,2230,5,505,0,0,2222,2223,5,507,0,0,2223,2230,5,506,0,0, - 2224,2225,5,508,0,0,2225,2230,5,505,0,0,2226,2227,5,507,0,0,2227, - 2228,5,505,0,0,2228,2230,5,506,0,0,2229,2215,1,0,0,0,2229,2216,1, - 0,0,0,2229,2217,1,0,0,0,2229,2218,1,0,0,0,2229,2220,1,0,0,0,2229, - 2222,1,0,0,0,2229,2224,1,0,0,0,2229,2226,1,0,0,0,2230,345,1,0,0, - 0,2231,2232,5,507,0,0,2232,2239,5,507,0,0,2233,2234,5,506,0,0,2234, - 2239,5,506,0,0,2235,2239,5,511,0,0,2236,2239,5,512,0,0,2237,2239, - 5,510,0,0,2238,2231,1,0,0,0,2238,2233,1,0,0,0,2238,2235,1,0,0,0, - 2238,2236,1,0,0,0,2238,2237,1,0,0,0,2239,347,1,0,0,0,2240,2241,7, - 36,0,0,2241,349,1,0,0,0,2242,2243,7,37,0,0,2243,351,1,0,0,0,2244, - 2259,3,280,140,0,2245,2259,3,354,177,0,2246,2259,3,356,178,0,2247, - 2249,5,529,0,0,2248,2247,1,0,0,0,2248,2249,1,0,0,0,2249,2250,1,0, - 0,0,2250,2259,3,358,179,0,2251,2259,3,360,180,0,2252,2259,5,539, - 0,0,2253,2259,5,540,0,0,2254,2256,5,241,0,0,2255,2254,1,0,0,0,2255, - 2256,1,0,0,0,2256,2257,1,0,0,0,2257,2259,5,244,0,0,2258,2244,1,0, - 0,0,2258,2245,1,0,0,0,2258,2246,1,0,0,0,2258,2248,1,0,0,0,2258,2251, - 1,0,0,0,2258,2252,1,0,0,0,2258,2253,1,0,0,0,2258,2255,1,0,0,0,2259, - 353,1,0,0,0,2260,2261,3,364,182,0,2261,2262,3,356,178,0,2262,355, - 1,0,0,0,2263,2264,5,537,0,0,2264,357,1,0,0,0,2265,2266,5,538,0,0, - 2266,359,1,0,0,0,2267,2268,7,38,0,0,2268,361,1,0,0,0,2269,2270,7, - 39,0,0,2270,363,1,0,0,0,2271,2272,7,40,0,0,2272,365,1,0,0,0,2273, - 2274,7,41,0,0,2274,367,1,0,0,0,2275,2276,7,42,0,0,2276,369,1,0,0, - 0,2277,2278,7,43,0,0,2278,371,1,0,0,0,2279,2280,7,44,0,0,2280,373, - 1,0,0,0,270,377,384,387,401,419,423,432,437,444,455,464,476,479, - 486,489,497,501,506,509,516,524,528,540,548,552,584,587,592,596, - 600,604,613,618,622,626,631,634,638,643,649,654,659,663,667,671, - 679,687,691,695,699,703,707,711,715,719,721,731,739,763,777,782, - 786,792,795,798,805,808,817,829,853,865,870,874,882,886,892,902, - 907,913,917,921,925,934,938,945,948,958,966,974,978,993,1012,1023, - 1027,1034,1039,1045,1049,1056,1060,1064,1068,1076,1080,1085,1091, - 1097,1100,1104,1115,1124,1138,1150,1165,1168,1172,1175,1177,1182, - 1186,1189,1193,1202,1211,1221,1226,1237,1240,1243,1246,1249,1255, - 1259,1267,1270,1275,1278,1282,1285,1287,1301,1312,1317,1325,1328, - 1331,1336,1338,1340,1345,1348,1352,1356,1368,1375,1386,1413,1435, - 1448,1460,1473,1485,1497,1503,1530,1538,1542,1545,1548,1555,1558, - 1561,1564,1567,1570,1575,1578,1587,1592,1596,1601,1607,1612,1616, - 1635,1643,1651,1655,1659,1669,1695,1703,1715,1737,1739,1750,1753, - 1755,1759,1763,1770,1779,1785,1798,1805,1810,1816,1823,1825,1828, - 1840,1845,1848,1854,1856,1862,1883,1885,1893,1897,1906,1910,1926, - 1935,1959,1966,1969,1980,1989,1996,2002,2010,2015,2019,2026,2031, - 2039,2043,2046,2050,2059,2062,2073,2079,2097,2102,2107,2114,2116, - 2121,2128,2130,2135,2142,2144,2149,2156,2158,2165,2184,2191,2194, - 2199,2205,2213,2229,2238,2248,2255,2258 + 0,1887,1885,1,0,0,0,1888,1908,3,376,188,0,1889,1908,3,274,137,0, + 1890,1891,3,276,138,0,1891,1903,5,516,0,0,1892,1894,3,368,184,0, + 1893,1892,1,0,0,0,1893,1894,1,0,0,0,1894,1895,1,0,0,0,1895,1900, + 3,278,139,0,1896,1897,5,520,0,0,1897,1899,3,278,139,0,1898,1896, + 1,0,0,0,1899,1902,1,0,0,0,1900,1898,1,0,0,0,1900,1901,1,0,0,0,1901, + 1904,1,0,0,0,1902,1900,1,0,0,0,1903,1893,1,0,0,0,1903,1904,1,0,0, + 0,1904,1905,1,0,0,0,1905,1906,5,517,0,0,1906,1908,1,0,0,0,1907,1888, + 1,0,0,0,1907,1889,1,0,0,0,1907,1890,1,0,0,0,1908,267,1,0,0,0,1909, + 1910,6,134,-1,0,1910,1912,5,40,0,0,1911,1913,3,314,157,0,1912,1911, + 1,0,0,0,1913,1914,1,0,0,0,1914,1912,1,0,0,0,1914,1915,1,0,0,0,1915, + 1918,1,0,0,0,1916,1917,5,120,0,0,1917,1919,3,256,128,0,1918,1916, + 1,0,0,0,1918,1919,1,0,0,0,1919,1920,1,0,0,0,1920,1921,5,122,0,0, + 1921,1985,1,0,0,0,1922,1923,5,40,0,0,1923,1925,3,256,128,0,1924, + 1926,3,314,157,0,1925,1924,1,0,0,0,1926,1927,1,0,0,0,1927,1925,1, + 0,0,0,1927,1928,1,0,0,0,1928,1931,1,0,0,0,1929,1930,5,120,0,0,1930, + 1932,3,256,128,0,1931,1929,1,0,0,0,1931,1932,1,0,0,0,1932,1933,1, + 0,0,0,1933,1934,5,122,0,0,1934,1985,1,0,0,0,1935,1936,5,41,0,0,1936, + 1937,5,516,0,0,1937,1938,3,256,128,0,1938,1939,5,17,0,0,1939,1940, + 3,56,28,0,1940,1941,5,517,0,0,1941,1985,1,0,0,0,1942,1943,5,457, + 0,0,1943,1944,5,516,0,0,1944,1947,3,256,128,0,1945,1946,5,461,0, + 0,1946,1948,5,476,0,0,1947,1945,1,0,0,0,1947,1948,1,0,0,0,1948,1949, + 1,0,0,0,1949,1950,5,517,0,0,1950,1985,1,0,0,0,1951,1952,5,467,0, + 0,1952,1953,5,516,0,0,1953,1956,3,256,128,0,1954,1955,5,461,0,0, + 1955,1957,5,476,0,0,1956,1954,1,0,0,0,1956,1957,1,0,0,0,1957,1958, + 1,0,0,0,1958,1959,5,517,0,0,1959,1985,1,0,0,0,1960,1961,5,281,0, + 0,1961,1962,5,516,0,0,1962,1963,3,264,132,0,1963,1964,5,170,0,0, + 1964,1965,3,264,132,0,1965,1966,5,517,0,0,1966,1985,1,0,0,0,1967, + 1985,3,358,179,0,1968,1985,5,527,0,0,1969,1970,3,332,166,0,1970, + 1971,5,513,0,0,1971,1972,5,527,0,0,1972,1985,1,0,0,0,1973,1974,5, + 516,0,0,1974,1975,3,156,78,0,1975,1976,5,517,0,0,1976,1985,1,0,0, + 0,1977,1985,3,266,133,0,1978,1985,3,308,154,0,1979,1985,3,280,140, + 0,1980,1981,5,516,0,0,1981,1982,3,256,128,0,1982,1983,5,517,0,0, + 1983,1985,1,0,0,0,1984,1909,1,0,0,0,1984,1922,1,0,0,0,1984,1935, + 1,0,0,0,1984,1942,1,0,0,0,1984,1951,1,0,0,0,1984,1960,1,0,0,0,1984, + 1967,1,0,0,0,1984,1968,1,0,0,0,1984,1969,1,0,0,0,1984,1973,1,0,0, + 0,1984,1977,1,0,0,0,1984,1978,1,0,0,0,1984,1979,1,0,0,0,1984,1980, + 1,0,0,0,1985,1993,1,0,0,0,1986,1987,10,4,0,0,1987,1988,5,514,0,0, + 1988,1989,3,264,132,0,1989,1990,5,515,0,0,1990,1992,1,0,0,0,1991, + 1986,1,0,0,0,1992,1995,1,0,0,0,1993,1991,1,0,0,0,1993,1994,1,0,0, + 0,1994,269,1,0,0,0,1995,1993,1,0,0,0,1996,1997,3,332,166,0,1997, + 271,1,0,0,0,1998,2003,3,380,190,0,1999,2003,3,376,188,0,2000,2003, + 3,378,189,0,2001,2003,3,332,166,0,2002,1998,1,0,0,0,2002,1999,1, + 0,0,0,2002,2000,1,0,0,0,2002,2001,1,0,0,0,2003,273,1,0,0,0,2004, + 2005,3,378,189,0,2005,2006,5,537,0,0,2006,2009,1,0,0,0,2007,2009, + 3,286,143,0,2008,2004,1,0,0,0,2008,2007,1,0,0,0,2009,275,1,0,0,0, + 2010,2013,3,380,190,0,2011,2013,3,332,166,0,2012,2010,1,0,0,0,2012, + 2011,1,0,0,0,2013,277,1,0,0,0,2014,2019,3,374,187,0,2015,2019,3, + 372,186,0,2016,2019,3,370,185,0,2017,2019,3,256,128,0,2018,2014, + 1,0,0,0,2018,2015,1,0,0,0,2018,2016,1,0,0,0,2018,2017,1,0,0,0,2019, + 279,1,0,0,0,2020,2021,3,332,166,0,2021,281,1,0,0,0,2022,2023,3,308, + 154,0,2023,283,1,0,0,0,2024,2027,3,308,154,0,2025,2027,3,280,140, + 0,2026,2024,1,0,0,0,2026,2025,1,0,0,0,2027,285,1,0,0,0,2028,2031, + 5,182,0,0,2029,2032,3,288,144,0,2030,2032,3,292,146,0,2031,2029, + 1,0,0,0,2031,2030,1,0,0,0,2031,2032,1,0,0,0,2032,287,1,0,0,0,2033, + 2035,3,290,145,0,2034,2036,3,294,147,0,2035,2034,1,0,0,0,2035,2036, + 1,0,0,0,2036,289,1,0,0,0,2037,2038,3,296,148,0,2038,2039,3,372,186, + 0,2039,2041,1,0,0,0,2040,2037,1,0,0,0,2041,2042,1,0,0,0,2042,2040, + 1,0,0,0,2042,2043,1,0,0,0,2043,291,1,0,0,0,2044,2047,3,294,147,0, + 2045,2048,3,290,145,0,2046,2048,3,294,147,0,2047,2045,1,0,0,0,2047, + 2046,1,0,0,0,2047,2048,1,0,0,0,2048,293,1,0,0,0,2049,2050,3,296, + 148,0,2050,2051,3,372,186,0,2051,2052,5,388,0,0,2052,2053,3,372, + 186,0,2053,295,1,0,0,0,2054,2056,7,33,0,0,2055,2054,1,0,0,0,2055, + 2056,1,0,0,0,2056,2057,1,0,0,0,2057,2060,7,34,0,0,2058,2060,5,537, + 0,0,2059,2055,1,0,0,0,2059,2058,1,0,0,0,2060,297,1,0,0,0,2061,2063, + 5,17,0,0,2062,2061,1,0,0,0,2062,2063,1,0,0,0,2063,2064,1,0,0,0,2064, + 2066,3,308,154,0,2065,2067,3,304,152,0,2066,2065,1,0,0,0,2066,2067, + 1,0,0,0,2067,299,1,0,0,0,2068,2069,3,308,154,0,2069,2070,3,302,151, + 0,2070,301,1,0,0,0,2071,2072,5,221,0,0,2072,2074,3,308,154,0,2073, + 2071,1,0,0,0,2074,2075,1,0,0,0,2075,2073,1,0,0,0,2075,2076,1,0,0, + 0,2076,2079,1,0,0,0,2077,2079,1,0,0,0,2078,2073,1,0,0,0,2078,2077, + 1,0,0,0,2079,303,1,0,0,0,2080,2081,5,516,0,0,2081,2082,3,306,153, + 0,2082,2083,5,517,0,0,2083,305,1,0,0,0,2084,2089,3,308,154,0,2085, + 2086,5,520,0,0,2086,2088,3,308,154,0,2087,2085,1,0,0,0,2088,2091, + 1,0,0,0,2089,2087,1,0,0,0,2089,2090,1,0,0,0,2090,307,1,0,0,0,2091, + 2089,1,0,0,0,2092,2096,3,310,155,0,2093,2096,3,312,156,0,2094,2096, + 3,382,191,0,2095,2092,1,0,0,0,2095,2093,1,0,0,0,2095,2094,1,0,0, + 0,2096,309,1,0,0,0,2097,2098,7,35,0,0,2098,311,1,0,0,0,2099,2100, + 5,537,0,0,2100,313,1,0,0,0,2101,2102,5,428,0,0,2102,2103,3,256,128, + 0,2103,2104,5,376,0,0,2104,2105,3,256,128,0,2105,315,1,0,0,0,2106, + 2107,3,308,154,0,2107,317,1,0,0,0,2108,2109,3,308,154,0,2109,319, + 1,0,0,0,2110,2113,3,308,154,0,2111,2112,5,513,0,0,2112,2114,3,308, + 154,0,2113,2111,1,0,0,0,2113,2114,1,0,0,0,2114,321,1,0,0,0,2115, + 2118,3,308,154,0,2116,2117,5,513,0,0,2117,2119,3,308,154,0,2118, + 2116,1,0,0,0,2118,2119,1,0,0,0,2119,323,1,0,0,0,2120,2123,3,308, + 154,0,2121,2122,5,513,0,0,2122,2124,3,308,154,0,2123,2121,1,0,0, + 0,2123,2124,1,0,0,0,2124,2133,1,0,0,0,2125,2126,3,308,154,0,2126, + 2127,5,513,0,0,2127,2130,3,308,154,0,2128,2129,5,513,0,0,2129,2131, + 3,308,154,0,2130,2128,1,0,0,0,2130,2131,1,0,0,0,2131,2133,1,0,0, + 0,2132,2120,1,0,0,0,2132,2125,1,0,0,0,2133,325,1,0,0,0,2134,2137, + 3,308,154,0,2135,2136,5,513,0,0,2136,2138,3,308,154,0,2137,2135, + 1,0,0,0,2137,2138,1,0,0,0,2138,2147,1,0,0,0,2139,2140,3,308,154, + 0,2140,2141,5,513,0,0,2141,2144,3,308,154,0,2142,2143,5,513,0,0, + 2143,2145,3,308,154,0,2144,2142,1,0,0,0,2144,2145,1,0,0,0,2145,2147, + 1,0,0,0,2146,2134,1,0,0,0,2146,2139,1,0,0,0,2147,327,1,0,0,0,2148, + 2151,3,308,154,0,2149,2150,5,513,0,0,2150,2152,3,308,154,0,2151, + 2149,1,0,0,0,2151,2152,1,0,0,0,2152,2161,1,0,0,0,2153,2154,3,308, + 154,0,2154,2155,5,513,0,0,2155,2158,3,308,154,0,2156,2157,5,513, + 0,0,2157,2159,3,308,154,0,2158,2156,1,0,0,0,2158,2159,1,0,0,0,2159, + 2161,1,0,0,0,2160,2148,1,0,0,0,2160,2153,1,0,0,0,2161,329,1,0,0, + 0,2162,2165,3,308,154,0,2163,2164,5,513,0,0,2164,2166,3,308,154, + 0,2165,2163,1,0,0,0,2165,2166,1,0,0,0,2166,2175,1,0,0,0,2167,2168, + 3,308,154,0,2168,2169,5,513,0,0,2169,2172,3,308,154,0,2170,2171, + 5,513,0,0,2171,2173,3,308,154,0,2172,2170,1,0,0,0,2172,2173,1,0, + 0,0,2173,2175,1,0,0,0,2174,2162,1,0,0,0,2174,2167,1,0,0,0,2175,331, + 1,0,0,0,2176,2181,3,308,154,0,2177,2178,5,513,0,0,2178,2180,3,308, + 154,0,2179,2177,1,0,0,0,2180,2183,1,0,0,0,2181,2182,1,0,0,0,2181, + 2179,1,0,0,0,2182,333,1,0,0,0,2183,2181,1,0,0,0,2184,2185,5,433, + 0,0,2185,2186,3,340,170,0,2186,335,1,0,0,0,2187,2188,5,167,0,0,2188, + 2189,5,241,0,0,2189,2190,5,133,0,0,2190,337,1,0,0,0,2191,2192,5, + 167,0,0,2192,2193,5,133,0,0,2193,339,1,0,0,0,2194,2195,5,516,0,0, + 2195,2200,3,342,171,0,2196,2197,5,520,0,0,2197,2199,3,342,171,0, + 2198,2196,1,0,0,0,2199,2202,1,0,0,0,2200,2198,1,0,0,0,2200,2201, + 1,0,0,0,2201,2203,1,0,0,0,2202,2200,1,0,0,0,2203,2204,5,517,0,0, + 2204,341,1,0,0,0,2205,2210,3,344,172,0,2206,2208,5,505,0,0,2207, + 2206,1,0,0,0,2207,2208,1,0,0,0,2208,2209,1,0,0,0,2209,2211,3,346, + 173,0,2210,2207,1,0,0,0,2210,2211,1,0,0,0,2211,343,1,0,0,0,2212, + 2216,3,308,154,0,2213,2216,3,280,140,0,2214,2216,5,537,0,0,2215, + 2212,1,0,0,0,2215,2213,1,0,0,0,2215,2214,1,0,0,0,2216,345,1,0,0, + 0,2217,2222,5,538,0,0,2218,2222,5,539,0,0,2219,2222,3,366,183,0, + 2220,2222,5,537,0,0,2221,2217,1,0,0,0,2221,2218,1,0,0,0,2221,2219, + 1,0,0,0,2221,2220,1,0,0,0,2222,347,1,0,0,0,2223,2230,5,10,0,0,2224, + 2225,5,511,0,0,2225,2230,5,511,0,0,2226,2230,5,257,0,0,2227,2228, + 5,510,0,0,2228,2230,5,510,0,0,2229,2223,1,0,0,0,2229,2224,1,0,0, + 0,2229,2226,1,0,0,0,2229,2227,1,0,0,0,2230,349,1,0,0,0,2231,2246, + 5,505,0,0,2232,2246,5,506,0,0,2233,2246,5,507,0,0,2234,2235,5,507, + 0,0,2235,2246,5,505,0,0,2236,2237,5,506,0,0,2237,2246,5,505,0,0, + 2238,2239,5,507,0,0,2239,2246,5,506,0,0,2240,2241,5,508,0,0,2241, + 2246,5,505,0,0,2242,2243,5,507,0,0,2243,2244,5,505,0,0,2244,2246, + 5,506,0,0,2245,2231,1,0,0,0,2245,2232,1,0,0,0,2245,2233,1,0,0,0, + 2245,2234,1,0,0,0,2245,2236,1,0,0,0,2245,2238,1,0,0,0,2245,2240, + 1,0,0,0,2245,2242,1,0,0,0,2246,351,1,0,0,0,2247,2248,5,507,0,0,2248, + 2255,5,507,0,0,2249,2250,5,506,0,0,2250,2255,5,506,0,0,2251,2255, + 5,511,0,0,2252,2255,5,512,0,0,2253,2255,5,510,0,0,2254,2247,1,0, + 0,0,2254,2249,1,0,0,0,2254,2251,1,0,0,0,2254,2252,1,0,0,0,2254,2253, + 1,0,0,0,2255,353,1,0,0,0,2256,2257,7,36,0,0,2257,355,1,0,0,0,2258, + 2259,7,37,0,0,2259,357,1,0,0,0,2260,2275,3,286,143,0,2261,2275,3, + 360,180,0,2262,2275,3,362,181,0,2263,2265,5,529,0,0,2264,2263,1, + 0,0,0,2264,2265,1,0,0,0,2265,2266,1,0,0,0,2266,2275,3,364,182,0, + 2267,2275,3,366,183,0,2268,2275,5,539,0,0,2269,2275,5,540,0,0,2270, + 2272,5,241,0,0,2271,2270,1,0,0,0,2271,2272,1,0,0,0,2272,2273,1,0, + 0,0,2273,2275,5,244,0,0,2274,2260,1,0,0,0,2274,2261,1,0,0,0,2274, + 2262,1,0,0,0,2274,2264,1,0,0,0,2274,2267,1,0,0,0,2274,2268,1,0,0, + 0,2274,2269,1,0,0,0,2274,2271,1,0,0,0,2275,359,1,0,0,0,2276,2277, + 3,370,185,0,2277,2278,3,362,181,0,2278,361,1,0,0,0,2279,2280,5,537, + 0,0,2280,363,1,0,0,0,2281,2282,5,538,0,0,2282,365,1,0,0,0,2283,2284, + 7,38,0,0,2284,367,1,0,0,0,2285,2286,7,39,0,0,2286,369,1,0,0,0,2287, + 2288,7,40,0,0,2288,371,1,0,0,0,2289,2290,7,41,0,0,2290,373,1,0,0, + 0,2291,2292,7,42,0,0,2292,375,1,0,0,0,2293,2294,7,43,0,0,2294,377, + 1,0,0,0,2295,2296,7,44,0,0,2296,379,1,0,0,0,2297,2298,7,45,0,0,2298, + 381,1,0,0,0,2299,2300,7,46,0,0,2300,383,1,0,0,0,272,387,394,397, + 411,429,433,442,447,454,465,474,486,489,496,499,507,511,516,519, + 526,534,538,550,558,562,594,597,602,606,610,614,623,628,632,636, + 641,644,648,653,659,664,669,673,677,681,689,697,701,705,709,713, + 717,721,725,729,731,741,749,773,787,792,796,802,805,808,815,818, + 827,839,863,875,880,884,892,896,902,912,917,923,927,931,935,944, + 948,955,958,968,976,984,988,1003,1022,1033,1037,1044,1049,1055,1059, + 1066,1070,1074,1078,1086,1090,1095,1101,1107,1110,1114,1125,1134, + 1148,1160,1175,1178,1182,1185,1187,1192,1196,1199,1203,1212,1221, + 1231,1236,1247,1250,1253,1256,1259,1265,1269,1277,1280,1285,1288, + 1292,1295,1297,1311,1322,1327,1335,1338,1341,1346,1348,1350,1355, + 1358,1362,1366,1375,1386,1413,1435,1448,1460,1473,1485,1497,1503, + 1530,1538,1542,1545,1548,1555,1558,1561,1564,1567,1570,1575,1578, + 1587,1592,1596,1601,1607,1612,1616,1635,1643,1651,1655,1659,1669, + 1695,1703,1715,1737,1739,1750,1753,1755,1759,1763,1770,1779,1785, + 1798,1805,1810,1816,1823,1825,1828,1840,1845,1848,1854,1856,1862, + 1883,1885,1893,1900,1903,1907,1914,1918,1927,1931,1947,1956,1984, + 1993,2002,2008,2012,2018,2026,2031,2035,2042,2047,2055,2059,2062, + 2066,2075,2078,2089,2095,2113,2118,2123,2130,2132,2137,2144,2146, + 2151,2158,2160,2165,2172,2174,2181,2200,2207,2210,2215,2221,2229, + 2245,2254,2264,2271,2274 ]; private static __ATN: antlr.ATN; @@ -16640,12 +16964,12 @@ export class ProjectItemDefinitionContext extends antlr.ParserRuleContext { public overWindowItem(): OverWindowItemContext | null { return this.getRuleContext(0, OverWindowItemContext); } - public columnName(): ColumnNameContext | null { - return this.getRuleContext(0, ColumnNameContext); - } public expression(): ExpressionContext | null { return this.getRuleContext(0, ExpressionContext); } + public columnName(): ColumnNameContext | null { + return this.getRuleContext(0, ColumnNameContext); + } public KW_AS(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_AS, 0); } @@ -16887,46 +17211,16 @@ export class TablePrimaryContext extends antlr.ParserRuleContext { return this.getRuleContext(0, ViewPathContext); } public KW_LATERAL(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.KW_LATERAL, 0); - } - 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 functionName(): FunctionNameContext | null { - return this.getRuleContext(0, FunctionNameContext); - } - public functionParam(): FunctionParamContext[]; - public functionParam(i: number): FunctionParamContext | null; - public functionParam(i?: number): FunctionParamContext[] | FunctionParamContext | null { - if (i === undefined) { - return this.getRuleContexts(FunctionParamContext); - } - - return this.getRuleContext(i, FunctionParamContext); + return this.getToken(FlinkSqlParser.KW_LATERAL, 0); } - 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 LR_BRACKET(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); } - public COMMA(): antlr.TerminalNode[]; - public COMMA(i: number): antlr.TerminalNode | null; - public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(FlinkSqlParser.COMMA); - } else { - return this.getToken(FlinkSqlParser.COMMA, i); - } + public functionCallExpression(): FunctionCallExpressionContext | null { + return this.getRuleContext(0, FunctionCallExpressionContext); + } + public RR_BRACKET(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); } public queryStatement(): QueryStatementContext | null { return this.getRuleContext(0, QueryStatementContext); @@ -19181,6 +19475,69 @@ export class ArithmeticUnaryContext extends ValueExpressionContext { } +export class FunctionCallExpressionContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public reservedKeywordsNoParamsUsedAsFuncName(): ReservedKeywordsNoParamsUsedAsFuncNameContext | null { + return this.getRuleContext(0, ReservedKeywordsNoParamsUsedAsFuncNameContext); + } + public functionNameAndParams(): FunctionNameAndParamsContext | null { + return this.getRuleContext(0, FunctionNameAndParamsContext); + } + public functionNameWithParams(): FunctionNameWithParamsContext | null { + return this.getRuleContext(0, FunctionNameWithParamsContext); + } + public LR_BRACKET(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); + } + public RR_BRACKET(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); + } + public functionParam(): FunctionParamContext[]; + public functionParam(i: number): FunctionParamContext | null; + public functionParam(i?: number): FunctionParamContext[] | FunctionParamContext | null { + if (i === undefined) { + return this.getRuleContexts(FunctionParamContext); + } + + return this.getRuleContext(i, FunctionParamContext); + } + public setQuantifier(): SetQuantifierContext | null { + return this.getRuleContext(0, SetQuantifierContext); + } + public COMMA(): antlr.TerminalNode[]; + public COMMA(i: number): antlr.TerminalNode | null; + public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { + if (i === undefined) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_functionCallExpression; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterFunctionCallExpression) { + listener.enterFunctionCallExpression(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitFunctionCallExpression) { + listener.exitFunctionCallExpression(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitFunctionCallExpression) { + return visitor.visitFunctionCallExpression(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class PrimaryExpressionContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -19542,35 +19899,8 @@ export class FunctionCallContext extends PrimaryExpressionContext { super(ctx.parent, ctx.invokingState); super.copyFrom(ctx); } - public functionName(): FunctionNameContext { - return this.getRuleContext(0, FunctionNameContext)!; - } - public LR_BRACKET(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.LR_BRACKET, 0)!; - } - public RR_BRACKET(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.RR_BRACKET, 0)!; - } - public functionParam(): FunctionParamContext[]; - public functionParam(i: number): FunctionParamContext | null; - public functionParam(i?: number): FunctionParamContext[] | FunctionParamContext | null { - if (i === undefined) { - return this.getRuleContexts(FunctionParamContext); - } - - return this.getRuleContext(i, FunctionParamContext); - } - public setQuantifier(): SetQuantifierContext | null { - return this.getRuleContext(0, SetQuantifierContext); - } - public COMMA(): antlr.TerminalNode[]; - public COMMA(i: number): antlr.TerminalNode | null; - public COMMA(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(FlinkSqlParser.COMMA); - } else { - return this.getToken(FlinkSqlParser.COMMA, i); - } + public functionCallExpression(): FunctionCallExpressionContext { + return this.getRuleContext(0, FunctionCallExpressionContext)!; } public override enterRule(listener: FlinkSqlParserListener): void { if(listener.enterFunctionCall) { @@ -19681,32 +20011,6 @@ export class PositionContext extends PrimaryExpressionContext { } } } -export class DateFunctionExpressionContext extends PrimaryExpressionContext { - public constructor(ctx: PrimaryExpressionContext) { - super(ctx.parent, ctx.invokingState); - super.copyFrom(ctx); - } - public KW_CURRENT_TIMESTAMP(): antlr.TerminalNode { - return this.getToken(FlinkSqlParser.KW_CURRENT_TIMESTAMP, 0)!; - } - public override enterRule(listener: FlinkSqlParserListener): void { - if(listener.enterDateFunctionExpression) { - listener.enterDateFunctionExpression(this); - } - } - public override exitRule(listener: FlinkSqlParserListener): void { - if(listener.exitDateFunctionExpression) { - listener.exitDateFunctionExpression(this); - } - } - public override accept(visitor: FlinkSqlParserVisitor): Result | null { - if (visitor.visitDateFunctionExpression) { - return visitor.visitDateFunctionExpression(this); - } else { - return visitor.visitChildren(this); - } - } -} export class FirstContext extends PrimaryExpressionContext { public constructor(ctx: PrimaryExpressionContext) { super(ctx.parent, ctx.invokingState); @@ -19787,6 +20091,12 @@ export class FunctionNameContext extends antlr.ParserRuleContext { public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext | null { return this.getRuleContext(0, ReservedKeywordsUsedAsFuncNameContext); } + public reservedKeywordsNoParamsUsedAsFuncName(): ReservedKeywordsNoParamsUsedAsFuncNameContext | null { + return this.getRuleContext(0, ReservedKeywordsNoParamsUsedAsFuncNameContext); + } + public reservedKeywordsFollowParamsUsedAsFuncName(): ReservedKeywordsFollowParamsUsedAsFuncNameContext | null { + return this.getRuleContext(0, ReservedKeywordsFollowParamsUsedAsFuncNameContext); + } public uid(): UidContext | null { return this.getRuleContext(0, UidContext); } @@ -19813,6 +20123,75 @@ export class FunctionNameContext extends antlr.ParserRuleContext { } +export class FunctionNameAndParamsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public reservedKeywordsFollowParamsUsedAsFuncName(): ReservedKeywordsFollowParamsUsedAsFuncNameContext | null { + return this.getRuleContext(0, ReservedKeywordsFollowParamsUsedAsFuncNameContext); + } + public STRING_LITERAL(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.STRING_LITERAL, 0); + } + public timeIntervalExpression(): TimeIntervalExpressionContext | null { + return this.getRuleContext(0, TimeIntervalExpressionContext); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_functionNameAndParams; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterFunctionNameAndParams) { + listener.enterFunctionNameAndParams(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitFunctionNameAndParams) { + listener.exitFunctionNameAndParams(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitFunctionNameAndParams) { + return visitor.visitFunctionNameAndParams(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class FunctionNameWithParamsContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext | null { + return this.getRuleContext(0, ReservedKeywordsUsedAsFuncNameContext); + } + public uid(): UidContext | null { + return this.getRuleContext(0, UidContext); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_functionNameWithParams; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterFunctionNameWithParams) { + listener.enterFunctionNameWithParams(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitFunctionNameWithParams) { + listener.exitFunctionNameWithParams(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitFunctionNameWithParams) { + return visitor.visitFunctionNameWithParams(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class FunctionParamContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -21909,6 +22288,84 @@ export class ReservedKeywordsUsedAsFuncParamContext extends antlr.ParserRuleCont } +export class ReservedKeywordsNoParamsUsedAsFuncNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_LOCALTIME(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_LOCALTIME, 0); + } + public KW_LOCALTIMESTAMP(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_LOCALTIMESTAMP, 0); + } + public KW_CURRENT_TIME(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_CURRENT_TIME, 0); + } + public KW_CURRENT_DATE(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_CURRENT_DATE, 0); + } + public KW_CURRENT_TIMESTAMP(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_CURRENT_TIMESTAMP, 0); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_reservedKeywordsNoParamsUsedAsFuncName; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterReservedKeywordsNoParamsUsedAsFuncName) { + listener.enterReservedKeywordsNoParamsUsedAsFuncName(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitReservedKeywordsNoParamsUsedAsFuncName) { + listener.exitReservedKeywordsNoParamsUsedAsFuncName(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitReservedKeywordsNoParamsUsedAsFuncName) { + return visitor.visitReservedKeywordsNoParamsUsedAsFuncName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + +export class ReservedKeywordsFollowParamsUsedAsFuncNameContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_DATE(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_DATE, 0); + } + public KW_TIME(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_TIME, 0); + } + public KW_TIMESTAMP(): antlr.TerminalNode | null { + return this.getToken(FlinkSqlParser.KW_TIMESTAMP, 0); + } + public override get ruleIndex(): number { + return FlinkSqlParser.RULE_reservedKeywordsFollowParamsUsedAsFuncName; + } + public override enterRule(listener: FlinkSqlParserListener): void { + if(listener.enterReservedKeywordsFollowParamsUsedAsFuncName) { + listener.enterReservedKeywordsFollowParamsUsedAsFuncName(this); + } + } + public override exitRule(listener: FlinkSqlParserListener): void { + if(listener.exitReservedKeywordsFollowParamsUsedAsFuncName) { + listener.exitReservedKeywordsFollowParamsUsedAsFuncName(this); + } + } + public override accept(visitor: FlinkSqlParserVisitor): Result | null { + if (visitor.visitReservedKeywordsFollowParamsUsedAsFuncName) { + return visitor.visitReservedKeywordsFollowParamsUsedAsFuncName(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class ReservedKeywordsUsedAsFuncNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -21946,18 +22403,6 @@ export class ReservedKeywordsUsedAsFuncNameContext extends antlr.ParserRuleConte public KW_CUME_DIST(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_CUME_DIST, 0); } - public KW_CURRENT_DATE(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.KW_CURRENT_DATE, 0); - } - public KW_CURRENT_TIME(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.KW_CURRENT_TIME, 0); - } - public KW_CURRENT_TIMESTAMP(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.KW_CURRENT_TIMESTAMP, 0); - } - public KW_DATE(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.KW_DATE, 0); - } public KW_DAYOFWEEK(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_DAYOFWEEK, 0); } @@ -22006,12 +22451,6 @@ export class ReservedKeywordsUsedAsFuncNameContext extends antlr.ParserRuleConte public KW_LN(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_LN, 0); } - public KW_LOCALTIME(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.KW_LOCALTIME, 0); - } - public KW_LOCALTIMESTAMP(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.KW_LOCALTIMESTAMP, 0); - } public KW_LOWER(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_LOWER, 0); } @@ -22084,12 +22523,6 @@ export class ReservedKeywordsUsedAsFuncNameContext extends antlr.ParserRuleConte public KW_SUM(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_SUM, 0); } - public KW_TIME(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.KW_TIME, 0); - } - public KW_TIMESTAMP(): antlr.TerminalNode | null { - return this.getToken(FlinkSqlParser.KW_TIMESTAMP, 0); - } public KW_TIMESTAMP_DIFF(): antlr.TerminalNode | null { return this.getToken(FlinkSqlParser.KW_TIMESTAMP_DIFF, 0); } diff --git a/src/lib/flink/FlinkSqlParserListener.ts b/src/lib/flink/FlinkSqlParserListener.ts index d348207e..6a1b2ab9 100644 --- a/src/lib/flink/FlinkSqlParserListener.ts +++ b/src/lib/flink/FlinkSqlParserListener.ts @@ -149,6 +149,7 @@ import { ValueExpressionDefaultContext } from "./FlinkSqlParser.js"; import { ComparisonContext } from "./FlinkSqlParser.js"; import { ArithmeticBinaryContext } from "./FlinkSqlParser.js"; import { ArithmeticUnaryContext } from "./FlinkSqlParser.js"; +import { FunctionCallExpressionContext } from "./FlinkSqlParser.js"; import { DereferenceContext } from "./FlinkSqlParser.js"; import { SimpleCaseContext } from "./FlinkSqlParser.js"; import { ColumnReferenceContext } from "./FlinkSqlParser.js"; @@ -162,10 +163,11 @@ import { ParenthesizedExpressionContext } from "./FlinkSqlParser.js"; import { FunctionCallContext } from "./FlinkSqlParser.js"; import { SearchedCaseContext } from "./FlinkSqlParser.js"; import { PositionContext } from "./FlinkSqlParser.js"; -import { DateFunctionExpressionContext } from "./FlinkSqlParser.js"; import { FirstContext } from "./FlinkSqlParser.js"; import { FunctionNameCreateContext } from "./FlinkSqlParser.js"; import { FunctionNameContext } from "./FlinkSqlParser.js"; +import { FunctionNameAndParamsContext } from "./FlinkSqlParser.js"; +import { FunctionNameWithParamsContext } from "./FlinkSqlParser.js"; import { FunctionParamContext } from "./FlinkSqlParser.js"; import { DereferenceDefinitionContext } from "./FlinkSqlParser.js"; import { CorrelationNameContext } from "./FlinkSqlParser.js"; @@ -218,6 +220,8 @@ import { SetQuantifierContext } from "./FlinkSqlParser.js"; import { TimePointUnitContext } from "./FlinkSqlParser.js"; import { TimeIntervalUnitContext } from "./FlinkSqlParser.js"; import { ReservedKeywordsUsedAsFuncParamContext } from "./FlinkSqlParser.js"; +import { ReservedKeywordsNoParamsUsedAsFuncNameContext } from "./FlinkSqlParser.js"; +import { ReservedKeywordsFollowParamsUsedAsFuncNameContext } from "./FlinkSqlParser.js"; import { ReservedKeywordsUsedAsFuncNameContext } from "./FlinkSqlParser.js"; import { NonReservedKeywordsContext } from "./FlinkSqlParser.js"; @@ -1659,6 +1663,16 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitArithmeticUnary?: (ctx: ArithmeticUnaryContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.functionCallExpression`. + * @param ctx the parse tree + */ + enterFunctionCallExpression?: (ctx: FunctionCallExpressionContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.functionCallExpression`. + * @param ctx the parse tree + */ + exitFunctionCallExpression?: (ctx: FunctionCallExpressionContext) => void; /** * Enter a parse tree produced by the `dereference` * labeled alternative in `FlinkSqlParser.primaryExpression`. @@ -1815,18 +1829,6 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitPosition?: (ctx: PositionContext) => void; - /** - * Enter a parse tree produced by the `dateFunctionExpression` - * labeled alternative in `FlinkSqlParser.primaryExpression`. - * @param ctx the parse tree - */ - enterDateFunctionExpression?: (ctx: DateFunctionExpressionContext) => void; - /** - * Exit a parse tree produced by the `dateFunctionExpression` - * labeled alternative in `FlinkSqlParser.primaryExpression`. - * @param ctx the parse tree - */ - exitDateFunctionExpression?: (ctx: DateFunctionExpressionContext) => void; /** * Enter a parse tree produced by the `first` * labeled alternative in `FlinkSqlParser.primaryExpression`. @@ -1859,6 +1861,26 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitFunctionName?: (ctx: FunctionNameContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.functionNameAndParams`. + * @param ctx the parse tree + */ + enterFunctionNameAndParams?: (ctx: FunctionNameAndParamsContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.functionNameAndParams`. + * @param ctx the parse tree + */ + exitFunctionNameAndParams?: (ctx: FunctionNameAndParamsContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.functionNameWithParams`. + * @param ctx the parse tree + */ + enterFunctionNameWithParams?: (ctx: FunctionNameWithParamsContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.functionNameWithParams`. + * @param ctx the parse tree + */ + exitFunctionNameWithParams?: (ctx: FunctionNameWithParamsContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.functionParam`. * @param ctx the parse tree @@ -2389,6 +2411,26 @@ export class FlinkSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitReservedKeywordsUsedAsFuncParam?: (ctx: ReservedKeywordsUsedAsFuncParamContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.reservedKeywordsNoParamsUsedAsFuncName`. + * @param ctx the parse tree + */ + enterReservedKeywordsNoParamsUsedAsFuncName?: (ctx: ReservedKeywordsNoParamsUsedAsFuncNameContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.reservedKeywordsNoParamsUsedAsFuncName`. + * @param ctx the parse tree + */ + exitReservedKeywordsNoParamsUsedAsFuncName?: (ctx: ReservedKeywordsNoParamsUsedAsFuncNameContext) => void; + /** + * Enter a parse tree produced by `FlinkSqlParser.reservedKeywordsFollowParamsUsedAsFuncName`. + * @param ctx the parse tree + */ + enterReservedKeywordsFollowParamsUsedAsFuncName?: (ctx: ReservedKeywordsFollowParamsUsedAsFuncNameContext) => void; + /** + * Exit a parse tree produced by `FlinkSqlParser.reservedKeywordsFollowParamsUsedAsFuncName`. + * @param ctx the parse tree + */ + exitReservedKeywordsFollowParamsUsedAsFuncName?: (ctx: ReservedKeywordsFollowParamsUsedAsFuncNameContext) => void; /** * Enter a parse tree produced by `FlinkSqlParser.reservedKeywordsUsedAsFuncName`. * @param ctx the parse tree diff --git a/src/lib/flink/FlinkSqlParserVisitor.ts b/src/lib/flink/FlinkSqlParserVisitor.ts index d8064813..1a02bd2f 100644 --- a/src/lib/flink/FlinkSqlParserVisitor.ts +++ b/src/lib/flink/FlinkSqlParserVisitor.ts @@ -149,6 +149,7 @@ import { ValueExpressionDefaultContext } from "./FlinkSqlParser.js"; import { ComparisonContext } from "./FlinkSqlParser.js"; import { ArithmeticBinaryContext } from "./FlinkSqlParser.js"; import { ArithmeticUnaryContext } from "./FlinkSqlParser.js"; +import { FunctionCallExpressionContext } from "./FlinkSqlParser.js"; import { DereferenceContext } from "./FlinkSqlParser.js"; import { SimpleCaseContext } from "./FlinkSqlParser.js"; import { ColumnReferenceContext } from "./FlinkSqlParser.js"; @@ -162,10 +163,11 @@ import { ParenthesizedExpressionContext } from "./FlinkSqlParser.js"; import { FunctionCallContext } from "./FlinkSqlParser.js"; import { SearchedCaseContext } from "./FlinkSqlParser.js"; import { PositionContext } from "./FlinkSqlParser.js"; -import { DateFunctionExpressionContext } from "./FlinkSqlParser.js"; import { FirstContext } from "./FlinkSqlParser.js"; import { FunctionNameCreateContext } from "./FlinkSqlParser.js"; import { FunctionNameContext } from "./FlinkSqlParser.js"; +import { FunctionNameAndParamsContext } from "./FlinkSqlParser.js"; +import { FunctionNameWithParamsContext } from "./FlinkSqlParser.js"; import { FunctionParamContext } from "./FlinkSqlParser.js"; import { DereferenceDefinitionContext } from "./FlinkSqlParser.js"; import { CorrelationNameContext } from "./FlinkSqlParser.js"; @@ -218,6 +220,8 @@ import { SetQuantifierContext } from "./FlinkSqlParser.js"; import { TimePointUnitContext } from "./FlinkSqlParser.js"; import { TimeIntervalUnitContext } from "./FlinkSqlParser.js"; import { ReservedKeywordsUsedAsFuncParamContext } from "./FlinkSqlParser.js"; +import { ReservedKeywordsNoParamsUsedAsFuncNameContext } from "./FlinkSqlParser.js"; +import { ReservedKeywordsFollowParamsUsedAsFuncNameContext } from "./FlinkSqlParser.js"; import { ReservedKeywordsUsedAsFuncNameContext } from "./FlinkSqlParser.js"; import { NonReservedKeywordsContext } from "./FlinkSqlParser.js"; @@ -1087,6 +1091,12 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.functionCallExpression`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFunctionCallExpression?: (ctx: FunctionCallExpressionContext) => Result; /** * Visit a parse tree produced by the `dereference` * labeled alternative in `FlinkSqlParser.primaryExpression`. @@ -1178,13 +1188,6 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; - /** - * Visit a parse tree produced by the `dateFunctionExpression` - * labeled alternative in `FlinkSqlParser.primaryExpression`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDateFunctionExpression?: (ctx: DateFunctionExpressionContext) => Result; /** * Visit a parse tree produced by the `first` * labeled alternative in `FlinkSqlParser.primaryExpression`. @@ -1204,6 +1207,18 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.functionNameAndParams`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFunctionNameAndParams?: (ctx: FunctionNameAndParamsContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.functionNameWithParams`. + * @param ctx the parse tree + * @return the visitor result + */ + visitFunctionNameWithParams?: (ctx: FunctionNameWithParamsContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.functionParam`. * @param ctx the parse tree @@ -1521,6 +1536,18 @@ export class FlinkSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.reservedKeywordsNoParamsUsedAsFuncName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitReservedKeywordsNoParamsUsedAsFuncName?: (ctx: ReservedKeywordsNoParamsUsedAsFuncNameContext) => Result; + /** + * Visit a parse tree produced by `FlinkSqlParser.reservedKeywordsFollowParamsUsedAsFuncName`. + * @param ctx the parse tree + * @return the visitor result + */ + visitReservedKeywordsFollowParamsUsedAsFuncName?: (ctx: ReservedKeywordsFollowParamsUsedAsFuncNameContext) => Result; /** * Visit a parse tree produced by `FlinkSqlParser.reservedKeywordsUsedAsFuncName`. * @param ctx the parse tree diff --git a/src/parser/flink/index.ts b/src/parser/flink/index.ts index b373b736..86c27818 100644 --- a/src/parser/flink/index.ts +++ b/src/parser/flink/index.ts @@ -31,6 +31,9 @@ export class FlinkSQL extends BasicSQL 'None' and date_format (click_time, 'yyyy-MM-dd') >= to_date ('2024-12-04', 'yyyy-MM-dd'); - + +SELECT + LOCALTIMESTAMP, + CURRENT_TIME, + CURRENT_DATE, + CURRENT_TIMESTAMP, + LOCALTIME, + DATE '2019-12-23' as time1, + TIMESTAMP '2019-12-23 09:00:00' as time2, + INTERVAL '10 00:00:00.004' DAY TO SECOND as time3 +from + MyTable;