From b44204829fc2d40fcc5b61ff82530982bc65e369 Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Thu, 19 Sep 2024 22:02:46 +0200 Subject: [PATCH 01/11] feat(hogql): placeholder expressions (part 1) --- hogql_parser/HogQLParser.cpp | 22 ++++++++--------- hogql_parser/HogQLParser.h | 4 ++-- hogql_parser/HogQLParser.interp | 2 +- hogql_parser/parser.cpp | 6 +---- posthog/api/test/test_insight.py | 2 +- posthog/hogql/ast.py | 6 +++-- posthog/hogql/bytecode.py | 3 +++ posthog/hogql/filters.py | 6 ++--- posthog/hogql/grammar/HogQLParser.g4 | 4 ++-- posthog/hogql/grammar/HogQLParser.interp | 2 +- posthog/hogql/grammar/HogQLParser.py | 24 +++++++++---------- posthog/hogql/parser.py | 3 +-- posthog/hogql/placeholders.py | 2 +- posthog/hogql/printer.py | 2 +- posthog/hogql/test/_test_parser.py | 6 ++--- posthog/hogql/test/test_placeholders.py | 12 +++++----- posthog/hogql/test/test_visitor.py | 2 +- posthog/hogql/visitor.py | 2 +- .../error_tracking_query_runner.py | 2 +- .../insights/trends/aggregation_operations.py | 8 +++++-- 20 files changed, 62 insertions(+), 58 deletions(-) diff --git a/hogql_parser/HogQLParser.cpp b/hogql_parser/HogQLParser.cpp index 874d403371922..09bf6617add30 100644 --- a/hogql_parser/HogQLParser.cpp +++ b/hogql_parser/HogQLParser.cpp @@ -518,7 +518,7 @@ void hogqlparserParserInitialize() { 0,0,1069,1071,5,117,0,0,1070,1069,1,0,0,0,1070,1071,1,0,0,0,1071,1075, 1,0,0,0,1072,1073,5,131,0,0,1073,1075,5,150,0,0,1074,1047,1,0,0,0,1074, 1061,1,0,0,0,1074,1072,1,0,0,0,1075,1076,1,0,0,0,1076,1079,5,112,0,0, - 1077,1080,3,116,58,0,1078,1080,3,36,18,0,1079,1077,1,0,0,0,1079,1078, + 1077,1080,3,36,18,0,1078,1080,3,116,58,0,1079,1077,1,0,0,0,1079,1078, 1,0,0,0,1080,119,1,0,0,0,1081,1082,5,133,0,0,1082,1086,3,156,78,0,1083, 1085,3,122,61,0,1084,1083,1,0,0,0,1085,1088,1,0,0,0,1086,1084,1,0,0,0, 1086,1087,1,0,0,0,1087,1089,1,0,0,0,1088,1086,1,0,0,0,1089,1090,5,152, @@ -578,7 +578,7 @@ void hogqlparserParserInitialize() { 1257,5,106,0,0,1254,1257,3,148,74,0,1255,1257,3,150,75,0,1256,1253,1, 0,0,0,1256,1254,1,0,0,0,1256,1255,1,0,0,0,1257,157,1,0,0,0,1258,1259, 3,162,81,0,1259,1260,5,123,0,0,1260,1261,3,144,72,0,1261,159,1,0,0,0, - 1262,1263,5,129,0,0,1263,1264,3,130,65,0,1264,1265,5,148,0,0,1265,161, + 1262,1263,5,129,0,0,1263,1264,3,116,58,0,1264,1265,5,148,0,0,1265,161, 1,0,0,0,1266,1269,5,111,0,0,1267,1269,3,164,82,0,1268,1266,1,0,0,0,1268, 1267,1,0,0,0,1269,163,1,0,0,0,1270,1274,5,143,0,0,1271,1273,3,166,83, 0,1272,1271,1,0,0,0,1273,1276,1,0,0,0,1274,1272,1,0,0,0,1274,1275,1,0, @@ -8886,14 +8886,14 @@ tree::TerminalNode* HogQLParser::ColumnLambdaExprContext::RPAREN() { return getToken(HogQLParser::RPAREN, 0); } -HogQLParser::ColumnExprContext* HogQLParser::ColumnLambdaExprContext::columnExpr() { - return getRuleContext(0); -} - HogQLParser::BlockContext* HogQLParser::ColumnLambdaExprContext::block() { return getRuleContext(0); } +HogQLParser::ColumnExprContext* HogQLParser::ColumnLambdaExprContext::columnExpr() { + return getRuleContext(0); +} + std::vector HogQLParser::ColumnLambdaExprContext::COMMA() { return getTokens(HogQLParser::COMMA); } @@ -9011,13 +9011,13 @@ HogQLParser::ColumnLambdaExprContext* HogQLParser::columnLambdaExpr() { switch (getInterpreter()->adaptivePredict(_input, 136, _ctx)) { case 1: { setState(1077); - columnExpr(0); + block(); break; } case 2: { setState(1078); - block(); + columnExpr(0); break; } @@ -11599,8 +11599,8 @@ tree::TerminalNode* HogQLParser::PlaceholderContext::LBRACE() { return getToken(HogQLParser::LBRACE, 0); } -HogQLParser::NestedIdentifierContext* HogQLParser::PlaceholderContext::nestedIdentifier() { - return getRuleContext(0); +HogQLParser::ColumnExprContext* HogQLParser::PlaceholderContext::columnExpr() { + return getRuleContext(0); } tree::TerminalNode* HogQLParser::PlaceholderContext::RBRACE() { @@ -11636,7 +11636,7 @@ HogQLParser::PlaceholderContext* HogQLParser::placeholder() { setState(1262); match(HogQLParser::LBRACE); setState(1263); - nestedIdentifier(); + columnExpr(0); setState(1264); match(HogQLParser::RBRACE); diff --git a/hogql_parser/HogQLParser.h b/hogql_parser/HogQLParser.h index 45d2486333821..c4a00e0fae3c5 100644 --- a/hogql_parser/HogQLParser.h +++ b/hogql_parser/HogQLParser.h @@ -1872,8 +1872,8 @@ class HogQLParser : public antlr4::Parser { std::vector identifier(); IdentifierContext* identifier(size_t i); antlr4::tree::TerminalNode *RPAREN(); - ColumnExprContext *columnExpr(); BlockContext *block(); + ColumnExprContext *columnExpr(); std::vector COMMA(); antlr4::tree::TerminalNode* COMMA(size_t i); @@ -2407,7 +2407,7 @@ class HogQLParser : public antlr4::Parser { PlaceholderContext(antlr4::ParserRuleContext *parent, size_t invokingState); virtual size_t getRuleIndex() const override; antlr4::tree::TerminalNode *LBRACE(); - NestedIdentifierContext *nestedIdentifier(); + ColumnExprContext *columnExpr(); antlr4::tree::TerminalNode *RBRACE(); diff --git a/hogql_parser/HogQLParser.interp b/hogql_parser/HogQLParser.interp index 18287ddb823bd..3ed0215cdb034 100644 --- a/hogql_parser/HogQLParser.interp +++ b/hogql_parser/HogQLParser.interp @@ -414,4 +414,4 @@ stringContentsFull atn: -[4, 1, 160, 1303, 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, 1, 0, 5, 0, 174, 8, 0, 10, 0, 12, 0, 177, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 183, 8, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 192, 8, 3, 1, 4, 1, 4, 1, 4, 5, 4, 197, 8, 4, 10, 4, 12, 4, 200, 9, 4, 1, 4, 3, 4, 203, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 217, 8, 5, 1, 6, 1, 6, 3, 6, 221, 8, 6, 1, 6, 3, 6, 224, 8, 6, 1, 7, 1, 7, 3, 7, 228, 8, 7, 1, 7, 3, 7, 231, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 238, 8, 8, 1, 8, 1, 8, 3, 8, 242, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 249, 8, 9, 10, 9, 12, 9, 252, 9, 9, 1, 9, 1, 9, 3, 9, 256, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 265, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 273, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 280, 8, 12, 1, 12, 1, 12, 3, 12, 284, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 290, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 295, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 303, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 310, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 316, 8, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 328, 8, 16, 1, 17, 1, 17, 1, 18, 1, 18, 5, 18, 334, 8, 18, 10, 18, 12, 18, 337, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 5, 20, 348, 8, 20, 10, 20, 12, 20, 351, 9, 20, 1, 20, 3, 20, 354, 8, 20, 1, 21, 1, 21, 1, 21, 3, 21, 359, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 367, 8, 22, 10, 22, 12, 22, 370, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 378, 8, 23, 1, 24, 3, 24, 381, 8, 24, 1, 24, 1, 24, 3, 24, 385, 8, 24, 1, 24, 3, 24, 388, 8, 24, 1, 24, 1, 24, 3, 24, 392, 8, 24, 1, 24, 3, 24, 395, 8, 24, 1, 24, 3, 24, 398, 8, 24, 1, 24, 3, 24, 401, 8, 24, 1, 24, 3, 24, 404, 8, 24, 1, 24, 1, 24, 3, 24, 408, 8, 24, 1, 24, 1, 24, 3, 24, 412, 8, 24, 1, 24, 3, 24, 415, 8, 24, 1, 24, 3, 24, 418, 8, 24, 1, 24, 3, 24, 421, 8, 24, 1, 24, 1, 24, 3, 24, 425, 8, 24, 1, 24, 3, 24, 428, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 437, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 443, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 462, 8, 29, 10, 29, 12, 29, 465, 9, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 481, 8, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 498, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 504, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 510, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 521, 8, 36, 3, 36, 523, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 534, 8, 39, 1, 39, 3, 39, 537, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 543, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 551, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 557, 8, 39, 10, 39, 12, 39, 560, 9, 39, 1, 40, 3, 40, 563, 8, 40, 1, 40, 1, 40, 1, 40, 3, 40, 568, 8, 40, 1, 40, 3, 40, 571, 8, 40, 1, 40, 3, 40, 574, 8, 40, 1, 40, 1, 40, 3, 40, 578, 8, 40, 1, 40, 1, 40, 3, 40, 582, 8, 40, 1, 40, 3, 40, 585, 8, 40, 3, 40, 587, 8, 40, 1, 40, 3, 40, 590, 8, 40, 1, 40, 1, 40, 3, 40, 594, 8, 40, 1, 40, 1, 40, 3, 40, 598, 8, 40, 1, 40, 3, 40, 601, 8, 40, 3, 40, 603, 8, 40, 3, 40, 605, 8, 40, 1, 41, 1, 41, 1, 41, 3, 41, 610, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 621, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 627, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 632, 8, 44, 10, 44, 12, 44, 635, 9, 44, 1, 45, 1, 45, 3, 45, 639, 8, 45, 1, 45, 1, 45, 3, 45, 643, 8, 45, 1, 45, 1, 45, 3, 45, 647, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 653, 8, 46, 3, 46, 655, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 660, 8, 47, 10, 47, 12, 47, 663, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 3, 49, 670, 8, 49, 1, 49, 3, 49, 673, 8, 49, 1, 49, 3, 49, 676, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 695, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 709, 8, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 723, 8, 56, 10, 56, 12, 56, 726, 9, 56, 1, 56, 3, 56, 729, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 738, 8, 56, 10, 56, 12, 56, 741, 9, 56, 1, 56, 3, 56, 744, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 753, 8, 56, 10, 56, 12, 56, 756, 9, 56, 1, 56, 3, 56, 759, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 766, 8, 56, 1, 56, 1, 56, 3, 56, 770, 8, 56, 1, 57, 1, 57, 1, 57, 5, 57, 775, 8, 57, 10, 57, 12, 57, 778, 9, 57, 1, 57, 3, 57, 781, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 786, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 4, 58, 793, 8, 58, 11, 58, 12, 58, 794, 1, 58, 1, 58, 3, 58, 799, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 823, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 840, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 846, 8, 58, 1, 58, 3, 58, 849, 8, 58, 1, 58, 3, 58, 852, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 862, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 868, 8, 58, 1, 58, 3, 58, 871, 8, 58, 1, 58, 3, 58, 874, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 882, 8, 58, 1, 58, 3, 58, 885, 8, 58, 1, 58, 1, 58, 3, 58, 889, 8, 58, 1, 58, 3, 58, 892, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 906, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 923, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 928, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 933, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 939, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 946, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 958, 8, 58, 1, 58, 1, 58, 3, 58, 962, 8, 58, 1, 58, 3, 58, 965, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 974, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 988, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1004, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1033, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1041, 8, 58, 5, 58, 1043, 8, 58, 10, 58, 12, 58, 1046, 9, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1052, 8, 59, 10, 59, 12, 59, 1055, 9, 59, 1, 59, 3, 59, 1058, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1065, 8, 59, 10, 59, 12, 59, 1068, 9, 59, 1, 59, 3, 59, 1071, 8, 59, 1, 59, 1, 59, 3, 59, 1075, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1080, 8, 59, 1, 60, 1, 60, 1, 60, 5, 60, 1085, 8, 60, 10, 60, 12, 60, 1088, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1096, 8, 60, 10, 60, 12, 60, 1099, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1107, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1114, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1127, 8, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1132, 8, 62, 10, 62, 12, 62, 1135, 9, 62, 1, 62, 3, 62, 1138, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1150, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1156, 8, 64, 1, 64, 3, 64, 1159, 8, 64, 1, 65, 1, 65, 1, 65, 5, 65, 1164, 8, 65, 10, 65, 12, 65, 1167, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1178, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1184, 8, 66, 5, 66, 1186, 8, 66, 10, 66, 12, 66, 1189, 9, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1194, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1201, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 5, 69, 1208, 8, 69, 10, 69, 12, 69, 1211, 9, 69, 1, 69, 3, 69, 1214, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1224, 8, 71, 3, 71, 1226, 8, 71, 1, 72, 3, 72, 1229, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1237, 8, 72, 1, 73, 1, 73, 1, 73, 3, 73, 1242, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1252, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 1257, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 3, 81, 1269, 8, 81, 1, 82, 1, 82, 5, 82, 1273, 8, 82, 10, 82, 12, 82, 1276, 9, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1285, 8, 83, 1, 84, 1, 84, 5, 84, 1289, 8, 84, 10, 84, 12, 84, 1292, 9, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1301, 8, 85, 1, 85, 0, 3, 78, 116, 132, 86, 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, 0, 17, 2, 0, 31, 31, 36, 36, 2, 0, 18, 18, 75, 75, 2, 0, 45, 45, 52, 52, 3, 0, 1, 1, 4, 4, 8, 8, 4, 0, 1, 1, 3, 4, 8, 8, 81, 81, 2, 0, 52, 52, 74, 74, 2, 0, 1, 1, 4, 4, 2, 0, 7, 7, 22, 23, 2, 0, 30, 30, 50, 50, 2, 0, 72, 72, 77, 77, 3, 0, 10, 10, 51, 51, 91, 91, 2, 0, 42, 42, 54, 54, 1, 0, 108, 109, 2, 0, 119, 119, 140, 140, 7, 0, 21, 21, 39, 39, 56, 57, 71, 71, 79, 79, 98, 98, 104, 104, 17, 0, 1, 13, 15, 20, 22, 28, 30, 30, 32, 35, 37, 38, 40, 43, 45, 52, 54, 55, 59, 59, 61, 70, 72, 78, 80, 84, 86, 93, 95, 97, 99, 100, 102, 103, 4, 0, 20, 20, 30, 30, 40, 40, 49, 49, 1475, 0, 175, 1, 0, 0, 0, 2, 182, 1, 0, 0, 0, 4, 184, 1, 0, 0, 0, 6, 186, 1, 0, 0, 0, 8, 193, 1, 0, 0, 0, 10, 216, 1, 0, 0, 0, 12, 218, 1, 0, 0, 0, 14, 225, 1, 0, 0, 0, 16, 232, 1, 0, 0, 0, 18, 245, 1, 0, 0, 0, 20, 257, 1, 0, 0, 0, 22, 266, 1, 0, 0, 0, 24, 274, 1, 0, 0, 0, 26, 296, 1, 0, 0, 0, 28, 311, 1, 0, 0, 0, 30, 320, 1, 0, 0, 0, 32, 325, 1, 0, 0, 0, 34, 329, 1, 0, 0, 0, 36, 331, 1, 0, 0, 0, 38, 340, 1, 0, 0, 0, 40, 344, 1, 0, 0, 0, 42, 358, 1, 0, 0, 0, 44, 362, 1, 0, 0, 0, 46, 377, 1, 0, 0, 0, 48, 380, 1, 0, 0, 0, 50, 429, 1, 0, 0, 0, 52, 432, 1, 0, 0, 0, 54, 438, 1, 0, 0, 0, 56, 442, 1, 0, 0, 0, 58, 448, 1, 0, 0, 0, 60, 466, 1, 0, 0, 0, 62, 469, 1, 0, 0, 0, 64, 472, 1, 0, 0, 0, 66, 482, 1, 0, 0, 0, 68, 485, 1, 0, 0, 0, 70, 489, 1, 0, 0, 0, 72, 522, 1, 0, 0, 0, 74, 524, 1, 0, 0, 0, 76, 527, 1, 0, 0, 0, 78, 542, 1, 0, 0, 0, 80, 604, 1, 0, 0, 0, 82, 609, 1, 0, 0, 0, 84, 620, 1, 0, 0, 0, 86, 622, 1, 0, 0, 0, 88, 628, 1, 0, 0, 0, 90, 636, 1, 0, 0, 0, 92, 654, 1, 0, 0, 0, 94, 656, 1, 0, 0, 0, 96, 664, 1, 0, 0, 0, 98, 669, 1, 0, 0, 0, 100, 677, 1, 0, 0, 0, 102, 681, 1, 0, 0, 0, 104, 685, 1, 0, 0, 0, 106, 694, 1, 0, 0, 0, 108, 708, 1, 0, 0, 0, 110, 710, 1, 0, 0, 0, 112, 769, 1, 0, 0, 0, 114, 771, 1, 0, 0, 0, 116, 932, 1, 0, 0, 0, 118, 1074, 1, 0, 0, 0, 120, 1113, 1, 0, 0, 0, 122, 1126, 1, 0, 0, 0, 124, 1128, 1, 0, 0, 0, 126, 1149, 1, 0, 0, 0, 128, 1158, 1, 0, 0, 0, 130, 1160, 1, 0, 0, 0, 132, 1177, 1, 0, 0, 0, 134, 1190, 1, 0, 0, 0, 136, 1200, 1, 0, 0, 0, 138, 1204, 1, 0, 0, 0, 140, 1215, 1, 0, 0, 0, 142, 1225, 1, 0, 0, 0, 144, 1228, 1, 0, 0, 0, 146, 1241, 1, 0, 0, 0, 148, 1243, 1, 0, 0, 0, 150, 1245, 1, 0, 0, 0, 152, 1247, 1, 0, 0, 0, 154, 1251, 1, 0, 0, 0, 156, 1256, 1, 0, 0, 0, 158, 1258, 1, 0, 0, 0, 160, 1262, 1, 0, 0, 0, 162, 1268, 1, 0, 0, 0, 164, 1270, 1, 0, 0, 0, 166, 1284, 1, 0, 0, 0, 168, 1286, 1, 0, 0, 0, 170, 1300, 1, 0, 0, 0, 172, 174, 3, 2, 1, 0, 173, 172, 1, 0, 0, 0, 174, 177, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 175, 176, 1, 0, 0, 0, 176, 178, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 178, 179, 5, 0, 0, 1, 179, 1, 1, 0, 0, 0, 180, 183, 3, 6, 3, 0, 181, 183, 3, 10, 5, 0, 182, 180, 1, 0, 0, 0, 182, 181, 1, 0, 0, 0, 183, 3, 1, 0, 0, 0, 184, 185, 3, 116, 58, 0, 185, 5, 1, 0, 0, 0, 186, 187, 5, 53, 0, 0, 187, 191, 3, 156, 78, 0, 188, 189, 5, 116, 0, 0, 189, 190, 5, 123, 0, 0, 190, 192, 3, 4, 2, 0, 191, 188, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 7, 1, 0, 0, 0, 193, 198, 3, 156, 78, 0, 194, 195, 5, 117, 0, 0, 195, 197, 3, 156, 78, 0, 196, 194, 1, 0, 0, 0, 197, 200, 1, 0, 0, 0, 198, 196, 1, 0, 0, 0, 198, 199, 1, 0, 0, 0, 199, 202, 1, 0, 0, 0, 200, 198, 1, 0, 0, 0, 201, 203, 5, 117, 0, 0, 202, 201, 1, 0, 0, 0, 202, 203, 1, 0, 0, 0, 203, 9, 1, 0, 0, 0, 204, 217, 3, 12, 6, 0, 205, 217, 3, 14, 7, 0, 206, 217, 3, 18, 9, 0, 207, 217, 3, 20, 10, 0, 208, 217, 3, 22, 11, 0, 209, 217, 3, 26, 13, 0, 210, 217, 3, 24, 12, 0, 211, 217, 3, 28, 14, 0, 212, 217, 3, 30, 15, 0, 213, 217, 3, 36, 18, 0, 214, 217, 3, 32, 16, 0, 215, 217, 3, 34, 17, 0, 216, 204, 1, 0, 0, 0, 216, 205, 1, 0, 0, 0, 216, 206, 1, 0, 0, 0, 216, 207, 1, 0, 0, 0, 216, 208, 1, 0, 0, 0, 216, 209, 1, 0, 0, 0, 216, 210, 1, 0, 0, 0, 216, 211, 1, 0, 0, 0, 216, 212, 1, 0, 0, 0, 216, 213, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 216, 215, 1, 0, 0, 0, 217, 11, 1, 0, 0, 0, 218, 220, 5, 73, 0, 0, 219, 221, 3, 4, 2, 0, 220, 219, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 223, 1, 0, 0, 0, 222, 224, 5, 151, 0, 0, 223, 222, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 13, 1, 0, 0, 0, 225, 227, 5, 85, 0, 0, 226, 228, 3, 4, 2, 0, 227, 226, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 231, 5, 151, 0, 0, 230, 229, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 15, 1, 0, 0, 0, 232, 241, 5, 14, 0, 0, 233, 234, 5, 131, 0, 0, 234, 237, 3, 156, 78, 0, 235, 236, 5, 116, 0, 0, 236, 238, 3, 156, 78, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 5, 150, 0, 0, 240, 242, 1, 0, 0, 0, 241, 233, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 244, 3, 36, 18, 0, 244, 17, 1, 0, 0, 0, 245, 246, 5, 94, 0, 0, 246, 250, 3, 36, 18, 0, 247, 249, 3, 16, 8, 0, 248, 247, 1, 0, 0, 0, 249, 252, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 250, 251, 1, 0, 0, 0, 251, 255, 1, 0, 0, 0, 252, 250, 1, 0, 0, 0, 253, 254, 5, 29, 0, 0, 254, 256, 3, 36, 18, 0, 255, 253, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 19, 1, 0, 0, 0, 257, 258, 5, 41, 0, 0, 258, 259, 5, 131, 0, 0, 259, 260, 3, 4, 2, 0, 260, 261, 5, 150, 0, 0, 261, 264, 3, 10, 5, 0, 262, 263, 5, 25, 0, 0, 263, 265, 3, 10, 5, 0, 264, 262, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 21, 1, 0, 0, 0, 266, 267, 5, 101, 0, 0, 267, 268, 5, 131, 0, 0, 268, 269, 3, 4, 2, 0, 269, 270, 5, 150, 0, 0, 270, 272, 3, 10, 5, 0, 271, 273, 5, 151, 0, 0, 272, 271, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 23, 1, 0, 0, 0, 274, 275, 5, 33, 0, 0, 275, 279, 5, 131, 0, 0, 276, 280, 3, 6, 3, 0, 277, 280, 3, 30, 15, 0, 278, 280, 3, 4, 2, 0, 279, 276, 1, 0, 0, 0, 279, 277, 1, 0, 0, 0, 279, 278, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 281, 1, 0, 0, 0, 281, 283, 5, 151, 0, 0, 282, 284, 3, 4, 2, 0, 283, 282, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 289, 5, 151, 0, 0, 286, 290, 3, 6, 3, 0, 287, 290, 3, 30, 15, 0, 288, 290, 3, 4, 2, 0, 289, 286, 1, 0, 0, 0, 289, 287, 1, 0, 0, 0, 289, 288, 1, 0, 0, 0, 289, 290, 1, 0, 0, 0, 290, 291, 1, 0, 0, 0, 291, 292, 5, 150, 0, 0, 292, 294, 3, 10, 5, 0, 293, 295, 5, 151, 0, 0, 294, 293, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 25, 1, 0, 0, 0, 296, 297, 5, 33, 0, 0, 297, 298, 5, 131, 0, 0, 298, 299, 5, 53, 0, 0, 299, 302, 3, 156, 78, 0, 300, 301, 5, 117, 0, 0, 301, 303, 3, 156, 78, 0, 302, 300, 1, 0, 0, 0, 302, 303, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 305, 5, 43, 0, 0, 305, 306, 3, 4, 2, 0, 306, 307, 5, 150, 0, 0, 307, 309, 3, 10, 5, 0, 308, 310, 5, 151, 0, 0, 309, 308, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 27, 1, 0, 0, 0, 311, 312, 7, 0, 0, 0, 312, 313, 3, 156, 78, 0, 313, 315, 5, 131, 0, 0, 314, 316, 3, 8, 4, 0, 315, 314, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 5, 150, 0, 0, 318, 319, 3, 36, 18, 0, 319, 29, 1, 0, 0, 0, 320, 321, 3, 4, 2, 0, 321, 322, 5, 116, 0, 0, 322, 323, 5, 123, 0, 0, 323, 324, 3, 4, 2, 0, 324, 31, 1, 0, 0, 0, 325, 327, 3, 4, 2, 0, 326, 328, 5, 151, 0, 0, 327, 326, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 33, 1, 0, 0, 0, 329, 330, 5, 151, 0, 0, 330, 35, 1, 0, 0, 0, 331, 335, 5, 129, 0, 0, 332, 334, 3, 2, 1, 0, 333, 332, 1, 0, 0, 0, 334, 337, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 338, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 338, 339, 5, 148, 0, 0, 339, 37, 1, 0, 0, 0, 340, 341, 3, 4, 2, 0, 341, 342, 5, 116, 0, 0, 342, 343, 3, 4, 2, 0, 343, 39, 1, 0, 0, 0, 344, 349, 3, 38, 19, 0, 345, 346, 5, 117, 0, 0, 346, 348, 3, 38, 19, 0, 347, 345, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 353, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 354, 5, 117, 0, 0, 353, 352, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 41, 1, 0, 0, 0, 355, 359, 3, 44, 22, 0, 356, 359, 3, 48, 24, 0, 357, 359, 3, 120, 60, 0, 358, 355, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 358, 357, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 361, 5, 0, 0, 1, 361, 43, 1, 0, 0, 0, 362, 368, 3, 46, 23, 0, 363, 364, 5, 96, 0, 0, 364, 365, 5, 1, 0, 0, 365, 367, 3, 46, 23, 0, 366, 363, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 45, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 378, 3, 48, 24, 0, 372, 373, 5, 131, 0, 0, 373, 374, 3, 44, 22, 0, 374, 375, 5, 150, 0, 0, 375, 378, 1, 0, 0, 0, 376, 378, 3, 160, 80, 0, 377, 371, 1, 0, 0, 0, 377, 372, 1, 0, 0, 0, 377, 376, 1, 0, 0, 0, 378, 47, 1, 0, 0, 0, 379, 381, 3, 50, 25, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 384, 5, 80, 0, 0, 383, 385, 5, 24, 0, 0, 384, 383, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 387, 1, 0, 0, 0, 386, 388, 3, 52, 26, 0, 387, 386, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 391, 3, 114, 57, 0, 390, 392, 3, 54, 27, 0, 391, 390, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 1, 0, 0, 0, 393, 395, 3, 56, 28, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 397, 1, 0, 0, 0, 396, 398, 3, 60, 30, 0, 397, 396, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 400, 1, 0, 0, 0, 399, 401, 3, 62, 31, 0, 400, 399, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 403, 1, 0, 0, 0, 402, 404, 3, 64, 32, 0, 403, 402, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 406, 5, 103, 0, 0, 406, 408, 7, 1, 0, 0, 407, 405, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 410, 5, 103, 0, 0, 410, 412, 5, 90, 0, 0, 411, 409, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 1, 0, 0, 0, 413, 415, 3, 66, 33, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 417, 1, 0, 0, 0, 416, 418, 3, 58, 29, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 420, 1, 0, 0, 0, 419, 421, 3, 68, 34, 0, 420, 419, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 424, 1, 0, 0, 0, 422, 425, 3, 72, 36, 0, 423, 425, 3, 74, 37, 0, 424, 422, 1, 0, 0, 0, 424, 423, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 427, 1, 0, 0, 0, 426, 428, 3, 76, 38, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 49, 1, 0, 0, 0, 429, 430, 5, 103, 0, 0, 430, 431, 3, 124, 62, 0, 431, 51, 1, 0, 0, 0, 432, 433, 5, 89, 0, 0, 433, 436, 5, 109, 0, 0, 434, 435, 5, 103, 0, 0, 435, 437, 5, 86, 0, 0, 436, 434, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 53, 1, 0, 0, 0, 438, 439, 5, 34, 0, 0, 439, 440, 3, 78, 39, 0, 440, 55, 1, 0, 0, 0, 441, 443, 7, 2, 0, 0, 442, 441, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 5, 5, 0, 0, 445, 446, 5, 48, 0, 0, 446, 447, 3, 114, 57, 0, 447, 57, 1, 0, 0, 0, 448, 449, 5, 102, 0, 0, 449, 450, 3, 156, 78, 0, 450, 451, 5, 6, 0, 0, 451, 452, 5, 131, 0, 0, 452, 453, 3, 98, 49, 0, 453, 463, 5, 150, 0, 0, 454, 455, 5, 117, 0, 0, 455, 456, 3, 156, 78, 0, 456, 457, 5, 6, 0, 0, 457, 458, 5, 131, 0, 0, 458, 459, 3, 98, 49, 0, 459, 460, 5, 150, 0, 0, 460, 462, 1, 0, 0, 0, 461, 454, 1, 0, 0, 0, 462, 465, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 59, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 466, 467, 5, 70, 0, 0, 467, 468, 3, 116, 58, 0, 468, 61, 1, 0, 0, 0, 469, 470, 5, 100, 0, 0, 470, 471, 3, 116, 58, 0, 471, 63, 1, 0, 0, 0, 472, 473, 5, 37, 0, 0, 473, 480, 5, 11, 0, 0, 474, 475, 7, 1, 0, 0, 475, 476, 5, 131, 0, 0, 476, 477, 3, 114, 57, 0, 477, 478, 5, 150, 0, 0, 478, 481, 1, 0, 0, 0, 479, 481, 3, 114, 57, 0, 480, 474, 1, 0, 0, 0, 480, 479, 1, 0, 0, 0, 481, 65, 1, 0, 0, 0, 482, 483, 5, 38, 0, 0, 483, 484, 3, 116, 58, 0, 484, 67, 1, 0, 0, 0, 485, 486, 5, 65, 0, 0, 486, 487, 5, 11, 0, 0, 487, 488, 3, 88, 44, 0, 488, 69, 1, 0, 0, 0, 489, 490, 5, 65, 0, 0, 490, 491, 5, 11, 0, 0, 491, 492, 3, 114, 57, 0, 492, 71, 1, 0, 0, 0, 493, 494, 5, 55, 0, 0, 494, 497, 3, 116, 58, 0, 495, 496, 5, 117, 0, 0, 496, 498, 3, 116, 58, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 503, 1, 0, 0, 0, 499, 500, 5, 103, 0, 0, 500, 504, 5, 86, 0, 0, 501, 502, 5, 11, 0, 0, 502, 504, 3, 114, 57, 0, 503, 499, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 523, 1, 0, 0, 0, 505, 506, 5, 55, 0, 0, 506, 509, 3, 116, 58, 0, 507, 508, 5, 103, 0, 0, 508, 510, 5, 86, 0, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 5, 62, 0, 0, 512, 513, 3, 116, 58, 0, 513, 523, 1, 0, 0, 0, 514, 515, 5, 55, 0, 0, 515, 516, 3, 116, 58, 0, 516, 517, 5, 62, 0, 0, 517, 520, 3, 116, 58, 0, 518, 519, 5, 11, 0, 0, 519, 521, 3, 114, 57, 0, 520, 518, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 523, 1, 0, 0, 0, 522, 493, 1, 0, 0, 0, 522, 505, 1, 0, 0, 0, 522, 514, 1, 0, 0, 0, 523, 73, 1, 0, 0, 0, 524, 525, 5, 62, 0, 0, 525, 526, 3, 116, 58, 0, 526, 75, 1, 0, 0, 0, 527, 528, 5, 82, 0, 0, 528, 529, 3, 94, 47, 0, 529, 77, 1, 0, 0, 0, 530, 531, 6, 39, -1, 0, 531, 533, 3, 132, 66, 0, 532, 534, 5, 28, 0, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 536, 1, 0, 0, 0, 535, 537, 3, 86, 43, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 543, 1, 0, 0, 0, 538, 539, 5, 131, 0, 0, 539, 540, 3, 78, 39, 0, 540, 541, 5, 150, 0, 0, 541, 543, 1, 0, 0, 0, 542, 530, 1, 0, 0, 0, 542, 538, 1, 0, 0, 0, 543, 558, 1, 0, 0, 0, 544, 545, 10, 3, 0, 0, 545, 546, 3, 82, 41, 0, 546, 547, 3, 78, 39, 4, 547, 557, 1, 0, 0, 0, 548, 550, 10, 4, 0, 0, 549, 551, 3, 80, 40, 0, 550, 549, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 5, 48, 0, 0, 553, 554, 3, 78, 39, 0, 554, 555, 3, 84, 42, 0, 555, 557, 1, 0, 0, 0, 556, 544, 1, 0, 0, 0, 556, 548, 1, 0, 0, 0, 557, 560, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 79, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 561, 563, 7, 3, 0, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 571, 5, 45, 0, 0, 565, 567, 5, 45, 0, 0, 566, 568, 7, 3, 0, 0, 567, 566, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 571, 1, 0, 0, 0, 569, 571, 7, 3, 0, 0, 570, 562, 1, 0, 0, 0, 570, 565, 1, 0, 0, 0, 570, 569, 1, 0, 0, 0, 571, 605, 1, 0, 0, 0, 572, 574, 7, 4, 0, 0, 573, 572, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 577, 7, 5, 0, 0, 576, 578, 5, 66, 0, 0, 577, 576, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 587, 1, 0, 0, 0, 579, 581, 7, 5, 0, 0, 580, 582, 5, 66, 0, 0, 581, 580, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 584, 1, 0, 0, 0, 583, 585, 7, 4, 0, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 587, 1, 0, 0, 0, 586, 573, 1, 0, 0, 0, 586, 579, 1, 0, 0, 0, 587, 605, 1, 0, 0, 0, 588, 590, 7, 6, 0, 0, 589, 588, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 593, 5, 35, 0, 0, 592, 594, 5, 66, 0, 0, 593, 592, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 603, 1, 0, 0, 0, 595, 597, 5, 35, 0, 0, 596, 598, 5, 66, 0, 0, 597, 596, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 600, 1, 0, 0, 0, 599, 601, 7, 6, 0, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 603, 1, 0, 0, 0, 602, 589, 1, 0, 0, 0, 602, 595, 1, 0, 0, 0, 603, 605, 1, 0, 0, 0, 604, 570, 1, 0, 0, 0, 604, 586, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 605, 81, 1, 0, 0, 0, 606, 607, 5, 17, 0, 0, 607, 610, 5, 48, 0, 0, 608, 610, 5, 117, 0, 0, 609, 606, 1, 0, 0, 0, 609, 608, 1, 0, 0, 0, 610, 83, 1, 0, 0, 0, 611, 612, 5, 63, 0, 0, 612, 621, 3, 114, 57, 0, 613, 614, 5, 97, 0, 0, 614, 615, 5, 131, 0, 0, 615, 616, 3, 114, 57, 0, 616, 617, 5, 150, 0, 0, 617, 621, 1, 0, 0, 0, 618, 619, 5, 97, 0, 0, 619, 621, 3, 114, 57, 0, 620, 611, 1, 0, 0, 0, 620, 613, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 621, 85, 1, 0, 0, 0, 622, 623, 5, 78, 0, 0, 623, 626, 3, 92, 46, 0, 624, 625, 5, 62, 0, 0, 625, 627, 3, 92, 46, 0, 626, 624, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 87, 1, 0, 0, 0, 628, 633, 3, 90, 45, 0, 629, 630, 5, 117, 0, 0, 630, 632, 3, 90, 45, 0, 631, 629, 1, 0, 0, 0, 632, 635, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 89, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 638, 3, 116, 58, 0, 637, 639, 7, 7, 0, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 642, 1, 0, 0, 0, 640, 641, 5, 61, 0, 0, 641, 643, 7, 8, 0, 0, 642, 640, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 645, 5, 16, 0, 0, 645, 647, 5, 111, 0, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 91, 1, 0, 0, 0, 648, 655, 3, 160, 80, 0, 649, 652, 3, 144, 72, 0, 650, 651, 5, 152, 0, 0, 651, 653, 3, 144, 72, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 655, 1, 0, 0, 0, 654, 648, 1, 0, 0, 0, 654, 649, 1, 0, 0, 0, 655, 93, 1, 0, 0, 0, 656, 661, 3, 96, 48, 0, 657, 658, 5, 117, 0, 0, 658, 660, 3, 96, 48, 0, 659, 657, 1, 0, 0, 0, 660, 663, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 95, 1, 0, 0, 0, 663, 661, 1, 0, 0, 0, 664, 665, 3, 156, 78, 0, 665, 666, 5, 123, 0, 0, 666, 667, 3, 146, 73, 0, 667, 97, 1, 0, 0, 0, 668, 670, 3, 100, 50, 0, 669, 668, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 1, 0, 0, 0, 671, 673, 3, 102, 51, 0, 672, 671, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 675, 1, 0, 0, 0, 674, 676, 3, 104, 52, 0, 675, 674, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 99, 1, 0, 0, 0, 677, 678, 5, 68, 0, 0, 678, 679, 5, 11, 0, 0, 679, 680, 3, 114, 57, 0, 680, 101, 1, 0, 0, 0, 681, 682, 5, 65, 0, 0, 682, 683, 5, 11, 0, 0, 683, 684, 3, 88, 44, 0, 684, 103, 1, 0, 0, 0, 685, 686, 7, 9, 0, 0, 686, 687, 3, 106, 53, 0, 687, 105, 1, 0, 0, 0, 688, 695, 3, 108, 54, 0, 689, 690, 5, 9, 0, 0, 690, 691, 3, 108, 54, 0, 691, 692, 5, 2, 0, 0, 692, 693, 3, 108, 54, 0, 693, 695, 1, 0, 0, 0, 694, 688, 1, 0, 0, 0, 694, 689, 1, 0, 0, 0, 695, 107, 1, 0, 0, 0, 696, 697, 5, 19, 0, 0, 697, 709, 5, 76, 0, 0, 698, 699, 5, 95, 0, 0, 699, 709, 5, 69, 0, 0, 700, 701, 5, 95, 0, 0, 701, 709, 5, 32, 0, 0, 702, 703, 3, 144, 72, 0, 703, 704, 5, 69, 0, 0, 704, 709, 1, 0, 0, 0, 705, 706, 3, 144, 72, 0, 706, 707, 5, 32, 0, 0, 707, 709, 1, 0, 0, 0, 708, 696, 1, 0, 0, 0, 708, 698, 1, 0, 0, 0, 708, 700, 1, 0, 0, 0, 708, 702, 1, 0, 0, 0, 708, 705, 1, 0, 0, 0, 709, 109, 1, 0, 0, 0, 710, 711, 3, 116, 58, 0, 711, 712, 5, 0, 0, 1, 712, 111, 1, 0, 0, 0, 713, 770, 3, 156, 78, 0, 714, 715, 3, 156, 78, 0, 715, 716, 5, 131, 0, 0, 716, 717, 3, 156, 78, 0, 717, 724, 3, 112, 56, 0, 718, 719, 5, 117, 0, 0, 719, 720, 3, 156, 78, 0, 720, 721, 3, 112, 56, 0, 721, 723, 1, 0, 0, 0, 722, 718, 1, 0, 0, 0, 723, 726, 1, 0, 0, 0, 724, 722, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 728, 1, 0, 0, 0, 726, 724, 1, 0, 0, 0, 727, 729, 5, 117, 0, 0, 728, 727, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 5, 150, 0, 0, 731, 770, 1, 0, 0, 0, 732, 733, 3, 156, 78, 0, 733, 734, 5, 131, 0, 0, 734, 739, 3, 158, 79, 0, 735, 736, 5, 117, 0, 0, 736, 738, 3, 158, 79, 0, 737, 735, 1, 0, 0, 0, 738, 741, 1, 0, 0, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 744, 5, 117, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 150, 0, 0, 746, 770, 1, 0, 0, 0, 747, 748, 3, 156, 78, 0, 748, 749, 5, 131, 0, 0, 749, 754, 3, 112, 56, 0, 750, 751, 5, 117, 0, 0, 751, 753, 3, 112, 56, 0, 752, 750, 1, 0, 0, 0, 753, 756, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 758, 1, 0, 0, 0, 756, 754, 1, 0, 0, 0, 757, 759, 5, 117, 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 761, 5, 150, 0, 0, 761, 770, 1, 0, 0, 0, 762, 763, 3, 156, 78, 0, 763, 765, 5, 131, 0, 0, 764, 766, 3, 114, 57, 0, 765, 764, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 5, 150, 0, 0, 768, 770, 1, 0, 0, 0, 769, 713, 1, 0, 0, 0, 769, 714, 1, 0, 0, 0, 769, 732, 1, 0, 0, 0, 769, 747, 1, 0, 0, 0, 769, 762, 1, 0, 0, 0, 770, 113, 1, 0, 0, 0, 771, 776, 3, 116, 58, 0, 772, 773, 5, 117, 0, 0, 773, 775, 3, 116, 58, 0, 774, 772, 1, 0, 0, 0, 775, 778, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 780, 1, 0, 0, 0, 778, 776, 1, 0, 0, 0, 779, 781, 5, 117, 0, 0, 780, 779, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 115, 1, 0, 0, 0, 782, 783, 6, 58, -1, 0, 783, 785, 5, 12, 0, 0, 784, 786, 3, 116, 58, 0, 785, 784, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 792, 1, 0, 0, 0, 787, 788, 5, 99, 0, 0, 788, 789, 3, 116, 58, 0, 789, 790, 5, 84, 0, 0, 790, 791, 3, 116, 58, 0, 791, 793, 1, 0, 0, 0, 792, 787, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 798, 1, 0, 0, 0, 796, 797, 5, 25, 0, 0, 797, 799, 3, 116, 58, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 5, 26, 0, 0, 801, 933, 1, 0, 0, 0, 802, 803, 5, 13, 0, 0, 803, 804, 5, 131, 0, 0, 804, 805, 3, 116, 58, 0, 805, 806, 5, 6, 0, 0, 806, 807, 3, 112, 56, 0, 807, 808, 5, 150, 0, 0, 808, 933, 1, 0, 0, 0, 809, 810, 5, 20, 0, 0, 810, 933, 5, 111, 0, 0, 811, 812, 5, 46, 0, 0, 812, 813, 3, 116, 58, 0, 813, 814, 3, 148, 74, 0, 814, 933, 1, 0, 0, 0, 815, 816, 5, 83, 0, 0, 816, 817, 5, 131, 0, 0, 817, 818, 3, 116, 58, 0, 818, 819, 5, 34, 0, 0, 819, 822, 3, 116, 58, 0, 820, 821, 5, 33, 0, 0, 821, 823, 3, 116, 58, 0, 822, 820, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 825, 5, 150, 0, 0, 825, 933, 1, 0, 0, 0, 826, 827, 5, 87, 0, 0, 827, 933, 5, 111, 0, 0, 828, 829, 5, 92, 0, 0, 829, 830, 5, 131, 0, 0, 830, 831, 7, 10, 0, 0, 831, 832, 3, 162, 81, 0, 832, 833, 5, 34, 0, 0, 833, 834, 3, 116, 58, 0, 834, 835, 5, 150, 0, 0, 835, 933, 1, 0, 0, 0, 836, 837, 3, 156, 78, 0, 837, 839, 5, 131, 0, 0, 838, 840, 3, 114, 57, 0, 839, 838, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 5, 150, 0, 0, 842, 851, 1, 0, 0, 0, 843, 845, 5, 131, 0, 0, 844, 846, 5, 24, 0, 0, 845, 844, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 848, 1, 0, 0, 0, 847, 849, 3, 114, 57, 0, 848, 847, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 852, 5, 150, 0, 0, 851, 843, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 5, 67, 0, 0, 854, 855, 5, 131, 0, 0, 855, 856, 3, 98, 49, 0, 856, 857, 5, 150, 0, 0, 857, 933, 1, 0, 0, 0, 858, 859, 3, 156, 78, 0, 859, 861, 5, 131, 0, 0, 860, 862, 3, 114, 57, 0, 861, 860, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 5, 150, 0, 0, 864, 873, 1, 0, 0, 0, 865, 867, 5, 131, 0, 0, 866, 868, 5, 24, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 871, 3, 114, 57, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 5, 150, 0, 0, 873, 865, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 67, 0, 0, 876, 877, 3, 156, 78, 0, 877, 933, 1, 0, 0, 0, 878, 884, 3, 156, 78, 0, 879, 881, 5, 131, 0, 0, 880, 882, 3, 114, 57, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 885, 5, 150, 0, 0, 884, 879, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 888, 5, 131, 0, 0, 887, 889, 5, 24, 0, 0, 888, 887, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 891, 1, 0, 0, 0, 890, 892, 3, 114, 57, 0, 891, 890, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 5, 150, 0, 0, 894, 933, 1, 0, 0, 0, 895, 933, 3, 120, 60, 0, 896, 933, 3, 164, 82, 0, 897, 933, 3, 146, 73, 0, 898, 899, 5, 119, 0, 0, 899, 933, 3, 116, 58, 20, 900, 901, 5, 59, 0, 0, 901, 933, 3, 116, 58, 14, 902, 903, 3, 136, 68, 0, 903, 904, 5, 121, 0, 0, 904, 906, 1, 0, 0, 0, 905, 902, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 933, 5, 113, 0, 0, 908, 909, 5, 131, 0, 0, 909, 910, 3, 44, 22, 0, 910, 911, 5, 150, 0, 0, 911, 933, 1, 0, 0, 0, 912, 913, 5, 131, 0, 0, 913, 914, 3, 116, 58, 0, 914, 915, 5, 150, 0, 0, 915, 933, 1, 0, 0, 0, 916, 917, 5, 131, 0, 0, 917, 918, 3, 114, 57, 0, 918, 919, 5, 150, 0, 0, 919, 933, 1, 0, 0, 0, 920, 922, 5, 130, 0, 0, 921, 923, 3, 114, 57, 0, 922, 921, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 933, 5, 149, 0, 0, 925, 927, 5, 129, 0, 0, 926, 928, 3, 40, 20, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 933, 5, 148, 0, 0, 930, 933, 3, 118, 59, 0, 931, 933, 3, 128, 64, 0, 932, 782, 1, 0, 0, 0, 932, 802, 1, 0, 0, 0, 932, 809, 1, 0, 0, 0, 932, 811, 1, 0, 0, 0, 932, 815, 1, 0, 0, 0, 932, 826, 1, 0, 0, 0, 932, 828, 1, 0, 0, 0, 932, 836, 1, 0, 0, 0, 932, 858, 1, 0, 0, 0, 932, 878, 1, 0, 0, 0, 932, 895, 1, 0, 0, 0, 932, 896, 1, 0, 0, 0, 932, 897, 1, 0, 0, 0, 932, 898, 1, 0, 0, 0, 932, 900, 1, 0, 0, 0, 932, 905, 1, 0, 0, 0, 932, 908, 1, 0, 0, 0, 932, 912, 1, 0, 0, 0, 932, 916, 1, 0, 0, 0, 932, 920, 1, 0, 0, 0, 932, 925, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 932, 931, 1, 0, 0, 0, 933, 1044, 1, 0, 0, 0, 934, 938, 10, 19, 0, 0, 935, 939, 5, 113, 0, 0, 936, 939, 5, 152, 0, 0, 937, 939, 5, 139, 0, 0, 938, 935, 1, 0, 0, 0, 938, 936, 1, 0, 0, 0, 938, 937, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 1043, 3, 116, 58, 20, 941, 945, 10, 18, 0, 0, 942, 946, 5, 140, 0, 0, 943, 946, 5, 119, 0, 0, 944, 946, 5, 118, 0, 0, 945, 942, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 945, 944, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 1043, 3, 116, 58, 19, 948, 973, 10, 17, 0, 0, 949, 974, 5, 122, 0, 0, 950, 974, 5, 123, 0, 0, 951, 974, 5, 134, 0, 0, 952, 974, 5, 132, 0, 0, 953, 974, 5, 133, 0, 0, 954, 974, 5, 124, 0, 0, 955, 974, 5, 125, 0, 0, 956, 958, 5, 59, 0, 0, 957, 956, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 961, 5, 43, 0, 0, 960, 962, 5, 15, 0, 0, 961, 960, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 974, 1, 0, 0, 0, 963, 965, 5, 59, 0, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 974, 7, 11, 0, 0, 967, 974, 5, 146, 0, 0, 968, 974, 5, 147, 0, 0, 969, 974, 5, 136, 0, 0, 970, 974, 5, 127, 0, 0, 971, 974, 5, 128, 0, 0, 972, 974, 5, 135, 0, 0, 973, 949, 1, 0, 0, 0, 973, 950, 1, 0, 0, 0, 973, 951, 1, 0, 0, 0, 973, 952, 1, 0, 0, 0, 973, 953, 1, 0, 0, 0, 973, 954, 1, 0, 0, 0, 973, 955, 1, 0, 0, 0, 973, 957, 1, 0, 0, 0, 973, 964, 1, 0, 0, 0, 973, 967, 1, 0, 0, 0, 973, 968, 1, 0, 0, 0, 973, 969, 1, 0, 0, 0, 973, 970, 1, 0, 0, 0, 973, 971, 1, 0, 0, 0, 973, 972, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 1043, 3, 116, 58, 18, 976, 977, 10, 15, 0, 0, 977, 978, 5, 138, 0, 0, 978, 1043, 3, 116, 58, 16, 979, 980, 10, 13, 0, 0, 980, 981, 5, 2, 0, 0, 981, 1043, 3, 116, 58, 14, 982, 983, 10, 12, 0, 0, 983, 984, 5, 64, 0, 0, 984, 1043, 3, 116, 58, 13, 985, 987, 10, 11, 0, 0, 986, 988, 5, 59, 0, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 5, 9, 0, 0, 990, 991, 3, 116, 58, 0, 991, 992, 5, 2, 0, 0, 992, 993, 3, 116, 58, 12, 993, 1043, 1, 0, 0, 0, 994, 995, 10, 10, 0, 0, 995, 996, 5, 141, 0, 0, 996, 997, 3, 116, 58, 0, 997, 998, 5, 116, 0, 0, 998, 999, 3, 116, 58, 10, 999, 1043, 1, 0, 0, 0, 1000, 1001, 10, 30, 0, 0, 1001, 1003, 5, 131, 0, 0, 1002, 1004, 3, 114, 57, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1043, 5, 150, 0, 0, 1006, 1007, 10, 26, 0, 0, 1007, 1008, 5, 130, 0, 0, 1008, 1009, 3, 116, 58, 0, 1009, 1010, 5, 149, 0, 0, 1010, 1043, 1, 0, 0, 0, 1011, 1012, 10, 25, 0, 0, 1012, 1013, 5, 121, 0, 0, 1013, 1043, 5, 109, 0, 0, 1014, 1015, 10, 24, 0, 0, 1015, 1016, 5, 121, 0, 0, 1016, 1043, 3, 156, 78, 0, 1017, 1018, 10, 23, 0, 0, 1018, 1019, 5, 137, 0, 0, 1019, 1020, 5, 130, 0, 0, 1020, 1021, 3, 116, 58, 0, 1021, 1022, 5, 149, 0, 0, 1022, 1043, 1, 0, 0, 0, 1023, 1024, 10, 22, 0, 0, 1024, 1025, 5, 137, 0, 0, 1025, 1043, 5, 109, 0, 0, 1026, 1027, 10, 21, 0, 0, 1027, 1028, 5, 137, 0, 0, 1028, 1043, 3, 156, 78, 0, 1029, 1030, 10, 16, 0, 0, 1030, 1032, 5, 47, 0, 0, 1031, 1033, 5, 59, 0, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1043, 5, 60, 0, 0, 1035, 1040, 10, 9, 0, 0, 1036, 1037, 5, 6, 0, 0, 1037, 1041, 3, 156, 78, 0, 1038, 1039, 5, 6, 0, 0, 1039, 1041, 5, 111, 0, 0, 1040, 1036, 1, 0, 0, 0, 1040, 1038, 1, 0, 0, 0, 1041, 1043, 1, 0, 0, 0, 1042, 934, 1, 0, 0, 0, 1042, 941, 1, 0, 0, 0, 1042, 948, 1, 0, 0, 0, 1042, 976, 1, 0, 0, 0, 1042, 979, 1, 0, 0, 0, 1042, 982, 1, 0, 0, 0, 1042, 985, 1, 0, 0, 0, 1042, 994, 1, 0, 0, 0, 1042, 1000, 1, 0, 0, 0, 1042, 1006, 1, 0, 0, 0, 1042, 1011, 1, 0, 0, 0, 1042, 1014, 1, 0, 0, 0, 1042, 1017, 1, 0, 0, 0, 1042, 1023, 1, 0, 0, 0, 1042, 1026, 1, 0, 0, 0, 1042, 1029, 1, 0, 0, 0, 1042, 1035, 1, 0, 0, 0, 1043, 1046, 1, 0, 0, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 117, 1, 0, 0, 0, 1046, 1044, 1, 0, 0, 0, 1047, 1048, 5, 131, 0, 0, 1048, 1053, 3, 156, 78, 0, 1049, 1050, 5, 117, 0, 0, 1050, 1052, 3, 156, 78, 0, 1051, 1049, 1, 0, 0, 0, 1052, 1055, 1, 0, 0, 0, 1053, 1051, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1057, 1, 0, 0, 0, 1055, 1053, 1, 0, 0, 0, 1056, 1058, 5, 117, 0, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1060, 5, 150, 0, 0, 1060, 1075, 1, 0, 0, 0, 1061, 1066, 3, 156, 78, 0, 1062, 1063, 5, 117, 0, 0, 1063, 1065, 3, 156, 78, 0, 1064, 1062, 1, 0, 0, 0, 1065, 1068, 1, 0, 0, 0, 1066, 1064, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1070, 1, 0, 0, 0, 1068, 1066, 1, 0, 0, 0, 1069, 1071, 5, 117, 0, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1075, 1, 0, 0, 0, 1072, 1073, 5, 131, 0, 0, 1073, 1075, 5, 150, 0, 0, 1074, 1047, 1, 0, 0, 0, 1074, 1061, 1, 0, 0, 0, 1074, 1072, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1079, 5, 112, 0, 0, 1077, 1080, 3, 116, 58, 0, 1078, 1080, 3, 36, 18, 0, 1079, 1077, 1, 0, 0, 0, 1079, 1078, 1, 0, 0, 0, 1080, 119, 1, 0, 0, 0, 1081, 1082, 5, 133, 0, 0, 1082, 1086, 3, 156, 78, 0, 1083, 1085, 3, 122, 61, 0, 1084, 1083, 1, 0, 0, 0, 1085, 1088, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1089, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1089, 1090, 5, 152, 0, 0, 1090, 1091, 5, 125, 0, 0, 1091, 1114, 1, 0, 0, 0, 1092, 1093, 5, 133, 0, 0, 1093, 1097, 3, 156, 78, 0, 1094, 1096, 3, 122, 61, 0, 1095, 1094, 1, 0, 0, 0, 1096, 1099, 1, 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 1, 0, 0, 0, 1099, 1097, 1, 0, 0, 0, 1100, 1106, 5, 125, 0, 0, 1101, 1107, 3, 120, 60, 0, 1102, 1103, 5, 129, 0, 0, 1103, 1104, 3, 116, 58, 0, 1104, 1105, 5, 148, 0, 0, 1105, 1107, 1, 0, 0, 0, 1106, 1101, 1, 0, 0, 0, 1106, 1102, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 5, 133, 0, 0, 1109, 1110, 5, 152, 0, 0, 1110, 1111, 3, 156, 78, 0, 1111, 1112, 5, 125, 0, 0, 1112, 1114, 1, 0, 0, 0, 1113, 1081, 1, 0, 0, 0, 1113, 1092, 1, 0, 0, 0, 1114, 121, 1, 0, 0, 0, 1115, 1116, 3, 156, 78, 0, 1116, 1117, 5, 123, 0, 0, 1117, 1118, 3, 162, 81, 0, 1118, 1127, 1, 0, 0, 0, 1119, 1120, 3, 156, 78, 0, 1120, 1121, 5, 123, 0, 0, 1121, 1122, 5, 129, 0, 0, 1122, 1123, 3, 116, 58, 0, 1123, 1124, 5, 148, 0, 0, 1124, 1127, 1, 0, 0, 0, 1125, 1127, 3, 156, 78, 0, 1126, 1115, 1, 0, 0, 0, 1126, 1119, 1, 0, 0, 0, 1126, 1125, 1, 0, 0, 0, 1127, 123, 1, 0, 0, 0, 1128, 1133, 3, 126, 63, 0, 1129, 1130, 5, 117, 0, 0, 1130, 1132, 3, 126, 63, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1135, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1137, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1136, 1138, 5, 117, 0, 0, 1137, 1136, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 125, 1, 0, 0, 0, 1139, 1140, 3, 156, 78, 0, 1140, 1141, 5, 6, 0, 0, 1141, 1142, 5, 131, 0, 0, 1142, 1143, 3, 44, 22, 0, 1143, 1144, 5, 150, 0, 0, 1144, 1150, 1, 0, 0, 0, 1145, 1146, 3, 116, 58, 0, 1146, 1147, 5, 6, 0, 0, 1147, 1148, 3, 156, 78, 0, 1148, 1150, 1, 0, 0, 0, 1149, 1139, 1, 0, 0, 0, 1149, 1145, 1, 0, 0, 0, 1150, 127, 1, 0, 0, 0, 1151, 1159, 3, 160, 80, 0, 1152, 1153, 3, 136, 68, 0, 1153, 1154, 5, 121, 0, 0, 1154, 1156, 1, 0, 0, 0, 1155, 1152, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1159, 3, 130, 65, 0, 1158, 1151, 1, 0, 0, 0, 1158, 1155, 1, 0, 0, 0, 1159, 129, 1, 0, 0, 0, 1160, 1165, 3, 156, 78, 0, 1161, 1162, 5, 121, 0, 0, 1162, 1164, 3, 156, 78, 0, 1163, 1161, 1, 0, 0, 0, 1164, 1167, 1, 0, 0, 0, 1165, 1163, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 131, 1, 0, 0, 0, 1167, 1165, 1, 0, 0, 0, 1168, 1169, 6, 66, -1, 0, 1169, 1178, 3, 136, 68, 0, 1170, 1178, 3, 134, 67, 0, 1171, 1172, 5, 131, 0, 0, 1172, 1173, 3, 44, 22, 0, 1173, 1174, 5, 150, 0, 0, 1174, 1178, 1, 0, 0, 0, 1175, 1178, 3, 120, 60, 0, 1176, 1178, 3, 160, 80, 0, 1177, 1168, 1, 0, 0, 0, 1177, 1170, 1, 0, 0, 0, 1177, 1171, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1176, 1, 0, 0, 0, 1178, 1187, 1, 0, 0, 0, 1179, 1183, 10, 3, 0, 0, 1180, 1184, 3, 154, 77, 0, 1181, 1182, 5, 6, 0, 0, 1182, 1184, 3, 156, 78, 0, 1183, 1180, 1, 0, 0, 0, 1183, 1181, 1, 0, 0, 0, 1184, 1186, 1, 0, 0, 0, 1185, 1179, 1, 0, 0, 0, 1186, 1189, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 133, 1, 0, 0, 0, 1189, 1187, 1, 0, 0, 0, 1190, 1191, 3, 156, 78, 0, 1191, 1193, 5, 131, 0, 0, 1192, 1194, 3, 138, 69, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 5, 150, 0, 0, 1196, 135, 1, 0, 0, 0, 1197, 1198, 3, 140, 70, 0, 1198, 1199, 5, 121, 0, 0, 1199, 1201, 1, 0, 0, 0, 1200, 1197, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 3, 156, 78, 0, 1203, 137, 1, 0, 0, 0, 1204, 1209, 3, 116, 58, 0, 1205, 1206, 5, 117, 0, 0, 1206, 1208, 3, 116, 58, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1211, 1, 0, 0, 0, 1209, 1207, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1213, 1, 0, 0, 0, 1211, 1209, 1, 0, 0, 0, 1212, 1214, 5, 117, 0, 0, 1213, 1212, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 139, 1, 0, 0, 0, 1215, 1216, 3, 156, 78, 0, 1216, 141, 1, 0, 0, 0, 1217, 1226, 5, 107, 0, 0, 1218, 1219, 5, 121, 0, 0, 1219, 1226, 7, 12, 0, 0, 1220, 1221, 5, 109, 0, 0, 1221, 1223, 5, 121, 0, 0, 1222, 1224, 7, 12, 0, 0, 1223, 1222, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1226, 1, 0, 0, 0, 1225, 1217, 1, 0, 0, 0, 1225, 1218, 1, 0, 0, 0, 1225, 1220, 1, 0, 0, 0, 1226, 143, 1, 0, 0, 0, 1227, 1229, 7, 13, 0, 0, 1228, 1227, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1236, 1, 0, 0, 0, 1230, 1237, 3, 142, 71, 0, 1231, 1237, 5, 108, 0, 0, 1232, 1237, 5, 109, 0, 0, 1233, 1237, 5, 110, 0, 0, 1234, 1237, 5, 44, 0, 0, 1235, 1237, 5, 58, 0, 0, 1236, 1230, 1, 0, 0, 0, 1236, 1231, 1, 0, 0, 0, 1236, 1232, 1, 0, 0, 0, 1236, 1233, 1, 0, 0, 0, 1236, 1234, 1, 0, 0, 0, 1236, 1235, 1, 0, 0, 0, 1237, 145, 1, 0, 0, 0, 1238, 1242, 3, 144, 72, 0, 1239, 1242, 5, 111, 0, 0, 1240, 1242, 5, 60, 0, 0, 1241, 1238, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1241, 1240, 1, 0, 0, 0, 1242, 147, 1, 0, 0, 0, 1243, 1244, 7, 14, 0, 0, 1244, 149, 1, 0, 0, 0, 1245, 1246, 7, 15, 0, 0, 1246, 151, 1, 0, 0, 0, 1247, 1248, 7, 16, 0, 0, 1248, 153, 1, 0, 0, 0, 1249, 1252, 5, 106, 0, 0, 1250, 1252, 3, 152, 76, 0, 1251, 1249, 1, 0, 0, 0, 1251, 1250, 1, 0, 0, 0, 1252, 155, 1, 0, 0, 0, 1253, 1257, 5, 106, 0, 0, 1254, 1257, 3, 148, 74, 0, 1255, 1257, 3, 150, 75, 0, 1256, 1253, 1, 0, 0, 0, 1256, 1254, 1, 0, 0, 0, 1256, 1255, 1, 0, 0, 0, 1257, 157, 1, 0, 0, 0, 1258, 1259, 3, 162, 81, 0, 1259, 1260, 5, 123, 0, 0, 1260, 1261, 3, 144, 72, 0, 1261, 159, 1, 0, 0, 0, 1262, 1263, 5, 129, 0, 0, 1263, 1264, 3, 130, 65, 0, 1264, 1265, 5, 148, 0, 0, 1265, 161, 1, 0, 0, 0, 1266, 1269, 5, 111, 0, 0, 1267, 1269, 3, 164, 82, 0, 1268, 1266, 1, 0, 0, 0, 1268, 1267, 1, 0, 0, 0, 1269, 163, 1, 0, 0, 0, 1270, 1274, 5, 143, 0, 0, 1271, 1273, 3, 166, 83, 0, 1272, 1271, 1, 0, 0, 0, 1273, 1276, 1, 0, 0, 0, 1274, 1272, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1277, 1, 0, 0, 0, 1276, 1274, 1, 0, 0, 0, 1277, 1278, 5, 145, 0, 0, 1278, 165, 1, 0, 0, 0, 1279, 1280, 5, 158, 0, 0, 1280, 1281, 3, 116, 58, 0, 1281, 1282, 5, 148, 0, 0, 1282, 1285, 1, 0, 0, 0, 1283, 1285, 5, 157, 0, 0, 1284, 1279, 1, 0, 0, 0, 1284, 1283, 1, 0, 0, 0, 1285, 167, 1, 0, 0, 0, 1286, 1290, 5, 144, 0, 0, 1287, 1289, 3, 170, 85, 0, 1288, 1287, 1, 0, 0, 0, 1289, 1292, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1293, 1, 0, 0, 0, 1292, 1290, 1, 0, 0, 0, 1293, 1294, 5, 0, 0, 1, 1294, 169, 1, 0, 0, 0, 1295, 1296, 5, 160, 0, 0, 1296, 1297, 3, 116, 58, 0, 1297, 1298, 5, 148, 0, 0, 1298, 1301, 1, 0, 0, 0, 1299, 1301, 5, 159, 0, 0, 1300, 1295, 1, 0, 0, 0, 1300, 1299, 1, 0, 0, 0, 1301, 171, 1, 0, 0, 0, 167, 175, 182, 191, 198, 202, 216, 220, 223, 227, 230, 237, 241, 250, 255, 264, 272, 279, 283, 289, 294, 302, 309, 315, 327, 335, 349, 353, 358, 368, 377, 380, 384, 387, 391, 394, 397, 400, 403, 407, 411, 414, 417, 420, 424, 427, 436, 442, 463, 480, 497, 503, 509, 520, 522, 533, 536, 542, 550, 556, 558, 562, 567, 570, 573, 577, 581, 584, 586, 589, 593, 597, 600, 602, 604, 609, 620, 626, 633, 638, 642, 646, 652, 654, 661, 669, 672, 675, 694, 708, 724, 728, 739, 743, 754, 758, 765, 769, 776, 780, 785, 794, 798, 822, 839, 845, 848, 851, 861, 867, 870, 873, 881, 884, 888, 891, 905, 922, 927, 932, 938, 945, 957, 961, 964, 973, 987, 1003, 1032, 1040, 1042, 1044, 1053, 1057, 1066, 1070, 1074, 1079, 1086, 1097, 1106, 1113, 1126, 1133, 1137, 1149, 1155, 1158, 1165, 1177, 1183, 1187, 1193, 1200, 1209, 1213, 1223, 1225, 1228, 1236, 1241, 1251, 1256, 1268, 1274, 1284, 1290, 1300] \ No newline at end of file +[4, 1, 160, 1303, 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, 1, 0, 5, 0, 174, 8, 0, 10, 0, 12, 0, 177, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 183, 8, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 192, 8, 3, 1, 4, 1, 4, 1, 4, 5, 4, 197, 8, 4, 10, 4, 12, 4, 200, 9, 4, 1, 4, 3, 4, 203, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 217, 8, 5, 1, 6, 1, 6, 3, 6, 221, 8, 6, 1, 6, 3, 6, 224, 8, 6, 1, 7, 1, 7, 3, 7, 228, 8, 7, 1, 7, 3, 7, 231, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 238, 8, 8, 1, 8, 1, 8, 3, 8, 242, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 249, 8, 9, 10, 9, 12, 9, 252, 9, 9, 1, 9, 1, 9, 3, 9, 256, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 265, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 273, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 280, 8, 12, 1, 12, 1, 12, 3, 12, 284, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 290, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 295, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 303, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 310, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 316, 8, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 328, 8, 16, 1, 17, 1, 17, 1, 18, 1, 18, 5, 18, 334, 8, 18, 10, 18, 12, 18, 337, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 5, 20, 348, 8, 20, 10, 20, 12, 20, 351, 9, 20, 1, 20, 3, 20, 354, 8, 20, 1, 21, 1, 21, 1, 21, 3, 21, 359, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 367, 8, 22, 10, 22, 12, 22, 370, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 378, 8, 23, 1, 24, 3, 24, 381, 8, 24, 1, 24, 1, 24, 3, 24, 385, 8, 24, 1, 24, 3, 24, 388, 8, 24, 1, 24, 1, 24, 3, 24, 392, 8, 24, 1, 24, 3, 24, 395, 8, 24, 1, 24, 3, 24, 398, 8, 24, 1, 24, 3, 24, 401, 8, 24, 1, 24, 3, 24, 404, 8, 24, 1, 24, 1, 24, 3, 24, 408, 8, 24, 1, 24, 1, 24, 3, 24, 412, 8, 24, 1, 24, 3, 24, 415, 8, 24, 1, 24, 3, 24, 418, 8, 24, 1, 24, 3, 24, 421, 8, 24, 1, 24, 1, 24, 3, 24, 425, 8, 24, 1, 24, 3, 24, 428, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 437, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 443, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 462, 8, 29, 10, 29, 12, 29, 465, 9, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 481, 8, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 498, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 504, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 510, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 521, 8, 36, 3, 36, 523, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 534, 8, 39, 1, 39, 3, 39, 537, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 543, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 551, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 557, 8, 39, 10, 39, 12, 39, 560, 9, 39, 1, 40, 3, 40, 563, 8, 40, 1, 40, 1, 40, 1, 40, 3, 40, 568, 8, 40, 1, 40, 3, 40, 571, 8, 40, 1, 40, 3, 40, 574, 8, 40, 1, 40, 1, 40, 3, 40, 578, 8, 40, 1, 40, 1, 40, 3, 40, 582, 8, 40, 1, 40, 3, 40, 585, 8, 40, 3, 40, 587, 8, 40, 1, 40, 3, 40, 590, 8, 40, 1, 40, 1, 40, 3, 40, 594, 8, 40, 1, 40, 1, 40, 3, 40, 598, 8, 40, 1, 40, 3, 40, 601, 8, 40, 3, 40, 603, 8, 40, 3, 40, 605, 8, 40, 1, 41, 1, 41, 1, 41, 3, 41, 610, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 621, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 627, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 632, 8, 44, 10, 44, 12, 44, 635, 9, 44, 1, 45, 1, 45, 3, 45, 639, 8, 45, 1, 45, 1, 45, 3, 45, 643, 8, 45, 1, 45, 1, 45, 3, 45, 647, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 653, 8, 46, 3, 46, 655, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 660, 8, 47, 10, 47, 12, 47, 663, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 3, 49, 670, 8, 49, 1, 49, 3, 49, 673, 8, 49, 1, 49, 3, 49, 676, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 695, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 709, 8, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 723, 8, 56, 10, 56, 12, 56, 726, 9, 56, 1, 56, 3, 56, 729, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 738, 8, 56, 10, 56, 12, 56, 741, 9, 56, 1, 56, 3, 56, 744, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 753, 8, 56, 10, 56, 12, 56, 756, 9, 56, 1, 56, 3, 56, 759, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 766, 8, 56, 1, 56, 1, 56, 3, 56, 770, 8, 56, 1, 57, 1, 57, 1, 57, 5, 57, 775, 8, 57, 10, 57, 12, 57, 778, 9, 57, 1, 57, 3, 57, 781, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 786, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 4, 58, 793, 8, 58, 11, 58, 12, 58, 794, 1, 58, 1, 58, 3, 58, 799, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 823, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 840, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 846, 8, 58, 1, 58, 3, 58, 849, 8, 58, 1, 58, 3, 58, 852, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 862, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 868, 8, 58, 1, 58, 3, 58, 871, 8, 58, 1, 58, 3, 58, 874, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 882, 8, 58, 1, 58, 3, 58, 885, 8, 58, 1, 58, 1, 58, 3, 58, 889, 8, 58, 1, 58, 3, 58, 892, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 906, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 923, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 928, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 933, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 939, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 946, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 958, 8, 58, 1, 58, 1, 58, 3, 58, 962, 8, 58, 1, 58, 3, 58, 965, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 974, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 988, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1004, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1033, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1041, 8, 58, 5, 58, 1043, 8, 58, 10, 58, 12, 58, 1046, 9, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1052, 8, 59, 10, 59, 12, 59, 1055, 9, 59, 1, 59, 3, 59, 1058, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1065, 8, 59, 10, 59, 12, 59, 1068, 9, 59, 1, 59, 3, 59, 1071, 8, 59, 1, 59, 1, 59, 3, 59, 1075, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1080, 8, 59, 1, 60, 1, 60, 1, 60, 5, 60, 1085, 8, 60, 10, 60, 12, 60, 1088, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1096, 8, 60, 10, 60, 12, 60, 1099, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1107, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1114, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1127, 8, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1132, 8, 62, 10, 62, 12, 62, 1135, 9, 62, 1, 62, 3, 62, 1138, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1150, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1156, 8, 64, 1, 64, 3, 64, 1159, 8, 64, 1, 65, 1, 65, 1, 65, 5, 65, 1164, 8, 65, 10, 65, 12, 65, 1167, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1178, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1184, 8, 66, 5, 66, 1186, 8, 66, 10, 66, 12, 66, 1189, 9, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1194, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1201, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 5, 69, 1208, 8, 69, 10, 69, 12, 69, 1211, 9, 69, 1, 69, 3, 69, 1214, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1224, 8, 71, 3, 71, 1226, 8, 71, 1, 72, 3, 72, 1229, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1237, 8, 72, 1, 73, 1, 73, 1, 73, 3, 73, 1242, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1252, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 1257, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 3, 81, 1269, 8, 81, 1, 82, 1, 82, 5, 82, 1273, 8, 82, 10, 82, 12, 82, 1276, 9, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1285, 8, 83, 1, 84, 1, 84, 5, 84, 1289, 8, 84, 10, 84, 12, 84, 1292, 9, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1301, 8, 85, 1, 85, 0, 3, 78, 116, 132, 86, 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, 0, 17, 2, 0, 31, 31, 36, 36, 2, 0, 18, 18, 75, 75, 2, 0, 45, 45, 52, 52, 3, 0, 1, 1, 4, 4, 8, 8, 4, 0, 1, 1, 3, 4, 8, 8, 81, 81, 2, 0, 52, 52, 74, 74, 2, 0, 1, 1, 4, 4, 2, 0, 7, 7, 22, 23, 2, 0, 30, 30, 50, 50, 2, 0, 72, 72, 77, 77, 3, 0, 10, 10, 51, 51, 91, 91, 2, 0, 42, 42, 54, 54, 1, 0, 108, 109, 2, 0, 119, 119, 140, 140, 7, 0, 21, 21, 39, 39, 56, 57, 71, 71, 79, 79, 98, 98, 104, 104, 17, 0, 1, 13, 15, 20, 22, 28, 30, 30, 32, 35, 37, 38, 40, 43, 45, 52, 54, 55, 59, 59, 61, 70, 72, 78, 80, 84, 86, 93, 95, 97, 99, 100, 102, 103, 4, 0, 20, 20, 30, 30, 40, 40, 49, 49, 1475, 0, 175, 1, 0, 0, 0, 2, 182, 1, 0, 0, 0, 4, 184, 1, 0, 0, 0, 6, 186, 1, 0, 0, 0, 8, 193, 1, 0, 0, 0, 10, 216, 1, 0, 0, 0, 12, 218, 1, 0, 0, 0, 14, 225, 1, 0, 0, 0, 16, 232, 1, 0, 0, 0, 18, 245, 1, 0, 0, 0, 20, 257, 1, 0, 0, 0, 22, 266, 1, 0, 0, 0, 24, 274, 1, 0, 0, 0, 26, 296, 1, 0, 0, 0, 28, 311, 1, 0, 0, 0, 30, 320, 1, 0, 0, 0, 32, 325, 1, 0, 0, 0, 34, 329, 1, 0, 0, 0, 36, 331, 1, 0, 0, 0, 38, 340, 1, 0, 0, 0, 40, 344, 1, 0, 0, 0, 42, 358, 1, 0, 0, 0, 44, 362, 1, 0, 0, 0, 46, 377, 1, 0, 0, 0, 48, 380, 1, 0, 0, 0, 50, 429, 1, 0, 0, 0, 52, 432, 1, 0, 0, 0, 54, 438, 1, 0, 0, 0, 56, 442, 1, 0, 0, 0, 58, 448, 1, 0, 0, 0, 60, 466, 1, 0, 0, 0, 62, 469, 1, 0, 0, 0, 64, 472, 1, 0, 0, 0, 66, 482, 1, 0, 0, 0, 68, 485, 1, 0, 0, 0, 70, 489, 1, 0, 0, 0, 72, 522, 1, 0, 0, 0, 74, 524, 1, 0, 0, 0, 76, 527, 1, 0, 0, 0, 78, 542, 1, 0, 0, 0, 80, 604, 1, 0, 0, 0, 82, 609, 1, 0, 0, 0, 84, 620, 1, 0, 0, 0, 86, 622, 1, 0, 0, 0, 88, 628, 1, 0, 0, 0, 90, 636, 1, 0, 0, 0, 92, 654, 1, 0, 0, 0, 94, 656, 1, 0, 0, 0, 96, 664, 1, 0, 0, 0, 98, 669, 1, 0, 0, 0, 100, 677, 1, 0, 0, 0, 102, 681, 1, 0, 0, 0, 104, 685, 1, 0, 0, 0, 106, 694, 1, 0, 0, 0, 108, 708, 1, 0, 0, 0, 110, 710, 1, 0, 0, 0, 112, 769, 1, 0, 0, 0, 114, 771, 1, 0, 0, 0, 116, 932, 1, 0, 0, 0, 118, 1074, 1, 0, 0, 0, 120, 1113, 1, 0, 0, 0, 122, 1126, 1, 0, 0, 0, 124, 1128, 1, 0, 0, 0, 126, 1149, 1, 0, 0, 0, 128, 1158, 1, 0, 0, 0, 130, 1160, 1, 0, 0, 0, 132, 1177, 1, 0, 0, 0, 134, 1190, 1, 0, 0, 0, 136, 1200, 1, 0, 0, 0, 138, 1204, 1, 0, 0, 0, 140, 1215, 1, 0, 0, 0, 142, 1225, 1, 0, 0, 0, 144, 1228, 1, 0, 0, 0, 146, 1241, 1, 0, 0, 0, 148, 1243, 1, 0, 0, 0, 150, 1245, 1, 0, 0, 0, 152, 1247, 1, 0, 0, 0, 154, 1251, 1, 0, 0, 0, 156, 1256, 1, 0, 0, 0, 158, 1258, 1, 0, 0, 0, 160, 1262, 1, 0, 0, 0, 162, 1268, 1, 0, 0, 0, 164, 1270, 1, 0, 0, 0, 166, 1284, 1, 0, 0, 0, 168, 1286, 1, 0, 0, 0, 170, 1300, 1, 0, 0, 0, 172, 174, 3, 2, 1, 0, 173, 172, 1, 0, 0, 0, 174, 177, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 175, 176, 1, 0, 0, 0, 176, 178, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 178, 179, 5, 0, 0, 1, 179, 1, 1, 0, 0, 0, 180, 183, 3, 6, 3, 0, 181, 183, 3, 10, 5, 0, 182, 180, 1, 0, 0, 0, 182, 181, 1, 0, 0, 0, 183, 3, 1, 0, 0, 0, 184, 185, 3, 116, 58, 0, 185, 5, 1, 0, 0, 0, 186, 187, 5, 53, 0, 0, 187, 191, 3, 156, 78, 0, 188, 189, 5, 116, 0, 0, 189, 190, 5, 123, 0, 0, 190, 192, 3, 4, 2, 0, 191, 188, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 7, 1, 0, 0, 0, 193, 198, 3, 156, 78, 0, 194, 195, 5, 117, 0, 0, 195, 197, 3, 156, 78, 0, 196, 194, 1, 0, 0, 0, 197, 200, 1, 0, 0, 0, 198, 196, 1, 0, 0, 0, 198, 199, 1, 0, 0, 0, 199, 202, 1, 0, 0, 0, 200, 198, 1, 0, 0, 0, 201, 203, 5, 117, 0, 0, 202, 201, 1, 0, 0, 0, 202, 203, 1, 0, 0, 0, 203, 9, 1, 0, 0, 0, 204, 217, 3, 12, 6, 0, 205, 217, 3, 14, 7, 0, 206, 217, 3, 18, 9, 0, 207, 217, 3, 20, 10, 0, 208, 217, 3, 22, 11, 0, 209, 217, 3, 26, 13, 0, 210, 217, 3, 24, 12, 0, 211, 217, 3, 28, 14, 0, 212, 217, 3, 30, 15, 0, 213, 217, 3, 36, 18, 0, 214, 217, 3, 32, 16, 0, 215, 217, 3, 34, 17, 0, 216, 204, 1, 0, 0, 0, 216, 205, 1, 0, 0, 0, 216, 206, 1, 0, 0, 0, 216, 207, 1, 0, 0, 0, 216, 208, 1, 0, 0, 0, 216, 209, 1, 0, 0, 0, 216, 210, 1, 0, 0, 0, 216, 211, 1, 0, 0, 0, 216, 212, 1, 0, 0, 0, 216, 213, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 216, 215, 1, 0, 0, 0, 217, 11, 1, 0, 0, 0, 218, 220, 5, 73, 0, 0, 219, 221, 3, 4, 2, 0, 220, 219, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 223, 1, 0, 0, 0, 222, 224, 5, 151, 0, 0, 223, 222, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 13, 1, 0, 0, 0, 225, 227, 5, 85, 0, 0, 226, 228, 3, 4, 2, 0, 227, 226, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 231, 5, 151, 0, 0, 230, 229, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 15, 1, 0, 0, 0, 232, 241, 5, 14, 0, 0, 233, 234, 5, 131, 0, 0, 234, 237, 3, 156, 78, 0, 235, 236, 5, 116, 0, 0, 236, 238, 3, 156, 78, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 5, 150, 0, 0, 240, 242, 1, 0, 0, 0, 241, 233, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 244, 3, 36, 18, 0, 244, 17, 1, 0, 0, 0, 245, 246, 5, 94, 0, 0, 246, 250, 3, 36, 18, 0, 247, 249, 3, 16, 8, 0, 248, 247, 1, 0, 0, 0, 249, 252, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 250, 251, 1, 0, 0, 0, 251, 255, 1, 0, 0, 0, 252, 250, 1, 0, 0, 0, 253, 254, 5, 29, 0, 0, 254, 256, 3, 36, 18, 0, 255, 253, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 19, 1, 0, 0, 0, 257, 258, 5, 41, 0, 0, 258, 259, 5, 131, 0, 0, 259, 260, 3, 4, 2, 0, 260, 261, 5, 150, 0, 0, 261, 264, 3, 10, 5, 0, 262, 263, 5, 25, 0, 0, 263, 265, 3, 10, 5, 0, 264, 262, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 21, 1, 0, 0, 0, 266, 267, 5, 101, 0, 0, 267, 268, 5, 131, 0, 0, 268, 269, 3, 4, 2, 0, 269, 270, 5, 150, 0, 0, 270, 272, 3, 10, 5, 0, 271, 273, 5, 151, 0, 0, 272, 271, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 23, 1, 0, 0, 0, 274, 275, 5, 33, 0, 0, 275, 279, 5, 131, 0, 0, 276, 280, 3, 6, 3, 0, 277, 280, 3, 30, 15, 0, 278, 280, 3, 4, 2, 0, 279, 276, 1, 0, 0, 0, 279, 277, 1, 0, 0, 0, 279, 278, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 281, 1, 0, 0, 0, 281, 283, 5, 151, 0, 0, 282, 284, 3, 4, 2, 0, 283, 282, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 289, 5, 151, 0, 0, 286, 290, 3, 6, 3, 0, 287, 290, 3, 30, 15, 0, 288, 290, 3, 4, 2, 0, 289, 286, 1, 0, 0, 0, 289, 287, 1, 0, 0, 0, 289, 288, 1, 0, 0, 0, 289, 290, 1, 0, 0, 0, 290, 291, 1, 0, 0, 0, 291, 292, 5, 150, 0, 0, 292, 294, 3, 10, 5, 0, 293, 295, 5, 151, 0, 0, 294, 293, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 25, 1, 0, 0, 0, 296, 297, 5, 33, 0, 0, 297, 298, 5, 131, 0, 0, 298, 299, 5, 53, 0, 0, 299, 302, 3, 156, 78, 0, 300, 301, 5, 117, 0, 0, 301, 303, 3, 156, 78, 0, 302, 300, 1, 0, 0, 0, 302, 303, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 305, 5, 43, 0, 0, 305, 306, 3, 4, 2, 0, 306, 307, 5, 150, 0, 0, 307, 309, 3, 10, 5, 0, 308, 310, 5, 151, 0, 0, 309, 308, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 27, 1, 0, 0, 0, 311, 312, 7, 0, 0, 0, 312, 313, 3, 156, 78, 0, 313, 315, 5, 131, 0, 0, 314, 316, 3, 8, 4, 0, 315, 314, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 5, 150, 0, 0, 318, 319, 3, 36, 18, 0, 319, 29, 1, 0, 0, 0, 320, 321, 3, 4, 2, 0, 321, 322, 5, 116, 0, 0, 322, 323, 5, 123, 0, 0, 323, 324, 3, 4, 2, 0, 324, 31, 1, 0, 0, 0, 325, 327, 3, 4, 2, 0, 326, 328, 5, 151, 0, 0, 327, 326, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 33, 1, 0, 0, 0, 329, 330, 5, 151, 0, 0, 330, 35, 1, 0, 0, 0, 331, 335, 5, 129, 0, 0, 332, 334, 3, 2, 1, 0, 333, 332, 1, 0, 0, 0, 334, 337, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 338, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 338, 339, 5, 148, 0, 0, 339, 37, 1, 0, 0, 0, 340, 341, 3, 4, 2, 0, 341, 342, 5, 116, 0, 0, 342, 343, 3, 4, 2, 0, 343, 39, 1, 0, 0, 0, 344, 349, 3, 38, 19, 0, 345, 346, 5, 117, 0, 0, 346, 348, 3, 38, 19, 0, 347, 345, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 353, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 354, 5, 117, 0, 0, 353, 352, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 41, 1, 0, 0, 0, 355, 359, 3, 44, 22, 0, 356, 359, 3, 48, 24, 0, 357, 359, 3, 120, 60, 0, 358, 355, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 358, 357, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 361, 5, 0, 0, 1, 361, 43, 1, 0, 0, 0, 362, 368, 3, 46, 23, 0, 363, 364, 5, 96, 0, 0, 364, 365, 5, 1, 0, 0, 365, 367, 3, 46, 23, 0, 366, 363, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 45, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 378, 3, 48, 24, 0, 372, 373, 5, 131, 0, 0, 373, 374, 3, 44, 22, 0, 374, 375, 5, 150, 0, 0, 375, 378, 1, 0, 0, 0, 376, 378, 3, 160, 80, 0, 377, 371, 1, 0, 0, 0, 377, 372, 1, 0, 0, 0, 377, 376, 1, 0, 0, 0, 378, 47, 1, 0, 0, 0, 379, 381, 3, 50, 25, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 384, 5, 80, 0, 0, 383, 385, 5, 24, 0, 0, 384, 383, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 387, 1, 0, 0, 0, 386, 388, 3, 52, 26, 0, 387, 386, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 391, 3, 114, 57, 0, 390, 392, 3, 54, 27, 0, 391, 390, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 1, 0, 0, 0, 393, 395, 3, 56, 28, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 397, 1, 0, 0, 0, 396, 398, 3, 60, 30, 0, 397, 396, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 400, 1, 0, 0, 0, 399, 401, 3, 62, 31, 0, 400, 399, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 403, 1, 0, 0, 0, 402, 404, 3, 64, 32, 0, 403, 402, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 406, 5, 103, 0, 0, 406, 408, 7, 1, 0, 0, 407, 405, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 410, 5, 103, 0, 0, 410, 412, 5, 90, 0, 0, 411, 409, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 1, 0, 0, 0, 413, 415, 3, 66, 33, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 417, 1, 0, 0, 0, 416, 418, 3, 58, 29, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 420, 1, 0, 0, 0, 419, 421, 3, 68, 34, 0, 420, 419, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 424, 1, 0, 0, 0, 422, 425, 3, 72, 36, 0, 423, 425, 3, 74, 37, 0, 424, 422, 1, 0, 0, 0, 424, 423, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 427, 1, 0, 0, 0, 426, 428, 3, 76, 38, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 49, 1, 0, 0, 0, 429, 430, 5, 103, 0, 0, 430, 431, 3, 124, 62, 0, 431, 51, 1, 0, 0, 0, 432, 433, 5, 89, 0, 0, 433, 436, 5, 109, 0, 0, 434, 435, 5, 103, 0, 0, 435, 437, 5, 86, 0, 0, 436, 434, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 53, 1, 0, 0, 0, 438, 439, 5, 34, 0, 0, 439, 440, 3, 78, 39, 0, 440, 55, 1, 0, 0, 0, 441, 443, 7, 2, 0, 0, 442, 441, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 5, 5, 0, 0, 445, 446, 5, 48, 0, 0, 446, 447, 3, 114, 57, 0, 447, 57, 1, 0, 0, 0, 448, 449, 5, 102, 0, 0, 449, 450, 3, 156, 78, 0, 450, 451, 5, 6, 0, 0, 451, 452, 5, 131, 0, 0, 452, 453, 3, 98, 49, 0, 453, 463, 5, 150, 0, 0, 454, 455, 5, 117, 0, 0, 455, 456, 3, 156, 78, 0, 456, 457, 5, 6, 0, 0, 457, 458, 5, 131, 0, 0, 458, 459, 3, 98, 49, 0, 459, 460, 5, 150, 0, 0, 460, 462, 1, 0, 0, 0, 461, 454, 1, 0, 0, 0, 462, 465, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 59, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 466, 467, 5, 70, 0, 0, 467, 468, 3, 116, 58, 0, 468, 61, 1, 0, 0, 0, 469, 470, 5, 100, 0, 0, 470, 471, 3, 116, 58, 0, 471, 63, 1, 0, 0, 0, 472, 473, 5, 37, 0, 0, 473, 480, 5, 11, 0, 0, 474, 475, 7, 1, 0, 0, 475, 476, 5, 131, 0, 0, 476, 477, 3, 114, 57, 0, 477, 478, 5, 150, 0, 0, 478, 481, 1, 0, 0, 0, 479, 481, 3, 114, 57, 0, 480, 474, 1, 0, 0, 0, 480, 479, 1, 0, 0, 0, 481, 65, 1, 0, 0, 0, 482, 483, 5, 38, 0, 0, 483, 484, 3, 116, 58, 0, 484, 67, 1, 0, 0, 0, 485, 486, 5, 65, 0, 0, 486, 487, 5, 11, 0, 0, 487, 488, 3, 88, 44, 0, 488, 69, 1, 0, 0, 0, 489, 490, 5, 65, 0, 0, 490, 491, 5, 11, 0, 0, 491, 492, 3, 114, 57, 0, 492, 71, 1, 0, 0, 0, 493, 494, 5, 55, 0, 0, 494, 497, 3, 116, 58, 0, 495, 496, 5, 117, 0, 0, 496, 498, 3, 116, 58, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 503, 1, 0, 0, 0, 499, 500, 5, 103, 0, 0, 500, 504, 5, 86, 0, 0, 501, 502, 5, 11, 0, 0, 502, 504, 3, 114, 57, 0, 503, 499, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 523, 1, 0, 0, 0, 505, 506, 5, 55, 0, 0, 506, 509, 3, 116, 58, 0, 507, 508, 5, 103, 0, 0, 508, 510, 5, 86, 0, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 5, 62, 0, 0, 512, 513, 3, 116, 58, 0, 513, 523, 1, 0, 0, 0, 514, 515, 5, 55, 0, 0, 515, 516, 3, 116, 58, 0, 516, 517, 5, 62, 0, 0, 517, 520, 3, 116, 58, 0, 518, 519, 5, 11, 0, 0, 519, 521, 3, 114, 57, 0, 520, 518, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 523, 1, 0, 0, 0, 522, 493, 1, 0, 0, 0, 522, 505, 1, 0, 0, 0, 522, 514, 1, 0, 0, 0, 523, 73, 1, 0, 0, 0, 524, 525, 5, 62, 0, 0, 525, 526, 3, 116, 58, 0, 526, 75, 1, 0, 0, 0, 527, 528, 5, 82, 0, 0, 528, 529, 3, 94, 47, 0, 529, 77, 1, 0, 0, 0, 530, 531, 6, 39, -1, 0, 531, 533, 3, 132, 66, 0, 532, 534, 5, 28, 0, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 536, 1, 0, 0, 0, 535, 537, 3, 86, 43, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 543, 1, 0, 0, 0, 538, 539, 5, 131, 0, 0, 539, 540, 3, 78, 39, 0, 540, 541, 5, 150, 0, 0, 541, 543, 1, 0, 0, 0, 542, 530, 1, 0, 0, 0, 542, 538, 1, 0, 0, 0, 543, 558, 1, 0, 0, 0, 544, 545, 10, 3, 0, 0, 545, 546, 3, 82, 41, 0, 546, 547, 3, 78, 39, 4, 547, 557, 1, 0, 0, 0, 548, 550, 10, 4, 0, 0, 549, 551, 3, 80, 40, 0, 550, 549, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 5, 48, 0, 0, 553, 554, 3, 78, 39, 0, 554, 555, 3, 84, 42, 0, 555, 557, 1, 0, 0, 0, 556, 544, 1, 0, 0, 0, 556, 548, 1, 0, 0, 0, 557, 560, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 79, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 561, 563, 7, 3, 0, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 571, 5, 45, 0, 0, 565, 567, 5, 45, 0, 0, 566, 568, 7, 3, 0, 0, 567, 566, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 571, 1, 0, 0, 0, 569, 571, 7, 3, 0, 0, 570, 562, 1, 0, 0, 0, 570, 565, 1, 0, 0, 0, 570, 569, 1, 0, 0, 0, 571, 605, 1, 0, 0, 0, 572, 574, 7, 4, 0, 0, 573, 572, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 577, 7, 5, 0, 0, 576, 578, 5, 66, 0, 0, 577, 576, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 587, 1, 0, 0, 0, 579, 581, 7, 5, 0, 0, 580, 582, 5, 66, 0, 0, 581, 580, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 584, 1, 0, 0, 0, 583, 585, 7, 4, 0, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 587, 1, 0, 0, 0, 586, 573, 1, 0, 0, 0, 586, 579, 1, 0, 0, 0, 587, 605, 1, 0, 0, 0, 588, 590, 7, 6, 0, 0, 589, 588, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 593, 5, 35, 0, 0, 592, 594, 5, 66, 0, 0, 593, 592, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 603, 1, 0, 0, 0, 595, 597, 5, 35, 0, 0, 596, 598, 5, 66, 0, 0, 597, 596, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 600, 1, 0, 0, 0, 599, 601, 7, 6, 0, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 603, 1, 0, 0, 0, 602, 589, 1, 0, 0, 0, 602, 595, 1, 0, 0, 0, 603, 605, 1, 0, 0, 0, 604, 570, 1, 0, 0, 0, 604, 586, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 605, 81, 1, 0, 0, 0, 606, 607, 5, 17, 0, 0, 607, 610, 5, 48, 0, 0, 608, 610, 5, 117, 0, 0, 609, 606, 1, 0, 0, 0, 609, 608, 1, 0, 0, 0, 610, 83, 1, 0, 0, 0, 611, 612, 5, 63, 0, 0, 612, 621, 3, 114, 57, 0, 613, 614, 5, 97, 0, 0, 614, 615, 5, 131, 0, 0, 615, 616, 3, 114, 57, 0, 616, 617, 5, 150, 0, 0, 617, 621, 1, 0, 0, 0, 618, 619, 5, 97, 0, 0, 619, 621, 3, 114, 57, 0, 620, 611, 1, 0, 0, 0, 620, 613, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 621, 85, 1, 0, 0, 0, 622, 623, 5, 78, 0, 0, 623, 626, 3, 92, 46, 0, 624, 625, 5, 62, 0, 0, 625, 627, 3, 92, 46, 0, 626, 624, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 87, 1, 0, 0, 0, 628, 633, 3, 90, 45, 0, 629, 630, 5, 117, 0, 0, 630, 632, 3, 90, 45, 0, 631, 629, 1, 0, 0, 0, 632, 635, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 89, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 638, 3, 116, 58, 0, 637, 639, 7, 7, 0, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 642, 1, 0, 0, 0, 640, 641, 5, 61, 0, 0, 641, 643, 7, 8, 0, 0, 642, 640, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 645, 5, 16, 0, 0, 645, 647, 5, 111, 0, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 91, 1, 0, 0, 0, 648, 655, 3, 160, 80, 0, 649, 652, 3, 144, 72, 0, 650, 651, 5, 152, 0, 0, 651, 653, 3, 144, 72, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 655, 1, 0, 0, 0, 654, 648, 1, 0, 0, 0, 654, 649, 1, 0, 0, 0, 655, 93, 1, 0, 0, 0, 656, 661, 3, 96, 48, 0, 657, 658, 5, 117, 0, 0, 658, 660, 3, 96, 48, 0, 659, 657, 1, 0, 0, 0, 660, 663, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 95, 1, 0, 0, 0, 663, 661, 1, 0, 0, 0, 664, 665, 3, 156, 78, 0, 665, 666, 5, 123, 0, 0, 666, 667, 3, 146, 73, 0, 667, 97, 1, 0, 0, 0, 668, 670, 3, 100, 50, 0, 669, 668, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 1, 0, 0, 0, 671, 673, 3, 102, 51, 0, 672, 671, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 675, 1, 0, 0, 0, 674, 676, 3, 104, 52, 0, 675, 674, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 99, 1, 0, 0, 0, 677, 678, 5, 68, 0, 0, 678, 679, 5, 11, 0, 0, 679, 680, 3, 114, 57, 0, 680, 101, 1, 0, 0, 0, 681, 682, 5, 65, 0, 0, 682, 683, 5, 11, 0, 0, 683, 684, 3, 88, 44, 0, 684, 103, 1, 0, 0, 0, 685, 686, 7, 9, 0, 0, 686, 687, 3, 106, 53, 0, 687, 105, 1, 0, 0, 0, 688, 695, 3, 108, 54, 0, 689, 690, 5, 9, 0, 0, 690, 691, 3, 108, 54, 0, 691, 692, 5, 2, 0, 0, 692, 693, 3, 108, 54, 0, 693, 695, 1, 0, 0, 0, 694, 688, 1, 0, 0, 0, 694, 689, 1, 0, 0, 0, 695, 107, 1, 0, 0, 0, 696, 697, 5, 19, 0, 0, 697, 709, 5, 76, 0, 0, 698, 699, 5, 95, 0, 0, 699, 709, 5, 69, 0, 0, 700, 701, 5, 95, 0, 0, 701, 709, 5, 32, 0, 0, 702, 703, 3, 144, 72, 0, 703, 704, 5, 69, 0, 0, 704, 709, 1, 0, 0, 0, 705, 706, 3, 144, 72, 0, 706, 707, 5, 32, 0, 0, 707, 709, 1, 0, 0, 0, 708, 696, 1, 0, 0, 0, 708, 698, 1, 0, 0, 0, 708, 700, 1, 0, 0, 0, 708, 702, 1, 0, 0, 0, 708, 705, 1, 0, 0, 0, 709, 109, 1, 0, 0, 0, 710, 711, 3, 116, 58, 0, 711, 712, 5, 0, 0, 1, 712, 111, 1, 0, 0, 0, 713, 770, 3, 156, 78, 0, 714, 715, 3, 156, 78, 0, 715, 716, 5, 131, 0, 0, 716, 717, 3, 156, 78, 0, 717, 724, 3, 112, 56, 0, 718, 719, 5, 117, 0, 0, 719, 720, 3, 156, 78, 0, 720, 721, 3, 112, 56, 0, 721, 723, 1, 0, 0, 0, 722, 718, 1, 0, 0, 0, 723, 726, 1, 0, 0, 0, 724, 722, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 728, 1, 0, 0, 0, 726, 724, 1, 0, 0, 0, 727, 729, 5, 117, 0, 0, 728, 727, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 5, 150, 0, 0, 731, 770, 1, 0, 0, 0, 732, 733, 3, 156, 78, 0, 733, 734, 5, 131, 0, 0, 734, 739, 3, 158, 79, 0, 735, 736, 5, 117, 0, 0, 736, 738, 3, 158, 79, 0, 737, 735, 1, 0, 0, 0, 738, 741, 1, 0, 0, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 744, 5, 117, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 150, 0, 0, 746, 770, 1, 0, 0, 0, 747, 748, 3, 156, 78, 0, 748, 749, 5, 131, 0, 0, 749, 754, 3, 112, 56, 0, 750, 751, 5, 117, 0, 0, 751, 753, 3, 112, 56, 0, 752, 750, 1, 0, 0, 0, 753, 756, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 758, 1, 0, 0, 0, 756, 754, 1, 0, 0, 0, 757, 759, 5, 117, 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 761, 5, 150, 0, 0, 761, 770, 1, 0, 0, 0, 762, 763, 3, 156, 78, 0, 763, 765, 5, 131, 0, 0, 764, 766, 3, 114, 57, 0, 765, 764, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 5, 150, 0, 0, 768, 770, 1, 0, 0, 0, 769, 713, 1, 0, 0, 0, 769, 714, 1, 0, 0, 0, 769, 732, 1, 0, 0, 0, 769, 747, 1, 0, 0, 0, 769, 762, 1, 0, 0, 0, 770, 113, 1, 0, 0, 0, 771, 776, 3, 116, 58, 0, 772, 773, 5, 117, 0, 0, 773, 775, 3, 116, 58, 0, 774, 772, 1, 0, 0, 0, 775, 778, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 780, 1, 0, 0, 0, 778, 776, 1, 0, 0, 0, 779, 781, 5, 117, 0, 0, 780, 779, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 115, 1, 0, 0, 0, 782, 783, 6, 58, -1, 0, 783, 785, 5, 12, 0, 0, 784, 786, 3, 116, 58, 0, 785, 784, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 792, 1, 0, 0, 0, 787, 788, 5, 99, 0, 0, 788, 789, 3, 116, 58, 0, 789, 790, 5, 84, 0, 0, 790, 791, 3, 116, 58, 0, 791, 793, 1, 0, 0, 0, 792, 787, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 798, 1, 0, 0, 0, 796, 797, 5, 25, 0, 0, 797, 799, 3, 116, 58, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 5, 26, 0, 0, 801, 933, 1, 0, 0, 0, 802, 803, 5, 13, 0, 0, 803, 804, 5, 131, 0, 0, 804, 805, 3, 116, 58, 0, 805, 806, 5, 6, 0, 0, 806, 807, 3, 112, 56, 0, 807, 808, 5, 150, 0, 0, 808, 933, 1, 0, 0, 0, 809, 810, 5, 20, 0, 0, 810, 933, 5, 111, 0, 0, 811, 812, 5, 46, 0, 0, 812, 813, 3, 116, 58, 0, 813, 814, 3, 148, 74, 0, 814, 933, 1, 0, 0, 0, 815, 816, 5, 83, 0, 0, 816, 817, 5, 131, 0, 0, 817, 818, 3, 116, 58, 0, 818, 819, 5, 34, 0, 0, 819, 822, 3, 116, 58, 0, 820, 821, 5, 33, 0, 0, 821, 823, 3, 116, 58, 0, 822, 820, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 825, 5, 150, 0, 0, 825, 933, 1, 0, 0, 0, 826, 827, 5, 87, 0, 0, 827, 933, 5, 111, 0, 0, 828, 829, 5, 92, 0, 0, 829, 830, 5, 131, 0, 0, 830, 831, 7, 10, 0, 0, 831, 832, 3, 162, 81, 0, 832, 833, 5, 34, 0, 0, 833, 834, 3, 116, 58, 0, 834, 835, 5, 150, 0, 0, 835, 933, 1, 0, 0, 0, 836, 837, 3, 156, 78, 0, 837, 839, 5, 131, 0, 0, 838, 840, 3, 114, 57, 0, 839, 838, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 5, 150, 0, 0, 842, 851, 1, 0, 0, 0, 843, 845, 5, 131, 0, 0, 844, 846, 5, 24, 0, 0, 845, 844, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 848, 1, 0, 0, 0, 847, 849, 3, 114, 57, 0, 848, 847, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 852, 5, 150, 0, 0, 851, 843, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 5, 67, 0, 0, 854, 855, 5, 131, 0, 0, 855, 856, 3, 98, 49, 0, 856, 857, 5, 150, 0, 0, 857, 933, 1, 0, 0, 0, 858, 859, 3, 156, 78, 0, 859, 861, 5, 131, 0, 0, 860, 862, 3, 114, 57, 0, 861, 860, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 5, 150, 0, 0, 864, 873, 1, 0, 0, 0, 865, 867, 5, 131, 0, 0, 866, 868, 5, 24, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 871, 3, 114, 57, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 5, 150, 0, 0, 873, 865, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 67, 0, 0, 876, 877, 3, 156, 78, 0, 877, 933, 1, 0, 0, 0, 878, 884, 3, 156, 78, 0, 879, 881, 5, 131, 0, 0, 880, 882, 3, 114, 57, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 885, 5, 150, 0, 0, 884, 879, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 888, 5, 131, 0, 0, 887, 889, 5, 24, 0, 0, 888, 887, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 891, 1, 0, 0, 0, 890, 892, 3, 114, 57, 0, 891, 890, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 5, 150, 0, 0, 894, 933, 1, 0, 0, 0, 895, 933, 3, 120, 60, 0, 896, 933, 3, 164, 82, 0, 897, 933, 3, 146, 73, 0, 898, 899, 5, 119, 0, 0, 899, 933, 3, 116, 58, 20, 900, 901, 5, 59, 0, 0, 901, 933, 3, 116, 58, 14, 902, 903, 3, 136, 68, 0, 903, 904, 5, 121, 0, 0, 904, 906, 1, 0, 0, 0, 905, 902, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 933, 5, 113, 0, 0, 908, 909, 5, 131, 0, 0, 909, 910, 3, 44, 22, 0, 910, 911, 5, 150, 0, 0, 911, 933, 1, 0, 0, 0, 912, 913, 5, 131, 0, 0, 913, 914, 3, 116, 58, 0, 914, 915, 5, 150, 0, 0, 915, 933, 1, 0, 0, 0, 916, 917, 5, 131, 0, 0, 917, 918, 3, 114, 57, 0, 918, 919, 5, 150, 0, 0, 919, 933, 1, 0, 0, 0, 920, 922, 5, 130, 0, 0, 921, 923, 3, 114, 57, 0, 922, 921, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 933, 5, 149, 0, 0, 925, 927, 5, 129, 0, 0, 926, 928, 3, 40, 20, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 933, 5, 148, 0, 0, 930, 933, 3, 118, 59, 0, 931, 933, 3, 128, 64, 0, 932, 782, 1, 0, 0, 0, 932, 802, 1, 0, 0, 0, 932, 809, 1, 0, 0, 0, 932, 811, 1, 0, 0, 0, 932, 815, 1, 0, 0, 0, 932, 826, 1, 0, 0, 0, 932, 828, 1, 0, 0, 0, 932, 836, 1, 0, 0, 0, 932, 858, 1, 0, 0, 0, 932, 878, 1, 0, 0, 0, 932, 895, 1, 0, 0, 0, 932, 896, 1, 0, 0, 0, 932, 897, 1, 0, 0, 0, 932, 898, 1, 0, 0, 0, 932, 900, 1, 0, 0, 0, 932, 905, 1, 0, 0, 0, 932, 908, 1, 0, 0, 0, 932, 912, 1, 0, 0, 0, 932, 916, 1, 0, 0, 0, 932, 920, 1, 0, 0, 0, 932, 925, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 932, 931, 1, 0, 0, 0, 933, 1044, 1, 0, 0, 0, 934, 938, 10, 19, 0, 0, 935, 939, 5, 113, 0, 0, 936, 939, 5, 152, 0, 0, 937, 939, 5, 139, 0, 0, 938, 935, 1, 0, 0, 0, 938, 936, 1, 0, 0, 0, 938, 937, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 1043, 3, 116, 58, 20, 941, 945, 10, 18, 0, 0, 942, 946, 5, 140, 0, 0, 943, 946, 5, 119, 0, 0, 944, 946, 5, 118, 0, 0, 945, 942, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 945, 944, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 1043, 3, 116, 58, 19, 948, 973, 10, 17, 0, 0, 949, 974, 5, 122, 0, 0, 950, 974, 5, 123, 0, 0, 951, 974, 5, 134, 0, 0, 952, 974, 5, 132, 0, 0, 953, 974, 5, 133, 0, 0, 954, 974, 5, 124, 0, 0, 955, 974, 5, 125, 0, 0, 956, 958, 5, 59, 0, 0, 957, 956, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 961, 5, 43, 0, 0, 960, 962, 5, 15, 0, 0, 961, 960, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 974, 1, 0, 0, 0, 963, 965, 5, 59, 0, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 974, 7, 11, 0, 0, 967, 974, 5, 146, 0, 0, 968, 974, 5, 147, 0, 0, 969, 974, 5, 136, 0, 0, 970, 974, 5, 127, 0, 0, 971, 974, 5, 128, 0, 0, 972, 974, 5, 135, 0, 0, 973, 949, 1, 0, 0, 0, 973, 950, 1, 0, 0, 0, 973, 951, 1, 0, 0, 0, 973, 952, 1, 0, 0, 0, 973, 953, 1, 0, 0, 0, 973, 954, 1, 0, 0, 0, 973, 955, 1, 0, 0, 0, 973, 957, 1, 0, 0, 0, 973, 964, 1, 0, 0, 0, 973, 967, 1, 0, 0, 0, 973, 968, 1, 0, 0, 0, 973, 969, 1, 0, 0, 0, 973, 970, 1, 0, 0, 0, 973, 971, 1, 0, 0, 0, 973, 972, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 1043, 3, 116, 58, 18, 976, 977, 10, 15, 0, 0, 977, 978, 5, 138, 0, 0, 978, 1043, 3, 116, 58, 16, 979, 980, 10, 13, 0, 0, 980, 981, 5, 2, 0, 0, 981, 1043, 3, 116, 58, 14, 982, 983, 10, 12, 0, 0, 983, 984, 5, 64, 0, 0, 984, 1043, 3, 116, 58, 13, 985, 987, 10, 11, 0, 0, 986, 988, 5, 59, 0, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 5, 9, 0, 0, 990, 991, 3, 116, 58, 0, 991, 992, 5, 2, 0, 0, 992, 993, 3, 116, 58, 12, 993, 1043, 1, 0, 0, 0, 994, 995, 10, 10, 0, 0, 995, 996, 5, 141, 0, 0, 996, 997, 3, 116, 58, 0, 997, 998, 5, 116, 0, 0, 998, 999, 3, 116, 58, 10, 999, 1043, 1, 0, 0, 0, 1000, 1001, 10, 30, 0, 0, 1001, 1003, 5, 131, 0, 0, 1002, 1004, 3, 114, 57, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1043, 5, 150, 0, 0, 1006, 1007, 10, 26, 0, 0, 1007, 1008, 5, 130, 0, 0, 1008, 1009, 3, 116, 58, 0, 1009, 1010, 5, 149, 0, 0, 1010, 1043, 1, 0, 0, 0, 1011, 1012, 10, 25, 0, 0, 1012, 1013, 5, 121, 0, 0, 1013, 1043, 5, 109, 0, 0, 1014, 1015, 10, 24, 0, 0, 1015, 1016, 5, 121, 0, 0, 1016, 1043, 3, 156, 78, 0, 1017, 1018, 10, 23, 0, 0, 1018, 1019, 5, 137, 0, 0, 1019, 1020, 5, 130, 0, 0, 1020, 1021, 3, 116, 58, 0, 1021, 1022, 5, 149, 0, 0, 1022, 1043, 1, 0, 0, 0, 1023, 1024, 10, 22, 0, 0, 1024, 1025, 5, 137, 0, 0, 1025, 1043, 5, 109, 0, 0, 1026, 1027, 10, 21, 0, 0, 1027, 1028, 5, 137, 0, 0, 1028, 1043, 3, 156, 78, 0, 1029, 1030, 10, 16, 0, 0, 1030, 1032, 5, 47, 0, 0, 1031, 1033, 5, 59, 0, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1043, 5, 60, 0, 0, 1035, 1040, 10, 9, 0, 0, 1036, 1037, 5, 6, 0, 0, 1037, 1041, 3, 156, 78, 0, 1038, 1039, 5, 6, 0, 0, 1039, 1041, 5, 111, 0, 0, 1040, 1036, 1, 0, 0, 0, 1040, 1038, 1, 0, 0, 0, 1041, 1043, 1, 0, 0, 0, 1042, 934, 1, 0, 0, 0, 1042, 941, 1, 0, 0, 0, 1042, 948, 1, 0, 0, 0, 1042, 976, 1, 0, 0, 0, 1042, 979, 1, 0, 0, 0, 1042, 982, 1, 0, 0, 0, 1042, 985, 1, 0, 0, 0, 1042, 994, 1, 0, 0, 0, 1042, 1000, 1, 0, 0, 0, 1042, 1006, 1, 0, 0, 0, 1042, 1011, 1, 0, 0, 0, 1042, 1014, 1, 0, 0, 0, 1042, 1017, 1, 0, 0, 0, 1042, 1023, 1, 0, 0, 0, 1042, 1026, 1, 0, 0, 0, 1042, 1029, 1, 0, 0, 0, 1042, 1035, 1, 0, 0, 0, 1043, 1046, 1, 0, 0, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 117, 1, 0, 0, 0, 1046, 1044, 1, 0, 0, 0, 1047, 1048, 5, 131, 0, 0, 1048, 1053, 3, 156, 78, 0, 1049, 1050, 5, 117, 0, 0, 1050, 1052, 3, 156, 78, 0, 1051, 1049, 1, 0, 0, 0, 1052, 1055, 1, 0, 0, 0, 1053, 1051, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1057, 1, 0, 0, 0, 1055, 1053, 1, 0, 0, 0, 1056, 1058, 5, 117, 0, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1060, 5, 150, 0, 0, 1060, 1075, 1, 0, 0, 0, 1061, 1066, 3, 156, 78, 0, 1062, 1063, 5, 117, 0, 0, 1063, 1065, 3, 156, 78, 0, 1064, 1062, 1, 0, 0, 0, 1065, 1068, 1, 0, 0, 0, 1066, 1064, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1070, 1, 0, 0, 0, 1068, 1066, 1, 0, 0, 0, 1069, 1071, 5, 117, 0, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1075, 1, 0, 0, 0, 1072, 1073, 5, 131, 0, 0, 1073, 1075, 5, 150, 0, 0, 1074, 1047, 1, 0, 0, 0, 1074, 1061, 1, 0, 0, 0, 1074, 1072, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1079, 5, 112, 0, 0, 1077, 1080, 3, 36, 18, 0, 1078, 1080, 3, 116, 58, 0, 1079, 1077, 1, 0, 0, 0, 1079, 1078, 1, 0, 0, 0, 1080, 119, 1, 0, 0, 0, 1081, 1082, 5, 133, 0, 0, 1082, 1086, 3, 156, 78, 0, 1083, 1085, 3, 122, 61, 0, 1084, 1083, 1, 0, 0, 0, 1085, 1088, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1089, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1089, 1090, 5, 152, 0, 0, 1090, 1091, 5, 125, 0, 0, 1091, 1114, 1, 0, 0, 0, 1092, 1093, 5, 133, 0, 0, 1093, 1097, 3, 156, 78, 0, 1094, 1096, 3, 122, 61, 0, 1095, 1094, 1, 0, 0, 0, 1096, 1099, 1, 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 1, 0, 0, 0, 1099, 1097, 1, 0, 0, 0, 1100, 1106, 5, 125, 0, 0, 1101, 1107, 3, 120, 60, 0, 1102, 1103, 5, 129, 0, 0, 1103, 1104, 3, 116, 58, 0, 1104, 1105, 5, 148, 0, 0, 1105, 1107, 1, 0, 0, 0, 1106, 1101, 1, 0, 0, 0, 1106, 1102, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 5, 133, 0, 0, 1109, 1110, 5, 152, 0, 0, 1110, 1111, 3, 156, 78, 0, 1111, 1112, 5, 125, 0, 0, 1112, 1114, 1, 0, 0, 0, 1113, 1081, 1, 0, 0, 0, 1113, 1092, 1, 0, 0, 0, 1114, 121, 1, 0, 0, 0, 1115, 1116, 3, 156, 78, 0, 1116, 1117, 5, 123, 0, 0, 1117, 1118, 3, 162, 81, 0, 1118, 1127, 1, 0, 0, 0, 1119, 1120, 3, 156, 78, 0, 1120, 1121, 5, 123, 0, 0, 1121, 1122, 5, 129, 0, 0, 1122, 1123, 3, 116, 58, 0, 1123, 1124, 5, 148, 0, 0, 1124, 1127, 1, 0, 0, 0, 1125, 1127, 3, 156, 78, 0, 1126, 1115, 1, 0, 0, 0, 1126, 1119, 1, 0, 0, 0, 1126, 1125, 1, 0, 0, 0, 1127, 123, 1, 0, 0, 0, 1128, 1133, 3, 126, 63, 0, 1129, 1130, 5, 117, 0, 0, 1130, 1132, 3, 126, 63, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1135, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1137, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1136, 1138, 5, 117, 0, 0, 1137, 1136, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 125, 1, 0, 0, 0, 1139, 1140, 3, 156, 78, 0, 1140, 1141, 5, 6, 0, 0, 1141, 1142, 5, 131, 0, 0, 1142, 1143, 3, 44, 22, 0, 1143, 1144, 5, 150, 0, 0, 1144, 1150, 1, 0, 0, 0, 1145, 1146, 3, 116, 58, 0, 1146, 1147, 5, 6, 0, 0, 1147, 1148, 3, 156, 78, 0, 1148, 1150, 1, 0, 0, 0, 1149, 1139, 1, 0, 0, 0, 1149, 1145, 1, 0, 0, 0, 1150, 127, 1, 0, 0, 0, 1151, 1159, 3, 160, 80, 0, 1152, 1153, 3, 136, 68, 0, 1153, 1154, 5, 121, 0, 0, 1154, 1156, 1, 0, 0, 0, 1155, 1152, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1159, 3, 130, 65, 0, 1158, 1151, 1, 0, 0, 0, 1158, 1155, 1, 0, 0, 0, 1159, 129, 1, 0, 0, 0, 1160, 1165, 3, 156, 78, 0, 1161, 1162, 5, 121, 0, 0, 1162, 1164, 3, 156, 78, 0, 1163, 1161, 1, 0, 0, 0, 1164, 1167, 1, 0, 0, 0, 1165, 1163, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 131, 1, 0, 0, 0, 1167, 1165, 1, 0, 0, 0, 1168, 1169, 6, 66, -1, 0, 1169, 1178, 3, 136, 68, 0, 1170, 1178, 3, 134, 67, 0, 1171, 1172, 5, 131, 0, 0, 1172, 1173, 3, 44, 22, 0, 1173, 1174, 5, 150, 0, 0, 1174, 1178, 1, 0, 0, 0, 1175, 1178, 3, 120, 60, 0, 1176, 1178, 3, 160, 80, 0, 1177, 1168, 1, 0, 0, 0, 1177, 1170, 1, 0, 0, 0, 1177, 1171, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1176, 1, 0, 0, 0, 1178, 1187, 1, 0, 0, 0, 1179, 1183, 10, 3, 0, 0, 1180, 1184, 3, 154, 77, 0, 1181, 1182, 5, 6, 0, 0, 1182, 1184, 3, 156, 78, 0, 1183, 1180, 1, 0, 0, 0, 1183, 1181, 1, 0, 0, 0, 1184, 1186, 1, 0, 0, 0, 1185, 1179, 1, 0, 0, 0, 1186, 1189, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 133, 1, 0, 0, 0, 1189, 1187, 1, 0, 0, 0, 1190, 1191, 3, 156, 78, 0, 1191, 1193, 5, 131, 0, 0, 1192, 1194, 3, 138, 69, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 5, 150, 0, 0, 1196, 135, 1, 0, 0, 0, 1197, 1198, 3, 140, 70, 0, 1198, 1199, 5, 121, 0, 0, 1199, 1201, 1, 0, 0, 0, 1200, 1197, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 3, 156, 78, 0, 1203, 137, 1, 0, 0, 0, 1204, 1209, 3, 116, 58, 0, 1205, 1206, 5, 117, 0, 0, 1206, 1208, 3, 116, 58, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1211, 1, 0, 0, 0, 1209, 1207, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1213, 1, 0, 0, 0, 1211, 1209, 1, 0, 0, 0, 1212, 1214, 5, 117, 0, 0, 1213, 1212, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 139, 1, 0, 0, 0, 1215, 1216, 3, 156, 78, 0, 1216, 141, 1, 0, 0, 0, 1217, 1226, 5, 107, 0, 0, 1218, 1219, 5, 121, 0, 0, 1219, 1226, 7, 12, 0, 0, 1220, 1221, 5, 109, 0, 0, 1221, 1223, 5, 121, 0, 0, 1222, 1224, 7, 12, 0, 0, 1223, 1222, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1226, 1, 0, 0, 0, 1225, 1217, 1, 0, 0, 0, 1225, 1218, 1, 0, 0, 0, 1225, 1220, 1, 0, 0, 0, 1226, 143, 1, 0, 0, 0, 1227, 1229, 7, 13, 0, 0, 1228, 1227, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1236, 1, 0, 0, 0, 1230, 1237, 3, 142, 71, 0, 1231, 1237, 5, 108, 0, 0, 1232, 1237, 5, 109, 0, 0, 1233, 1237, 5, 110, 0, 0, 1234, 1237, 5, 44, 0, 0, 1235, 1237, 5, 58, 0, 0, 1236, 1230, 1, 0, 0, 0, 1236, 1231, 1, 0, 0, 0, 1236, 1232, 1, 0, 0, 0, 1236, 1233, 1, 0, 0, 0, 1236, 1234, 1, 0, 0, 0, 1236, 1235, 1, 0, 0, 0, 1237, 145, 1, 0, 0, 0, 1238, 1242, 3, 144, 72, 0, 1239, 1242, 5, 111, 0, 0, 1240, 1242, 5, 60, 0, 0, 1241, 1238, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1241, 1240, 1, 0, 0, 0, 1242, 147, 1, 0, 0, 0, 1243, 1244, 7, 14, 0, 0, 1244, 149, 1, 0, 0, 0, 1245, 1246, 7, 15, 0, 0, 1246, 151, 1, 0, 0, 0, 1247, 1248, 7, 16, 0, 0, 1248, 153, 1, 0, 0, 0, 1249, 1252, 5, 106, 0, 0, 1250, 1252, 3, 152, 76, 0, 1251, 1249, 1, 0, 0, 0, 1251, 1250, 1, 0, 0, 0, 1252, 155, 1, 0, 0, 0, 1253, 1257, 5, 106, 0, 0, 1254, 1257, 3, 148, 74, 0, 1255, 1257, 3, 150, 75, 0, 1256, 1253, 1, 0, 0, 0, 1256, 1254, 1, 0, 0, 0, 1256, 1255, 1, 0, 0, 0, 1257, 157, 1, 0, 0, 0, 1258, 1259, 3, 162, 81, 0, 1259, 1260, 5, 123, 0, 0, 1260, 1261, 3, 144, 72, 0, 1261, 159, 1, 0, 0, 0, 1262, 1263, 5, 129, 0, 0, 1263, 1264, 3, 116, 58, 0, 1264, 1265, 5, 148, 0, 0, 1265, 161, 1, 0, 0, 0, 1266, 1269, 5, 111, 0, 0, 1267, 1269, 3, 164, 82, 0, 1268, 1266, 1, 0, 0, 0, 1268, 1267, 1, 0, 0, 0, 1269, 163, 1, 0, 0, 0, 1270, 1274, 5, 143, 0, 0, 1271, 1273, 3, 166, 83, 0, 1272, 1271, 1, 0, 0, 0, 1273, 1276, 1, 0, 0, 0, 1274, 1272, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1277, 1, 0, 0, 0, 1276, 1274, 1, 0, 0, 0, 1277, 1278, 5, 145, 0, 0, 1278, 165, 1, 0, 0, 0, 1279, 1280, 5, 158, 0, 0, 1280, 1281, 3, 116, 58, 0, 1281, 1282, 5, 148, 0, 0, 1282, 1285, 1, 0, 0, 0, 1283, 1285, 5, 157, 0, 0, 1284, 1279, 1, 0, 0, 0, 1284, 1283, 1, 0, 0, 0, 1285, 167, 1, 0, 0, 0, 1286, 1290, 5, 144, 0, 0, 1287, 1289, 3, 170, 85, 0, 1288, 1287, 1, 0, 0, 0, 1289, 1292, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1293, 1, 0, 0, 0, 1292, 1290, 1, 0, 0, 0, 1293, 1294, 5, 0, 0, 1, 1294, 169, 1, 0, 0, 0, 1295, 1296, 5, 160, 0, 0, 1296, 1297, 3, 116, 58, 0, 1297, 1298, 5, 148, 0, 0, 1298, 1301, 1, 0, 0, 0, 1299, 1301, 5, 159, 0, 0, 1300, 1295, 1, 0, 0, 0, 1300, 1299, 1, 0, 0, 0, 1301, 171, 1, 0, 0, 0, 167, 175, 182, 191, 198, 202, 216, 220, 223, 227, 230, 237, 241, 250, 255, 264, 272, 279, 283, 289, 294, 302, 309, 315, 327, 335, 349, 353, 358, 368, 377, 380, 384, 387, 391, 394, 397, 400, 403, 407, 411, 414, 417, 420, 424, 427, 436, 442, 463, 480, 497, 503, 509, 520, 522, 533, 536, 542, 550, 556, 558, 562, 567, 570, 573, 577, 581, 584, 586, 589, 593, 597, 600, 602, 604, 609, 620, 626, 633, 638, 642, 646, 652, 654, 661, 669, 672, 675, 694, 708, 724, 728, 739, 743, 754, 758, 765, 769, 776, 780, 785, 794, 798, 822, 839, 845, 848, 851, 861, 867, 870, 873, 881, 884, 888, 891, 905, 922, 927, 932, 938, 945, 957, 961, 964, 973, 987, 1003, 1032, 1040, 1042, 1044, 1053, 1057, 1066, 1070, 1074, 1079, 1086, 1097, 1106, 1113, 1126, 1133, 1137, 1149, 1155, 1158, 1165, 1177, 1183, 1187, 1193, 1200, 1209, 1213, 1223, 1225, 1228, 1236, 1241, 1251, 1256, 1268, 1274, 1284, 1290, 1300] \ No newline at end of file diff --git a/hogql_parser/parser.cpp b/hogql_parser/parser.cpp index 409f2fdb46f7b..128f7006db93b 100644 --- a/hogql_parser/parser.cpp +++ b/hogql_parser/parser.cpp @@ -2570,11 +2570,7 @@ class HogQLParseTreeConverter : public HogQLParserBaseVisitor { } VISIT(Placeholder) { - auto nested_identifier_ctx = ctx->nestedIdentifier(); - vector nested = - nested_identifier_ctx ? any_cast>(visit(nested_identifier_ctx)) : vector(); - - RETURN_NEW_AST_NODE("Placeholder", "{s:N}", "chain", X_PyList_FromStrings(nested)); + RETURN_NEW_AST_NODE("Placeholder", "{s:N}", "expr", visitAsPyObject(ctx->columnExpr())); } VISIT_UNSUPPORTED(EnumValue) diff --git a/posthog/api/test/test_insight.py b/posthog/api/test/test_insight.py index 4b934e96fdd0e..3ec4f2d3046c6 100644 --- a/posthog/api/test/test_insight.py +++ b/posthog/api/test/test_insight.py @@ -2852,7 +2852,7 @@ def test_insight_trend_hogql_global_filters(self) -> None: ) self.assertEqual( response_placeholder.json(), - self.validation_error_response("Placeholders, such as {team_id}, are not supported in this context"), + self.validation_error_response("Unresolved placeholder: {team_id}"), ) @also_test_with_materialized_columns(event_properties=["int_value"], person_properties=["fish"]) diff --git a/posthog/hogql/ast.py b/posthog/hogql/ast.py index 5758fbe891187..ffbc570c8716a 100644 --- a/posthog/hogql/ast.py +++ b/posthog/hogql/ast.py @@ -698,11 +698,13 @@ class Field(Expr): @dataclass(kw_only=True) class Placeholder(Expr): - chain: list[str | int] + expr: Expr @property def field(self): - return ".".join(str(chain) for chain in self.chain) + if isinstance(self.expr, Field): + return ".".join(str(chain) for chain in self.expr.chain) + return None @dataclass(kw_only=True) diff --git a/posthog/hogql/bytecode.py b/posthog/hogql/bytecode.py index a734fa3588631..b472b12bf454e 100644 --- a/posthog/hogql/bytecode.py +++ b/posthog/hogql/bytecode.py @@ -228,6 +228,9 @@ def visit_field(self, node: ast.Field): ) return [*chain, Operation.GET_GLOBAL, len(node.chain)] + def visit_placeholder(self, node: ast.Placeholder): + raise QueryError(f"Unresolved placeholder: {{{node.field}}}") + def visit_tuple_access(self, node: ast.TupleAccess): return [ *self.visit(node.tuple), diff --git a/posthog/hogql/filters.py b/posthog/hogql/filters.py index 9011dc1de4b6f..b37d8e9334b02 100644 --- a/posthog/hogql/filters.py +++ b/posthog/hogql/filters.py @@ -52,7 +52,7 @@ def visit_compare_operation(self, node): return node def visit_placeholder(self, node): - if node.chain == ["filters"]: + if node.field == "filters": if self.filters is None: return ast.Constant(value=True) @@ -131,7 +131,7 @@ def visit_placeholder(self, node): if len(exprs) == 1: return exprs[0] return ast.And(exprs=exprs) - if node.chain == ["filters", "dateRange", "from"]: + if node.field == "filters.dateRange.from": compare_op_wrapper = self.compare_operations[-1] if self.filters is None: @@ -149,7 +149,7 @@ def visit_placeholder(self, node): else: compare_op_wrapper.skip = True return ast.Constant(value=True) - if node.chain == ["filters", "dateRange", "to"]: + if node.field == "filters.dateRange.to": compare_op_wrapper = self.compare_operations[-1] if self.filters is None: diff --git a/posthog/hogql/grammar/HogQLParser.g4 b/posthog/hogql/grammar/HogQLParser.g4 index 04b24890b1969..5ae97d9a58d0f 100644 --- a/posthog/hogql/grammar/HogQLParser.g4 +++ b/posthog/hogql/grammar/HogQLParser.g4 @@ -215,7 +215,7 @@ columnLambdaExpr: | identifier (COMMA identifier)* COMMA? | LPAREN RPAREN ) - ARROW (columnExpr | block) + ARROW (block | columnExpr) ; @@ -293,7 +293,7 @@ keywordForAlias alias: IDENTIFIER | keywordForAlias; // |interval| can't be an alias, otherwise 'INTERVAL 1 SOMETHING' becomes ambiguous. identifier: IDENTIFIER | interval | keyword; enumValue: string EQ_SINGLE numberLiteral; -placeholder: LBRACE nestedIdentifier RBRACE; +placeholder: LBRACE columnExpr RBRACE; string: STRING_LITERAL | templateString; templateString : QUOTE_SINGLE_TEMPLATE stringContents* QUOTE_SINGLE ; diff --git a/posthog/hogql/grammar/HogQLParser.interp b/posthog/hogql/grammar/HogQLParser.interp index 18287ddb823bd..3ed0215cdb034 100644 --- a/posthog/hogql/grammar/HogQLParser.interp +++ b/posthog/hogql/grammar/HogQLParser.interp @@ -414,4 +414,4 @@ stringContentsFull atn: -[4, 1, 160, 1303, 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, 1, 0, 5, 0, 174, 8, 0, 10, 0, 12, 0, 177, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 183, 8, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 192, 8, 3, 1, 4, 1, 4, 1, 4, 5, 4, 197, 8, 4, 10, 4, 12, 4, 200, 9, 4, 1, 4, 3, 4, 203, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 217, 8, 5, 1, 6, 1, 6, 3, 6, 221, 8, 6, 1, 6, 3, 6, 224, 8, 6, 1, 7, 1, 7, 3, 7, 228, 8, 7, 1, 7, 3, 7, 231, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 238, 8, 8, 1, 8, 1, 8, 3, 8, 242, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 249, 8, 9, 10, 9, 12, 9, 252, 9, 9, 1, 9, 1, 9, 3, 9, 256, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 265, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 273, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 280, 8, 12, 1, 12, 1, 12, 3, 12, 284, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 290, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 295, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 303, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 310, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 316, 8, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 328, 8, 16, 1, 17, 1, 17, 1, 18, 1, 18, 5, 18, 334, 8, 18, 10, 18, 12, 18, 337, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 5, 20, 348, 8, 20, 10, 20, 12, 20, 351, 9, 20, 1, 20, 3, 20, 354, 8, 20, 1, 21, 1, 21, 1, 21, 3, 21, 359, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 367, 8, 22, 10, 22, 12, 22, 370, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 378, 8, 23, 1, 24, 3, 24, 381, 8, 24, 1, 24, 1, 24, 3, 24, 385, 8, 24, 1, 24, 3, 24, 388, 8, 24, 1, 24, 1, 24, 3, 24, 392, 8, 24, 1, 24, 3, 24, 395, 8, 24, 1, 24, 3, 24, 398, 8, 24, 1, 24, 3, 24, 401, 8, 24, 1, 24, 3, 24, 404, 8, 24, 1, 24, 1, 24, 3, 24, 408, 8, 24, 1, 24, 1, 24, 3, 24, 412, 8, 24, 1, 24, 3, 24, 415, 8, 24, 1, 24, 3, 24, 418, 8, 24, 1, 24, 3, 24, 421, 8, 24, 1, 24, 1, 24, 3, 24, 425, 8, 24, 1, 24, 3, 24, 428, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 437, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 443, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 462, 8, 29, 10, 29, 12, 29, 465, 9, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 481, 8, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 498, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 504, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 510, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 521, 8, 36, 3, 36, 523, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 534, 8, 39, 1, 39, 3, 39, 537, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 543, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 551, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 557, 8, 39, 10, 39, 12, 39, 560, 9, 39, 1, 40, 3, 40, 563, 8, 40, 1, 40, 1, 40, 1, 40, 3, 40, 568, 8, 40, 1, 40, 3, 40, 571, 8, 40, 1, 40, 3, 40, 574, 8, 40, 1, 40, 1, 40, 3, 40, 578, 8, 40, 1, 40, 1, 40, 3, 40, 582, 8, 40, 1, 40, 3, 40, 585, 8, 40, 3, 40, 587, 8, 40, 1, 40, 3, 40, 590, 8, 40, 1, 40, 1, 40, 3, 40, 594, 8, 40, 1, 40, 1, 40, 3, 40, 598, 8, 40, 1, 40, 3, 40, 601, 8, 40, 3, 40, 603, 8, 40, 3, 40, 605, 8, 40, 1, 41, 1, 41, 1, 41, 3, 41, 610, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 621, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 627, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 632, 8, 44, 10, 44, 12, 44, 635, 9, 44, 1, 45, 1, 45, 3, 45, 639, 8, 45, 1, 45, 1, 45, 3, 45, 643, 8, 45, 1, 45, 1, 45, 3, 45, 647, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 653, 8, 46, 3, 46, 655, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 660, 8, 47, 10, 47, 12, 47, 663, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 3, 49, 670, 8, 49, 1, 49, 3, 49, 673, 8, 49, 1, 49, 3, 49, 676, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 695, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 709, 8, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 723, 8, 56, 10, 56, 12, 56, 726, 9, 56, 1, 56, 3, 56, 729, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 738, 8, 56, 10, 56, 12, 56, 741, 9, 56, 1, 56, 3, 56, 744, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 753, 8, 56, 10, 56, 12, 56, 756, 9, 56, 1, 56, 3, 56, 759, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 766, 8, 56, 1, 56, 1, 56, 3, 56, 770, 8, 56, 1, 57, 1, 57, 1, 57, 5, 57, 775, 8, 57, 10, 57, 12, 57, 778, 9, 57, 1, 57, 3, 57, 781, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 786, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 4, 58, 793, 8, 58, 11, 58, 12, 58, 794, 1, 58, 1, 58, 3, 58, 799, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 823, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 840, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 846, 8, 58, 1, 58, 3, 58, 849, 8, 58, 1, 58, 3, 58, 852, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 862, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 868, 8, 58, 1, 58, 3, 58, 871, 8, 58, 1, 58, 3, 58, 874, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 882, 8, 58, 1, 58, 3, 58, 885, 8, 58, 1, 58, 1, 58, 3, 58, 889, 8, 58, 1, 58, 3, 58, 892, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 906, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 923, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 928, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 933, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 939, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 946, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 958, 8, 58, 1, 58, 1, 58, 3, 58, 962, 8, 58, 1, 58, 3, 58, 965, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 974, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 988, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1004, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1033, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1041, 8, 58, 5, 58, 1043, 8, 58, 10, 58, 12, 58, 1046, 9, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1052, 8, 59, 10, 59, 12, 59, 1055, 9, 59, 1, 59, 3, 59, 1058, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1065, 8, 59, 10, 59, 12, 59, 1068, 9, 59, 1, 59, 3, 59, 1071, 8, 59, 1, 59, 1, 59, 3, 59, 1075, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1080, 8, 59, 1, 60, 1, 60, 1, 60, 5, 60, 1085, 8, 60, 10, 60, 12, 60, 1088, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1096, 8, 60, 10, 60, 12, 60, 1099, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1107, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1114, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1127, 8, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1132, 8, 62, 10, 62, 12, 62, 1135, 9, 62, 1, 62, 3, 62, 1138, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1150, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1156, 8, 64, 1, 64, 3, 64, 1159, 8, 64, 1, 65, 1, 65, 1, 65, 5, 65, 1164, 8, 65, 10, 65, 12, 65, 1167, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1178, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1184, 8, 66, 5, 66, 1186, 8, 66, 10, 66, 12, 66, 1189, 9, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1194, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1201, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 5, 69, 1208, 8, 69, 10, 69, 12, 69, 1211, 9, 69, 1, 69, 3, 69, 1214, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1224, 8, 71, 3, 71, 1226, 8, 71, 1, 72, 3, 72, 1229, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1237, 8, 72, 1, 73, 1, 73, 1, 73, 3, 73, 1242, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1252, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 1257, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 3, 81, 1269, 8, 81, 1, 82, 1, 82, 5, 82, 1273, 8, 82, 10, 82, 12, 82, 1276, 9, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1285, 8, 83, 1, 84, 1, 84, 5, 84, 1289, 8, 84, 10, 84, 12, 84, 1292, 9, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1301, 8, 85, 1, 85, 0, 3, 78, 116, 132, 86, 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, 0, 17, 2, 0, 31, 31, 36, 36, 2, 0, 18, 18, 75, 75, 2, 0, 45, 45, 52, 52, 3, 0, 1, 1, 4, 4, 8, 8, 4, 0, 1, 1, 3, 4, 8, 8, 81, 81, 2, 0, 52, 52, 74, 74, 2, 0, 1, 1, 4, 4, 2, 0, 7, 7, 22, 23, 2, 0, 30, 30, 50, 50, 2, 0, 72, 72, 77, 77, 3, 0, 10, 10, 51, 51, 91, 91, 2, 0, 42, 42, 54, 54, 1, 0, 108, 109, 2, 0, 119, 119, 140, 140, 7, 0, 21, 21, 39, 39, 56, 57, 71, 71, 79, 79, 98, 98, 104, 104, 17, 0, 1, 13, 15, 20, 22, 28, 30, 30, 32, 35, 37, 38, 40, 43, 45, 52, 54, 55, 59, 59, 61, 70, 72, 78, 80, 84, 86, 93, 95, 97, 99, 100, 102, 103, 4, 0, 20, 20, 30, 30, 40, 40, 49, 49, 1475, 0, 175, 1, 0, 0, 0, 2, 182, 1, 0, 0, 0, 4, 184, 1, 0, 0, 0, 6, 186, 1, 0, 0, 0, 8, 193, 1, 0, 0, 0, 10, 216, 1, 0, 0, 0, 12, 218, 1, 0, 0, 0, 14, 225, 1, 0, 0, 0, 16, 232, 1, 0, 0, 0, 18, 245, 1, 0, 0, 0, 20, 257, 1, 0, 0, 0, 22, 266, 1, 0, 0, 0, 24, 274, 1, 0, 0, 0, 26, 296, 1, 0, 0, 0, 28, 311, 1, 0, 0, 0, 30, 320, 1, 0, 0, 0, 32, 325, 1, 0, 0, 0, 34, 329, 1, 0, 0, 0, 36, 331, 1, 0, 0, 0, 38, 340, 1, 0, 0, 0, 40, 344, 1, 0, 0, 0, 42, 358, 1, 0, 0, 0, 44, 362, 1, 0, 0, 0, 46, 377, 1, 0, 0, 0, 48, 380, 1, 0, 0, 0, 50, 429, 1, 0, 0, 0, 52, 432, 1, 0, 0, 0, 54, 438, 1, 0, 0, 0, 56, 442, 1, 0, 0, 0, 58, 448, 1, 0, 0, 0, 60, 466, 1, 0, 0, 0, 62, 469, 1, 0, 0, 0, 64, 472, 1, 0, 0, 0, 66, 482, 1, 0, 0, 0, 68, 485, 1, 0, 0, 0, 70, 489, 1, 0, 0, 0, 72, 522, 1, 0, 0, 0, 74, 524, 1, 0, 0, 0, 76, 527, 1, 0, 0, 0, 78, 542, 1, 0, 0, 0, 80, 604, 1, 0, 0, 0, 82, 609, 1, 0, 0, 0, 84, 620, 1, 0, 0, 0, 86, 622, 1, 0, 0, 0, 88, 628, 1, 0, 0, 0, 90, 636, 1, 0, 0, 0, 92, 654, 1, 0, 0, 0, 94, 656, 1, 0, 0, 0, 96, 664, 1, 0, 0, 0, 98, 669, 1, 0, 0, 0, 100, 677, 1, 0, 0, 0, 102, 681, 1, 0, 0, 0, 104, 685, 1, 0, 0, 0, 106, 694, 1, 0, 0, 0, 108, 708, 1, 0, 0, 0, 110, 710, 1, 0, 0, 0, 112, 769, 1, 0, 0, 0, 114, 771, 1, 0, 0, 0, 116, 932, 1, 0, 0, 0, 118, 1074, 1, 0, 0, 0, 120, 1113, 1, 0, 0, 0, 122, 1126, 1, 0, 0, 0, 124, 1128, 1, 0, 0, 0, 126, 1149, 1, 0, 0, 0, 128, 1158, 1, 0, 0, 0, 130, 1160, 1, 0, 0, 0, 132, 1177, 1, 0, 0, 0, 134, 1190, 1, 0, 0, 0, 136, 1200, 1, 0, 0, 0, 138, 1204, 1, 0, 0, 0, 140, 1215, 1, 0, 0, 0, 142, 1225, 1, 0, 0, 0, 144, 1228, 1, 0, 0, 0, 146, 1241, 1, 0, 0, 0, 148, 1243, 1, 0, 0, 0, 150, 1245, 1, 0, 0, 0, 152, 1247, 1, 0, 0, 0, 154, 1251, 1, 0, 0, 0, 156, 1256, 1, 0, 0, 0, 158, 1258, 1, 0, 0, 0, 160, 1262, 1, 0, 0, 0, 162, 1268, 1, 0, 0, 0, 164, 1270, 1, 0, 0, 0, 166, 1284, 1, 0, 0, 0, 168, 1286, 1, 0, 0, 0, 170, 1300, 1, 0, 0, 0, 172, 174, 3, 2, 1, 0, 173, 172, 1, 0, 0, 0, 174, 177, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 175, 176, 1, 0, 0, 0, 176, 178, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 178, 179, 5, 0, 0, 1, 179, 1, 1, 0, 0, 0, 180, 183, 3, 6, 3, 0, 181, 183, 3, 10, 5, 0, 182, 180, 1, 0, 0, 0, 182, 181, 1, 0, 0, 0, 183, 3, 1, 0, 0, 0, 184, 185, 3, 116, 58, 0, 185, 5, 1, 0, 0, 0, 186, 187, 5, 53, 0, 0, 187, 191, 3, 156, 78, 0, 188, 189, 5, 116, 0, 0, 189, 190, 5, 123, 0, 0, 190, 192, 3, 4, 2, 0, 191, 188, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 7, 1, 0, 0, 0, 193, 198, 3, 156, 78, 0, 194, 195, 5, 117, 0, 0, 195, 197, 3, 156, 78, 0, 196, 194, 1, 0, 0, 0, 197, 200, 1, 0, 0, 0, 198, 196, 1, 0, 0, 0, 198, 199, 1, 0, 0, 0, 199, 202, 1, 0, 0, 0, 200, 198, 1, 0, 0, 0, 201, 203, 5, 117, 0, 0, 202, 201, 1, 0, 0, 0, 202, 203, 1, 0, 0, 0, 203, 9, 1, 0, 0, 0, 204, 217, 3, 12, 6, 0, 205, 217, 3, 14, 7, 0, 206, 217, 3, 18, 9, 0, 207, 217, 3, 20, 10, 0, 208, 217, 3, 22, 11, 0, 209, 217, 3, 26, 13, 0, 210, 217, 3, 24, 12, 0, 211, 217, 3, 28, 14, 0, 212, 217, 3, 30, 15, 0, 213, 217, 3, 36, 18, 0, 214, 217, 3, 32, 16, 0, 215, 217, 3, 34, 17, 0, 216, 204, 1, 0, 0, 0, 216, 205, 1, 0, 0, 0, 216, 206, 1, 0, 0, 0, 216, 207, 1, 0, 0, 0, 216, 208, 1, 0, 0, 0, 216, 209, 1, 0, 0, 0, 216, 210, 1, 0, 0, 0, 216, 211, 1, 0, 0, 0, 216, 212, 1, 0, 0, 0, 216, 213, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 216, 215, 1, 0, 0, 0, 217, 11, 1, 0, 0, 0, 218, 220, 5, 73, 0, 0, 219, 221, 3, 4, 2, 0, 220, 219, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 223, 1, 0, 0, 0, 222, 224, 5, 151, 0, 0, 223, 222, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 13, 1, 0, 0, 0, 225, 227, 5, 85, 0, 0, 226, 228, 3, 4, 2, 0, 227, 226, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 231, 5, 151, 0, 0, 230, 229, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 15, 1, 0, 0, 0, 232, 241, 5, 14, 0, 0, 233, 234, 5, 131, 0, 0, 234, 237, 3, 156, 78, 0, 235, 236, 5, 116, 0, 0, 236, 238, 3, 156, 78, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 5, 150, 0, 0, 240, 242, 1, 0, 0, 0, 241, 233, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 244, 3, 36, 18, 0, 244, 17, 1, 0, 0, 0, 245, 246, 5, 94, 0, 0, 246, 250, 3, 36, 18, 0, 247, 249, 3, 16, 8, 0, 248, 247, 1, 0, 0, 0, 249, 252, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 250, 251, 1, 0, 0, 0, 251, 255, 1, 0, 0, 0, 252, 250, 1, 0, 0, 0, 253, 254, 5, 29, 0, 0, 254, 256, 3, 36, 18, 0, 255, 253, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 19, 1, 0, 0, 0, 257, 258, 5, 41, 0, 0, 258, 259, 5, 131, 0, 0, 259, 260, 3, 4, 2, 0, 260, 261, 5, 150, 0, 0, 261, 264, 3, 10, 5, 0, 262, 263, 5, 25, 0, 0, 263, 265, 3, 10, 5, 0, 264, 262, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 21, 1, 0, 0, 0, 266, 267, 5, 101, 0, 0, 267, 268, 5, 131, 0, 0, 268, 269, 3, 4, 2, 0, 269, 270, 5, 150, 0, 0, 270, 272, 3, 10, 5, 0, 271, 273, 5, 151, 0, 0, 272, 271, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 23, 1, 0, 0, 0, 274, 275, 5, 33, 0, 0, 275, 279, 5, 131, 0, 0, 276, 280, 3, 6, 3, 0, 277, 280, 3, 30, 15, 0, 278, 280, 3, 4, 2, 0, 279, 276, 1, 0, 0, 0, 279, 277, 1, 0, 0, 0, 279, 278, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 281, 1, 0, 0, 0, 281, 283, 5, 151, 0, 0, 282, 284, 3, 4, 2, 0, 283, 282, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 289, 5, 151, 0, 0, 286, 290, 3, 6, 3, 0, 287, 290, 3, 30, 15, 0, 288, 290, 3, 4, 2, 0, 289, 286, 1, 0, 0, 0, 289, 287, 1, 0, 0, 0, 289, 288, 1, 0, 0, 0, 289, 290, 1, 0, 0, 0, 290, 291, 1, 0, 0, 0, 291, 292, 5, 150, 0, 0, 292, 294, 3, 10, 5, 0, 293, 295, 5, 151, 0, 0, 294, 293, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 25, 1, 0, 0, 0, 296, 297, 5, 33, 0, 0, 297, 298, 5, 131, 0, 0, 298, 299, 5, 53, 0, 0, 299, 302, 3, 156, 78, 0, 300, 301, 5, 117, 0, 0, 301, 303, 3, 156, 78, 0, 302, 300, 1, 0, 0, 0, 302, 303, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 305, 5, 43, 0, 0, 305, 306, 3, 4, 2, 0, 306, 307, 5, 150, 0, 0, 307, 309, 3, 10, 5, 0, 308, 310, 5, 151, 0, 0, 309, 308, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 27, 1, 0, 0, 0, 311, 312, 7, 0, 0, 0, 312, 313, 3, 156, 78, 0, 313, 315, 5, 131, 0, 0, 314, 316, 3, 8, 4, 0, 315, 314, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 5, 150, 0, 0, 318, 319, 3, 36, 18, 0, 319, 29, 1, 0, 0, 0, 320, 321, 3, 4, 2, 0, 321, 322, 5, 116, 0, 0, 322, 323, 5, 123, 0, 0, 323, 324, 3, 4, 2, 0, 324, 31, 1, 0, 0, 0, 325, 327, 3, 4, 2, 0, 326, 328, 5, 151, 0, 0, 327, 326, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 33, 1, 0, 0, 0, 329, 330, 5, 151, 0, 0, 330, 35, 1, 0, 0, 0, 331, 335, 5, 129, 0, 0, 332, 334, 3, 2, 1, 0, 333, 332, 1, 0, 0, 0, 334, 337, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 338, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 338, 339, 5, 148, 0, 0, 339, 37, 1, 0, 0, 0, 340, 341, 3, 4, 2, 0, 341, 342, 5, 116, 0, 0, 342, 343, 3, 4, 2, 0, 343, 39, 1, 0, 0, 0, 344, 349, 3, 38, 19, 0, 345, 346, 5, 117, 0, 0, 346, 348, 3, 38, 19, 0, 347, 345, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 353, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 354, 5, 117, 0, 0, 353, 352, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 41, 1, 0, 0, 0, 355, 359, 3, 44, 22, 0, 356, 359, 3, 48, 24, 0, 357, 359, 3, 120, 60, 0, 358, 355, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 358, 357, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 361, 5, 0, 0, 1, 361, 43, 1, 0, 0, 0, 362, 368, 3, 46, 23, 0, 363, 364, 5, 96, 0, 0, 364, 365, 5, 1, 0, 0, 365, 367, 3, 46, 23, 0, 366, 363, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 45, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 378, 3, 48, 24, 0, 372, 373, 5, 131, 0, 0, 373, 374, 3, 44, 22, 0, 374, 375, 5, 150, 0, 0, 375, 378, 1, 0, 0, 0, 376, 378, 3, 160, 80, 0, 377, 371, 1, 0, 0, 0, 377, 372, 1, 0, 0, 0, 377, 376, 1, 0, 0, 0, 378, 47, 1, 0, 0, 0, 379, 381, 3, 50, 25, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 384, 5, 80, 0, 0, 383, 385, 5, 24, 0, 0, 384, 383, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 387, 1, 0, 0, 0, 386, 388, 3, 52, 26, 0, 387, 386, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 391, 3, 114, 57, 0, 390, 392, 3, 54, 27, 0, 391, 390, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 1, 0, 0, 0, 393, 395, 3, 56, 28, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 397, 1, 0, 0, 0, 396, 398, 3, 60, 30, 0, 397, 396, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 400, 1, 0, 0, 0, 399, 401, 3, 62, 31, 0, 400, 399, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 403, 1, 0, 0, 0, 402, 404, 3, 64, 32, 0, 403, 402, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 406, 5, 103, 0, 0, 406, 408, 7, 1, 0, 0, 407, 405, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 410, 5, 103, 0, 0, 410, 412, 5, 90, 0, 0, 411, 409, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 1, 0, 0, 0, 413, 415, 3, 66, 33, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 417, 1, 0, 0, 0, 416, 418, 3, 58, 29, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 420, 1, 0, 0, 0, 419, 421, 3, 68, 34, 0, 420, 419, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 424, 1, 0, 0, 0, 422, 425, 3, 72, 36, 0, 423, 425, 3, 74, 37, 0, 424, 422, 1, 0, 0, 0, 424, 423, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 427, 1, 0, 0, 0, 426, 428, 3, 76, 38, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 49, 1, 0, 0, 0, 429, 430, 5, 103, 0, 0, 430, 431, 3, 124, 62, 0, 431, 51, 1, 0, 0, 0, 432, 433, 5, 89, 0, 0, 433, 436, 5, 109, 0, 0, 434, 435, 5, 103, 0, 0, 435, 437, 5, 86, 0, 0, 436, 434, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 53, 1, 0, 0, 0, 438, 439, 5, 34, 0, 0, 439, 440, 3, 78, 39, 0, 440, 55, 1, 0, 0, 0, 441, 443, 7, 2, 0, 0, 442, 441, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 5, 5, 0, 0, 445, 446, 5, 48, 0, 0, 446, 447, 3, 114, 57, 0, 447, 57, 1, 0, 0, 0, 448, 449, 5, 102, 0, 0, 449, 450, 3, 156, 78, 0, 450, 451, 5, 6, 0, 0, 451, 452, 5, 131, 0, 0, 452, 453, 3, 98, 49, 0, 453, 463, 5, 150, 0, 0, 454, 455, 5, 117, 0, 0, 455, 456, 3, 156, 78, 0, 456, 457, 5, 6, 0, 0, 457, 458, 5, 131, 0, 0, 458, 459, 3, 98, 49, 0, 459, 460, 5, 150, 0, 0, 460, 462, 1, 0, 0, 0, 461, 454, 1, 0, 0, 0, 462, 465, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 59, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 466, 467, 5, 70, 0, 0, 467, 468, 3, 116, 58, 0, 468, 61, 1, 0, 0, 0, 469, 470, 5, 100, 0, 0, 470, 471, 3, 116, 58, 0, 471, 63, 1, 0, 0, 0, 472, 473, 5, 37, 0, 0, 473, 480, 5, 11, 0, 0, 474, 475, 7, 1, 0, 0, 475, 476, 5, 131, 0, 0, 476, 477, 3, 114, 57, 0, 477, 478, 5, 150, 0, 0, 478, 481, 1, 0, 0, 0, 479, 481, 3, 114, 57, 0, 480, 474, 1, 0, 0, 0, 480, 479, 1, 0, 0, 0, 481, 65, 1, 0, 0, 0, 482, 483, 5, 38, 0, 0, 483, 484, 3, 116, 58, 0, 484, 67, 1, 0, 0, 0, 485, 486, 5, 65, 0, 0, 486, 487, 5, 11, 0, 0, 487, 488, 3, 88, 44, 0, 488, 69, 1, 0, 0, 0, 489, 490, 5, 65, 0, 0, 490, 491, 5, 11, 0, 0, 491, 492, 3, 114, 57, 0, 492, 71, 1, 0, 0, 0, 493, 494, 5, 55, 0, 0, 494, 497, 3, 116, 58, 0, 495, 496, 5, 117, 0, 0, 496, 498, 3, 116, 58, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 503, 1, 0, 0, 0, 499, 500, 5, 103, 0, 0, 500, 504, 5, 86, 0, 0, 501, 502, 5, 11, 0, 0, 502, 504, 3, 114, 57, 0, 503, 499, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 523, 1, 0, 0, 0, 505, 506, 5, 55, 0, 0, 506, 509, 3, 116, 58, 0, 507, 508, 5, 103, 0, 0, 508, 510, 5, 86, 0, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 5, 62, 0, 0, 512, 513, 3, 116, 58, 0, 513, 523, 1, 0, 0, 0, 514, 515, 5, 55, 0, 0, 515, 516, 3, 116, 58, 0, 516, 517, 5, 62, 0, 0, 517, 520, 3, 116, 58, 0, 518, 519, 5, 11, 0, 0, 519, 521, 3, 114, 57, 0, 520, 518, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 523, 1, 0, 0, 0, 522, 493, 1, 0, 0, 0, 522, 505, 1, 0, 0, 0, 522, 514, 1, 0, 0, 0, 523, 73, 1, 0, 0, 0, 524, 525, 5, 62, 0, 0, 525, 526, 3, 116, 58, 0, 526, 75, 1, 0, 0, 0, 527, 528, 5, 82, 0, 0, 528, 529, 3, 94, 47, 0, 529, 77, 1, 0, 0, 0, 530, 531, 6, 39, -1, 0, 531, 533, 3, 132, 66, 0, 532, 534, 5, 28, 0, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 536, 1, 0, 0, 0, 535, 537, 3, 86, 43, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 543, 1, 0, 0, 0, 538, 539, 5, 131, 0, 0, 539, 540, 3, 78, 39, 0, 540, 541, 5, 150, 0, 0, 541, 543, 1, 0, 0, 0, 542, 530, 1, 0, 0, 0, 542, 538, 1, 0, 0, 0, 543, 558, 1, 0, 0, 0, 544, 545, 10, 3, 0, 0, 545, 546, 3, 82, 41, 0, 546, 547, 3, 78, 39, 4, 547, 557, 1, 0, 0, 0, 548, 550, 10, 4, 0, 0, 549, 551, 3, 80, 40, 0, 550, 549, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 5, 48, 0, 0, 553, 554, 3, 78, 39, 0, 554, 555, 3, 84, 42, 0, 555, 557, 1, 0, 0, 0, 556, 544, 1, 0, 0, 0, 556, 548, 1, 0, 0, 0, 557, 560, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 79, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 561, 563, 7, 3, 0, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 571, 5, 45, 0, 0, 565, 567, 5, 45, 0, 0, 566, 568, 7, 3, 0, 0, 567, 566, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 571, 1, 0, 0, 0, 569, 571, 7, 3, 0, 0, 570, 562, 1, 0, 0, 0, 570, 565, 1, 0, 0, 0, 570, 569, 1, 0, 0, 0, 571, 605, 1, 0, 0, 0, 572, 574, 7, 4, 0, 0, 573, 572, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 577, 7, 5, 0, 0, 576, 578, 5, 66, 0, 0, 577, 576, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 587, 1, 0, 0, 0, 579, 581, 7, 5, 0, 0, 580, 582, 5, 66, 0, 0, 581, 580, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 584, 1, 0, 0, 0, 583, 585, 7, 4, 0, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 587, 1, 0, 0, 0, 586, 573, 1, 0, 0, 0, 586, 579, 1, 0, 0, 0, 587, 605, 1, 0, 0, 0, 588, 590, 7, 6, 0, 0, 589, 588, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 593, 5, 35, 0, 0, 592, 594, 5, 66, 0, 0, 593, 592, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 603, 1, 0, 0, 0, 595, 597, 5, 35, 0, 0, 596, 598, 5, 66, 0, 0, 597, 596, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 600, 1, 0, 0, 0, 599, 601, 7, 6, 0, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 603, 1, 0, 0, 0, 602, 589, 1, 0, 0, 0, 602, 595, 1, 0, 0, 0, 603, 605, 1, 0, 0, 0, 604, 570, 1, 0, 0, 0, 604, 586, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 605, 81, 1, 0, 0, 0, 606, 607, 5, 17, 0, 0, 607, 610, 5, 48, 0, 0, 608, 610, 5, 117, 0, 0, 609, 606, 1, 0, 0, 0, 609, 608, 1, 0, 0, 0, 610, 83, 1, 0, 0, 0, 611, 612, 5, 63, 0, 0, 612, 621, 3, 114, 57, 0, 613, 614, 5, 97, 0, 0, 614, 615, 5, 131, 0, 0, 615, 616, 3, 114, 57, 0, 616, 617, 5, 150, 0, 0, 617, 621, 1, 0, 0, 0, 618, 619, 5, 97, 0, 0, 619, 621, 3, 114, 57, 0, 620, 611, 1, 0, 0, 0, 620, 613, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 621, 85, 1, 0, 0, 0, 622, 623, 5, 78, 0, 0, 623, 626, 3, 92, 46, 0, 624, 625, 5, 62, 0, 0, 625, 627, 3, 92, 46, 0, 626, 624, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 87, 1, 0, 0, 0, 628, 633, 3, 90, 45, 0, 629, 630, 5, 117, 0, 0, 630, 632, 3, 90, 45, 0, 631, 629, 1, 0, 0, 0, 632, 635, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 89, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 638, 3, 116, 58, 0, 637, 639, 7, 7, 0, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 642, 1, 0, 0, 0, 640, 641, 5, 61, 0, 0, 641, 643, 7, 8, 0, 0, 642, 640, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 645, 5, 16, 0, 0, 645, 647, 5, 111, 0, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 91, 1, 0, 0, 0, 648, 655, 3, 160, 80, 0, 649, 652, 3, 144, 72, 0, 650, 651, 5, 152, 0, 0, 651, 653, 3, 144, 72, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 655, 1, 0, 0, 0, 654, 648, 1, 0, 0, 0, 654, 649, 1, 0, 0, 0, 655, 93, 1, 0, 0, 0, 656, 661, 3, 96, 48, 0, 657, 658, 5, 117, 0, 0, 658, 660, 3, 96, 48, 0, 659, 657, 1, 0, 0, 0, 660, 663, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 95, 1, 0, 0, 0, 663, 661, 1, 0, 0, 0, 664, 665, 3, 156, 78, 0, 665, 666, 5, 123, 0, 0, 666, 667, 3, 146, 73, 0, 667, 97, 1, 0, 0, 0, 668, 670, 3, 100, 50, 0, 669, 668, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 1, 0, 0, 0, 671, 673, 3, 102, 51, 0, 672, 671, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 675, 1, 0, 0, 0, 674, 676, 3, 104, 52, 0, 675, 674, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 99, 1, 0, 0, 0, 677, 678, 5, 68, 0, 0, 678, 679, 5, 11, 0, 0, 679, 680, 3, 114, 57, 0, 680, 101, 1, 0, 0, 0, 681, 682, 5, 65, 0, 0, 682, 683, 5, 11, 0, 0, 683, 684, 3, 88, 44, 0, 684, 103, 1, 0, 0, 0, 685, 686, 7, 9, 0, 0, 686, 687, 3, 106, 53, 0, 687, 105, 1, 0, 0, 0, 688, 695, 3, 108, 54, 0, 689, 690, 5, 9, 0, 0, 690, 691, 3, 108, 54, 0, 691, 692, 5, 2, 0, 0, 692, 693, 3, 108, 54, 0, 693, 695, 1, 0, 0, 0, 694, 688, 1, 0, 0, 0, 694, 689, 1, 0, 0, 0, 695, 107, 1, 0, 0, 0, 696, 697, 5, 19, 0, 0, 697, 709, 5, 76, 0, 0, 698, 699, 5, 95, 0, 0, 699, 709, 5, 69, 0, 0, 700, 701, 5, 95, 0, 0, 701, 709, 5, 32, 0, 0, 702, 703, 3, 144, 72, 0, 703, 704, 5, 69, 0, 0, 704, 709, 1, 0, 0, 0, 705, 706, 3, 144, 72, 0, 706, 707, 5, 32, 0, 0, 707, 709, 1, 0, 0, 0, 708, 696, 1, 0, 0, 0, 708, 698, 1, 0, 0, 0, 708, 700, 1, 0, 0, 0, 708, 702, 1, 0, 0, 0, 708, 705, 1, 0, 0, 0, 709, 109, 1, 0, 0, 0, 710, 711, 3, 116, 58, 0, 711, 712, 5, 0, 0, 1, 712, 111, 1, 0, 0, 0, 713, 770, 3, 156, 78, 0, 714, 715, 3, 156, 78, 0, 715, 716, 5, 131, 0, 0, 716, 717, 3, 156, 78, 0, 717, 724, 3, 112, 56, 0, 718, 719, 5, 117, 0, 0, 719, 720, 3, 156, 78, 0, 720, 721, 3, 112, 56, 0, 721, 723, 1, 0, 0, 0, 722, 718, 1, 0, 0, 0, 723, 726, 1, 0, 0, 0, 724, 722, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 728, 1, 0, 0, 0, 726, 724, 1, 0, 0, 0, 727, 729, 5, 117, 0, 0, 728, 727, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 5, 150, 0, 0, 731, 770, 1, 0, 0, 0, 732, 733, 3, 156, 78, 0, 733, 734, 5, 131, 0, 0, 734, 739, 3, 158, 79, 0, 735, 736, 5, 117, 0, 0, 736, 738, 3, 158, 79, 0, 737, 735, 1, 0, 0, 0, 738, 741, 1, 0, 0, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 744, 5, 117, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 150, 0, 0, 746, 770, 1, 0, 0, 0, 747, 748, 3, 156, 78, 0, 748, 749, 5, 131, 0, 0, 749, 754, 3, 112, 56, 0, 750, 751, 5, 117, 0, 0, 751, 753, 3, 112, 56, 0, 752, 750, 1, 0, 0, 0, 753, 756, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 758, 1, 0, 0, 0, 756, 754, 1, 0, 0, 0, 757, 759, 5, 117, 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 761, 5, 150, 0, 0, 761, 770, 1, 0, 0, 0, 762, 763, 3, 156, 78, 0, 763, 765, 5, 131, 0, 0, 764, 766, 3, 114, 57, 0, 765, 764, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 5, 150, 0, 0, 768, 770, 1, 0, 0, 0, 769, 713, 1, 0, 0, 0, 769, 714, 1, 0, 0, 0, 769, 732, 1, 0, 0, 0, 769, 747, 1, 0, 0, 0, 769, 762, 1, 0, 0, 0, 770, 113, 1, 0, 0, 0, 771, 776, 3, 116, 58, 0, 772, 773, 5, 117, 0, 0, 773, 775, 3, 116, 58, 0, 774, 772, 1, 0, 0, 0, 775, 778, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 780, 1, 0, 0, 0, 778, 776, 1, 0, 0, 0, 779, 781, 5, 117, 0, 0, 780, 779, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 115, 1, 0, 0, 0, 782, 783, 6, 58, -1, 0, 783, 785, 5, 12, 0, 0, 784, 786, 3, 116, 58, 0, 785, 784, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 792, 1, 0, 0, 0, 787, 788, 5, 99, 0, 0, 788, 789, 3, 116, 58, 0, 789, 790, 5, 84, 0, 0, 790, 791, 3, 116, 58, 0, 791, 793, 1, 0, 0, 0, 792, 787, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 798, 1, 0, 0, 0, 796, 797, 5, 25, 0, 0, 797, 799, 3, 116, 58, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 5, 26, 0, 0, 801, 933, 1, 0, 0, 0, 802, 803, 5, 13, 0, 0, 803, 804, 5, 131, 0, 0, 804, 805, 3, 116, 58, 0, 805, 806, 5, 6, 0, 0, 806, 807, 3, 112, 56, 0, 807, 808, 5, 150, 0, 0, 808, 933, 1, 0, 0, 0, 809, 810, 5, 20, 0, 0, 810, 933, 5, 111, 0, 0, 811, 812, 5, 46, 0, 0, 812, 813, 3, 116, 58, 0, 813, 814, 3, 148, 74, 0, 814, 933, 1, 0, 0, 0, 815, 816, 5, 83, 0, 0, 816, 817, 5, 131, 0, 0, 817, 818, 3, 116, 58, 0, 818, 819, 5, 34, 0, 0, 819, 822, 3, 116, 58, 0, 820, 821, 5, 33, 0, 0, 821, 823, 3, 116, 58, 0, 822, 820, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 825, 5, 150, 0, 0, 825, 933, 1, 0, 0, 0, 826, 827, 5, 87, 0, 0, 827, 933, 5, 111, 0, 0, 828, 829, 5, 92, 0, 0, 829, 830, 5, 131, 0, 0, 830, 831, 7, 10, 0, 0, 831, 832, 3, 162, 81, 0, 832, 833, 5, 34, 0, 0, 833, 834, 3, 116, 58, 0, 834, 835, 5, 150, 0, 0, 835, 933, 1, 0, 0, 0, 836, 837, 3, 156, 78, 0, 837, 839, 5, 131, 0, 0, 838, 840, 3, 114, 57, 0, 839, 838, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 5, 150, 0, 0, 842, 851, 1, 0, 0, 0, 843, 845, 5, 131, 0, 0, 844, 846, 5, 24, 0, 0, 845, 844, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 848, 1, 0, 0, 0, 847, 849, 3, 114, 57, 0, 848, 847, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 852, 5, 150, 0, 0, 851, 843, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 5, 67, 0, 0, 854, 855, 5, 131, 0, 0, 855, 856, 3, 98, 49, 0, 856, 857, 5, 150, 0, 0, 857, 933, 1, 0, 0, 0, 858, 859, 3, 156, 78, 0, 859, 861, 5, 131, 0, 0, 860, 862, 3, 114, 57, 0, 861, 860, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 5, 150, 0, 0, 864, 873, 1, 0, 0, 0, 865, 867, 5, 131, 0, 0, 866, 868, 5, 24, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 871, 3, 114, 57, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 5, 150, 0, 0, 873, 865, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 67, 0, 0, 876, 877, 3, 156, 78, 0, 877, 933, 1, 0, 0, 0, 878, 884, 3, 156, 78, 0, 879, 881, 5, 131, 0, 0, 880, 882, 3, 114, 57, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 885, 5, 150, 0, 0, 884, 879, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 888, 5, 131, 0, 0, 887, 889, 5, 24, 0, 0, 888, 887, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 891, 1, 0, 0, 0, 890, 892, 3, 114, 57, 0, 891, 890, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 5, 150, 0, 0, 894, 933, 1, 0, 0, 0, 895, 933, 3, 120, 60, 0, 896, 933, 3, 164, 82, 0, 897, 933, 3, 146, 73, 0, 898, 899, 5, 119, 0, 0, 899, 933, 3, 116, 58, 20, 900, 901, 5, 59, 0, 0, 901, 933, 3, 116, 58, 14, 902, 903, 3, 136, 68, 0, 903, 904, 5, 121, 0, 0, 904, 906, 1, 0, 0, 0, 905, 902, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 933, 5, 113, 0, 0, 908, 909, 5, 131, 0, 0, 909, 910, 3, 44, 22, 0, 910, 911, 5, 150, 0, 0, 911, 933, 1, 0, 0, 0, 912, 913, 5, 131, 0, 0, 913, 914, 3, 116, 58, 0, 914, 915, 5, 150, 0, 0, 915, 933, 1, 0, 0, 0, 916, 917, 5, 131, 0, 0, 917, 918, 3, 114, 57, 0, 918, 919, 5, 150, 0, 0, 919, 933, 1, 0, 0, 0, 920, 922, 5, 130, 0, 0, 921, 923, 3, 114, 57, 0, 922, 921, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 933, 5, 149, 0, 0, 925, 927, 5, 129, 0, 0, 926, 928, 3, 40, 20, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 933, 5, 148, 0, 0, 930, 933, 3, 118, 59, 0, 931, 933, 3, 128, 64, 0, 932, 782, 1, 0, 0, 0, 932, 802, 1, 0, 0, 0, 932, 809, 1, 0, 0, 0, 932, 811, 1, 0, 0, 0, 932, 815, 1, 0, 0, 0, 932, 826, 1, 0, 0, 0, 932, 828, 1, 0, 0, 0, 932, 836, 1, 0, 0, 0, 932, 858, 1, 0, 0, 0, 932, 878, 1, 0, 0, 0, 932, 895, 1, 0, 0, 0, 932, 896, 1, 0, 0, 0, 932, 897, 1, 0, 0, 0, 932, 898, 1, 0, 0, 0, 932, 900, 1, 0, 0, 0, 932, 905, 1, 0, 0, 0, 932, 908, 1, 0, 0, 0, 932, 912, 1, 0, 0, 0, 932, 916, 1, 0, 0, 0, 932, 920, 1, 0, 0, 0, 932, 925, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 932, 931, 1, 0, 0, 0, 933, 1044, 1, 0, 0, 0, 934, 938, 10, 19, 0, 0, 935, 939, 5, 113, 0, 0, 936, 939, 5, 152, 0, 0, 937, 939, 5, 139, 0, 0, 938, 935, 1, 0, 0, 0, 938, 936, 1, 0, 0, 0, 938, 937, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 1043, 3, 116, 58, 20, 941, 945, 10, 18, 0, 0, 942, 946, 5, 140, 0, 0, 943, 946, 5, 119, 0, 0, 944, 946, 5, 118, 0, 0, 945, 942, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 945, 944, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 1043, 3, 116, 58, 19, 948, 973, 10, 17, 0, 0, 949, 974, 5, 122, 0, 0, 950, 974, 5, 123, 0, 0, 951, 974, 5, 134, 0, 0, 952, 974, 5, 132, 0, 0, 953, 974, 5, 133, 0, 0, 954, 974, 5, 124, 0, 0, 955, 974, 5, 125, 0, 0, 956, 958, 5, 59, 0, 0, 957, 956, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 961, 5, 43, 0, 0, 960, 962, 5, 15, 0, 0, 961, 960, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 974, 1, 0, 0, 0, 963, 965, 5, 59, 0, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 974, 7, 11, 0, 0, 967, 974, 5, 146, 0, 0, 968, 974, 5, 147, 0, 0, 969, 974, 5, 136, 0, 0, 970, 974, 5, 127, 0, 0, 971, 974, 5, 128, 0, 0, 972, 974, 5, 135, 0, 0, 973, 949, 1, 0, 0, 0, 973, 950, 1, 0, 0, 0, 973, 951, 1, 0, 0, 0, 973, 952, 1, 0, 0, 0, 973, 953, 1, 0, 0, 0, 973, 954, 1, 0, 0, 0, 973, 955, 1, 0, 0, 0, 973, 957, 1, 0, 0, 0, 973, 964, 1, 0, 0, 0, 973, 967, 1, 0, 0, 0, 973, 968, 1, 0, 0, 0, 973, 969, 1, 0, 0, 0, 973, 970, 1, 0, 0, 0, 973, 971, 1, 0, 0, 0, 973, 972, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 1043, 3, 116, 58, 18, 976, 977, 10, 15, 0, 0, 977, 978, 5, 138, 0, 0, 978, 1043, 3, 116, 58, 16, 979, 980, 10, 13, 0, 0, 980, 981, 5, 2, 0, 0, 981, 1043, 3, 116, 58, 14, 982, 983, 10, 12, 0, 0, 983, 984, 5, 64, 0, 0, 984, 1043, 3, 116, 58, 13, 985, 987, 10, 11, 0, 0, 986, 988, 5, 59, 0, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 5, 9, 0, 0, 990, 991, 3, 116, 58, 0, 991, 992, 5, 2, 0, 0, 992, 993, 3, 116, 58, 12, 993, 1043, 1, 0, 0, 0, 994, 995, 10, 10, 0, 0, 995, 996, 5, 141, 0, 0, 996, 997, 3, 116, 58, 0, 997, 998, 5, 116, 0, 0, 998, 999, 3, 116, 58, 10, 999, 1043, 1, 0, 0, 0, 1000, 1001, 10, 30, 0, 0, 1001, 1003, 5, 131, 0, 0, 1002, 1004, 3, 114, 57, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1043, 5, 150, 0, 0, 1006, 1007, 10, 26, 0, 0, 1007, 1008, 5, 130, 0, 0, 1008, 1009, 3, 116, 58, 0, 1009, 1010, 5, 149, 0, 0, 1010, 1043, 1, 0, 0, 0, 1011, 1012, 10, 25, 0, 0, 1012, 1013, 5, 121, 0, 0, 1013, 1043, 5, 109, 0, 0, 1014, 1015, 10, 24, 0, 0, 1015, 1016, 5, 121, 0, 0, 1016, 1043, 3, 156, 78, 0, 1017, 1018, 10, 23, 0, 0, 1018, 1019, 5, 137, 0, 0, 1019, 1020, 5, 130, 0, 0, 1020, 1021, 3, 116, 58, 0, 1021, 1022, 5, 149, 0, 0, 1022, 1043, 1, 0, 0, 0, 1023, 1024, 10, 22, 0, 0, 1024, 1025, 5, 137, 0, 0, 1025, 1043, 5, 109, 0, 0, 1026, 1027, 10, 21, 0, 0, 1027, 1028, 5, 137, 0, 0, 1028, 1043, 3, 156, 78, 0, 1029, 1030, 10, 16, 0, 0, 1030, 1032, 5, 47, 0, 0, 1031, 1033, 5, 59, 0, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1043, 5, 60, 0, 0, 1035, 1040, 10, 9, 0, 0, 1036, 1037, 5, 6, 0, 0, 1037, 1041, 3, 156, 78, 0, 1038, 1039, 5, 6, 0, 0, 1039, 1041, 5, 111, 0, 0, 1040, 1036, 1, 0, 0, 0, 1040, 1038, 1, 0, 0, 0, 1041, 1043, 1, 0, 0, 0, 1042, 934, 1, 0, 0, 0, 1042, 941, 1, 0, 0, 0, 1042, 948, 1, 0, 0, 0, 1042, 976, 1, 0, 0, 0, 1042, 979, 1, 0, 0, 0, 1042, 982, 1, 0, 0, 0, 1042, 985, 1, 0, 0, 0, 1042, 994, 1, 0, 0, 0, 1042, 1000, 1, 0, 0, 0, 1042, 1006, 1, 0, 0, 0, 1042, 1011, 1, 0, 0, 0, 1042, 1014, 1, 0, 0, 0, 1042, 1017, 1, 0, 0, 0, 1042, 1023, 1, 0, 0, 0, 1042, 1026, 1, 0, 0, 0, 1042, 1029, 1, 0, 0, 0, 1042, 1035, 1, 0, 0, 0, 1043, 1046, 1, 0, 0, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 117, 1, 0, 0, 0, 1046, 1044, 1, 0, 0, 0, 1047, 1048, 5, 131, 0, 0, 1048, 1053, 3, 156, 78, 0, 1049, 1050, 5, 117, 0, 0, 1050, 1052, 3, 156, 78, 0, 1051, 1049, 1, 0, 0, 0, 1052, 1055, 1, 0, 0, 0, 1053, 1051, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1057, 1, 0, 0, 0, 1055, 1053, 1, 0, 0, 0, 1056, 1058, 5, 117, 0, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1060, 5, 150, 0, 0, 1060, 1075, 1, 0, 0, 0, 1061, 1066, 3, 156, 78, 0, 1062, 1063, 5, 117, 0, 0, 1063, 1065, 3, 156, 78, 0, 1064, 1062, 1, 0, 0, 0, 1065, 1068, 1, 0, 0, 0, 1066, 1064, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1070, 1, 0, 0, 0, 1068, 1066, 1, 0, 0, 0, 1069, 1071, 5, 117, 0, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1075, 1, 0, 0, 0, 1072, 1073, 5, 131, 0, 0, 1073, 1075, 5, 150, 0, 0, 1074, 1047, 1, 0, 0, 0, 1074, 1061, 1, 0, 0, 0, 1074, 1072, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1079, 5, 112, 0, 0, 1077, 1080, 3, 116, 58, 0, 1078, 1080, 3, 36, 18, 0, 1079, 1077, 1, 0, 0, 0, 1079, 1078, 1, 0, 0, 0, 1080, 119, 1, 0, 0, 0, 1081, 1082, 5, 133, 0, 0, 1082, 1086, 3, 156, 78, 0, 1083, 1085, 3, 122, 61, 0, 1084, 1083, 1, 0, 0, 0, 1085, 1088, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1089, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1089, 1090, 5, 152, 0, 0, 1090, 1091, 5, 125, 0, 0, 1091, 1114, 1, 0, 0, 0, 1092, 1093, 5, 133, 0, 0, 1093, 1097, 3, 156, 78, 0, 1094, 1096, 3, 122, 61, 0, 1095, 1094, 1, 0, 0, 0, 1096, 1099, 1, 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 1, 0, 0, 0, 1099, 1097, 1, 0, 0, 0, 1100, 1106, 5, 125, 0, 0, 1101, 1107, 3, 120, 60, 0, 1102, 1103, 5, 129, 0, 0, 1103, 1104, 3, 116, 58, 0, 1104, 1105, 5, 148, 0, 0, 1105, 1107, 1, 0, 0, 0, 1106, 1101, 1, 0, 0, 0, 1106, 1102, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 5, 133, 0, 0, 1109, 1110, 5, 152, 0, 0, 1110, 1111, 3, 156, 78, 0, 1111, 1112, 5, 125, 0, 0, 1112, 1114, 1, 0, 0, 0, 1113, 1081, 1, 0, 0, 0, 1113, 1092, 1, 0, 0, 0, 1114, 121, 1, 0, 0, 0, 1115, 1116, 3, 156, 78, 0, 1116, 1117, 5, 123, 0, 0, 1117, 1118, 3, 162, 81, 0, 1118, 1127, 1, 0, 0, 0, 1119, 1120, 3, 156, 78, 0, 1120, 1121, 5, 123, 0, 0, 1121, 1122, 5, 129, 0, 0, 1122, 1123, 3, 116, 58, 0, 1123, 1124, 5, 148, 0, 0, 1124, 1127, 1, 0, 0, 0, 1125, 1127, 3, 156, 78, 0, 1126, 1115, 1, 0, 0, 0, 1126, 1119, 1, 0, 0, 0, 1126, 1125, 1, 0, 0, 0, 1127, 123, 1, 0, 0, 0, 1128, 1133, 3, 126, 63, 0, 1129, 1130, 5, 117, 0, 0, 1130, 1132, 3, 126, 63, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1135, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1137, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1136, 1138, 5, 117, 0, 0, 1137, 1136, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 125, 1, 0, 0, 0, 1139, 1140, 3, 156, 78, 0, 1140, 1141, 5, 6, 0, 0, 1141, 1142, 5, 131, 0, 0, 1142, 1143, 3, 44, 22, 0, 1143, 1144, 5, 150, 0, 0, 1144, 1150, 1, 0, 0, 0, 1145, 1146, 3, 116, 58, 0, 1146, 1147, 5, 6, 0, 0, 1147, 1148, 3, 156, 78, 0, 1148, 1150, 1, 0, 0, 0, 1149, 1139, 1, 0, 0, 0, 1149, 1145, 1, 0, 0, 0, 1150, 127, 1, 0, 0, 0, 1151, 1159, 3, 160, 80, 0, 1152, 1153, 3, 136, 68, 0, 1153, 1154, 5, 121, 0, 0, 1154, 1156, 1, 0, 0, 0, 1155, 1152, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1159, 3, 130, 65, 0, 1158, 1151, 1, 0, 0, 0, 1158, 1155, 1, 0, 0, 0, 1159, 129, 1, 0, 0, 0, 1160, 1165, 3, 156, 78, 0, 1161, 1162, 5, 121, 0, 0, 1162, 1164, 3, 156, 78, 0, 1163, 1161, 1, 0, 0, 0, 1164, 1167, 1, 0, 0, 0, 1165, 1163, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 131, 1, 0, 0, 0, 1167, 1165, 1, 0, 0, 0, 1168, 1169, 6, 66, -1, 0, 1169, 1178, 3, 136, 68, 0, 1170, 1178, 3, 134, 67, 0, 1171, 1172, 5, 131, 0, 0, 1172, 1173, 3, 44, 22, 0, 1173, 1174, 5, 150, 0, 0, 1174, 1178, 1, 0, 0, 0, 1175, 1178, 3, 120, 60, 0, 1176, 1178, 3, 160, 80, 0, 1177, 1168, 1, 0, 0, 0, 1177, 1170, 1, 0, 0, 0, 1177, 1171, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1176, 1, 0, 0, 0, 1178, 1187, 1, 0, 0, 0, 1179, 1183, 10, 3, 0, 0, 1180, 1184, 3, 154, 77, 0, 1181, 1182, 5, 6, 0, 0, 1182, 1184, 3, 156, 78, 0, 1183, 1180, 1, 0, 0, 0, 1183, 1181, 1, 0, 0, 0, 1184, 1186, 1, 0, 0, 0, 1185, 1179, 1, 0, 0, 0, 1186, 1189, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 133, 1, 0, 0, 0, 1189, 1187, 1, 0, 0, 0, 1190, 1191, 3, 156, 78, 0, 1191, 1193, 5, 131, 0, 0, 1192, 1194, 3, 138, 69, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 5, 150, 0, 0, 1196, 135, 1, 0, 0, 0, 1197, 1198, 3, 140, 70, 0, 1198, 1199, 5, 121, 0, 0, 1199, 1201, 1, 0, 0, 0, 1200, 1197, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 3, 156, 78, 0, 1203, 137, 1, 0, 0, 0, 1204, 1209, 3, 116, 58, 0, 1205, 1206, 5, 117, 0, 0, 1206, 1208, 3, 116, 58, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1211, 1, 0, 0, 0, 1209, 1207, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1213, 1, 0, 0, 0, 1211, 1209, 1, 0, 0, 0, 1212, 1214, 5, 117, 0, 0, 1213, 1212, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 139, 1, 0, 0, 0, 1215, 1216, 3, 156, 78, 0, 1216, 141, 1, 0, 0, 0, 1217, 1226, 5, 107, 0, 0, 1218, 1219, 5, 121, 0, 0, 1219, 1226, 7, 12, 0, 0, 1220, 1221, 5, 109, 0, 0, 1221, 1223, 5, 121, 0, 0, 1222, 1224, 7, 12, 0, 0, 1223, 1222, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1226, 1, 0, 0, 0, 1225, 1217, 1, 0, 0, 0, 1225, 1218, 1, 0, 0, 0, 1225, 1220, 1, 0, 0, 0, 1226, 143, 1, 0, 0, 0, 1227, 1229, 7, 13, 0, 0, 1228, 1227, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1236, 1, 0, 0, 0, 1230, 1237, 3, 142, 71, 0, 1231, 1237, 5, 108, 0, 0, 1232, 1237, 5, 109, 0, 0, 1233, 1237, 5, 110, 0, 0, 1234, 1237, 5, 44, 0, 0, 1235, 1237, 5, 58, 0, 0, 1236, 1230, 1, 0, 0, 0, 1236, 1231, 1, 0, 0, 0, 1236, 1232, 1, 0, 0, 0, 1236, 1233, 1, 0, 0, 0, 1236, 1234, 1, 0, 0, 0, 1236, 1235, 1, 0, 0, 0, 1237, 145, 1, 0, 0, 0, 1238, 1242, 3, 144, 72, 0, 1239, 1242, 5, 111, 0, 0, 1240, 1242, 5, 60, 0, 0, 1241, 1238, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1241, 1240, 1, 0, 0, 0, 1242, 147, 1, 0, 0, 0, 1243, 1244, 7, 14, 0, 0, 1244, 149, 1, 0, 0, 0, 1245, 1246, 7, 15, 0, 0, 1246, 151, 1, 0, 0, 0, 1247, 1248, 7, 16, 0, 0, 1248, 153, 1, 0, 0, 0, 1249, 1252, 5, 106, 0, 0, 1250, 1252, 3, 152, 76, 0, 1251, 1249, 1, 0, 0, 0, 1251, 1250, 1, 0, 0, 0, 1252, 155, 1, 0, 0, 0, 1253, 1257, 5, 106, 0, 0, 1254, 1257, 3, 148, 74, 0, 1255, 1257, 3, 150, 75, 0, 1256, 1253, 1, 0, 0, 0, 1256, 1254, 1, 0, 0, 0, 1256, 1255, 1, 0, 0, 0, 1257, 157, 1, 0, 0, 0, 1258, 1259, 3, 162, 81, 0, 1259, 1260, 5, 123, 0, 0, 1260, 1261, 3, 144, 72, 0, 1261, 159, 1, 0, 0, 0, 1262, 1263, 5, 129, 0, 0, 1263, 1264, 3, 130, 65, 0, 1264, 1265, 5, 148, 0, 0, 1265, 161, 1, 0, 0, 0, 1266, 1269, 5, 111, 0, 0, 1267, 1269, 3, 164, 82, 0, 1268, 1266, 1, 0, 0, 0, 1268, 1267, 1, 0, 0, 0, 1269, 163, 1, 0, 0, 0, 1270, 1274, 5, 143, 0, 0, 1271, 1273, 3, 166, 83, 0, 1272, 1271, 1, 0, 0, 0, 1273, 1276, 1, 0, 0, 0, 1274, 1272, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1277, 1, 0, 0, 0, 1276, 1274, 1, 0, 0, 0, 1277, 1278, 5, 145, 0, 0, 1278, 165, 1, 0, 0, 0, 1279, 1280, 5, 158, 0, 0, 1280, 1281, 3, 116, 58, 0, 1281, 1282, 5, 148, 0, 0, 1282, 1285, 1, 0, 0, 0, 1283, 1285, 5, 157, 0, 0, 1284, 1279, 1, 0, 0, 0, 1284, 1283, 1, 0, 0, 0, 1285, 167, 1, 0, 0, 0, 1286, 1290, 5, 144, 0, 0, 1287, 1289, 3, 170, 85, 0, 1288, 1287, 1, 0, 0, 0, 1289, 1292, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1293, 1, 0, 0, 0, 1292, 1290, 1, 0, 0, 0, 1293, 1294, 5, 0, 0, 1, 1294, 169, 1, 0, 0, 0, 1295, 1296, 5, 160, 0, 0, 1296, 1297, 3, 116, 58, 0, 1297, 1298, 5, 148, 0, 0, 1298, 1301, 1, 0, 0, 0, 1299, 1301, 5, 159, 0, 0, 1300, 1295, 1, 0, 0, 0, 1300, 1299, 1, 0, 0, 0, 1301, 171, 1, 0, 0, 0, 167, 175, 182, 191, 198, 202, 216, 220, 223, 227, 230, 237, 241, 250, 255, 264, 272, 279, 283, 289, 294, 302, 309, 315, 327, 335, 349, 353, 358, 368, 377, 380, 384, 387, 391, 394, 397, 400, 403, 407, 411, 414, 417, 420, 424, 427, 436, 442, 463, 480, 497, 503, 509, 520, 522, 533, 536, 542, 550, 556, 558, 562, 567, 570, 573, 577, 581, 584, 586, 589, 593, 597, 600, 602, 604, 609, 620, 626, 633, 638, 642, 646, 652, 654, 661, 669, 672, 675, 694, 708, 724, 728, 739, 743, 754, 758, 765, 769, 776, 780, 785, 794, 798, 822, 839, 845, 848, 851, 861, 867, 870, 873, 881, 884, 888, 891, 905, 922, 927, 932, 938, 945, 957, 961, 964, 973, 987, 1003, 1032, 1040, 1042, 1044, 1053, 1057, 1066, 1070, 1074, 1079, 1086, 1097, 1106, 1113, 1126, 1133, 1137, 1149, 1155, 1158, 1165, 1177, 1183, 1187, 1193, 1200, 1209, 1213, 1223, 1225, 1228, 1236, 1241, 1251, 1256, 1268, 1274, 1284, 1290, 1300] \ No newline at end of file +[4, 1, 160, 1303, 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, 1, 0, 5, 0, 174, 8, 0, 10, 0, 12, 0, 177, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 183, 8, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 192, 8, 3, 1, 4, 1, 4, 1, 4, 5, 4, 197, 8, 4, 10, 4, 12, 4, 200, 9, 4, 1, 4, 3, 4, 203, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 217, 8, 5, 1, 6, 1, 6, 3, 6, 221, 8, 6, 1, 6, 3, 6, 224, 8, 6, 1, 7, 1, 7, 3, 7, 228, 8, 7, 1, 7, 3, 7, 231, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 238, 8, 8, 1, 8, 1, 8, 3, 8, 242, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 249, 8, 9, 10, 9, 12, 9, 252, 9, 9, 1, 9, 1, 9, 3, 9, 256, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 265, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 273, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 280, 8, 12, 1, 12, 1, 12, 3, 12, 284, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 290, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 295, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 303, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 310, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 316, 8, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 328, 8, 16, 1, 17, 1, 17, 1, 18, 1, 18, 5, 18, 334, 8, 18, 10, 18, 12, 18, 337, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 5, 20, 348, 8, 20, 10, 20, 12, 20, 351, 9, 20, 1, 20, 3, 20, 354, 8, 20, 1, 21, 1, 21, 1, 21, 3, 21, 359, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 367, 8, 22, 10, 22, 12, 22, 370, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 378, 8, 23, 1, 24, 3, 24, 381, 8, 24, 1, 24, 1, 24, 3, 24, 385, 8, 24, 1, 24, 3, 24, 388, 8, 24, 1, 24, 1, 24, 3, 24, 392, 8, 24, 1, 24, 3, 24, 395, 8, 24, 1, 24, 3, 24, 398, 8, 24, 1, 24, 3, 24, 401, 8, 24, 1, 24, 3, 24, 404, 8, 24, 1, 24, 1, 24, 3, 24, 408, 8, 24, 1, 24, 1, 24, 3, 24, 412, 8, 24, 1, 24, 3, 24, 415, 8, 24, 1, 24, 3, 24, 418, 8, 24, 1, 24, 3, 24, 421, 8, 24, 1, 24, 1, 24, 3, 24, 425, 8, 24, 1, 24, 3, 24, 428, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 437, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 443, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 462, 8, 29, 10, 29, 12, 29, 465, 9, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 481, 8, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 498, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 504, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 510, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 521, 8, 36, 3, 36, 523, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 534, 8, 39, 1, 39, 3, 39, 537, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 543, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 551, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 557, 8, 39, 10, 39, 12, 39, 560, 9, 39, 1, 40, 3, 40, 563, 8, 40, 1, 40, 1, 40, 1, 40, 3, 40, 568, 8, 40, 1, 40, 3, 40, 571, 8, 40, 1, 40, 3, 40, 574, 8, 40, 1, 40, 1, 40, 3, 40, 578, 8, 40, 1, 40, 1, 40, 3, 40, 582, 8, 40, 1, 40, 3, 40, 585, 8, 40, 3, 40, 587, 8, 40, 1, 40, 3, 40, 590, 8, 40, 1, 40, 1, 40, 3, 40, 594, 8, 40, 1, 40, 1, 40, 3, 40, 598, 8, 40, 1, 40, 3, 40, 601, 8, 40, 3, 40, 603, 8, 40, 3, 40, 605, 8, 40, 1, 41, 1, 41, 1, 41, 3, 41, 610, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 621, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 627, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 632, 8, 44, 10, 44, 12, 44, 635, 9, 44, 1, 45, 1, 45, 3, 45, 639, 8, 45, 1, 45, 1, 45, 3, 45, 643, 8, 45, 1, 45, 1, 45, 3, 45, 647, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 653, 8, 46, 3, 46, 655, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 660, 8, 47, 10, 47, 12, 47, 663, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 3, 49, 670, 8, 49, 1, 49, 3, 49, 673, 8, 49, 1, 49, 3, 49, 676, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 695, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 709, 8, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 723, 8, 56, 10, 56, 12, 56, 726, 9, 56, 1, 56, 3, 56, 729, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 738, 8, 56, 10, 56, 12, 56, 741, 9, 56, 1, 56, 3, 56, 744, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 753, 8, 56, 10, 56, 12, 56, 756, 9, 56, 1, 56, 3, 56, 759, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 766, 8, 56, 1, 56, 1, 56, 3, 56, 770, 8, 56, 1, 57, 1, 57, 1, 57, 5, 57, 775, 8, 57, 10, 57, 12, 57, 778, 9, 57, 1, 57, 3, 57, 781, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 786, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 4, 58, 793, 8, 58, 11, 58, 12, 58, 794, 1, 58, 1, 58, 3, 58, 799, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 823, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 840, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 846, 8, 58, 1, 58, 3, 58, 849, 8, 58, 1, 58, 3, 58, 852, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 862, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 868, 8, 58, 1, 58, 3, 58, 871, 8, 58, 1, 58, 3, 58, 874, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 882, 8, 58, 1, 58, 3, 58, 885, 8, 58, 1, 58, 1, 58, 3, 58, 889, 8, 58, 1, 58, 3, 58, 892, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 906, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 923, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 928, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 933, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 939, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 946, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 958, 8, 58, 1, 58, 1, 58, 3, 58, 962, 8, 58, 1, 58, 3, 58, 965, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 974, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 988, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1004, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1033, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1041, 8, 58, 5, 58, 1043, 8, 58, 10, 58, 12, 58, 1046, 9, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1052, 8, 59, 10, 59, 12, 59, 1055, 9, 59, 1, 59, 3, 59, 1058, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1065, 8, 59, 10, 59, 12, 59, 1068, 9, 59, 1, 59, 3, 59, 1071, 8, 59, 1, 59, 1, 59, 3, 59, 1075, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1080, 8, 59, 1, 60, 1, 60, 1, 60, 5, 60, 1085, 8, 60, 10, 60, 12, 60, 1088, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1096, 8, 60, 10, 60, 12, 60, 1099, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1107, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1114, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1127, 8, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1132, 8, 62, 10, 62, 12, 62, 1135, 9, 62, 1, 62, 3, 62, 1138, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1150, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1156, 8, 64, 1, 64, 3, 64, 1159, 8, 64, 1, 65, 1, 65, 1, 65, 5, 65, 1164, 8, 65, 10, 65, 12, 65, 1167, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1178, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1184, 8, 66, 5, 66, 1186, 8, 66, 10, 66, 12, 66, 1189, 9, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1194, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1201, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 5, 69, 1208, 8, 69, 10, 69, 12, 69, 1211, 9, 69, 1, 69, 3, 69, 1214, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1224, 8, 71, 3, 71, 1226, 8, 71, 1, 72, 3, 72, 1229, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1237, 8, 72, 1, 73, 1, 73, 1, 73, 3, 73, 1242, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1252, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 1257, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 3, 81, 1269, 8, 81, 1, 82, 1, 82, 5, 82, 1273, 8, 82, 10, 82, 12, 82, 1276, 9, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1285, 8, 83, 1, 84, 1, 84, 5, 84, 1289, 8, 84, 10, 84, 12, 84, 1292, 9, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1301, 8, 85, 1, 85, 0, 3, 78, 116, 132, 86, 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, 0, 17, 2, 0, 31, 31, 36, 36, 2, 0, 18, 18, 75, 75, 2, 0, 45, 45, 52, 52, 3, 0, 1, 1, 4, 4, 8, 8, 4, 0, 1, 1, 3, 4, 8, 8, 81, 81, 2, 0, 52, 52, 74, 74, 2, 0, 1, 1, 4, 4, 2, 0, 7, 7, 22, 23, 2, 0, 30, 30, 50, 50, 2, 0, 72, 72, 77, 77, 3, 0, 10, 10, 51, 51, 91, 91, 2, 0, 42, 42, 54, 54, 1, 0, 108, 109, 2, 0, 119, 119, 140, 140, 7, 0, 21, 21, 39, 39, 56, 57, 71, 71, 79, 79, 98, 98, 104, 104, 17, 0, 1, 13, 15, 20, 22, 28, 30, 30, 32, 35, 37, 38, 40, 43, 45, 52, 54, 55, 59, 59, 61, 70, 72, 78, 80, 84, 86, 93, 95, 97, 99, 100, 102, 103, 4, 0, 20, 20, 30, 30, 40, 40, 49, 49, 1475, 0, 175, 1, 0, 0, 0, 2, 182, 1, 0, 0, 0, 4, 184, 1, 0, 0, 0, 6, 186, 1, 0, 0, 0, 8, 193, 1, 0, 0, 0, 10, 216, 1, 0, 0, 0, 12, 218, 1, 0, 0, 0, 14, 225, 1, 0, 0, 0, 16, 232, 1, 0, 0, 0, 18, 245, 1, 0, 0, 0, 20, 257, 1, 0, 0, 0, 22, 266, 1, 0, 0, 0, 24, 274, 1, 0, 0, 0, 26, 296, 1, 0, 0, 0, 28, 311, 1, 0, 0, 0, 30, 320, 1, 0, 0, 0, 32, 325, 1, 0, 0, 0, 34, 329, 1, 0, 0, 0, 36, 331, 1, 0, 0, 0, 38, 340, 1, 0, 0, 0, 40, 344, 1, 0, 0, 0, 42, 358, 1, 0, 0, 0, 44, 362, 1, 0, 0, 0, 46, 377, 1, 0, 0, 0, 48, 380, 1, 0, 0, 0, 50, 429, 1, 0, 0, 0, 52, 432, 1, 0, 0, 0, 54, 438, 1, 0, 0, 0, 56, 442, 1, 0, 0, 0, 58, 448, 1, 0, 0, 0, 60, 466, 1, 0, 0, 0, 62, 469, 1, 0, 0, 0, 64, 472, 1, 0, 0, 0, 66, 482, 1, 0, 0, 0, 68, 485, 1, 0, 0, 0, 70, 489, 1, 0, 0, 0, 72, 522, 1, 0, 0, 0, 74, 524, 1, 0, 0, 0, 76, 527, 1, 0, 0, 0, 78, 542, 1, 0, 0, 0, 80, 604, 1, 0, 0, 0, 82, 609, 1, 0, 0, 0, 84, 620, 1, 0, 0, 0, 86, 622, 1, 0, 0, 0, 88, 628, 1, 0, 0, 0, 90, 636, 1, 0, 0, 0, 92, 654, 1, 0, 0, 0, 94, 656, 1, 0, 0, 0, 96, 664, 1, 0, 0, 0, 98, 669, 1, 0, 0, 0, 100, 677, 1, 0, 0, 0, 102, 681, 1, 0, 0, 0, 104, 685, 1, 0, 0, 0, 106, 694, 1, 0, 0, 0, 108, 708, 1, 0, 0, 0, 110, 710, 1, 0, 0, 0, 112, 769, 1, 0, 0, 0, 114, 771, 1, 0, 0, 0, 116, 932, 1, 0, 0, 0, 118, 1074, 1, 0, 0, 0, 120, 1113, 1, 0, 0, 0, 122, 1126, 1, 0, 0, 0, 124, 1128, 1, 0, 0, 0, 126, 1149, 1, 0, 0, 0, 128, 1158, 1, 0, 0, 0, 130, 1160, 1, 0, 0, 0, 132, 1177, 1, 0, 0, 0, 134, 1190, 1, 0, 0, 0, 136, 1200, 1, 0, 0, 0, 138, 1204, 1, 0, 0, 0, 140, 1215, 1, 0, 0, 0, 142, 1225, 1, 0, 0, 0, 144, 1228, 1, 0, 0, 0, 146, 1241, 1, 0, 0, 0, 148, 1243, 1, 0, 0, 0, 150, 1245, 1, 0, 0, 0, 152, 1247, 1, 0, 0, 0, 154, 1251, 1, 0, 0, 0, 156, 1256, 1, 0, 0, 0, 158, 1258, 1, 0, 0, 0, 160, 1262, 1, 0, 0, 0, 162, 1268, 1, 0, 0, 0, 164, 1270, 1, 0, 0, 0, 166, 1284, 1, 0, 0, 0, 168, 1286, 1, 0, 0, 0, 170, 1300, 1, 0, 0, 0, 172, 174, 3, 2, 1, 0, 173, 172, 1, 0, 0, 0, 174, 177, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 175, 176, 1, 0, 0, 0, 176, 178, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 178, 179, 5, 0, 0, 1, 179, 1, 1, 0, 0, 0, 180, 183, 3, 6, 3, 0, 181, 183, 3, 10, 5, 0, 182, 180, 1, 0, 0, 0, 182, 181, 1, 0, 0, 0, 183, 3, 1, 0, 0, 0, 184, 185, 3, 116, 58, 0, 185, 5, 1, 0, 0, 0, 186, 187, 5, 53, 0, 0, 187, 191, 3, 156, 78, 0, 188, 189, 5, 116, 0, 0, 189, 190, 5, 123, 0, 0, 190, 192, 3, 4, 2, 0, 191, 188, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 7, 1, 0, 0, 0, 193, 198, 3, 156, 78, 0, 194, 195, 5, 117, 0, 0, 195, 197, 3, 156, 78, 0, 196, 194, 1, 0, 0, 0, 197, 200, 1, 0, 0, 0, 198, 196, 1, 0, 0, 0, 198, 199, 1, 0, 0, 0, 199, 202, 1, 0, 0, 0, 200, 198, 1, 0, 0, 0, 201, 203, 5, 117, 0, 0, 202, 201, 1, 0, 0, 0, 202, 203, 1, 0, 0, 0, 203, 9, 1, 0, 0, 0, 204, 217, 3, 12, 6, 0, 205, 217, 3, 14, 7, 0, 206, 217, 3, 18, 9, 0, 207, 217, 3, 20, 10, 0, 208, 217, 3, 22, 11, 0, 209, 217, 3, 26, 13, 0, 210, 217, 3, 24, 12, 0, 211, 217, 3, 28, 14, 0, 212, 217, 3, 30, 15, 0, 213, 217, 3, 36, 18, 0, 214, 217, 3, 32, 16, 0, 215, 217, 3, 34, 17, 0, 216, 204, 1, 0, 0, 0, 216, 205, 1, 0, 0, 0, 216, 206, 1, 0, 0, 0, 216, 207, 1, 0, 0, 0, 216, 208, 1, 0, 0, 0, 216, 209, 1, 0, 0, 0, 216, 210, 1, 0, 0, 0, 216, 211, 1, 0, 0, 0, 216, 212, 1, 0, 0, 0, 216, 213, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 216, 215, 1, 0, 0, 0, 217, 11, 1, 0, 0, 0, 218, 220, 5, 73, 0, 0, 219, 221, 3, 4, 2, 0, 220, 219, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 223, 1, 0, 0, 0, 222, 224, 5, 151, 0, 0, 223, 222, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 13, 1, 0, 0, 0, 225, 227, 5, 85, 0, 0, 226, 228, 3, 4, 2, 0, 227, 226, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 231, 5, 151, 0, 0, 230, 229, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 15, 1, 0, 0, 0, 232, 241, 5, 14, 0, 0, 233, 234, 5, 131, 0, 0, 234, 237, 3, 156, 78, 0, 235, 236, 5, 116, 0, 0, 236, 238, 3, 156, 78, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 5, 150, 0, 0, 240, 242, 1, 0, 0, 0, 241, 233, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 244, 3, 36, 18, 0, 244, 17, 1, 0, 0, 0, 245, 246, 5, 94, 0, 0, 246, 250, 3, 36, 18, 0, 247, 249, 3, 16, 8, 0, 248, 247, 1, 0, 0, 0, 249, 252, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 250, 251, 1, 0, 0, 0, 251, 255, 1, 0, 0, 0, 252, 250, 1, 0, 0, 0, 253, 254, 5, 29, 0, 0, 254, 256, 3, 36, 18, 0, 255, 253, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 19, 1, 0, 0, 0, 257, 258, 5, 41, 0, 0, 258, 259, 5, 131, 0, 0, 259, 260, 3, 4, 2, 0, 260, 261, 5, 150, 0, 0, 261, 264, 3, 10, 5, 0, 262, 263, 5, 25, 0, 0, 263, 265, 3, 10, 5, 0, 264, 262, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 21, 1, 0, 0, 0, 266, 267, 5, 101, 0, 0, 267, 268, 5, 131, 0, 0, 268, 269, 3, 4, 2, 0, 269, 270, 5, 150, 0, 0, 270, 272, 3, 10, 5, 0, 271, 273, 5, 151, 0, 0, 272, 271, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 23, 1, 0, 0, 0, 274, 275, 5, 33, 0, 0, 275, 279, 5, 131, 0, 0, 276, 280, 3, 6, 3, 0, 277, 280, 3, 30, 15, 0, 278, 280, 3, 4, 2, 0, 279, 276, 1, 0, 0, 0, 279, 277, 1, 0, 0, 0, 279, 278, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 281, 1, 0, 0, 0, 281, 283, 5, 151, 0, 0, 282, 284, 3, 4, 2, 0, 283, 282, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 289, 5, 151, 0, 0, 286, 290, 3, 6, 3, 0, 287, 290, 3, 30, 15, 0, 288, 290, 3, 4, 2, 0, 289, 286, 1, 0, 0, 0, 289, 287, 1, 0, 0, 0, 289, 288, 1, 0, 0, 0, 289, 290, 1, 0, 0, 0, 290, 291, 1, 0, 0, 0, 291, 292, 5, 150, 0, 0, 292, 294, 3, 10, 5, 0, 293, 295, 5, 151, 0, 0, 294, 293, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 25, 1, 0, 0, 0, 296, 297, 5, 33, 0, 0, 297, 298, 5, 131, 0, 0, 298, 299, 5, 53, 0, 0, 299, 302, 3, 156, 78, 0, 300, 301, 5, 117, 0, 0, 301, 303, 3, 156, 78, 0, 302, 300, 1, 0, 0, 0, 302, 303, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 305, 5, 43, 0, 0, 305, 306, 3, 4, 2, 0, 306, 307, 5, 150, 0, 0, 307, 309, 3, 10, 5, 0, 308, 310, 5, 151, 0, 0, 309, 308, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 27, 1, 0, 0, 0, 311, 312, 7, 0, 0, 0, 312, 313, 3, 156, 78, 0, 313, 315, 5, 131, 0, 0, 314, 316, 3, 8, 4, 0, 315, 314, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 5, 150, 0, 0, 318, 319, 3, 36, 18, 0, 319, 29, 1, 0, 0, 0, 320, 321, 3, 4, 2, 0, 321, 322, 5, 116, 0, 0, 322, 323, 5, 123, 0, 0, 323, 324, 3, 4, 2, 0, 324, 31, 1, 0, 0, 0, 325, 327, 3, 4, 2, 0, 326, 328, 5, 151, 0, 0, 327, 326, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 33, 1, 0, 0, 0, 329, 330, 5, 151, 0, 0, 330, 35, 1, 0, 0, 0, 331, 335, 5, 129, 0, 0, 332, 334, 3, 2, 1, 0, 333, 332, 1, 0, 0, 0, 334, 337, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 338, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 338, 339, 5, 148, 0, 0, 339, 37, 1, 0, 0, 0, 340, 341, 3, 4, 2, 0, 341, 342, 5, 116, 0, 0, 342, 343, 3, 4, 2, 0, 343, 39, 1, 0, 0, 0, 344, 349, 3, 38, 19, 0, 345, 346, 5, 117, 0, 0, 346, 348, 3, 38, 19, 0, 347, 345, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 353, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 354, 5, 117, 0, 0, 353, 352, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 41, 1, 0, 0, 0, 355, 359, 3, 44, 22, 0, 356, 359, 3, 48, 24, 0, 357, 359, 3, 120, 60, 0, 358, 355, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 358, 357, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 361, 5, 0, 0, 1, 361, 43, 1, 0, 0, 0, 362, 368, 3, 46, 23, 0, 363, 364, 5, 96, 0, 0, 364, 365, 5, 1, 0, 0, 365, 367, 3, 46, 23, 0, 366, 363, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 45, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 378, 3, 48, 24, 0, 372, 373, 5, 131, 0, 0, 373, 374, 3, 44, 22, 0, 374, 375, 5, 150, 0, 0, 375, 378, 1, 0, 0, 0, 376, 378, 3, 160, 80, 0, 377, 371, 1, 0, 0, 0, 377, 372, 1, 0, 0, 0, 377, 376, 1, 0, 0, 0, 378, 47, 1, 0, 0, 0, 379, 381, 3, 50, 25, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 384, 5, 80, 0, 0, 383, 385, 5, 24, 0, 0, 384, 383, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 387, 1, 0, 0, 0, 386, 388, 3, 52, 26, 0, 387, 386, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 391, 3, 114, 57, 0, 390, 392, 3, 54, 27, 0, 391, 390, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 1, 0, 0, 0, 393, 395, 3, 56, 28, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 397, 1, 0, 0, 0, 396, 398, 3, 60, 30, 0, 397, 396, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 400, 1, 0, 0, 0, 399, 401, 3, 62, 31, 0, 400, 399, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 403, 1, 0, 0, 0, 402, 404, 3, 64, 32, 0, 403, 402, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 406, 5, 103, 0, 0, 406, 408, 7, 1, 0, 0, 407, 405, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 410, 5, 103, 0, 0, 410, 412, 5, 90, 0, 0, 411, 409, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 1, 0, 0, 0, 413, 415, 3, 66, 33, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 417, 1, 0, 0, 0, 416, 418, 3, 58, 29, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 420, 1, 0, 0, 0, 419, 421, 3, 68, 34, 0, 420, 419, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 424, 1, 0, 0, 0, 422, 425, 3, 72, 36, 0, 423, 425, 3, 74, 37, 0, 424, 422, 1, 0, 0, 0, 424, 423, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 427, 1, 0, 0, 0, 426, 428, 3, 76, 38, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 49, 1, 0, 0, 0, 429, 430, 5, 103, 0, 0, 430, 431, 3, 124, 62, 0, 431, 51, 1, 0, 0, 0, 432, 433, 5, 89, 0, 0, 433, 436, 5, 109, 0, 0, 434, 435, 5, 103, 0, 0, 435, 437, 5, 86, 0, 0, 436, 434, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 53, 1, 0, 0, 0, 438, 439, 5, 34, 0, 0, 439, 440, 3, 78, 39, 0, 440, 55, 1, 0, 0, 0, 441, 443, 7, 2, 0, 0, 442, 441, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 5, 5, 0, 0, 445, 446, 5, 48, 0, 0, 446, 447, 3, 114, 57, 0, 447, 57, 1, 0, 0, 0, 448, 449, 5, 102, 0, 0, 449, 450, 3, 156, 78, 0, 450, 451, 5, 6, 0, 0, 451, 452, 5, 131, 0, 0, 452, 453, 3, 98, 49, 0, 453, 463, 5, 150, 0, 0, 454, 455, 5, 117, 0, 0, 455, 456, 3, 156, 78, 0, 456, 457, 5, 6, 0, 0, 457, 458, 5, 131, 0, 0, 458, 459, 3, 98, 49, 0, 459, 460, 5, 150, 0, 0, 460, 462, 1, 0, 0, 0, 461, 454, 1, 0, 0, 0, 462, 465, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 59, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 466, 467, 5, 70, 0, 0, 467, 468, 3, 116, 58, 0, 468, 61, 1, 0, 0, 0, 469, 470, 5, 100, 0, 0, 470, 471, 3, 116, 58, 0, 471, 63, 1, 0, 0, 0, 472, 473, 5, 37, 0, 0, 473, 480, 5, 11, 0, 0, 474, 475, 7, 1, 0, 0, 475, 476, 5, 131, 0, 0, 476, 477, 3, 114, 57, 0, 477, 478, 5, 150, 0, 0, 478, 481, 1, 0, 0, 0, 479, 481, 3, 114, 57, 0, 480, 474, 1, 0, 0, 0, 480, 479, 1, 0, 0, 0, 481, 65, 1, 0, 0, 0, 482, 483, 5, 38, 0, 0, 483, 484, 3, 116, 58, 0, 484, 67, 1, 0, 0, 0, 485, 486, 5, 65, 0, 0, 486, 487, 5, 11, 0, 0, 487, 488, 3, 88, 44, 0, 488, 69, 1, 0, 0, 0, 489, 490, 5, 65, 0, 0, 490, 491, 5, 11, 0, 0, 491, 492, 3, 114, 57, 0, 492, 71, 1, 0, 0, 0, 493, 494, 5, 55, 0, 0, 494, 497, 3, 116, 58, 0, 495, 496, 5, 117, 0, 0, 496, 498, 3, 116, 58, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 503, 1, 0, 0, 0, 499, 500, 5, 103, 0, 0, 500, 504, 5, 86, 0, 0, 501, 502, 5, 11, 0, 0, 502, 504, 3, 114, 57, 0, 503, 499, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 523, 1, 0, 0, 0, 505, 506, 5, 55, 0, 0, 506, 509, 3, 116, 58, 0, 507, 508, 5, 103, 0, 0, 508, 510, 5, 86, 0, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 5, 62, 0, 0, 512, 513, 3, 116, 58, 0, 513, 523, 1, 0, 0, 0, 514, 515, 5, 55, 0, 0, 515, 516, 3, 116, 58, 0, 516, 517, 5, 62, 0, 0, 517, 520, 3, 116, 58, 0, 518, 519, 5, 11, 0, 0, 519, 521, 3, 114, 57, 0, 520, 518, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 523, 1, 0, 0, 0, 522, 493, 1, 0, 0, 0, 522, 505, 1, 0, 0, 0, 522, 514, 1, 0, 0, 0, 523, 73, 1, 0, 0, 0, 524, 525, 5, 62, 0, 0, 525, 526, 3, 116, 58, 0, 526, 75, 1, 0, 0, 0, 527, 528, 5, 82, 0, 0, 528, 529, 3, 94, 47, 0, 529, 77, 1, 0, 0, 0, 530, 531, 6, 39, -1, 0, 531, 533, 3, 132, 66, 0, 532, 534, 5, 28, 0, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 536, 1, 0, 0, 0, 535, 537, 3, 86, 43, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 543, 1, 0, 0, 0, 538, 539, 5, 131, 0, 0, 539, 540, 3, 78, 39, 0, 540, 541, 5, 150, 0, 0, 541, 543, 1, 0, 0, 0, 542, 530, 1, 0, 0, 0, 542, 538, 1, 0, 0, 0, 543, 558, 1, 0, 0, 0, 544, 545, 10, 3, 0, 0, 545, 546, 3, 82, 41, 0, 546, 547, 3, 78, 39, 4, 547, 557, 1, 0, 0, 0, 548, 550, 10, 4, 0, 0, 549, 551, 3, 80, 40, 0, 550, 549, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 5, 48, 0, 0, 553, 554, 3, 78, 39, 0, 554, 555, 3, 84, 42, 0, 555, 557, 1, 0, 0, 0, 556, 544, 1, 0, 0, 0, 556, 548, 1, 0, 0, 0, 557, 560, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 79, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 561, 563, 7, 3, 0, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 571, 5, 45, 0, 0, 565, 567, 5, 45, 0, 0, 566, 568, 7, 3, 0, 0, 567, 566, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 571, 1, 0, 0, 0, 569, 571, 7, 3, 0, 0, 570, 562, 1, 0, 0, 0, 570, 565, 1, 0, 0, 0, 570, 569, 1, 0, 0, 0, 571, 605, 1, 0, 0, 0, 572, 574, 7, 4, 0, 0, 573, 572, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 577, 7, 5, 0, 0, 576, 578, 5, 66, 0, 0, 577, 576, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 587, 1, 0, 0, 0, 579, 581, 7, 5, 0, 0, 580, 582, 5, 66, 0, 0, 581, 580, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 584, 1, 0, 0, 0, 583, 585, 7, 4, 0, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 587, 1, 0, 0, 0, 586, 573, 1, 0, 0, 0, 586, 579, 1, 0, 0, 0, 587, 605, 1, 0, 0, 0, 588, 590, 7, 6, 0, 0, 589, 588, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 593, 5, 35, 0, 0, 592, 594, 5, 66, 0, 0, 593, 592, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 603, 1, 0, 0, 0, 595, 597, 5, 35, 0, 0, 596, 598, 5, 66, 0, 0, 597, 596, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 600, 1, 0, 0, 0, 599, 601, 7, 6, 0, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 603, 1, 0, 0, 0, 602, 589, 1, 0, 0, 0, 602, 595, 1, 0, 0, 0, 603, 605, 1, 0, 0, 0, 604, 570, 1, 0, 0, 0, 604, 586, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 605, 81, 1, 0, 0, 0, 606, 607, 5, 17, 0, 0, 607, 610, 5, 48, 0, 0, 608, 610, 5, 117, 0, 0, 609, 606, 1, 0, 0, 0, 609, 608, 1, 0, 0, 0, 610, 83, 1, 0, 0, 0, 611, 612, 5, 63, 0, 0, 612, 621, 3, 114, 57, 0, 613, 614, 5, 97, 0, 0, 614, 615, 5, 131, 0, 0, 615, 616, 3, 114, 57, 0, 616, 617, 5, 150, 0, 0, 617, 621, 1, 0, 0, 0, 618, 619, 5, 97, 0, 0, 619, 621, 3, 114, 57, 0, 620, 611, 1, 0, 0, 0, 620, 613, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 621, 85, 1, 0, 0, 0, 622, 623, 5, 78, 0, 0, 623, 626, 3, 92, 46, 0, 624, 625, 5, 62, 0, 0, 625, 627, 3, 92, 46, 0, 626, 624, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 87, 1, 0, 0, 0, 628, 633, 3, 90, 45, 0, 629, 630, 5, 117, 0, 0, 630, 632, 3, 90, 45, 0, 631, 629, 1, 0, 0, 0, 632, 635, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 89, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 638, 3, 116, 58, 0, 637, 639, 7, 7, 0, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 642, 1, 0, 0, 0, 640, 641, 5, 61, 0, 0, 641, 643, 7, 8, 0, 0, 642, 640, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 645, 5, 16, 0, 0, 645, 647, 5, 111, 0, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 91, 1, 0, 0, 0, 648, 655, 3, 160, 80, 0, 649, 652, 3, 144, 72, 0, 650, 651, 5, 152, 0, 0, 651, 653, 3, 144, 72, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 655, 1, 0, 0, 0, 654, 648, 1, 0, 0, 0, 654, 649, 1, 0, 0, 0, 655, 93, 1, 0, 0, 0, 656, 661, 3, 96, 48, 0, 657, 658, 5, 117, 0, 0, 658, 660, 3, 96, 48, 0, 659, 657, 1, 0, 0, 0, 660, 663, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 95, 1, 0, 0, 0, 663, 661, 1, 0, 0, 0, 664, 665, 3, 156, 78, 0, 665, 666, 5, 123, 0, 0, 666, 667, 3, 146, 73, 0, 667, 97, 1, 0, 0, 0, 668, 670, 3, 100, 50, 0, 669, 668, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 1, 0, 0, 0, 671, 673, 3, 102, 51, 0, 672, 671, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 675, 1, 0, 0, 0, 674, 676, 3, 104, 52, 0, 675, 674, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 99, 1, 0, 0, 0, 677, 678, 5, 68, 0, 0, 678, 679, 5, 11, 0, 0, 679, 680, 3, 114, 57, 0, 680, 101, 1, 0, 0, 0, 681, 682, 5, 65, 0, 0, 682, 683, 5, 11, 0, 0, 683, 684, 3, 88, 44, 0, 684, 103, 1, 0, 0, 0, 685, 686, 7, 9, 0, 0, 686, 687, 3, 106, 53, 0, 687, 105, 1, 0, 0, 0, 688, 695, 3, 108, 54, 0, 689, 690, 5, 9, 0, 0, 690, 691, 3, 108, 54, 0, 691, 692, 5, 2, 0, 0, 692, 693, 3, 108, 54, 0, 693, 695, 1, 0, 0, 0, 694, 688, 1, 0, 0, 0, 694, 689, 1, 0, 0, 0, 695, 107, 1, 0, 0, 0, 696, 697, 5, 19, 0, 0, 697, 709, 5, 76, 0, 0, 698, 699, 5, 95, 0, 0, 699, 709, 5, 69, 0, 0, 700, 701, 5, 95, 0, 0, 701, 709, 5, 32, 0, 0, 702, 703, 3, 144, 72, 0, 703, 704, 5, 69, 0, 0, 704, 709, 1, 0, 0, 0, 705, 706, 3, 144, 72, 0, 706, 707, 5, 32, 0, 0, 707, 709, 1, 0, 0, 0, 708, 696, 1, 0, 0, 0, 708, 698, 1, 0, 0, 0, 708, 700, 1, 0, 0, 0, 708, 702, 1, 0, 0, 0, 708, 705, 1, 0, 0, 0, 709, 109, 1, 0, 0, 0, 710, 711, 3, 116, 58, 0, 711, 712, 5, 0, 0, 1, 712, 111, 1, 0, 0, 0, 713, 770, 3, 156, 78, 0, 714, 715, 3, 156, 78, 0, 715, 716, 5, 131, 0, 0, 716, 717, 3, 156, 78, 0, 717, 724, 3, 112, 56, 0, 718, 719, 5, 117, 0, 0, 719, 720, 3, 156, 78, 0, 720, 721, 3, 112, 56, 0, 721, 723, 1, 0, 0, 0, 722, 718, 1, 0, 0, 0, 723, 726, 1, 0, 0, 0, 724, 722, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 728, 1, 0, 0, 0, 726, 724, 1, 0, 0, 0, 727, 729, 5, 117, 0, 0, 728, 727, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 5, 150, 0, 0, 731, 770, 1, 0, 0, 0, 732, 733, 3, 156, 78, 0, 733, 734, 5, 131, 0, 0, 734, 739, 3, 158, 79, 0, 735, 736, 5, 117, 0, 0, 736, 738, 3, 158, 79, 0, 737, 735, 1, 0, 0, 0, 738, 741, 1, 0, 0, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 744, 5, 117, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 150, 0, 0, 746, 770, 1, 0, 0, 0, 747, 748, 3, 156, 78, 0, 748, 749, 5, 131, 0, 0, 749, 754, 3, 112, 56, 0, 750, 751, 5, 117, 0, 0, 751, 753, 3, 112, 56, 0, 752, 750, 1, 0, 0, 0, 753, 756, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 758, 1, 0, 0, 0, 756, 754, 1, 0, 0, 0, 757, 759, 5, 117, 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 761, 5, 150, 0, 0, 761, 770, 1, 0, 0, 0, 762, 763, 3, 156, 78, 0, 763, 765, 5, 131, 0, 0, 764, 766, 3, 114, 57, 0, 765, 764, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 5, 150, 0, 0, 768, 770, 1, 0, 0, 0, 769, 713, 1, 0, 0, 0, 769, 714, 1, 0, 0, 0, 769, 732, 1, 0, 0, 0, 769, 747, 1, 0, 0, 0, 769, 762, 1, 0, 0, 0, 770, 113, 1, 0, 0, 0, 771, 776, 3, 116, 58, 0, 772, 773, 5, 117, 0, 0, 773, 775, 3, 116, 58, 0, 774, 772, 1, 0, 0, 0, 775, 778, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 780, 1, 0, 0, 0, 778, 776, 1, 0, 0, 0, 779, 781, 5, 117, 0, 0, 780, 779, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 115, 1, 0, 0, 0, 782, 783, 6, 58, -1, 0, 783, 785, 5, 12, 0, 0, 784, 786, 3, 116, 58, 0, 785, 784, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 792, 1, 0, 0, 0, 787, 788, 5, 99, 0, 0, 788, 789, 3, 116, 58, 0, 789, 790, 5, 84, 0, 0, 790, 791, 3, 116, 58, 0, 791, 793, 1, 0, 0, 0, 792, 787, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 798, 1, 0, 0, 0, 796, 797, 5, 25, 0, 0, 797, 799, 3, 116, 58, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 5, 26, 0, 0, 801, 933, 1, 0, 0, 0, 802, 803, 5, 13, 0, 0, 803, 804, 5, 131, 0, 0, 804, 805, 3, 116, 58, 0, 805, 806, 5, 6, 0, 0, 806, 807, 3, 112, 56, 0, 807, 808, 5, 150, 0, 0, 808, 933, 1, 0, 0, 0, 809, 810, 5, 20, 0, 0, 810, 933, 5, 111, 0, 0, 811, 812, 5, 46, 0, 0, 812, 813, 3, 116, 58, 0, 813, 814, 3, 148, 74, 0, 814, 933, 1, 0, 0, 0, 815, 816, 5, 83, 0, 0, 816, 817, 5, 131, 0, 0, 817, 818, 3, 116, 58, 0, 818, 819, 5, 34, 0, 0, 819, 822, 3, 116, 58, 0, 820, 821, 5, 33, 0, 0, 821, 823, 3, 116, 58, 0, 822, 820, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 825, 5, 150, 0, 0, 825, 933, 1, 0, 0, 0, 826, 827, 5, 87, 0, 0, 827, 933, 5, 111, 0, 0, 828, 829, 5, 92, 0, 0, 829, 830, 5, 131, 0, 0, 830, 831, 7, 10, 0, 0, 831, 832, 3, 162, 81, 0, 832, 833, 5, 34, 0, 0, 833, 834, 3, 116, 58, 0, 834, 835, 5, 150, 0, 0, 835, 933, 1, 0, 0, 0, 836, 837, 3, 156, 78, 0, 837, 839, 5, 131, 0, 0, 838, 840, 3, 114, 57, 0, 839, 838, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 5, 150, 0, 0, 842, 851, 1, 0, 0, 0, 843, 845, 5, 131, 0, 0, 844, 846, 5, 24, 0, 0, 845, 844, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 848, 1, 0, 0, 0, 847, 849, 3, 114, 57, 0, 848, 847, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 852, 5, 150, 0, 0, 851, 843, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 5, 67, 0, 0, 854, 855, 5, 131, 0, 0, 855, 856, 3, 98, 49, 0, 856, 857, 5, 150, 0, 0, 857, 933, 1, 0, 0, 0, 858, 859, 3, 156, 78, 0, 859, 861, 5, 131, 0, 0, 860, 862, 3, 114, 57, 0, 861, 860, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 5, 150, 0, 0, 864, 873, 1, 0, 0, 0, 865, 867, 5, 131, 0, 0, 866, 868, 5, 24, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 871, 3, 114, 57, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 5, 150, 0, 0, 873, 865, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 67, 0, 0, 876, 877, 3, 156, 78, 0, 877, 933, 1, 0, 0, 0, 878, 884, 3, 156, 78, 0, 879, 881, 5, 131, 0, 0, 880, 882, 3, 114, 57, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 885, 5, 150, 0, 0, 884, 879, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 888, 5, 131, 0, 0, 887, 889, 5, 24, 0, 0, 888, 887, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 891, 1, 0, 0, 0, 890, 892, 3, 114, 57, 0, 891, 890, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 5, 150, 0, 0, 894, 933, 1, 0, 0, 0, 895, 933, 3, 120, 60, 0, 896, 933, 3, 164, 82, 0, 897, 933, 3, 146, 73, 0, 898, 899, 5, 119, 0, 0, 899, 933, 3, 116, 58, 20, 900, 901, 5, 59, 0, 0, 901, 933, 3, 116, 58, 14, 902, 903, 3, 136, 68, 0, 903, 904, 5, 121, 0, 0, 904, 906, 1, 0, 0, 0, 905, 902, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 933, 5, 113, 0, 0, 908, 909, 5, 131, 0, 0, 909, 910, 3, 44, 22, 0, 910, 911, 5, 150, 0, 0, 911, 933, 1, 0, 0, 0, 912, 913, 5, 131, 0, 0, 913, 914, 3, 116, 58, 0, 914, 915, 5, 150, 0, 0, 915, 933, 1, 0, 0, 0, 916, 917, 5, 131, 0, 0, 917, 918, 3, 114, 57, 0, 918, 919, 5, 150, 0, 0, 919, 933, 1, 0, 0, 0, 920, 922, 5, 130, 0, 0, 921, 923, 3, 114, 57, 0, 922, 921, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 933, 5, 149, 0, 0, 925, 927, 5, 129, 0, 0, 926, 928, 3, 40, 20, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 933, 5, 148, 0, 0, 930, 933, 3, 118, 59, 0, 931, 933, 3, 128, 64, 0, 932, 782, 1, 0, 0, 0, 932, 802, 1, 0, 0, 0, 932, 809, 1, 0, 0, 0, 932, 811, 1, 0, 0, 0, 932, 815, 1, 0, 0, 0, 932, 826, 1, 0, 0, 0, 932, 828, 1, 0, 0, 0, 932, 836, 1, 0, 0, 0, 932, 858, 1, 0, 0, 0, 932, 878, 1, 0, 0, 0, 932, 895, 1, 0, 0, 0, 932, 896, 1, 0, 0, 0, 932, 897, 1, 0, 0, 0, 932, 898, 1, 0, 0, 0, 932, 900, 1, 0, 0, 0, 932, 905, 1, 0, 0, 0, 932, 908, 1, 0, 0, 0, 932, 912, 1, 0, 0, 0, 932, 916, 1, 0, 0, 0, 932, 920, 1, 0, 0, 0, 932, 925, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 932, 931, 1, 0, 0, 0, 933, 1044, 1, 0, 0, 0, 934, 938, 10, 19, 0, 0, 935, 939, 5, 113, 0, 0, 936, 939, 5, 152, 0, 0, 937, 939, 5, 139, 0, 0, 938, 935, 1, 0, 0, 0, 938, 936, 1, 0, 0, 0, 938, 937, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 1043, 3, 116, 58, 20, 941, 945, 10, 18, 0, 0, 942, 946, 5, 140, 0, 0, 943, 946, 5, 119, 0, 0, 944, 946, 5, 118, 0, 0, 945, 942, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 945, 944, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 1043, 3, 116, 58, 19, 948, 973, 10, 17, 0, 0, 949, 974, 5, 122, 0, 0, 950, 974, 5, 123, 0, 0, 951, 974, 5, 134, 0, 0, 952, 974, 5, 132, 0, 0, 953, 974, 5, 133, 0, 0, 954, 974, 5, 124, 0, 0, 955, 974, 5, 125, 0, 0, 956, 958, 5, 59, 0, 0, 957, 956, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 961, 5, 43, 0, 0, 960, 962, 5, 15, 0, 0, 961, 960, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 974, 1, 0, 0, 0, 963, 965, 5, 59, 0, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 974, 7, 11, 0, 0, 967, 974, 5, 146, 0, 0, 968, 974, 5, 147, 0, 0, 969, 974, 5, 136, 0, 0, 970, 974, 5, 127, 0, 0, 971, 974, 5, 128, 0, 0, 972, 974, 5, 135, 0, 0, 973, 949, 1, 0, 0, 0, 973, 950, 1, 0, 0, 0, 973, 951, 1, 0, 0, 0, 973, 952, 1, 0, 0, 0, 973, 953, 1, 0, 0, 0, 973, 954, 1, 0, 0, 0, 973, 955, 1, 0, 0, 0, 973, 957, 1, 0, 0, 0, 973, 964, 1, 0, 0, 0, 973, 967, 1, 0, 0, 0, 973, 968, 1, 0, 0, 0, 973, 969, 1, 0, 0, 0, 973, 970, 1, 0, 0, 0, 973, 971, 1, 0, 0, 0, 973, 972, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 1043, 3, 116, 58, 18, 976, 977, 10, 15, 0, 0, 977, 978, 5, 138, 0, 0, 978, 1043, 3, 116, 58, 16, 979, 980, 10, 13, 0, 0, 980, 981, 5, 2, 0, 0, 981, 1043, 3, 116, 58, 14, 982, 983, 10, 12, 0, 0, 983, 984, 5, 64, 0, 0, 984, 1043, 3, 116, 58, 13, 985, 987, 10, 11, 0, 0, 986, 988, 5, 59, 0, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 5, 9, 0, 0, 990, 991, 3, 116, 58, 0, 991, 992, 5, 2, 0, 0, 992, 993, 3, 116, 58, 12, 993, 1043, 1, 0, 0, 0, 994, 995, 10, 10, 0, 0, 995, 996, 5, 141, 0, 0, 996, 997, 3, 116, 58, 0, 997, 998, 5, 116, 0, 0, 998, 999, 3, 116, 58, 10, 999, 1043, 1, 0, 0, 0, 1000, 1001, 10, 30, 0, 0, 1001, 1003, 5, 131, 0, 0, 1002, 1004, 3, 114, 57, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1043, 5, 150, 0, 0, 1006, 1007, 10, 26, 0, 0, 1007, 1008, 5, 130, 0, 0, 1008, 1009, 3, 116, 58, 0, 1009, 1010, 5, 149, 0, 0, 1010, 1043, 1, 0, 0, 0, 1011, 1012, 10, 25, 0, 0, 1012, 1013, 5, 121, 0, 0, 1013, 1043, 5, 109, 0, 0, 1014, 1015, 10, 24, 0, 0, 1015, 1016, 5, 121, 0, 0, 1016, 1043, 3, 156, 78, 0, 1017, 1018, 10, 23, 0, 0, 1018, 1019, 5, 137, 0, 0, 1019, 1020, 5, 130, 0, 0, 1020, 1021, 3, 116, 58, 0, 1021, 1022, 5, 149, 0, 0, 1022, 1043, 1, 0, 0, 0, 1023, 1024, 10, 22, 0, 0, 1024, 1025, 5, 137, 0, 0, 1025, 1043, 5, 109, 0, 0, 1026, 1027, 10, 21, 0, 0, 1027, 1028, 5, 137, 0, 0, 1028, 1043, 3, 156, 78, 0, 1029, 1030, 10, 16, 0, 0, 1030, 1032, 5, 47, 0, 0, 1031, 1033, 5, 59, 0, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1043, 5, 60, 0, 0, 1035, 1040, 10, 9, 0, 0, 1036, 1037, 5, 6, 0, 0, 1037, 1041, 3, 156, 78, 0, 1038, 1039, 5, 6, 0, 0, 1039, 1041, 5, 111, 0, 0, 1040, 1036, 1, 0, 0, 0, 1040, 1038, 1, 0, 0, 0, 1041, 1043, 1, 0, 0, 0, 1042, 934, 1, 0, 0, 0, 1042, 941, 1, 0, 0, 0, 1042, 948, 1, 0, 0, 0, 1042, 976, 1, 0, 0, 0, 1042, 979, 1, 0, 0, 0, 1042, 982, 1, 0, 0, 0, 1042, 985, 1, 0, 0, 0, 1042, 994, 1, 0, 0, 0, 1042, 1000, 1, 0, 0, 0, 1042, 1006, 1, 0, 0, 0, 1042, 1011, 1, 0, 0, 0, 1042, 1014, 1, 0, 0, 0, 1042, 1017, 1, 0, 0, 0, 1042, 1023, 1, 0, 0, 0, 1042, 1026, 1, 0, 0, 0, 1042, 1029, 1, 0, 0, 0, 1042, 1035, 1, 0, 0, 0, 1043, 1046, 1, 0, 0, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 117, 1, 0, 0, 0, 1046, 1044, 1, 0, 0, 0, 1047, 1048, 5, 131, 0, 0, 1048, 1053, 3, 156, 78, 0, 1049, 1050, 5, 117, 0, 0, 1050, 1052, 3, 156, 78, 0, 1051, 1049, 1, 0, 0, 0, 1052, 1055, 1, 0, 0, 0, 1053, 1051, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1057, 1, 0, 0, 0, 1055, 1053, 1, 0, 0, 0, 1056, 1058, 5, 117, 0, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1060, 5, 150, 0, 0, 1060, 1075, 1, 0, 0, 0, 1061, 1066, 3, 156, 78, 0, 1062, 1063, 5, 117, 0, 0, 1063, 1065, 3, 156, 78, 0, 1064, 1062, 1, 0, 0, 0, 1065, 1068, 1, 0, 0, 0, 1066, 1064, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1070, 1, 0, 0, 0, 1068, 1066, 1, 0, 0, 0, 1069, 1071, 5, 117, 0, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1075, 1, 0, 0, 0, 1072, 1073, 5, 131, 0, 0, 1073, 1075, 5, 150, 0, 0, 1074, 1047, 1, 0, 0, 0, 1074, 1061, 1, 0, 0, 0, 1074, 1072, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1079, 5, 112, 0, 0, 1077, 1080, 3, 36, 18, 0, 1078, 1080, 3, 116, 58, 0, 1079, 1077, 1, 0, 0, 0, 1079, 1078, 1, 0, 0, 0, 1080, 119, 1, 0, 0, 0, 1081, 1082, 5, 133, 0, 0, 1082, 1086, 3, 156, 78, 0, 1083, 1085, 3, 122, 61, 0, 1084, 1083, 1, 0, 0, 0, 1085, 1088, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1089, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1089, 1090, 5, 152, 0, 0, 1090, 1091, 5, 125, 0, 0, 1091, 1114, 1, 0, 0, 0, 1092, 1093, 5, 133, 0, 0, 1093, 1097, 3, 156, 78, 0, 1094, 1096, 3, 122, 61, 0, 1095, 1094, 1, 0, 0, 0, 1096, 1099, 1, 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 1, 0, 0, 0, 1099, 1097, 1, 0, 0, 0, 1100, 1106, 5, 125, 0, 0, 1101, 1107, 3, 120, 60, 0, 1102, 1103, 5, 129, 0, 0, 1103, 1104, 3, 116, 58, 0, 1104, 1105, 5, 148, 0, 0, 1105, 1107, 1, 0, 0, 0, 1106, 1101, 1, 0, 0, 0, 1106, 1102, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 5, 133, 0, 0, 1109, 1110, 5, 152, 0, 0, 1110, 1111, 3, 156, 78, 0, 1111, 1112, 5, 125, 0, 0, 1112, 1114, 1, 0, 0, 0, 1113, 1081, 1, 0, 0, 0, 1113, 1092, 1, 0, 0, 0, 1114, 121, 1, 0, 0, 0, 1115, 1116, 3, 156, 78, 0, 1116, 1117, 5, 123, 0, 0, 1117, 1118, 3, 162, 81, 0, 1118, 1127, 1, 0, 0, 0, 1119, 1120, 3, 156, 78, 0, 1120, 1121, 5, 123, 0, 0, 1121, 1122, 5, 129, 0, 0, 1122, 1123, 3, 116, 58, 0, 1123, 1124, 5, 148, 0, 0, 1124, 1127, 1, 0, 0, 0, 1125, 1127, 3, 156, 78, 0, 1126, 1115, 1, 0, 0, 0, 1126, 1119, 1, 0, 0, 0, 1126, 1125, 1, 0, 0, 0, 1127, 123, 1, 0, 0, 0, 1128, 1133, 3, 126, 63, 0, 1129, 1130, 5, 117, 0, 0, 1130, 1132, 3, 126, 63, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1135, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1137, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1136, 1138, 5, 117, 0, 0, 1137, 1136, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 125, 1, 0, 0, 0, 1139, 1140, 3, 156, 78, 0, 1140, 1141, 5, 6, 0, 0, 1141, 1142, 5, 131, 0, 0, 1142, 1143, 3, 44, 22, 0, 1143, 1144, 5, 150, 0, 0, 1144, 1150, 1, 0, 0, 0, 1145, 1146, 3, 116, 58, 0, 1146, 1147, 5, 6, 0, 0, 1147, 1148, 3, 156, 78, 0, 1148, 1150, 1, 0, 0, 0, 1149, 1139, 1, 0, 0, 0, 1149, 1145, 1, 0, 0, 0, 1150, 127, 1, 0, 0, 0, 1151, 1159, 3, 160, 80, 0, 1152, 1153, 3, 136, 68, 0, 1153, 1154, 5, 121, 0, 0, 1154, 1156, 1, 0, 0, 0, 1155, 1152, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1159, 3, 130, 65, 0, 1158, 1151, 1, 0, 0, 0, 1158, 1155, 1, 0, 0, 0, 1159, 129, 1, 0, 0, 0, 1160, 1165, 3, 156, 78, 0, 1161, 1162, 5, 121, 0, 0, 1162, 1164, 3, 156, 78, 0, 1163, 1161, 1, 0, 0, 0, 1164, 1167, 1, 0, 0, 0, 1165, 1163, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 131, 1, 0, 0, 0, 1167, 1165, 1, 0, 0, 0, 1168, 1169, 6, 66, -1, 0, 1169, 1178, 3, 136, 68, 0, 1170, 1178, 3, 134, 67, 0, 1171, 1172, 5, 131, 0, 0, 1172, 1173, 3, 44, 22, 0, 1173, 1174, 5, 150, 0, 0, 1174, 1178, 1, 0, 0, 0, 1175, 1178, 3, 120, 60, 0, 1176, 1178, 3, 160, 80, 0, 1177, 1168, 1, 0, 0, 0, 1177, 1170, 1, 0, 0, 0, 1177, 1171, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1176, 1, 0, 0, 0, 1178, 1187, 1, 0, 0, 0, 1179, 1183, 10, 3, 0, 0, 1180, 1184, 3, 154, 77, 0, 1181, 1182, 5, 6, 0, 0, 1182, 1184, 3, 156, 78, 0, 1183, 1180, 1, 0, 0, 0, 1183, 1181, 1, 0, 0, 0, 1184, 1186, 1, 0, 0, 0, 1185, 1179, 1, 0, 0, 0, 1186, 1189, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 133, 1, 0, 0, 0, 1189, 1187, 1, 0, 0, 0, 1190, 1191, 3, 156, 78, 0, 1191, 1193, 5, 131, 0, 0, 1192, 1194, 3, 138, 69, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 5, 150, 0, 0, 1196, 135, 1, 0, 0, 0, 1197, 1198, 3, 140, 70, 0, 1198, 1199, 5, 121, 0, 0, 1199, 1201, 1, 0, 0, 0, 1200, 1197, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 3, 156, 78, 0, 1203, 137, 1, 0, 0, 0, 1204, 1209, 3, 116, 58, 0, 1205, 1206, 5, 117, 0, 0, 1206, 1208, 3, 116, 58, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1211, 1, 0, 0, 0, 1209, 1207, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1213, 1, 0, 0, 0, 1211, 1209, 1, 0, 0, 0, 1212, 1214, 5, 117, 0, 0, 1213, 1212, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 139, 1, 0, 0, 0, 1215, 1216, 3, 156, 78, 0, 1216, 141, 1, 0, 0, 0, 1217, 1226, 5, 107, 0, 0, 1218, 1219, 5, 121, 0, 0, 1219, 1226, 7, 12, 0, 0, 1220, 1221, 5, 109, 0, 0, 1221, 1223, 5, 121, 0, 0, 1222, 1224, 7, 12, 0, 0, 1223, 1222, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1226, 1, 0, 0, 0, 1225, 1217, 1, 0, 0, 0, 1225, 1218, 1, 0, 0, 0, 1225, 1220, 1, 0, 0, 0, 1226, 143, 1, 0, 0, 0, 1227, 1229, 7, 13, 0, 0, 1228, 1227, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1236, 1, 0, 0, 0, 1230, 1237, 3, 142, 71, 0, 1231, 1237, 5, 108, 0, 0, 1232, 1237, 5, 109, 0, 0, 1233, 1237, 5, 110, 0, 0, 1234, 1237, 5, 44, 0, 0, 1235, 1237, 5, 58, 0, 0, 1236, 1230, 1, 0, 0, 0, 1236, 1231, 1, 0, 0, 0, 1236, 1232, 1, 0, 0, 0, 1236, 1233, 1, 0, 0, 0, 1236, 1234, 1, 0, 0, 0, 1236, 1235, 1, 0, 0, 0, 1237, 145, 1, 0, 0, 0, 1238, 1242, 3, 144, 72, 0, 1239, 1242, 5, 111, 0, 0, 1240, 1242, 5, 60, 0, 0, 1241, 1238, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1241, 1240, 1, 0, 0, 0, 1242, 147, 1, 0, 0, 0, 1243, 1244, 7, 14, 0, 0, 1244, 149, 1, 0, 0, 0, 1245, 1246, 7, 15, 0, 0, 1246, 151, 1, 0, 0, 0, 1247, 1248, 7, 16, 0, 0, 1248, 153, 1, 0, 0, 0, 1249, 1252, 5, 106, 0, 0, 1250, 1252, 3, 152, 76, 0, 1251, 1249, 1, 0, 0, 0, 1251, 1250, 1, 0, 0, 0, 1252, 155, 1, 0, 0, 0, 1253, 1257, 5, 106, 0, 0, 1254, 1257, 3, 148, 74, 0, 1255, 1257, 3, 150, 75, 0, 1256, 1253, 1, 0, 0, 0, 1256, 1254, 1, 0, 0, 0, 1256, 1255, 1, 0, 0, 0, 1257, 157, 1, 0, 0, 0, 1258, 1259, 3, 162, 81, 0, 1259, 1260, 5, 123, 0, 0, 1260, 1261, 3, 144, 72, 0, 1261, 159, 1, 0, 0, 0, 1262, 1263, 5, 129, 0, 0, 1263, 1264, 3, 116, 58, 0, 1264, 1265, 5, 148, 0, 0, 1265, 161, 1, 0, 0, 0, 1266, 1269, 5, 111, 0, 0, 1267, 1269, 3, 164, 82, 0, 1268, 1266, 1, 0, 0, 0, 1268, 1267, 1, 0, 0, 0, 1269, 163, 1, 0, 0, 0, 1270, 1274, 5, 143, 0, 0, 1271, 1273, 3, 166, 83, 0, 1272, 1271, 1, 0, 0, 0, 1273, 1276, 1, 0, 0, 0, 1274, 1272, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1277, 1, 0, 0, 0, 1276, 1274, 1, 0, 0, 0, 1277, 1278, 5, 145, 0, 0, 1278, 165, 1, 0, 0, 0, 1279, 1280, 5, 158, 0, 0, 1280, 1281, 3, 116, 58, 0, 1281, 1282, 5, 148, 0, 0, 1282, 1285, 1, 0, 0, 0, 1283, 1285, 5, 157, 0, 0, 1284, 1279, 1, 0, 0, 0, 1284, 1283, 1, 0, 0, 0, 1285, 167, 1, 0, 0, 0, 1286, 1290, 5, 144, 0, 0, 1287, 1289, 3, 170, 85, 0, 1288, 1287, 1, 0, 0, 0, 1289, 1292, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1293, 1, 0, 0, 0, 1292, 1290, 1, 0, 0, 0, 1293, 1294, 5, 0, 0, 1, 1294, 169, 1, 0, 0, 0, 1295, 1296, 5, 160, 0, 0, 1296, 1297, 3, 116, 58, 0, 1297, 1298, 5, 148, 0, 0, 1298, 1301, 1, 0, 0, 0, 1299, 1301, 5, 159, 0, 0, 1300, 1295, 1, 0, 0, 0, 1300, 1299, 1, 0, 0, 0, 1301, 171, 1, 0, 0, 0, 167, 175, 182, 191, 198, 202, 216, 220, 223, 227, 230, 237, 241, 250, 255, 264, 272, 279, 283, 289, 294, 302, 309, 315, 327, 335, 349, 353, 358, 368, 377, 380, 384, 387, 391, 394, 397, 400, 403, 407, 411, 414, 417, 420, 424, 427, 436, 442, 463, 480, 497, 503, 509, 520, 522, 533, 536, 542, 550, 556, 558, 562, 567, 570, 573, 577, 581, 584, 586, 589, 593, 597, 600, 602, 604, 609, 620, 626, 633, 638, 642, 646, 652, 654, 661, 669, 672, 675, 694, 708, 724, 728, 739, 743, 754, 758, 765, 769, 776, 780, 785, 794, 798, 822, 839, 845, 848, 851, 861, 867, 870, 873, 881, 884, 888, 891, 905, 922, 927, 932, 938, 945, 957, 961, 964, 973, 987, 1003, 1032, 1040, 1042, 1044, 1053, 1057, 1066, 1070, 1074, 1079, 1086, 1097, 1106, 1113, 1126, 1133, 1137, 1149, 1155, 1158, 1165, 1177, 1183, 1187, 1193, 1200, 1209, 1213, 1223, 1225, 1228, 1236, 1241, 1251, 1256, 1268, 1274, 1284, 1290, 1300] \ No newline at end of file diff --git a/posthog/hogql/grammar/HogQLParser.py b/posthog/hogql/grammar/HogQLParser.py index 78d6f96dd87bd..d5695d483f93d 100644 --- a/posthog/hogql/grammar/HogQLParser.py +++ b/posthog/hogql/grammar/HogQLParser.py @@ -446,8 +446,8 @@ def serializedATN(): 1070,1,0,0,0,1068,1066,1,0,0,0,1069,1071,5,117,0,0,1070,1069,1,0, 0,0,1070,1071,1,0,0,0,1071,1075,1,0,0,0,1072,1073,5,131,0,0,1073, 1075,5,150,0,0,1074,1047,1,0,0,0,1074,1061,1,0,0,0,1074,1072,1,0, - 0,0,1075,1076,1,0,0,0,1076,1079,5,112,0,0,1077,1080,3,116,58,0,1078, - 1080,3,36,18,0,1079,1077,1,0,0,0,1079,1078,1,0,0,0,1080,119,1,0, + 0,0,1075,1076,1,0,0,0,1076,1079,5,112,0,0,1077,1080,3,36,18,0,1078, + 1080,3,116,58,0,1079,1077,1,0,0,0,1079,1078,1,0,0,0,1080,119,1,0, 0,0,1081,1082,5,133,0,0,1082,1086,3,156,78,0,1083,1085,3,122,61, 0,1084,1083,1,0,0,0,1085,1088,1,0,0,0,1086,1084,1,0,0,0,1086,1087, 1,0,0,0,1087,1089,1,0,0,0,1088,1086,1,0,0,0,1089,1090,5,152,0,0, @@ -511,7 +511,7 @@ def serializedATN(): 5,106,0,0,1254,1257,3,148,74,0,1255,1257,3,150,75,0,1256,1253,1, 0,0,0,1256,1254,1,0,0,0,1256,1255,1,0,0,0,1257,157,1,0,0,0,1258, 1259,3,162,81,0,1259,1260,5,123,0,0,1260,1261,3,144,72,0,1261,159, - 1,0,0,0,1262,1263,5,129,0,0,1263,1264,3,130,65,0,1264,1265,5,148, + 1,0,0,0,1262,1263,5,129,0,0,1263,1264,3,116,58,0,1264,1265,5,148, 0,0,1265,161,1,0,0,0,1266,1269,5,111,0,0,1267,1269,3,164,82,0,1268, 1266,1,0,0,0,1268,1267,1,0,0,0,1269,163,1,0,0,0,1270,1274,5,143, 0,0,1271,1273,3,166,83,0,1272,1271,1,0,0,0,1273,1276,1,0,0,0,1274, @@ -7663,14 +7663,14 @@ def identifier(self, i:int=None): def RPAREN(self): return self.getToken(HogQLParser.RPAREN, 0) - def columnExpr(self): - return self.getTypedRuleContext(HogQLParser.ColumnExprContext,0) - - def block(self): return self.getTypedRuleContext(HogQLParser.BlockContext,0) + def columnExpr(self): + return self.getTypedRuleContext(HogQLParser.ColumnExprContext,0) + + def COMMA(self, i:int=None): if i is None: return self.getTokens(HogQLParser.COMMA) @@ -7770,12 +7770,12 @@ def columnLambdaExpr(self): la_ = self._interp.adaptivePredict(self._input,136,self._ctx) if la_ == 1: self.state = 1077 - self.columnExpr(0) + self.block() pass elif la_ == 2: self.state = 1078 - self.block() + self.columnExpr(0) pass @@ -9701,8 +9701,8 @@ def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): def LBRACE(self): return self.getToken(HogQLParser.LBRACE, 0) - def nestedIdentifier(self): - return self.getTypedRuleContext(HogQLParser.NestedIdentifierContext,0) + def columnExpr(self): + return self.getTypedRuleContext(HogQLParser.ColumnExprContext,0) def RBRACE(self): @@ -9729,7 +9729,7 @@ def placeholder(self): self.state = 1262 self.match(HogQLParser.LBRACE) self.state = 1263 - self.nestedIdentifier() + self.columnExpr(0) self.state = 1264 self.match(HogQLParser.RBRACE) except RecognitionException as re: diff --git a/posthog/hogql/parser.py b/posthog/hogql/parser.py index 71708d1987032..960dbe3ebf824 100644 --- a/posthog/hogql/parser.py +++ b/posthog/hogql/parser.py @@ -1122,8 +1122,7 @@ def visitHogqlxTagAttribute(self, ctx: HogQLParser.HogqlxTagAttributeContext): return ast.HogQLXAttribute(name=name, value=ast.Constant(value=True)) def visitPlaceholder(self, ctx: HogQLParser.PlaceholderContext): - nested = self.visit(ctx.nestedIdentifier()) if ctx.nestedIdentifier() else [] - return ast.Placeholder(chain=nested) + return ast.Placeholder(expr=self.visit(ctx.columnExpr())) def visitColumnExprTemplateString(self, ctx: HogQLParser.ColumnExprTemplateStringContext): return self.visit(ctx.templateString()) diff --git a/posthog/hogql/placeholders.py b/posthog/hogql/placeholders.py index d0e835fb0d853..7a891e5568b75 100644 --- a/posthog/hogql/placeholders.py +++ b/posthog/hogql/placeholders.py @@ -34,7 +34,7 @@ def __init__(self, placeholders: Optional[dict[str, ast.Expr]]): def visit_placeholder(self, node): if not self.placeholders: - raise QueryError(f"Placeholders, such as {{{node.field}}}, are not supported in this context") + raise QueryError(f"Unresolved placeholder: {{{node.field}}}") if node.field in self.placeholders and self.placeholders[node.field] is not None: new_node = self.placeholders[node.field] new_node.start = node.start diff --git a/posthog/hogql/printer.py b/posthog/hogql/printer.py index 0ec806e643890..9ea47cf91f764 100644 --- a/posthog/hogql/printer.py +++ b/posthog/hogql/printer.py @@ -1165,7 +1165,7 @@ def visit_call(self, node: ast.Call): raise QueryError(f"Unsupported function call '{node.name}(...)'") def visit_placeholder(self, node: ast.Placeholder): - raise QueryError(f"Placeholders, such as {{{node.field}}}, are not supported in this context") + raise QueryError(f"Unresolved placeholder: {{{node.field}}}") def visit_alias(self, node: ast.Alias): # Skip hidden aliases completely. diff --git a/posthog/hogql/test/_test_parser.py b/posthog/hogql/test/_test_parser.py index 61c391d3c48ad..23356b1835484 100644 --- a/posthog/hogql/test/_test_parser.py +++ b/posthog/hogql/test/_test_parser.py @@ -735,7 +735,7 @@ def test_expr_with_ignored_sql_comment(self): def test_placeholders(self): self.assertEqual( self._expr("{foo}"), - ast.Placeholder(chain=["foo"]), + ast.Placeholder(expr=ast.Field(chain=["foo"])), ) self.assertEqual( self._expr("{foo}", {"foo": ast.Constant(value="bar")}), @@ -946,7 +946,7 @@ def test_select_from_placeholder(self): self._select("select 1 from {placeholder}"), ast.SelectQuery( select=[ast.Constant(value=1)], - select_from=ast.JoinExpr(table=ast.Placeholder(chain=["placeholder"])), + select_from=ast.JoinExpr(table=ast.Placeholder(expr=ast.Field(chain=["placeholder"]))), ), ) self.assertEqual( @@ -1336,7 +1336,7 @@ def test_select_placeholders(self): where=ast.CompareOperation( op=ast.CompareOperationOp.Eq, left=ast.Constant(value=1), - right=ast.Placeholder(chain=["hogql_val_1"]), + right=ast.Placeholder(expr=ast.Field(chain=["hogql_val_1"])), ), ), ) diff --git a/posthog/hogql/test/test_placeholders.py b/posthog/hogql/test/test_placeholders.py index c19409dfb90b5..ab376c7d307d5 100644 --- a/posthog/hogql/test/test_placeholders.py +++ b/posthog/hogql/test/test_placeholders.py @@ -15,7 +15,7 @@ def test_replace_placeholders_simple(self): expr = parse_expr("{foo}") self.assertEqual( expr, - ast.Placeholder(chain=["foo"], start=0, end=5), + ast.Placeholder(expr=ast.Field(chain=["foo"], start=0, end=5), start=0, end=5), ) expr2 = replace_placeholders(expr, {"foo": ast.Constant(value="bar")}) self.assertEqual( @@ -24,11 +24,11 @@ def test_replace_placeholders_simple(self): ) def test_replace_placeholders_error(self): - expr = ast.Placeholder(chain=["foo"]) + expr = ast.Placeholder(expr=ast.Field(chain=["foo"])) with self.assertRaises(QueryError) as context: replace_placeholders(expr, {}) self.assertEqual( - "Placeholders, such as {foo}, are not supported in this context", + "Unresolved placeholder: {foo}", str(context.exception), ) with self.assertRaises(QueryError) as context: @@ -47,7 +47,7 @@ def test_replace_placeholders_comparison(self): end=23, op=ast.CompareOperationOp.Lt, left=ast.Field(chain=["timestamp"], start=0, end=9), - right=ast.Placeholder(chain=["timestamp"], start=12, end=23), + right=ast.Placeholder(expr=ast.Field(chain=["timestamp"]), start=12, end=23), ), ) expr2 = replace_placeholders(expr, {"timestamp": ast.Constant(value=123)}) @@ -63,11 +63,11 @@ def test_replace_placeholders_comparison(self): ) def test_assert_no_placeholders(self): - expr = ast.Placeholder(chain=["foo"]) + expr = ast.Placeholder(expr=ast.Field(chain=["foo"])) with self.assertRaises(QueryError) as context: replace_placeholders(expr, None) self.assertEqual( - "Placeholders, such as {foo}, are not supported in this context", + "Unresolved placeholder: {foo}", str(context.exception), ) diff --git a/posthog/hogql/test/test_visitor.py b/posthog/hogql/test/test_visitor.py index acaa7a083e541..3bd5d25976c11 100644 --- a/posthog/hogql/test/test_visitor.py +++ b/posthog/hogql/test/test_visitor.py @@ -58,7 +58,7 @@ def test_everything_visitor(self): args=[ ast.Alias( alias="d", - expr=ast.Placeholder(chain=["e"]), + expr=ast.Placeholder(expr=ast.Field(chain=["e"])), ), ast.OrderExpr( expr=ast.Field(chain=["c"]), diff --git a/posthog/hogql/visitor.py b/posthog/hogql/visitor.py index 2a628181ae225..c5658bbbfe951 100644 --- a/posthog/hogql/visitor.py +++ b/posthog/hogql/visitor.py @@ -498,7 +498,7 @@ def visit_placeholder(self, node: ast.Placeholder): start=None if self.clear_locations else node.start, end=None if self.clear_locations else node.end, type=None if self.clear_types else node.type, - chain=node.chain, + expr=node.expr, ) def visit_call(self, node: ast.Call): diff --git a/posthog/hogql_queries/error_tracking_query_runner.py b/posthog/hogql_queries/error_tracking_query_runner.py index 30f3af1e14551..b9caf173a0eaf 100644 --- a/posthog/hogql_queries/error_tracking_query_runner.py +++ b/posthog/hogql_queries/error_tracking_query_runner.py @@ -105,7 +105,7 @@ def where(self): left=ast.Field(chain=["event"]), right=ast.Constant(value="$exception"), ), - ast.Placeholder(chain=["filters"]), + ast.Placeholder(expr=ast.Field(chain=["filters"])), ] groups = [] diff --git a/posthog/hogql_queries/insights/trends/aggregation_operations.py b/posthog/hogql_queries/insights/trends/aggregation_operations.py index 16c9d7bf028b5..efcf86db14bef 100644 --- a/posthog/hogql_queries/insights/trends/aggregation_operations.py +++ b/posthog/hogql_queries/insights/trends/aggregation_operations.py @@ -51,9 +51,13 @@ def select_aggregation(self) -> ast.Expr: actor = "e.distinct_id" if self.team.aggregate_users_by_distinct_id else "e.person_id" return parse_expr(f"count(DISTINCT {actor})") elif self.series.math == "weekly_active": - return ast.Placeholder(chain=["replaced"]) # This gets replaced when doing query orchestration + return ast.Placeholder( + expr=ast.Field(chain=["replaced"]) + ) # This gets replaced when doing query orchestration elif self.series.math == "monthly_active": - return ast.Placeholder(chain=["replaced"]) # This gets replaced when doing query orchestration + return ast.Placeholder( + expr=ast.Field(chain=["replaced"]) + ) # This gets replaced when doing query orchestration elif self.series.math == "unique_session": return parse_expr('count(DISTINCT e."$session_id")') elif self.series.math == "unique_group" and self.series.math_group_type_index is not None: From 08118e3cc83d07826302cc3508b777f786bf6336 Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Thu, 19 Sep 2024 23:12:08 +0200 Subject: [PATCH 02/11] try bump --- hogql_parser/pyproject.toml | 2 +- hogql_parser/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hogql_parser/pyproject.toml b/hogql_parser/pyproject.toml index 9e0c63839f5a4..8f08b6bdac78d 100644 --- a/hogql_parser/pyproject.toml +++ b/hogql_parser/pyproject.toml @@ -17,7 +17,7 @@ archs = [ # We could also build a universal wheel, but separate ones are lighter "arm64", ] before-build = [ # We need to install the libraries for each architecture separately - "brew uninstall --force boost antlr4-cpp-runtime", + "brew uninstall --ignore-dependencies --force boost antlr4-cpp-runtime", "brew fetch --force --bottle-tag=${ARCHFLAGS##'-arch '}_monterey boost antlr4-cpp-runtime", "brew install $(brew --cache --bottle-tag=${ARCHFLAGS##'-arch '}_monterey boost antlr4-cpp-runtime)", ] diff --git a/hogql_parser/setup.py b/hogql_parser/setup.py index 51ff99ac2a94e..99d9b27c87a64 100644 --- a/hogql_parser/setup.py +++ b/hogql_parser/setup.py @@ -32,7 +32,7 @@ setup( name="hogql_parser", - version="1.0.40", + version="1.0.41", url="https://github.com/PostHog/posthog/tree/master/hogql_parser", author="PostHog Inc.", author_email="hey@posthog.com", From a07a045b56a52f0fbc46e084afaf8b0f5baf5ffa Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 19 Sep 2024 22:08:40 +0000 Subject: [PATCH 03/11] Use new hogql-parser version --- requirements.in | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.in b/requirements.in index 5d6037a1e886f..e6661bc313431 100644 --- a/requirements.in +++ b/requirements.in @@ -104,7 +104,7 @@ phonenumberslite==8.13.6 openai==1.43.0 tiktoken==0.7.0 nh3==0.2.14 -hogql-parser==1.0.40 +hogql-parser==1.0.41 zxcvbn==4.4.28 zstd==1.5.5.1 xmlsec==1.3.13 # Do not change this version - it will break SAML diff --git a/requirements.txt b/requirements.txt index bb441a0771abd..c5e97a93259cf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -283,7 +283,7 @@ h11==0.13.0 # wsproto hexbytes==1.0.0 # via dlt -hogql-parser==1.0.40 +hogql-parser==1.0.41 # via -r requirements.in httpcore==1.0.2 # via httpx From d0969dffdc5d294d068054f9166af593031fe598 Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Sat, 21 Sep 2024 02:36:11 +0200 Subject: [PATCH 04/11] no more placeholders --- hogql_parser/HogQLParser.cpp | 1059 ++++++------- hogql_parser/HogQLParser.h | 13 +- hogql_parser/HogQLParser.interp | 2 +- hogql_parser/HogQLParserBaseVisitor.h | 4 + hogql_parser/HogQLParserVisitor.h | 2 + hogql_parser/parser.cpp | 6 +- posthog/hogql/ast.py | 21 +- posthog/hogql/bytecode.py | 3 - .../schema/util/where_clause_extractor.py | 9 - posthog/hogql/filters.py | 10 +- posthog/hogql/grammar/HogQLParser.g4 | 3 +- posthog/hogql/grammar/HogQLParser.interp | 2 +- posthog/hogql/grammar/HogQLParser.py | 1340 +++++++++-------- posthog/hogql/grammar/HogQLParserVisitor.py | 5 + posthog/hogql/parser.py | 5 +- posthog/hogql/placeholders.py | 25 +- posthog/hogql/printer.py | 4 +- posthog/hogql/resolver.py | 10 +- posthog/hogql/test/_test_parser.py | 8 +- posthog/hogql/test/test_placeholders.py | 10 +- posthog/hogql/test/test_visitor.py | 2 +- posthog/hogql/visitor.py | 11 - .../error_tracking_query_runner.py | 2 +- .../insights/retention_query_runner.py | 2 +- .../insights/trends/aggregation_operations.py | 8 +- .../insights/trends/trends_query_builder.py | 2 +- 26 files changed, 1309 insertions(+), 1259 deletions(-) diff --git a/hogql_parser/HogQLParser.cpp b/hogql_parser/HogQLParser.cpp index 09bf6617add30..8196100e9f2e7 100644 --- a/hogql_parser/HogQLParser.cpp +++ b/hogql_parser/HogQLParser.cpp @@ -113,7 +113,7 @@ void hogqlparserParserInitialize() { } ); static const int32_t serializedATNSegment[] = { - 4,1,160,1303,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, + 4,1,160,1302,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, @@ -186,38 +186,38 @@ void hogqlparserParserInitialize() { 889,8,58,1,58,3,58,892,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, 58,1,58,1,58,1,58,3,58,906,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, 58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,923,8,58,1,58,1,58,1,58,3, - 58,928,8,58,1,58,1,58,1,58,3,58,933,8,58,1,58,1,58,1,58,1,58,3,58,939, - 8,58,1,58,1,58,1,58,1,58,1,58,3,58,946,8,58,1,58,1,58,1,58,1,58,1,58, - 1,58,1,58,1,58,1,58,1,58,3,58,958,8,58,1,58,1,58,3,58,962,8,58,1,58,3, - 58,965,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,974,8,58,1,58,1,58, - 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,988,8,58,1,58, - 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58, - 1004,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, - 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, - 1,58,3,58,1033,8,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,1041,8,58,5,58, - 1043,8,58,10,58,12,58,1046,9,58,1,59,1,59,1,59,1,59,5,59,1052,8,59,10, - 59,12,59,1055,9,59,1,59,3,59,1058,8,59,1,59,1,59,1,59,1,59,1,59,5,59, - 1065,8,59,10,59,12,59,1068,9,59,1,59,3,59,1071,8,59,1,59,1,59,3,59,1075, - 8,59,1,59,1,59,1,59,3,59,1080,8,59,1,60,1,60,1,60,5,60,1085,8,60,10,60, - 12,60,1088,9,60,1,60,1,60,1,60,1,60,1,60,1,60,5,60,1096,8,60,10,60,12, - 60,1099,9,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,1107,8,60,1,60,1,60,1, - 60,1,60,1,60,3,60,1114,8,60,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1, - 61,1,61,1,61,3,61,1127,8,61,1,62,1,62,1,62,5,62,1132,8,62,10,62,12,62, - 1135,9,62,1,62,3,62,1138,8,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63, - 1,63,1,63,3,63,1150,8,63,1,64,1,64,1,64,1,64,3,64,1156,8,64,1,64,3,64, - 1159,8,64,1,65,1,65,1,65,5,65,1164,8,65,10,65,12,65,1167,9,65,1,66,1, - 66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,3,66,1178,8,66,1,66,1,66,1,66,1, - 66,3,66,1184,8,66,5,66,1186,8,66,10,66,12,66,1189,9,66,1,67,1,67,1,67, - 3,67,1194,8,67,1,67,1,67,1,68,1,68,1,68,3,68,1201,8,68,1,68,1,68,1,69, - 1,69,1,69,5,69,1208,8,69,10,69,12,69,1211,9,69,1,69,3,69,1214,8,69,1, - 70,1,70,1,71,1,71,1,71,1,71,1,71,1,71,3,71,1224,8,71,3,71,1226,8,71,1, - 72,3,72,1229,8,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,1237,8,72,1,73,1, - 73,1,73,3,73,1242,8,73,1,74,1,74,1,75,1,75,1,76,1,76,1,77,1,77,3,77,1252, - 8,77,1,78,1,78,1,78,3,78,1257,8,78,1,79,1,79,1,79,1,79,1,80,1,80,1,80, - 1,80,1,81,1,81,3,81,1269,8,81,1,82,1,82,5,82,1273,8,82,10,82,12,82,1276, - 9,82,1,82,1,82,1,83,1,83,1,83,1,83,1,83,3,83,1285,8,83,1,84,1,84,5,84, - 1289,8,84,10,84,12,84,1292,9,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,3, - 85,1301,8,85,1,85,0,3,78,116,132,86,0,2,4,6,8,10,12,14,16,18,20,22,24, + 58,928,8,58,1,58,1,58,1,58,1,58,3,58,934,8,58,1,58,1,58,1,58,1,58,3,58, + 940,8,58,1,58,1,58,1,58,1,58,1,58,3,58,947,8,58,1,58,1,58,1,58,1,58,1, + 58,1,58,1,58,1,58,1,58,1,58,3,58,959,8,58,1,58,1,58,3,58,963,8,58,1,58, + 3,58,966,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,975,8,58,1,58,1, + 58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,989,8,58,1, + 58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3, + 58,1005,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, + 58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, + 58,1,58,3,58,1034,8,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,1042,8,58,5, + 58,1044,8,58,10,58,12,58,1047,9,58,1,59,1,59,1,59,1,59,5,59,1053,8,59, + 10,59,12,59,1056,9,59,1,59,3,59,1059,8,59,1,59,1,59,1,59,1,59,1,59,5, + 59,1066,8,59,10,59,12,59,1069,9,59,1,59,3,59,1072,8,59,1,59,1,59,3,59, + 1076,8,59,1,59,1,59,1,59,3,59,1081,8,59,1,60,1,60,1,60,5,60,1086,8,60, + 10,60,12,60,1089,9,60,1,60,1,60,1,60,1,60,1,60,1,60,5,60,1097,8,60,10, + 60,12,60,1100,9,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,1108,8,60,1,60, + 1,60,1,60,1,60,1,60,3,60,1115,8,60,1,61,1,61,1,61,1,61,1,61,1,61,1,61, + 1,61,1,61,1,61,1,61,3,61,1128,8,61,1,62,1,62,1,62,5,62,1133,8,62,10,62, + 12,62,1136,9,62,1,62,3,62,1139,8,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63, + 1,63,1,63,1,63,3,63,1151,8,63,1,64,1,64,1,64,1,64,3,64,1157,8,64,1,64, + 3,64,1160,8,64,1,65,1,65,1,65,5,65,1165,8,65,10,65,12,65,1168,9,65,1, + 66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,3,66,1179,8,66,1,66,1,66,1, + 66,1,66,3,66,1185,8,66,5,66,1187,8,66,10,66,12,66,1190,9,66,1,67,1,67, + 1,67,3,67,1195,8,67,1,67,1,67,1,68,1,68,1,68,3,68,1202,8,68,1,68,1,68, + 1,69,1,69,1,69,5,69,1209,8,69,10,69,12,69,1212,9,69,1,69,3,69,1215,8, + 69,1,70,1,70,1,71,1,71,1,71,1,71,1,71,1,71,3,71,1225,8,71,3,71,1227,8, + 71,1,72,3,72,1230,8,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,1238,8,72,1, + 73,1,73,1,73,3,73,1243,8,73,1,74,1,74,1,75,1,75,1,76,1,76,1,77,1,77,3, + 77,1253,8,77,1,78,1,78,1,78,3,78,1258,8,78,1,79,1,79,1,79,1,79,1,80,1, + 80,1,81,1,81,3,81,1268,8,81,1,82,1,82,5,82,1272,8,82,10,82,12,82,1275, + 9,82,1,82,1,82,1,83,1,83,1,83,1,83,1,83,3,83,1284,8,83,1,84,1,84,5,84, + 1288,8,84,10,84,12,84,1291,9,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,3, + 85,1300,8,85,1,85,0,3,78,116,132,86,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, @@ -240,13 +240,13 @@ void hogqlparserParserInitialize() { 0,88,628,1,0,0,0,90,636,1,0,0,0,92,654,1,0,0,0,94,656,1,0,0,0,96,664, 1,0,0,0,98,669,1,0,0,0,100,677,1,0,0,0,102,681,1,0,0,0,104,685,1,0,0, 0,106,694,1,0,0,0,108,708,1,0,0,0,110,710,1,0,0,0,112,769,1,0,0,0,114, - 771,1,0,0,0,116,932,1,0,0,0,118,1074,1,0,0,0,120,1113,1,0,0,0,122,1126, - 1,0,0,0,124,1128,1,0,0,0,126,1149,1,0,0,0,128,1158,1,0,0,0,130,1160,1, - 0,0,0,132,1177,1,0,0,0,134,1190,1,0,0,0,136,1200,1,0,0,0,138,1204,1,0, - 0,0,140,1215,1,0,0,0,142,1225,1,0,0,0,144,1228,1,0,0,0,146,1241,1,0,0, - 0,148,1243,1,0,0,0,150,1245,1,0,0,0,152,1247,1,0,0,0,154,1251,1,0,0,0, - 156,1256,1,0,0,0,158,1258,1,0,0,0,160,1262,1,0,0,0,162,1268,1,0,0,0,164, - 1270,1,0,0,0,166,1284,1,0,0,0,168,1286,1,0,0,0,170,1300,1,0,0,0,172,174, + 771,1,0,0,0,116,933,1,0,0,0,118,1075,1,0,0,0,120,1114,1,0,0,0,122,1127, + 1,0,0,0,124,1129,1,0,0,0,126,1150,1,0,0,0,128,1159,1,0,0,0,130,1161,1, + 0,0,0,132,1178,1,0,0,0,134,1191,1,0,0,0,136,1201,1,0,0,0,138,1205,1,0, + 0,0,140,1216,1,0,0,0,142,1226,1,0,0,0,144,1229,1,0,0,0,146,1242,1,0,0, + 0,148,1244,1,0,0,0,150,1246,1,0,0,0,152,1248,1,0,0,0,154,1252,1,0,0,0, + 156,1257,1,0,0,0,158,1259,1,0,0,0,160,1263,1,0,0,0,162,1267,1,0,0,0,164, + 1269,1,0,0,0,166,1283,1,0,0,0,168,1285,1,0,0,0,170,1299,1,0,0,0,172,174, 3,2,1,0,173,172,1,0,0,0,174,177,1,0,0,0,175,173,1,0,0,0,175,176,1,0,0, 0,176,178,1,0,0,0,177,175,1,0,0,0,178,179,5,0,0,1,179,1,1,0,0,0,180,183, 3,6,3,0,181,183,3,10,5,0,182,180,1,0,0,0,182,181,1,0,0,0,183,3,1,0,0, @@ -427,179 +427,180 @@ void hogqlparserParserInitialize() { 3,116,58,0,789,790,5,84,0,0,790,791,3,116,58,0,791,793,1,0,0,0,792,787, 1,0,0,0,793,794,1,0,0,0,794,792,1,0,0,0,794,795,1,0,0,0,795,798,1,0,0, 0,796,797,5,25,0,0,797,799,3,116,58,0,798,796,1,0,0,0,798,799,1,0,0,0, - 799,800,1,0,0,0,800,801,5,26,0,0,801,933,1,0,0,0,802,803,5,13,0,0,803, + 799,800,1,0,0,0,800,801,5,26,0,0,801,934,1,0,0,0,802,803,5,13,0,0,803, 804,5,131,0,0,804,805,3,116,58,0,805,806,5,6,0,0,806,807,3,112,56,0,807, - 808,5,150,0,0,808,933,1,0,0,0,809,810,5,20,0,0,810,933,5,111,0,0,811, - 812,5,46,0,0,812,813,3,116,58,0,813,814,3,148,74,0,814,933,1,0,0,0,815, + 808,5,150,0,0,808,934,1,0,0,0,809,810,5,20,0,0,810,934,5,111,0,0,811, + 812,5,46,0,0,812,813,3,116,58,0,813,814,3,148,74,0,814,934,1,0,0,0,815, 816,5,83,0,0,816,817,5,131,0,0,817,818,3,116,58,0,818,819,5,34,0,0,819, 822,3,116,58,0,820,821,5,33,0,0,821,823,3,116,58,0,822,820,1,0,0,0,822, - 823,1,0,0,0,823,824,1,0,0,0,824,825,5,150,0,0,825,933,1,0,0,0,826,827, - 5,87,0,0,827,933,5,111,0,0,828,829,5,92,0,0,829,830,5,131,0,0,830,831, + 823,1,0,0,0,823,824,1,0,0,0,824,825,5,150,0,0,825,934,1,0,0,0,826,827, + 5,87,0,0,827,934,5,111,0,0,828,829,5,92,0,0,829,830,5,131,0,0,830,831, 7,10,0,0,831,832,3,162,81,0,832,833,5,34,0,0,833,834,3,116,58,0,834,835, - 5,150,0,0,835,933,1,0,0,0,836,837,3,156,78,0,837,839,5,131,0,0,838,840, + 5,150,0,0,835,934,1,0,0,0,836,837,3,156,78,0,837,839,5,131,0,0,838,840, 3,114,57,0,839,838,1,0,0,0,839,840,1,0,0,0,840,841,1,0,0,0,841,842,5, 150,0,0,842,851,1,0,0,0,843,845,5,131,0,0,844,846,5,24,0,0,845,844,1, 0,0,0,845,846,1,0,0,0,846,848,1,0,0,0,847,849,3,114,57,0,848,847,1,0, 0,0,848,849,1,0,0,0,849,850,1,0,0,0,850,852,5,150,0,0,851,843,1,0,0,0, 851,852,1,0,0,0,852,853,1,0,0,0,853,854,5,67,0,0,854,855,5,131,0,0,855, - 856,3,98,49,0,856,857,5,150,0,0,857,933,1,0,0,0,858,859,3,156,78,0,859, + 856,3,98,49,0,856,857,5,150,0,0,857,934,1,0,0,0,858,859,3,156,78,0,859, 861,5,131,0,0,860,862,3,114,57,0,861,860,1,0,0,0,861,862,1,0,0,0,862, 863,1,0,0,0,863,864,5,150,0,0,864,873,1,0,0,0,865,867,5,131,0,0,866,868, 5,24,0,0,867,866,1,0,0,0,867,868,1,0,0,0,868,870,1,0,0,0,869,871,3,114, 57,0,870,869,1,0,0,0,870,871,1,0,0,0,871,872,1,0,0,0,872,874,5,150,0, 0,873,865,1,0,0,0,873,874,1,0,0,0,874,875,1,0,0,0,875,876,5,67,0,0,876, - 877,3,156,78,0,877,933,1,0,0,0,878,884,3,156,78,0,879,881,5,131,0,0,880, + 877,3,156,78,0,877,934,1,0,0,0,878,884,3,156,78,0,879,881,5,131,0,0,880, 882,3,114,57,0,881,880,1,0,0,0,881,882,1,0,0,0,882,883,1,0,0,0,883,885, 5,150,0,0,884,879,1,0,0,0,884,885,1,0,0,0,885,886,1,0,0,0,886,888,5,131, 0,0,887,889,5,24,0,0,888,887,1,0,0,0,888,889,1,0,0,0,889,891,1,0,0,0, 890,892,3,114,57,0,891,890,1,0,0,0,891,892,1,0,0,0,892,893,1,0,0,0,893, - 894,5,150,0,0,894,933,1,0,0,0,895,933,3,120,60,0,896,933,3,164,82,0,897, - 933,3,146,73,0,898,899,5,119,0,0,899,933,3,116,58,20,900,901,5,59,0,0, - 901,933,3,116,58,14,902,903,3,136,68,0,903,904,5,121,0,0,904,906,1,0, - 0,0,905,902,1,0,0,0,905,906,1,0,0,0,906,907,1,0,0,0,907,933,5,113,0,0, - 908,909,5,131,0,0,909,910,3,44,22,0,910,911,5,150,0,0,911,933,1,0,0,0, - 912,913,5,131,0,0,913,914,3,116,58,0,914,915,5,150,0,0,915,933,1,0,0, - 0,916,917,5,131,0,0,917,918,3,114,57,0,918,919,5,150,0,0,919,933,1,0, + 894,5,150,0,0,894,934,1,0,0,0,895,934,3,120,60,0,896,934,3,164,82,0,897, + 934,3,146,73,0,898,899,5,119,0,0,899,934,3,116,58,21,900,901,5,59,0,0, + 901,934,3,116,58,15,902,903,3,136,68,0,903,904,5,121,0,0,904,906,1,0, + 0,0,905,902,1,0,0,0,905,906,1,0,0,0,906,907,1,0,0,0,907,934,5,113,0,0, + 908,909,5,131,0,0,909,910,3,44,22,0,910,911,5,150,0,0,911,934,1,0,0,0, + 912,913,5,131,0,0,913,914,3,116,58,0,914,915,5,150,0,0,915,934,1,0,0, + 0,916,917,5,131,0,0,917,918,3,114,57,0,918,919,5,150,0,0,919,934,1,0, 0,0,920,922,5,130,0,0,921,923,3,114,57,0,922,921,1,0,0,0,922,923,1,0, - 0,0,923,924,1,0,0,0,924,933,5,149,0,0,925,927,5,129,0,0,926,928,3,40, - 20,0,927,926,1,0,0,0,927,928,1,0,0,0,928,929,1,0,0,0,929,933,5,148,0, - 0,930,933,3,118,59,0,931,933,3,128,64,0,932,782,1,0,0,0,932,802,1,0,0, - 0,932,809,1,0,0,0,932,811,1,0,0,0,932,815,1,0,0,0,932,826,1,0,0,0,932, - 828,1,0,0,0,932,836,1,0,0,0,932,858,1,0,0,0,932,878,1,0,0,0,932,895,1, - 0,0,0,932,896,1,0,0,0,932,897,1,0,0,0,932,898,1,0,0,0,932,900,1,0,0,0, - 932,905,1,0,0,0,932,908,1,0,0,0,932,912,1,0,0,0,932,916,1,0,0,0,932,920, - 1,0,0,0,932,925,1,0,0,0,932,930,1,0,0,0,932,931,1,0,0,0,933,1044,1,0, - 0,0,934,938,10,19,0,0,935,939,5,113,0,0,936,939,5,152,0,0,937,939,5,139, - 0,0,938,935,1,0,0,0,938,936,1,0,0,0,938,937,1,0,0,0,939,940,1,0,0,0,940, - 1043,3,116,58,20,941,945,10,18,0,0,942,946,5,140,0,0,943,946,5,119,0, - 0,944,946,5,118,0,0,945,942,1,0,0,0,945,943,1,0,0,0,945,944,1,0,0,0,946, - 947,1,0,0,0,947,1043,3,116,58,19,948,973,10,17,0,0,949,974,5,122,0,0, - 950,974,5,123,0,0,951,974,5,134,0,0,952,974,5,132,0,0,953,974,5,133,0, - 0,954,974,5,124,0,0,955,974,5,125,0,0,956,958,5,59,0,0,957,956,1,0,0, - 0,957,958,1,0,0,0,958,959,1,0,0,0,959,961,5,43,0,0,960,962,5,15,0,0,961, - 960,1,0,0,0,961,962,1,0,0,0,962,974,1,0,0,0,963,965,5,59,0,0,964,963, - 1,0,0,0,964,965,1,0,0,0,965,966,1,0,0,0,966,974,7,11,0,0,967,974,5,146, - 0,0,968,974,5,147,0,0,969,974,5,136,0,0,970,974,5,127,0,0,971,974,5,128, - 0,0,972,974,5,135,0,0,973,949,1,0,0,0,973,950,1,0,0,0,973,951,1,0,0,0, - 973,952,1,0,0,0,973,953,1,0,0,0,973,954,1,0,0,0,973,955,1,0,0,0,973,957, - 1,0,0,0,973,964,1,0,0,0,973,967,1,0,0,0,973,968,1,0,0,0,973,969,1,0,0, - 0,973,970,1,0,0,0,973,971,1,0,0,0,973,972,1,0,0,0,974,975,1,0,0,0,975, - 1043,3,116,58,18,976,977,10,15,0,0,977,978,5,138,0,0,978,1043,3,116,58, - 16,979,980,10,13,0,0,980,981,5,2,0,0,981,1043,3,116,58,14,982,983,10, - 12,0,0,983,984,5,64,0,0,984,1043,3,116,58,13,985,987,10,11,0,0,986,988, - 5,59,0,0,987,986,1,0,0,0,987,988,1,0,0,0,988,989,1,0,0,0,989,990,5,9, - 0,0,990,991,3,116,58,0,991,992,5,2,0,0,992,993,3,116,58,12,993,1043,1, - 0,0,0,994,995,10,10,0,0,995,996,5,141,0,0,996,997,3,116,58,0,997,998, - 5,116,0,0,998,999,3,116,58,10,999,1043,1,0,0,0,1000,1001,10,30,0,0,1001, - 1003,5,131,0,0,1002,1004,3,114,57,0,1003,1002,1,0,0,0,1003,1004,1,0,0, - 0,1004,1005,1,0,0,0,1005,1043,5,150,0,0,1006,1007,10,26,0,0,1007,1008, - 5,130,0,0,1008,1009,3,116,58,0,1009,1010,5,149,0,0,1010,1043,1,0,0,0, - 1011,1012,10,25,0,0,1012,1013,5,121,0,0,1013,1043,5,109,0,0,1014,1015, - 10,24,0,0,1015,1016,5,121,0,0,1016,1043,3,156,78,0,1017,1018,10,23,0, - 0,1018,1019,5,137,0,0,1019,1020,5,130,0,0,1020,1021,3,116,58,0,1021,1022, - 5,149,0,0,1022,1043,1,0,0,0,1023,1024,10,22,0,0,1024,1025,5,137,0,0,1025, - 1043,5,109,0,0,1026,1027,10,21,0,0,1027,1028,5,137,0,0,1028,1043,3,156, - 78,0,1029,1030,10,16,0,0,1030,1032,5,47,0,0,1031,1033,5,59,0,0,1032,1031, - 1,0,0,0,1032,1033,1,0,0,0,1033,1034,1,0,0,0,1034,1043,5,60,0,0,1035,1040, - 10,9,0,0,1036,1037,5,6,0,0,1037,1041,3,156,78,0,1038,1039,5,6,0,0,1039, - 1041,5,111,0,0,1040,1036,1,0,0,0,1040,1038,1,0,0,0,1041,1043,1,0,0,0, - 1042,934,1,0,0,0,1042,941,1,0,0,0,1042,948,1,0,0,0,1042,976,1,0,0,0,1042, - 979,1,0,0,0,1042,982,1,0,0,0,1042,985,1,0,0,0,1042,994,1,0,0,0,1042,1000, - 1,0,0,0,1042,1006,1,0,0,0,1042,1011,1,0,0,0,1042,1014,1,0,0,0,1042,1017, - 1,0,0,0,1042,1023,1,0,0,0,1042,1026,1,0,0,0,1042,1029,1,0,0,0,1042,1035, - 1,0,0,0,1043,1046,1,0,0,0,1044,1042,1,0,0,0,1044,1045,1,0,0,0,1045,117, - 1,0,0,0,1046,1044,1,0,0,0,1047,1048,5,131,0,0,1048,1053,3,156,78,0,1049, - 1050,5,117,0,0,1050,1052,3,156,78,0,1051,1049,1,0,0,0,1052,1055,1,0,0, - 0,1053,1051,1,0,0,0,1053,1054,1,0,0,0,1054,1057,1,0,0,0,1055,1053,1,0, - 0,0,1056,1058,5,117,0,0,1057,1056,1,0,0,0,1057,1058,1,0,0,0,1058,1059, - 1,0,0,0,1059,1060,5,150,0,0,1060,1075,1,0,0,0,1061,1066,3,156,78,0,1062, - 1063,5,117,0,0,1063,1065,3,156,78,0,1064,1062,1,0,0,0,1065,1068,1,0,0, - 0,1066,1064,1,0,0,0,1066,1067,1,0,0,0,1067,1070,1,0,0,0,1068,1066,1,0, - 0,0,1069,1071,5,117,0,0,1070,1069,1,0,0,0,1070,1071,1,0,0,0,1071,1075, - 1,0,0,0,1072,1073,5,131,0,0,1073,1075,5,150,0,0,1074,1047,1,0,0,0,1074, - 1061,1,0,0,0,1074,1072,1,0,0,0,1075,1076,1,0,0,0,1076,1079,5,112,0,0, - 1077,1080,3,36,18,0,1078,1080,3,116,58,0,1079,1077,1,0,0,0,1079,1078, - 1,0,0,0,1080,119,1,0,0,0,1081,1082,5,133,0,0,1082,1086,3,156,78,0,1083, - 1085,3,122,61,0,1084,1083,1,0,0,0,1085,1088,1,0,0,0,1086,1084,1,0,0,0, - 1086,1087,1,0,0,0,1087,1089,1,0,0,0,1088,1086,1,0,0,0,1089,1090,5,152, - 0,0,1090,1091,5,125,0,0,1091,1114,1,0,0,0,1092,1093,5,133,0,0,1093,1097, - 3,156,78,0,1094,1096,3,122,61,0,1095,1094,1,0,0,0,1096,1099,1,0,0,0,1097, - 1095,1,0,0,0,1097,1098,1,0,0,0,1098,1100,1,0,0,0,1099,1097,1,0,0,0,1100, - 1106,5,125,0,0,1101,1107,3,120,60,0,1102,1103,5,129,0,0,1103,1104,3,116, - 58,0,1104,1105,5,148,0,0,1105,1107,1,0,0,0,1106,1101,1,0,0,0,1106,1102, - 1,0,0,0,1106,1107,1,0,0,0,1107,1108,1,0,0,0,1108,1109,5,133,0,0,1109, - 1110,5,152,0,0,1110,1111,3,156,78,0,1111,1112,5,125,0,0,1112,1114,1,0, - 0,0,1113,1081,1,0,0,0,1113,1092,1,0,0,0,1114,121,1,0,0,0,1115,1116,3, - 156,78,0,1116,1117,5,123,0,0,1117,1118,3,162,81,0,1118,1127,1,0,0,0,1119, - 1120,3,156,78,0,1120,1121,5,123,0,0,1121,1122,5,129,0,0,1122,1123,3,116, - 58,0,1123,1124,5,148,0,0,1124,1127,1,0,0,0,1125,1127,3,156,78,0,1126, - 1115,1,0,0,0,1126,1119,1,0,0,0,1126,1125,1,0,0,0,1127,123,1,0,0,0,1128, - 1133,3,126,63,0,1129,1130,5,117,0,0,1130,1132,3,126,63,0,1131,1129,1, - 0,0,0,1132,1135,1,0,0,0,1133,1131,1,0,0,0,1133,1134,1,0,0,0,1134,1137, - 1,0,0,0,1135,1133,1,0,0,0,1136,1138,5,117,0,0,1137,1136,1,0,0,0,1137, - 1138,1,0,0,0,1138,125,1,0,0,0,1139,1140,3,156,78,0,1140,1141,5,6,0,0, - 1141,1142,5,131,0,0,1142,1143,3,44,22,0,1143,1144,5,150,0,0,1144,1150, - 1,0,0,0,1145,1146,3,116,58,0,1146,1147,5,6,0,0,1147,1148,3,156,78,0,1148, - 1150,1,0,0,0,1149,1139,1,0,0,0,1149,1145,1,0,0,0,1150,127,1,0,0,0,1151, - 1159,3,160,80,0,1152,1153,3,136,68,0,1153,1154,5,121,0,0,1154,1156,1, - 0,0,0,1155,1152,1,0,0,0,1155,1156,1,0,0,0,1156,1157,1,0,0,0,1157,1159, - 3,130,65,0,1158,1151,1,0,0,0,1158,1155,1,0,0,0,1159,129,1,0,0,0,1160, - 1165,3,156,78,0,1161,1162,5,121,0,0,1162,1164,3,156,78,0,1163,1161,1, - 0,0,0,1164,1167,1,0,0,0,1165,1163,1,0,0,0,1165,1166,1,0,0,0,1166,131, - 1,0,0,0,1167,1165,1,0,0,0,1168,1169,6,66,-1,0,1169,1178,3,136,68,0,1170, - 1178,3,134,67,0,1171,1172,5,131,0,0,1172,1173,3,44,22,0,1173,1174,5,150, - 0,0,1174,1178,1,0,0,0,1175,1178,3,120,60,0,1176,1178,3,160,80,0,1177, - 1168,1,0,0,0,1177,1170,1,0,0,0,1177,1171,1,0,0,0,1177,1175,1,0,0,0,1177, - 1176,1,0,0,0,1178,1187,1,0,0,0,1179,1183,10,3,0,0,1180,1184,3,154,77, - 0,1181,1182,5,6,0,0,1182,1184,3,156,78,0,1183,1180,1,0,0,0,1183,1181, - 1,0,0,0,1184,1186,1,0,0,0,1185,1179,1,0,0,0,1186,1189,1,0,0,0,1187,1185, - 1,0,0,0,1187,1188,1,0,0,0,1188,133,1,0,0,0,1189,1187,1,0,0,0,1190,1191, - 3,156,78,0,1191,1193,5,131,0,0,1192,1194,3,138,69,0,1193,1192,1,0,0,0, - 1193,1194,1,0,0,0,1194,1195,1,0,0,0,1195,1196,5,150,0,0,1196,135,1,0, - 0,0,1197,1198,3,140,70,0,1198,1199,5,121,0,0,1199,1201,1,0,0,0,1200,1197, - 1,0,0,0,1200,1201,1,0,0,0,1201,1202,1,0,0,0,1202,1203,3,156,78,0,1203, - 137,1,0,0,0,1204,1209,3,116,58,0,1205,1206,5,117,0,0,1206,1208,3,116, - 58,0,1207,1205,1,0,0,0,1208,1211,1,0,0,0,1209,1207,1,0,0,0,1209,1210, - 1,0,0,0,1210,1213,1,0,0,0,1211,1209,1,0,0,0,1212,1214,5,117,0,0,1213, - 1212,1,0,0,0,1213,1214,1,0,0,0,1214,139,1,0,0,0,1215,1216,3,156,78,0, - 1216,141,1,0,0,0,1217,1226,5,107,0,0,1218,1219,5,121,0,0,1219,1226,7, - 12,0,0,1220,1221,5,109,0,0,1221,1223,5,121,0,0,1222,1224,7,12,0,0,1223, - 1222,1,0,0,0,1223,1224,1,0,0,0,1224,1226,1,0,0,0,1225,1217,1,0,0,0,1225, - 1218,1,0,0,0,1225,1220,1,0,0,0,1226,143,1,0,0,0,1227,1229,7,13,0,0,1228, - 1227,1,0,0,0,1228,1229,1,0,0,0,1229,1236,1,0,0,0,1230,1237,3,142,71,0, - 1231,1237,5,108,0,0,1232,1237,5,109,0,0,1233,1237,5,110,0,0,1234,1237, - 5,44,0,0,1235,1237,5,58,0,0,1236,1230,1,0,0,0,1236,1231,1,0,0,0,1236, - 1232,1,0,0,0,1236,1233,1,0,0,0,1236,1234,1,0,0,0,1236,1235,1,0,0,0,1237, - 145,1,0,0,0,1238,1242,3,144,72,0,1239,1242,5,111,0,0,1240,1242,5,60,0, - 0,1241,1238,1,0,0,0,1241,1239,1,0,0,0,1241,1240,1,0,0,0,1242,147,1,0, - 0,0,1243,1244,7,14,0,0,1244,149,1,0,0,0,1245,1246,7,15,0,0,1246,151,1, - 0,0,0,1247,1248,7,16,0,0,1248,153,1,0,0,0,1249,1252,5,106,0,0,1250,1252, - 3,152,76,0,1251,1249,1,0,0,0,1251,1250,1,0,0,0,1252,155,1,0,0,0,1253, - 1257,5,106,0,0,1254,1257,3,148,74,0,1255,1257,3,150,75,0,1256,1253,1, - 0,0,0,1256,1254,1,0,0,0,1256,1255,1,0,0,0,1257,157,1,0,0,0,1258,1259, - 3,162,81,0,1259,1260,5,123,0,0,1260,1261,3,144,72,0,1261,159,1,0,0,0, - 1262,1263,5,129,0,0,1263,1264,3,116,58,0,1264,1265,5,148,0,0,1265,161, - 1,0,0,0,1266,1269,5,111,0,0,1267,1269,3,164,82,0,1268,1266,1,0,0,0,1268, - 1267,1,0,0,0,1269,163,1,0,0,0,1270,1274,5,143,0,0,1271,1273,3,166,83, - 0,1272,1271,1,0,0,0,1273,1276,1,0,0,0,1274,1272,1,0,0,0,1274,1275,1,0, - 0,0,1275,1277,1,0,0,0,1276,1274,1,0,0,0,1277,1278,5,145,0,0,1278,165, - 1,0,0,0,1279,1280,5,158,0,0,1280,1281,3,116,58,0,1281,1282,5,148,0,0, - 1282,1285,1,0,0,0,1283,1285,5,157,0,0,1284,1279,1,0,0,0,1284,1283,1,0, - 0,0,1285,167,1,0,0,0,1286,1290,5,144,0,0,1287,1289,3,170,85,0,1288,1287, - 1,0,0,0,1289,1292,1,0,0,0,1290,1288,1,0,0,0,1290,1291,1,0,0,0,1291,1293, - 1,0,0,0,1292,1290,1,0,0,0,1293,1294,5,0,0,1,1294,169,1,0,0,0,1295,1296, - 5,160,0,0,1296,1297,3,116,58,0,1297,1298,5,148,0,0,1298,1301,1,0,0,0, - 1299,1301,5,159,0,0,1300,1295,1,0,0,0,1300,1299,1,0,0,0,1301,171,1,0, - 0,0,167,175,182,191,198,202,216,220,223,227,230,237,241,250,255,264,272, - 279,283,289,294,302,309,315,327,335,349,353,358,368,377,380,384,387,391, - 394,397,400,403,407,411,414,417,420,424,427,436,442,463,480,497,503,509, - 520,522,533,536,542,550,556,558,562,567,570,573,577,581,584,586,589,593, - 597,600,602,604,609,620,626,633,638,642,646,652,654,661,669,672,675,694, - 708,724,728,739,743,754,758,765,769,776,780,785,794,798,822,839,845,848, - 851,861,867,870,873,881,884,888,891,905,922,927,932,938,945,957,961,964, - 973,987,1003,1032,1040,1042,1044,1053,1057,1066,1070,1074,1079,1086,1097, - 1106,1113,1126,1133,1137,1149,1155,1158,1165,1177,1183,1187,1193,1200, - 1209,1213,1223,1225,1228,1236,1241,1251,1256,1268,1274,1284,1290,1300 + 0,0,923,924,1,0,0,0,924,934,5,149,0,0,925,927,5,129,0,0,926,928,3,40, + 20,0,927,926,1,0,0,0,927,928,1,0,0,0,928,929,1,0,0,0,929,934,5,148,0, + 0,930,934,3,118,59,0,931,934,3,128,64,0,932,934,3,36,18,0,933,782,1,0, + 0,0,933,802,1,0,0,0,933,809,1,0,0,0,933,811,1,0,0,0,933,815,1,0,0,0,933, + 826,1,0,0,0,933,828,1,0,0,0,933,836,1,0,0,0,933,858,1,0,0,0,933,878,1, + 0,0,0,933,895,1,0,0,0,933,896,1,0,0,0,933,897,1,0,0,0,933,898,1,0,0,0, + 933,900,1,0,0,0,933,905,1,0,0,0,933,908,1,0,0,0,933,912,1,0,0,0,933,916, + 1,0,0,0,933,920,1,0,0,0,933,925,1,0,0,0,933,930,1,0,0,0,933,931,1,0,0, + 0,933,932,1,0,0,0,934,1045,1,0,0,0,935,939,10,20,0,0,936,940,5,113,0, + 0,937,940,5,152,0,0,938,940,5,139,0,0,939,936,1,0,0,0,939,937,1,0,0,0, + 939,938,1,0,0,0,940,941,1,0,0,0,941,1044,3,116,58,21,942,946,10,19,0, + 0,943,947,5,140,0,0,944,947,5,119,0,0,945,947,5,118,0,0,946,943,1,0,0, + 0,946,944,1,0,0,0,946,945,1,0,0,0,947,948,1,0,0,0,948,1044,3,116,58,20, + 949,974,10,18,0,0,950,975,5,122,0,0,951,975,5,123,0,0,952,975,5,134,0, + 0,953,975,5,132,0,0,954,975,5,133,0,0,955,975,5,124,0,0,956,975,5,125, + 0,0,957,959,5,59,0,0,958,957,1,0,0,0,958,959,1,0,0,0,959,960,1,0,0,0, + 960,962,5,43,0,0,961,963,5,15,0,0,962,961,1,0,0,0,962,963,1,0,0,0,963, + 975,1,0,0,0,964,966,5,59,0,0,965,964,1,0,0,0,965,966,1,0,0,0,966,967, + 1,0,0,0,967,975,7,11,0,0,968,975,5,146,0,0,969,975,5,147,0,0,970,975, + 5,136,0,0,971,975,5,127,0,0,972,975,5,128,0,0,973,975,5,135,0,0,974,950, + 1,0,0,0,974,951,1,0,0,0,974,952,1,0,0,0,974,953,1,0,0,0,974,954,1,0,0, + 0,974,955,1,0,0,0,974,956,1,0,0,0,974,958,1,0,0,0,974,965,1,0,0,0,974, + 968,1,0,0,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,976,1,0,0,0,976,1044,3,116,58,19,977,978,10, + 16,0,0,978,979,5,138,0,0,979,1044,3,116,58,17,980,981,10,14,0,0,981,982, + 5,2,0,0,982,1044,3,116,58,15,983,984,10,13,0,0,984,985,5,64,0,0,985,1044, + 3,116,58,14,986,988,10,12,0,0,987,989,5,59,0,0,988,987,1,0,0,0,988,989, + 1,0,0,0,989,990,1,0,0,0,990,991,5,9,0,0,991,992,3,116,58,0,992,993,5, + 2,0,0,993,994,3,116,58,13,994,1044,1,0,0,0,995,996,10,11,0,0,996,997, + 5,141,0,0,997,998,3,116,58,0,998,999,5,116,0,0,999,1000,3,116,58,11,1000, + 1044,1,0,0,0,1001,1002,10,31,0,0,1002,1004,5,131,0,0,1003,1005,3,114, + 57,0,1004,1003,1,0,0,0,1004,1005,1,0,0,0,1005,1006,1,0,0,0,1006,1044, + 5,150,0,0,1007,1008,10,27,0,0,1008,1009,5,130,0,0,1009,1010,3,116,58, + 0,1010,1011,5,149,0,0,1011,1044,1,0,0,0,1012,1013,10,26,0,0,1013,1014, + 5,121,0,0,1014,1044,5,109,0,0,1015,1016,10,25,0,0,1016,1017,5,121,0,0, + 1017,1044,3,156,78,0,1018,1019,10,24,0,0,1019,1020,5,137,0,0,1020,1021, + 5,130,0,0,1021,1022,3,116,58,0,1022,1023,5,149,0,0,1023,1044,1,0,0,0, + 1024,1025,10,23,0,0,1025,1026,5,137,0,0,1026,1044,5,109,0,0,1027,1028, + 10,22,0,0,1028,1029,5,137,0,0,1029,1044,3,156,78,0,1030,1031,10,17,0, + 0,1031,1033,5,47,0,0,1032,1034,5,59,0,0,1033,1032,1,0,0,0,1033,1034,1, + 0,0,0,1034,1035,1,0,0,0,1035,1044,5,60,0,0,1036,1041,10,10,0,0,1037,1038, + 5,6,0,0,1038,1042,3,156,78,0,1039,1040,5,6,0,0,1040,1042,5,111,0,0,1041, + 1037,1,0,0,0,1041,1039,1,0,0,0,1042,1044,1,0,0,0,1043,935,1,0,0,0,1043, + 942,1,0,0,0,1043,949,1,0,0,0,1043,977,1,0,0,0,1043,980,1,0,0,0,1043,983, + 1,0,0,0,1043,986,1,0,0,0,1043,995,1,0,0,0,1043,1001,1,0,0,0,1043,1007, + 1,0,0,0,1043,1012,1,0,0,0,1043,1015,1,0,0,0,1043,1018,1,0,0,0,1043,1024, + 1,0,0,0,1043,1027,1,0,0,0,1043,1030,1,0,0,0,1043,1036,1,0,0,0,1044,1047, + 1,0,0,0,1045,1043,1,0,0,0,1045,1046,1,0,0,0,1046,117,1,0,0,0,1047,1045, + 1,0,0,0,1048,1049,5,131,0,0,1049,1054,3,156,78,0,1050,1051,5,117,0,0, + 1051,1053,3,156,78,0,1052,1050,1,0,0,0,1053,1056,1,0,0,0,1054,1052,1, + 0,0,0,1054,1055,1,0,0,0,1055,1058,1,0,0,0,1056,1054,1,0,0,0,1057,1059, + 5,117,0,0,1058,1057,1,0,0,0,1058,1059,1,0,0,0,1059,1060,1,0,0,0,1060, + 1061,5,150,0,0,1061,1076,1,0,0,0,1062,1067,3,156,78,0,1063,1064,5,117, + 0,0,1064,1066,3,156,78,0,1065,1063,1,0,0,0,1066,1069,1,0,0,0,1067,1065, + 1,0,0,0,1067,1068,1,0,0,0,1068,1071,1,0,0,0,1069,1067,1,0,0,0,1070,1072, + 5,117,0,0,1071,1070,1,0,0,0,1071,1072,1,0,0,0,1072,1076,1,0,0,0,1073, + 1074,5,131,0,0,1074,1076,5,150,0,0,1075,1048,1,0,0,0,1075,1062,1,0,0, + 0,1075,1073,1,0,0,0,1076,1077,1,0,0,0,1077,1080,5,112,0,0,1078,1081,3, + 36,18,0,1079,1081,3,116,58,0,1080,1078,1,0,0,0,1080,1079,1,0,0,0,1081, + 119,1,0,0,0,1082,1083,5,133,0,0,1083,1087,3,156,78,0,1084,1086,3,122, + 61,0,1085,1084,1,0,0,0,1086,1089,1,0,0,0,1087,1085,1,0,0,0,1087,1088, + 1,0,0,0,1088,1090,1,0,0,0,1089,1087,1,0,0,0,1090,1091,5,152,0,0,1091, + 1092,5,125,0,0,1092,1115,1,0,0,0,1093,1094,5,133,0,0,1094,1098,3,156, + 78,0,1095,1097,3,122,61,0,1096,1095,1,0,0,0,1097,1100,1,0,0,0,1098,1096, + 1,0,0,0,1098,1099,1,0,0,0,1099,1101,1,0,0,0,1100,1098,1,0,0,0,1101,1107, + 5,125,0,0,1102,1108,3,120,60,0,1103,1104,5,129,0,0,1104,1105,3,116,58, + 0,1105,1106,5,148,0,0,1106,1108,1,0,0,0,1107,1102,1,0,0,0,1107,1103,1, + 0,0,0,1107,1108,1,0,0,0,1108,1109,1,0,0,0,1109,1110,5,133,0,0,1110,1111, + 5,152,0,0,1111,1112,3,156,78,0,1112,1113,5,125,0,0,1113,1115,1,0,0,0, + 1114,1082,1,0,0,0,1114,1093,1,0,0,0,1115,121,1,0,0,0,1116,1117,3,156, + 78,0,1117,1118,5,123,0,0,1118,1119,3,162,81,0,1119,1128,1,0,0,0,1120, + 1121,3,156,78,0,1121,1122,5,123,0,0,1122,1123,5,129,0,0,1123,1124,3,116, + 58,0,1124,1125,5,148,0,0,1125,1128,1,0,0,0,1126,1128,3,156,78,0,1127, + 1116,1,0,0,0,1127,1120,1,0,0,0,1127,1126,1,0,0,0,1128,123,1,0,0,0,1129, + 1134,3,126,63,0,1130,1131,5,117,0,0,1131,1133,3,126,63,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,1138, + 1,0,0,0,1136,1134,1,0,0,0,1137,1139,5,117,0,0,1138,1137,1,0,0,0,1138, + 1139,1,0,0,0,1139,125,1,0,0,0,1140,1141,3,156,78,0,1141,1142,5,6,0,0, + 1142,1143,5,131,0,0,1143,1144,3,44,22,0,1144,1145,5,150,0,0,1145,1151, + 1,0,0,0,1146,1147,3,116,58,0,1147,1148,5,6,0,0,1148,1149,3,156,78,0,1149, + 1151,1,0,0,0,1150,1140,1,0,0,0,1150,1146,1,0,0,0,1151,127,1,0,0,0,1152, + 1160,3,160,80,0,1153,1154,3,136,68,0,1154,1155,5,121,0,0,1155,1157,1, + 0,0,0,1156,1153,1,0,0,0,1156,1157,1,0,0,0,1157,1158,1,0,0,0,1158,1160, + 3,130,65,0,1159,1152,1,0,0,0,1159,1156,1,0,0,0,1160,129,1,0,0,0,1161, + 1166,3,156,78,0,1162,1163,5,121,0,0,1163,1165,3,156,78,0,1164,1162,1, + 0,0,0,1165,1168,1,0,0,0,1166,1164,1,0,0,0,1166,1167,1,0,0,0,1167,131, + 1,0,0,0,1168,1166,1,0,0,0,1169,1170,6,66,-1,0,1170,1179,3,136,68,0,1171, + 1179,3,134,67,0,1172,1173,5,131,0,0,1173,1174,3,44,22,0,1174,1175,5,150, + 0,0,1175,1179,1,0,0,0,1176,1179,3,120,60,0,1177,1179,3,160,80,0,1178, + 1169,1,0,0,0,1178,1171,1,0,0,0,1178,1172,1,0,0,0,1178,1176,1,0,0,0,1178, + 1177,1,0,0,0,1179,1188,1,0,0,0,1180,1184,10,3,0,0,1181,1185,3,154,77, + 0,1182,1183,5,6,0,0,1183,1185,3,156,78,0,1184,1181,1,0,0,0,1184,1182, + 1,0,0,0,1185,1187,1,0,0,0,1186,1180,1,0,0,0,1187,1190,1,0,0,0,1188,1186, + 1,0,0,0,1188,1189,1,0,0,0,1189,133,1,0,0,0,1190,1188,1,0,0,0,1191,1192, + 3,156,78,0,1192,1194,5,131,0,0,1193,1195,3,138,69,0,1194,1193,1,0,0,0, + 1194,1195,1,0,0,0,1195,1196,1,0,0,0,1196,1197,5,150,0,0,1197,135,1,0, + 0,0,1198,1199,3,140,70,0,1199,1200,5,121,0,0,1200,1202,1,0,0,0,1201,1198, + 1,0,0,0,1201,1202,1,0,0,0,1202,1203,1,0,0,0,1203,1204,3,156,78,0,1204, + 137,1,0,0,0,1205,1210,3,116,58,0,1206,1207,5,117,0,0,1207,1209,3,116, + 58,0,1208,1206,1,0,0,0,1209,1212,1,0,0,0,1210,1208,1,0,0,0,1210,1211, + 1,0,0,0,1211,1214,1,0,0,0,1212,1210,1,0,0,0,1213,1215,5,117,0,0,1214, + 1213,1,0,0,0,1214,1215,1,0,0,0,1215,139,1,0,0,0,1216,1217,3,156,78,0, + 1217,141,1,0,0,0,1218,1227,5,107,0,0,1219,1220,5,121,0,0,1220,1227,7, + 12,0,0,1221,1222,5,109,0,0,1222,1224,5,121,0,0,1223,1225,7,12,0,0,1224, + 1223,1,0,0,0,1224,1225,1,0,0,0,1225,1227,1,0,0,0,1226,1218,1,0,0,0,1226, + 1219,1,0,0,0,1226,1221,1,0,0,0,1227,143,1,0,0,0,1228,1230,7,13,0,0,1229, + 1228,1,0,0,0,1229,1230,1,0,0,0,1230,1237,1,0,0,0,1231,1238,3,142,71,0, + 1232,1238,5,108,0,0,1233,1238,5,109,0,0,1234,1238,5,110,0,0,1235,1238, + 5,44,0,0,1236,1238,5,58,0,0,1237,1231,1,0,0,0,1237,1232,1,0,0,0,1237, + 1233,1,0,0,0,1237,1234,1,0,0,0,1237,1235,1,0,0,0,1237,1236,1,0,0,0,1238, + 145,1,0,0,0,1239,1243,3,144,72,0,1240,1243,5,111,0,0,1241,1243,5,60,0, + 0,1242,1239,1,0,0,0,1242,1240,1,0,0,0,1242,1241,1,0,0,0,1243,147,1,0, + 0,0,1244,1245,7,14,0,0,1245,149,1,0,0,0,1246,1247,7,15,0,0,1247,151,1, + 0,0,0,1248,1249,7,16,0,0,1249,153,1,0,0,0,1250,1253,5,106,0,0,1251,1253, + 3,152,76,0,1252,1250,1,0,0,0,1252,1251,1,0,0,0,1253,155,1,0,0,0,1254, + 1258,5,106,0,0,1255,1258,3,148,74,0,1256,1258,3,150,75,0,1257,1254,1, + 0,0,0,1257,1255,1,0,0,0,1257,1256,1,0,0,0,1258,157,1,0,0,0,1259,1260, + 3,162,81,0,1260,1261,5,123,0,0,1261,1262,3,144,72,0,1262,159,1,0,0,0, + 1263,1264,3,36,18,0,1264,161,1,0,0,0,1265,1268,5,111,0,0,1266,1268,3, + 164,82,0,1267,1265,1,0,0,0,1267,1266,1,0,0,0,1268,163,1,0,0,0,1269,1273, + 5,143,0,0,1270,1272,3,166,83,0,1271,1270,1,0,0,0,1272,1275,1,0,0,0,1273, + 1271,1,0,0,0,1273,1274,1,0,0,0,1274,1276,1,0,0,0,1275,1273,1,0,0,0,1276, + 1277,5,145,0,0,1277,165,1,0,0,0,1278,1279,5,158,0,0,1279,1280,3,116,58, + 0,1280,1281,5,148,0,0,1281,1284,1,0,0,0,1282,1284,5,157,0,0,1283,1278, + 1,0,0,0,1283,1282,1,0,0,0,1284,167,1,0,0,0,1285,1289,5,144,0,0,1286,1288, + 3,170,85,0,1287,1286,1,0,0,0,1288,1291,1,0,0,0,1289,1287,1,0,0,0,1289, + 1290,1,0,0,0,1290,1292,1,0,0,0,1291,1289,1,0,0,0,1292,1293,5,0,0,1,1293, + 169,1,0,0,0,1294,1295,5,160,0,0,1295,1296,3,116,58,0,1296,1297,5,148, + 0,0,1297,1300,1,0,0,0,1298,1300,5,159,0,0,1299,1294,1,0,0,0,1299,1298, + 1,0,0,0,1300,171,1,0,0,0,167,175,182,191,198,202,216,220,223,227,230, + 237,241,250,255,264,272,279,283,289,294,302,309,315,327,335,349,353,358, + 368,377,380,384,387,391,394,397,400,403,407,411,414,417,420,424,427,436, + 442,463,480,497,503,509,520,522,533,536,542,550,556,558,562,567,570,573, + 577,581,584,586,589,593,597,600,602,604,609,620,626,633,638,642,646,652, + 654,661,669,672,675,694,708,724,728,739,743,754,758,765,769,776,780,785, + 794,798,822,839,845,848,851,861,867,870,873,881,884,888,891,905,922,927, + 933,939,946,958,962,965,974,988,1004,1033,1041,1043,1045,1054,1058,1067, + 1071,1075,1080,1087,1098,1107,1114,1127,1134,1138,1150,1156,1159,1166, + 1178,1184,1188,1194,1201,1210,1214,1224,1226,1229,1237,1242,1252,1257, + 1267,1273,1283,1289,1299 }; staticData->serializedATN = antlr4::atn::SerializedATNView(serializedATNSegment, sizeof(serializedATNSegment) / sizeof(serializedATNSegment[0])); @@ -6936,6 +6937,21 @@ std::any HogQLParser::ColumnExprNullTupleAccessContext::accept(tree::ParseTreeVi else return visitor->visitChildren(this); } +//----------------- ColumnExprBlockContext ------------------------------------------------------------------ + +HogQLParser::BlockContext* HogQLParser::ColumnExprBlockContext::block() { + return getRuleContext(0); +} + +HogQLParser::ColumnExprBlockContext::ColumnExprBlockContext(ColumnExprContext *ctx) { copyFrom(ctx); } + + +std::any HogQLParser::ColumnExprBlockContext::accept(tree::ParseTreeVisitor *visitor) { + if (auto parserVisitor = dynamic_cast(visitor)) + return parserVisitor->visitColumnExprBlock(this); + else + return visitor->visitChildren(this); +} //----------------- ColumnExprPrecedence1Context ------------------------------------------------------------------ std::vector HogQLParser::ColumnExprPrecedence1Context::columnExpr() { @@ -7821,7 +7837,7 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { try { size_t alt; enterOuterAlt(_localctx, 1); - setState(932); + setState(933); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 118, _ctx)) { case 1: { @@ -8215,7 +8231,7 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { setState(898); match(HogQLParser::DASH); setState(899); - columnExpr(20); + columnExpr(21); break; } @@ -8226,7 +8242,7 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { setState(900); match(HogQLParser::NOT); setState(901); - columnExpr(14); + columnExpr(15); break; } @@ -8352,11 +8368,20 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { break; } + case 24: { + _localctx = _tracker.createInstance(_localctx); + _ctx = _localctx; + previousContext = _localctx; + setState(932); + block(); + break; + } + default: break; } _ctx->stop = _input->LT(-1); - setState(1044); + setState(1045); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 130, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { @@ -8364,7 +8389,7 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { if (!_parseListeners.empty()) triggerExitRuleEvent(); previousContext = _localctx; - setState(1042); + setState(1043); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 129, _ctx)) { case 1: { @@ -8372,26 +8397,26 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = newContext; newContext->left = previousContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(934); + setState(935); - if (!(precpred(_ctx, 19))) throw FailedPredicateException(this, "precpred(_ctx, 19)"); - setState(938); + if (!(precpred(_ctx, 20))) throw FailedPredicateException(this, "precpred(_ctx, 20)"); + setState(939); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::ASTERISK: { - setState(935); + setState(936); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::ASTERISK); break; } case HogQLParser::SLASH: { - setState(936); + setState(937); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::SLASH); break; } case HogQLParser::PERCENT: { - setState(937); + setState(938); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::PERCENT); break; } @@ -8399,8 +8424,8 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { default: throw NoViableAltException(this); } - setState(940); - antlrcpp::downCast(_localctx)->right = columnExpr(20); + setState(941); + antlrcpp::downCast(_localctx)->right = columnExpr(21); break; } @@ -8409,26 +8434,26 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = newContext; newContext->left = previousContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(941); + setState(942); - if (!(precpred(_ctx, 18))) throw FailedPredicateException(this, "precpred(_ctx, 18)"); - setState(945); + if (!(precpred(_ctx, 19))) throw FailedPredicateException(this, "precpred(_ctx, 19)"); + setState(946); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::PLUS: { - setState(942); + setState(943); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::PLUS); break; } case HogQLParser::DASH: { - setState(943); + setState(944); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::DASH); break; } case HogQLParser::CONCAT: { - setState(944); + setState(945); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::CONCAT); break; } @@ -8436,8 +8461,8 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { default: throw NoViableAltException(this); } - setState(947); - antlrcpp::downCast(_localctx)->right = columnExpr(19); + setState(948); + antlrcpp::downCast(_localctx)->right = columnExpr(20); break; } @@ -8446,71 +8471,71 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = newContext; newContext->left = previousContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(948); + setState(949); - if (!(precpred(_ctx, 17))) throw FailedPredicateException(this, "precpred(_ctx, 17)"); - setState(973); + if (!(precpred(_ctx, 18))) throw FailedPredicateException(this, "precpred(_ctx, 18)"); + setState(974); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 124, _ctx)) { case 1: { - setState(949); + setState(950); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::EQ_DOUBLE); break; } case 2: { - setState(950); + setState(951); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::EQ_SINGLE); break; } case 3: { - setState(951); + setState(952); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::NOT_EQ); break; } case 4: { - setState(952); + setState(953); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::LT_EQ); break; } case 5: { - setState(953); + setState(954); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::LT); break; } case 6: { - setState(954); + setState(955); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::GT_EQ); break; } case 7: { - setState(955); + setState(956); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::GT); break; } case 8: { - setState(957); + setState(958); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::NOT) { - setState(956); + setState(957); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::NOT); } - setState(959); + setState(960); match(HogQLParser::IN); - setState(961); + setState(962); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 122, _ctx)) { case 1: { - setState(960); + setState(961); match(HogQLParser::COHORT); break; } @@ -8522,15 +8547,15 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { } case 9: { - setState(964); + setState(965); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::NOT) { - setState(963); + setState(964); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::NOT); } - setState(966); + setState(967); _la = _input->LA(1); if (!(_la == HogQLParser::ILIKE @@ -8545,37 +8570,37 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { } case 10: { - setState(967); + setState(968); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::REGEX_SINGLE); break; } case 11: { - setState(968); + setState(969); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::REGEX_DOUBLE); break; } case 12: { - setState(969); + setState(970); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::NOT_REGEX); break; } case 13: { - setState(970); + setState(971); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::IREGEX_SINGLE); break; } case 14: { - setState(971); + setState(972); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::IREGEX_DOUBLE); break; } case 15: { - setState(972); + setState(973); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::NOT_IREGEX); break; } @@ -8583,8 +8608,8 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { default: break; } - setState(975); - antlrcpp::downCast(_localctx)->right = columnExpr(18); + setState(976); + antlrcpp::downCast(_localctx)->right = columnExpr(19); break; } @@ -8592,13 +8617,13 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(976); - - if (!(precpred(_ctx, 15))) throw FailedPredicateException(this, "precpred(_ctx, 15)"); setState(977); - match(HogQLParser::NULLISH); + + if (!(precpred(_ctx, 16))) throw FailedPredicateException(this, "precpred(_ctx, 16)"); setState(978); - columnExpr(16); + match(HogQLParser::NULLISH); + setState(979); + columnExpr(17); break; } @@ -8606,13 +8631,13 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(979); - - if (!(precpred(_ctx, 13))) throw FailedPredicateException(this, "precpred(_ctx, 13)"); setState(980); - match(HogQLParser::AND); + + if (!(precpred(_ctx, 14))) throw FailedPredicateException(this, "precpred(_ctx, 14)"); setState(981); - columnExpr(14); + match(HogQLParser::AND); + setState(982); + columnExpr(15); break; } @@ -8620,13 +8645,13 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(982); - - if (!(precpred(_ctx, 12))) throw FailedPredicateException(this, "precpred(_ctx, 12)"); setState(983); - match(HogQLParser::OR); + + if (!(precpred(_ctx, 13))) throw FailedPredicateException(this, "precpred(_ctx, 13)"); setState(984); - columnExpr(13); + match(HogQLParser::OR); + setState(985); + columnExpr(14); break; } @@ -8634,25 +8659,25 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(985); + setState(986); - if (!(precpred(_ctx, 11))) throw FailedPredicateException(this, "precpred(_ctx, 11)"); - setState(987); + if (!(precpred(_ctx, 12))) throw FailedPredicateException(this, "precpred(_ctx, 12)"); + setState(988); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::NOT) { - setState(986); + setState(987); match(HogQLParser::NOT); } - setState(989); - match(HogQLParser::BETWEEN); setState(990); - columnExpr(0); + match(HogQLParser::BETWEEN); setState(991); - match(HogQLParser::AND); + columnExpr(0); setState(992); - columnExpr(12); + match(HogQLParser::AND); + setState(993); + columnExpr(13); break; } @@ -8660,17 +8685,17 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(994); - - if (!(precpred(_ctx, 10))) throw FailedPredicateException(this, "precpred(_ctx, 10)"); setState(995); - match(HogQLParser::QUERY); + + if (!(precpred(_ctx, 11))) throw FailedPredicateException(this, "precpred(_ctx, 11)"); setState(996); - columnExpr(0); + match(HogQLParser::QUERY); setState(997); - match(HogQLParser::COLON); + columnExpr(0); setState(998); - columnExpr(10); + match(HogQLParser::COLON); + setState(999); + columnExpr(11); break; } @@ -8678,12 +8703,12 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1000); - - if (!(precpred(_ctx, 30))) throw FailedPredicateException(this, "precpred(_ctx, 30)"); setState(1001); + + if (!(precpred(_ctx, 31))) throw FailedPredicateException(this, "precpred(_ctx, 31)"); + setState(1002); match(HogQLParser::LPAREN); - setState(1003); + setState(1004); _errHandler->sync(this); _la = _input->LA(1); @@ -8691,10 +8716,10 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { ((1ULL << _la) & -9007270658588674) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 180986072486903807) != 0) || ((((_la - 129) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 129)) & 18455) != 0)) { - setState(1002); + setState(1003); columnExprList(); } - setState(1005); + setState(1006); match(HogQLParser::RPAREN); break; } @@ -8703,14 +8728,14 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1006); - - if (!(precpred(_ctx, 26))) throw FailedPredicateException(this, "precpred(_ctx, 26)"); setState(1007); - match(HogQLParser::LBRACKET); + + if (!(precpred(_ctx, 27))) throw FailedPredicateException(this, "precpred(_ctx, 27)"); setState(1008); - columnExpr(0); + match(HogQLParser::LBRACKET); setState(1009); + columnExpr(0); + setState(1010); match(HogQLParser::RBRACKET); break; } @@ -8719,12 +8744,12 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1011); - - if (!(precpred(_ctx, 25))) throw FailedPredicateException(this, "precpred(_ctx, 25)"); setState(1012); - match(HogQLParser::DOT); + + if (!(precpred(_ctx, 26))) throw FailedPredicateException(this, "precpred(_ctx, 26)"); setState(1013); + match(HogQLParser::DOT); + setState(1014); match(HogQLParser::DECIMAL_LITERAL); break; } @@ -8733,12 +8758,12 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1014); - - if (!(precpred(_ctx, 24))) throw FailedPredicateException(this, "precpred(_ctx, 24)"); setState(1015); - match(HogQLParser::DOT); + + if (!(precpred(_ctx, 25))) throw FailedPredicateException(this, "precpred(_ctx, 25)"); setState(1016); + match(HogQLParser::DOT); + setState(1017); identifier(); break; } @@ -8747,16 +8772,16 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1017); - - if (!(precpred(_ctx, 23))) throw FailedPredicateException(this, "precpred(_ctx, 23)"); setState(1018); - match(HogQLParser::NULL_PROPERTY); + + if (!(precpred(_ctx, 24))) throw FailedPredicateException(this, "precpred(_ctx, 24)"); setState(1019); - match(HogQLParser::LBRACKET); + match(HogQLParser::NULL_PROPERTY); setState(1020); - columnExpr(0); + match(HogQLParser::LBRACKET); setState(1021); + columnExpr(0); + setState(1022); match(HogQLParser::RBRACKET); break; } @@ -8765,12 +8790,12 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1023); - - if (!(precpred(_ctx, 22))) throw FailedPredicateException(this, "precpred(_ctx, 22)"); setState(1024); - match(HogQLParser::NULL_PROPERTY); + + if (!(precpred(_ctx, 23))) throw FailedPredicateException(this, "precpred(_ctx, 23)"); setState(1025); + match(HogQLParser::NULL_PROPERTY); + setState(1026); match(HogQLParser::DECIMAL_LITERAL); break; } @@ -8779,12 +8804,12 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1026); - - if (!(precpred(_ctx, 21))) throw FailedPredicateException(this, "precpred(_ctx, 21)"); setState(1027); - match(HogQLParser::NULL_PROPERTY); + + if (!(precpred(_ctx, 22))) throw FailedPredicateException(this, "precpred(_ctx, 22)"); setState(1028); + match(HogQLParser::NULL_PROPERTY); + setState(1029); identifier(); break; } @@ -8793,20 +8818,20 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1029); - - if (!(precpred(_ctx, 16))) throw FailedPredicateException(this, "precpred(_ctx, 16)"); setState(1030); + + if (!(precpred(_ctx, 17))) throw FailedPredicateException(this, "precpred(_ctx, 17)"); + setState(1031); match(HogQLParser::IS); - setState(1032); + setState(1033); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::NOT) { - setState(1031); + setState(1032); match(HogQLParser::NOT); } - setState(1034); + setState(1035); match(HogQLParser::NULL_SQL); break; } @@ -8815,24 +8840,24 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1035); + setState(1036); - if (!(precpred(_ctx, 9))) throw FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(1040); + if (!(precpred(_ctx, 10))) throw FailedPredicateException(this, "precpred(_ctx, 10)"); + setState(1041); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 128, _ctx)) { case 1: { - setState(1036); - match(HogQLParser::AS); setState(1037); + match(HogQLParser::AS); + setState(1038); identifier(); break; } case 2: { - setState(1038); - match(HogQLParser::AS); setState(1039); + match(HogQLParser::AS); + setState(1040); match(HogQLParser::STRING_LITERAL); break; } @@ -8847,7 +8872,7 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { break; } } - setState(1046); + setState(1047); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 130, _ctx); } @@ -8930,73 +8955,73 @@ HogQLParser::ColumnLambdaExprContext* HogQLParser::columnLambdaExpr() { try { size_t alt; enterOuterAlt(_localctx, 1); - setState(1074); + setState(1075); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 135, _ctx)) { case 1: { - setState(1047); - match(HogQLParser::LPAREN); setState(1048); + match(HogQLParser::LPAREN); + setState(1049); identifier(); - setState(1053); + setState(1054); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 131, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { if (alt == 1) { - setState(1049); - match(HogQLParser::COMMA); setState(1050); + match(HogQLParser::COMMA); + setState(1051); identifier(); } - setState(1055); + setState(1056); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 131, _ctx); } - setState(1057); + setState(1058); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::COMMA) { - setState(1056); + setState(1057); match(HogQLParser::COMMA); } - setState(1059); + setState(1060); match(HogQLParser::RPAREN); break; } case 2: { - setState(1061); + setState(1062); identifier(); - setState(1066); + setState(1067); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 133, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { if (alt == 1) { - setState(1062); - match(HogQLParser::COMMA); setState(1063); + match(HogQLParser::COMMA); + setState(1064); identifier(); } - setState(1068); + setState(1069); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 133, _ctx); } - setState(1070); + setState(1071); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::COMMA) { - setState(1069); + setState(1070); match(HogQLParser::COMMA); } break; } case 3: { - setState(1072); - match(HogQLParser::LPAREN); setState(1073); + match(HogQLParser::LPAREN); + setState(1074); match(HogQLParser::RPAREN); break; } @@ -9004,19 +9029,19 @@ HogQLParser::ColumnLambdaExprContext* HogQLParser::columnLambdaExpr() { default: break; } - setState(1076); + setState(1077); match(HogQLParser::ARROW); - setState(1079); + setState(1080); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 136, _ctx)) { case 1: { - setState(1077); + setState(1078); block(); break; } case 2: { - setState(1078); + setState(1079); columnExpr(0); break; } @@ -9161,31 +9186,31 @@ HogQLParser::HogqlxTagElementContext* HogQLParser::hogqlxTagElement() { exitRule(); }); try { - setState(1113); + setState(1114); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 140, _ctx)) { case 1: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 1); - setState(1081); - match(HogQLParser::LT); setState(1082); + match(HogQLParser::LT); + setState(1083); identifier(); - setState(1086); + setState(1087); _errHandler->sync(this); _la = _input->LA(1); while ((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & -1450176743603191810) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 6458554974207) != 0)) { - setState(1083); + setState(1084); hogqlxTagAttribute(); - setState(1088); + setState(1089); _errHandler->sync(this); _la = _input->LA(1); } - setState(1089); - match(HogQLParser::SLASH); setState(1090); + match(HogQLParser::SLASH); + setState(1091); match(HogQLParser::GT); break; } @@ -9193,40 +9218,40 @@ HogQLParser::HogqlxTagElementContext* HogQLParser::hogqlxTagElement() { case 2: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 2); - setState(1092); - match(HogQLParser::LT); setState(1093); + match(HogQLParser::LT); + setState(1094); identifier(); - setState(1097); + setState(1098); _errHandler->sync(this); _la = _input->LA(1); while ((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & -1450176743603191810) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 6458554974207) != 0)) { - setState(1094); + setState(1095); hogqlxTagAttribute(); - setState(1099); + setState(1100); _errHandler->sync(this); _la = _input->LA(1); } - setState(1100); + setState(1101); match(HogQLParser::GT); - setState(1106); + setState(1107); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 139, _ctx)) { case 1: { - setState(1101); + setState(1102); hogqlxTagElement(); break; } case 2: { - setState(1102); - match(HogQLParser::LBRACE); setState(1103); - columnExpr(0); + match(HogQLParser::LBRACE); setState(1104); + columnExpr(0); + setState(1105); match(HogQLParser::RBRACE); break; } @@ -9234,13 +9259,13 @@ HogQLParser::HogqlxTagElementContext* HogQLParser::hogqlxTagElement() { default: break; } - setState(1108); - match(HogQLParser::LT); setState(1109); - match(HogQLParser::SLASH); + match(HogQLParser::LT); setState(1110); - identifier(); + match(HogQLParser::SLASH); setState(1111); + identifier(); + setState(1112); match(HogQLParser::GT); break; } @@ -9314,38 +9339,38 @@ HogQLParser::HogqlxTagAttributeContext* HogQLParser::hogqlxTagAttribute() { exitRule(); }); try { - setState(1126); + setState(1127); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 141, _ctx)) { case 1: { enterOuterAlt(_localctx, 1); - setState(1115); - identifier(); setState(1116); - match(HogQLParser::EQ_SINGLE); + identifier(); setState(1117); + match(HogQLParser::EQ_SINGLE); + setState(1118); string(); break; } case 2: { enterOuterAlt(_localctx, 2); - setState(1119); - identifier(); setState(1120); - match(HogQLParser::EQ_SINGLE); + identifier(); setState(1121); - match(HogQLParser::LBRACE); + match(HogQLParser::EQ_SINGLE); setState(1122); - columnExpr(0); + match(HogQLParser::LBRACE); setState(1123); + columnExpr(0); + setState(1124); match(HogQLParser::RBRACE); break; } case 3: { enterOuterAlt(_localctx, 3); - setState(1125); + setState(1126); identifier(); break; } @@ -9414,28 +9439,28 @@ HogQLParser::WithExprListContext* HogQLParser::withExprList() { try { size_t alt; enterOuterAlt(_localctx, 1); - setState(1128); + setState(1129); withExpr(); - setState(1133); + setState(1134); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 142, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { if (alt == 1) { - setState(1129); - match(HogQLParser::COMMA); setState(1130); + match(HogQLParser::COMMA); + setState(1131); withExpr(); } - setState(1135); + setState(1136); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 142, _ctx); } - setState(1137); + setState(1138); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::COMMA) { - setState(1136); + setState(1137); match(HogQLParser::COMMA); } @@ -9530,21 +9555,21 @@ HogQLParser::WithExprContext* HogQLParser::withExpr() { exitRule(); }); try { - setState(1149); + setState(1150); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 144, _ctx)) { case 1: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 1); - setState(1139); - identifier(); setState(1140); - match(HogQLParser::AS); + identifier(); setState(1141); - match(HogQLParser::LPAREN); + match(HogQLParser::AS); setState(1142); - selectUnionStmt(); + match(HogQLParser::LPAREN); setState(1143); + selectUnionStmt(); + setState(1144); match(HogQLParser::RPAREN); break; } @@ -9552,11 +9577,11 @@ HogQLParser::WithExprContext* HogQLParser::withExpr() { case 2: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 2); - setState(1145); - columnExpr(0); setState(1146); - match(HogQLParser::AS); + columnExpr(0); setState(1147); + match(HogQLParser::AS); + setState(1148); identifier(); break; } @@ -9622,12 +9647,12 @@ HogQLParser::ColumnIdentifierContext* HogQLParser::columnIdentifier() { exitRule(); }); try { - setState(1158); + setState(1159); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::LBRACE: { enterOuterAlt(_localctx, 1); - setState(1151); + setState(1152); placeholder(); break; } @@ -9727,14 +9752,14 @@ HogQLParser::ColumnIdentifierContext* HogQLParser::columnIdentifier() { case HogQLParser::YEAR: case HogQLParser::IDENTIFIER: { enterOuterAlt(_localctx, 2); - setState(1155); + setState(1156); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 145, _ctx)) { case 1: { - setState(1152); - tableIdentifier(); setState(1153); + tableIdentifier(); + setState(1154); match(HogQLParser::DOT); break; } @@ -9742,7 +9767,7 @@ HogQLParser::ColumnIdentifierContext* HogQLParser::columnIdentifier() { default: break; } - setState(1157); + setState(1158); nestedIdentifier(); break; } @@ -9810,19 +9835,19 @@ HogQLParser::NestedIdentifierContext* HogQLParser::nestedIdentifier() { try { size_t alt; enterOuterAlt(_localctx, 1); - setState(1160); + setState(1161); identifier(); - setState(1165); + setState(1166); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 147, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { if (alt == 1) { - setState(1161); - match(HogQLParser::DOT); setState(1162); + match(HogQLParser::DOT); + setState(1163); identifier(); } - setState(1167); + setState(1168); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 147, _ctx); } @@ -9988,7 +10013,7 @@ HogQLParser::TableExprContext* HogQLParser::tableExpr(int precedence) { try { size_t alt; enterOuterAlt(_localctx, 1); - setState(1177); + setState(1178); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 148, _ctx)) { case 1: { @@ -9996,7 +10021,7 @@ HogQLParser::TableExprContext* HogQLParser::tableExpr(int precedence) { _ctx = _localctx; previousContext = _localctx; - setState(1169); + setState(1170); tableIdentifier(); break; } @@ -10005,7 +10030,7 @@ HogQLParser::TableExprContext* HogQLParser::tableExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(1170); + setState(1171); tableFunctionExpr(); break; } @@ -10014,11 +10039,11 @@ HogQLParser::TableExprContext* HogQLParser::tableExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(1171); - match(HogQLParser::LPAREN); setState(1172); - selectUnionStmt(); + match(HogQLParser::LPAREN); setState(1173); + selectUnionStmt(); + setState(1174); match(HogQLParser::RPAREN); break; } @@ -10027,7 +10052,7 @@ HogQLParser::TableExprContext* HogQLParser::tableExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(1175); + setState(1176); hogqlxTagElement(); break; } @@ -10036,7 +10061,7 @@ HogQLParser::TableExprContext* HogQLParser::tableExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(1176); + setState(1177); placeholder(); break; } @@ -10045,7 +10070,7 @@ HogQLParser::TableExprContext* HogQLParser::tableExpr(int precedence) { break; } _ctx->stop = _input->LT(-1); - setState(1187); + setState(1188); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 150, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { @@ -10056,10 +10081,10 @@ HogQLParser::TableExprContext* HogQLParser::tableExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleTableExpr); - setState(1179); + setState(1180); if (!(precpred(_ctx, 3))) throw FailedPredicateException(this, "precpred(_ctx, 3)"); - setState(1183); + setState(1184); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::DATE: @@ -10067,15 +10092,15 @@ HogQLParser::TableExprContext* HogQLParser::tableExpr(int precedence) { case HogQLParser::ID: case HogQLParser::KEY: case HogQLParser::IDENTIFIER: { - setState(1180); + setState(1181); alias(); break; } case HogQLParser::AS: { - setState(1181); - match(HogQLParser::AS); setState(1182); + match(HogQLParser::AS); + setState(1183); identifier(); break; } @@ -10084,7 +10109,7 @@ HogQLParser::TableExprContext* HogQLParser::tableExpr(int precedence) { throw NoViableAltException(this); } } - setState(1189); + setState(1190); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 150, _ctx); } @@ -10146,11 +10171,11 @@ HogQLParser::TableFunctionExprContext* HogQLParser::tableFunctionExpr() { }); try { enterOuterAlt(_localctx, 1); - setState(1190); - identifier(); setState(1191); + identifier(); + setState(1192); match(HogQLParser::LPAREN); - setState(1193); + setState(1194); _errHandler->sync(this); _la = _input->LA(1); @@ -10158,10 +10183,10 @@ HogQLParser::TableFunctionExprContext* HogQLParser::tableFunctionExpr() { ((1ULL << _la) & -9007270658588674) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 180986072486903807) != 0) || ((((_la - 129) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 129)) & 18455) != 0)) { - setState(1192); + setState(1193); tableArgList(); } - setState(1195); + setState(1196); match(HogQLParser::RPAREN); } @@ -10218,14 +10243,14 @@ HogQLParser::TableIdentifierContext* HogQLParser::tableIdentifier() { }); try { enterOuterAlt(_localctx, 1); - setState(1200); + setState(1201); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 152, _ctx)) { case 1: { - setState(1197); - databaseIdentifier(); setState(1198); + databaseIdentifier(); + setState(1199); match(HogQLParser::DOT); break; } @@ -10233,7 +10258,7 @@ HogQLParser::TableIdentifierContext* HogQLParser::tableIdentifier() { default: break; } - setState(1202); + setState(1203); identifier(); } @@ -10296,28 +10321,28 @@ HogQLParser::TableArgListContext* HogQLParser::tableArgList() { try { size_t alt; enterOuterAlt(_localctx, 1); - setState(1204); + setState(1205); columnExpr(0); - setState(1209); + setState(1210); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 153, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { if (alt == 1) { - setState(1205); - match(HogQLParser::COMMA); setState(1206); + match(HogQLParser::COMMA); + setState(1207); columnExpr(0); } - setState(1211); + setState(1212); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 153, _ctx); } - setState(1213); + setState(1214); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::COMMA) { - setState(1212); + setState(1213); match(HogQLParser::COMMA); } @@ -10367,7 +10392,7 @@ HogQLParser::DatabaseIdentifierContext* HogQLParser::databaseIdentifier() { }); try { enterOuterAlt(_localctx, 1); - setState(1215); + setState(1216); identifier(); } @@ -10432,21 +10457,21 @@ HogQLParser::FloatingLiteralContext* HogQLParser::floatingLiteral() { exitRule(); }); try { - setState(1225); + setState(1226); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::FLOATING_LITERAL: { enterOuterAlt(_localctx, 1); - setState(1217); + setState(1218); match(HogQLParser::FLOATING_LITERAL); break; } case HogQLParser::DOT: { enterOuterAlt(_localctx, 2); - setState(1218); - match(HogQLParser::DOT); setState(1219); + match(HogQLParser::DOT); + setState(1220); _la = _input->LA(1); if (!(_la == HogQLParser::OCTAL_LITERAL @@ -10462,16 +10487,16 @@ HogQLParser::FloatingLiteralContext* HogQLParser::floatingLiteral() { case HogQLParser::DECIMAL_LITERAL: { enterOuterAlt(_localctx, 3); - setState(1220); - match(HogQLParser::DECIMAL_LITERAL); setState(1221); + match(HogQLParser::DECIMAL_LITERAL); + setState(1222); match(HogQLParser::DOT); - setState(1223); + setState(1224); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 155, _ctx)) { case 1: { - setState(1222); + setState(1223); _la = _input->LA(1); if (!(_la == HogQLParser::OCTAL_LITERAL @@ -10570,14 +10595,14 @@ HogQLParser::NumberLiteralContext* HogQLParser::numberLiteral() { }); try { enterOuterAlt(_localctx, 1); - setState(1228); + setState(1229); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::DASH || _la == HogQLParser::PLUS) { - setState(1227); + setState(1228); _la = _input->LA(1); if (!(_la == HogQLParser::DASH @@ -10589,41 +10614,41 @@ HogQLParser::NumberLiteralContext* HogQLParser::numberLiteral() { consume(); } } - setState(1236); + setState(1237); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 158, _ctx)) { case 1: { - setState(1230); + setState(1231); floatingLiteral(); break; } case 2: { - setState(1231); + setState(1232); match(HogQLParser::OCTAL_LITERAL); break; } case 3: { - setState(1232); + setState(1233); match(HogQLParser::DECIMAL_LITERAL); break; } case 4: { - setState(1233); + setState(1234); match(HogQLParser::HEXADECIMAL_LITERAL); break; } case 5: { - setState(1234); + setState(1235); match(HogQLParser::INF); break; } case 6: { - setState(1235); + setState(1236); match(HogQLParser::NAN_SQL); break; } @@ -10685,7 +10710,7 @@ HogQLParser::LiteralContext* HogQLParser::literal() { exitRule(); }); try { - setState(1241); + setState(1242); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::INF: @@ -10698,21 +10723,21 @@ HogQLParser::LiteralContext* HogQLParser::literal() { case HogQLParser::DOT: case HogQLParser::PLUS: { enterOuterAlt(_localctx, 1); - setState(1238); + setState(1239); numberLiteral(); break; } case HogQLParser::STRING_LITERAL: { enterOuterAlt(_localctx, 2); - setState(1239); + setState(1240); match(HogQLParser::STRING_LITERAL); break; } case HogQLParser::NULL_SQL: { enterOuterAlt(_localctx, 3); - setState(1240); + setState(1241); match(HogQLParser::NULL_SQL); break; } @@ -10796,7 +10821,7 @@ HogQLParser::IntervalContext* HogQLParser::interval() { }); try { enterOuterAlt(_localctx, 1); - setState(1243); + setState(1244); _la = _input->LA(1); if (!((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & 216173331871694848) != 0) || ((((_la - 71) & ~ 0x3fULL) == 0) && @@ -11191,7 +11216,7 @@ HogQLParser::KeywordContext* HogQLParser::keyword() { }); try { enterOuterAlt(_localctx, 1); - setState(1245); + setState(1246); _la = _input->LA(1); if (!((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & -1666350075474886658) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && @@ -11262,7 +11287,7 @@ HogQLParser::KeywordForAliasContext* HogQLParser::keywordForAlias() { }); try { enterOuterAlt(_localctx, 1); - setState(1247); + setState(1248); _la = _input->LA(1); if (!((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & 564050539839488) != 0))) { @@ -11322,12 +11347,12 @@ HogQLParser::AliasContext* HogQLParser::alias() { exitRule(); }); try { - setState(1251); + setState(1252); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::IDENTIFIER: { enterOuterAlt(_localctx, 1); - setState(1249); + setState(1250); match(HogQLParser::IDENTIFIER); break; } @@ -11337,7 +11362,7 @@ HogQLParser::AliasContext* HogQLParser::alias() { case HogQLParser::ID: case HogQLParser::KEY: { enterOuterAlt(_localctx, 2); - setState(1250); + setState(1251); keywordForAlias(); break; } @@ -11399,12 +11424,12 @@ HogQLParser::IdentifierContext* HogQLParser::identifier() { exitRule(); }); try { - setState(1256); + setState(1257); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::IDENTIFIER: { enterOuterAlt(_localctx, 1); - setState(1253); + setState(1254); match(HogQLParser::IDENTIFIER); break; } @@ -11418,7 +11443,7 @@ HogQLParser::IdentifierContext* HogQLParser::identifier() { case HogQLParser::WEEK: case HogQLParser::YEAR: { enterOuterAlt(_localctx, 2); - setState(1254); + setState(1255); interval(); break; } @@ -11509,7 +11534,7 @@ HogQLParser::IdentifierContext* HogQLParser::identifier() { case HogQLParser::WINDOW: case HogQLParser::WITH: { enterOuterAlt(_localctx, 3); - setState(1255); + setState(1256); keyword(); break; } @@ -11572,11 +11597,11 @@ HogQLParser::EnumValueContext* HogQLParser::enumValue() { }); try { enterOuterAlt(_localctx, 1); - setState(1258); - string(); setState(1259); - match(HogQLParser::EQ_SINGLE); + string(); setState(1260); + match(HogQLParser::EQ_SINGLE); + setState(1261); numberLiteral(); } @@ -11595,16 +11620,8 @@ HogQLParser::PlaceholderContext::PlaceholderContext(ParserRuleContext *parent, s : ParserRuleContext(parent, invokingState) { } -tree::TerminalNode* HogQLParser::PlaceholderContext::LBRACE() { - return getToken(HogQLParser::LBRACE, 0); -} - -HogQLParser::ColumnExprContext* HogQLParser::PlaceholderContext::columnExpr() { - return getRuleContext(0); -} - -tree::TerminalNode* HogQLParser::PlaceholderContext::RBRACE() { - return getToken(HogQLParser::RBRACE, 0); +HogQLParser::BlockContext* HogQLParser::PlaceholderContext::block() { + return getRuleContext(0); } @@ -11633,12 +11650,8 @@ HogQLParser::PlaceholderContext* HogQLParser::placeholder() { }); try { enterOuterAlt(_localctx, 1); - setState(1262); - match(HogQLParser::LBRACE); setState(1263); - columnExpr(0); - setState(1264); - match(HogQLParser::RBRACE); + block(); } catch (RecognitionException &e) { @@ -11689,19 +11702,19 @@ HogQLParser::StringContext* HogQLParser::string() { exitRule(); }); try { - setState(1268); + setState(1267); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::STRING_LITERAL: { enterOuterAlt(_localctx, 1); - setState(1266); + setState(1265); match(HogQLParser::STRING_LITERAL); break; } case HogQLParser::QUOTE_SINGLE_TEMPLATE: { enterOuterAlt(_localctx, 2); - setState(1267); + setState(1266); templateString(); break; } @@ -11769,21 +11782,21 @@ HogQLParser::TemplateStringContext* HogQLParser::templateString() { }); try { enterOuterAlt(_localctx, 1); - setState(1270); + setState(1269); match(HogQLParser::QUOTE_SINGLE_TEMPLATE); - setState(1274); + setState(1273); _errHandler->sync(this); _la = _input->LA(1); while (_la == HogQLParser::STRING_TEXT || _la == HogQLParser::STRING_ESCAPE_TRIGGER) { - setState(1271); + setState(1270); stringContents(); - setState(1276); + setState(1275); _errHandler->sync(this); _la = _input->LA(1); } - setState(1277); + setState(1276); match(HogQLParser::QUOTE_SINGLE); } @@ -11843,23 +11856,23 @@ HogQLParser::StringContentsContext* HogQLParser::stringContents() { exitRule(); }); try { - setState(1284); + setState(1283); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::STRING_ESCAPE_TRIGGER: { enterOuterAlt(_localctx, 1); - setState(1279); + setState(1278); match(HogQLParser::STRING_ESCAPE_TRIGGER); - setState(1280); + setState(1279); columnExpr(0); - setState(1281); + setState(1280); match(HogQLParser::RBRACE); break; } case HogQLParser::STRING_TEXT: { enterOuterAlt(_localctx, 2); - setState(1283); + setState(1282); match(HogQLParser::STRING_TEXT); break; } @@ -11927,21 +11940,21 @@ HogQLParser::FullTemplateStringContext* HogQLParser::fullTemplateString() { }); try { enterOuterAlt(_localctx, 1); - setState(1286); + setState(1285); match(HogQLParser::QUOTE_SINGLE_TEMPLATE_FULL); - setState(1290); + setState(1289); _errHandler->sync(this); _la = _input->LA(1); while (_la == HogQLParser::FULL_STRING_TEXT || _la == HogQLParser::FULL_STRING_ESCAPE_TRIGGER) { - setState(1287); + setState(1286); stringContentsFull(); - setState(1292); + setState(1291); _errHandler->sync(this); _la = _input->LA(1); } - setState(1293); + setState(1292); match(HogQLParser::EOF); } @@ -12001,23 +12014,23 @@ HogQLParser::StringContentsFullContext* HogQLParser::stringContentsFull() { exitRule(); }); try { - setState(1300); + setState(1299); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::FULL_STRING_ESCAPE_TRIGGER: { enterOuterAlt(_localctx, 1); - setState(1295); + setState(1294); match(HogQLParser::FULL_STRING_ESCAPE_TRIGGER); - setState(1296); + setState(1295); columnExpr(0); - setState(1297); + setState(1296); match(HogQLParser::RBRACE); break; } case HogQLParser::FULL_STRING_TEXT: { enterOuterAlt(_localctx, 2); - setState(1299); + setState(1298); match(HogQLParser::FULL_STRING_TEXT); break; } @@ -12061,23 +12074,23 @@ bool HogQLParser::joinExprSempred(JoinExprContext *_localctx, size_t predicateIn bool HogQLParser::columnExprSempred(ColumnExprContext *_localctx, size_t predicateIndex) { switch (predicateIndex) { - case 2: return precpred(_ctx, 19); - case 3: return precpred(_ctx, 18); - case 4: return precpred(_ctx, 17); - case 5: return precpred(_ctx, 15); - case 6: return precpred(_ctx, 13); - case 7: return precpred(_ctx, 12); - case 8: return precpred(_ctx, 11); - case 9: return precpred(_ctx, 10); - case 10: return precpred(_ctx, 30); - case 11: return precpred(_ctx, 26); - case 12: return precpred(_ctx, 25); - case 13: return precpred(_ctx, 24); - case 14: return precpred(_ctx, 23); - case 15: return precpred(_ctx, 22); - case 16: return precpred(_ctx, 21); - case 17: return precpred(_ctx, 16); - case 18: return precpred(_ctx, 9); + case 2: return precpred(_ctx, 20); + case 3: return precpred(_ctx, 19); + case 4: return precpred(_ctx, 18); + case 5: return precpred(_ctx, 16); + case 6: return precpred(_ctx, 14); + case 7: return precpred(_ctx, 13); + case 8: return precpred(_ctx, 12); + case 9: return precpred(_ctx, 11); + case 10: return precpred(_ctx, 31); + case 11: return precpred(_ctx, 27); + case 12: return precpred(_ctx, 26); + case 13: return precpred(_ctx, 25); + case 14: return precpred(_ctx, 24); + case 15: return precpred(_ctx, 23); + case 16: return precpred(_ctx, 22); + case 17: return precpred(_ctx, 17); + case 18: return precpred(_ctx, 10); default: break; diff --git a/hogql_parser/HogQLParser.h b/hogql_parser/HogQLParser.h index c4a00e0fae3c5..1891ea9de827a 100644 --- a/hogql_parser/HogQLParser.h +++ b/hogql_parser/HogQLParser.h @@ -1475,6 +1475,15 @@ class HogQLParser : public antlr4::Parser { virtual std::any accept(antlr4::tree::ParseTreeVisitor *visitor) override; }; + class ColumnExprBlockContext : public ColumnExprContext { + public: + ColumnExprBlockContext(ColumnExprContext *ctx); + + BlockContext *block(); + + virtual std::any accept(antlr4::tree::ParseTreeVisitor *visitor) override; + }; + class ColumnExprPrecedence1Context : public ColumnExprContext { public: ColumnExprPrecedence1Context(ColumnExprContext *ctx); @@ -2406,9 +2415,7 @@ class HogQLParser : public antlr4::Parser { public: PlaceholderContext(antlr4::ParserRuleContext *parent, size_t invokingState); virtual size_t getRuleIndex() const override; - antlr4::tree::TerminalNode *LBRACE(); - ColumnExprContext *columnExpr(); - antlr4::tree::TerminalNode *RBRACE(); + BlockContext *block(); virtual std::any accept(antlr4::tree::ParseTreeVisitor *visitor) override; diff --git a/hogql_parser/HogQLParser.interp b/hogql_parser/HogQLParser.interp index 3ed0215cdb034..ebb7058a58df9 100644 --- a/hogql_parser/HogQLParser.interp +++ b/hogql_parser/HogQLParser.interp @@ -414,4 +414,4 @@ stringContentsFull atn: -[4, 1, 160, 1303, 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, 1, 0, 5, 0, 174, 8, 0, 10, 0, 12, 0, 177, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 183, 8, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 192, 8, 3, 1, 4, 1, 4, 1, 4, 5, 4, 197, 8, 4, 10, 4, 12, 4, 200, 9, 4, 1, 4, 3, 4, 203, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 217, 8, 5, 1, 6, 1, 6, 3, 6, 221, 8, 6, 1, 6, 3, 6, 224, 8, 6, 1, 7, 1, 7, 3, 7, 228, 8, 7, 1, 7, 3, 7, 231, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 238, 8, 8, 1, 8, 1, 8, 3, 8, 242, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 249, 8, 9, 10, 9, 12, 9, 252, 9, 9, 1, 9, 1, 9, 3, 9, 256, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 265, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 273, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 280, 8, 12, 1, 12, 1, 12, 3, 12, 284, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 290, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 295, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 303, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 310, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 316, 8, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 328, 8, 16, 1, 17, 1, 17, 1, 18, 1, 18, 5, 18, 334, 8, 18, 10, 18, 12, 18, 337, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 5, 20, 348, 8, 20, 10, 20, 12, 20, 351, 9, 20, 1, 20, 3, 20, 354, 8, 20, 1, 21, 1, 21, 1, 21, 3, 21, 359, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 367, 8, 22, 10, 22, 12, 22, 370, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 378, 8, 23, 1, 24, 3, 24, 381, 8, 24, 1, 24, 1, 24, 3, 24, 385, 8, 24, 1, 24, 3, 24, 388, 8, 24, 1, 24, 1, 24, 3, 24, 392, 8, 24, 1, 24, 3, 24, 395, 8, 24, 1, 24, 3, 24, 398, 8, 24, 1, 24, 3, 24, 401, 8, 24, 1, 24, 3, 24, 404, 8, 24, 1, 24, 1, 24, 3, 24, 408, 8, 24, 1, 24, 1, 24, 3, 24, 412, 8, 24, 1, 24, 3, 24, 415, 8, 24, 1, 24, 3, 24, 418, 8, 24, 1, 24, 3, 24, 421, 8, 24, 1, 24, 1, 24, 3, 24, 425, 8, 24, 1, 24, 3, 24, 428, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 437, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 443, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 462, 8, 29, 10, 29, 12, 29, 465, 9, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 481, 8, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 498, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 504, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 510, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 521, 8, 36, 3, 36, 523, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 534, 8, 39, 1, 39, 3, 39, 537, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 543, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 551, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 557, 8, 39, 10, 39, 12, 39, 560, 9, 39, 1, 40, 3, 40, 563, 8, 40, 1, 40, 1, 40, 1, 40, 3, 40, 568, 8, 40, 1, 40, 3, 40, 571, 8, 40, 1, 40, 3, 40, 574, 8, 40, 1, 40, 1, 40, 3, 40, 578, 8, 40, 1, 40, 1, 40, 3, 40, 582, 8, 40, 1, 40, 3, 40, 585, 8, 40, 3, 40, 587, 8, 40, 1, 40, 3, 40, 590, 8, 40, 1, 40, 1, 40, 3, 40, 594, 8, 40, 1, 40, 1, 40, 3, 40, 598, 8, 40, 1, 40, 3, 40, 601, 8, 40, 3, 40, 603, 8, 40, 3, 40, 605, 8, 40, 1, 41, 1, 41, 1, 41, 3, 41, 610, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 621, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 627, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 632, 8, 44, 10, 44, 12, 44, 635, 9, 44, 1, 45, 1, 45, 3, 45, 639, 8, 45, 1, 45, 1, 45, 3, 45, 643, 8, 45, 1, 45, 1, 45, 3, 45, 647, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 653, 8, 46, 3, 46, 655, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 660, 8, 47, 10, 47, 12, 47, 663, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 3, 49, 670, 8, 49, 1, 49, 3, 49, 673, 8, 49, 1, 49, 3, 49, 676, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 695, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 709, 8, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 723, 8, 56, 10, 56, 12, 56, 726, 9, 56, 1, 56, 3, 56, 729, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 738, 8, 56, 10, 56, 12, 56, 741, 9, 56, 1, 56, 3, 56, 744, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 753, 8, 56, 10, 56, 12, 56, 756, 9, 56, 1, 56, 3, 56, 759, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 766, 8, 56, 1, 56, 1, 56, 3, 56, 770, 8, 56, 1, 57, 1, 57, 1, 57, 5, 57, 775, 8, 57, 10, 57, 12, 57, 778, 9, 57, 1, 57, 3, 57, 781, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 786, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 4, 58, 793, 8, 58, 11, 58, 12, 58, 794, 1, 58, 1, 58, 3, 58, 799, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 823, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 840, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 846, 8, 58, 1, 58, 3, 58, 849, 8, 58, 1, 58, 3, 58, 852, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 862, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 868, 8, 58, 1, 58, 3, 58, 871, 8, 58, 1, 58, 3, 58, 874, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 882, 8, 58, 1, 58, 3, 58, 885, 8, 58, 1, 58, 1, 58, 3, 58, 889, 8, 58, 1, 58, 3, 58, 892, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 906, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 923, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 928, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 933, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 939, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 946, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 958, 8, 58, 1, 58, 1, 58, 3, 58, 962, 8, 58, 1, 58, 3, 58, 965, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 974, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 988, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1004, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1033, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1041, 8, 58, 5, 58, 1043, 8, 58, 10, 58, 12, 58, 1046, 9, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1052, 8, 59, 10, 59, 12, 59, 1055, 9, 59, 1, 59, 3, 59, 1058, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1065, 8, 59, 10, 59, 12, 59, 1068, 9, 59, 1, 59, 3, 59, 1071, 8, 59, 1, 59, 1, 59, 3, 59, 1075, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1080, 8, 59, 1, 60, 1, 60, 1, 60, 5, 60, 1085, 8, 60, 10, 60, 12, 60, 1088, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1096, 8, 60, 10, 60, 12, 60, 1099, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1107, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1114, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1127, 8, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1132, 8, 62, 10, 62, 12, 62, 1135, 9, 62, 1, 62, 3, 62, 1138, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1150, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1156, 8, 64, 1, 64, 3, 64, 1159, 8, 64, 1, 65, 1, 65, 1, 65, 5, 65, 1164, 8, 65, 10, 65, 12, 65, 1167, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1178, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1184, 8, 66, 5, 66, 1186, 8, 66, 10, 66, 12, 66, 1189, 9, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1194, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1201, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 5, 69, 1208, 8, 69, 10, 69, 12, 69, 1211, 9, 69, 1, 69, 3, 69, 1214, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1224, 8, 71, 3, 71, 1226, 8, 71, 1, 72, 3, 72, 1229, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1237, 8, 72, 1, 73, 1, 73, 1, 73, 3, 73, 1242, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1252, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 1257, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 3, 81, 1269, 8, 81, 1, 82, 1, 82, 5, 82, 1273, 8, 82, 10, 82, 12, 82, 1276, 9, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1285, 8, 83, 1, 84, 1, 84, 5, 84, 1289, 8, 84, 10, 84, 12, 84, 1292, 9, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1301, 8, 85, 1, 85, 0, 3, 78, 116, 132, 86, 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, 0, 17, 2, 0, 31, 31, 36, 36, 2, 0, 18, 18, 75, 75, 2, 0, 45, 45, 52, 52, 3, 0, 1, 1, 4, 4, 8, 8, 4, 0, 1, 1, 3, 4, 8, 8, 81, 81, 2, 0, 52, 52, 74, 74, 2, 0, 1, 1, 4, 4, 2, 0, 7, 7, 22, 23, 2, 0, 30, 30, 50, 50, 2, 0, 72, 72, 77, 77, 3, 0, 10, 10, 51, 51, 91, 91, 2, 0, 42, 42, 54, 54, 1, 0, 108, 109, 2, 0, 119, 119, 140, 140, 7, 0, 21, 21, 39, 39, 56, 57, 71, 71, 79, 79, 98, 98, 104, 104, 17, 0, 1, 13, 15, 20, 22, 28, 30, 30, 32, 35, 37, 38, 40, 43, 45, 52, 54, 55, 59, 59, 61, 70, 72, 78, 80, 84, 86, 93, 95, 97, 99, 100, 102, 103, 4, 0, 20, 20, 30, 30, 40, 40, 49, 49, 1475, 0, 175, 1, 0, 0, 0, 2, 182, 1, 0, 0, 0, 4, 184, 1, 0, 0, 0, 6, 186, 1, 0, 0, 0, 8, 193, 1, 0, 0, 0, 10, 216, 1, 0, 0, 0, 12, 218, 1, 0, 0, 0, 14, 225, 1, 0, 0, 0, 16, 232, 1, 0, 0, 0, 18, 245, 1, 0, 0, 0, 20, 257, 1, 0, 0, 0, 22, 266, 1, 0, 0, 0, 24, 274, 1, 0, 0, 0, 26, 296, 1, 0, 0, 0, 28, 311, 1, 0, 0, 0, 30, 320, 1, 0, 0, 0, 32, 325, 1, 0, 0, 0, 34, 329, 1, 0, 0, 0, 36, 331, 1, 0, 0, 0, 38, 340, 1, 0, 0, 0, 40, 344, 1, 0, 0, 0, 42, 358, 1, 0, 0, 0, 44, 362, 1, 0, 0, 0, 46, 377, 1, 0, 0, 0, 48, 380, 1, 0, 0, 0, 50, 429, 1, 0, 0, 0, 52, 432, 1, 0, 0, 0, 54, 438, 1, 0, 0, 0, 56, 442, 1, 0, 0, 0, 58, 448, 1, 0, 0, 0, 60, 466, 1, 0, 0, 0, 62, 469, 1, 0, 0, 0, 64, 472, 1, 0, 0, 0, 66, 482, 1, 0, 0, 0, 68, 485, 1, 0, 0, 0, 70, 489, 1, 0, 0, 0, 72, 522, 1, 0, 0, 0, 74, 524, 1, 0, 0, 0, 76, 527, 1, 0, 0, 0, 78, 542, 1, 0, 0, 0, 80, 604, 1, 0, 0, 0, 82, 609, 1, 0, 0, 0, 84, 620, 1, 0, 0, 0, 86, 622, 1, 0, 0, 0, 88, 628, 1, 0, 0, 0, 90, 636, 1, 0, 0, 0, 92, 654, 1, 0, 0, 0, 94, 656, 1, 0, 0, 0, 96, 664, 1, 0, 0, 0, 98, 669, 1, 0, 0, 0, 100, 677, 1, 0, 0, 0, 102, 681, 1, 0, 0, 0, 104, 685, 1, 0, 0, 0, 106, 694, 1, 0, 0, 0, 108, 708, 1, 0, 0, 0, 110, 710, 1, 0, 0, 0, 112, 769, 1, 0, 0, 0, 114, 771, 1, 0, 0, 0, 116, 932, 1, 0, 0, 0, 118, 1074, 1, 0, 0, 0, 120, 1113, 1, 0, 0, 0, 122, 1126, 1, 0, 0, 0, 124, 1128, 1, 0, 0, 0, 126, 1149, 1, 0, 0, 0, 128, 1158, 1, 0, 0, 0, 130, 1160, 1, 0, 0, 0, 132, 1177, 1, 0, 0, 0, 134, 1190, 1, 0, 0, 0, 136, 1200, 1, 0, 0, 0, 138, 1204, 1, 0, 0, 0, 140, 1215, 1, 0, 0, 0, 142, 1225, 1, 0, 0, 0, 144, 1228, 1, 0, 0, 0, 146, 1241, 1, 0, 0, 0, 148, 1243, 1, 0, 0, 0, 150, 1245, 1, 0, 0, 0, 152, 1247, 1, 0, 0, 0, 154, 1251, 1, 0, 0, 0, 156, 1256, 1, 0, 0, 0, 158, 1258, 1, 0, 0, 0, 160, 1262, 1, 0, 0, 0, 162, 1268, 1, 0, 0, 0, 164, 1270, 1, 0, 0, 0, 166, 1284, 1, 0, 0, 0, 168, 1286, 1, 0, 0, 0, 170, 1300, 1, 0, 0, 0, 172, 174, 3, 2, 1, 0, 173, 172, 1, 0, 0, 0, 174, 177, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 175, 176, 1, 0, 0, 0, 176, 178, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 178, 179, 5, 0, 0, 1, 179, 1, 1, 0, 0, 0, 180, 183, 3, 6, 3, 0, 181, 183, 3, 10, 5, 0, 182, 180, 1, 0, 0, 0, 182, 181, 1, 0, 0, 0, 183, 3, 1, 0, 0, 0, 184, 185, 3, 116, 58, 0, 185, 5, 1, 0, 0, 0, 186, 187, 5, 53, 0, 0, 187, 191, 3, 156, 78, 0, 188, 189, 5, 116, 0, 0, 189, 190, 5, 123, 0, 0, 190, 192, 3, 4, 2, 0, 191, 188, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 7, 1, 0, 0, 0, 193, 198, 3, 156, 78, 0, 194, 195, 5, 117, 0, 0, 195, 197, 3, 156, 78, 0, 196, 194, 1, 0, 0, 0, 197, 200, 1, 0, 0, 0, 198, 196, 1, 0, 0, 0, 198, 199, 1, 0, 0, 0, 199, 202, 1, 0, 0, 0, 200, 198, 1, 0, 0, 0, 201, 203, 5, 117, 0, 0, 202, 201, 1, 0, 0, 0, 202, 203, 1, 0, 0, 0, 203, 9, 1, 0, 0, 0, 204, 217, 3, 12, 6, 0, 205, 217, 3, 14, 7, 0, 206, 217, 3, 18, 9, 0, 207, 217, 3, 20, 10, 0, 208, 217, 3, 22, 11, 0, 209, 217, 3, 26, 13, 0, 210, 217, 3, 24, 12, 0, 211, 217, 3, 28, 14, 0, 212, 217, 3, 30, 15, 0, 213, 217, 3, 36, 18, 0, 214, 217, 3, 32, 16, 0, 215, 217, 3, 34, 17, 0, 216, 204, 1, 0, 0, 0, 216, 205, 1, 0, 0, 0, 216, 206, 1, 0, 0, 0, 216, 207, 1, 0, 0, 0, 216, 208, 1, 0, 0, 0, 216, 209, 1, 0, 0, 0, 216, 210, 1, 0, 0, 0, 216, 211, 1, 0, 0, 0, 216, 212, 1, 0, 0, 0, 216, 213, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 216, 215, 1, 0, 0, 0, 217, 11, 1, 0, 0, 0, 218, 220, 5, 73, 0, 0, 219, 221, 3, 4, 2, 0, 220, 219, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 223, 1, 0, 0, 0, 222, 224, 5, 151, 0, 0, 223, 222, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 13, 1, 0, 0, 0, 225, 227, 5, 85, 0, 0, 226, 228, 3, 4, 2, 0, 227, 226, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 231, 5, 151, 0, 0, 230, 229, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 15, 1, 0, 0, 0, 232, 241, 5, 14, 0, 0, 233, 234, 5, 131, 0, 0, 234, 237, 3, 156, 78, 0, 235, 236, 5, 116, 0, 0, 236, 238, 3, 156, 78, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 5, 150, 0, 0, 240, 242, 1, 0, 0, 0, 241, 233, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 244, 3, 36, 18, 0, 244, 17, 1, 0, 0, 0, 245, 246, 5, 94, 0, 0, 246, 250, 3, 36, 18, 0, 247, 249, 3, 16, 8, 0, 248, 247, 1, 0, 0, 0, 249, 252, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 250, 251, 1, 0, 0, 0, 251, 255, 1, 0, 0, 0, 252, 250, 1, 0, 0, 0, 253, 254, 5, 29, 0, 0, 254, 256, 3, 36, 18, 0, 255, 253, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 19, 1, 0, 0, 0, 257, 258, 5, 41, 0, 0, 258, 259, 5, 131, 0, 0, 259, 260, 3, 4, 2, 0, 260, 261, 5, 150, 0, 0, 261, 264, 3, 10, 5, 0, 262, 263, 5, 25, 0, 0, 263, 265, 3, 10, 5, 0, 264, 262, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 21, 1, 0, 0, 0, 266, 267, 5, 101, 0, 0, 267, 268, 5, 131, 0, 0, 268, 269, 3, 4, 2, 0, 269, 270, 5, 150, 0, 0, 270, 272, 3, 10, 5, 0, 271, 273, 5, 151, 0, 0, 272, 271, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 23, 1, 0, 0, 0, 274, 275, 5, 33, 0, 0, 275, 279, 5, 131, 0, 0, 276, 280, 3, 6, 3, 0, 277, 280, 3, 30, 15, 0, 278, 280, 3, 4, 2, 0, 279, 276, 1, 0, 0, 0, 279, 277, 1, 0, 0, 0, 279, 278, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 281, 1, 0, 0, 0, 281, 283, 5, 151, 0, 0, 282, 284, 3, 4, 2, 0, 283, 282, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 289, 5, 151, 0, 0, 286, 290, 3, 6, 3, 0, 287, 290, 3, 30, 15, 0, 288, 290, 3, 4, 2, 0, 289, 286, 1, 0, 0, 0, 289, 287, 1, 0, 0, 0, 289, 288, 1, 0, 0, 0, 289, 290, 1, 0, 0, 0, 290, 291, 1, 0, 0, 0, 291, 292, 5, 150, 0, 0, 292, 294, 3, 10, 5, 0, 293, 295, 5, 151, 0, 0, 294, 293, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 25, 1, 0, 0, 0, 296, 297, 5, 33, 0, 0, 297, 298, 5, 131, 0, 0, 298, 299, 5, 53, 0, 0, 299, 302, 3, 156, 78, 0, 300, 301, 5, 117, 0, 0, 301, 303, 3, 156, 78, 0, 302, 300, 1, 0, 0, 0, 302, 303, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 305, 5, 43, 0, 0, 305, 306, 3, 4, 2, 0, 306, 307, 5, 150, 0, 0, 307, 309, 3, 10, 5, 0, 308, 310, 5, 151, 0, 0, 309, 308, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 27, 1, 0, 0, 0, 311, 312, 7, 0, 0, 0, 312, 313, 3, 156, 78, 0, 313, 315, 5, 131, 0, 0, 314, 316, 3, 8, 4, 0, 315, 314, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 5, 150, 0, 0, 318, 319, 3, 36, 18, 0, 319, 29, 1, 0, 0, 0, 320, 321, 3, 4, 2, 0, 321, 322, 5, 116, 0, 0, 322, 323, 5, 123, 0, 0, 323, 324, 3, 4, 2, 0, 324, 31, 1, 0, 0, 0, 325, 327, 3, 4, 2, 0, 326, 328, 5, 151, 0, 0, 327, 326, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 33, 1, 0, 0, 0, 329, 330, 5, 151, 0, 0, 330, 35, 1, 0, 0, 0, 331, 335, 5, 129, 0, 0, 332, 334, 3, 2, 1, 0, 333, 332, 1, 0, 0, 0, 334, 337, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 338, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 338, 339, 5, 148, 0, 0, 339, 37, 1, 0, 0, 0, 340, 341, 3, 4, 2, 0, 341, 342, 5, 116, 0, 0, 342, 343, 3, 4, 2, 0, 343, 39, 1, 0, 0, 0, 344, 349, 3, 38, 19, 0, 345, 346, 5, 117, 0, 0, 346, 348, 3, 38, 19, 0, 347, 345, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 353, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 354, 5, 117, 0, 0, 353, 352, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 41, 1, 0, 0, 0, 355, 359, 3, 44, 22, 0, 356, 359, 3, 48, 24, 0, 357, 359, 3, 120, 60, 0, 358, 355, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 358, 357, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 361, 5, 0, 0, 1, 361, 43, 1, 0, 0, 0, 362, 368, 3, 46, 23, 0, 363, 364, 5, 96, 0, 0, 364, 365, 5, 1, 0, 0, 365, 367, 3, 46, 23, 0, 366, 363, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 45, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 378, 3, 48, 24, 0, 372, 373, 5, 131, 0, 0, 373, 374, 3, 44, 22, 0, 374, 375, 5, 150, 0, 0, 375, 378, 1, 0, 0, 0, 376, 378, 3, 160, 80, 0, 377, 371, 1, 0, 0, 0, 377, 372, 1, 0, 0, 0, 377, 376, 1, 0, 0, 0, 378, 47, 1, 0, 0, 0, 379, 381, 3, 50, 25, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 384, 5, 80, 0, 0, 383, 385, 5, 24, 0, 0, 384, 383, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 387, 1, 0, 0, 0, 386, 388, 3, 52, 26, 0, 387, 386, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 391, 3, 114, 57, 0, 390, 392, 3, 54, 27, 0, 391, 390, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 1, 0, 0, 0, 393, 395, 3, 56, 28, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 397, 1, 0, 0, 0, 396, 398, 3, 60, 30, 0, 397, 396, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 400, 1, 0, 0, 0, 399, 401, 3, 62, 31, 0, 400, 399, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 403, 1, 0, 0, 0, 402, 404, 3, 64, 32, 0, 403, 402, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 406, 5, 103, 0, 0, 406, 408, 7, 1, 0, 0, 407, 405, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 410, 5, 103, 0, 0, 410, 412, 5, 90, 0, 0, 411, 409, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 1, 0, 0, 0, 413, 415, 3, 66, 33, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 417, 1, 0, 0, 0, 416, 418, 3, 58, 29, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 420, 1, 0, 0, 0, 419, 421, 3, 68, 34, 0, 420, 419, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 424, 1, 0, 0, 0, 422, 425, 3, 72, 36, 0, 423, 425, 3, 74, 37, 0, 424, 422, 1, 0, 0, 0, 424, 423, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 427, 1, 0, 0, 0, 426, 428, 3, 76, 38, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 49, 1, 0, 0, 0, 429, 430, 5, 103, 0, 0, 430, 431, 3, 124, 62, 0, 431, 51, 1, 0, 0, 0, 432, 433, 5, 89, 0, 0, 433, 436, 5, 109, 0, 0, 434, 435, 5, 103, 0, 0, 435, 437, 5, 86, 0, 0, 436, 434, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 53, 1, 0, 0, 0, 438, 439, 5, 34, 0, 0, 439, 440, 3, 78, 39, 0, 440, 55, 1, 0, 0, 0, 441, 443, 7, 2, 0, 0, 442, 441, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 5, 5, 0, 0, 445, 446, 5, 48, 0, 0, 446, 447, 3, 114, 57, 0, 447, 57, 1, 0, 0, 0, 448, 449, 5, 102, 0, 0, 449, 450, 3, 156, 78, 0, 450, 451, 5, 6, 0, 0, 451, 452, 5, 131, 0, 0, 452, 453, 3, 98, 49, 0, 453, 463, 5, 150, 0, 0, 454, 455, 5, 117, 0, 0, 455, 456, 3, 156, 78, 0, 456, 457, 5, 6, 0, 0, 457, 458, 5, 131, 0, 0, 458, 459, 3, 98, 49, 0, 459, 460, 5, 150, 0, 0, 460, 462, 1, 0, 0, 0, 461, 454, 1, 0, 0, 0, 462, 465, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 59, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 466, 467, 5, 70, 0, 0, 467, 468, 3, 116, 58, 0, 468, 61, 1, 0, 0, 0, 469, 470, 5, 100, 0, 0, 470, 471, 3, 116, 58, 0, 471, 63, 1, 0, 0, 0, 472, 473, 5, 37, 0, 0, 473, 480, 5, 11, 0, 0, 474, 475, 7, 1, 0, 0, 475, 476, 5, 131, 0, 0, 476, 477, 3, 114, 57, 0, 477, 478, 5, 150, 0, 0, 478, 481, 1, 0, 0, 0, 479, 481, 3, 114, 57, 0, 480, 474, 1, 0, 0, 0, 480, 479, 1, 0, 0, 0, 481, 65, 1, 0, 0, 0, 482, 483, 5, 38, 0, 0, 483, 484, 3, 116, 58, 0, 484, 67, 1, 0, 0, 0, 485, 486, 5, 65, 0, 0, 486, 487, 5, 11, 0, 0, 487, 488, 3, 88, 44, 0, 488, 69, 1, 0, 0, 0, 489, 490, 5, 65, 0, 0, 490, 491, 5, 11, 0, 0, 491, 492, 3, 114, 57, 0, 492, 71, 1, 0, 0, 0, 493, 494, 5, 55, 0, 0, 494, 497, 3, 116, 58, 0, 495, 496, 5, 117, 0, 0, 496, 498, 3, 116, 58, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 503, 1, 0, 0, 0, 499, 500, 5, 103, 0, 0, 500, 504, 5, 86, 0, 0, 501, 502, 5, 11, 0, 0, 502, 504, 3, 114, 57, 0, 503, 499, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 523, 1, 0, 0, 0, 505, 506, 5, 55, 0, 0, 506, 509, 3, 116, 58, 0, 507, 508, 5, 103, 0, 0, 508, 510, 5, 86, 0, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 5, 62, 0, 0, 512, 513, 3, 116, 58, 0, 513, 523, 1, 0, 0, 0, 514, 515, 5, 55, 0, 0, 515, 516, 3, 116, 58, 0, 516, 517, 5, 62, 0, 0, 517, 520, 3, 116, 58, 0, 518, 519, 5, 11, 0, 0, 519, 521, 3, 114, 57, 0, 520, 518, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 523, 1, 0, 0, 0, 522, 493, 1, 0, 0, 0, 522, 505, 1, 0, 0, 0, 522, 514, 1, 0, 0, 0, 523, 73, 1, 0, 0, 0, 524, 525, 5, 62, 0, 0, 525, 526, 3, 116, 58, 0, 526, 75, 1, 0, 0, 0, 527, 528, 5, 82, 0, 0, 528, 529, 3, 94, 47, 0, 529, 77, 1, 0, 0, 0, 530, 531, 6, 39, -1, 0, 531, 533, 3, 132, 66, 0, 532, 534, 5, 28, 0, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 536, 1, 0, 0, 0, 535, 537, 3, 86, 43, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 543, 1, 0, 0, 0, 538, 539, 5, 131, 0, 0, 539, 540, 3, 78, 39, 0, 540, 541, 5, 150, 0, 0, 541, 543, 1, 0, 0, 0, 542, 530, 1, 0, 0, 0, 542, 538, 1, 0, 0, 0, 543, 558, 1, 0, 0, 0, 544, 545, 10, 3, 0, 0, 545, 546, 3, 82, 41, 0, 546, 547, 3, 78, 39, 4, 547, 557, 1, 0, 0, 0, 548, 550, 10, 4, 0, 0, 549, 551, 3, 80, 40, 0, 550, 549, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 5, 48, 0, 0, 553, 554, 3, 78, 39, 0, 554, 555, 3, 84, 42, 0, 555, 557, 1, 0, 0, 0, 556, 544, 1, 0, 0, 0, 556, 548, 1, 0, 0, 0, 557, 560, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 79, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 561, 563, 7, 3, 0, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 571, 5, 45, 0, 0, 565, 567, 5, 45, 0, 0, 566, 568, 7, 3, 0, 0, 567, 566, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 571, 1, 0, 0, 0, 569, 571, 7, 3, 0, 0, 570, 562, 1, 0, 0, 0, 570, 565, 1, 0, 0, 0, 570, 569, 1, 0, 0, 0, 571, 605, 1, 0, 0, 0, 572, 574, 7, 4, 0, 0, 573, 572, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 577, 7, 5, 0, 0, 576, 578, 5, 66, 0, 0, 577, 576, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 587, 1, 0, 0, 0, 579, 581, 7, 5, 0, 0, 580, 582, 5, 66, 0, 0, 581, 580, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 584, 1, 0, 0, 0, 583, 585, 7, 4, 0, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 587, 1, 0, 0, 0, 586, 573, 1, 0, 0, 0, 586, 579, 1, 0, 0, 0, 587, 605, 1, 0, 0, 0, 588, 590, 7, 6, 0, 0, 589, 588, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 593, 5, 35, 0, 0, 592, 594, 5, 66, 0, 0, 593, 592, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 603, 1, 0, 0, 0, 595, 597, 5, 35, 0, 0, 596, 598, 5, 66, 0, 0, 597, 596, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 600, 1, 0, 0, 0, 599, 601, 7, 6, 0, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 603, 1, 0, 0, 0, 602, 589, 1, 0, 0, 0, 602, 595, 1, 0, 0, 0, 603, 605, 1, 0, 0, 0, 604, 570, 1, 0, 0, 0, 604, 586, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 605, 81, 1, 0, 0, 0, 606, 607, 5, 17, 0, 0, 607, 610, 5, 48, 0, 0, 608, 610, 5, 117, 0, 0, 609, 606, 1, 0, 0, 0, 609, 608, 1, 0, 0, 0, 610, 83, 1, 0, 0, 0, 611, 612, 5, 63, 0, 0, 612, 621, 3, 114, 57, 0, 613, 614, 5, 97, 0, 0, 614, 615, 5, 131, 0, 0, 615, 616, 3, 114, 57, 0, 616, 617, 5, 150, 0, 0, 617, 621, 1, 0, 0, 0, 618, 619, 5, 97, 0, 0, 619, 621, 3, 114, 57, 0, 620, 611, 1, 0, 0, 0, 620, 613, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 621, 85, 1, 0, 0, 0, 622, 623, 5, 78, 0, 0, 623, 626, 3, 92, 46, 0, 624, 625, 5, 62, 0, 0, 625, 627, 3, 92, 46, 0, 626, 624, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 87, 1, 0, 0, 0, 628, 633, 3, 90, 45, 0, 629, 630, 5, 117, 0, 0, 630, 632, 3, 90, 45, 0, 631, 629, 1, 0, 0, 0, 632, 635, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 89, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 638, 3, 116, 58, 0, 637, 639, 7, 7, 0, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 642, 1, 0, 0, 0, 640, 641, 5, 61, 0, 0, 641, 643, 7, 8, 0, 0, 642, 640, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 645, 5, 16, 0, 0, 645, 647, 5, 111, 0, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 91, 1, 0, 0, 0, 648, 655, 3, 160, 80, 0, 649, 652, 3, 144, 72, 0, 650, 651, 5, 152, 0, 0, 651, 653, 3, 144, 72, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 655, 1, 0, 0, 0, 654, 648, 1, 0, 0, 0, 654, 649, 1, 0, 0, 0, 655, 93, 1, 0, 0, 0, 656, 661, 3, 96, 48, 0, 657, 658, 5, 117, 0, 0, 658, 660, 3, 96, 48, 0, 659, 657, 1, 0, 0, 0, 660, 663, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 95, 1, 0, 0, 0, 663, 661, 1, 0, 0, 0, 664, 665, 3, 156, 78, 0, 665, 666, 5, 123, 0, 0, 666, 667, 3, 146, 73, 0, 667, 97, 1, 0, 0, 0, 668, 670, 3, 100, 50, 0, 669, 668, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 1, 0, 0, 0, 671, 673, 3, 102, 51, 0, 672, 671, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 675, 1, 0, 0, 0, 674, 676, 3, 104, 52, 0, 675, 674, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 99, 1, 0, 0, 0, 677, 678, 5, 68, 0, 0, 678, 679, 5, 11, 0, 0, 679, 680, 3, 114, 57, 0, 680, 101, 1, 0, 0, 0, 681, 682, 5, 65, 0, 0, 682, 683, 5, 11, 0, 0, 683, 684, 3, 88, 44, 0, 684, 103, 1, 0, 0, 0, 685, 686, 7, 9, 0, 0, 686, 687, 3, 106, 53, 0, 687, 105, 1, 0, 0, 0, 688, 695, 3, 108, 54, 0, 689, 690, 5, 9, 0, 0, 690, 691, 3, 108, 54, 0, 691, 692, 5, 2, 0, 0, 692, 693, 3, 108, 54, 0, 693, 695, 1, 0, 0, 0, 694, 688, 1, 0, 0, 0, 694, 689, 1, 0, 0, 0, 695, 107, 1, 0, 0, 0, 696, 697, 5, 19, 0, 0, 697, 709, 5, 76, 0, 0, 698, 699, 5, 95, 0, 0, 699, 709, 5, 69, 0, 0, 700, 701, 5, 95, 0, 0, 701, 709, 5, 32, 0, 0, 702, 703, 3, 144, 72, 0, 703, 704, 5, 69, 0, 0, 704, 709, 1, 0, 0, 0, 705, 706, 3, 144, 72, 0, 706, 707, 5, 32, 0, 0, 707, 709, 1, 0, 0, 0, 708, 696, 1, 0, 0, 0, 708, 698, 1, 0, 0, 0, 708, 700, 1, 0, 0, 0, 708, 702, 1, 0, 0, 0, 708, 705, 1, 0, 0, 0, 709, 109, 1, 0, 0, 0, 710, 711, 3, 116, 58, 0, 711, 712, 5, 0, 0, 1, 712, 111, 1, 0, 0, 0, 713, 770, 3, 156, 78, 0, 714, 715, 3, 156, 78, 0, 715, 716, 5, 131, 0, 0, 716, 717, 3, 156, 78, 0, 717, 724, 3, 112, 56, 0, 718, 719, 5, 117, 0, 0, 719, 720, 3, 156, 78, 0, 720, 721, 3, 112, 56, 0, 721, 723, 1, 0, 0, 0, 722, 718, 1, 0, 0, 0, 723, 726, 1, 0, 0, 0, 724, 722, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 728, 1, 0, 0, 0, 726, 724, 1, 0, 0, 0, 727, 729, 5, 117, 0, 0, 728, 727, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 5, 150, 0, 0, 731, 770, 1, 0, 0, 0, 732, 733, 3, 156, 78, 0, 733, 734, 5, 131, 0, 0, 734, 739, 3, 158, 79, 0, 735, 736, 5, 117, 0, 0, 736, 738, 3, 158, 79, 0, 737, 735, 1, 0, 0, 0, 738, 741, 1, 0, 0, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 744, 5, 117, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 150, 0, 0, 746, 770, 1, 0, 0, 0, 747, 748, 3, 156, 78, 0, 748, 749, 5, 131, 0, 0, 749, 754, 3, 112, 56, 0, 750, 751, 5, 117, 0, 0, 751, 753, 3, 112, 56, 0, 752, 750, 1, 0, 0, 0, 753, 756, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 758, 1, 0, 0, 0, 756, 754, 1, 0, 0, 0, 757, 759, 5, 117, 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 761, 5, 150, 0, 0, 761, 770, 1, 0, 0, 0, 762, 763, 3, 156, 78, 0, 763, 765, 5, 131, 0, 0, 764, 766, 3, 114, 57, 0, 765, 764, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 5, 150, 0, 0, 768, 770, 1, 0, 0, 0, 769, 713, 1, 0, 0, 0, 769, 714, 1, 0, 0, 0, 769, 732, 1, 0, 0, 0, 769, 747, 1, 0, 0, 0, 769, 762, 1, 0, 0, 0, 770, 113, 1, 0, 0, 0, 771, 776, 3, 116, 58, 0, 772, 773, 5, 117, 0, 0, 773, 775, 3, 116, 58, 0, 774, 772, 1, 0, 0, 0, 775, 778, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 780, 1, 0, 0, 0, 778, 776, 1, 0, 0, 0, 779, 781, 5, 117, 0, 0, 780, 779, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 115, 1, 0, 0, 0, 782, 783, 6, 58, -1, 0, 783, 785, 5, 12, 0, 0, 784, 786, 3, 116, 58, 0, 785, 784, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 792, 1, 0, 0, 0, 787, 788, 5, 99, 0, 0, 788, 789, 3, 116, 58, 0, 789, 790, 5, 84, 0, 0, 790, 791, 3, 116, 58, 0, 791, 793, 1, 0, 0, 0, 792, 787, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 798, 1, 0, 0, 0, 796, 797, 5, 25, 0, 0, 797, 799, 3, 116, 58, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 5, 26, 0, 0, 801, 933, 1, 0, 0, 0, 802, 803, 5, 13, 0, 0, 803, 804, 5, 131, 0, 0, 804, 805, 3, 116, 58, 0, 805, 806, 5, 6, 0, 0, 806, 807, 3, 112, 56, 0, 807, 808, 5, 150, 0, 0, 808, 933, 1, 0, 0, 0, 809, 810, 5, 20, 0, 0, 810, 933, 5, 111, 0, 0, 811, 812, 5, 46, 0, 0, 812, 813, 3, 116, 58, 0, 813, 814, 3, 148, 74, 0, 814, 933, 1, 0, 0, 0, 815, 816, 5, 83, 0, 0, 816, 817, 5, 131, 0, 0, 817, 818, 3, 116, 58, 0, 818, 819, 5, 34, 0, 0, 819, 822, 3, 116, 58, 0, 820, 821, 5, 33, 0, 0, 821, 823, 3, 116, 58, 0, 822, 820, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 825, 5, 150, 0, 0, 825, 933, 1, 0, 0, 0, 826, 827, 5, 87, 0, 0, 827, 933, 5, 111, 0, 0, 828, 829, 5, 92, 0, 0, 829, 830, 5, 131, 0, 0, 830, 831, 7, 10, 0, 0, 831, 832, 3, 162, 81, 0, 832, 833, 5, 34, 0, 0, 833, 834, 3, 116, 58, 0, 834, 835, 5, 150, 0, 0, 835, 933, 1, 0, 0, 0, 836, 837, 3, 156, 78, 0, 837, 839, 5, 131, 0, 0, 838, 840, 3, 114, 57, 0, 839, 838, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 5, 150, 0, 0, 842, 851, 1, 0, 0, 0, 843, 845, 5, 131, 0, 0, 844, 846, 5, 24, 0, 0, 845, 844, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 848, 1, 0, 0, 0, 847, 849, 3, 114, 57, 0, 848, 847, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 852, 5, 150, 0, 0, 851, 843, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 5, 67, 0, 0, 854, 855, 5, 131, 0, 0, 855, 856, 3, 98, 49, 0, 856, 857, 5, 150, 0, 0, 857, 933, 1, 0, 0, 0, 858, 859, 3, 156, 78, 0, 859, 861, 5, 131, 0, 0, 860, 862, 3, 114, 57, 0, 861, 860, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 5, 150, 0, 0, 864, 873, 1, 0, 0, 0, 865, 867, 5, 131, 0, 0, 866, 868, 5, 24, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 871, 3, 114, 57, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 5, 150, 0, 0, 873, 865, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 67, 0, 0, 876, 877, 3, 156, 78, 0, 877, 933, 1, 0, 0, 0, 878, 884, 3, 156, 78, 0, 879, 881, 5, 131, 0, 0, 880, 882, 3, 114, 57, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 885, 5, 150, 0, 0, 884, 879, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 888, 5, 131, 0, 0, 887, 889, 5, 24, 0, 0, 888, 887, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 891, 1, 0, 0, 0, 890, 892, 3, 114, 57, 0, 891, 890, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 5, 150, 0, 0, 894, 933, 1, 0, 0, 0, 895, 933, 3, 120, 60, 0, 896, 933, 3, 164, 82, 0, 897, 933, 3, 146, 73, 0, 898, 899, 5, 119, 0, 0, 899, 933, 3, 116, 58, 20, 900, 901, 5, 59, 0, 0, 901, 933, 3, 116, 58, 14, 902, 903, 3, 136, 68, 0, 903, 904, 5, 121, 0, 0, 904, 906, 1, 0, 0, 0, 905, 902, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 933, 5, 113, 0, 0, 908, 909, 5, 131, 0, 0, 909, 910, 3, 44, 22, 0, 910, 911, 5, 150, 0, 0, 911, 933, 1, 0, 0, 0, 912, 913, 5, 131, 0, 0, 913, 914, 3, 116, 58, 0, 914, 915, 5, 150, 0, 0, 915, 933, 1, 0, 0, 0, 916, 917, 5, 131, 0, 0, 917, 918, 3, 114, 57, 0, 918, 919, 5, 150, 0, 0, 919, 933, 1, 0, 0, 0, 920, 922, 5, 130, 0, 0, 921, 923, 3, 114, 57, 0, 922, 921, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 933, 5, 149, 0, 0, 925, 927, 5, 129, 0, 0, 926, 928, 3, 40, 20, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 933, 5, 148, 0, 0, 930, 933, 3, 118, 59, 0, 931, 933, 3, 128, 64, 0, 932, 782, 1, 0, 0, 0, 932, 802, 1, 0, 0, 0, 932, 809, 1, 0, 0, 0, 932, 811, 1, 0, 0, 0, 932, 815, 1, 0, 0, 0, 932, 826, 1, 0, 0, 0, 932, 828, 1, 0, 0, 0, 932, 836, 1, 0, 0, 0, 932, 858, 1, 0, 0, 0, 932, 878, 1, 0, 0, 0, 932, 895, 1, 0, 0, 0, 932, 896, 1, 0, 0, 0, 932, 897, 1, 0, 0, 0, 932, 898, 1, 0, 0, 0, 932, 900, 1, 0, 0, 0, 932, 905, 1, 0, 0, 0, 932, 908, 1, 0, 0, 0, 932, 912, 1, 0, 0, 0, 932, 916, 1, 0, 0, 0, 932, 920, 1, 0, 0, 0, 932, 925, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 932, 931, 1, 0, 0, 0, 933, 1044, 1, 0, 0, 0, 934, 938, 10, 19, 0, 0, 935, 939, 5, 113, 0, 0, 936, 939, 5, 152, 0, 0, 937, 939, 5, 139, 0, 0, 938, 935, 1, 0, 0, 0, 938, 936, 1, 0, 0, 0, 938, 937, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 1043, 3, 116, 58, 20, 941, 945, 10, 18, 0, 0, 942, 946, 5, 140, 0, 0, 943, 946, 5, 119, 0, 0, 944, 946, 5, 118, 0, 0, 945, 942, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 945, 944, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 1043, 3, 116, 58, 19, 948, 973, 10, 17, 0, 0, 949, 974, 5, 122, 0, 0, 950, 974, 5, 123, 0, 0, 951, 974, 5, 134, 0, 0, 952, 974, 5, 132, 0, 0, 953, 974, 5, 133, 0, 0, 954, 974, 5, 124, 0, 0, 955, 974, 5, 125, 0, 0, 956, 958, 5, 59, 0, 0, 957, 956, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 961, 5, 43, 0, 0, 960, 962, 5, 15, 0, 0, 961, 960, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 974, 1, 0, 0, 0, 963, 965, 5, 59, 0, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 974, 7, 11, 0, 0, 967, 974, 5, 146, 0, 0, 968, 974, 5, 147, 0, 0, 969, 974, 5, 136, 0, 0, 970, 974, 5, 127, 0, 0, 971, 974, 5, 128, 0, 0, 972, 974, 5, 135, 0, 0, 973, 949, 1, 0, 0, 0, 973, 950, 1, 0, 0, 0, 973, 951, 1, 0, 0, 0, 973, 952, 1, 0, 0, 0, 973, 953, 1, 0, 0, 0, 973, 954, 1, 0, 0, 0, 973, 955, 1, 0, 0, 0, 973, 957, 1, 0, 0, 0, 973, 964, 1, 0, 0, 0, 973, 967, 1, 0, 0, 0, 973, 968, 1, 0, 0, 0, 973, 969, 1, 0, 0, 0, 973, 970, 1, 0, 0, 0, 973, 971, 1, 0, 0, 0, 973, 972, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 1043, 3, 116, 58, 18, 976, 977, 10, 15, 0, 0, 977, 978, 5, 138, 0, 0, 978, 1043, 3, 116, 58, 16, 979, 980, 10, 13, 0, 0, 980, 981, 5, 2, 0, 0, 981, 1043, 3, 116, 58, 14, 982, 983, 10, 12, 0, 0, 983, 984, 5, 64, 0, 0, 984, 1043, 3, 116, 58, 13, 985, 987, 10, 11, 0, 0, 986, 988, 5, 59, 0, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 5, 9, 0, 0, 990, 991, 3, 116, 58, 0, 991, 992, 5, 2, 0, 0, 992, 993, 3, 116, 58, 12, 993, 1043, 1, 0, 0, 0, 994, 995, 10, 10, 0, 0, 995, 996, 5, 141, 0, 0, 996, 997, 3, 116, 58, 0, 997, 998, 5, 116, 0, 0, 998, 999, 3, 116, 58, 10, 999, 1043, 1, 0, 0, 0, 1000, 1001, 10, 30, 0, 0, 1001, 1003, 5, 131, 0, 0, 1002, 1004, 3, 114, 57, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1043, 5, 150, 0, 0, 1006, 1007, 10, 26, 0, 0, 1007, 1008, 5, 130, 0, 0, 1008, 1009, 3, 116, 58, 0, 1009, 1010, 5, 149, 0, 0, 1010, 1043, 1, 0, 0, 0, 1011, 1012, 10, 25, 0, 0, 1012, 1013, 5, 121, 0, 0, 1013, 1043, 5, 109, 0, 0, 1014, 1015, 10, 24, 0, 0, 1015, 1016, 5, 121, 0, 0, 1016, 1043, 3, 156, 78, 0, 1017, 1018, 10, 23, 0, 0, 1018, 1019, 5, 137, 0, 0, 1019, 1020, 5, 130, 0, 0, 1020, 1021, 3, 116, 58, 0, 1021, 1022, 5, 149, 0, 0, 1022, 1043, 1, 0, 0, 0, 1023, 1024, 10, 22, 0, 0, 1024, 1025, 5, 137, 0, 0, 1025, 1043, 5, 109, 0, 0, 1026, 1027, 10, 21, 0, 0, 1027, 1028, 5, 137, 0, 0, 1028, 1043, 3, 156, 78, 0, 1029, 1030, 10, 16, 0, 0, 1030, 1032, 5, 47, 0, 0, 1031, 1033, 5, 59, 0, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1043, 5, 60, 0, 0, 1035, 1040, 10, 9, 0, 0, 1036, 1037, 5, 6, 0, 0, 1037, 1041, 3, 156, 78, 0, 1038, 1039, 5, 6, 0, 0, 1039, 1041, 5, 111, 0, 0, 1040, 1036, 1, 0, 0, 0, 1040, 1038, 1, 0, 0, 0, 1041, 1043, 1, 0, 0, 0, 1042, 934, 1, 0, 0, 0, 1042, 941, 1, 0, 0, 0, 1042, 948, 1, 0, 0, 0, 1042, 976, 1, 0, 0, 0, 1042, 979, 1, 0, 0, 0, 1042, 982, 1, 0, 0, 0, 1042, 985, 1, 0, 0, 0, 1042, 994, 1, 0, 0, 0, 1042, 1000, 1, 0, 0, 0, 1042, 1006, 1, 0, 0, 0, 1042, 1011, 1, 0, 0, 0, 1042, 1014, 1, 0, 0, 0, 1042, 1017, 1, 0, 0, 0, 1042, 1023, 1, 0, 0, 0, 1042, 1026, 1, 0, 0, 0, 1042, 1029, 1, 0, 0, 0, 1042, 1035, 1, 0, 0, 0, 1043, 1046, 1, 0, 0, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 117, 1, 0, 0, 0, 1046, 1044, 1, 0, 0, 0, 1047, 1048, 5, 131, 0, 0, 1048, 1053, 3, 156, 78, 0, 1049, 1050, 5, 117, 0, 0, 1050, 1052, 3, 156, 78, 0, 1051, 1049, 1, 0, 0, 0, 1052, 1055, 1, 0, 0, 0, 1053, 1051, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1057, 1, 0, 0, 0, 1055, 1053, 1, 0, 0, 0, 1056, 1058, 5, 117, 0, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1060, 5, 150, 0, 0, 1060, 1075, 1, 0, 0, 0, 1061, 1066, 3, 156, 78, 0, 1062, 1063, 5, 117, 0, 0, 1063, 1065, 3, 156, 78, 0, 1064, 1062, 1, 0, 0, 0, 1065, 1068, 1, 0, 0, 0, 1066, 1064, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1070, 1, 0, 0, 0, 1068, 1066, 1, 0, 0, 0, 1069, 1071, 5, 117, 0, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1075, 1, 0, 0, 0, 1072, 1073, 5, 131, 0, 0, 1073, 1075, 5, 150, 0, 0, 1074, 1047, 1, 0, 0, 0, 1074, 1061, 1, 0, 0, 0, 1074, 1072, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1079, 5, 112, 0, 0, 1077, 1080, 3, 36, 18, 0, 1078, 1080, 3, 116, 58, 0, 1079, 1077, 1, 0, 0, 0, 1079, 1078, 1, 0, 0, 0, 1080, 119, 1, 0, 0, 0, 1081, 1082, 5, 133, 0, 0, 1082, 1086, 3, 156, 78, 0, 1083, 1085, 3, 122, 61, 0, 1084, 1083, 1, 0, 0, 0, 1085, 1088, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1089, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1089, 1090, 5, 152, 0, 0, 1090, 1091, 5, 125, 0, 0, 1091, 1114, 1, 0, 0, 0, 1092, 1093, 5, 133, 0, 0, 1093, 1097, 3, 156, 78, 0, 1094, 1096, 3, 122, 61, 0, 1095, 1094, 1, 0, 0, 0, 1096, 1099, 1, 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 1, 0, 0, 0, 1099, 1097, 1, 0, 0, 0, 1100, 1106, 5, 125, 0, 0, 1101, 1107, 3, 120, 60, 0, 1102, 1103, 5, 129, 0, 0, 1103, 1104, 3, 116, 58, 0, 1104, 1105, 5, 148, 0, 0, 1105, 1107, 1, 0, 0, 0, 1106, 1101, 1, 0, 0, 0, 1106, 1102, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 5, 133, 0, 0, 1109, 1110, 5, 152, 0, 0, 1110, 1111, 3, 156, 78, 0, 1111, 1112, 5, 125, 0, 0, 1112, 1114, 1, 0, 0, 0, 1113, 1081, 1, 0, 0, 0, 1113, 1092, 1, 0, 0, 0, 1114, 121, 1, 0, 0, 0, 1115, 1116, 3, 156, 78, 0, 1116, 1117, 5, 123, 0, 0, 1117, 1118, 3, 162, 81, 0, 1118, 1127, 1, 0, 0, 0, 1119, 1120, 3, 156, 78, 0, 1120, 1121, 5, 123, 0, 0, 1121, 1122, 5, 129, 0, 0, 1122, 1123, 3, 116, 58, 0, 1123, 1124, 5, 148, 0, 0, 1124, 1127, 1, 0, 0, 0, 1125, 1127, 3, 156, 78, 0, 1126, 1115, 1, 0, 0, 0, 1126, 1119, 1, 0, 0, 0, 1126, 1125, 1, 0, 0, 0, 1127, 123, 1, 0, 0, 0, 1128, 1133, 3, 126, 63, 0, 1129, 1130, 5, 117, 0, 0, 1130, 1132, 3, 126, 63, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1135, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1137, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1136, 1138, 5, 117, 0, 0, 1137, 1136, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 125, 1, 0, 0, 0, 1139, 1140, 3, 156, 78, 0, 1140, 1141, 5, 6, 0, 0, 1141, 1142, 5, 131, 0, 0, 1142, 1143, 3, 44, 22, 0, 1143, 1144, 5, 150, 0, 0, 1144, 1150, 1, 0, 0, 0, 1145, 1146, 3, 116, 58, 0, 1146, 1147, 5, 6, 0, 0, 1147, 1148, 3, 156, 78, 0, 1148, 1150, 1, 0, 0, 0, 1149, 1139, 1, 0, 0, 0, 1149, 1145, 1, 0, 0, 0, 1150, 127, 1, 0, 0, 0, 1151, 1159, 3, 160, 80, 0, 1152, 1153, 3, 136, 68, 0, 1153, 1154, 5, 121, 0, 0, 1154, 1156, 1, 0, 0, 0, 1155, 1152, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1159, 3, 130, 65, 0, 1158, 1151, 1, 0, 0, 0, 1158, 1155, 1, 0, 0, 0, 1159, 129, 1, 0, 0, 0, 1160, 1165, 3, 156, 78, 0, 1161, 1162, 5, 121, 0, 0, 1162, 1164, 3, 156, 78, 0, 1163, 1161, 1, 0, 0, 0, 1164, 1167, 1, 0, 0, 0, 1165, 1163, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 131, 1, 0, 0, 0, 1167, 1165, 1, 0, 0, 0, 1168, 1169, 6, 66, -1, 0, 1169, 1178, 3, 136, 68, 0, 1170, 1178, 3, 134, 67, 0, 1171, 1172, 5, 131, 0, 0, 1172, 1173, 3, 44, 22, 0, 1173, 1174, 5, 150, 0, 0, 1174, 1178, 1, 0, 0, 0, 1175, 1178, 3, 120, 60, 0, 1176, 1178, 3, 160, 80, 0, 1177, 1168, 1, 0, 0, 0, 1177, 1170, 1, 0, 0, 0, 1177, 1171, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1176, 1, 0, 0, 0, 1178, 1187, 1, 0, 0, 0, 1179, 1183, 10, 3, 0, 0, 1180, 1184, 3, 154, 77, 0, 1181, 1182, 5, 6, 0, 0, 1182, 1184, 3, 156, 78, 0, 1183, 1180, 1, 0, 0, 0, 1183, 1181, 1, 0, 0, 0, 1184, 1186, 1, 0, 0, 0, 1185, 1179, 1, 0, 0, 0, 1186, 1189, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 133, 1, 0, 0, 0, 1189, 1187, 1, 0, 0, 0, 1190, 1191, 3, 156, 78, 0, 1191, 1193, 5, 131, 0, 0, 1192, 1194, 3, 138, 69, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 5, 150, 0, 0, 1196, 135, 1, 0, 0, 0, 1197, 1198, 3, 140, 70, 0, 1198, 1199, 5, 121, 0, 0, 1199, 1201, 1, 0, 0, 0, 1200, 1197, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 3, 156, 78, 0, 1203, 137, 1, 0, 0, 0, 1204, 1209, 3, 116, 58, 0, 1205, 1206, 5, 117, 0, 0, 1206, 1208, 3, 116, 58, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1211, 1, 0, 0, 0, 1209, 1207, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1213, 1, 0, 0, 0, 1211, 1209, 1, 0, 0, 0, 1212, 1214, 5, 117, 0, 0, 1213, 1212, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 139, 1, 0, 0, 0, 1215, 1216, 3, 156, 78, 0, 1216, 141, 1, 0, 0, 0, 1217, 1226, 5, 107, 0, 0, 1218, 1219, 5, 121, 0, 0, 1219, 1226, 7, 12, 0, 0, 1220, 1221, 5, 109, 0, 0, 1221, 1223, 5, 121, 0, 0, 1222, 1224, 7, 12, 0, 0, 1223, 1222, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1226, 1, 0, 0, 0, 1225, 1217, 1, 0, 0, 0, 1225, 1218, 1, 0, 0, 0, 1225, 1220, 1, 0, 0, 0, 1226, 143, 1, 0, 0, 0, 1227, 1229, 7, 13, 0, 0, 1228, 1227, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1236, 1, 0, 0, 0, 1230, 1237, 3, 142, 71, 0, 1231, 1237, 5, 108, 0, 0, 1232, 1237, 5, 109, 0, 0, 1233, 1237, 5, 110, 0, 0, 1234, 1237, 5, 44, 0, 0, 1235, 1237, 5, 58, 0, 0, 1236, 1230, 1, 0, 0, 0, 1236, 1231, 1, 0, 0, 0, 1236, 1232, 1, 0, 0, 0, 1236, 1233, 1, 0, 0, 0, 1236, 1234, 1, 0, 0, 0, 1236, 1235, 1, 0, 0, 0, 1237, 145, 1, 0, 0, 0, 1238, 1242, 3, 144, 72, 0, 1239, 1242, 5, 111, 0, 0, 1240, 1242, 5, 60, 0, 0, 1241, 1238, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1241, 1240, 1, 0, 0, 0, 1242, 147, 1, 0, 0, 0, 1243, 1244, 7, 14, 0, 0, 1244, 149, 1, 0, 0, 0, 1245, 1246, 7, 15, 0, 0, 1246, 151, 1, 0, 0, 0, 1247, 1248, 7, 16, 0, 0, 1248, 153, 1, 0, 0, 0, 1249, 1252, 5, 106, 0, 0, 1250, 1252, 3, 152, 76, 0, 1251, 1249, 1, 0, 0, 0, 1251, 1250, 1, 0, 0, 0, 1252, 155, 1, 0, 0, 0, 1253, 1257, 5, 106, 0, 0, 1254, 1257, 3, 148, 74, 0, 1255, 1257, 3, 150, 75, 0, 1256, 1253, 1, 0, 0, 0, 1256, 1254, 1, 0, 0, 0, 1256, 1255, 1, 0, 0, 0, 1257, 157, 1, 0, 0, 0, 1258, 1259, 3, 162, 81, 0, 1259, 1260, 5, 123, 0, 0, 1260, 1261, 3, 144, 72, 0, 1261, 159, 1, 0, 0, 0, 1262, 1263, 5, 129, 0, 0, 1263, 1264, 3, 116, 58, 0, 1264, 1265, 5, 148, 0, 0, 1265, 161, 1, 0, 0, 0, 1266, 1269, 5, 111, 0, 0, 1267, 1269, 3, 164, 82, 0, 1268, 1266, 1, 0, 0, 0, 1268, 1267, 1, 0, 0, 0, 1269, 163, 1, 0, 0, 0, 1270, 1274, 5, 143, 0, 0, 1271, 1273, 3, 166, 83, 0, 1272, 1271, 1, 0, 0, 0, 1273, 1276, 1, 0, 0, 0, 1274, 1272, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1277, 1, 0, 0, 0, 1276, 1274, 1, 0, 0, 0, 1277, 1278, 5, 145, 0, 0, 1278, 165, 1, 0, 0, 0, 1279, 1280, 5, 158, 0, 0, 1280, 1281, 3, 116, 58, 0, 1281, 1282, 5, 148, 0, 0, 1282, 1285, 1, 0, 0, 0, 1283, 1285, 5, 157, 0, 0, 1284, 1279, 1, 0, 0, 0, 1284, 1283, 1, 0, 0, 0, 1285, 167, 1, 0, 0, 0, 1286, 1290, 5, 144, 0, 0, 1287, 1289, 3, 170, 85, 0, 1288, 1287, 1, 0, 0, 0, 1289, 1292, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1293, 1, 0, 0, 0, 1292, 1290, 1, 0, 0, 0, 1293, 1294, 5, 0, 0, 1, 1294, 169, 1, 0, 0, 0, 1295, 1296, 5, 160, 0, 0, 1296, 1297, 3, 116, 58, 0, 1297, 1298, 5, 148, 0, 0, 1298, 1301, 1, 0, 0, 0, 1299, 1301, 5, 159, 0, 0, 1300, 1295, 1, 0, 0, 0, 1300, 1299, 1, 0, 0, 0, 1301, 171, 1, 0, 0, 0, 167, 175, 182, 191, 198, 202, 216, 220, 223, 227, 230, 237, 241, 250, 255, 264, 272, 279, 283, 289, 294, 302, 309, 315, 327, 335, 349, 353, 358, 368, 377, 380, 384, 387, 391, 394, 397, 400, 403, 407, 411, 414, 417, 420, 424, 427, 436, 442, 463, 480, 497, 503, 509, 520, 522, 533, 536, 542, 550, 556, 558, 562, 567, 570, 573, 577, 581, 584, 586, 589, 593, 597, 600, 602, 604, 609, 620, 626, 633, 638, 642, 646, 652, 654, 661, 669, 672, 675, 694, 708, 724, 728, 739, 743, 754, 758, 765, 769, 776, 780, 785, 794, 798, 822, 839, 845, 848, 851, 861, 867, 870, 873, 881, 884, 888, 891, 905, 922, 927, 932, 938, 945, 957, 961, 964, 973, 987, 1003, 1032, 1040, 1042, 1044, 1053, 1057, 1066, 1070, 1074, 1079, 1086, 1097, 1106, 1113, 1126, 1133, 1137, 1149, 1155, 1158, 1165, 1177, 1183, 1187, 1193, 1200, 1209, 1213, 1223, 1225, 1228, 1236, 1241, 1251, 1256, 1268, 1274, 1284, 1290, 1300] \ No newline at end of file +[4, 1, 160, 1302, 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, 1, 0, 5, 0, 174, 8, 0, 10, 0, 12, 0, 177, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 183, 8, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 192, 8, 3, 1, 4, 1, 4, 1, 4, 5, 4, 197, 8, 4, 10, 4, 12, 4, 200, 9, 4, 1, 4, 3, 4, 203, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 217, 8, 5, 1, 6, 1, 6, 3, 6, 221, 8, 6, 1, 6, 3, 6, 224, 8, 6, 1, 7, 1, 7, 3, 7, 228, 8, 7, 1, 7, 3, 7, 231, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 238, 8, 8, 1, 8, 1, 8, 3, 8, 242, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 249, 8, 9, 10, 9, 12, 9, 252, 9, 9, 1, 9, 1, 9, 3, 9, 256, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 265, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 273, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 280, 8, 12, 1, 12, 1, 12, 3, 12, 284, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 290, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 295, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 303, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 310, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 316, 8, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 328, 8, 16, 1, 17, 1, 17, 1, 18, 1, 18, 5, 18, 334, 8, 18, 10, 18, 12, 18, 337, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 5, 20, 348, 8, 20, 10, 20, 12, 20, 351, 9, 20, 1, 20, 3, 20, 354, 8, 20, 1, 21, 1, 21, 1, 21, 3, 21, 359, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 367, 8, 22, 10, 22, 12, 22, 370, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 378, 8, 23, 1, 24, 3, 24, 381, 8, 24, 1, 24, 1, 24, 3, 24, 385, 8, 24, 1, 24, 3, 24, 388, 8, 24, 1, 24, 1, 24, 3, 24, 392, 8, 24, 1, 24, 3, 24, 395, 8, 24, 1, 24, 3, 24, 398, 8, 24, 1, 24, 3, 24, 401, 8, 24, 1, 24, 3, 24, 404, 8, 24, 1, 24, 1, 24, 3, 24, 408, 8, 24, 1, 24, 1, 24, 3, 24, 412, 8, 24, 1, 24, 3, 24, 415, 8, 24, 1, 24, 3, 24, 418, 8, 24, 1, 24, 3, 24, 421, 8, 24, 1, 24, 1, 24, 3, 24, 425, 8, 24, 1, 24, 3, 24, 428, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 437, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 443, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 462, 8, 29, 10, 29, 12, 29, 465, 9, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 481, 8, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 498, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 504, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 510, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 521, 8, 36, 3, 36, 523, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 534, 8, 39, 1, 39, 3, 39, 537, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 543, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 551, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 557, 8, 39, 10, 39, 12, 39, 560, 9, 39, 1, 40, 3, 40, 563, 8, 40, 1, 40, 1, 40, 1, 40, 3, 40, 568, 8, 40, 1, 40, 3, 40, 571, 8, 40, 1, 40, 3, 40, 574, 8, 40, 1, 40, 1, 40, 3, 40, 578, 8, 40, 1, 40, 1, 40, 3, 40, 582, 8, 40, 1, 40, 3, 40, 585, 8, 40, 3, 40, 587, 8, 40, 1, 40, 3, 40, 590, 8, 40, 1, 40, 1, 40, 3, 40, 594, 8, 40, 1, 40, 1, 40, 3, 40, 598, 8, 40, 1, 40, 3, 40, 601, 8, 40, 3, 40, 603, 8, 40, 3, 40, 605, 8, 40, 1, 41, 1, 41, 1, 41, 3, 41, 610, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 621, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 627, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 632, 8, 44, 10, 44, 12, 44, 635, 9, 44, 1, 45, 1, 45, 3, 45, 639, 8, 45, 1, 45, 1, 45, 3, 45, 643, 8, 45, 1, 45, 1, 45, 3, 45, 647, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 653, 8, 46, 3, 46, 655, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 660, 8, 47, 10, 47, 12, 47, 663, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 3, 49, 670, 8, 49, 1, 49, 3, 49, 673, 8, 49, 1, 49, 3, 49, 676, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 695, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 709, 8, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 723, 8, 56, 10, 56, 12, 56, 726, 9, 56, 1, 56, 3, 56, 729, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 738, 8, 56, 10, 56, 12, 56, 741, 9, 56, 1, 56, 3, 56, 744, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 753, 8, 56, 10, 56, 12, 56, 756, 9, 56, 1, 56, 3, 56, 759, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 766, 8, 56, 1, 56, 1, 56, 3, 56, 770, 8, 56, 1, 57, 1, 57, 1, 57, 5, 57, 775, 8, 57, 10, 57, 12, 57, 778, 9, 57, 1, 57, 3, 57, 781, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 786, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 4, 58, 793, 8, 58, 11, 58, 12, 58, 794, 1, 58, 1, 58, 3, 58, 799, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 823, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 840, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 846, 8, 58, 1, 58, 3, 58, 849, 8, 58, 1, 58, 3, 58, 852, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 862, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 868, 8, 58, 1, 58, 3, 58, 871, 8, 58, 1, 58, 3, 58, 874, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 882, 8, 58, 1, 58, 3, 58, 885, 8, 58, 1, 58, 1, 58, 3, 58, 889, 8, 58, 1, 58, 3, 58, 892, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 906, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 923, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 928, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 934, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 940, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 947, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 959, 8, 58, 1, 58, 1, 58, 3, 58, 963, 8, 58, 1, 58, 3, 58, 966, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 975, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 989, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1005, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1034, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1042, 8, 58, 5, 58, 1044, 8, 58, 10, 58, 12, 58, 1047, 9, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1053, 8, 59, 10, 59, 12, 59, 1056, 9, 59, 1, 59, 3, 59, 1059, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1066, 8, 59, 10, 59, 12, 59, 1069, 9, 59, 1, 59, 3, 59, 1072, 8, 59, 1, 59, 1, 59, 3, 59, 1076, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1081, 8, 59, 1, 60, 1, 60, 1, 60, 5, 60, 1086, 8, 60, 10, 60, 12, 60, 1089, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1097, 8, 60, 10, 60, 12, 60, 1100, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1108, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1115, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1128, 8, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1133, 8, 62, 10, 62, 12, 62, 1136, 9, 62, 1, 62, 3, 62, 1139, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1151, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1157, 8, 64, 1, 64, 3, 64, 1160, 8, 64, 1, 65, 1, 65, 1, 65, 5, 65, 1165, 8, 65, 10, 65, 12, 65, 1168, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1179, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1185, 8, 66, 5, 66, 1187, 8, 66, 10, 66, 12, 66, 1190, 9, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1195, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1202, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 5, 69, 1209, 8, 69, 10, 69, 12, 69, 1212, 9, 69, 1, 69, 3, 69, 1215, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1225, 8, 71, 3, 71, 1227, 8, 71, 1, 72, 3, 72, 1230, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1238, 8, 72, 1, 73, 1, 73, 1, 73, 3, 73, 1243, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1253, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 1258, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 3, 81, 1268, 8, 81, 1, 82, 1, 82, 5, 82, 1272, 8, 82, 10, 82, 12, 82, 1275, 9, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1284, 8, 83, 1, 84, 1, 84, 5, 84, 1288, 8, 84, 10, 84, 12, 84, 1291, 9, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1300, 8, 85, 1, 85, 0, 3, 78, 116, 132, 86, 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, 0, 17, 2, 0, 31, 31, 36, 36, 2, 0, 18, 18, 75, 75, 2, 0, 45, 45, 52, 52, 3, 0, 1, 1, 4, 4, 8, 8, 4, 0, 1, 1, 3, 4, 8, 8, 81, 81, 2, 0, 52, 52, 74, 74, 2, 0, 1, 1, 4, 4, 2, 0, 7, 7, 22, 23, 2, 0, 30, 30, 50, 50, 2, 0, 72, 72, 77, 77, 3, 0, 10, 10, 51, 51, 91, 91, 2, 0, 42, 42, 54, 54, 1, 0, 108, 109, 2, 0, 119, 119, 140, 140, 7, 0, 21, 21, 39, 39, 56, 57, 71, 71, 79, 79, 98, 98, 104, 104, 17, 0, 1, 13, 15, 20, 22, 28, 30, 30, 32, 35, 37, 38, 40, 43, 45, 52, 54, 55, 59, 59, 61, 70, 72, 78, 80, 84, 86, 93, 95, 97, 99, 100, 102, 103, 4, 0, 20, 20, 30, 30, 40, 40, 49, 49, 1475, 0, 175, 1, 0, 0, 0, 2, 182, 1, 0, 0, 0, 4, 184, 1, 0, 0, 0, 6, 186, 1, 0, 0, 0, 8, 193, 1, 0, 0, 0, 10, 216, 1, 0, 0, 0, 12, 218, 1, 0, 0, 0, 14, 225, 1, 0, 0, 0, 16, 232, 1, 0, 0, 0, 18, 245, 1, 0, 0, 0, 20, 257, 1, 0, 0, 0, 22, 266, 1, 0, 0, 0, 24, 274, 1, 0, 0, 0, 26, 296, 1, 0, 0, 0, 28, 311, 1, 0, 0, 0, 30, 320, 1, 0, 0, 0, 32, 325, 1, 0, 0, 0, 34, 329, 1, 0, 0, 0, 36, 331, 1, 0, 0, 0, 38, 340, 1, 0, 0, 0, 40, 344, 1, 0, 0, 0, 42, 358, 1, 0, 0, 0, 44, 362, 1, 0, 0, 0, 46, 377, 1, 0, 0, 0, 48, 380, 1, 0, 0, 0, 50, 429, 1, 0, 0, 0, 52, 432, 1, 0, 0, 0, 54, 438, 1, 0, 0, 0, 56, 442, 1, 0, 0, 0, 58, 448, 1, 0, 0, 0, 60, 466, 1, 0, 0, 0, 62, 469, 1, 0, 0, 0, 64, 472, 1, 0, 0, 0, 66, 482, 1, 0, 0, 0, 68, 485, 1, 0, 0, 0, 70, 489, 1, 0, 0, 0, 72, 522, 1, 0, 0, 0, 74, 524, 1, 0, 0, 0, 76, 527, 1, 0, 0, 0, 78, 542, 1, 0, 0, 0, 80, 604, 1, 0, 0, 0, 82, 609, 1, 0, 0, 0, 84, 620, 1, 0, 0, 0, 86, 622, 1, 0, 0, 0, 88, 628, 1, 0, 0, 0, 90, 636, 1, 0, 0, 0, 92, 654, 1, 0, 0, 0, 94, 656, 1, 0, 0, 0, 96, 664, 1, 0, 0, 0, 98, 669, 1, 0, 0, 0, 100, 677, 1, 0, 0, 0, 102, 681, 1, 0, 0, 0, 104, 685, 1, 0, 0, 0, 106, 694, 1, 0, 0, 0, 108, 708, 1, 0, 0, 0, 110, 710, 1, 0, 0, 0, 112, 769, 1, 0, 0, 0, 114, 771, 1, 0, 0, 0, 116, 933, 1, 0, 0, 0, 118, 1075, 1, 0, 0, 0, 120, 1114, 1, 0, 0, 0, 122, 1127, 1, 0, 0, 0, 124, 1129, 1, 0, 0, 0, 126, 1150, 1, 0, 0, 0, 128, 1159, 1, 0, 0, 0, 130, 1161, 1, 0, 0, 0, 132, 1178, 1, 0, 0, 0, 134, 1191, 1, 0, 0, 0, 136, 1201, 1, 0, 0, 0, 138, 1205, 1, 0, 0, 0, 140, 1216, 1, 0, 0, 0, 142, 1226, 1, 0, 0, 0, 144, 1229, 1, 0, 0, 0, 146, 1242, 1, 0, 0, 0, 148, 1244, 1, 0, 0, 0, 150, 1246, 1, 0, 0, 0, 152, 1248, 1, 0, 0, 0, 154, 1252, 1, 0, 0, 0, 156, 1257, 1, 0, 0, 0, 158, 1259, 1, 0, 0, 0, 160, 1263, 1, 0, 0, 0, 162, 1267, 1, 0, 0, 0, 164, 1269, 1, 0, 0, 0, 166, 1283, 1, 0, 0, 0, 168, 1285, 1, 0, 0, 0, 170, 1299, 1, 0, 0, 0, 172, 174, 3, 2, 1, 0, 173, 172, 1, 0, 0, 0, 174, 177, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 175, 176, 1, 0, 0, 0, 176, 178, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 178, 179, 5, 0, 0, 1, 179, 1, 1, 0, 0, 0, 180, 183, 3, 6, 3, 0, 181, 183, 3, 10, 5, 0, 182, 180, 1, 0, 0, 0, 182, 181, 1, 0, 0, 0, 183, 3, 1, 0, 0, 0, 184, 185, 3, 116, 58, 0, 185, 5, 1, 0, 0, 0, 186, 187, 5, 53, 0, 0, 187, 191, 3, 156, 78, 0, 188, 189, 5, 116, 0, 0, 189, 190, 5, 123, 0, 0, 190, 192, 3, 4, 2, 0, 191, 188, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 7, 1, 0, 0, 0, 193, 198, 3, 156, 78, 0, 194, 195, 5, 117, 0, 0, 195, 197, 3, 156, 78, 0, 196, 194, 1, 0, 0, 0, 197, 200, 1, 0, 0, 0, 198, 196, 1, 0, 0, 0, 198, 199, 1, 0, 0, 0, 199, 202, 1, 0, 0, 0, 200, 198, 1, 0, 0, 0, 201, 203, 5, 117, 0, 0, 202, 201, 1, 0, 0, 0, 202, 203, 1, 0, 0, 0, 203, 9, 1, 0, 0, 0, 204, 217, 3, 12, 6, 0, 205, 217, 3, 14, 7, 0, 206, 217, 3, 18, 9, 0, 207, 217, 3, 20, 10, 0, 208, 217, 3, 22, 11, 0, 209, 217, 3, 26, 13, 0, 210, 217, 3, 24, 12, 0, 211, 217, 3, 28, 14, 0, 212, 217, 3, 30, 15, 0, 213, 217, 3, 36, 18, 0, 214, 217, 3, 32, 16, 0, 215, 217, 3, 34, 17, 0, 216, 204, 1, 0, 0, 0, 216, 205, 1, 0, 0, 0, 216, 206, 1, 0, 0, 0, 216, 207, 1, 0, 0, 0, 216, 208, 1, 0, 0, 0, 216, 209, 1, 0, 0, 0, 216, 210, 1, 0, 0, 0, 216, 211, 1, 0, 0, 0, 216, 212, 1, 0, 0, 0, 216, 213, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 216, 215, 1, 0, 0, 0, 217, 11, 1, 0, 0, 0, 218, 220, 5, 73, 0, 0, 219, 221, 3, 4, 2, 0, 220, 219, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 223, 1, 0, 0, 0, 222, 224, 5, 151, 0, 0, 223, 222, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 13, 1, 0, 0, 0, 225, 227, 5, 85, 0, 0, 226, 228, 3, 4, 2, 0, 227, 226, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 231, 5, 151, 0, 0, 230, 229, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 15, 1, 0, 0, 0, 232, 241, 5, 14, 0, 0, 233, 234, 5, 131, 0, 0, 234, 237, 3, 156, 78, 0, 235, 236, 5, 116, 0, 0, 236, 238, 3, 156, 78, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 5, 150, 0, 0, 240, 242, 1, 0, 0, 0, 241, 233, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 244, 3, 36, 18, 0, 244, 17, 1, 0, 0, 0, 245, 246, 5, 94, 0, 0, 246, 250, 3, 36, 18, 0, 247, 249, 3, 16, 8, 0, 248, 247, 1, 0, 0, 0, 249, 252, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 250, 251, 1, 0, 0, 0, 251, 255, 1, 0, 0, 0, 252, 250, 1, 0, 0, 0, 253, 254, 5, 29, 0, 0, 254, 256, 3, 36, 18, 0, 255, 253, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 19, 1, 0, 0, 0, 257, 258, 5, 41, 0, 0, 258, 259, 5, 131, 0, 0, 259, 260, 3, 4, 2, 0, 260, 261, 5, 150, 0, 0, 261, 264, 3, 10, 5, 0, 262, 263, 5, 25, 0, 0, 263, 265, 3, 10, 5, 0, 264, 262, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 21, 1, 0, 0, 0, 266, 267, 5, 101, 0, 0, 267, 268, 5, 131, 0, 0, 268, 269, 3, 4, 2, 0, 269, 270, 5, 150, 0, 0, 270, 272, 3, 10, 5, 0, 271, 273, 5, 151, 0, 0, 272, 271, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 23, 1, 0, 0, 0, 274, 275, 5, 33, 0, 0, 275, 279, 5, 131, 0, 0, 276, 280, 3, 6, 3, 0, 277, 280, 3, 30, 15, 0, 278, 280, 3, 4, 2, 0, 279, 276, 1, 0, 0, 0, 279, 277, 1, 0, 0, 0, 279, 278, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 281, 1, 0, 0, 0, 281, 283, 5, 151, 0, 0, 282, 284, 3, 4, 2, 0, 283, 282, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 289, 5, 151, 0, 0, 286, 290, 3, 6, 3, 0, 287, 290, 3, 30, 15, 0, 288, 290, 3, 4, 2, 0, 289, 286, 1, 0, 0, 0, 289, 287, 1, 0, 0, 0, 289, 288, 1, 0, 0, 0, 289, 290, 1, 0, 0, 0, 290, 291, 1, 0, 0, 0, 291, 292, 5, 150, 0, 0, 292, 294, 3, 10, 5, 0, 293, 295, 5, 151, 0, 0, 294, 293, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 25, 1, 0, 0, 0, 296, 297, 5, 33, 0, 0, 297, 298, 5, 131, 0, 0, 298, 299, 5, 53, 0, 0, 299, 302, 3, 156, 78, 0, 300, 301, 5, 117, 0, 0, 301, 303, 3, 156, 78, 0, 302, 300, 1, 0, 0, 0, 302, 303, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 305, 5, 43, 0, 0, 305, 306, 3, 4, 2, 0, 306, 307, 5, 150, 0, 0, 307, 309, 3, 10, 5, 0, 308, 310, 5, 151, 0, 0, 309, 308, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 27, 1, 0, 0, 0, 311, 312, 7, 0, 0, 0, 312, 313, 3, 156, 78, 0, 313, 315, 5, 131, 0, 0, 314, 316, 3, 8, 4, 0, 315, 314, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 5, 150, 0, 0, 318, 319, 3, 36, 18, 0, 319, 29, 1, 0, 0, 0, 320, 321, 3, 4, 2, 0, 321, 322, 5, 116, 0, 0, 322, 323, 5, 123, 0, 0, 323, 324, 3, 4, 2, 0, 324, 31, 1, 0, 0, 0, 325, 327, 3, 4, 2, 0, 326, 328, 5, 151, 0, 0, 327, 326, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 33, 1, 0, 0, 0, 329, 330, 5, 151, 0, 0, 330, 35, 1, 0, 0, 0, 331, 335, 5, 129, 0, 0, 332, 334, 3, 2, 1, 0, 333, 332, 1, 0, 0, 0, 334, 337, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 338, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 338, 339, 5, 148, 0, 0, 339, 37, 1, 0, 0, 0, 340, 341, 3, 4, 2, 0, 341, 342, 5, 116, 0, 0, 342, 343, 3, 4, 2, 0, 343, 39, 1, 0, 0, 0, 344, 349, 3, 38, 19, 0, 345, 346, 5, 117, 0, 0, 346, 348, 3, 38, 19, 0, 347, 345, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 353, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 354, 5, 117, 0, 0, 353, 352, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 41, 1, 0, 0, 0, 355, 359, 3, 44, 22, 0, 356, 359, 3, 48, 24, 0, 357, 359, 3, 120, 60, 0, 358, 355, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 358, 357, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 361, 5, 0, 0, 1, 361, 43, 1, 0, 0, 0, 362, 368, 3, 46, 23, 0, 363, 364, 5, 96, 0, 0, 364, 365, 5, 1, 0, 0, 365, 367, 3, 46, 23, 0, 366, 363, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 45, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 378, 3, 48, 24, 0, 372, 373, 5, 131, 0, 0, 373, 374, 3, 44, 22, 0, 374, 375, 5, 150, 0, 0, 375, 378, 1, 0, 0, 0, 376, 378, 3, 160, 80, 0, 377, 371, 1, 0, 0, 0, 377, 372, 1, 0, 0, 0, 377, 376, 1, 0, 0, 0, 378, 47, 1, 0, 0, 0, 379, 381, 3, 50, 25, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 384, 5, 80, 0, 0, 383, 385, 5, 24, 0, 0, 384, 383, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 387, 1, 0, 0, 0, 386, 388, 3, 52, 26, 0, 387, 386, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 391, 3, 114, 57, 0, 390, 392, 3, 54, 27, 0, 391, 390, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 1, 0, 0, 0, 393, 395, 3, 56, 28, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 397, 1, 0, 0, 0, 396, 398, 3, 60, 30, 0, 397, 396, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 400, 1, 0, 0, 0, 399, 401, 3, 62, 31, 0, 400, 399, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 403, 1, 0, 0, 0, 402, 404, 3, 64, 32, 0, 403, 402, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 406, 5, 103, 0, 0, 406, 408, 7, 1, 0, 0, 407, 405, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 410, 5, 103, 0, 0, 410, 412, 5, 90, 0, 0, 411, 409, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 1, 0, 0, 0, 413, 415, 3, 66, 33, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 417, 1, 0, 0, 0, 416, 418, 3, 58, 29, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 420, 1, 0, 0, 0, 419, 421, 3, 68, 34, 0, 420, 419, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 424, 1, 0, 0, 0, 422, 425, 3, 72, 36, 0, 423, 425, 3, 74, 37, 0, 424, 422, 1, 0, 0, 0, 424, 423, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 427, 1, 0, 0, 0, 426, 428, 3, 76, 38, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 49, 1, 0, 0, 0, 429, 430, 5, 103, 0, 0, 430, 431, 3, 124, 62, 0, 431, 51, 1, 0, 0, 0, 432, 433, 5, 89, 0, 0, 433, 436, 5, 109, 0, 0, 434, 435, 5, 103, 0, 0, 435, 437, 5, 86, 0, 0, 436, 434, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 53, 1, 0, 0, 0, 438, 439, 5, 34, 0, 0, 439, 440, 3, 78, 39, 0, 440, 55, 1, 0, 0, 0, 441, 443, 7, 2, 0, 0, 442, 441, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 5, 5, 0, 0, 445, 446, 5, 48, 0, 0, 446, 447, 3, 114, 57, 0, 447, 57, 1, 0, 0, 0, 448, 449, 5, 102, 0, 0, 449, 450, 3, 156, 78, 0, 450, 451, 5, 6, 0, 0, 451, 452, 5, 131, 0, 0, 452, 453, 3, 98, 49, 0, 453, 463, 5, 150, 0, 0, 454, 455, 5, 117, 0, 0, 455, 456, 3, 156, 78, 0, 456, 457, 5, 6, 0, 0, 457, 458, 5, 131, 0, 0, 458, 459, 3, 98, 49, 0, 459, 460, 5, 150, 0, 0, 460, 462, 1, 0, 0, 0, 461, 454, 1, 0, 0, 0, 462, 465, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 59, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 466, 467, 5, 70, 0, 0, 467, 468, 3, 116, 58, 0, 468, 61, 1, 0, 0, 0, 469, 470, 5, 100, 0, 0, 470, 471, 3, 116, 58, 0, 471, 63, 1, 0, 0, 0, 472, 473, 5, 37, 0, 0, 473, 480, 5, 11, 0, 0, 474, 475, 7, 1, 0, 0, 475, 476, 5, 131, 0, 0, 476, 477, 3, 114, 57, 0, 477, 478, 5, 150, 0, 0, 478, 481, 1, 0, 0, 0, 479, 481, 3, 114, 57, 0, 480, 474, 1, 0, 0, 0, 480, 479, 1, 0, 0, 0, 481, 65, 1, 0, 0, 0, 482, 483, 5, 38, 0, 0, 483, 484, 3, 116, 58, 0, 484, 67, 1, 0, 0, 0, 485, 486, 5, 65, 0, 0, 486, 487, 5, 11, 0, 0, 487, 488, 3, 88, 44, 0, 488, 69, 1, 0, 0, 0, 489, 490, 5, 65, 0, 0, 490, 491, 5, 11, 0, 0, 491, 492, 3, 114, 57, 0, 492, 71, 1, 0, 0, 0, 493, 494, 5, 55, 0, 0, 494, 497, 3, 116, 58, 0, 495, 496, 5, 117, 0, 0, 496, 498, 3, 116, 58, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 503, 1, 0, 0, 0, 499, 500, 5, 103, 0, 0, 500, 504, 5, 86, 0, 0, 501, 502, 5, 11, 0, 0, 502, 504, 3, 114, 57, 0, 503, 499, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 523, 1, 0, 0, 0, 505, 506, 5, 55, 0, 0, 506, 509, 3, 116, 58, 0, 507, 508, 5, 103, 0, 0, 508, 510, 5, 86, 0, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 5, 62, 0, 0, 512, 513, 3, 116, 58, 0, 513, 523, 1, 0, 0, 0, 514, 515, 5, 55, 0, 0, 515, 516, 3, 116, 58, 0, 516, 517, 5, 62, 0, 0, 517, 520, 3, 116, 58, 0, 518, 519, 5, 11, 0, 0, 519, 521, 3, 114, 57, 0, 520, 518, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 523, 1, 0, 0, 0, 522, 493, 1, 0, 0, 0, 522, 505, 1, 0, 0, 0, 522, 514, 1, 0, 0, 0, 523, 73, 1, 0, 0, 0, 524, 525, 5, 62, 0, 0, 525, 526, 3, 116, 58, 0, 526, 75, 1, 0, 0, 0, 527, 528, 5, 82, 0, 0, 528, 529, 3, 94, 47, 0, 529, 77, 1, 0, 0, 0, 530, 531, 6, 39, -1, 0, 531, 533, 3, 132, 66, 0, 532, 534, 5, 28, 0, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 536, 1, 0, 0, 0, 535, 537, 3, 86, 43, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 543, 1, 0, 0, 0, 538, 539, 5, 131, 0, 0, 539, 540, 3, 78, 39, 0, 540, 541, 5, 150, 0, 0, 541, 543, 1, 0, 0, 0, 542, 530, 1, 0, 0, 0, 542, 538, 1, 0, 0, 0, 543, 558, 1, 0, 0, 0, 544, 545, 10, 3, 0, 0, 545, 546, 3, 82, 41, 0, 546, 547, 3, 78, 39, 4, 547, 557, 1, 0, 0, 0, 548, 550, 10, 4, 0, 0, 549, 551, 3, 80, 40, 0, 550, 549, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 5, 48, 0, 0, 553, 554, 3, 78, 39, 0, 554, 555, 3, 84, 42, 0, 555, 557, 1, 0, 0, 0, 556, 544, 1, 0, 0, 0, 556, 548, 1, 0, 0, 0, 557, 560, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 79, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 561, 563, 7, 3, 0, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 571, 5, 45, 0, 0, 565, 567, 5, 45, 0, 0, 566, 568, 7, 3, 0, 0, 567, 566, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 571, 1, 0, 0, 0, 569, 571, 7, 3, 0, 0, 570, 562, 1, 0, 0, 0, 570, 565, 1, 0, 0, 0, 570, 569, 1, 0, 0, 0, 571, 605, 1, 0, 0, 0, 572, 574, 7, 4, 0, 0, 573, 572, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 577, 7, 5, 0, 0, 576, 578, 5, 66, 0, 0, 577, 576, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 587, 1, 0, 0, 0, 579, 581, 7, 5, 0, 0, 580, 582, 5, 66, 0, 0, 581, 580, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 584, 1, 0, 0, 0, 583, 585, 7, 4, 0, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 587, 1, 0, 0, 0, 586, 573, 1, 0, 0, 0, 586, 579, 1, 0, 0, 0, 587, 605, 1, 0, 0, 0, 588, 590, 7, 6, 0, 0, 589, 588, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 593, 5, 35, 0, 0, 592, 594, 5, 66, 0, 0, 593, 592, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 603, 1, 0, 0, 0, 595, 597, 5, 35, 0, 0, 596, 598, 5, 66, 0, 0, 597, 596, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 600, 1, 0, 0, 0, 599, 601, 7, 6, 0, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 603, 1, 0, 0, 0, 602, 589, 1, 0, 0, 0, 602, 595, 1, 0, 0, 0, 603, 605, 1, 0, 0, 0, 604, 570, 1, 0, 0, 0, 604, 586, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 605, 81, 1, 0, 0, 0, 606, 607, 5, 17, 0, 0, 607, 610, 5, 48, 0, 0, 608, 610, 5, 117, 0, 0, 609, 606, 1, 0, 0, 0, 609, 608, 1, 0, 0, 0, 610, 83, 1, 0, 0, 0, 611, 612, 5, 63, 0, 0, 612, 621, 3, 114, 57, 0, 613, 614, 5, 97, 0, 0, 614, 615, 5, 131, 0, 0, 615, 616, 3, 114, 57, 0, 616, 617, 5, 150, 0, 0, 617, 621, 1, 0, 0, 0, 618, 619, 5, 97, 0, 0, 619, 621, 3, 114, 57, 0, 620, 611, 1, 0, 0, 0, 620, 613, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 621, 85, 1, 0, 0, 0, 622, 623, 5, 78, 0, 0, 623, 626, 3, 92, 46, 0, 624, 625, 5, 62, 0, 0, 625, 627, 3, 92, 46, 0, 626, 624, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 87, 1, 0, 0, 0, 628, 633, 3, 90, 45, 0, 629, 630, 5, 117, 0, 0, 630, 632, 3, 90, 45, 0, 631, 629, 1, 0, 0, 0, 632, 635, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 89, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 638, 3, 116, 58, 0, 637, 639, 7, 7, 0, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 642, 1, 0, 0, 0, 640, 641, 5, 61, 0, 0, 641, 643, 7, 8, 0, 0, 642, 640, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 645, 5, 16, 0, 0, 645, 647, 5, 111, 0, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 91, 1, 0, 0, 0, 648, 655, 3, 160, 80, 0, 649, 652, 3, 144, 72, 0, 650, 651, 5, 152, 0, 0, 651, 653, 3, 144, 72, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 655, 1, 0, 0, 0, 654, 648, 1, 0, 0, 0, 654, 649, 1, 0, 0, 0, 655, 93, 1, 0, 0, 0, 656, 661, 3, 96, 48, 0, 657, 658, 5, 117, 0, 0, 658, 660, 3, 96, 48, 0, 659, 657, 1, 0, 0, 0, 660, 663, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 95, 1, 0, 0, 0, 663, 661, 1, 0, 0, 0, 664, 665, 3, 156, 78, 0, 665, 666, 5, 123, 0, 0, 666, 667, 3, 146, 73, 0, 667, 97, 1, 0, 0, 0, 668, 670, 3, 100, 50, 0, 669, 668, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 1, 0, 0, 0, 671, 673, 3, 102, 51, 0, 672, 671, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 675, 1, 0, 0, 0, 674, 676, 3, 104, 52, 0, 675, 674, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 99, 1, 0, 0, 0, 677, 678, 5, 68, 0, 0, 678, 679, 5, 11, 0, 0, 679, 680, 3, 114, 57, 0, 680, 101, 1, 0, 0, 0, 681, 682, 5, 65, 0, 0, 682, 683, 5, 11, 0, 0, 683, 684, 3, 88, 44, 0, 684, 103, 1, 0, 0, 0, 685, 686, 7, 9, 0, 0, 686, 687, 3, 106, 53, 0, 687, 105, 1, 0, 0, 0, 688, 695, 3, 108, 54, 0, 689, 690, 5, 9, 0, 0, 690, 691, 3, 108, 54, 0, 691, 692, 5, 2, 0, 0, 692, 693, 3, 108, 54, 0, 693, 695, 1, 0, 0, 0, 694, 688, 1, 0, 0, 0, 694, 689, 1, 0, 0, 0, 695, 107, 1, 0, 0, 0, 696, 697, 5, 19, 0, 0, 697, 709, 5, 76, 0, 0, 698, 699, 5, 95, 0, 0, 699, 709, 5, 69, 0, 0, 700, 701, 5, 95, 0, 0, 701, 709, 5, 32, 0, 0, 702, 703, 3, 144, 72, 0, 703, 704, 5, 69, 0, 0, 704, 709, 1, 0, 0, 0, 705, 706, 3, 144, 72, 0, 706, 707, 5, 32, 0, 0, 707, 709, 1, 0, 0, 0, 708, 696, 1, 0, 0, 0, 708, 698, 1, 0, 0, 0, 708, 700, 1, 0, 0, 0, 708, 702, 1, 0, 0, 0, 708, 705, 1, 0, 0, 0, 709, 109, 1, 0, 0, 0, 710, 711, 3, 116, 58, 0, 711, 712, 5, 0, 0, 1, 712, 111, 1, 0, 0, 0, 713, 770, 3, 156, 78, 0, 714, 715, 3, 156, 78, 0, 715, 716, 5, 131, 0, 0, 716, 717, 3, 156, 78, 0, 717, 724, 3, 112, 56, 0, 718, 719, 5, 117, 0, 0, 719, 720, 3, 156, 78, 0, 720, 721, 3, 112, 56, 0, 721, 723, 1, 0, 0, 0, 722, 718, 1, 0, 0, 0, 723, 726, 1, 0, 0, 0, 724, 722, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 728, 1, 0, 0, 0, 726, 724, 1, 0, 0, 0, 727, 729, 5, 117, 0, 0, 728, 727, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 5, 150, 0, 0, 731, 770, 1, 0, 0, 0, 732, 733, 3, 156, 78, 0, 733, 734, 5, 131, 0, 0, 734, 739, 3, 158, 79, 0, 735, 736, 5, 117, 0, 0, 736, 738, 3, 158, 79, 0, 737, 735, 1, 0, 0, 0, 738, 741, 1, 0, 0, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 744, 5, 117, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 150, 0, 0, 746, 770, 1, 0, 0, 0, 747, 748, 3, 156, 78, 0, 748, 749, 5, 131, 0, 0, 749, 754, 3, 112, 56, 0, 750, 751, 5, 117, 0, 0, 751, 753, 3, 112, 56, 0, 752, 750, 1, 0, 0, 0, 753, 756, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 758, 1, 0, 0, 0, 756, 754, 1, 0, 0, 0, 757, 759, 5, 117, 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 761, 5, 150, 0, 0, 761, 770, 1, 0, 0, 0, 762, 763, 3, 156, 78, 0, 763, 765, 5, 131, 0, 0, 764, 766, 3, 114, 57, 0, 765, 764, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 5, 150, 0, 0, 768, 770, 1, 0, 0, 0, 769, 713, 1, 0, 0, 0, 769, 714, 1, 0, 0, 0, 769, 732, 1, 0, 0, 0, 769, 747, 1, 0, 0, 0, 769, 762, 1, 0, 0, 0, 770, 113, 1, 0, 0, 0, 771, 776, 3, 116, 58, 0, 772, 773, 5, 117, 0, 0, 773, 775, 3, 116, 58, 0, 774, 772, 1, 0, 0, 0, 775, 778, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 780, 1, 0, 0, 0, 778, 776, 1, 0, 0, 0, 779, 781, 5, 117, 0, 0, 780, 779, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 115, 1, 0, 0, 0, 782, 783, 6, 58, -1, 0, 783, 785, 5, 12, 0, 0, 784, 786, 3, 116, 58, 0, 785, 784, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 792, 1, 0, 0, 0, 787, 788, 5, 99, 0, 0, 788, 789, 3, 116, 58, 0, 789, 790, 5, 84, 0, 0, 790, 791, 3, 116, 58, 0, 791, 793, 1, 0, 0, 0, 792, 787, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 798, 1, 0, 0, 0, 796, 797, 5, 25, 0, 0, 797, 799, 3, 116, 58, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 5, 26, 0, 0, 801, 934, 1, 0, 0, 0, 802, 803, 5, 13, 0, 0, 803, 804, 5, 131, 0, 0, 804, 805, 3, 116, 58, 0, 805, 806, 5, 6, 0, 0, 806, 807, 3, 112, 56, 0, 807, 808, 5, 150, 0, 0, 808, 934, 1, 0, 0, 0, 809, 810, 5, 20, 0, 0, 810, 934, 5, 111, 0, 0, 811, 812, 5, 46, 0, 0, 812, 813, 3, 116, 58, 0, 813, 814, 3, 148, 74, 0, 814, 934, 1, 0, 0, 0, 815, 816, 5, 83, 0, 0, 816, 817, 5, 131, 0, 0, 817, 818, 3, 116, 58, 0, 818, 819, 5, 34, 0, 0, 819, 822, 3, 116, 58, 0, 820, 821, 5, 33, 0, 0, 821, 823, 3, 116, 58, 0, 822, 820, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 825, 5, 150, 0, 0, 825, 934, 1, 0, 0, 0, 826, 827, 5, 87, 0, 0, 827, 934, 5, 111, 0, 0, 828, 829, 5, 92, 0, 0, 829, 830, 5, 131, 0, 0, 830, 831, 7, 10, 0, 0, 831, 832, 3, 162, 81, 0, 832, 833, 5, 34, 0, 0, 833, 834, 3, 116, 58, 0, 834, 835, 5, 150, 0, 0, 835, 934, 1, 0, 0, 0, 836, 837, 3, 156, 78, 0, 837, 839, 5, 131, 0, 0, 838, 840, 3, 114, 57, 0, 839, 838, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 5, 150, 0, 0, 842, 851, 1, 0, 0, 0, 843, 845, 5, 131, 0, 0, 844, 846, 5, 24, 0, 0, 845, 844, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 848, 1, 0, 0, 0, 847, 849, 3, 114, 57, 0, 848, 847, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 852, 5, 150, 0, 0, 851, 843, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 5, 67, 0, 0, 854, 855, 5, 131, 0, 0, 855, 856, 3, 98, 49, 0, 856, 857, 5, 150, 0, 0, 857, 934, 1, 0, 0, 0, 858, 859, 3, 156, 78, 0, 859, 861, 5, 131, 0, 0, 860, 862, 3, 114, 57, 0, 861, 860, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 5, 150, 0, 0, 864, 873, 1, 0, 0, 0, 865, 867, 5, 131, 0, 0, 866, 868, 5, 24, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 871, 3, 114, 57, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 5, 150, 0, 0, 873, 865, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 67, 0, 0, 876, 877, 3, 156, 78, 0, 877, 934, 1, 0, 0, 0, 878, 884, 3, 156, 78, 0, 879, 881, 5, 131, 0, 0, 880, 882, 3, 114, 57, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 885, 5, 150, 0, 0, 884, 879, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 888, 5, 131, 0, 0, 887, 889, 5, 24, 0, 0, 888, 887, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 891, 1, 0, 0, 0, 890, 892, 3, 114, 57, 0, 891, 890, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 5, 150, 0, 0, 894, 934, 1, 0, 0, 0, 895, 934, 3, 120, 60, 0, 896, 934, 3, 164, 82, 0, 897, 934, 3, 146, 73, 0, 898, 899, 5, 119, 0, 0, 899, 934, 3, 116, 58, 21, 900, 901, 5, 59, 0, 0, 901, 934, 3, 116, 58, 15, 902, 903, 3, 136, 68, 0, 903, 904, 5, 121, 0, 0, 904, 906, 1, 0, 0, 0, 905, 902, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 934, 5, 113, 0, 0, 908, 909, 5, 131, 0, 0, 909, 910, 3, 44, 22, 0, 910, 911, 5, 150, 0, 0, 911, 934, 1, 0, 0, 0, 912, 913, 5, 131, 0, 0, 913, 914, 3, 116, 58, 0, 914, 915, 5, 150, 0, 0, 915, 934, 1, 0, 0, 0, 916, 917, 5, 131, 0, 0, 917, 918, 3, 114, 57, 0, 918, 919, 5, 150, 0, 0, 919, 934, 1, 0, 0, 0, 920, 922, 5, 130, 0, 0, 921, 923, 3, 114, 57, 0, 922, 921, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 934, 5, 149, 0, 0, 925, 927, 5, 129, 0, 0, 926, 928, 3, 40, 20, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 934, 5, 148, 0, 0, 930, 934, 3, 118, 59, 0, 931, 934, 3, 128, 64, 0, 932, 934, 3, 36, 18, 0, 933, 782, 1, 0, 0, 0, 933, 802, 1, 0, 0, 0, 933, 809, 1, 0, 0, 0, 933, 811, 1, 0, 0, 0, 933, 815, 1, 0, 0, 0, 933, 826, 1, 0, 0, 0, 933, 828, 1, 0, 0, 0, 933, 836, 1, 0, 0, 0, 933, 858, 1, 0, 0, 0, 933, 878, 1, 0, 0, 0, 933, 895, 1, 0, 0, 0, 933, 896, 1, 0, 0, 0, 933, 897, 1, 0, 0, 0, 933, 898, 1, 0, 0, 0, 933, 900, 1, 0, 0, 0, 933, 905, 1, 0, 0, 0, 933, 908, 1, 0, 0, 0, 933, 912, 1, 0, 0, 0, 933, 916, 1, 0, 0, 0, 933, 920, 1, 0, 0, 0, 933, 925, 1, 0, 0, 0, 933, 930, 1, 0, 0, 0, 933, 931, 1, 0, 0, 0, 933, 932, 1, 0, 0, 0, 934, 1045, 1, 0, 0, 0, 935, 939, 10, 20, 0, 0, 936, 940, 5, 113, 0, 0, 937, 940, 5, 152, 0, 0, 938, 940, 5, 139, 0, 0, 939, 936, 1, 0, 0, 0, 939, 937, 1, 0, 0, 0, 939, 938, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 1044, 3, 116, 58, 21, 942, 946, 10, 19, 0, 0, 943, 947, 5, 140, 0, 0, 944, 947, 5, 119, 0, 0, 945, 947, 5, 118, 0, 0, 946, 943, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 946, 945, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 1044, 3, 116, 58, 20, 949, 974, 10, 18, 0, 0, 950, 975, 5, 122, 0, 0, 951, 975, 5, 123, 0, 0, 952, 975, 5, 134, 0, 0, 953, 975, 5, 132, 0, 0, 954, 975, 5, 133, 0, 0, 955, 975, 5, 124, 0, 0, 956, 975, 5, 125, 0, 0, 957, 959, 5, 59, 0, 0, 958, 957, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 962, 5, 43, 0, 0, 961, 963, 5, 15, 0, 0, 962, 961, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 975, 1, 0, 0, 0, 964, 966, 5, 59, 0, 0, 965, 964, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 975, 7, 11, 0, 0, 968, 975, 5, 146, 0, 0, 969, 975, 5, 147, 0, 0, 970, 975, 5, 136, 0, 0, 971, 975, 5, 127, 0, 0, 972, 975, 5, 128, 0, 0, 973, 975, 5, 135, 0, 0, 974, 950, 1, 0, 0, 0, 974, 951, 1, 0, 0, 0, 974, 952, 1, 0, 0, 0, 974, 953, 1, 0, 0, 0, 974, 954, 1, 0, 0, 0, 974, 955, 1, 0, 0, 0, 974, 956, 1, 0, 0, 0, 974, 958, 1, 0, 0, 0, 974, 965, 1, 0, 0, 0, 974, 968, 1, 0, 0, 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, 976, 1, 0, 0, 0, 976, 1044, 3, 116, 58, 19, 977, 978, 10, 16, 0, 0, 978, 979, 5, 138, 0, 0, 979, 1044, 3, 116, 58, 17, 980, 981, 10, 14, 0, 0, 981, 982, 5, 2, 0, 0, 982, 1044, 3, 116, 58, 15, 983, 984, 10, 13, 0, 0, 984, 985, 5, 64, 0, 0, 985, 1044, 3, 116, 58, 14, 986, 988, 10, 12, 0, 0, 987, 989, 5, 59, 0, 0, 988, 987, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 5, 9, 0, 0, 991, 992, 3, 116, 58, 0, 992, 993, 5, 2, 0, 0, 993, 994, 3, 116, 58, 13, 994, 1044, 1, 0, 0, 0, 995, 996, 10, 11, 0, 0, 996, 997, 5, 141, 0, 0, 997, 998, 3, 116, 58, 0, 998, 999, 5, 116, 0, 0, 999, 1000, 3, 116, 58, 11, 1000, 1044, 1, 0, 0, 0, 1001, 1002, 10, 31, 0, 0, 1002, 1004, 5, 131, 0, 0, 1003, 1005, 3, 114, 57, 0, 1004, 1003, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1044, 5, 150, 0, 0, 1007, 1008, 10, 27, 0, 0, 1008, 1009, 5, 130, 0, 0, 1009, 1010, 3, 116, 58, 0, 1010, 1011, 5, 149, 0, 0, 1011, 1044, 1, 0, 0, 0, 1012, 1013, 10, 26, 0, 0, 1013, 1014, 5, 121, 0, 0, 1014, 1044, 5, 109, 0, 0, 1015, 1016, 10, 25, 0, 0, 1016, 1017, 5, 121, 0, 0, 1017, 1044, 3, 156, 78, 0, 1018, 1019, 10, 24, 0, 0, 1019, 1020, 5, 137, 0, 0, 1020, 1021, 5, 130, 0, 0, 1021, 1022, 3, 116, 58, 0, 1022, 1023, 5, 149, 0, 0, 1023, 1044, 1, 0, 0, 0, 1024, 1025, 10, 23, 0, 0, 1025, 1026, 5, 137, 0, 0, 1026, 1044, 5, 109, 0, 0, 1027, 1028, 10, 22, 0, 0, 1028, 1029, 5, 137, 0, 0, 1029, 1044, 3, 156, 78, 0, 1030, 1031, 10, 17, 0, 0, 1031, 1033, 5, 47, 0, 0, 1032, 1034, 5, 59, 0, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1044, 5, 60, 0, 0, 1036, 1041, 10, 10, 0, 0, 1037, 1038, 5, 6, 0, 0, 1038, 1042, 3, 156, 78, 0, 1039, 1040, 5, 6, 0, 0, 1040, 1042, 5, 111, 0, 0, 1041, 1037, 1, 0, 0, 0, 1041, 1039, 1, 0, 0, 0, 1042, 1044, 1, 0, 0, 0, 1043, 935, 1, 0, 0, 0, 1043, 942, 1, 0, 0, 0, 1043, 949, 1, 0, 0, 0, 1043, 977, 1, 0, 0, 0, 1043, 980, 1, 0, 0, 0, 1043, 983, 1, 0, 0, 0, 1043, 986, 1, 0, 0, 0, 1043, 995, 1, 0, 0, 0, 1043, 1001, 1, 0, 0, 0, 1043, 1007, 1, 0, 0, 0, 1043, 1012, 1, 0, 0, 0, 1043, 1015, 1, 0, 0, 0, 1043, 1018, 1, 0, 0, 0, 1043, 1024, 1, 0, 0, 0, 1043, 1027, 1, 0, 0, 0, 1043, 1030, 1, 0, 0, 0, 1043, 1036, 1, 0, 0, 0, 1044, 1047, 1, 0, 0, 0, 1045, 1043, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 117, 1, 0, 0, 0, 1047, 1045, 1, 0, 0, 0, 1048, 1049, 5, 131, 0, 0, 1049, 1054, 3, 156, 78, 0, 1050, 1051, 5, 117, 0, 0, 1051, 1053, 3, 156, 78, 0, 1052, 1050, 1, 0, 0, 0, 1053, 1056, 1, 0, 0, 0, 1054, 1052, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1058, 1, 0, 0, 0, 1056, 1054, 1, 0, 0, 0, 1057, 1059, 5, 117, 0, 0, 1058, 1057, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 5, 150, 0, 0, 1061, 1076, 1, 0, 0, 0, 1062, 1067, 3, 156, 78, 0, 1063, 1064, 5, 117, 0, 0, 1064, 1066, 3, 156, 78, 0, 1065, 1063, 1, 0, 0, 0, 1066, 1069, 1, 0, 0, 0, 1067, 1065, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1071, 1, 0, 0, 0, 1069, 1067, 1, 0, 0, 0, 1070, 1072, 5, 117, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1076, 1, 0, 0, 0, 1073, 1074, 5, 131, 0, 0, 1074, 1076, 5, 150, 0, 0, 1075, 1048, 1, 0, 0, 0, 1075, 1062, 1, 0, 0, 0, 1075, 1073, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1080, 5, 112, 0, 0, 1078, 1081, 3, 36, 18, 0, 1079, 1081, 3, 116, 58, 0, 1080, 1078, 1, 0, 0, 0, 1080, 1079, 1, 0, 0, 0, 1081, 119, 1, 0, 0, 0, 1082, 1083, 5, 133, 0, 0, 1083, 1087, 3, 156, 78, 0, 1084, 1086, 3, 122, 61, 0, 1085, 1084, 1, 0, 0, 0, 1086, 1089, 1, 0, 0, 0, 1087, 1085, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1090, 1, 0, 0, 0, 1089, 1087, 1, 0, 0, 0, 1090, 1091, 5, 152, 0, 0, 1091, 1092, 5, 125, 0, 0, 1092, 1115, 1, 0, 0, 0, 1093, 1094, 5, 133, 0, 0, 1094, 1098, 3, 156, 78, 0, 1095, 1097, 3, 122, 61, 0, 1096, 1095, 1, 0, 0, 0, 1097, 1100, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 1098, 1, 0, 0, 0, 1101, 1107, 5, 125, 0, 0, 1102, 1108, 3, 120, 60, 0, 1103, 1104, 5, 129, 0, 0, 1104, 1105, 3, 116, 58, 0, 1105, 1106, 5, 148, 0, 0, 1106, 1108, 1, 0, 0, 0, 1107, 1102, 1, 0, 0, 0, 1107, 1103, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1110, 5, 133, 0, 0, 1110, 1111, 5, 152, 0, 0, 1111, 1112, 3, 156, 78, 0, 1112, 1113, 5, 125, 0, 0, 1113, 1115, 1, 0, 0, 0, 1114, 1082, 1, 0, 0, 0, 1114, 1093, 1, 0, 0, 0, 1115, 121, 1, 0, 0, 0, 1116, 1117, 3, 156, 78, 0, 1117, 1118, 5, 123, 0, 0, 1118, 1119, 3, 162, 81, 0, 1119, 1128, 1, 0, 0, 0, 1120, 1121, 3, 156, 78, 0, 1121, 1122, 5, 123, 0, 0, 1122, 1123, 5, 129, 0, 0, 1123, 1124, 3, 116, 58, 0, 1124, 1125, 5, 148, 0, 0, 1125, 1128, 1, 0, 0, 0, 1126, 1128, 3, 156, 78, 0, 1127, 1116, 1, 0, 0, 0, 1127, 1120, 1, 0, 0, 0, 1127, 1126, 1, 0, 0, 0, 1128, 123, 1, 0, 0, 0, 1129, 1134, 3, 126, 63, 0, 1130, 1131, 5, 117, 0, 0, 1131, 1133, 3, 126, 63, 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, 1138, 1, 0, 0, 0, 1136, 1134, 1, 0, 0, 0, 1137, 1139, 5, 117, 0, 0, 1138, 1137, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 125, 1, 0, 0, 0, 1140, 1141, 3, 156, 78, 0, 1141, 1142, 5, 6, 0, 0, 1142, 1143, 5, 131, 0, 0, 1143, 1144, 3, 44, 22, 0, 1144, 1145, 5, 150, 0, 0, 1145, 1151, 1, 0, 0, 0, 1146, 1147, 3, 116, 58, 0, 1147, 1148, 5, 6, 0, 0, 1148, 1149, 3, 156, 78, 0, 1149, 1151, 1, 0, 0, 0, 1150, 1140, 1, 0, 0, 0, 1150, 1146, 1, 0, 0, 0, 1151, 127, 1, 0, 0, 0, 1152, 1160, 3, 160, 80, 0, 1153, 1154, 3, 136, 68, 0, 1154, 1155, 5, 121, 0, 0, 1155, 1157, 1, 0, 0, 0, 1156, 1153, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1160, 3, 130, 65, 0, 1159, 1152, 1, 0, 0, 0, 1159, 1156, 1, 0, 0, 0, 1160, 129, 1, 0, 0, 0, 1161, 1166, 3, 156, 78, 0, 1162, 1163, 5, 121, 0, 0, 1163, 1165, 3, 156, 78, 0, 1164, 1162, 1, 0, 0, 0, 1165, 1168, 1, 0, 0, 0, 1166, 1164, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 131, 1, 0, 0, 0, 1168, 1166, 1, 0, 0, 0, 1169, 1170, 6, 66, -1, 0, 1170, 1179, 3, 136, 68, 0, 1171, 1179, 3, 134, 67, 0, 1172, 1173, 5, 131, 0, 0, 1173, 1174, 3, 44, 22, 0, 1174, 1175, 5, 150, 0, 0, 1175, 1179, 1, 0, 0, 0, 1176, 1179, 3, 120, 60, 0, 1177, 1179, 3, 160, 80, 0, 1178, 1169, 1, 0, 0, 0, 1178, 1171, 1, 0, 0, 0, 1178, 1172, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1178, 1177, 1, 0, 0, 0, 1179, 1188, 1, 0, 0, 0, 1180, 1184, 10, 3, 0, 0, 1181, 1185, 3, 154, 77, 0, 1182, 1183, 5, 6, 0, 0, 1183, 1185, 3, 156, 78, 0, 1184, 1181, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1180, 1, 0, 0, 0, 1187, 1190, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 133, 1, 0, 0, 0, 1190, 1188, 1, 0, 0, 0, 1191, 1192, 3, 156, 78, 0, 1192, 1194, 5, 131, 0, 0, 1193, 1195, 3, 138, 69, 0, 1194, 1193, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 5, 150, 0, 0, 1197, 135, 1, 0, 0, 0, 1198, 1199, 3, 140, 70, 0, 1199, 1200, 5, 121, 0, 0, 1200, 1202, 1, 0, 0, 0, 1201, 1198, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 3, 156, 78, 0, 1204, 137, 1, 0, 0, 0, 1205, 1210, 3, 116, 58, 0, 1206, 1207, 5, 117, 0, 0, 1207, 1209, 3, 116, 58, 0, 1208, 1206, 1, 0, 0, 0, 1209, 1212, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1214, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1213, 1215, 5, 117, 0, 0, 1214, 1213, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 139, 1, 0, 0, 0, 1216, 1217, 3, 156, 78, 0, 1217, 141, 1, 0, 0, 0, 1218, 1227, 5, 107, 0, 0, 1219, 1220, 5, 121, 0, 0, 1220, 1227, 7, 12, 0, 0, 1221, 1222, 5, 109, 0, 0, 1222, 1224, 5, 121, 0, 0, 1223, 1225, 7, 12, 0, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1227, 1, 0, 0, 0, 1226, 1218, 1, 0, 0, 0, 1226, 1219, 1, 0, 0, 0, 1226, 1221, 1, 0, 0, 0, 1227, 143, 1, 0, 0, 0, 1228, 1230, 7, 13, 0, 0, 1229, 1228, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1237, 1, 0, 0, 0, 1231, 1238, 3, 142, 71, 0, 1232, 1238, 5, 108, 0, 0, 1233, 1238, 5, 109, 0, 0, 1234, 1238, 5, 110, 0, 0, 1235, 1238, 5, 44, 0, 0, 1236, 1238, 5, 58, 0, 0, 1237, 1231, 1, 0, 0, 0, 1237, 1232, 1, 0, 0, 0, 1237, 1233, 1, 0, 0, 0, 1237, 1234, 1, 0, 0, 0, 1237, 1235, 1, 0, 0, 0, 1237, 1236, 1, 0, 0, 0, 1238, 145, 1, 0, 0, 0, 1239, 1243, 3, 144, 72, 0, 1240, 1243, 5, 111, 0, 0, 1241, 1243, 5, 60, 0, 0, 1242, 1239, 1, 0, 0, 0, 1242, 1240, 1, 0, 0, 0, 1242, 1241, 1, 0, 0, 0, 1243, 147, 1, 0, 0, 0, 1244, 1245, 7, 14, 0, 0, 1245, 149, 1, 0, 0, 0, 1246, 1247, 7, 15, 0, 0, 1247, 151, 1, 0, 0, 0, 1248, 1249, 7, 16, 0, 0, 1249, 153, 1, 0, 0, 0, 1250, 1253, 5, 106, 0, 0, 1251, 1253, 3, 152, 76, 0, 1252, 1250, 1, 0, 0, 0, 1252, 1251, 1, 0, 0, 0, 1253, 155, 1, 0, 0, 0, 1254, 1258, 5, 106, 0, 0, 1255, 1258, 3, 148, 74, 0, 1256, 1258, 3, 150, 75, 0, 1257, 1254, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 157, 1, 0, 0, 0, 1259, 1260, 3, 162, 81, 0, 1260, 1261, 5, 123, 0, 0, 1261, 1262, 3, 144, 72, 0, 1262, 159, 1, 0, 0, 0, 1263, 1264, 3, 36, 18, 0, 1264, 161, 1, 0, 0, 0, 1265, 1268, 5, 111, 0, 0, 1266, 1268, 3, 164, 82, 0, 1267, 1265, 1, 0, 0, 0, 1267, 1266, 1, 0, 0, 0, 1268, 163, 1, 0, 0, 0, 1269, 1273, 5, 143, 0, 0, 1270, 1272, 3, 166, 83, 0, 1271, 1270, 1, 0, 0, 0, 1272, 1275, 1, 0, 0, 0, 1273, 1271, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1273, 1, 0, 0, 0, 1276, 1277, 5, 145, 0, 0, 1277, 165, 1, 0, 0, 0, 1278, 1279, 5, 158, 0, 0, 1279, 1280, 3, 116, 58, 0, 1280, 1281, 5, 148, 0, 0, 1281, 1284, 1, 0, 0, 0, 1282, 1284, 5, 157, 0, 0, 1283, 1278, 1, 0, 0, 0, 1283, 1282, 1, 0, 0, 0, 1284, 167, 1, 0, 0, 0, 1285, 1289, 5, 144, 0, 0, 1286, 1288, 3, 170, 85, 0, 1287, 1286, 1, 0, 0, 0, 1288, 1291, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1292, 1, 0, 0, 0, 1291, 1289, 1, 0, 0, 0, 1292, 1293, 5, 0, 0, 1, 1293, 169, 1, 0, 0, 0, 1294, 1295, 5, 160, 0, 0, 1295, 1296, 3, 116, 58, 0, 1296, 1297, 5, 148, 0, 0, 1297, 1300, 1, 0, 0, 0, 1298, 1300, 5, 159, 0, 0, 1299, 1294, 1, 0, 0, 0, 1299, 1298, 1, 0, 0, 0, 1300, 171, 1, 0, 0, 0, 167, 175, 182, 191, 198, 202, 216, 220, 223, 227, 230, 237, 241, 250, 255, 264, 272, 279, 283, 289, 294, 302, 309, 315, 327, 335, 349, 353, 358, 368, 377, 380, 384, 387, 391, 394, 397, 400, 403, 407, 411, 414, 417, 420, 424, 427, 436, 442, 463, 480, 497, 503, 509, 520, 522, 533, 536, 542, 550, 556, 558, 562, 567, 570, 573, 577, 581, 584, 586, 589, 593, 597, 600, 602, 604, 609, 620, 626, 633, 638, 642, 646, 652, 654, 661, 669, 672, 675, 694, 708, 724, 728, 739, 743, 754, 758, 765, 769, 776, 780, 785, 794, 798, 822, 839, 845, 848, 851, 861, 867, 870, 873, 881, 884, 888, 891, 905, 922, 927, 933, 939, 946, 958, 962, 965, 974, 988, 1004, 1033, 1041, 1043, 1045, 1054, 1058, 1067, 1071, 1075, 1080, 1087, 1098, 1107, 1114, 1127, 1134, 1138, 1150, 1156, 1159, 1166, 1178, 1184, 1188, 1194, 1201, 1210, 1214, 1224, 1226, 1229, 1237, 1242, 1252, 1257, 1267, 1273, 1283, 1289, 1299] \ No newline at end of file diff --git a/hogql_parser/HogQLParserBaseVisitor.h b/hogql_parser/HogQLParserBaseVisitor.h index 80b4d5d487765..d46bc2387ff6e 100644 --- a/hogql_parser/HogQLParserBaseVisitor.h +++ b/hogql_parser/HogQLParserBaseVisitor.h @@ -331,6 +331,10 @@ class HogQLParserBaseVisitor : public HogQLParserVisitor { return visitChildren(ctx); } + virtual std::any visitColumnExprBlock(HogQLParser::ColumnExprBlockContext *ctx) override { + return visitChildren(ctx); + } + virtual std::any visitColumnExprPrecedence1(HogQLParser::ColumnExprPrecedence1Context *ctx) override { return visitChildren(ctx); } diff --git a/hogql_parser/HogQLParserVisitor.h b/hogql_parser/HogQLParserVisitor.h index 0b9e1797ad836..2cbe2f933eb18 100644 --- a/hogql_parser/HogQLParserVisitor.h +++ b/hogql_parser/HogQLParserVisitor.h @@ -177,6 +177,8 @@ class HogQLParserVisitor : public antlr4::tree::AbstractParseTreeVisitor { virtual std::any visitColumnExprNullTupleAccess(HogQLParser::ColumnExprNullTupleAccessContext *context) = 0; + virtual std::any visitColumnExprBlock(HogQLParser::ColumnExprBlockContext *context) = 0; + virtual std::any visitColumnExprPrecedence1(HogQLParser::ColumnExprPrecedence1Context *context) = 0; virtual std::any visitColumnExprPrecedence2(HogQLParser::ColumnExprPrecedence2Context *context) = 0; diff --git a/hogql_parser/parser.cpp b/hogql_parser/parser.cpp index 128f7006db93b..c4f4d7bf4fcd1 100644 --- a/hogql_parser/parser.cpp +++ b/hogql_parser/parser.cpp @@ -2195,6 +2195,8 @@ class HogQLParseTreeConverter : public HogQLParserBaseVisitor { VISIT(ColumnExprIdentifier) { return visit(ctx->columnIdentifier()); } + VISIT(ColumnExprBlock) { return visit(ctx->block()); } + VISIT(ColumnExprFunction) { string name = visitAsString(ctx->identifier()); @@ -2569,9 +2571,7 @@ class HogQLParseTreeConverter : public HogQLParserBaseVisitor { RETURN_NEW_AST_NODE("HogQLXTag", "{s:s#,s:N}", "kind", opening.data(), opening.size(), "attributes", attributes); } - VISIT(Placeholder) { - RETURN_NEW_AST_NODE("Placeholder", "{s:N}", "expr", visitAsPyObject(ctx->columnExpr())); - } + VISIT(Placeholder) { return visit(ctx->block()); } VISIT_UNSUPPORTED(EnumValue) diff --git a/posthog/hogql/ast.py b/posthog/hogql/ast.py index ffbc570c8716a..a1d0eb7eebab2 100644 --- a/posthog/hogql/ast.py +++ b/posthog/hogql/ast.py @@ -1,4 +1,5 @@ from enum import StrEnum +from functools import cached_property from typing import Any, Literal, Optional, Union from dataclasses import dataclass, field @@ -108,6 +109,15 @@ class Function(Statement): class Block(Statement): declarations: list[Declaration] + @cached_property + def placeholder_chain(self) -> str | None: + if len(self.declarations) == 1: + declaration = self.declarations[0] + if isinstance(declaration, ExprStatement) or isinstance(declaration, ReturnStatement): + if isinstance(declaration.expr, Field): + return ".".join(declaration.expr.chain) + return None + @dataclass(kw_only=True) class Program(AST): @@ -696,17 +706,6 @@ class Field(Expr): chain: list[str | int] -@dataclass(kw_only=True) -class Placeholder(Expr): - expr: Expr - - @property - def field(self): - if isinstance(self.expr, Field): - return ".".join(str(chain) for chain in self.expr.chain) - return None - - @dataclass(kw_only=True) class Call(Expr): name: str diff --git a/posthog/hogql/bytecode.py b/posthog/hogql/bytecode.py index b472b12bf454e..a734fa3588631 100644 --- a/posthog/hogql/bytecode.py +++ b/posthog/hogql/bytecode.py @@ -228,9 +228,6 @@ def visit_field(self, node: ast.Field): ) return [*chain, Operation.GET_GLOBAL, len(node.chain)] - def visit_placeholder(self, node: ast.Placeholder): - raise QueryError(f"Unresolved placeholder: {{{node.field}}}") - def visit_tuple_access(self, node: ast.TupleAccess): return [ *self.visit(node.tuple), diff --git a/posthog/hogql/database/schema/util/where_clause_extractor.py b/posthog/hogql/database/schema/util/where_clause_extractor.py index 9ed7be296f483..faa54638467fb 100644 --- a/posthog/hogql/database/schema/util/where_clause_extractor.py +++ b/posthog/hogql/database/schema/util/where_clause_extractor.py @@ -204,9 +204,6 @@ def visit_field(self, node: ast.Field) -> ast.Expr: def visit_constant(self, node: ast.Constant) -> ast.Expr: return ast.Constant(value=node.value) - def visit_placeholder(self, node: ast.Placeholder) -> ast.Expr: - raise Exception() # this should never happen, as placeholders should be resolved before this runs - def visit_and(self, node: ast.And) -> ast.Expr: exprs = [self.visit(expr) for expr in node.exprs] flattened = flatten_ands(exprs) @@ -450,9 +447,6 @@ def visit_or(self, node: ast.Or) -> bool: def visit_not(self, node: ast.Not) -> bool: return False - def visit_placeholder(self, node: ast.Placeholder) -> bool: - raise Exception() - def visit_alias(self, node: ast.Alias) -> bool: return self.visit(node.expr) @@ -533,9 +527,6 @@ def visit_or(self, node: ast.Or) -> bool: def visit_not(self, node: ast.Not) -> bool: return False - def visit_placeholder(self, node: ast.Placeholder) -> bool: - raise Exception() - def visit_alias(self, node: ast.Alias) -> bool: from posthog.hogql.database.schema.events import EventsTable from posthog.hogql.database.schema.sessions_v1 import SessionsTableV1 diff --git a/posthog/hogql/filters.py b/posthog/hogql/filters.py index b37d8e9334b02..3c14a32083c55 100644 --- a/posthog/hogql/filters.py +++ b/posthog/hogql/filters.py @@ -51,8 +51,8 @@ def visit_compare_operation(self, node): ) return node - def visit_placeholder(self, node): - if node.field == "filters": + def visit_block(self, node): + if node.placeholder_chain == "filters": if self.filters is None: return ast.Constant(value=True) @@ -131,7 +131,7 @@ def visit_placeholder(self, node): if len(exprs) == 1: return exprs[0] return ast.And(exprs=exprs) - if node.field == "filters.dateRange.from": + if node.placeholder_chain == "filters.dateRange.from": compare_op_wrapper = self.compare_operations[-1] if self.filters is None: @@ -149,7 +149,7 @@ def visit_placeholder(self, node): else: compare_op_wrapper.skip = True return ast.Constant(value=True) - if node.field == "filters.dateRange.to": + if node.placeholder_chain == "filters.dateRange.to": compare_op_wrapper = self.compare_operations[-1] if self.filters is None: @@ -167,4 +167,4 @@ def visit_placeholder(self, node): compare_op_wrapper.skip = True return ast.Constant(value=True) - return super().visit_placeholder(node) + return super().visit_block(node) diff --git a/posthog/hogql/grammar/HogQLParser.g4 b/posthog/hogql/grammar/HogQLParser.g4 index 5ae97d9a58d0f..40d9d4342b5fc 100644 --- a/posthog/hogql/grammar/HogQLParser.g4 +++ b/posthog/hogql/grammar/HogQLParser.g4 @@ -208,6 +208,7 @@ columnExpr | LBRACE (kvPairList)? RBRACE # ColumnExprDict | columnLambdaExpr # ColumnExprLambda | columnIdentifier # ColumnExprIdentifier + | block # ColumnExprBlock ; columnLambdaExpr: @@ -293,7 +294,7 @@ keywordForAlias alias: IDENTIFIER | keywordForAlias; // |interval| can't be an alias, otherwise 'INTERVAL 1 SOMETHING' becomes ambiguous. identifier: IDENTIFIER | interval | keyword; enumValue: string EQ_SINGLE numberLiteral; -placeholder: LBRACE columnExpr RBRACE; +placeholder: block; string: STRING_LITERAL | templateString; templateString : QUOTE_SINGLE_TEMPLATE stringContents* QUOTE_SINGLE ; diff --git a/posthog/hogql/grammar/HogQLParser.interp b/posthog/hogql/grammar/HogQLParser.interp index 3ed0215cdb034..ebb7058a58df9 100644 --- a/posthog/hogql/grammar/HogQLParser.interp +++ b/posthog/hogql/grammar/HogQLParser.interp @@ -414,4 +414,4 @@ stringContentsFull atn: -[4, 1, 160, 1303, 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, 1, 0, 5, 0, 174, 8, 0, 10, 0, 12, 0, 177, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 183, 8, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 192, 8, 3, 1, 4, 1, 4, 1, 4, 5, 4, 197, 8, 4, 10, 4, 12, 4, 200, 9, 4, 1, 4, 3, 4, 203, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 217, 8, 5, 1, 6, 1, 6, 3, 6, 221, 8, 6, 1, 6, 3, 6, 224, 8, 6, 1, 7, 1, 7, 3, 7, 228, 8, 7, 1, 7, 3, 7, 231, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 238, 8, 8, 1, 8, 1, 8, 3, 8, 242, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 249, 8, 9, 10, 9, 12, 9, 252, 9, 9, 1, 9, 1, 9, 3, 9, 256, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 265, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 273, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 280, 8, 12, 1, 12, 1, 12, 3, 12, 284, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 290, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 295, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 303, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 310, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 316, 8, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 328, 8, 16, 1, 17, 1, 17, 1, 18, 1, 18, 5, 18, 334, 8, 18, 10, 18, 12, 18, 337, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 5, 20, 348, 8, 20, 10, 20, 12, 20, 351, 9, 20, 1, 20, 3, 20, 354, 8, 20, 1, 21, 1, 21, 1, 21, 3, 21, 359, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 367, 8, 22, 10, 22, 12, 22, 370, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 378, 8, 23, 1, 24, 3, 24, 381, 8, 24, 1, 24, 1, 24, 3, 24, 385, 8, 24, 1, 24, 3, 24, 388, 8, 24, 1, 24, 1, 24, 3, 24, 392, 8, 24, 1, 24, 3, 24, 395, 8, 24, 1, 24, 3, 24, 398, 8, 24, 1, 24, 3, 24, 401, 8, 24, 1, 24, 3, 24, 404, 8, 24, 1, 24, 1, 24, 3, 24, 408, 8, 24, 1, 24, 1, 24, 3, 24, 412, 8, 24, 1, 24, 3, 24, 415, 8, 24, 1, 24, 3, 24, 418, 8, 24, 1, 24, 3, 24, 421, 8, 24, 1, 24, 1, 24, 3, 24, 425, 8, 24, 1, 24, 3, 24, 428, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 437, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 443, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 462, 8, 29, 10, 29, 12, 29, 465, 9, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 481, 8, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 498, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 504, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 510, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 521, 8, 36, 3, 36, 523, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 534, 8, 39, 1, 39, 3, 39, 537, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 543, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 551, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 557, 8, 39, 10, 39, 12, 39, 560, 9, 39, 1, 40, 3, 40, 563, 8, 40, 1, 40, 1, 40, 1, 40, 3, 40, 568, 8, 40, 1, 40, 3, 40, 571, 8, 40, 1, 40, 3, 40, 574, 8, 40, 1, 40, 1, 40, 3, 40, 578, 8, 40, 1, 40, 1, 40, 3, 40, 582, 8, 40, 1, 40, 3, 40, 585, 8, 40, 3, 40, 587, 8, 40, 1, 40, 3, 40, 590, 8, 40, 1, 40, 1, 40, 3, 40, 594, 8, 40, 1, 40, 1, 40, 3, 40, 598, 8, 40, 1, 40, 3, 40, 601, 8, 40, 3, 40, 603, 8, 40, 3, 40, 605, 8, 40, 1, 41, 1, 41, 1, 41, 3, 41, 610, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 621, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 627, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 632, 8, 44, 10, 44, 12, 44, 635, 9, 44, 1, 45, 1, 45, 3, 45, 639, 8, 45, 1, 45, 1, 45, 3, 45, 643, 8, 45, 1, 45, 1, 45, 3, 45, 647, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 653, 8, 46, 3, 46, 655, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 660, 8, 47, 10, 47, 12, 47, 663, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 3, 49, 670, 8, 49, 1, 49, 3, 49, 673, 8, 49, 1, 49, 3, 49, 676, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 695, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 709, 8, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 723, 8, 56, 10, 56, 12, 56, 726, 9, 56, 1, 56, 3, 56, 729, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 738, 8, 56, 10, 56, 12, 56, 741, 9, 56, 1, 56, 3, 56, 744, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 753, 8, 56, 10, 56, 12, 56, 756, 9, 56, 1, 56, 3, 56, 759, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 766, 8, 56, 1, 56, 1, 56, 3, 56, 770, 8, 56, 1, 57, 1, 57, 1, 57, 5, 57, 775, 8, 57, 10, 57, 12, 57, 778, 9, 57, 1, 57, 3, 57, 781, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 786, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 4, 58, 793, 8, 58, 11, 58, 12, 58, 794, 1, 58, 1, 58, 3, 58, 799, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 823, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 840, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 846, 8, 58, 1, 58, 3, 58, 849, 8, 58, 1, 58, 3, 58, 852, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 862, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 868, 8, 58, 1, 58, 3, 58, 871, 8, 58, 1, 58, 3, 58, 874, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 882, 8, 58, 1, 58, 3, 58, 885, 8, 58, 1, 58, 1, 58, 3, 58, 889, 8, 58, 1, 58, 3, 58, 892, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 906, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 923, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 928, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 933, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 939, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 946, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 958, 8, 58, 1, 58, 1, 58, 3, 58, 962, 8, 58, 1, 58, 3, 58, 965, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 974, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 988, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1004, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1033, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1041, 8, 58, 5, 58, 1043, 8, 58, 10, 58, 12, 58, 1046, 9, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1052, 8, 59, 10, 59, 12, 59, 1055, 9, 59, 1, 59, 3, 59, 1058, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1065, 8, 59, 10, 59, 12, 59, 1068, 9, 59, 1, 59, 3, 59, 1071, 8, 59, 1, 59, 1, 59, 3, 59, 1075, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1080, 8, 59, 1, 60, 1, 60, 1, 60, 5, 60, 1085, 8, 60, 10, 60, 12, 60, 1088, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1096, 8, 60, 10, 60, 12, 60, 1099, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1107, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1114, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1127, 8, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1132, 8, 62, 10, 62, 12, 62, 1135, 9, 62, 1, 62, 3, 62, 1138, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1150, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1156, 8, 64, 1, 64, 3, 64, 1159, 8, 64, 1, 65, 1, 65, 1, 65, 5, 65, 1164, 8, 65, 10, 65, 12, 65, 1167, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1178, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1184, 8, 66, 5, 66, 1186, 8, 66, 10, 66, 12, 66, 1189, 9, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1194, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1201, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 5, 69, 1208, 8, 69, 10, 69, 12, 69, 1211, 9, 69, 1, 69, 3, 69, 1214, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1224, 8, 71, 3, 71, 1226, 8, 71, 1, 72, 3, 72, 1229, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1237, 8, 72, 1, 73, 1, 73, 1, 73, 3, 73, 1242, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1252, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 1257, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 3, 81, 1269, 8, 81, 1, 82, 1, 82, 5, 82, 1273, 8, 82, 10, 82, 12, 82, 1276, 9, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1285, 8, 83, 1, 84, 1, 84, 5, 84, 1289, 8, 84, 10, 84, 12, 84, 1292, 9, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1301, 8, 85, 1, 85, 0, 3, 78, 116, 132, 86, 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, 0, 17, 2, 0, 31, 31, 36, 36, 2, 0, 18, 18, 75, 75, 2, 0, 45, 45, 52, 52, 3, 0, 1, 1, 4, 4, 8, 8, 4, 0, 1, 1, 3, 4, 8, 8, 81, 81, 2, 0, 52, 52, 74, 74, 2, 0, 1, 1, 4, 4, 2, 0, 7, 7, 22, 23, 2, 0, 30, 30, 50, 50, 2, 0, 72, 72, 77, 77, 3, 0, 10, 10, 51, 51, 91, 91, 2, 0, 42, 42, 54, 54, 1, 0, 108, 109, 2, 0, 119, 119, 140, 140, 7, 0, 21, 21, 39, 39, 56, 57, 71, 71, 79, 79, 98, 98, 104, 104, 17, 0, 1, 13, 15, 20, 22, 28, 30, 30, 32, 35, 37, 38, 40, 43, 45, 52, 54, 55, 59, 59, 61, 70, 72, 78, 80, 84, 86, 93, 95, 97, 99, 100, 102, 103, 4, 0, 20, 20, 30, 30, 40, 40, 49, 49, 1475, 0, 175, 1, 0, 0, 0, 2, 182, 1, 0, 0, 0, 4, 184, 1, 0, 0, 0, 6, 186, 1, 0, 0, 0, 8, 193, 1, 0, 0, 0, 10, 216, 1, 0, 0, 0, 12, 218, 1, 0, 0, 0, 14, 225, 1, 0, 0, 0, 16, 232, 1, 0, 0, 0, 18, 245, 1, 0, 0, 0, 20, 257, 1, 0, 0, 0, 22, 266, 1, 0, 0, 0, 24, 274, 1, 0, 0, 0, 26, 296, 1, 0, 0, 0, 28, 311, 1, 0, 0, 0, 30, 320, 1, 0, 0, 0, 32, 325, 1, 0, 0, 0, 34, 329, 1, 0, 0, 0, 36, 331, 1, 0, 0, 0, 38, 340, 1, 0, 0, 0, 40, 344, 1, 0, 0, 0, 42, 358, 1, 0, 0, 0, 44, 362, 1, 0, 0, 0, 46, 377, 1, 0, 0, 0, 48, 380, 1, 0, 0, 0, 50, 429, 1, 0, 0, 0, 52, 432, 1, 0, 0, 0, 54, 438, 1, 0, 0, 0, 56, 442, 1, 0, 0, 0, 58, 448, 1, 0, 0, 0, 60, 466, 1, 0, 0, 0, 62, 469, 1, 0, 0, 0, 64, 472, 1, 0, 0, 0, 66, 482, 1, 0, 0, 0, 68, 485, 1, 0, 0, 0, 70, 489, 1, 0, 0, 0, 72, 522, 1, 0, 0, 0, 74, 524, 1, 0, 0, 0, 76, 527, 1, 0, 0, 0, 78, 542, 1, 0, 0, 0, 80, 604, 1, 0, 0, 0, 82, 609, 1, 0, 0, 0, 84, 620, 1, 0, 0, 0, 86, 622, 1, 0, 0, 0, 88, 628, 1, 0, 0, 0, 90, 636, 1, 0, 0, 0, 92, 654, 1, 0, 0, 0, 94, 656, 1, 0, 0, 0, 96, 664, 1, 0, 0, 0, 98, 669, 1, 0, 0, 0, 100, 677, 1, 0, 0, 0, 102, 681, 1, 0, 0, 0, 104, 685, 1, 0, 0, 0, 106, 694, 1, 0, 0, 0, 108, 708, 1, 0, 0, 0, 110, 710, 1, 0, 0, 0, 112, 769, 1, 0, 0, 0, 114, 771, 1, 0, 0, 0, 116, 932, 1, 0, 0, 0, 118, 1074, 1, 0, 0, 0, 120, 1113, 1, 0, 0, 0, 122, 1126, 1, 0, 0, 0, 124, 1128, 1, 0, 0, 0, 126, 1149, 1, 0, 0, 0, 128, 1158, 1, 0, 0, 0, 130, 1160, 1, 0, 0, 0, 132, 1177, 1, 0, 0, 0, 134, 1190, 1, 0, 0, 0, 136, 1200, 1, 0, 0, 0, 138, 1204, 1, 0, 0, 0, 140, 1215, 1, 0, 0, 0, 142, 1225, 1, 0, 0, 0, 144, 1228, 1, 0, 0, 0, 146, 1241, 1, 0, 0, 0, 148, 1243, 1, 0, 0, 0, 150, 1245, 1, 0, 0, 0, 152, 1247, 1, 0, 0, 0, 154, 1251, 1, 0, 0, 0, 156, 1256, 1, 0, 0, 0, 158, 1258, 1, 0, 0, 0, 160, 1262, 1, 0, 0, 0, 162, 1268, 1, 0, 0, 0, 164, 1270, 1, 0, 0, 0, 166, 1284, 1, 0, 0, 0, 168, 1286, 1, 0, 0, 0, 170, 1300, 1, 0, 0, 0, 172, 174, 3, 2, 1, 0, 173, 172, 1, 0, 0, 0, 174, 177, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 175, 176, 1, 0, 0, 0, 176, 178, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 178, 179, 5, 0, 0, 1, 179, 1, 1, 0, 0, 0, 180, 183, 3, 6, 3, 0, 181, 183, 3, 10, 5, 0, 182, 180, 1, 0, 0, 0, 182, 181, 1, 0, 0, 0, 183, 3, 1, 0, 0, 0, 184, 185, 3, 116, 58, 0, 185, 5, 1, 0, 0, 0, 186, 187, 5, 53, 0, 0, 187, 191, 3, 156, 78, 0, 188, 189, 5, 116, 0, 0, 189, 190, 5, 123, 0, 0, 190, 192, 3, 4, 2, 0, 191, 188, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 7, 1, 0, 0, 0, 193, 198, 3, 156, 78, 0, 194, 195, 5, 117, 0, 0, 195, 197, 3, 156, 78, 0, 196, 194, 1, 0, 0, 0, 197, 200, 1, 0, 0, 0, 198, 196, 1, 0, 0, 0, 198, 199, 1, 0, 0, 0, 199, 202, 1, 0, 0, 0, 200, 198, 1, 0, 0, 0, 201, 203, 5, 117, 0, 0, 202, 201, 1, 0, 0, 0, 202, 203, 1, 0, 0, 0, 203, 9, 1, 0, 0, 0, 204, 217, 3, 12, 6, 0, 205, 217, 3, 14, 7, 0, 206, 217, 3, 18, 9, 0, 207, 217, 3, 20, 10, 0, 208, 217, 3, 22, 11, 0, 209, 217, 3, 26, 13, 0, 210, 217, 3, 24, 12, 0, 211, 217, 3, 28, 14, 0, 212, 217, 3, 30, 15, 0, 213, 217, 3, 36, 18, 0, 214, 217, 3, 32, 16, 0, 215, 217, 3, 34, 17, 0, 216, 204, 1, 0, 0, 0, 216, 205, 1, 0, 0, 0, 216, 206, 1, 0, 0, 0, 216, 207, 1, 0, 0, 0, 216, 208, 1, 0, 0, 0, 216, 209, 1, 0, 0, 0, 216, 210, 1, 0, 0, 0, 216, 211, 1, 0, 0, 0, 216, 212, 1, 0, 0, 0, 216, 213, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 216, 215, 1, 0, 0, 0, 217, 11, 1, 0, 0, 0, 218, 220, 5, 73, 0, 0, 219, 221, 3, 4, 2, 0, 220, 219, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 223, 1, 0, 0, 0, 222, 224, 5, 151, 0, 0, 223, 222, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 13, 1, 0, 0, 0, 225, 227, 5, 85, 0, 0, 226, 228, 3, 4, 2, 0, 227, 226, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 231, 5, 151, 0, 0, 230, 229, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 15, 1, 0, 0, 0, 232, 241, 5, 14, 0, 0, 233, 234, 5, 131, 0, 0, 234, 237, 3, 156, 78, 0, 235, 236, 5, 116, 0, 0, 236, 238, 3, 156, 78, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 5, 150, 0, 0, 240, 242, 1, 0, 0, 0, 241, 233, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 244, 3, 36, 18, 0, 244, 17, 1, 0, 0, 0, 245, 246, 5, 94, 0, 0, 246, 250, 3, 36, 18, 0, 247, 249, 3, 16, 8, 0, 248, 247, 1, 0, 0, 0, 249, 252, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 250, 251, 1, 0, 0, 0, 251, 255, 1, 0, 0, 0, 252, 250, 1, 0, 0, 0, 253, 254, 5, 29, 0, 0, 254, 256, 3, 36, 18, 0, 255, 253, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 19, 1, 0, 0, 0, 257, 258, 5, 41, 0, 0, 258, 259, 5, 131, 0, 0, 259, 260, 3, 4, 2, 0, 260, 261, 5, 150, 0, 0, 261, 264, 3, 10, 5, 0, 262, 263, 5, 25, 0, 0, 263, 265, 3, 10, 5, 0, 264, 262, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 21, 1, 0, 0, 0, 266, 267, 5, 101, 0, 0, 267, 268, 5, 131, 0, 0, 268, 269, 3, 4, 2, 0, 269, 270, 5, 150, 0, 0, 270, 272, 3, 10, 5, 0, 271, 273, 5, 151, 0, 0, 272, 271, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 23, 1, 0, 0, 0, 274, 275, 5, 33, 0, 0, 275, 279, 5, 131, 0, 0, 276, 280, 3, 6, 3, 0, 277, 280, 3, 30, 15, 0, 278, 280, 3, 4, 2, 0, 279, 276, 1, 0, 0, 0, 279, 277, 1, 0, 0, 0, 279, 278, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 281, 1, 0, 0, 0, 281, 283, 5, 151, 0, 0, 282, 284, 3, 4, 2, 0, 283, 282, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 289, 5, 151, 0, 0, 286, 290, 3, 6, 3, 0, 287, 290, 3, 30, 15, 0, 288, 290, 3, 4, 2, 0, 289, 286, 1, 0, 0, 0, 289, 287, 1, 0, 0, 0, 289, 288, 1, 0, 0, 0, 289, 290, 1, 0, 0, 0, 290, 291, 1, 0, 0, 0, 291, 292, 5, 150, 0, 0, 292, 294, 3, 10, 5, 0, 293, 295, 5, 151, 0, 0, 294, 293, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 25, 1, 0, 0, 0, 296, 297, 5, 33, 0, 0, 297, 298, 5, 131, 0, 0, 298, 299, 5, 53, 0, 0, 299, 302, 3, 156, 78, 0, 300, 301, 5, 117, 0, 0, 301, 303, 3, 156, 78, 0, 302, 300, 1, 0, 0, 0, 302, 303, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 305, 5, 43, 0, 0, 305, 306, 3, 4, 2, 0, 306, 307, 5, 150, 0, 0, 307, 309, 3, 10, 5, 0, 308, 310, 5, 151, 0, 0, 309, 308, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 27, 1, 0, 0, 0, 311, 312, 7, 0, 0, 0, 312, 313, 3, 156, 78, 0, 313, 315, 5, 131, 0, 0, 314, 316, 3, 8, 4, 0, 315, 314, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 5, 150, 0, 0, 318, 319, 3, 36, 18, 0, 319, 29, 1, 0, 0, 0, 320, 321, 3, 4, 2, 0, 321, 322, 5, 116, 0, 0, 322, 323, 5, 123, 0, 0, 323, 324, 3, 4, 2, 0, 324, 31, 1, 0, 0, 0, 325, 327, 3, 4, 2, 0, 326, 328, 5, 151, 0, 0, 327, 326, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 33, 1, 0, 0, 0, 329, 330, 5, 151, 0, 0, 330, 35, 1, 0, 0, 0, 331, 335, 5, 129, 0, 0, 332, 334, 3, 2, 1, 0, 333, 332, 1, 0, 0, 0, 334, 337, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 338, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 338, 339, 5, 148, 0, 0, 339, 37, 1, 0, 0, 0, 340, 341, 3, 4, 2, 0, 341, 342, 5, 116, 0, 0, 342, 343, 3, 4, 2, 0, 343, 39, 1, 0, 0, 0, 344, 349, 3, 38, 19, 0, 345, 346, 5, 117, 0, 0, 346, 348, 3, 38, 19, 0, 347, 345, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 353, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 354, 5, 117, 0, 0, 353, 352, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 41, 1, 0, 0, 0, 355, 359, 3, 44, 22, 0, 356, 359, 3, 48, 24, 0, 357, 359, 3, 120, 60, 0, 358, 355, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 358, 357, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 361, 5, 0, 0, 1, 361, 43, 1, 0, 0, 0, 362, 368, 3, 46, 23, 0, 363, 364, 5, 96, 0, 0, 364, 365, 5, 1, 0, 0, 365, 367, 3, 46, 23, 0, 366, 363, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 45, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 378, 3, 48, 24, 0, 372, 373, 5, 131, 0, 0, 373, 374, 3, 44, 22, 0, 374, 375, 5, 150, 0, 0, 375, 378, 1, 0, 0, 0, 376, 378, 3, 160, 80, 0, 377, 371, 1, 0, 0, 0, 377, 372, 1, 0, 0, 0, 377, 376, 1, 0, 0, 0, 378, 47, 1, 0, 0, 0, 379, 381, 3, 50, 25, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 384, 5, 80, 0, 0, 383, 385, 5, 24, 0, 0, 384, 383, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 387, 1, 0, 0, 0, 386, 388, 3, 52, 26, 0, 387, 386, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 391, 3, 114, 57, 0, 390, 392, 3, 54, 27, 0, 391, 390, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 1, 0, 0, 0, 393, 395, 3, 56, 28, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 397, 1, 0, 0, 0, 396, 398, 3, 60, 30, 0, 397, 396, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 400, 1, 0, 0, 0, 399, 401, 3, 62, 31, 0, 400, 399, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 403, 1, 0, 0, 0, 402, 404, 3, 64, 32, 0, 403, 402, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 406, 5, 103, 0, 0, 406, 408, 7, 1, 0, 0, 407, 405, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 410, 5, 103, 0, 0, 410, 412, 5, 90, 0, 0, 411, 409, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 1, 0, 0, 0, 413, 415, 3, 66, 33, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 417, 1, 0, 0, 0, 416, 418, 3, 58, 29, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 420, 1, 0, 0, 0, 419, 421, 3, 68, 34, 0, 420, 419, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 424, 1, 0, 0, 0, 422, 425, 3, 72, 36, 0, 423, 425, 3, 74, 37, 0, 424, 422, 1, 0, 0, 0, 424, 423, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 427, 1, 0, 0, 0, 426, 428, 3, 76, 38, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 49, 1, 0, 0, 0, 429, 430, 5, 103, 0, 0, 430, 431, 3, 124, 62, 0, 431, 51, 1, 0, 0, 0, 432, 433, 5, 89, 0, 0, 433, 436, 5, 109, 0, 0, 434, 435, 5, 103, 0, 0, 435, 437, 5, 86, 0, 0, 436, 434, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 53, 1, 0, 0, 0, 438, 439, 5, 34, 0, 0, 439, 440, 3, 78, 39, 0, 440, 55, 1, 0, 0, 0, 441, 443, 7, 2, 0, 0, 442, 441, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 5, 5, 0, 0, 445, 446, 5, 48, 0, 0, 446, 447, 3, 114, 57, 0, 447, 57, 1, 0, 0, 0, 448, 449, 5, 102, 0, 0, 449, 450, 3, 156, 78, 0, 450, 451, 5, 6, 0, 0, 451, 452, 5, 131, 0, 0, 452, 453, 3, 98, 49, 0, 453, 463, 5, 150, 0, 0, 454, 455, 5, 117, 0, 0, 455, 456, 3, 156, 78, 0, 456, 457, 5, 6, 0, 0, 457, 458, 5, 131, 0, 0, 458, 459, 3, 98, 49, 0, 459, 460, 5, 150, 0, 0, 460, 462, 1, 0, 0, 0, 461, 454, 1, 0, 0, 0, 462, 465, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 59, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 466, 467, 5, 70, 0, 0, 467, 468, 3, 116, 58, 0, 468, 61, 1, 0, 0, 0, 469, 470, 5, 100, 0, 0, 470, 471, 3, 116, 58, 0, 471, 63, 1, 0, 0, 0, 472, 473, 5, 37, 0, 0, 473, 480, 5, 11, 0, 0, 474, 475, 7, 1, 0, 0, 475, 476, 5, 131, 0, 0, 476, 477, 3, 114, 57, 0, 477, 478, 5, 150, 0, 0, 478, 481, 1, 0, 0, 0, 479, 481, 3, 114, 57, 0, 480, 474, 1, 0, 0, 0, 480, 479, 1, 0, 0, 0, 481, 65, 1, 0, 0, 0, 482, 483, 5, 38, 0, 0, 483, 484, 3, 116, 58, 0, 484, 67, 1, 0, 0, 0, 485, 486, 5, 65, 0, 0, 486, 487, 5, 11, 0, 0, 487, 488, 3, 88, 44, 0, 488, 69, 1, 0, 0, 0, 489, 490, 5, 65, 0, 0, 490, 491, 5, 11, 0, 0, 491, 492, 3, 114, 57, 0, 492, 71, 1, 0, 0, 0, 493, 494, 5, 55, 0, 0, 494, 497, 3, 116, 58, 0, 495, 496, 5, 117, 0, 0, 496, 498, 3, 116, 58, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 503, 1, 0, 0, 0, 499, 500, 5, 103, 0, 0, 500, 504, 5, 86, 0, 0, 501, 502, 5, 11, 0, 0, 502, 504, 3, 114, 57, 0, 503, 499, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 523, 1, 0, 0, 0, 505, 506, 5, 55, 0, 0, 506, 509, 3, 116, 58, 0, 507, 508, 5, 103, 0, 0, 508, 510, 5, 86, 0, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 5, 62, 0, 0, 512, 513, 3, 116, 58, 0, 513, 523, 1, 0, 0, 0, 514, 515, 5, 55, 0, 0, 515, 516, 3, 116, 58, 0, 516, 517, 5, 62, 0, 0, 517, 520, 3, 116, 58, 0, 518, 519, 5, 11, 0, 0, 519, 521, 3, 114, 57, 0, 520, 518, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 523, 1, 0, 0, 0, 522, 493, 1, 0, 0, 0, 522, 505, 1, 0, 0, 0, 522, 514, 1, 0, 0, 0, 523, 73, 1, 0, 0, 0, 524, 525, 5, 62, 0, 0, 525, 526, 3, 116, 58, 0, 526, 75, 1, 0, 0, 0, 527, 528, 5, 82, 0, 0, 528, 529, 3, 94, 47, 0, 529, 77, 1, 0, 0, 0, 530, 531, 6, 39, -1, 0, 531, 533, 3, 132, 66, 0, 532, 534, 5, 28, 0, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 536, 1, 0, 0, 0, 535, 537, 3, 86, 43, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 543, 1, 0, 0, 0, 538, 539, 5, 131, 0, 0, 539, 540, 3, 78, 39, 0, 540, 541, 5, 150, 0, 0, 541, 543, 1, 0, 0, 0, 542, 530, 1, 0, 0, 0, 542, 538, 1, 0, 0, 0, 543, 558, 1, 0, 0, 0, 544, 545, 10, 3, 0, 0, 545, 546, 3, 82, 41, 0, 546, 547, 3, 78, 39, 4, 547, 557, 1, 0, 0, 0, 548, 550, 10, 4, 0, 0, 549, 551, 3, 80, 40, 0, 550, 549, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 5, 48, 0, 0, 553, 554, 3, 78, 39, 0, 554, 555, 3, 84, 42, 0, 555, 557, 1, 0, 0, 0, 556, 544, 1, 0, 0, 0, 556, 548, 1, 0, 0, 0, 557, 560, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 79, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 561, 563, 7, 3, 0, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 571, 5, 45, 0, 0, 565, 567, 5, 45, 0, 0, 566, 568, 7, 3, 0, 0, 567, 566, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 571, 1, 0, 0, 0, 569, 571, 7, 3, 0, 0, 570, 562, 1, 0, 0, 0, 570, 565, 1, 0, 0, 0, 570, 569, 1, 0, 0, 0, 571, 605, 1, 0, 0, 0, 572, 574, 7, 4, 0, 0, 573, 572, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 577, 7, 5, 0, 0, 576, 578, 5, 66, 0, 0, 577, 576, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 587, 1, 0, 0, 0, 579, 581, 7, 5, 0, 0, 580, 582, 5, 66, 0, 0, 581, 580, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 584, 1, 0, 0, 0, 583, 585, 7, 4, 0, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 587, 1, 0, 0, 0, 586, 573, 1, 0, 0, 0, 586, 579, 1, 0, 0, 0, 587, 605, 1, 0, 0, 0, 588, 590, 7, 6, 0, 0, 589, 588, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 593, 5, 35, 0, 0, 592, 594, 5, 66, 0, 0, 593, 592, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 603, 1, 0, 0, 0, 595, 597, 5, 35, 0, 0, 596, 598, 5, 66, 0, 0, 597, 596, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 600, 1, 0, 0, 0, 599, 601, 7, 6, 0, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 603, 1, 0, 0, 0, 602, 589, 1, 0, 0, 0, 602, 595, 1, 0, 0, 0, 603, 605, 1, 0, 0, 0, 604, 570, 1, 0, 0, 0, 604, 586, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 605, 81, 1, 0, 0, 0, 606, 607, 5, 17, 0, 0, 607, 610, 5, 48, 0, 0, 608, 610, 5, 117, 0, 0, 609, 606, 1, 0, 0, 0, 609, 608, 1, 0, 0, 0, 610, 83, 1, 0, 0, 0, 611, 612, 5, 63, 0, 0, 612, 621, 3, 114, 57, 0, 613, 614, 5, 97, 0, 0, 614, 615, 5, 131, 0, 0, 615, 616, 3, 114, 57, 0, 616, 617, 5, 150, 0, 0, 617, 621, 1, 0, 0, 0, 618, 619, 5, 97, 0, 0, 619, 621, 3, 114, 57, 0, 620, 611, 1, 0, 0, 0, 620, 613, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 621, 85, 1, 0, 0, 0, 622, 623, 5, 78, 0, 0, 623, 626, 3, 92, 46, 0, 624, 625, 5, 62, 0, 0, 625, 627, 3, 92, 46, 0, 626, 624, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 87, 1, 0, 0, 0, 628, 633, 3, 90, 45, 0, 629, 630, 5, 117, 0, 0, 630, 632, 3, 90, 45, 0, 631, 629, 1, 0, 0, 0, 632, 635, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 89, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 638, 3, 116, 58, 0, 637, 639, 7, 7, 0, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 642, 1, 0, 0, 0, 640, 641, 5, 61, 0, 0, 641, 643, 7, 8, 0, 0, 642, 640, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 645, 5, 16, 0, 0, 645, 647, 5, 111, 0, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 91, 1, 0, 0, 0, 648, 655, 3, 160, 80, 0, 649, 652, 3, 144, 72, 0, 650, 651, 5, 152, 0, 0, 651, 653, 3, 144, 72, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 655, 1, 0, 0, 0, 654, 648, 1, 0, 0, 0, 654, 649, 1, 0, 0, 0, 655, 93, 1, 0, 0, 0, 656, 661, 3, 96, 48, 0, 657, 658, 5, 117, 0, 0, 658, 660, 3, 96, 48, 0, 659, 657, 1, 0, 0, 0, 660, 663, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 95, 1, 0, 0, 0, 663, 661, 1, 0, 0, 0, 664, 665, 3, 156, 78, 0, 665, 666, 5, 123, 0, 0, 666, 667, 3, 146, 73, 0, 667, 97, 1, 0, 0, 0, 668, 670, 3, 100, 50, 0, 669, 668, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 1, 0, 0, 0, 671, 673, 3, 102, 51, 0, 672, 671, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 675, 1, 0, 0, 0, 674, 676, 3, 104, 52, 0, 675, 674, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 99, 1, 0, 0, 0, 677, 678, 5, 68, 0, 0, 678, 679, 5, 11, 0, 0, 679, 680, 3, 114, 57, 0, 680, 101, 1, 0, 0, 0, 681, 682, 5, 65, 0, 0, 682, 683, 5, 11, 0, 0, 683, 684, 3, 88, 44, 0, 684, 103, 1, 0, 0, 0, 685, 686, 7, 9, 0, 0, 686, 687, 3, 106, 53, 0, 687, 105, 1, 0, 0, 0, 688, 695, 3, 108, 54, 0, 689, 690, 5, 9, 0, 0, 690, 691, 3, 108, 54, 0, 691, 692, 5, 2, 0, 0, 692, 693, 3, 108, 54, 0, 693, 695, 1, 0, 0, 0, 694, 688, 1, 0, 0, 0, 694, 689, 1, 0, 0, 0, 695, 107, 1, 0, 0, 0, 696, 697, 5, 19, 0, 0, 697, 709, 5, 76, 0, 0, 698, 699, 5, 95, 0, 0, 699, 709, 5, 69, 0, 0, 700, 701, 5, 95, 0, 0, 701, 709, 5, 32, 0, 0, 702, 703, 3, 144, 72, 0, 703, 704, 5, 69, 0, 0, 704, 709, 1, 0, 0, 0, 705, 706, 3, 144, 72, 0, 706, 707, 5, 32, 0, 0, 707, 709, 1, 0, 0, 0, 708, 696, 1, 0, 0, 0, 708, 698, 1, 0, 0, 0, 708, 700, 1, 0, 0, 0, 708, 702, 1, 0, 0, 0, 708, 705, 1, 0, 0, 0, 709, 109, 1, 0, 0, 0, 710, 711, 3, 116, 58, 0, 711, 712, 5, 0, 0, 1, 712, 111, 1, 0, 0, 0, 713, 770, 3, 156, 78, 0, 714, 715, 3, 156, 78, 0, 715, 716, 5, 131, 0, 0, 716, 717, 3, 156, 78, 0, 717, 724, 3, 112, 56, 0, 718, 719, 5, 117, 0, 0, 719, 720, 3, 156, 78, 0, 720, 721, 3, 112, 56, 0, 721, 723, 1, 0, 0, 0, 722, 718, 1, 0, 0, 0, 723, 726, 1, 0, 0, 0, 724, 722, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 728, 1, 0, 0, 0, 726, 724, 1, 0, 0, 0, 727, 729, 5, 117, 0, 0, 728, 727, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 5, 150, 0, 0, 731, 770, 1, 0, 0, 0, 732, 733, 3, 156, 78, 0, 733, 734, 5, 131, 0, 0, 734, 739, 3, 158, 79, 0, 735, 736, 5, 117, 0, 0, 736, 738, 3, 158, 79, 0, 737, 735, 1, 0, 0, 0, 738, 741, 1, 0, 0, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 744, 5, 117, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 150, 0, 0, 746, 770, 1, 0, 0, 0, 747, 748, 3, 156, 78, 0, 748, 749, 5, 131, 0, 0, 749, 754, 3, 112, 56, 0, 750, 751, 5, 117, 0, 0, 751, 753, 3, 112, 56, 0, 752, 750, 1, 0, 0, 0, 753, 756, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 758, 1, 0, 0, 0, 756, 754, 1, 0, 0, 0, 757, 759, 5, 117, 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 761, 5, 150, 0, 0, 761, 770, 1, 0, 0, 0, 762, 763, 3, 156, 78, 0, 763, 765, 5, 131, 0, 0, 764, 766, 3, 114, 57, 0, 765, 764, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 5, 150, 0, 0, 768, 770, 1, 0, 0, 0, 769, 713, 1, 0, 0, 0, 769, 714, 1, 0, 0, 0, 769, 732, 1, 0, 0, 0, 769, 747, 1, 0, 0, 0, 769, 762, 1, 0, 0, 0, 770, 113, 1, 0, 0, 0, 771, 776, 3, 116, 58, 0, 772, 773, 5, 117, 0, 0, 773, 775, 3, 116, 58, 0, 774, 772, 1, 0, 0, 0, 775, 778, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 780, 1, 0, 0, 0, 778, 776, 1, 0, 0, 0, 779, 781, 5, 117, 0, 0, 780, 779, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 115, 1, 0, 0, 0, 782, 783, 6, 58, -1, 0, 783, 785, 5, 12, 0, 0, 784, 786, 3, 116, 58, 0, 785, 784, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 792, 1, 0, 0, 0, 787, 788, 5, 99, 0, 0, 788, 789, 3, 116, 58, 0, 789, 790, 5, 84, 0, 0, 790, 791, 3, 116, 58, 0, 791, 793, 1, 0, 0, 0, 792, 787, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 798, 1, 0, 0, 0, 796, 797, 5, 25, 0, 0, 797, 799, 3, 116, 58, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 5, 26, 0, 0, 801, 933, 1, 0, 0, 0, 802, 803, 5, 13, 0, 0, 803, 804, 5, 131, 0, 0, 804, 805, 3, 116, 58, 0, 805, 806, 5, 6, 0, 0, 806, 807, 3, 112, 56, 0, 807, 808, 5, 150, 0, 0, 808, 933, 1, 0, 0, 0, 809, 810, 5, 20, 0, 0, 810, 933, 5, 111, 0, 0, 811, 812, 5, 46, 0, 0, 812, 813, 3, 116, 58, 0, 813, 814, 3, 148, 74, 0, 814, 933, 1, 0, 0, 0, 815, 816, 5, 83, 0, 0, 816, 817, 5, 131, 0, 0, 817, 818, 3, 116, 58, 0, 818, 819, 5, 34, 0, 0, 819, 822, 3, 116, 58, 0, 820, 821, 5, 33, 0, 0, 821, 823, 3, 116, 58, 0, 822, 820, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 825, 5, 150, 0, 0, 825, 933, 1, 0, 0, 0, 826, 827, 5, 87, 0, 0, 827, 933, 5, 111, 0, 0, 828, 829, 5, 92, 0, 0, 829, 830, 5, 131, 0, 0, 830, 831, 7, 10, 0, 0, 831, 832, 3, 162, 81, 0, 832, 833, 5, 34, 0, 0, 833, 834, 3, 116, 58, 0, 834, 835, 5, 150, 0, 0, 835, 933, 1, 0, 0, 0, 836, 837, 3, 156, 78, 0, 837, 839, 5, 131, 0, 0, 838, 840, 3, 114, 57, 0, 839, 838, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 5, 150, 0, 0, 842, 851, 1, 0, 0, 0, 843, 845, 5, 131, 0, 0, 844, 846, 5, 24, 0, 0, 845, 844, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 848, 1, 0, 0, 0, 847, 849, 3, 114, 57, 0, 848, 847, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 852, 5, 150, 0, 0, 851, 843, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 5, 67, 0, 0, 854, 855, 5, 131, 0, 0, 855, 856, 3, 98, 49, 0, 856, 857, 5, 150, 0, 0, 857, 933, 1, 0, 0, 0, 858, 859, 3, 156, 78, 0, 859, 861, 5, 131, 0, 0, 860, 862, 3, 114, 57, 0, 861, 860, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 5, 150, 0, 0, 864, 873, 1, 0, 0, 0, 865, 867, 5, 131, 0, 0, 866, 868, 5, 24, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 871, 3, 114, 57, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 5, 150, 0, 0, 873, 865, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 67, 0, 0, 876, 877, 3, 156, 78, 0, 877, 933, 1, 0, 0, 0, 878, 884, 3, 156, 78, 0, 879, 881, 5, 131, 0, 0, 880, 882, 3, 114, 57, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 885, 5, 150, 0, 0, 884, 879, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 888, 5, 131, 0, 0, 887, 889, 5, 24, 0, 0, 888, 887, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 891, 1, 0, 0, 0, 890, 892, 3, 114, 57, 0, 891, 890, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 5, 150, 0, 0, 894, 933, 1, 0, 0, 0, 895, 933, 3, 120, 60, 0, 896, 933, 3, 164, 82, 0, 897, 933, 3, 146, 73, 0, 898, 899, 5, 119, 0, 0, 899, 933, 3, 116, 58, 20, 900, 901, 5, 59, 0, 0, 901, 933, 3, 116, 58, 14, 902, 903, 3, 136, 68, 0, 903, 904, 5, 121, 0, 0, 904, 906, 1, 0, 0, 0, 905, 902, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 933, 5, 113, 0, 0, 908, 909, 5, 131, 0, 0, 909, 910, 3, 44, 22, 0, 910, 911, 5, 150, 0, 0, 911, 933, 1, 0, 0, 0, 912, 913, 5, 131, 0, 0, 913, 914, 3, 116, 58, 0, 914, 915, 5, 150, 0, 0, 915, 933, 1, 0, 0, 0, 916, 917, 5, 131, 0, 0, 917, 918, 3, 114, 57, 0, 918, 919, 5, 150, 0, 0, 919, 933, 1, 0, 0, 0, 920, 922, 5, 130, 0, 0, 921, 923, 3, 114, 57, 0, 922, 921, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 933, 5, 149, 0, 0, 925, 927, 5, 129, 0, 0, 926, 928, 3, 40, 20, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 933, 5, 148, 0, 0, 930, 933, 3, 118, 59, 0, 931, 933, 3, 128, 64, 0, 932, 782, 1, 0, 0, 0, 932, 802, 1, 0, 0, 0, 932, 809, 1, 0, 0, 0, 932, 811, 1, 0, 0, 0, 932, 815, 1, 0, 0, 0, 932, 826, 1, 0, 0, 0, 932, 828, 1, 0, 0, 0, 932, 836, 1, 0, 0, 0, 932, 858, 1, 0, 0, 0, 932, 878, 1, 0, 0, 0, 932, 895, 1, 0, 0, 0, 932, 896, 1, 0, 0, 0, 932, 897, 1, 0, 0, 0, 932, 898, 1, 0, 0, 0, 932, 900, 1, 0, 0, 0, 932, 905, 1, 0, 0, 0, 932, 908, 1, 0, 0, 0, 932, 912, 1, 0, 0, 0, 932, 916, 1, 0, 0, 0, 932, 920, 1, 0, 0, 0, 932, 925, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 932, 931, 1, 0, 0, 0, 933, 1044, 1, 0, 0, 0, 934, 938, 10, 19, 0, 0, 935, 939, 5, 113, 0, 0, 936, 939, 5, 152, 0, 0, 937, 939, 5, 139, 0, 0, 938, 935, 1, 0, 0, 0, 938, 936, 1, 0, 0, 0, 938, 937, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 1043, 3, 116, 58, 20, 941, 945, 10, 18, 0, 0, 942, 946, 5, 140, 0, 0, 943, 946, 5, 119, 0, 0, 944, 946, 5, 118, 0, 0, 945, 942, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 945, 944, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 1043, 3, 116, 58, 19, 948, 973, 10, 17, 0, 0, 949, 974, 5, 122, 0, 0, 950, 974, 5, 123, 0, 0, 951, 974, 5, 134, 0, 0, 952, 974, 5, 132, 0, 0, 953, 974, 5, 133, 0, 0, 954, 974, 5, 124, 0, 0, 955, 974, 5, 125, 0, 0, 956, 958, 5, 59, 0, 0, 957, 956, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 961, 5, 43, 0, 0, 960, 962, 5, 15, 0, 0, 961, 960, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 974, 1, 0, 0, 0, 963, 965, 5, 59, 0, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 974, 7, 11, 0, 0, 967, 974, 5, 146, 0, 0, 968, 974, 5, 147, 0, 0, 969, 974, 5, 136, 0, 0, 970, 974, 5, 127, 0, 0, 971, 974, 5, 128, 0, 0, 972, 974, 5, 135, 0, 0, 973, 949, 1, 0, 0, 0, 973, 950, 1, 0, 0, 0, 973, 951, 1, 0, 0, 0, 973, 952, 1, 0, 0, 0, 973, 953, 1, 0, 0, 0, 973, 954, 1, 0, 0, 0, 973, 955, 1, 0, 0, 0, 973, 957, 1, 0, 0, 0, 973, 964, 1, 0, 0, 0, 973, 967, 1, 0, 0, 0, 973, 968, 1, 0, 0, 0, 973, 969, 1, 0, 0, 0, 973, 970, 1, 0, 0, 0, 973, 971, 1, 0, 0, 0, 973, 972, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 1043, 3, 116, 58, 18, 976, 977, 10, 15, 0, 0, 977, 978, 5, 138, 0, 0, 978, 1043, 3, 116, 58, 16, 979, 980, 10, 13, 0, 0, 980, 981, 5, 2, 0, 0, 981, 1043, 3, 116, 58, 14, 982, 983, 10, 12, 0, 0, 983, 984, 5, 64, 0, 0, 984, 1043, 3, 116, 58, 13, 985, 987, 10, 11, 0, 0, 986, 988, 5, 59, 0, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 5, 9, 0, 0, 990, 991, 3, 116, 58, 0, 991, 992, 5, 2, 0, 0, 992, 993, 3, 116, 58, 12, 993, 1043, 1, 0, 0, 0, 994, 995, 10, 10, 0, 0, 995, 996, 5, 141, 0, 0, 996, 997, 3, 116, 58, 0, 997, 998, 5, 116, 0, 0, 998, 999, 3, 116, 58, 10, 999, 1043, 1, 0, 0, 0, 1000, 1001, 10, 30, 0, 0, 1001, 1003, 5, 131, 0, 0, 1002, 1004, 3, 114, 57, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1043, 5, 150, 0, 0, 1006, 1007, 10, 26, 0, 0, 1007, 1008, 5, 130, 0, 0, 1008, 1009, 3, 116, 58, 0, 1009, 1010, 5, 149, 0, 0, 1010, 1043, 1, 0, 0, 0, 1011, 1012, 10, 25, 0, 0, 1012, 1013, 5, 121, 0, 0, 1013, 1043, 5, 109, 0, 0, 1014, 1015, 10, 24, 0, 0, 1015, 1016, 5, 121, 0, 0, 1016, 1043, 3, 156, 78, 0, 1017, 1018, 10, 23, 0, 0, 1018, 1019, 5, 137, 0, 0, 1019, 1020, 5, 130, 0, 0, 1020, 1021, 3, 116, 58, 0, 1021, 1022, 5, 149, 0, 0, 1022, 1043, 1, 0, 0, 0, 1023, 1024, 10, 22, 0, 0, 1024, 1025, 5, 137, 0, 0, 1025, 1043, 5, 109, 0, 0, 1026, 1027, 10, 21, 0, 0, 1027, 1028, 5, 137, 0, 0, 1028, 1043, 3, 156, 78, 0, 1029, 1030, 10, 16, 0, 0, 1030, 1032, 5, 47, 0, 0, 1031, 1033, 5, 59, 0, 0, 1032, 1031, 1, 0, 0, 0, 1032, 1033, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1043, 5, 60, 0, 0, 1035, 1040, 10, 9, 0, 0, 1036, 1037, 5, 6, 0, 0, 1037, 1041, 3, 156, 78, 0, 1038, 1039, 5, 6, 0, 0, 1039, 1041, 5, 111, 0, 0, 1040, 1036, 1, 0, 0, 0, 1040, 1038, 1, 0, 0, 0, 1041, 1043, 1, 0, 0, 0, 1042, 934, 1, 0, 0, 0, 1042, 941, 1, 0, 0, 0, 1042, 948, 1, 0, 0, 0, 1042, 976, 1, 0, 0, 0, 1042, 979, 1, 0, 0, 0, 1042, 982, 1, 0, 0, 0, 1042, 985, 1, 0, 0, 0, 1042, 994, 1, 0, 0, 0, 1042, 1000, 1, 0, 0, 0, 1042, 1006, 1, 0, 0, 0, 1042, 1011, 1, 0, 0, 0, 1042, 1014, 1, 0, 0, 0, 1042, 1017, 1, 0, 0, 0, 1042, 1023, 1, 0, 0, 0, 1042, 1026, 1, 0, 0, 0, 1042, 1029, 1, 0, 0, 0, 1042, 1035, 1, 0, 0, 0, 1043, 1046, 1, 0, 0, 0, 1044, 1042, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 117, 1, 0, 0, 0, 1046, 1044, 1, 0, 0, 0, 1047, 1048, 5, 131, 0, 0, 1048, 1053, 3, 156, 78, 0, 1049, 1050, 5, 117, 0, 0, 1050, 1052, 3, 156, 78, 0, 1051, 1049, 1, 0, 0, 0, 1052, 1055, 1, 0, 0, 0, 1053, 1051, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1057, 1, 0, 0, 0, 1055, 1053, 1, 0, 0, 0, 1056, 1058, 5, 117, 0, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1060, 5, 150, 0, 0, 1060, 1075, 1, 0, 0, 0, 1061, 1066, 3, 156, 78, 0, 1062, 1063, 5, 117, 0, 0, 1063, 1065, 3, 156, 78, 0, 1064, 1062, 1, 0, 0, 0, 1065, 1068, 1, 0, 0, 0, 1066, 1064, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1070, 1, 0, 0, 0, 1068, 1066, 1, 0, 0, 0, 1069, 1071, 5, 117, 0, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1075, 1, 0, 0, 0, 1072, 1073, 5, 131, 0, 0, 1073, 1075, 5, 150, 0, 0, 1074, 1047, 1, 0, 0, 0, 1074, 1061, 1, 0, 0, 0, 1074, 1072, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1079, 5, 112, 0, 0, 1077, 1080, 3, 36, 18, 0, 1078, 1080, 3, 116, 58, 0, 1079, 1077, 1, 0, 0, 0, 1079, 1078, 1, 0, 0, 0, 1080, 119, 1, 0, 0, 0, 1081, 1082, 5, 133, 0, 0, 1082, 1086, 3, 156, 78, 0, 1083, 1085, 3, 122, 61, 0, 1084, 1083, 1, 0, 0, 0, 1085, 1088, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1089, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1089, 1090, 5, 152, 0, 0, 1090, 1091, 5, 125, 0, 0, 1091, 1114, 1, 0, 0, 0, 1092, 1093, 5, 133, 0, 0, 1093, 1097, 3, 156, 78, 0, 1094, 1096, 3, 122, 61, 0, 1095, 1094, 1, 0, 0, 0, 1096, 1099, 1, 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1100, 1, 0, 0, 0, 1099, 1097, 1, 0, 0, 0, 1100, 1106, 5, 125, 0, 0, 1101, 1107, 3, 120, 60, 0, 1102, 1103, 5, 129, 0, 0, 1103, 1104, 3, 116, 58, 0, 1104, 1105, 5, 148, 0, 0, 1105, 1107, 1, 0, 0, 0, 1106, 1101, 1, 0, 0, 0, 1106, 1102, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 5, 133, 0, 0, 1109, 1110, 5, 152, 0, 0, 1110, 1111, 3, 156, 78, 0, 1111, 1112, 5, 125, 0, 0, 1112, 1114, 1, 0, 0, 0, 1113, 1081, 1, 0, 0, 0, 1113, 1092, 1, 0, 0, 0, 1114, 121, 1, 0, 0, 0, 1115, 1116, 3, 156, 78, 0, 1116, 1117, 5, 123, 0, 0, 1117, 1118, 3, 162, 81, 0, 1118, 1127, 1, 0, 0, 0, 1119, 1120, 3, 156, 78, 0, 1120, 1121, 5, 123, 0, 0, 1121, 1122, 5, 129, 0, 0, 1122, 1123, 3, 116, 58, 0, 1123, 1124, 5, 148, 0, 0, 1124, 1127, 1, 0, 0, 0, 1125, 1127, 3, 156, 78, 0, 1126, 1115, 1, 0, 0, 0, 1126, 1119, 1, 0, 0, 0, 1126, 1125, 1, 0, 0, 0, 1127, 123, 1, 0, 0, 0, 1128, 1133, 3, 126, 63, 0, 1129, 1130, 5, 117, 0, 0, 1130, 1132, 3, 126, 63, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1135, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1137, 1, 0, 0, 0, 1135, 1133, 1, 0, 0, 0, 1136, 1138, 5, 117, 0, 0, 1137, 1136, 1, 0, 0, 0, 1137, 1138, 1, 0, 0, 0, 1138, 125, 1, 0, 0, 0, 1139, 1140, 3, 156, 78, 0, 1140, 1141, 5, 6, 0, 0, 1141, 1142, 5, 131, 0, 0, 1142, 1143, 3, 44, 22, 0, 1143, 1144, 5, 150, 0, 0, 1144, 1150, 1, 0, 0, 0, 1145, 1146, 3, 116, 58, 0, 1146, 1147, 5, 6, 0, 0, 1147, 1148, 3, 156, 78, 0, 1148, 1150, 1, 0, 0, 0, 1149, 1139, 1, 0, 0, 0, 1149, 1145, 1, 0, 0, 0, 1150, 127, 1, 0, 0, 0, 1151, 1159, 3, 160, 80, 0, 1152, 1153, 3, 136, 68, 0, 1153, 1154, 5, 121, 0, 0, 1154, 1156, 1, 0, 0, 0, 1155, 1152, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1159, 3, 130, 65, 0, 1158, 1151, 1, 0, 0, 0, 1158, 1155, 1, 0, 0, 0, 1159, 129, 1, 0, 0, 0, 1160, 1165, 3, 156, 78, 0, 1161, 1162, 5, 121, 0, 0, 1162, 1164, 3, 156, 78, 0, 1163, 1161, 1, 0, 0, 0, 1164, 1167, 1, 0, 0, 0, 1165, 1163, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 131, 1, 0, 0, 0, 1167, 1165, 1, 0, 0, 0, 1168, 1169, 6, 66, -1, 0, 1169, 1178, 3, 136, 68, 0, 1170, 1178, 3, 134, 67, 0, 1171, 1172, 5, 131, 0, 0, 1172, 1173, 3, 44, 22, 0, 1173, 1174, 5, 150, 0, 0, 1174, 1178, 1, 0, 0, 0, 1175, 1178, 3, 120, 60, 0, 1176, 1178, 3, 160, 80, 0, 1177, 1168, 1, 0, 0, 0, 1177, 1170, 1, 0, 0, 0, 1177, 1171, 1, 0, 0, 0, 1177, 1175, 1, 0, 0, 0, 1177, 1176, 1, 0, 0, 0, 1178, 1187, 1, 0, 0, 0, 1179, 1183, 10, 3, 0, 0, 1180, 1184, 3, 154, 77, 0, 1181, 1182, 5, 6, 0, 0, 1182, 1184, 3, 156, 78, 0, 1183, 1180, 1, 0, 0, 0, 1183, 1181, 1, 0, 0, 0, 1184, 1186, 1, 0, 0, 0, 1185, 1179, 1, 0, 0, 0, 1186, 1189, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 133, 1, 0, 0, 0, 1189, 1187, 1, 0, 0, 0, 1190, 1191, 3, 156, 78, 0, 1191, 1193, 5, 131, 0, 0, 1192, 1194, 3, 138, 69, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 5, 150, 0, 0, 1196, 135, 1, 0, 0, 0, 1197, 1198, 3, 140, 70, 0, 1198, 1199, 5, 121, 0, 0, 1199, 1201, 1, 0, 0, 0, 1200, 1197, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 3, 156, 78, 0, 1203, 137, 1, 0, 0, 0, 1204, 1209, 3, 116, 58, 0, 1205, 1206, 5, 117, 0, 0, 1206, 1208, 3, 116, 58, 0, 1207, 1205, 1, 0, 0, 0, 1208, 1211, 1, 0, 0, 0, 1209, 1207, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1213, 1, 0, 0, 0, 1211, 1209, 1, 0, 0, 0, 1212, 1214, 5, 117, 0, 0, 1213, 1212, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 139, 1, 0, 0, 0, 1215, 1216, 3, 156, 78, 0, 1216, 141, 1, 0, 0, 0, 1217, 1226, 5, 107, 0, 0, 1218, 1219, 5, 121, 0, 0, 1219, 1226, 7, 12, 0, 0, 1220, 1221, 5, 109, 0, 0, 1221, 1223, 5, 121, 0, 0, 1222, 1224, 7, 12, 0, 0, 1223, 1222, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1226, 1, 0, 0, 0, 1225, 1217, 1, 0, 0, 0, 1225, 1218, 1, 0, 0, 0, 1225, 1220, 1, 0, 0, 0, 1226, 143, 1, 0, 0, 0, 1227, 1229, 7, 13, 0, 0, 1228, 1227, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1236, 1, 0, 0, 0, 1230, 1237, 3, 142, 71, 0, 1231, 1237, 5, 108, 0, 0, 1232, 1237, 5, 109, 0, 0, 1233, 1237, 5, 110, 0, 0, 1234, 1237, 5, 44, 0, 0, 1235, 1237, 5, 58, 0, 0, 1236, 1230, 1, 0, 0, 0, 1236, 1231, 1, 0, 0, 0, 1236, 1232, 1, 0, 0, 0, 1236, 1233, 1, 0, 0, 0, 1236, 1234, 1, 0, 0, 0, 1236, 1235, 1, 0, 0, 0, 1237, 145, 1, 0, 0, 0, 1238, 1242, 3, 144, 72, 0, 1239, 1242, 5, 111, 0, 0, 1240, 1242, 5, 60, 0, 0, 1241, 1238, 1, 0, 0, 0, 1241, 1239, 1, 0, 0, 0, 1241, 1240, 1, 0, 0, 0, 1242, 147, 1, 0, 0, 0, 1243, 1244, 7, 14, 0, 0, 1244, 149, 1, 0, 0, 0, 1245, 1246, 7, 15, 0, 0, 1246, 151, 1, 0, 0, 0, 1247, 1248, 7, 16, 0, 0, 1248, 153, 1, 0, 0, 0, 1249, 1252, 5, 106, 0, 0, 1250, 1252, 3, 152, 76, 0, 1251, 1249, 1, 0, 0, 0, 1251, 1250, 1, 0, 0, 0, 1252, 155, 1, 0, 0, 0, 1253, 1257, 5, 106, 0, 0, 1254, 1257, 3, 148, 74, 0, 1255, 1257, 3, 150, 75, 0, 1256, 1253, 1, 0, 0, 0, 1256, 1254, 1, 0, 0, 0, 1256, 1255, 1, 0, 0, 0, 1257, 157, 1, 0, 0, 0, 1258, 1259, 3, 162, 81, 0, 1259, 1260, 5, 123, 0, 0, 1260, 1261, 3, 144, 72, 0, 1261, 159, 1, 0, 0, 0, 1262, 1263, 5, 129, 0, 0, 1263, 1264, 3, 116, 58, 0, 1264, 1265, 5, 148, 0, 0, 1265, 161, 1, 0, 0, 0, 1266, 1269, 5, 111, 0, 0, 1267, 1269, 3, 164, 82, 0, 1268, 1266, 1, 0, 0, 0, 1268, 1267, 1, 0, 0, 0, 1269, 163, 1, 0, 0, 0, 1270, 1274, 5, 143, 0, 0, 1271, 1273, 3, 166, 83, 0, 1272, 1271, 1, 0, 0, 0, 1273, 1276, 1, 0, 0, 0, 1274, 1272, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1277, 1, 0, 0, 0, 1276, 1274, 1, 0, 0, 0, 1277, 1278, 5, 145, 0, 0, 1278, 165, 1, 0, 0, 0, 1279, 1280, 5, 158, 0, 0, 1280, 1281, 3, 116, 58, 0, 1281, 1282, 5, 148, 0, 0, 1282, 1285, 1, 0, 0, 0, 1283, 1285, 5, 157, 0, 0, 1284, 1279, 1, 0, 0, 0, 1284, 1283, 1, 0, 0, 0, 1285, 167, 1, 0, 0, 0, 1286, 1290, 5, 144, 0, 0, 1287, 1289, 3, 170, 85, 0, 1288, 1287, 1, 0, 0, 0, 1289, 1292, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1293, 1, 0, 0, 0, 1292, 1290, 1, 0, 0, 0, 1293, 1294, 5, 0, 0, 1, 1294, 169, 1, 0, 0, 0, 1295, 1296, 5, 160, 0, 0, 1296, 1297, 3, 116, 58, 0, 1297, 1298, 5, 148, 0, 0, 1298, 1301, 1, 0, 0, 0, 1299, 1301, 5, 159, 0, 0, 1300, 1295, 1, 0, 0, 0, 1300, 1299, 1, 0, 0, 0, 1301, 171, 1, 0, 0, 0, 167, 175, 182, 191, 198, 202, 216, 220, 223, 227, 230, 237, 241, 250, 255, 264, 272, 279, 283, 289, 294, 302, 309, 315, 327, 335, 349, 353, 358, 368, 377, 380, 384, 387, 391, 394, 397, 400, 403, 407, 411, 414, 417, 420, 424, 427, 436, 442, 463, 480, 497, 503, 509, 520, 522, 533, 536, 542, 550, 556, 558, 562, 567, 570, 573, 577, 581, 584, 586, 589, 593, 597, 600, 602, 604, 609, 620, 626, 633, 638, 642, 646, 652, 654, 661, 669, 672, 675, 694, 708, 724, 728, 739, 743, 754, 758, 765, 769, 776, 780, 785, 794, 798, 822, 839, 845, 848, 851, 861, 867, 870, 873, 881, 884, 888, 891, 905, 922, 927, 932, 938, 945, 957, 961, 964, 973, 987, 1003, 1032, 1040, 1042, 1044, 1053, 1057, 1066, 1070, 1074, 1079, 1086, 1097, 1106, 1113, 1126, 1133, 1137, 1149, 1155, 1158, 1165, 1177, 1183, 1187, 1193, 1200, 1209, 1213, 1223, 1225, 1228, 1236, 1241, 1251, 1256, 1268, 1274, 1284, 1290, 1300] \ No newline at end of file +[4, 1, 160, 1302, 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, 1, 0, 5, 0, 174, 8, 0, 10, 0, 12, 0, 177, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 183, 8, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 192, 8, 3, 1, 4, 1, 4, 1, 4, 5, 4, 197, 8, 4, 10, 4, 12, 4, 200, 9, 4, 1, 4, 3, 4, 203, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 217, 8, 5, 1, 6, 1, 6, 3, 6, 221, 8, 6, 1, 6, 3, 6, 224, 8, 6, 1, 7, 1, 7, 3, 7, 228, 8, 7, 1, 7, 3, 7, 231, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 238, 8, 8, 1, 8, 1, 8, 3, 8, 242, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 249, 8, 9, 10, 9, 12, 9, 252, 9, 9, 1, 9, 1, 9, 3, 9, 256, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 265, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 273, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 280, 8, 12, 1, 12, 1, 12, 3, 12, 284, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 290, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 295, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 303, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 310, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 316, 8, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 328, 8, 16, 1, 17, 1, 17, 1, 18, 1, 18, 5, 18, 334, 8, 18, 10, 18, 12, 18, 337, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 5, 20, 348, 8, 20, 10, 20, 12, 20, 351, 9, 20, 1, 20, 3, 20, 354, 8, 20, 1, 21, 1, 21, 1, 21, 3, 21, 359, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 367, 8, 22, 10, 22, 12, 22, 370, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 378, 8, 23, 1, 24, 3, 24, 381, 8, 24, 1, 24, 1, 24, 3, 24, 385, 8, 24, 1, 24, 3, 24, 388, 8, 24, 1, 24, 1, 24, 3, 24, 392, 8, 24, 1, 24, 3, 24, 395, 8, 24, 1, 24, 3, 24, 398, 8, 24, 1, 24, 3, 24, 401, 8, 24, 1, 24, 3, 24, 404, 8, 24, 1, 24, 1, 24, 3, 24, 408, 8, 24, 1, 24, 1, 24, 3, 24, 412, 8, 24, 1, 24, 3, 24, 415, 8, 24, 1, 24, 3, 24, 418, 8, 24, 1, 24, 3, 24, 421, 8, 24, 1, 24, 1, 24, 3, 24, 425, 8, 24, 1, 24, 3, 24, 428, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 437, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 443, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 462, 8, 29, 10, 29, 12, 29, 465, 9, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 481, 8, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 498, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 504, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 510, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 521, 8, 36, 3, 36, 523, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 534, 8, 39, 1, 39, 3, 39, 537, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 543, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 551, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 557, 8, 39, 10, 39, 12, 39, 560, 9, 39, 1, 40, 3, 40, 563, 8, 40, 1, 40, 1, 40, 1, 40, 3, 40, 568, 8, 40, 1, 40, 3, 40, 571, 8, 40, 1, 40, 3, 40, 574, 8, 40, 1, 40, 1, 40, 3, 40, 578, 8, 40, 1, 40, 1, 40, 3, 40, 582, 8, 40, 1, 40, 3, 40, 585, 8, 40, 3, 40, 587, 8, 40, 1, 40, 3, 40, 590, 8, 40, 1, 40, 1, 40, 3, 40, 594, 8, 40, 1, 40, 1, 40, 3, 40, 598, 8, 40, 1, 40, 3, 40, 601, 8, 40, 3, 40, 603, 8, 40, 3, 40, 605, 8, 40, 1, 41, 1, 41, 1, 41, 3, 41, 610, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 621, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 627, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 632, 8, 44, 10, 44, 12, 44, 635, 9, 44, 1, 45, 1, 45, 3, 45, 639, 8, 45, 1, 45, 1, 45, 3, 45, 643, 8, 45, 1, 45, 1, 45, 3, 45, 647, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 653, 8, 46, 3, 46, 655, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 660, 8, 47, 10, 47, 12, 47, 663, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 3, 49, 670, 8, 49, 1, 49, 3, 49, 673, 8, 49, 1, 49, 3, 49, 676, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 695, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 709, 8, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 723, 8, 56, 10, 56, 12, 56, 726, 9, 56, 1, 56, 3, 56, 729, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 738, 8, 56, 10, 56, 12, 56, 741, 9, 56, 1, 56, 3, 56, 744, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 753, 8, 56, 10, 56, 12, 56, 756, 9, 56, 1, 56, 3, 56, 759, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 766, 8, 56, 1, 56, 1, 56, 3, 56, 770, 8, 56, 1, 57, 1, 57, 1, 57, 5, 57, 775, 8, 57, 10, 57, 12, 57, 778, 9, 57, 1, 57, 3, 57, 781, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 786, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 4, 58, 793, 8, 58, 11, 58, 12, 58, 794, 1, 58, 1, 58, 3, 58, 799, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 823, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 840, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 846, 8, 58, 1, 58, 3, 58, 849, 8, 58, 1, 58, 3, 58, 852, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 862, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 868, 8, 58, 1, 58, 3, 58, 871, 8, 58, 1, 58, 3, 58, 874, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 882, 8, 58, 1, 58, 3, 58, 885, 8, 58, 1, 58, 1, 58, 3, 58, 889, 8, 58, 1, 58, 3, 58, 892, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 906, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 923, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 928, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 934, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 940, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 947, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 959, 8, 58, 1, 58, 1, 58, 3, 58, 963, 8, 58, 1, 58, 3, 58, 966, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 975, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 989, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1005, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1034, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1042, 8, 58, 5, 58, 1044, 8, 58, 10, 58, 12, 58, 1047, 9, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1053, 8, 59, 10, 59, 12, 59, 1056, 9, 59, 1, 59, 3, 59, 1059, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1066, 8, 59, 10, 59, 12, 59, 1069, 9, 59, 1, 59, 3, 59, 1072, 8, 59, 1, 59, 1, 59, 3, 59, 1076, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1081, 8, 59, 1, 60, 1, 60, 1, 60, 5, 60, 1086, 8, 60, 10, 60, 12, 60, 1089, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1097, 8, 60, 10, 60, 12, 60, 1100, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1108, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1115, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1128, 8, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1133, 8, 62, 10, 62, 12, 62, 1136, 9, 62, 1, 62, 3, 62, 1139, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1151, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1157, 8, 64, 1, 64, 3, 64, 1160, 8, 64, 1, 65, 1, 65, 1, 65, 5, 65, 1165, 8, 65, 10, 65, 12, 65, 1168, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1179, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1185, 8, 66, 5, 66, 1187, 8, 66, 10, 66, 12, 66, 1190, 9, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1195, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1202, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 5, 69, 1209, 8, 69, 10, 69, 12, 69, 1212, 9, 69, 1, 69, 3, 69, 1215, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1225, 8, 71, 3, 71, 1227, 8, 71, 1, 72, 3, 72, 1230, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1238, 8, 72, 1, 73, 1, 73, 1, 73, 3, 73, 1243, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1253, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 1258, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 3, 81, 1268, 8, 81, 1, 82, 1, 82, 5, 82, 1272, 8, 82, 10, 82, 12, 82, 1275, 9, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1284, 8, 83, 1, 84, 1, 84, 5, 84, 1288, 8, 84, 10, 84, 12, 84, 1291, 9, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1300, 8, 85, 1, 85, 0, 3, 78, 116, 132, 86, 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, 0, 17, 2, 0, 31, 31, 36, 36, 2, 0, 18, 18, 75, 75, 2, 0, 45, 45, 52, 52, 3, 0, 1, 1, 4, 4, 8, 8, 4, 0, 1, 1, 3, 4, 8, 8, 81, 81, 2, 0, 52, 52, 74, 74, 2, 0, 1, 1, 4, 4, 2, 0, 7, 7, 22, 23, 2, 0, 30, 30, 50, 50, 2, 0, 72, 72, 77, 77, 3, 0, 10, 10, 51, 51, 91, 91, 2, 0, 42, 42, 54, 54, 1, 0, 108, 109, 2, 0, 119, 119, 140, 140, 7, 0, 21, 21, 39, 39, 56, 57, 71, 71, 79, 79, 98, 98, 104, 104, 17, 0, 1, 13, 15, 20, 22, 28, 30, 30, 32, 35, 37, 38, 40, 43, 45, 52, 54, 55, 59, 59, 61, 70, 72, 78, 80, 84, 86, 93, 95, 97, 99, 100, 102, 103, 4, 0, 20, 20, 30, 30, 40, 40, 49, 49, 1475, 0, 175, 1, 0, 0, 0, 2, 182, 1, 0, 0, 0, 4, 184, 1, 0, 0, 0, 6, 186, 1, 0, 0, 0, 8, 193, 1, 0, 0, 0, 10, 216, 1, 0, 0, 0, 12, 218, 1, 0, 0, 0, 14, 225, 1, 0, 0, 0, 16, 232, 1, 0, 0, 0, 18, 245, 1, 0, 0, 0, 20, 257, 1, 0, 0, 0, 22, 266, 1, 0, 0, 0, 24, 274, 1, 0, 0, 0, 26, 296, 1, 0, 0, 0, 28, 311, 1, 0, 0, 0, 30, 320, 1, 0, 0, 0, 32, 325, 1, 0, 0, 0, 34, 329, 1, 0, 0, 0, 36, 331, 1, 0, 0, 0, 38, 340, 1, 0, 0, 0, 40, 344, 1, 0, 0, 0, 42, 358, 1, 0, 0, 0, 44, 362, 1, 0, 0, 0, 46, 377, 1, 0, 0, 0, 48, 380, 1, 0, 0, 0, 50, 429, 1, 0, 0, 0, 52, 432, 1, 0, 0, 0, 54, 438, 1, 0, 0, 0, 56, 442, 1, 0, 0, 0, 58, 448, 1, 0, 0, 0, 60, 466, 1, 0, 0, 0, 62, 469, 1, 0, 0, 0, 64, 472, 1, 0, 0, 0, 66, 482, 1, 0, 0, 0, 68, 485, 1, 0, 0, 0, 70, 489, 1, 0, 0, 0, 72, 522, 1, 0, 0, 0, 74, 524, 1, 0, 0, 0, 76, 527, 1, 0, 0, 0, 78, 542, 1, 0, 0, 0, 80, 604, 1, 0, 0, 0, 82, 609, 1, 0, 0, 0, 84, 620, 1, 0, 0, 0, 86, 622, 1, 0, 0, 0, 88, 628, 1, 0, 0, 0, 90, 636, 1, 0, 0, 0, 92, 654, 1, 0, 0, 0, 94, 656, 1, 0, 0, 0, 96, 664, 1, 0, 0, 0, 98, 669, 1, 0, 0, 0, 100, 677, 1, 0, 0, 0, 102, 681, 1, 0, 0, 0, 104, 685, 1, 0, 0, 0, 106, 694, 1, 0, 0, 0, 108, 708, 1, 0, 0, 0, 110, 710, 1, 0, 0, 0, 112, 769, 1, 0, 0, 0, 114, 771, 1, 0, 0, 0, 116, 933, 1, 0, 0, 0, 118, 1075, 1, 0, 0, 0, 120, 1114, 1, 0, 0, 0, 122, 1127, 1, 0, 0, 0, 124, 1129, 1, 0, 0, 0, 126, 1150, 1, 0, 0, 0, 128, 1159, 1, 0, 0, 0, 130, 1161, 1, 0, 0, 0, 132, 1178, 1, 0, 0, 0, 134, 1191, 1, 0, 0, 0, 136, 1201, 1, 0, 0, 0, 138, 1205, 1, 0, 0, 0, 140, 1216, 1, 0, 0, 0, 142, 1226, 1, 0, 0, 0, 144, 1229, 1, 0, 0, 0, 146, 1242, 1, 0, 0, 0, 148, 1244, 1, 0, 0, 0, 150, 1246, 1, 0, 0, 0, 152, 1248, 1, 0, 0, 0, 154, 1252, 1, 0, 0, 0, 156, 1257, 1, 0, 0, 0, 158, 1259, 1, 0, 0, 0, 160, 1263, 1, 0, 0, 0, 162, 1267, 1, 0, 0, 0, 164, 1269, 1, 0, 0, 0, 166, 1283, 1, 0, 0, 0, 168, 1285, 1, 0, 0, 0, 170, 1299, 1, 0, 0, 0, 172, 174, 3, 2, 1, 0, 173, 172, 1, 0, 0, 0, 174, 177, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 175, 176, 1, 0, 0, 0, 176, 178, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 178, 179, 5, 0, 0, 1, 179, 1, 1, 0, 0, 0, 180, 183, 3, 6, 3, 0, 181, 183, 3, 10, 5, 0, 182, 180, 1, 0, 0, 0, 182, 181, 1, 0, 0, 0, 183, 3, 1, 0, 0, 0, 184, 185, 3, 116, 58, 0, 185, 5, 1, 0, 0, 0, 186, 187, 5, 53, 0, 0, 187, 191, 3, 156, 78, 0, 188, 189, 5, 116, 0, 0, 189, 190, 5, 123, 0, 0, 190, 192, 3, 4, 2, 0, 191, 188, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 7, 1, 0, 0, 0, 193, 198, 3, 156, 78, 0, 194, 195, 5, 117, 0, 0, 195, 197, 3, 156, 78, 0, 196, 194, 1, 0, 0, 0, 197, 200, 1, 0, 0, 0, 198, 196, 1, 0, 0, 0, 198, 199, 1, 0, 0, 0, 199, 202, 1, 0, 0, 0, 200, 198, 1, 0, 0, 0, 201, 203, 5, 117, 0, 0, 202, 201, 1, 0, 0, 0, 202, 203, 1, 0, 0, 0, 203, 9, 1, 0, 0, 0, 204, 217, 3, 12, 6, 0, 205, 217, 3, 14, 7, 0, 206, 217, 3, 18, 9, 0, 207, 217, 3, 20, 10, 0, 208, 217, 3, 22, 11, 0, 209, 217, 3, 26, 13, 0, 210, 217, 3, 24, 12, 0, 211, 217, 3, 28, 14, 0, 212, 217, 3, 30, 15, 0, 213, 217, 3, 36, 18, 0, 214, 217, 3, 32, 16, 0, 215, 217, 3, 34, 17, 0, 216, 204, 1, 0, 0, 0, 216, 205, 1, 0, 0, 0, 216, 206, 1, 0, 0, 0, 216, 207, 1, 0, 0, 0, 216, 208, 1, 0, 0, 0, 216, 209, 1, 0, 0, 0, 216, 210, 1, 0, 0, 0, 216, 211, 1, 0, 0, 0, 216, 212, 1, 0, 0, 0, 216, 213, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 216, 215, 1, 0, 0, 0, 217, 11, 1, 0, 0, 0, 218, 220, 5, 73, 0, 0, 219, 221, 3, 4, 2, 0, 220, 219, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 223, 1, 0, 0, 0, 222, 224, 5, 151, 0, 0, 223, 222, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 13, 1, 0, 0, 0, 225, 227, 5, 85, 0, 0, 226, 228, 3, 4, 2, 0, 227, 226, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 231, 5, 151, 0, 0, 230, 229, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 15, 1, 0, 0, 0, 232, 241, 5, 14, 0, 0, 233, 234, 5, 131, 0, 0, 234, 237, 3, 156, 78, 0, 235, 236, 5, 116, 0, 0, 236, 238, 3, 156, 78, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 5, 150, 0, 0, 240, 242, 1, 0, 0, 0, 241, 233, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 244, 3, 36, 18, 0, 244, 17, 1, 0, 0, 0, 245, 246, 5, 94, 0, 0, 246, 250, 3, 36, 18, 0, 247, 249, 3, 16, 8, 0, 248, 247, 1, 0, 0, 0, 249, 252, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 250, 251, 1, 0, 0, 0, 251, 255, 1, 0, 0, 0, 252, 250, 1, 0, 0, 0, 253, 254, 5, 29, 0, 0, 254, 256, 3, 36, 18, 0, 255, 253, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 19, 1, 0, 0, 0, 257, 258, 5, 41, 0, 0, 258, 259, 5, 131, 0, 0, 259, 260, 3, 4, 2, 0, 260, 261, 5, 150, 0, 0, 261, 264, 3, 10, 5, 0, 262, 263, 5, 25, 0, 0, 263, 265, 3, 10, 5, 0, 264, 262, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 21, 1, 0, 0, 0, 266, 267, 5, 101, 0, 0, 267, 268, 5, 131, 0, 0, 268, 269, 3, 4, 2, 0, 269, 270, 5, 150, 0, 0, 270, 272, 3, 10, 5, 0, 271, 273, 5, 151, 0, 0, 272, 271, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 23, 1, 0, 0, 0, 274, 275, 5, 33, 0, 0, 275, 279, 5, 131, 0, 0, 276, 280, 3, 6, 3, 0, 277, 280, 3, 30, 15, 0, 278, 280, 3, 4, 2, 0, 279, 276, 1, 0, 0, 0, 279, 277, 1, 0, 0, 0, 279, 278, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 281, 1, 0, 0, 0, 281, 283, 5, 151, 0, 0, 282, 284, 3, 4, 2, 0, 283, 282, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 289, 5, 151, 0, 0, 286, 290, 3, 6, 3, 0, 287, 290, 3, 30, 15, 0, 288, 290, 3, 4, 2, 0, 289, 286, 1, 0, 0, 0, 289, 287, 1, 0, 0, 0, 289, 288, 1, 0, 0, 0, 289, 290, 1, 0, 0, 0, 290, 291, 1, 0, 0, 0, 291, 292, 5, 150, 0, 0, 292, 294, 3, 10, 5, 0, 293, 295, 5, 151, 0, 0, 294, 293, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 25, 1, 0, 0, 0, 296, 297, 5, 33, 0, 0, 297, 298, 5, 131, 0, 0, 298, 299, 5, 53, 0, 0, 299, 302, 3, 156, 78, 0, 300, 301, 5, 117, 0, 0, 301, 303, 3, 156, 78, 0, 302, 300, 1, 0, 0, 0, 302, 303, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 305, 5, 43, 0, 0, 305, 306, 3, 4, 2, 0, 306, 307, 5, 150, 0, 0, 307, 309, 3, 10, 5, 0, 308, 310, 5, 151, 0, 0, 309, 308, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 27, 1, 0, 0, 0, 311, 312, 7, 0, 0, 0, 312, 313, 3, 156, 78, 0, 313, 315, 5, 131, 0, 0, 314, 316, 3, 8, 4, 0, 315, 314, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 5, 150, 0, 0, 318, 319, 3, 36, 18, 0, 319, 29, 1, 0, 0, 0, 320, 321, 3, 4, 2, 0, 321, 322, 5, 116, 0, 0, 322, 323, 5, 123, 0, 0, 323, 324, 3, 4, 2, 0, 324, 31, 1, 0, 0, 0, 325, 327, 3, 4, 2, 0, 326, 328, 5, 151, 0, 0, 327, 326, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 33, 1, 0, 0, 0, 329, 330, 5, 151, 0, 0, 330, 35, 1, 0, 0, 0, 331, 335, 5, 129, 0, 0, 332, 334, 3, 2, 1, 0, 333, 332, 1, 0, 0, 0, 334, 337, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 338, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 338, 339, 5, 148, 0, 0, 339, 37, 1, 0, 0, 0, 340, 341, 3, 4, 2, 0, 341, 342, 5, 116, 0, 0, 342, 343, 3, 4, 2, 0, 343, 39, 1, 0, 0, 0, 344, 349, 3, 38, 19, 0, 345, 346, 5, 117, 0, 0, 346, 348, 3, 38, 19, 0, 347, 345, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 353, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 354, 5, 117, 0, 0, 353, 352, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 41, 1, 0, 0, 0, 355, 359, 3, 44, 22, 0, 356, 359, 3, 48, 24, 0, 357, 359, 3, 120, 60, 0, 358, 355, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 358, 357, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 361, 5, 0, 0, 1, 361, 43, 1, 0, 0, 0, 362, 368, 3, 46, 23, 0, 363, 364, 5, 96, 0, 0, 364, 365, 5, 1, 0, 0, 365, 367, 3, 46, 23, 0, 366, 363, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 45, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 378, 3, 48, 24, 0, 372, 373, 5, 131, 0, 0, 373, 374, 3, 44, 22, 0, 374, 375, 5, 150, 0, 0, 375, 378, 1, 0, 0, 0, 376, 378, 3, 160, 80, 0, 377, 371, 1, 0, 0, 0, 377, 372, 1, 0, 0, 0, 377, 376, 1, 0, 0, 0, 378, 47, 1, 0, 0, 0, 379, 381, 3, 50, 25, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 384, 5, 80, 0, 0, 383, 385, 5, 24, 0, 0, 384, 383, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 387, 1, 0, 0, 0, 386, 388, 3, 52, 26, 0, 387, 386, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 391, 3, 114, 57, 0, 390, 392, 3, 54, 27, 0, 391, 390, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 1, 0, 0, 0, 393, 395, 3, 56, 28, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 397, 1, 0, 0, 0, 396, 398, 3, 60, 30, 0, 397, 396, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 400, 1, 0, 0, 0, 399, 401, 3, 62, 31, 0, 400, 399, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 403, 1, 0, 0, 0, 402, 404, 3, 64, 32, 0, 403, 402, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 406, 5, 103, 0, 0, 406, 408, 7, 1, 0, 0, 407, 405, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 410, 5, 103, 0, 0, 410, 412, 5, 90, 0, 0, 411, 409, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 1, 0, 0, 0, 413, 415, 3, 66, 33, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 417, 1, 0, 0, 0, 416, 418, 3, 58, 29, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 420, 1, 0, 0, 0, 419, 421, 3, 68, 34, 0, 420, 419, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 424, 1, 0, 0, 0, 422, 425, 3, 72, 36, 0, 423, 425, 3, 74, 37, 0, 424, 422, 1, 0, 0, 0, 424, 423, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 427, 1, 0, 0, 0, 426, 428, 3, 76, 38, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 49, 1, 0, 0, 0, 429, 430, 5, 103, 0, 0, 430, 431, 3, 124, 62, 0, 431, 51, 1, 0, 0, 0, 432, 433, 5, 89, 0, 0, 433, 436, 5, 109, 0, 0, 434, 435, 5, 103, 0, 0, 435, 437, 5, 86, 0, 0, 436, 434, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 53, 1, 0, 0, 0, 438, 439, 5, 34, 0, 0, 439, 440, 3, 78, 39, 0, 440, 55, 1, 0, 0, 0, 441, 443, 7, 2, 0, 0, 442, 441, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 5, 5, 0, 0, 445, 446, 5, 48, 0, 0, 446, 447, 3, 114, 57, 0, 447, 57, 1, 0, 0, 0, 448, 449, 5, 102, 0, 0, 449, 450, 3, 156, 78, 0, 450, 451, 5, 6, 0, 0, 451, 452, 5, 131, 0, 0, 452, 453, 3, 98, 49, 0, 453, 463, 5, 150, 0, 0, 454, 455, 5, 117, 0, 0, 455, 456, 3, 156, 78, 0, 456, 457, 5, 6, 0, 0, 457, 458, 5, 131, 0, 0, 458, 459, 3, 98, 49, 0, 459, 460, 5, 150, 0, 0, 460, 462, 1, 0, 0, 0, 461, 454, 1, 0, 0, 0, 462, 465, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 59, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 466, 467, 5, 70, 0, 0, 467, 468, 3, 116, 58, 0, 468, 61, 1, 0, 0, 0, 469, 470, 5, 100, 0, 0, 470, 471, 3, 116, 58, 0, 471, 63, 1, 0, 0, 0, 472, 473, 5, 37, 0, 0, 473, 480, 5, 11, 0, 0, 474, 475, 7, 1, 0, 0, 475, 476, 5, 131, 0, 0, 476, 477, 3, 114, 57, 0, 477, 478, 5, 150, 0, 0, 478, 481, 1, 0, 0, 0, 479, 481, 3, 114, 57, 0, 480, 474, 1, 0, 0, 0, 480, 479, 1, 0, 0, 0, 481, 65, 1, 0, 0, 0, 482, 483, 5, 38, 0, 0, 483, 484, 3, 116, 58, 0, 484, 67, 1, 0, 0, 0, 485, 486, 5, 65, 0, 0, 486, 487, 5, 11, 0, 0, 487, 488, 3, 88, 44, 0, 488, 69, 1, 0, 0, 0, 489, 490, 5, 65, 0, 0, 490, 491, 5, 11, 0, 0, 491, 492, 3, 114, 57, 0, 492, 71, 1, 0, 0, 0, 493, 494, 5, 55, 0, 0, 494, 497, 3, 116, 58, 0, 495, 496, 5, 117, 0, 0, 496, 498, 3, 116, 58, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 503, 1, 0, 0, 0, 499, 500, 5, 103, 0, 0, 500, 504, 5, 86, 0, 0, 501, 502, 5, 11, 0, 0, 502, 504, 3, 114, 57, 0, 503, 499, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 523, 1, 0, 0, 0, 505, 506, 5, 55, 0, 0, 506, 509, 3, 116, 58, 0, 507, 508, 5, 103, 0, 0, 508, 510, 5, 86, 0, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 5, 62, 0, 0, 512, 513, 3, 116, 58, 0, 513, 523, 1, 0, 0, 0, 514, 515, 5, 55, 0, 0, 515, 516, 3, 116, 58, 0, 516, 517, 5, 62, 0, 0, 517, 520, 3, 116, 58, 0, 518, 519, 5, 11, 0, 0, 519, 521, 3, 114, 57, 0, 520, 518, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 523, 1, 0, 0, 0, 522, 493, 1, 0, 0, 0, 522, 505, 1, 0, 0, 0, 522, 514, 1, 0, 0, 0, 523, 73, 1, 0, 0, 0, 524, 525, 5, 62, 0, 0, 525, 526, 3, 116, 58, 0, 526, 75, 1, 0, 0, 0, 527, 528, 5, 82, 0, 0, 528, 529, 3, 94, 47, 0, 529, 77, 1, 0, 0, 0, 530, 531, 6, 39, -1, 0, 531, 533, 3, 132, 66, 0, 532, 534, 5, 28, 0, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 536, 1, 0, 0, 0, 535, 537, 3, 86, 43, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 543, 1, 0, 0, 0, 538, 539, 5, 131, 0, 0, 539, 540, 3, 78, 39, 0, 540, 541, 5, 150, 0, 0, 541, 543, 1, 0, 0, 0, 542, 530, 1, 0, 0, 0, 542, 538, 1, 0, 0, 0, 543, 558, 1, 0, 0, 0, 544, 545, 10, 3, 0, 0, 545, 546, 3, 82, 41, 0, 546, 547, 3, 78, 39, 4, 547, 557, 1, 0, 0, 0, 548, 550, 10, 4, 0, 0, 549, 551, 3, 80, 40, 0, 550, 549, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 5, 48, 0, 0, 553, 554, 3, 78, 39, 0, 554, 555, 3, 84, 42, 0, 555, 557, 1, 0, 0, 0, 556, 544, 1, 0, 0, 0, 556, 548, 1, 0, 0, 0, 557, 560, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 79, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 561, 563, 7, 3, 0, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 571, 5, 45, 0, 0, 565, 567, 5, 45, 0, 0, 566, 568, 7, 3, 0, 0, 567, 566, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 571, 1, 0, 0, 0, 569, 571, 7, 3, 0, 0, 570, 562, 1, 0, 0, 0, 570, 565, 1, 0, 0, 0, 570, 569, 1, 0, 0, 0, 571, 605, 1, 0, 0, 0, 572, 574, 7, 4, 0, 0, 573, 572, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 577, 7, 5, 0, 0, 576, 578, 5, 66, 0, 0, 577, 576, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 587, 1, 0, 0, 0, 579, 581, 7, 5, 0, 0, 580, 582, 5, 66, 0, 0, 581, 580, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 584, 1, 0, 0, 0, 583, 585, 7, 4, 0, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 587, 1, 0, 0, 0, 586, 573, 1, 0, 0, 0, 586, 579, 1, 0, 0, 0, 587, 605, 1, 0, 0, 0, 588, 590, 7, 6, 0, 0, 589, 588, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 593, 5, 35, 0, 0, 592, 594, 5, 66, 0, 0, 593, 592, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 603, 1, 0, 0, 0, 595, 597, 5, 35, 0, 0, 596, 598, 5, 66, 0, 0, 597, 596, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 600, 1, 0, 0, 0, 599, 601, 7, 6, 0, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 603, 1, 0, 0, 0, 602, 589, 1, 0, 0, 0, 602, 595, 1, 0, 0, 0, 603, 605, 1, 0, 0, 0, 604, 570, 1, 0, 0, 0, 604, 586, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 605, 81, 1, 0, 0, 0, 606, 607, 5, 17, 0, 0, 607, 610, 5, 48, 0, 0, 608, 610, 5, 117, 0, 0, 609, 606, 1, 0, 0, 0, 609, 608, 1, 0, 0, 0, 610, 83, 1, 0, 0, 0, 611, 612, 5, 63, 0, 0, 612, 621, 3, 114, 57, 0, 613, 614, 5, 97, 0, 0, 614, 615, 5, 131, 0, 0, 615, 616, 3, 114, 57, 0, 616, 617, 5, 150, 0, 0, 617, 621, 1, 0, 0, 0, 618, 619, 5, 97, 0, 0, 619, 621, 3, 114, 57, 0, 620, 611, 1, 0, 0, 0, 620, 613, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 621, 85, 1, 0, 0, 0, 622, 623, 5, 78, 0, 0, 623, 626, 3, 92, 46, 0, 624, 625, 5, 62, 0, 0, 625, 627, 3, 92, 46, 0, 626, 624, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 87, 1, 0, 0, 0, 628, 633, 3, 90, 45, 0, 629, 630, 5, 117, 0, 0, 630, 632, 3, 90, 45, 0, 631, 629, 1, 0, 0, 0, 632, 635, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 89, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 638, 3, 116, 58, 0, 637, 639, 7, 7, 0, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 642, 1, 0, 0, 0, 640, 641, 5, 61, 0, 0, 641, 643, 7, 8, 0, 0, 642, 640, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 645, 5, 16, 0, 0, 645, 647, 5, 111, 0, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 91, 1, 0, 0, 0, 648, 655, 3, 160, 80, 0, 649, 652, 3, 144, 72, 0, 650, 651, 5, 152, 0, 0, 651, 653, 3, 144, 72, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 655, 1, 0, 0, 0, 654, 648, 1, 0, 0, 0, 654, 649, 1, 0, 0, 0, 655, 93, 1, 0, 0, 0, 656, 661, 3, 96, 48, 0, 657, 658, 5, 117, 0, 0, 658, 660, 3, 96, 48, 0, 659, 657, 1, 0, 0, 0, 660, 663, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 95, 1, 0, 0, 0, 663, 661, 1, 0, 0, 0, 664, 665, 3, 156, 78, 0, 665, 666, 5, 123, 0, 0, 666, 667, 3, 146, 73, 0, 667, 97, 1, 0, 0, 0, 668, 670, 3, 100, 50, 0, 669, 668, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 1, 0, 0, 0, 671, 673, 3, 102, 51, 0, 672, 671, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 675, 1, 0, 0, 0, 674, 676, 3, 104, 52, 0, 675, 674, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 99, 1, 0, 0, 0, 677, 678, 5, 68, 0, 0, 678, 679, 5, 11, 0, 0, 679, 680, 3, 114, 57, 0, 680, 101, 1, 0, 0, 0, 681, 682, 5, 65, 0, 0, 682, 683, 5, 11, 0, 0, 683, 684, 3, 88, 44, 0, 684, 103, 1, 0, 0, 0, 685, 686, 7, 9, 0, 0, 686, 687, 3, 106, 53, 0, 687, 105, 1, 0, 0, 0, 688, 695, 3, 108, 54, 0, 689, 690, 5, 9, 0, 0, 690, 691, 3, 108, 54, 0, 691, 692, 5, 2, 0, 0, 692, 693, 3, 108, 54, 0, 693, 695, 1, 0, 0, 0, 694, 688, 1, 0, 0, 0, 694, 689, 1, 0, 0, 0, 695, 107, 1, 0, 0, 0, 696, 697, 5, 19, 0, 0, 697, 709, 5, 76, 0, 0, 698, 699, 5, 95, 0, 0, 699, 709, 5, 69, 0, 0, 700, 701, 5, 95, 0, 0, 701, 709, 5, 32, 0, 0, 702, 703, 3, 144, 72, 0, 703, 704, 5, 69, 0, 0, 704, 709, 1, 0, 0, 0, 705, 706, 3, 144, 72, 0, 706, 707, 5, 32, 0, 0, 707, 709, 1, 0, 0, 0, 708, 696, 1, 0, 0, 0, 708, 698, 1, 0, 0, 0, 708, 700, 1, 0, 0, 0, 708, 702, 1, 0, 0, 0, 708, 705, 1, 0, 0, 0, 709, 109, 1, 0, 0, 0, 710, 711, 3, 116, 58, 0, 711, 712, 5, 0, 0, 1, 712, 111, 1, 0, 0, 0, 713, 770, 3, 156, 78, 0, 714, 715, 3, 156, 78, 0, 715, 716, 5, 131, 0, 0, 716, 717, 3, 156, 78, 0, 717, 724, 3, 112, 56, 0, 718, 719, 5, 117, 0, 0, 719, 720, 3, 156, 78, 0, 720, 721, 3, 112, 56, 0, 721, 723, 1, 0, 0, 0, 722, 718, 1, 0, 0, 0, 723, 726, 1, 0, 0, 0, 724, 722, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 728, 1, 0, 0, 0, 726, 724, 1, 0, 0, 0, 727, 729, 5, 117, 0, 0, 728, 727, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 5, 150, 0, 0, 731, 770, 1, 0, 0, 0, 732, 733, 3, 156, 78, 0, 733, 734, 5, 131, 0, 0, 734, 739, 3, 158, 79, 0, 735, 736, 5, 117, 0, 0, 736, 738, 3, 158, 79, 0, 737, 735, 1, 0, 0, 0, 738, 741, 1, 0, 0, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 744, 5, 117, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 150, 0, 0, 746, 770, 1, 0, 0, 0, 747, 748, 3, 156, 78, 0, 748, 749, 5, 131, 0, 0, 749, 754, 3, 112, 56, 0, 750, 751, 5, 117, 0, 0, 751, 753, 3, 112, 56, 0, 752, 750, 1, 0, 0, 0, 753, 756, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 758, 1, 0, 0, 0, 756, 754, 1, 0, 0, 0, 757, 759, 5, 117, 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 761, 5, 150, 0, 0, 761, 770, 1, 0, 0, 0, 762, 763, 3, 156, 78, 0, 763, 765, 5, 131, 0, 0, 764, 766, 3, 114, 57, 0, 765, 764, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 5, 150, 0, 0, 768, 770, 1, 0, 0, 0, 769, 713, 1, 0, 0, 0, 769, 714, 1, 0, 0, 0, 769, 732, 1, 0, 0, 0, 769, 747, 1, 0, 0, 0, 769, 762, 1, 0, 0, 0, 770, 113, 1, 0, 0, 0, 771, 776, 3, 116, 58, 0, 772, 773, 5, 117, 0, 0, 773, 775, 3, 116, 58, 0, 774, 772, 1, 0, 0, 0, 775, 778, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 780, 1, 0, 0, 0, 778, 776, 1, 0, 0, 0, 779, 781, 5, 117, 0, 0, 780, 779, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 115, 1, 0, 0, 0, 782, 783, 6, 58, -1, 0, 783, 785, 5, 12, 0, 0, 784, 786, 3, 116, 58, 0, 785, 784, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 792, 1, 0, 0, 0, 787, 788, 5, 99, 0, 0, 788, 789, 3, 116, 58, 0, 789, 790, 5, 84, 0, 0, 790, 791, 3, 116, 58, 0, 791, 793, 1, 0, 0, 0, 792, 787, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 798, 1, 0, 0, 0, 796, 797, 5, 25, 0, 0, 797, 799, 3, 116, 58, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 5, 26, 0, 0, 801, 934, 1, 0, 0, 0, 802, 803, 5, 13, 0, 0, 803, 804, 5, 131, 0, 0, 804, 805, 3, 116, 58, 0, 805, 806, 5, 6, 0, 0, 806, 807, 3, 112, 56, 0, 807, 808, 5, 150, 0, 0, 808, 934, 1, 0, 0, 0, 809, 810, 5, 20, 0, 0, 810, 934, 5, 111, 0, 0, 811, 812, 5, 46, 0, 0, 812, 813, 3, 116, 58, 0, 813, 814, 3, 148, 74, 0, 814, 934, 1, 0, 0, 0, 815, 816, 5, 83, 0, 0, 816, 817, 5, 131, 0, 0, 817, 818, 3, 116, 58, 0, 818, 819, 5, 34, 0, 0, 819, 822, 3, 116, 58, 0, 820, 821, 5, 33, 0, 0, 821, 823, 3, 116, 58, 0, 822, 820, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 825, 5, 150, 0, 0, 825, 934, 1, 0, 0, 0, 826, 827, 5, 87, 0, 0, 827, 934, 5, 111, 0, 0, 828, 829, 5, 92, 0, 0, 829, 830, 5, 131, 0, 0, 830, 831, 7, 10, 0, 0, 831, 832, 3, 162, 81, 0, 832, 833, 5, 34, 0, 0, 833, 834, 3, 116, 58, 0, 834, 835, 5, 150, 0, 0, 835, 934, 1, 0, 0, 0, 836, 837, 3, 156, 78, 0, 837, 839, 5, 131, 0, 0, 838, 840, 3, 114, 57, 0, 839, 838, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 5, 150, 0, 0, 842, 851, 1, 0, 0, 0, 843, 845, 5, 131, 0, 0, 844, 846, 5, 24, 0, 0, 845, 844, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 848, 1, 0, 0, 0, 847, 849, 3, 114, 57, 0, 848, 847, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 852, 5, 150, 0, 0, 851, 843, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 5, 67, 0, 0, 854, 855, 5, 131, 0, 0, 855, 856, 3, 98, 49, 0, 856, 857, 5, 150, 0, 0, 857, 934, 1, 0, 0, 0, 858, 859, 3, 156, 78, 0, 859, 861, 5, 131, 0, 0, 860, 862, 3, 114, 57, 0, 861, 860, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 5, 150, 0, 0, 864, 873, 1, 0, 0, 0, 865, 867, 5, 131, 0, 0, 866, 868, 5, 24, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 871, 3, 114, 57, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 5, 150, 0, 0, 873, 865, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 67, 0, 0, 876, 877, 3, 156, 78, 0, 877, 934, 1, 0, 0, 0, 878, 884, 3, 156, 78, 0, 879, 881, 5, 131, 0, 0, 880, 882, 3, 114, 57, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 885, 5, 150, 0, 0, 884, 879, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 888, 5, 131, 0, 0, 887, 889, 5, 24, 0, 0, 888, 887, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 891, 1, 0, 0, 0, 890, 892, 3, 114, 57, 0, 891, 890, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 5, 150, 0, 0, 894, 934, 1, 0, 0, 0, 895, 934, 3, 120, 60, 0, 896, 934, 3, 164, 82, 0, 897, 934, 3, 146, 73, 0, 898, 899, 5, 119, 0, 0, 899, 934, 3, 116, 58, 21, 900, 901, 5, 59, 0, 0, 901, 934, 3, 116, 58, 15, 902, 903, 3, 136, 68, 0, 903, 904, 5, 121, 0, 0, 904, 906, 1, 0, 0, 0, 905, 902, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 934, 5, 113, 0, 0, 908, 909, 5, 131, 0, 0, 909, 910, 3, 44, 22, 0, 910, 911, 5, 150, 0, 0, 911, 934, 1, 0, 0, 0, 912, 913, 5, 131, 0, 0, 913, 914, 3, 116, 58, 0, 914, 915, 5, 150, 0, 0, 915, 934, 1, 0, 0, 0, 916, 917, 5, 131, 0, 0, 917, 918, 3, 114, 57, 0, 918, 919, 5, 150, 0, 0, 919, 934, 1, 0, 0, 0, 920, 922, 5, 130, 0, 0, 921, 923, 3, 114, 57, 0, 922, 921, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 934, 5, 149, 0, 0, 925, 927, 5, 129, 0, 0, 926, 928, 3, 40, 20, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 934, 5, 148, 0, 0, 930, 934, 3, 118, 59, 0, 931, 934, 3, 128, 64, 0, 932, 934, 3, 36, 18, 0, 933, 782, 1, 0, 0, 0, 933, 802, 1, 0, 0, 0, 933, 809, 1, 0, 0, 0, 933, 811, 1, 0, 0, 0, 933, 815, 1, 0, 0, 0, 933, 826, 1, 0, 0, 0, 933, 828, 1, 0, 0, 0, 933, 836, 1, 0, 0, 0, 933, 858, 1, 0, 0, 0, 933, 878, 1, 0, 0, 0, 933, 895, 1, 0, 0, 0, 933, 896, 1, 0, 0, 0, 933, 897, 1, 0, 0, 0, 933, 898, 1, 0, 0, 0, 933, 900, 1, 0, 0, 0, 933, 905, 1, 0, 0, 0, 933, 908, 1, 0, 0, 0, 933, 912, 1, 0, 0, 0, 933, 916, 1, 0, 0, 0, 933, 920, 1, 0, 0, 0, 933, 925, 1, 0, 0, 0, 933, 930, 1, 0, 0, 0, 933, 931, 1, 0, 0, 0, 933, 932, 1, 0, 0, 0, 934, 1045, 1, 0, 0, 0, 935, 939, 10, 20, 0, 0, 936, 940, 5, 113, 0, 0, 937, 940, 5, 152, 0, 0, 938, 940, 5, 139, 0, 0, 939, 936, 1, 0, 0, 0, 939, 937, 1, 0, 0, 0, 939, 938, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 1044, 3, 116, 58, 21, 942, 946, 10, 19, 0, 0, 943, 947, 5, 140, 0, 0, 944, 947, 5, 119, 0, 0, 945, 947, 5, 118, 0, 0, 946, 943, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 946, 945, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 1044, 3, 116, 58, 20, 949, 974, 10, 18, 0, 0, 950, 975, 5, 122, 0, 0, 951, 975, 5, 123, 0, 0, 952, 975, 5, 134, 0, 0, 953, 975, 5, 132, 0, 0, 954, 975, 5, 133, 0, 0, 955, 975, 5, 124, 0, 0, 956, 975, 5, 125, 0, 0, 957, 959, 5, 59, 0, 0, 958, 957, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 962, 5, 43, 0, 0, 961, 963, 5, 15, 0, 0, 962, 961, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 975, 1, 0, 0, 0, 964, 966, 5, 59, 0, 0, 965, 964, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 975, 7, 11, 0, 0, 968, 975, 5, 146, 0, 0, 969, 975, 5, 147, 0, 0, 970, 975, 5, 136, 0, 0, 971, 975, 5, 127, 0, 0, 972, 975, 5, 128, 0, 0, 973, 975, 5, 135, 0, 0, 974, 950, 1, 0, 0, 0, 974, 951, 1, 0, 0, 0, 974, 952, 1, 0, 0, 0, 974, 953, 1, 0, 0, 0, 974, 954, 1, 0, 0, 0, 974, 955, 1, 0, 0, 0, 974, 956, 1, 0, 0, 0, 974, 958, 1, 0, 0, 0, 974, 965, 1, 0, 0, 0, 974, 968, 1, 0, 0, 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, 976, 1, 0, 0, 0, 976, 1044, 3, 116, 58, 19, 977, 978, 10, 16, 0, 0, 978, 979, 5, 138, 0, 0, 979, 1044, 3, 116, 58, 17, 980, 981, 10, 14, 0, 0, 981, 982, 5, 2, 0, 0, 982, 1044, 3, 116, 58, 15, 983, 984, 10, 13, 0, 0, 984, 985, 5, 64, 0, 0, 985, 1044, 3, 116, 58, 14, 986, 988, 10, 12, 0, 0, 987, 989, 5, 59, 0, 0, 988, 987, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 5, 9, 0, 0, 991, 992, 3, 116, 58, 0, 992, 993, 5, 2, 0, 0, 993, 994, 3, 116, 58, 13, 994, 1044, 1, 0, 0, 0, 995, 996, 10, 11, 0, 0, 996, 997, 5, 141, 0, 0, 997, 998, 3, 116, 58, 0, 998, 999, 5, 116, 0, 0, 999, 1000, 3, 116, 58, 11, 1000, 1044, 1, 0, 0, 0, 1001, 1002, 10, 31, 0, 0, 1002, 1004, 5, 131, 0, 0, 1003, 1005, 3, 114, 57, 0, 1004, 1003, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1044, 5, 150, 0, 0, 1007, 1008, 10, 27, 0, 0, 1008, 1009, 5, 130, 0, 0, 1009, 1010, 3, 116, 58, 0, 1010, 1011, 5, 149, 0, 0, 1011, 1044, 1, 0, 0, 0, 1012, 1013, 10, 26, 0, 0, 1013, 1014, 5, 121, 0, 0, 1014, 1044, 5, 109, 0, 0, 1015, 1016, 10, 25, 0, 0, 1016, 1017, 5, 121, 0, 0, 1017, 1044, 3, 156, 78, 0, 1018, 1019, 10, 24, 0, 0, 1019, 1020, 5, 137, 0, 0, 1020, 1021, 5, 130, 0, 0, 1021, 1022, 3, 116, 58, 0, 1022, 1023, 5, 149, 0, 0, 1023, 1044, 1, 0, 0, 0, 1024, 1025, 10, 23, 0, 0, 1025, 1026, 5, 137, 0, 0, 1026, 1044, 5, 109, 0, 0, 1027, 1028, 10, 22, 0, 0, 1028, 1029, 5, 137, 0, 0, 1029, 1044, 3, 156, 78, 0, 1030, 1031, 10, 17, 0, 0, 1031, 1033, 5, 47, 0, 0, 1032, 1034, 5, 59, 0, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1044, 5, 60, 0, 0, 1036, 1041, 10, 10, 0, 0, 1037, 1038, 5, 6, 0, 0, 1038, 1042, 3, 156, 78, 0, 1039, 1040, 5, 6, 0, 0, 1040, 1042, 5, 111, 0, 0, 1041, 1037, 1, 0, 0, 0, 1041, 1039, 1, 0, 0, 0, 1042, 1044, 1, 0, 0, 0, 1043, 935, 1, 0, 0, 0, 1043, 942, 1, 0, 0, 0, 1043, 949, 1, 0, 0, 0, 1043, 977, 1, 0, 0, 0, 1043, 980, 1, 0, 0, 0, 1043, 983, 1, 0, 0, 0, 1043, 986, 1, 0, 0, 0, 1043, 995, 1, 0, 0, 0, 1043, 1001, 1, 0, 0, 0, 1043, 1007, 1, 0, 0, 0, 1043, 1012, 1, 0, 0, 0, 1043, 1015, 1, 0, 0, 0, 1043, 1018, 1, 0, 0, 0, 1043, 1024, 1, 0, 0, 0, 1043, 1027, 1, 0, 0, 0, 1043, 1030, 1, 0, 0, 0, 1043, 1036, 1, 0, 0, 0, 1044, 1047, 1, 0, 0, 0, 1045, 1043, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 117, 1, 0, 0, 0, 1047, 1045, 1, 0, 0, 0, 1048, 1049, 5, 131, 0, 0, 1049, 1054, 3, 156, 78, 0, 1050, 1051, 5, 117, 0, 0, 1051, 1053, 3, 156, 78, 0, 1052, 1050, 1, 0, 0, 0, 1053, 1056, 1, 0, 0, 0, 1054, 1052, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1058, 1, 0, 0, 0, 1056, 1054, 1, 0, 0, 0, 1057, 1059, 5, 117, 0, 0, 1058, 1057, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 5, 150, 0, 0, 1061, 1076, 1, 0, 0, 0, 1062, 1067, 3, 156, 78, 0, 1063, 1064, 5, 117, 0, 0, 1064, 1066, 3, 156, 78, 0, 1065, 1063, 1, 0, 0, 0, 1066, 1069, 1, 0, 0, 0, 1067, 1065, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1071, 1, 0, 0, 0, 1069, 1067, 1, 0, 0, 0, 1070, 1072, 5, 117, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1076, 1, 0, 0, 0, 1073, 1074, 5, 131, 0, 0, 1074, 1076, 5, 150, 0, 0, 1075, 1048, 1, 0, 0, 0, 1075, 1062, 1, 0, 0, 0, 1075, 1073, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1080, 5, 112, 0, 0, 1078, 1081, 3, 36, 18, 0, 1079, 1081, 3, 116, 58, 0, 1080, 1078, 1, 0, 0, 0, 1080, 1079, 1, 0, 0, 0, 1081, 119, 1, 0, 0, 0, 1082, 1083, 5, 133, 0, 0, 1083, 1087, 3, 156, 78, 0, 1084, 1086, 3, 122, 61, 0, 1085, 1084, 1, 0, 0, 0, 1086, 1089, 1, 0, 0, 0, 1087, 1085, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1090, 1, 0, 0, 0, 1089, 1087, 1, 0, 0, 0, 1090, 1091, 5, 152, 0, 0, 1091, 1092, 5, 125, 0, 0, 1092, 1115, 1, 0, 0, 0, 1093, 1094, 5, 133, 0, 0, 1094, 1098, 3, 156, 78, 0, 1095, 1097, 3, 122, 61, 0, 1096, 1095, 1, 0, 0, 0, 1097, 1100, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 1098, 1, 0, 0, 0, 1101, 1107, 5, 125, 0, 0, 1102, 1108, 3, 120, 60, 0, 1103, 1104, 5, 129, 0, 0, 1104, 1105, 3, 116, 58, 0, 1105, 1106, 5, 148, 0, 0, 1106, 1108, 1, 0, 0, 0, 1107, 1102, 1, 0, 0, 0, 1107, 1103, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1110, 5, 133, 0, 0, 1110, 1111, 5, 152, 0, 0, 1111, 1112, 3, 156, 78, 0, 1112, 1113, 5, 125, 0, 0, 1113, 1115, 1, 0, 0, 0, 1114, 1082, 1, 0, 0, 0, 1114, 1093, 1, 0, 0, 0, 1115, 121, 1, 0, 0, 0, 1116, 1117, 3, 156, 78, 0, 1117, 1118, 5, 123, 0, 0, 1118, 1119, 3, 162, 81, 0, 1119, 1128, 1, 0, 0, 0, 1120, 1121, 3, 156, 78, 0, 1121, 1122, 5, 123, 0, 0, 1122, 1123, 5, 129, 0, 0, 1123, 1124, 3, 116, 58, 0, 1124, 1125, 5, 148, 0, 0, 1125, 1128, 1, 0, 0, 0, 1126, 1128, 3, 156, 78, 0, 1127, 1116, 1, 0, 0, 0, 1127, 1120, 1, 0, 0, 0, 1127, 1126, 1, 0, 0, 0, 1128, 123, 1, 0, 0, 0, 1129, 1134, 3, 126, 63, 0, 1130, 1131, 5, 117, 0, 0, 1131, 1133, 3, 126, 63, 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, 1138, 1, 0, 0, 0, 1136, 1134, 1, 0, 0, 0, 1137, 1139, 5, 117, 0, 0, 1138, 1137, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 125, 1, 0, 0, 0, 1140, 1141, 3, 156, 78, 0, 1141, 1142, 5, 6, 0, 0, 1142, 1143, 5, 131, 0, 0, 1143, 1144, 3, 44, 22, 0, 1144, 1145, 5, 150, 0, 0, 1145, 1151, 1, 0, 0, 0, 1146, 1147, 3, 116, 58, 0, 1147, 1148, 5, 6, 0, 0, 1148, 1149, 3, 156, 78, 0, 1149, 1151, 1, 0, 0, 0, 1150, 1140, 1, 0, 0, 0, 1150, 1146, 1, 0, 0, 0, 1151, 127, 1, 0, 0, 0, 1152, 1160, 3, 160, 80, 0, 1153, 1154, 3, 136, 68, 0, 1154, 1155, 5, 121, 0, 0, 1155, 1157, 1, 0, 0, 0, 1156, 1153, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1160, 3, 130, 65, 0, 1159, 1152, 1, 0, 0, 0, 1159, 1156, 1, 0, 0, 0, 1160, 129, 1, 0, 0, 0, 1161, 1166, 3, 156, 78, 0, 1162, 1163, 5, 121, 0, 0, 1163, 1165, 3, 156, 78, 0, 1164, 1162, 1, 0, 0, 0, 1165, 1168, 1, 0, 0, 0, 1166, 1164, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 131, 1, 0, 0, 0, 1168, 1166, 1, 0, 0, 0, 1169, 1170, 6, 66, -1, 0, 1170, 1179, 3, 136, 68, 0, 1171, 1179, 3, 134, 67, 0, 1172, 1173, 5, 131, 0, 0, 1173, 1174, 3, 44, 22, 0, 1174, 1175, 5, 150, 0, 0, 1175, 1179, 1, 0, 0, 0, 1176, 1179, 3, 120, 60, 0, 1177, 1179, 3, 160, 80, 0, 1178, 1169, 1, 0, 0, 0, 1178, 1171, 1, 0, 0, 0, 1178, 1172, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1178, 1177, 1, 0, 0, 0, 1179, 1188, 1, 0, 0, 0, 1180, 1184, 10, 3, 0, 0, 1181, 1185, 3, 154, 77, 0, 1182, 1183, 5, 6, 0, 0, 1183, 1185, 3, 156, 78, 0, 1184, 1181, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1180, 1, 0, 0, 0, 1187, 1190, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 133, 1, 0, 0, 0, 1190, 1188, 1, 0, 0, 0, 1191, 1192, 3, 156, 78, 0, 1192, 1194, 5, 131, 0, 0, 1193, 1195, 3, 138, 69, 0, 1194, 1193, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 5, 150, 0, 0, 1197, 135, 1, 0, 0, 0, 1198, 1199, 3, 140, 70, 0, 1199, 1200, 5, 121, 0, 0, 1200, 1202, 1, 0, 0, 0, 1201, 1198, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 3, 156, 78, 0, 1204, 137, 1, 0, 0, 0, 1205, 1210, 3, 116, 58, 0, 1206, 1207, 5, 117, 0, 0, 1207, 1209, 3, 116, 58, 0, 1208, 1206, 1, 0, 0, 0, 1209, 1212, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1214, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1213, 1215, 5, 117, 0, 0, 1214, 1213, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 139, 1, 0, 0, 0, 1216, 1217, 3, 156, 78, 0, 1217, 141, 1, 0, 0, 0, 1218, 1227, 5, 107, 0, 0, 1219, 1220, 5, 121, 0, 0, 1220, 1227, 7, 12, 0, 0, 1221, 1222, 5, 109, 0, 0, 1222, 1224, 5, 121, 0, 0, 1223, 1225, 7, 12, 0, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1227, 1, 0, 0, 0, 1226, 1218, 1, 0, 0, 0, 1226, 1219, 1, 0, 0, 0, 1226, 1221, 1, 0, 0, 0, 1227, 143, 1, 0, 0, 0, 1228, 1230, 7, 13, 0, 0, 1229, 1228, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1237, 1, 0, 0, 0, 1231, 1238, 3, 142, 71, 0, 1232, 1238, 5, 108, 0, 0, 1233, 1238, 5, 109, 0, 0, 1234, 1238, 5, 110, 0, 0, 1235, 1238, 5, 44, 0, 0, 1236, 1238, 5, 58, 0, 0, 1237, 1231, 1, 0, 0, 0, 1237, 1232, 1, 0, 0, 0, 1237, 1233, 1, 0, 0, 0, 1237, 1234, 1, 0, 0, 0, 1237, 1235, 1, 0, 0, 0, 1237, 1236, 1, 0, 0, 0, 1238, 145, 1, 0, 0, 0, 1239, 1243, 3, 144, 72, 0, 1240, 1243, 5, 111, 0, 0, 1241, 1243, 5, 60, 0, 0, 1242, 1239, 1, 0, 0, 0, 1242, 1240, 1, 0, 0, 0, 1242, 1241, 1, 0, 0, 0, 1243, 147, 1, 0, 0, 0, 1244, 1245, 7, 14, 0, 0, 1245, 149, 1, 0, 0, 0, 1246, 1247, 7, 15, 0, 0, 1247, 151, 1, 0, 0, 0, 1248, 1249, 7, 16, 0, 0, 1249, 153, 1, 0, 0, 0, 1250, 1253, 5, 106, 0, 0, 1251, 1253, 3, 152, 76, 0, 1252, 1250, 1, 0, 0, 0, 1252, 1251, 1, 0, 0, 0, 1253, 155, 1, 0, 0, 0, 1254, 1258, 5, 106, 0, 0, 1255, 1258, 3, 148, 74, 0, 1256, 1258, 3, 150, 75, 0, 1257, 1254, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 157, 1, 0, 0, 0, 1259, 1260, 3, 162, 81, 0, 1260, 1261, 5, 123, 0, 0, 1261, 1262, 3, 144, 72, 0, 1262, 159, 1, 0, 0, 0, 1263, 1264, 3, 36, 18, 0, 1264, 161, 1, 0, 0, 0, 1265, 1268, 5, 111, 0, 0, 1266, 1268, 3, 164, 82, 0, 1267, 1265, 1, 0, 0, 0, 1267, 1266, 1, 0, 0, 0, 1268, 163, 1, 0, 0, 0, 1269, 1273, 5, 143, 0, 0, 1270, 1272, 3, 166, 83, 0, 1271, 1270, 1, 0, 0, 0, 1272, 1275, 1, 0, 0, 0, 1273, 1271, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1273, 1, 0, 0, 0, 1276, 1277, 5, 145, 0, 0, 1277, 165, 1, 0, 0, 0, 1278, 1279, 5, 158, 0, 0, 1279, 1280, 3, 116, 58, 0, 1280, 1281, 5, 148, 0, 0, 1281, 1284, 1, 0, 0, 0, 1282, 1284, 5, 157, 0, 0, 1283, 1278, 1, 0, 0, 0, 1283, 1282, 1, 0, 0, 0, 1284, 167, 1, 0, 0, 0, 1285, 1289, 5, 144, 0, 0, 1286, 1288, 3, 170, 85, 0, 1287, 1286, 1, 0, 0, 0, 1288, 1291, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1292, 1, 0, 0, 0, 1291, 1289, 1, 0, 0, 0, 1292, 1293, 5, 0, 0, 1, 1293, 169, 1, 0, 0, 0, 1294, 1295, 5, 160, 0, 0, 1295, 1296, 3, 116, 58, 0, 1296, 1297, 5, 148, 0, 0, 1297, 1300, 1, 0, 0, 0, 1298, 1300, 5, 159, 0, 0, 1299, 1294, 1, 0, 0, 0, 1299, 1298, 1, 0, 0, 0, 1300, 171, 1, 0, 0, 0, 167, 175, 182, 191, 198, 202, 216, 220, 223, 227, 230, 237, 241, 250, 255, 264, 272, 279, 283, 289, 294, 302, 309, 315, 327, 335, 349, 353, 358, 368, 377, 380, 384, 387, 391, 394, 397, 400, 403, 407, 411, 414, 417, 420, 424, 427, 436, 442, 463, 480, 497, 503, 509, 520, 522, 533, 536, 542, 550, 556, 558, 562, 567, 570, 573, 577, 581, 584, 586, 589, 593, 597, 600, 602, 604, 609, 620, 626, 633, 638, 642, 646, 652, 654, 661, 669, 672, 675, 694, 708, 724, 728, 739, 743, 754, 758, 765, 769, 776, 780, 785, 794, 798, 822, 839, 845, 848, 851, 861, 867, 870, 873, 881, 884, 888, 891, 905, 922, 927, 933, 939, 946, 958, 962, 965, 974, 988, 1004, 1033, 1041, 1043, 1045, 1054, 1058, 1067, 1071, 1075, 1080, 1087, 1098, 1107, 1114, 1127, 1134, 1138, 1150, 1156, 1159, 1166, 1178, 1184, 1188, 1194, 1201, 1210, 1214, 1224, 1226, 1229, 1237, 1242, 1252, 1257, 1267, 1273, 1283, 1289, 1299] \ No newline at end of file diff --git a/posthog/hogql/grammar/HogQLParser.py b/posthog/hogql/grammar/HogQLParser.py index d5695d483f93d..fc7ea030d66d6 100644 --- a/posthog/hogql/grammar/HogQLParser.py +++ b/posthog/hogql/grammar/HogQLParser.py @@ -10,7 +10,7 @@ def serializedATN(): return [ - 4,1,160,1303,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,160,1302,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, @@ -89,158 +89,158 @@ def serializedATN(): 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,906, 8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, 1,58,1,58,1,58,3,58,923,8,58,1,58,1,58,1,58,3,58,928,8,58,1,58,1, - 58,1,58,3,58,933,8,58,1,58,1,58,1,58,1,58,3,58,939,8,58,1,58,1,58, - 1,58,1,58,1,58,3,58,946,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, - 1,58,1,58,1,58,3,58,958,8,58,1,58,1,58,3,58,962,8,58,1,58,3,58,965, - 8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,974,8,58,1,58,1,58, - 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,988,8,58, - 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, - 1,58,3,58,1004,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, + 58,1,58,1,58,3,58,934,8,58,1,58,1,58,1,58,1,58,3,58,940,8,58,1,58, + 1,58,1,58,1,58,1,58,3,58,947,8,58,1,58,1,58,1,58,1,58,1,58,1,58, + 1,58,1,58,1,58,1,58,3,58,959,8,58,1,58,1,58,3,58,963,8,58,1,58,3, + 58,966,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,975,8,58,1,58, + 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,989, + 8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, + 1,58,1,58,3,58,1005,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, - 1,58,1,58,1,58,1,58,1,58,3,58,1033,8,58,1,58,1,58,1,58,1,58,1,58, - 1,58,3,58,1041,8,58,5,58,1043,8,58,10,58,12,58,1046,9,58,1,59,1, - 59,1,59,1,59,5,59,1052,8,59,10,59,12,59,1055,9,59,1,59,3,59,1058, - 8,59,1,59,1,59,1,59,1,59,1,59,5,59,1065,8,59,10,59,12,59,1068,9, - 59,1,59,3,59,1071,8,59,1,59,1,59,3,59,1075,8,59,1,59,1,59,1,59,3, - 59,1080,8,59,1,60,1,60,1,60,5,60,1085,8,60,10,60,12,60,1088,9,60, - 1,60,1,60,1,60,1,60,1,60,1,60,5,60,1096,8,60,10,60,12,60,1099,9, - 60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,1107,8,60,1,60,1,60,1,60,1, - 60,1,60,3,60,1114,8,60,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1, - 61,1,61,1,61,3,61,1127,8,61,1,62,1,62,1,62,5,62,1132,8,62,10,62, - 12,62,1135,9,62,1,62,3,62,1138,8,62,1,63,1,63,1,63,1,63,1,63,1,63, - 1,63,1,63,1,63,1,63,3,63,1150,8,63,1,64,1,64,1,64,1,64,3,64,1156, - 8,64,1,64,3,64,1159,8,64,1,65,1,65,1,65,5,65,1164,8,65,10,65,12, - 65,1167,9,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,3,66,1178, - 8,66,1,66,1,66,1,66,1,66,3,66,1184,8,66,5,66,1186,8,66,10,66,12, - 66,1189,9,66,1,67,1,67,1,67,3,67,1194,8,67,1,67,1,67,1,68,1,68,1, - 68,3,68,1201,8,68,1,68,1,68,1,69,1,69,1,69,5,69,1208,8,69,10,69, - 12,69,1211,9,69,1,69,3,69,1214,8,69,1,70,1,70,1,71,1,71,1,71,1,71, - 1,71,1,71,3,71,1224,8,71,3,71,1226,8,71,1,72,3,72,1229,8,72,1,72, - 1,72,1,72,1,72,1,72,1,72,3,72,1237,8,72,1,73,1,73,1,73,3,73,1242, - 8,73,1,74,1,74,1,75,1,75,1,76,1,76,1,77,1,77,3,77,1252,8,77,1,78, - 1,78,1,78,3,78,1257,8,78,1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80, - 1,81,1,81,3,81,1269,8,81,1,82,1,82,5,82,1273,8,82,10,82,12,82,1276, - 9,82,1,82,1,82,1,83,1,83,1,83,1,83,1,83,3,83,1285,8,83,1,84,1,84, - 5,84,1289,8,84,10,84,12,84,1292,9,84,1,84,1,84,1,85,1,85,1,85,1, - 85,1,85,3,85,1301,8,85,1,85,0,3,78,116,132,86,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,0,17,2,0,31,31,36,36,2,0,18,18,75,75,2,0,45,45,52,52, - 3,0,1,1,4,4,8,8,4,0,1,1,3,4,8,8,81,81,2,0,52,52,74,74,2,0,1,1,4, - 4,2,0,7,7,22,23,2,0,30,30,50,50,2,0,72,72,77,77,3,0,10,10,51,51, - 91,91,2,0,42,42,54,54,1,0,108,109,2,0,119,119,140,140,7,0,21,21, - 39,39,56,57,71,71,79,79,98,98,104,104,17,0,1,13,15,20,22,28,30,30, - 32,35,37,38,40,43,45,52,54,55,59,59,61,70,72,78,80,84,86,93,95,97, - 99,100,102,103,4,0,20,20,30,30,40,40,49,49,1475,0,175,1,0,0,0,2, - 182,1,0,0,0,4,184,1,0,0,0,6,186,1,0,0,0,8,193,1,0,0,0,10,216,1,0, - 0,0,12,218,1,0,0,0,14,225,1,0,0,0,16,232,1,0,0,0,18,245,1,0,0,0, - 20,257,1,0,0,0,22,266,1,0,0,0,24,274,1,0,0,0,26,296,1,0,0,0,28,311, - 1,0,0,0,30,320,1,0,0,0,32,325,1,0,0,0,34,329,1,0,0,0,36,331,1,0, - 0,0,38,340,1,0,0,0,40,344,1,0,0,0,42,358,1,0,0,0,44,362,1,0,0,0, - 46,377,1,0,0,0,48,380,1,0,0,0,50,429,1,0,0,0,52,432,1,0,0,0,54,438, - 1,0,0,0,56,442,1,0,0,0,58,448,1,0,0,0,60,466,1,0,0,0,62,469,1,0, - 0,0,64,472,1,0,0,0,66,482,1,0,0,0,68,485,1,0,0,0,70,489,1,0,0,0, - 72,522,1,0,0,0,74,524,1,0,0,0,76,527,1,0,0,0,78,542,1,0,0,0,80,604, - 1,0,0,0,82,609,1,0,0,0,84,620,1,0,0,0,86,622,1,0,0,0,88,628,1,0, - 0,0,90,636,1,0,0,0,92,654,1,0,0,0,94,656,1,0,0,0,96,664,1,0,0,0, - 98,669,1,0,0,0,100,677,1,0,0,0,102,681,1,0,0,0,104,685,1,0,0,0,106, - 694,1,0,0,0,108,708,1,0,0,0,110,710,1,0,0,0,112,769,1,0,0,0,114, - 771,1,0,0,0,116,932,1,0,0,0,118,1074,1,0,0,0,120,1113,1,0,0,0,122, - 1126,1,0,0,0,124,1128,1,0,0,0,126,1149,1,0,0,0,128,1158,1,0,0,0, - 130,1160,1,0,0,0,132,1177,1,0,0,0,134,1190,1,0,0,0,136,1200,1,0, - 0,0,138,1204,1,0,0,0,140,1215,1,0,0,0,142,1225,1,0,0,0,144,1228, - 1,0,0,0,146,1241,1,0,0,0,148,1243,1,0,0,0,150,1245,1,0,0,0,152,1247, - 1,0,0,0,154,1251,1,0,0,0,156,1256,1,0,0,0,158,1258,1,0,0,0,160,1262, - 1,0,0,0,162,1268,1,0,0,0,164,1270,1,0,0,0,166,1284,1,0,0,0,168,1286, - 1,0,0,0,170,1300,1,0,0,0,172,174,3,2,1,0,173,172,1,0,0,0,174,177, - 1,0,0,0,175,173,1,0,0,0,175,176,1,0,0,0,176,178,1,0,0,0,177,175, - 1,0,0,0,178,179,5,0,0,1,179,1,1,0,0,0,180,183,3,6,3,0,181,183,3, - 10,5,0,182,180,1,0,0,0,182,181,1,0,0,0,183,3,1,0,0,0,184,185,3,116, - 58,0,185,5,1,0,0,0,186,187,5,53,0,0,187,191,3,156,78,0,188,189,5, - 116,0,0,189,190,5,123,0,0,190,192,3,4,2,0,191,188,1,0,0,0,191,192, - 1,0,0,0,192,7,1,0,0,0,193,198,3,156,78,0,194,195,5,117,0,0,195,197, - 3,156,78,0,196,194,1,0,0,0,197,200,1,0,0,0,198,196,1,0,0,0,198,199, - 1,0,0,0,199,202,1,0,0,0,200,198,1,0,0,0,201,203,5,117,0,0,202,201, - 1,0,0,0,202,203,1,0,0,0,203,9,1,0,0,0,204,217,3,12,6,0,205,217,3, - 14,7,0,206,217,3,18,9,0,207,217,3,20,10,0,208,217,3,22,11,0,209, - 217,3,26,13,0,210,217,3,24,12,0,211,217,3,28,14,0,212,217,3,30,15, - 0,213,217,3,36,18,0,214,217,3,32,16,0,215,217,3,34,17,0,216,204, - 1,0,0,0,216,205,1,0,0,0,216,206,1,0,0,0,216,207,1,0,0,0,216,208, - 1,0,0,0,216,209,1,0,0,0,216,210,1,0,0,0,216,211,1,0,0,0,216,212, - 1,0,0,0,216,213,1,0,0,0,216,214,1,0,0,0,216,215,1,0,0,0,217,11,1, - 0,0,0,218,220,5,73,0,0,219,221,3,4,2,0,220,219,1,0,0,0,220,221,1, - 0,0,0,221,223,1,0,0,0,222,224,5,151,0,0,223,222,1,0,0,0,223,224, - 1,0,0,0,224,13,1,0,0,0,225,227,5,85,0,0,226,228,3,4,2,0,227,226, - 1,0,0,0,227,228,1,0,0,0,228,230,1,0,0,0,229,231,5,151,0,0,230,229, - 1,0,0,0,230,231,1,0,0,0,231,15,1,0,0,0,232,241,5,14,0,0,233,234, - 5,131,0,0,234,237,3,156,78,0,235,236,5,116,0,0,236,238,3,156,78, - 0,237,235,1,0,0,0,237,238,1,0,0,0,238,239,1,0,0,0,239,240,5,150, - 0,0,240,242,1,0,0,0,241,233,1,0,0,0,241,242,1,0,0,0,242,243,1,0, - 0,0,243,244,3,36,18,0,244,17,1,0,0,0,245,246,5,94,0,0,246,250,3, - 36,18,0,247,249,3,16,8,0,248,247,1,0,0,0,249,252,1,0,0,0,250,248, - 1,0,0,0,250,251,1,0,0,0,251,255,1,0,0,0,252,250,1,0,0,0,253,254, - 5,29,0,0,254,256,3,36,18,0,255,253,1,0,0,0,255,256,1,0,0,0,256,19, - 1,0,0,0,257,258,5,41,0,0,258,259,5,131,0,0,259,260,3,4,2,0,260,261, - 5,150,0,0,261,264,3,10,5,0,262,263,5,25,0,0,263,265,3,10,5,0,264, - 262,1,0,0,0,264,265,1,0,0,0,265,21,1,0,0,0,266,267,5,101,0,0,267, - 268,5,131,0,0,268,269,3,4,2,0,269,270,5,150,0,0,270,272,3,10,5,0, - 271,273,5,151,0,0,272,271,1,0,0,0,272,273,1,0,0,0,273,23,1,0,0,0, - 274,275,5,33,0,0,275,279,5,131,0,0,276,280,3,6,3,0,277,280,3,30, - 15,0,278,280,3,4,2,0,279,276,1,0,0,0,279,277,1,0,0,0,279,278,1,0, - 0,0,279,280,1,0,0,0,280,281,1,0,0,0,281,283,5,151,0,0,282,284,3, - 4,2,0,283,282,1,0,0,0,283,284,1,0,0,0,284,285,1,0,0,0,285,289,5, - 151,0,0,286,290,3,6,3,0,287,290,3,30,15,0,288,290,3,4,2,0,289,286, - 1,0,0,0,289,287,1,0,0,0,289,288,1,0,0,0,289,290,1,0,0,0,290,291, - 1,0,0,0,291,292,5,150,0,0,292,294,3,10,5,0,293,295,5,151,0,0,294, - 293,1,0,0,0,294,295,1,0,0,0,295,25,1,0,0,0,296,297,5,33,0,0,297, - 298,5,131,0,0,298,299,5,53,0,0,299,302,3,156,78,0,300,301,5,117, - 0,0,301,303,3,156,78,0,302,300,1,0,0,0,302,303,1,0,0,0,303,304,1, - 0,0,0,304,305,5,43,0,0,305,306,3,4,2,0,306,307,5,150,0,0,307,309, - 3,10,5,0,308,310,5,151,0,0,309,308,1,0,0,0,309,310,1,0,0,0,310,27, - 1,0,0,0,311,312,7,0,0,0,312,313,3,156,78,0,313,315,5,131,0,0,314, - 316,3,8,4,0,315,314,1,0,0,0,315,316,1,0,0,0,316,317,1,0,0,0,317, - 318,5,150,0,0,318,319,3,36,18,0,319,29,1,0,0,0,320,321,3,4,2,0,321, - 322,5,116,0,0,322,323,5,123,0,0,323,324,3,4,2,0,324,31,1,0,0,0,325, - 327,3,4,2,0,326,328,5,151,0,0,327,326,1,0,0,0,327,328,1,0,0,0,328, - 33,1,0,0,0,329,330,5,151,0,0,330,35,1,0,0,0,331,335,5,129,0,0,332, - 334,3,2,1,0,333,332,1,0,0,0,334,337,1,0,0,0,335,333,1,0,0,0,335, - 336,1,0,0,0,336,338,1,0,0,0,337,335,1,0,0,0,338,339,5,148,0,0,339, - 37,1,0,0,0,340,341,3,4,2,0,341,342,5,116,0,0,342,343,3,4,2,0,343, - 39,1,0,0,0,344,349,3,38,19,0,345,346,5,117,0,0,346,348,3,38,19,0, - 347,345,1,0,0,0,348,351,1,0,0,0,349,347,1,0,0,0,349,350,1,0,0,0, - 350,353,1,0,0,0,351,349,1,0,0,0,352,354,5,117,0,0,353,352,1,0,0, - 0,353,354,1,0,0,0,354,41,1,0,0,0,355,359,3,44,22,0,356,359,3,48, - 24,0,357,359,3,120,60,0,358,355,1,0,0,0,358,356,1,0,0,0,358,357, - 1,0,0,0,359,360,1,0,0,0,360,361,5,0,0,1,361,43,1,0,0,0,362,368,3, - 46,23,0,363,364,5,96,0,0,364,365,5,1,0,0,365,367,3,46,23,0,366,363, - 1,0,0,0,367,370,1,0,0,0,368,366,1,0,0,0,368,369,1,0,0,0,369,45,1, - 0,0,0,370,368,1,0,0,0,371,378,3,48,24,0,372,373,5,131,0,0,373,374, - 3,44,22,0,374,375,5,150,0,0,375,378,1,0,0,0,376,378,3,160,80,0,377, - 371,1,0,0,0,377,372,1,0,0,0,377,376,1,0,0,0,378,47,1,0,0,0,379,381, - 3,50,25,0,380,379,1,0,0,0,380,381,1,0,0,0,381,382,1,0,0,0,382,384, - 5,80,0,0,383,385,5,24,0,0,384,383,1,0,0,0,384,385,1,0,0,0,385,387, - 1,0,0,0,386,388,3,52,26,0,387,386,1,0,0,0,387,388,1,0,0,0,388,389, - 1,0,0,0,389,391,3,114,57,0,390,392,3,54,27,0,391,390,1,0,0,0,391, - 392,1,0,0,0,392,394,1,0,0,0,393,395,3,56,28,0,394,393,1,0,0,0,394, - 395,1,0,0,0,395,397,1,0,0,0,396,398,3,60,30,0,397,396,1,0,0,0,397, - 398,1,0,0,0,398,400,1,0,0,0,399,401,3,62,31,0,400,399,1,0,0,0,400, - 401,1,0,0,0,401,403,1,0,0,0,402,404,3,64,32,0,403,402,1,0,0,0,403, - 404,1,0,0,0,404,407,1,0,0,0,405,406,5,103,0,0,406,408,7,1,0,0,407, - 405,1,0,0,0,407,408,1,0,0,0,408,411,1,0,0,0,409,410,5,103,0,0,410, - 412,5,90,0,0,411,409,1,0,0,0,411,412,1,0,0,0,412,414,1,0,0,0,413, - 415,3,66,33,0,414,413,1,0,0,0,414,415,1,0,0,0,415,417,1,0,0,0,416, - 418,3,58,29,0,417,416,1,0,0,0,417,418,1,0,0,0,418,420,1,0,0,0,419, - 421,3,68,34,0,420,419,1,0,0,0,420,421,1,0,0,0,421,424,1,0,0,0,422, - 425,3,72,36,0,423,425,3,74,37,0,424,422,1,0,0,0,424,423,1,0,0,0, - 424,425,1,0,0,0,425,427,1,0,0,0,426,428,3,76,38,0,427,426,1,0,0, - 0,427,428,1,0,0,0,428,49,1,0,0,0,429,430,5,103,0,0,430,431,3,124, - 62,0,431,51,1,0,0,0,432,433,5,89,0,0,433,436,5,109,0,0,434,435,5, - 103,0,0,435,437,5,86,0,0,436,434,1,0,0,0,436,437,1,0,0,0,437,53, - 1,0,0,0,438,439,5,34,0,0,439,440,3,78,39,0,440,55,1,0,0,0,441,443, - 7,2,0,0,442,441,1,0,0,0,442,443,1,0,0,0,443,444,1,0,0,0,444,445, - 5,5,0,0,445,446,5,48,0,0,446,447,3,114,57,0,447,57,1,0,0,0,448,449, + 1,58,1,58,1,58,1,58,1,58,1,58,3,58,1034,8,58,1,58,1,58,1,58,1,58, + 1,58,1,58,3,58,1042,8,58,5,58,1044,8,58,10,58,12,58,1047,9,58,1, + 59,1,59,1,59,1,59,5,59,1053,8,59,10,59,12,59,1056,9,59,1,59,3,59, + 1059,8,59,1,59,1,59,1,59,1,59,1,59,5,59,1066,8,59,10,59,12,59,1069, + 9,59,1,59,3,59,1072,8,59,1,59,1,59,3,59,1076,8,59,1,59,1,59,1,59, + 3,59,1081,8,59,1,60,1,60,1,60,5,60,1086,8,60,10,60,12,60,1089,9, + 60,1,60,1,60,1,60,1,60,1,60,1,60,5,60,1097,8,60,10,60,12,60,1100, + 9,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,1108,8,60,1,60,1,60,1,60, + 1,60,1,60,3,60,1115,8,60,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61, + 1,61,1,61,1,61,3,61,1128,8,61,1,62,1,62,1,62,5,62,1133,8,62,10,62, + 12,62,1136,9,62,1,62,3,62,1139,8,62,1,63,1,63,1,63,1,63,1,63,1,63, + 1,63,1,63,1,63,1,63,3,63,1151,8,63,1,64,1,64,1,64,1,64,3,64,1157, + 8,64,1,64,3,64,1160,8,64,1,65,1,65,1,65,5,65,1165,8,65,10,65,12, + 65,1168,9,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,3,66,1179, + 8,66,1,66,1,66,1,66,1,66,3,66,1185,8,66,5,66,1187,8,66,10,66,12, + 66,1190,9,66,1,67,1,67,1,67,3,67,1195,8,67,1,67,1,67,1,68,1,68,1, + 68,3,68,1202,8,68,1,68,1,68,1,69,1,69,1,69,5,69,1209,8,69,10,69, + 12,69,1212,9,69,1,69,3,69,1215,8,69,1,70,1,70,1,71,1,71,1,71,1,71, + 1,71,1,71,3,71,1225,8,71,3,71,1227,8,71,1,72,3,72,1230,8,72,1,72, + 1,72,1,72,1,72,1,72,1,72,3,72,1238,8,72,1,73,1,73,1,73,3,73,1243, + 8,73,1,74,1,74,1,75,1,75,1,76,1,76,1,77,1,77,3,77,1253,8,77,1,78, + 1,78,1,78,3,78,1258,8,78,1,79,1,79,1,79,1,79,1,80,1,80,1,81,1,81, + 3,81,1268,8,81,1,82,1,82,5,82,1272,8,82,10,82,12,82,1275,9,82,1, + 82,1,82,1,83,1,83,1,83,1,83,1,83,3,83,1284,8,83,1,84,1,84,5,84,1288, + 8,84,10,84,12,84,1291,9,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,3, + 85,1300,8,85,1,85,0,3,78,116,132,86,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, + 0,17,2,0,31,31,36,36,2,0,18,18,75,75,2,0,45,45,52,52,3,0,1,1,4,4, + 8,8,4,0,1,1,3,4,8,8,81,81,2,0,52,52,74,74,2,0,1,1,4,4,2,0,7,7,22, + 23,2,0,30,30,50,50,2,0,72,72,77,77,3,0,10,10,51,51,91,91,2,0,42, + 42,54,54,1,0,108,109,2,0,119,119,140,140,7,0,21,21,39,39,56,57,71, + 71,79,79,98,98,104,104,17,0,1,13,15,20,22,28,30,30,32,35,37,38,40, + 43,45,52,54,55,59,59,61,70,72,78,80,84,86,93,95,97,99,100,102,103, + 4,0,20,20,30,30,40,40,49,49,1475,0,175,1,0,0,0,2,182,1,0,0,0,4,184, + 1,0,0,0,6,186,1,0,0,0,8,193,1,0,0,0,10,216,1,0,0,0,12,218,1,0,0, + 0,14,225,1,0,0,0,16,232,1,0,0,0,18,245,1,0,0,0,20,257,1,0,0,0,22, + 266,1,0,0,0,24,274,1,0,0,0,26,296,1,0,0,0,28,311,1,0,0,0,30,320, + 1,0,0,0,32,325,1,0,0,0,34,329,1,0,0,0,36,331,1,0,0,0,38,340,1,0, + 0,0,40,344,1,0,0,0,42,358,1,0,0,0,44,362,1,0,0,0,46,377,1,0,0,0, + 48,380,1,0,0,0,50,429,1,0,0,0,52,432,1,0,0,0,54,438,1,0,0,0,56,442, + 1,0,0,0,58,448,1,0,0,0,60,466,1,0,0,0,62,469,1,0,0,0,64,472,1,0, + 0,0,66,482,1,0,0,0,68,485,1,0,0,0,70,489,1,0,0,0,72,522,1,0,0,0, + 74,524,1,0,0,0,76,527,1,0,0,0,78,542,1,0,0,0,80,604,1,0,0,0,82,609, + 1,0,0,0,84,620,1,0,0,0,86,622,1,0,0,0,88,628,1,0,0,0,90,636,1,0, + 0,0,92,654,1,0,0,0,94,656,1,0,0,0,96,664,1,0,0,0,98,669,1,0,0,0, + 100,677,1,0,0,0,102,681,1,0,0,0,104,685,1,0,0,0,106,694,1,0,0,0, + 108,708,1,0,0,0,110,710,1,0,0,0,112,769,1,0,0,0,114,771,1,0,0,0, + 116,933,1,0,0,0,118,1075,1,0,0,0,120,1114,1,0,0,0,122,1127,1,0,0, + 0,124,1129,1,0,0,0,126,1150,1,0,0,0,128,1159,1,0,0,0,130,1161,1, + 0,0,0,132,1178,1,0,0,0,134,1191,1,0,0,0,136,1201,1,0,0,0,138,1205, + 1,0,0,0,140,1216,1,0,0,0,142,1226,1,0,0,0,144,1229,1,0,0,0,146,1242, + 1,0,0,0,148,1244,1,0,0,0,150,1246,1,0,0,0,152,1248,1,0,0,0,154,1252, + 1,0,0,0,156,1257,1,0,0,0,158,1259,1,0,0,0,160,1263,1,0,0,0,162,1267, + 1,0,0,0,164,1269,1,0,0,0,166,1283,1,0,0,0,168,1285,1,0,0,0,170,1299, + 1,0,0,0,172,174,3,2,1,0,173,172,1,0,0,0,174,177,1,0,0,0,175,173, + 1,0,0,0,175,176,1,0,0,0,176,178,1,0,0,0,177,175,1,0,0,0,178,179, + 5,0,0,1,179,1,1,0,0,0,180,183,3,6,3,0,181,183,3,10,5,0,182,180,1, + 0,0,0,182,181,1,0,0,0,183,3,1,0,0,0,184,185,3,116,58,0,185,5,1,0, + 0,0,186,187,5,53,0,0,187,191,3,156,78,0,188,189,5,116,0,0,189,190, + 5,123,0,0,190,192,3,4,2,0,191,188,1,0,0,0,191,192,1,0,0,0,192,7, + 1,0,0,0,193,198,3,156,78,0,194,195,5,117,0,0,195,197,3,156,78,0, + 196,194,1,0,0,0,197,200,1,0,0,0,198,196,1,0,0,0,198,199,1,0,0,0, + 199,202,1,0,0,0,200,198,1,0,0,0,201,203,5,117,0,0,202,201,1,0,0, + 0,202,203,1,0,0,0,203,9,1,0,0,0,204,217,3,12,6,0,205,217,3,14,7, + 0,206,217,3,18,9,0,207,217,3,20,10,0,208,217,3,22,11,0,209,217,3, + 26,13,0,210,217,3,24,12,0,211,217,3,28,14,0,212,217,3,30,15,0,213, + 217,3,36,18,0,214,217,3,32,16,0,215,217,3,34,17,0,216,204,1,0,0, + 0,216,205,1,0,0,0,216,206,1,0,0,0,216,207,1,0,0,0,216,208,1,0,0, + 0,216,209,1,0,0,0,216,210,1,0,0,0,216,211,1,0,0,0,216,212,1,0,0, + 0,216,213,1,0,0,0,216,214,1,0,0,0,216,215,1,0,0,0,217,11,1,0,0,0, + 218,220,5,73,0,0,219,221,3,4,2,0,220,219,1,0,0,0,220,221,1,0,0,0, + 221,223,1,0,0,0,222,224,5,151,0,0,223,222,1,0,0,0,223,224,1,0,0, + 0,224,13,1,0,0,0,225,227,5,85,0,0,226,228,3,4,2,0,227,226,1,0,0, + 0,227,228,1,0,0,0,228,230,1,0,0,0,229,231,5,151,0,0,230,229,1,0, + 0,0,230,231,1,0,0,0,231,15,1,0,0,0,232,241,5,14,0,0,233,234,5,131, + 0,0,234,237,3,156,78,0,235,236,5,116,0,0,236,238,3,156,78,0,237, + 235,1,0,0,0,237,238,1,0,0,0,238,239,1,0,0,0,239,240,5,150,0,0,240, + 242,1,0,0,0,241,233,1,0,0,0,241,242,1,0,0,0,242,243,1,0,0,0,243, + 244,3,36,18,0,244,17,1,0,0,0,245,246,5,94,0,0,246,250,3,36,18,0, + 247,249,3,16,8,0,248,247,1,0,0,0,249,252,1,0,0,0,250,248,1,0,0,0, + 250,251,1,0,0,0,251,255,1,0,0,0,252,250,1,0,0,0,253,254,5,29,0,0, + 254,256,3,36,18,0,255,253,1,0,0,0,255,256,1,0,0,0,256,19,1,0,0,0, + 257,258,5,41,0,0,258,259,5,131,0,0,259,260,3,4,2,0,260,261,5,150, + 0,0,261,264,3,10,5,0,262,263,5,25,0,0,263,265,3,10,5,0,264,262,1, + 0,0,0,264,265,1,0,0,0,265,21,1,0,0,0,266,267,5,101,0,0,267,268,5, + 131,0,0,268,269,3,4,2,0,269,270,5,150,0,0,270,272,3,10,5,0,271,273, + 5,151,0,0,272,271,1,0,0,0,272,273,1,0,0,0,273,23,1,0,0,0,274,275, + 5,33,0,0,275,279,5,131,0,0,276,280,3,6,3,0,277,280,3,30,15,0,278, + 280,3,4,2,0,279,276,1,0,0,0,279,277,1,0,0,0,279,278,1,0,0,0,279, + 280,1,0,0,0,280,281,1,0,0,0,281,283,5,151,0,0,282,284,3,4,2,0,283, + 282,1,0,0,0,283,284,1,0,0,0,284,285,1,0,0,0,285,289,5,151,0,0,286, + 290,3,6,3,0,287,290,3,30,15,0,288,290,3,4,2,0,289,286,1,0,0,0,289, + 287,1,0,0,0,289,288,1,0,0,0,289,290,1,0,0,0,290,291,1,0,0,0,291, + 292,5,150,0,0,292,294,3,10,5,0,293,295,5,151,0,0,294,293,1,0,0,0, + 294,295,1,0,0,0,295,25,1,0,0,0,296,297,5,33,0,0,297,298,5,131,0, + 0,298,299,5,53,0,0,299,302,3,156,78,0,300,301,5,117,0,0,301,303, + 3,156,78,0,302,300,1,0,0,0,302,303,1,0,0,0,303,304,1,0,0,0,304,305, + 5,43,0,0,305,306,3,4,2,0,306,307,5,150,0,0,307,309,3,10,5,0,308, + 310,5,151,0,0,309,308,1,0,0,0,309,310,1,0,0,0,310,27,1,0,0,0,311, + 312,7,0,0,0,312,313,3,156,78,0,313,315,5,131,0,0,314,316,3,8,4,0, + 315,314,1,0,0,0,315,316,1,0,0,0,316,317,1,0,0,0,317,318,5,150,0, + 0,318,319,3,36,18,0,319,29,1,0,0,0,320,321,3,4,2,0,321,322,5,116, + 0,0,322,323,5,123,0,0,323,324,3,4,2,0,324,31,1,0,0,0,325,327,3,4, + 2,0,326,328,5,151,0,0,327,326,1,0,0,0,327,328,1,0,0,0,328,33,1,0, + 0,0,329,330,5,151,0,0,330,35,1,0,0,0,331,335,5,129,0,0,332,334,3, + 2,1,0,333,332,1,0,0,0,334,337,1,0,0,0,335,333,1,0,0,0,335,336,1, + 0,0,0,336,338,1,0,0,0,337,335,1,0,0,0,338,339,5,148,0,0,339,37,1, + 0,0,0,340,341,3,4,2,0,341,342,5,116,0,0,342,343,3,4,2,0,343,39,1, + 0,0,0,344,349,3,38,19,0,345,346,5,117,0,0,346,348,3,38,19,0,347, + 345,1,0,0,0,348,351,1,0,0,0,349,347,1,0,0,0,349,350,1,0,0,0,350, + 353,1,0,0,0,351,349,1,0,0,0,352,354,5,117,0,0,353,352,1,0,0,0,353, + 354,1,0,0,0,354,41,1,0,0,0,355,359,3,44,22,0,356,359,3,48,24,0,357, + 359,3,120,60,0,358,355,1,0,0,0,358,356,1,0,0,0,358,357,1,0,0,0,359, + 360,1,0,0,0,360,361,5,0,0,1,361,43,1,0,0,0,362,368,3,46,23,0,363, + 364,5,96,0,0,364,365,5,1,0,0,365,367,3,46,23,0,366,363,1,0,0,0,367, + 370,1,0,0,0,368,366,1,0,0,0,368,369,1,0,0,0,369,45,1,0,0,0,370,368, + 1,0,0,0,371,378,3,48,24,0,372,373,5,131,0,0,373,374,3,44,22,0,374, + 375,5,150,0,0,375,378,1,0,0,0,376,378,3,160,80,0,377,371,1,0,0,0, + 377,372,1,0,0,0,377,376,1,0,0,0,378,47,1,0,0,0,379,381,3,50,25,0, + 380,379,1,0,0,0,380,381,1,0,0,0,381,382,1,0,0,0,382,384,5,80,0,0, + 383,385,5,24,0,0,384,383,1,0,0,0,384,385,1,0,0,0,385,387,1,0,0,0, + 386,388,3,52,26,0,387,386,1,0,0,0,387,388,1,0,0,0,388,389,1,0,0, + 0,389,391,3,114,57,0,390,392,3,54,27,0,391,390,1,0,0,0,391,392,1, + 0,0,0,392,394,1,0,0,0,393,395,3,56,28,0,394,393,1,0,0,0,394,395, + 1,0,0,0,395,397,1,0,0,0,396,398,3,60,30,0,397,396,1,0,0,0,397,398, + 1,0,0,0,398,400,1,0,0,0,399,401,3,62,31,0,400,399,1,0,0,0,400,401, + 1,0,0,0,401,403,1,0,0,0,402,404,3,64,32,0,403,402,1,0,0,0,403,404, + 1,0,0,0,404,407,1,0,0,0,405,406,5,103,0,0,406,408,7,1,0,0,407,405, + 1,0,0,0,407,408,1,0,0,0,408,411,1,0,0,0,409,410,5,103,0,0,410,412, + 5,90,0,0,411,409,1,0,0,0,411,412,1,0,0,0,412,414,1,0,0,0,413,415, + 3,66,33,0,414,413,1,0,0,0,414,415,1,0,0,0,415,417,1,0,0,0,416,418, + 3,58,29,0,417,416,1,0,0,0,417,418,1,0,0,0,418,420,1,0,0,0,419,421, + 3,68,34,0,420,419,1,0,0,0,420,421,1,0,0,0,421,424,1,0,0,0,422,425, + 3,72,36,0,423,425,3,74,37,0,424,422,1,0,0,0,424,423,1,0,0,0,424, + 425,1,0,0,0,425,427,1,0,0,0,426,428,3,76,38,0,427,426,1,0,0,0,427, + 428,1,0,0,0,428,49,1,0,0,0,429,430,5,103,0,0,430,431,3,124,62,0, + 431,51,1,0,0,0,432,433,5,89,0,0,433,436,5,109,0,0,434,435,5,103, + 0,0,435,437,5,86,0,0,436,434,1,0,0,0,436,437,1,0,0,0,437,53,1,0, + 0,0,438,439,5,34,0,0,439,440,3,78,39,0,440,55,1,0,0,0,441,443,7, + 2,0,0,442,441,1,0,0,0,442,443,1,0,0,0,443,444,1,0,0,0,444,445,5, + 5,0,0,445,446,5,48,0,0,446,447,3,114,57,0,447,57,1,0,0,0,448,449, 5,102,0,0,449,450,3,156,78,0,450,451,5,6,0,0,451,452,5,131,0,0,452, 453,3,98,49,0,453,463,5,150,0,0,454,455,5,117,0,0,455,456,3,156, 78,0,456,457,5,6,0,0,457,458,5,131,0,0,458,459,3,98,49,0,459,460, @@ -348,194 +348,193 @@ def serializedATN(): 789,3,116,58,0,789,790,5,84,0,0,790,791,3,116,58,0,791,793,1,0,0, 0,792,787,1,0,0,0,793,794,1,0,0,0,794,792,1,0,0,0,794,795,1,0,0, 0,795,798,1,0,0,0,796,797,5,25,0,0,797,799,3,116,58,0,798,796,1, - 0,0,0,798,799,1,0,0,0,799,800,1,0,0,0,800,801,5,26,0,0,801,933,1, + 0,0,0,798,799,1,0,0,0,799,800,1,0,0,0,800,801,5,26,0,0,801,934,1, 0,0,0,802,803,5,13,0,0,803,804,5,131,0,0,804,805,3,116,58,0,805, - 806,5,6,0,0,806,807,3,112,56,0,807,808,5,150,0,0,808,933,1,0,0,0, - 809,810,5,20,0,0,810,933,5,111,0,0,811,812,5,46,0,0,812,813,3,116, - 58,0,813,814,3,148,74,0,814,933,1,0,0,0,815,816,5,83,0,0,816,817, + 806,5,6,0,0,806,807,3,112,56,0,807,808,5,150,0,0,808,934,1,0,0,0, + 809,810,5,20,0,0,810,934,5,111,0,0,811,812,5,46,0,0,812,813,3,116, + 58,0,813,814,3,148,74,0,814,934,1,0,0,0,815,816,5,83,0,0,816,817, 5,131,0,0,817,818,3,116,58,0,818,819,5,34,0,0,819,822,3,116,58,0, 820,821,5,33,0,0,821,823,3,116,58,0,822,820,1,0,0,0,822,823,1,0, - 0,0,823,824,1,0,0,0,824,825,5,150,0,0,825,933,1,0,0,0,826,827,5, - 87,0,0,827,933,5,111,0,0,828,829,5,92,0,0,829,830,5,131,0,0,830, + 0,0,823,824,1,0,0,0,824,825,5,150,0,0,825,934,1,0,0,0,826,827,5, + 87,0,0,827,934,5,111,0,0,828,829,5,92,0,0,829,830,5,131,0,0,830, 831,7,10,0,0,831,832,3,162,81,0,832,833,5,34,0,0,833,834,3,116,58, - 0,834,835,5,150,0,0,835,933,1,0,0,0,836,837,3,156,78,0,837,839,5, + 0,834,835,5,150,0,0,835,934,1,0,0,0,836,837,3,156,78,0,837,839,5, 131,0,0,838,840,3,114,57,0,839,838,1,0,0,0,839,840,1,0,0,0,840,841, 1,0,0,0,841,842,5,150,0,0,842,851,1,0,0,0,843,845,5,131,0,0,844, 846,5,24,0,0,845,844,1,0,0,0,845,846,1,0,0,0,846,848,1,0,0,0,847, 849,3,114,57,0,848,847,1,0,0,0,848,849,1,0,0,0,849,850,1,0,0,0,850, 852,5,150,0,0,851,843,1,0,0,0,851,852,1,0,0,0,852,853,1,0,0,0,853, 854,5,67,0,0,854,855,5,131,0,0,855,856,3,98,49,0,856,857,5,150,0, - 0,857,933,1,0,0,0,858,859,3,156,78,0,859,861,5,131,0,0,860,862,3, + 0,857,934,1,0,0,0,858,859,3,156,78,0,859,861,5,131,0,0,860,862,3, 114,57,0,861,860,1,0,0,0,861,862,1,0,0,0,862,863,1,0,0,0,863,864, 5,150,0,0,864,873,1,0,0,0,865,867,5,131,0,0,866,868,5,24,0,0,867, 866,1,0,0,0,867,868,1,0,0,0,868,870,1,0,0,0,869,871,3,114,57,0,870, 869,1,0,0,0,870,871,1,0,0,0,871,872,1,0,0,0,872,874,5,150,0,0,873, 865,1,0,0,0,873,874,1,0,0,0,874,875,1,0,0,0,875,876,5,67,0,0,876, - 877,3,156,78,0,877,933,1,0,0,0,878,884,3,156,78,0,879,881,5,131, + 877,3,156,78,0,877,934,1,0,0,0,878,884,3,156,78,0,879,881,5,131, 0,0,880,882,3,114,57,0,881,880,1,0,0,0,881,882,1,0,0,0,882,883,1, 0,0,0,883,885,5,150,0,0,884,879,1,0,0,0,884,885,1,0,0,0,885,886, 1,0,0,0,886,888,5,131,0,0,887,889,5,24,0,0,888,887,1,0,0,0,888,889, 1,0,0,0,889,891,1,0,0,0,890,892,3,114,57,0,891,890,1,0,0,0,891,892, - 1,0,0,0,892,893,1,0,0,0,893,894,5,150,0,0,894,933,1,0,0,0,895,933, - 3,120,60,0,896,933,3,164,82,0,897,933,3,146,73,0,898,899,5,119,0, - 0,899,933,3,116,58,20,900,901,5,59,0,0,901,933,3,116,58,14,902,903, + 1,0,0,0,892,893,1,0,0,0,893,894,5,150,0,0,894,934,1,0,0,0,895,934, + 3,120,60,0,896,934,3,164,82,0,897,934,3,146,73,0,898,899,5,119,0, + 0,899,934,3,116,58,21,900,901,5,59,0,0,901,934,3,116,58,15,902,903, 3,136,68,0,903,904,5,121,0,0,904,906,1,0,0,0,905,902,1,0,0,0,905, - 906,1,0,0,0,906,907,1,0,0,0,907,933,5,113,0,0,908,909,5,131,0,0, - 909,910,3,44,22,0,910,911,5,150,0,0,911,933,1,0,0,0,912,913,5,131, - 0,0,913,914,3,116,58,0,914,915,5,150,0,0,915,933,1,0,0,0,916,917, - 5,131,0,0,917,918,3,114,57,0,918,919,5,150,0,0,919,933,1,0,0,0,920, + 906,1,0,0,0,906,907,1,0,0,0,907,934,5,113,0,0,908,909,5,131,0,0, + 909,910,3,44,22,0,910,911,5,150,0,0,911,934,1,0,0,0,912,913,5,131, + 0,0,913,914,3,116,58,0,914,915,5,150,0,0,915,934,1,0,0,0,916,917, + 5,131,0,0,917,918,3,114,57,0,918,919,5,150,0,0,919,934,1,0,0,0,920, 922,5,130,0,0,921,923,3,114,57,0,922,921,1,0,0,0,922,923,1,0,0,0, - 923,924,1,0,0,0,924,933,5,149,0,0,925,927,5,129,0,0,926,928,3,40, - 20,0,927,926,1,0,0,0,927,928,1,0,0,0,928,929,1,0,0,0,929,933,5,148, - 0,0,930,933,3,118,59,0,931,933,3,128,64,0,932,782,1,0,0,0,932,802, - 1,0,0,0,932,809,1,0,0,0,932,811,1,0,0,0,932,815,1,0,0,0,932,826, - 1,0,0,0,932,828,1,0,0,0,932,836,1,0,0,0,932,858,1,0,0,0,932,878, - 1,0,0,0,932,895,1,0,0,0,932,896,1,0,0,0,932,897,1,0,0,0,932,898, - 1,0,0,0,932,900,1,0,0,0,932,905,1,0,0,0,932,908,1,0,0,0,932,912, - 1,0,0,0,932,916,1,0,0,0,932,920,1,0,0,0,932,925,1,0,0,0,932,930, - 1,0,0,0,932,931,1,0,0,0,933,1044,1,0,0,0,934,938,10,19,0,0,935,939, - 5,113,0,0,936,939,5,152,0,0,937,939,5,139,0,0,938,935,1,0,0,0,938, - 936,1,0,0,0,938,937,1,0,0,0,939,940,1,0,0,0,940,1043,3,116,58,20, - 941,945,10,18,0,0,942,946,5,140,0,0,943,946,5,119,0,0,944,946,5, - 118,0,0,945,942,1,0,0,0,945,943,1,0,0,0,945,944,1,0,0,0,946,947, - 1,0,0,0,947,1043,3,116,58,19,948,973,10,17,0,0,949,974,5,122,0,0, - 950,974,5,123,0,0,951,974,5,134,0,0,952,974,5,132,0,0,953,974,5, - 133,0,0,954,974,5,124,0,0,955,974,5,125,0,0,956,958,5,59,0,0,957, - 956,1,0,0,0,957,958,1,0,0,0,958,959,1,0,0,0,959,961,5,43,0,0,960, - 962,5,15,0,0,961,960,1,0,0,0,961,962,1,0,0,0,962,974,1,0,0,0,963, - 965,5,59,0,0,964,963,1,0,0,0,964,965,1,0,0,0,965,966,1,0,0,0,966, - 974,7,11,0,0,967,974,5,146,0,0,968,974,5,147,0,0,969,974,5,136,0, - 0,970,974,5,127,0,0,971,974,5,128,0,0,972,974,5,135,0,0,973,949, - 1,0,0,0,973,950,1,0,0,0,973,951,1,0,0,0,973,952,1,0,0,0,973,953, - 1,0,0,0,973,954,1,0,0,0,973,955,1,0,0,0,973,957,1,0,0,0,973,964, - 1,0,0,0,973,967,1,0,0,0,973,968,1,0,0,0,973,969,1,0,0,0,973,970, - 1,0,0,0,973,971,1,0,0,0,973,972,1,0,0,0,974,975,1,0,0,0,975,1043, - 3,116,58,18,976,977,10,15,0,0,977,978,5,138,0,0,978,1043,3,116,58, - 16,979,980,10,13,0,0,980,981,5,2,0,0,981,1043,3,116,58,14,982,983, - 10,12,0,0,983,984,5,64,0,0,984,1043,3,116,58,13,985,987,10,11,0, - 0,986,988,5,59,0,0,987,986,1,0,0,0,987,988,1,0,0,0,988,989,1,0,0, - 0,989,990,5,9,0,0,990,991,3,116,58,0,991,992,5,2,0,0,992,993,3,116, - 58,12,993,1043,1,0,0,0,994,995,10,10,0,0,995,996,5,141,0,0,996,997, - 3,116,58,0,997,998,5,116,0,0,998,999,3,116,58,10,999,1043,1,0,0, - 0,1000,1001,10,30,0,0,1001,1003,5,131,0,0,1002,1004,3,114,57,0,1003, - 1002,1,0,0,0,1003,1004,1,0,0,0,1004,1005,1,0,0,0,1005,1043,5,150, - 0,0,1006,1007,10,26,0,0,1007,1008,5,130,0,0,1008,1009,3,116,58,0, - 1009,1010,5,149,0,0,1010,1043,1,0,0,0,1011,1012,10,25,0,0,1012,1013, - 5,121,0,0,1013,1043,5,109,0,0,1014,1015,10,24,0,0,1015,1016,5,121, - 0,0,1016,1043,3,156,78,0,1017,1018,10,23,0,0,1018,1019,5,137,0,0, - 1019,1020,5,130,0,0,1020,1021,3,116,58,0,1021,1022,5,149,0,0,1022, - 1043,1,0,0,0,1023,1024,10,22,0,0,1024,1025,5,137,0,0,1025,1043,5, - 109,0,0,1026,1027,10,21,0,0,1027,1028,5,137,0,0,1028,1043,3,156, - 78,0,1029,1030,10,16,0,0,1030,1032,5,47,0,0,1031,1033,5,59,0,0,1032, - 1031,1,0,0,0,1032,1033,1,0,0,0,1033,1034,1,0,0,0,1034,1043,5,60, - 0,0,1035,1040,10,9,0,0,1036,1037,5,6,0,0,1037,1041,3,156,78,0,1038, - 1039,5,6,0,0,1039,1041,5,111,0,0,1040,1036,1,0,0,0,1040,1038,1,0, - 0,0,1041,1043,1,0,0,0,1042,934,1,0,0,0,1042,941,1,0,0,0,1042,948, - 1,0,0,0,1042,976,1,0,0,0,1042,979,1,0,0,0,1042,982,1,0,0,0,1042, - 985,1,0,0,0,1042,994,1,0,0,0,1042,1000,1,0,0,0,1042,1006,1,0,0,0, - 1042,1011,1,0,0,0,1042,1014,1,0,0,0,1042,1017,1,0,0,0,1042,1023, - 1,0,0,0,1042,1026,1,0,0,0,1042,1029,1,0,0,0,1042,1035,1,0,0,0,1043, - 1046,1,0,0,0,1044,1042,1,0,0,0,1044,1045,1,0,0,0,1045,117,1,0,0, - 0,1046,1044,1,0,0,0,1047,1048,5,131,0,0,1048,1053,3,156,78,0,1049, - 1050,5,117,0,0,1050,1052,3,156,78,0,1051,1049,1,0,0,0,1052,1055, - 1,0,0,0,1053,1051,1,0,0,0,1053,1054,1,0,0,0,1054,1057,1,0,0,0,1055, - 1053,1,0,0,0,1056,1058,5,117,0,0,1057,1056,1,0,0,0,1057,1058,1,0, - 0,0,1058,1059,1,0,0,0,1059,1060,5,150,0,0,1060,1075,1,0,0,0,1061, - 1066,3,156,78,0,1062,1063,5,117,0,0,1063,1065,3,156,78,0,1064,1062, - 1,0,0,0,1065,1068,1,0,0,0,1066,1064,1,0,0,0,1066,1067,1,0,0,0,1067, - 1070,1,0,0,0,1068,1066,1,0,0,0,1069,1071,5,117,0,0,1070,1069,1,0, - 0,0,1070,1071,1,0,0,0,1071,1075,1,0,0,0,1072,1073,5,131,0,0,1073, - 1075,5,150,0,0,1074,1047,1,0,0,0,1074,1061,1,0,0,0,1074,1072,1,0, - 0,0,1075,1076,1,0,0,0,1076,1079,5,112,0,0,1077,1080,3,36,18,0,1078, - 1080,3,116,58,0,1079,1077,1,0,0,0,1079,1078,1,0,0,0,1080,119,1,0, - 0,0,1081,1082,5,133,0,0,1082,1086,3,156,78,0,1083,1085,3,122,61, - 0,1084,1083,1,0,0,0,1085,1088,1,0,0,0,1086,1084,1,0,0,0,1086,1087, - 1,0,0,0,1087,1089,1,0,0,0,1088,1086,1,0,0,0,1089,1090,5,152,0,0, - 1090,1091,5,125,0,0,1091,1114,1,0,0,0,1092,1093,5,133,0,0,1093,1097, - 3,156,78,0,1094,1096,3,122,61,0,1095,1094,1,0,0,0,1096,1099,1,0, - 0,0,1097,1095,1,0,0,0,1097,1098,1,0,0,0,1098,1100,1,0,0,0,1099,1097, - 1,0,0,0,1100,1106,5,125,0,0,1101,1107,3,120,60,0,1102,1103,5,129, - 0,0,1103,1104,3,116,58,0,1104,1105,5,148,0,0,1105,1107,1,0,0,0,1106, - 1101,1,0,0,0,1106,1102,1,0,0,0,1106,1107,1,0,0,0,1107,1108,1,0,0, - 0,1108,1109,5,133,0,0,1109,1110,5,152,0,0,1110,1111,3,156,78,0,1111, - 1112,5,125,0,0,1112,1114,1,0,0,0,1113,1081,1,0,0,0,1113,1092,1,0, - 0,0,1114,121,1,0,0,0,1115,1116,3,156,78,0,1116,1117,5,123,0,0,1117, - 1118,3,162,81,0,1118,1127,1,0,0,0,1119,1120,3,156,78,0,1120,1121, - 5,123,0,0,1121,1122,5,129,0,0,1122,1123,3,116,58,0,1123,1124,5,148, - 0,0,1124,1127,1,0,0,0,1125,1127,3,156,78,0,1126,1115,1,0,0,0,1126, - 1119,1,0,0,0,1126,1125,1,0,0,0,1127,123,1,0,0,0,1128,1133,3,126, - 63,0,1129,1130,5,117,0,0,1130,1132,3,126,63,0,1131,1129,1,0,0,0, - 1132,1135,1,0,0,0,1133,1131,1,0,0,0,1133,1134,1,0,0,0,1134,1137, - 1,0,0,0,1135,1133,1,0,0,0,1136,1138,5,117,0,0,1137,1136,1,0,0,0, - 1137,1138,1,0,0,0,1138,125,1,0,0,0,1139,1140,3,156,78,0,1140,1141, - 5,6,0,0,1141,1142,5,131,0,0,1142,1143,3,44,22,0,1143,1144,5,150, - 0,0,1144,1150,1,0,0,0,1145,1146,3,116,58,0,1146,1147,5,6,0,0,1147, - 1148,3,156,78,0,1148,1150,1,0,0,0,1149,1139,1,0,0,0,1149,1145,1, - 0,0,0,1150,127,1,0,0,0,1151,1159,3,160,80,0,1152,1153,3,136,68,0, - 1153,1154,5,121,0,0,1154,1156,1,0,0,0,1155,1152,1,0,0,0,1155,1156, - 1,0,0,0,1156,1157,1,0,0,0,1157,1159,3,130,65,0,1158,1151,1,0,0,0, - 1158,1155,1,0,0,0,1159,129,1,0,0,0,1160,1165,3,156,78,0,1161,1162, - 5,121,0,0,1162,1164,3,156,78,0,1163,1161,1,0,0,0,1164,1167,1,0,0, - 0,1165,1163,1,0,0,0,1165,1166,1,0,0,0,1166,131,1,0,0,0,1167,1165, - 1,0,0,0,1168,1169,6,66,-1,0,1169,1178,3,136,68,0,1170,1178,3,134, - 67,0,1171,1172,5,131,0,0,1172,1173,3,44,22,0,1173,1174,5,150,0,0, - 1174,1178,1,0,0,0,1175,1178,3,120,60,0,1176,1178,3,160,80,0,1177, - 1168,1,0,0,0,1177,1170,1,0,0,0,1177,1171,1,0,0,0,1177,1175,1,0,0, - 0,1177,1176,1,0,0,0,1178,1187,1,0,0,0,1179,1183,10,3,0,0,1180,1184, - 3,154,77,0,1181,1182,5,6,0,0,1182,1184,3,156,78,0,1183,1180,1,0, - 0,0,1183,1181,1,0,0,0,1184,1186,1,0,0,0,1185,1179,1,0,0,0,1186,1189, - 1,0,0,0,1187,1185,1,0,0,0,1187,1188,1,0,0,0,1188,133,1,0,0,0,1189, - 1187,1,0,0,0,1190,1191,3,156,78,0,1191,1193,5,131,0,0,1192,1194, - 3,138,69,0,1193,1192,1,0,0,0,1193,1194,1,0,0,0,1194,1195,1,0,0,0, - 1195,1196,5,150,0,0,1196,135,1,0,0,0,1197,1198,3,140,70,0,1198,1199, - 5,121,0,0,1199,1201,1,0,0,0,1200,1197,1,0,0,0,1200,1201,1,0,0,0, - 1201,1202,1,0,0,0,1202,1203,3,156,78,0,1203,137,1,0,0,0,1204,1209, - 3,116,58,0,1205,1206,5,117,0,0,1206,1208,3,116,58,0,1207,1205,1, - 0,0,0,1208,1211,1,0,0,0,1209,1207,1,0,0,0,1209,1210,1,0,0,0,1210, - 1213,1,0,0,0,1211,1209,1,0,0,0,1212,1214,5,117,0,0,1213,1212,1,0, - 0,0,1213,1214,1,0,0,0,1214,139,1,0,0,0,1215,1216,3,156,78,0,1216, - 141,1,0,0,0,1217,1226,5,107,0,0,1218,1219,5,121,0,0,1219,1226,7, - 12,0,0,1220,1221,5,109,0,0,1221,1223,5,121,0,0,1222,1224,7,12,0, - 0,1223,1222,1,0,0,0,1223,1224,1,0,0,0,1224,1226,1,0,0,0,1225,1217, - 1,0,0,0,1225,1218,1,0,0,0,1225,1220,1,0,0,0,1226,143,1,0,0,0,1227, - 1229,7,13,0,0,1228,1227,1,0,0,0,1228,1229,1,0,0,0,1229,1236,1,0, - 0,0,1230,1237,3,142,71,0,1231,1237,5,108,0,0,1232,1237,5,109,0,0, - 1233,1237,5,110,0,0,1234,1237,5,44,0,0,1235,1237,5,58,0,0,1236,1230, - 1,0,0,0,1236,1231,1,0,0,0,1236,1232,1,0,0,0,1236,1233,1,0,0,0,1236, - 1234,1,0,0,0,1236,1235,1,0,0,0,1237,145,1,0,0,0,1238,1242,3,144, - 72,0,1239,1242,5,111,0,0,1240,1242,5,60,0,0,1241,1238,1,0,0,0,1241, - 1239,1,0,0,0,1241,1240,1,0,0,0,1242,147,1,0,0,0,1243,1244,7,14,0, - 0,1244,149,1,0,0,0,1245,1246,7,15,0,0,1246,151,1,0,0,0,1247,1248, - 7,16,0,0,1248,153,1,0,0,0,1249,1252,5,106,0,0,1250,1252,3,152,76, - 0,1251,1249,1,0,0,0,1251,1250,1,0,0,0,1252,155,1,0,0,0,1253,1257, - 5,106,0,0,1254,1257,3,148,74,0,1255,1257,3,150,75,0,1256,1253,1, - 0,0,0,1256,1254,1,0,0,0,1256,1255,1,0,0,0,1257,157,1,0,0,0,1258, - 1259,3,162,81,0,1259,1260,5,123,0,0,1260,1261,3,144,72,0,1261,159, - 1,0,0,0,1262,1263,5,129,0,0,1263,1264,3,116,58,0,1264,1265,5,148, - 0,0,1265,161,1,0,0,0,1266,1269,5,111,0,0,1267,1269,3,164,82,0,1268, - 1266,1,0,0,0,1268,1267,1,0,0,0,1269,163,1,0,0,0,1270,1274,5,143, - 0,0,1271,1273,3,166,83,0,1272,1271,1,0,0,0,1273,1276,1,0,0,0,1274, - 1272,1,0,0,0,1274,1275,1,0,0,0,1275,1277,1,0,0,0,1276,1274,1,0,0, - 0,1277,1278,5,145,0,0,1278,165,1,0,0,0,1279,1280,5,158,0,0,1280, - 1281,3,116,58,0,1281,1282,5,148,0,0,1282,1285,1,0,0,0,1283,1285, - 5,157,0,0,1284,1279,1,0,0,0,1284,1283,1,0,0,0,1285,167,1,0,0,0,1286, - 1290,5,144,0,0,1287,1289,3,170,85,0,1288,1287,1,0,0,0,1289,1292, - 1,0,0,0,1290,1288,1,0,0,0,1290,1291,1,0,0,0,1291,1293,1,0,0,0,1292, - 1290,1,0,0,0,1293,1294,5,0,0,1,1294,169,1,0,0,0,1295,1296,5,160, - 0,0,1296,1297,3,116,58,0,1297,1298,5,148,0,0,1298,1301,1,0,0,0,1299, - 1301,5,159,0,0,1300,1295,1,0,0,0,1300,1299,1,0,0,0,1301,171,1,0, - 0,0,167,175,182,191,198,202,216,220,223,227,230,237,241,250,255, - 264,272,279,283,289,294,302,309,315,327,335,349,353,358,368,377, - 380,384,387,391,394,397,400,403,407,411,414,417,420,424,427,436, - 442,463,480,497,503,509,520,522,533,536,542,550,556,558,562,567, - 570,573,577,581,584,586,589,593,597,600,602,604,609,620,626,633, - 638,642,646,652,654,661,669,672,675,694,708,724,728,739,743,754, - 758,765,769,776,780,785,794,798,822,839,845,848,851,861,867,870, - 873,881,884,888,891,905,922,927,932,938,945,957,961,964,973,987, - 1003,1032,1040,1042,1044,1053,1057,1066,1070,1074,1079,1086,1097, - 1106,1113,1126,1133,1137,1149,1155,1158,1165,1177,1183,1187,1193, - 1200,1209,1213,1223,1225,1228,1236,1241,1251,1256,1268,1274,1284, - 1290,1300 + 923,924,1,0,0,0,924,934,5,149,0,0,925,927,5,129,0,0,926,928,3,40, + 20,0,927,926,1,0,0,0,927,928,1,0,0,0,928,929,1,0,0,0,929,934,5,148, + 0,0,930,934,3,118,59,0,931,934,3,128,64,0,932,934,3,36,18,0,933, + 782,1,0,0,0,933,802,1,0,0,0,933,809,1,0,0,0,933,811,1,0,0,0,933, + 815,1,0,0,0,933,826,1,0,0,0,933,828,1,0,0,0,933,836,1,0,0,0,933, + 858,1,0,0,0,933,878,1,0,0,0,933,895,1,0,0,0,933,896,1,0,0,0,933, + 897,1,0,0,0,933,898,1,0,0,0,933,900,1,0,0,0,933,905,1,0,0,0,933, + 908,1,0,0,0,933,912,1,0,0,0,933,916,1,0,0,0,933,920,1,0,0,0,933, + 925,1,0,0,0,933,930,1,0,0,0,933,931,1,0,0,0,933,932,1,0,0,0,934, + 1045,1,0,0,0,935,939,10,20,0,0,936,940,5,113,0,0,937,940,5,152,0, + 0,938,940,5,139,0,0,939,936,1,0,0,0,939,937,1,0,0,0,939,938,1,0, + 0,0,940,941,1,0,0,0,941,1044,3,116,58,21,942,946,10,19,0,0,943,947, + 5,140,0,0,944,947,5,119,0,0,945,947,5,118,0,0,946,943,1,0,0,0,946, + 944,1,0,0,0,946,945,1,0,0,0,947,948,1,0,0,0,948,1044,3,116,58,20, + 949,974,10,18,0,0,950,975,5,122,0,0,951,975,5,123,0,0,952,975,5, + 134,0,0,953,975,5,132,0,0,954,975,5,133,0,0,955,975,5,124,0,0,956, + 975,5,125,0,0,957,959,5,59,0,0,958,957,1,0,0,0,958,959,1,0,0,0,959, + 960,1,0,0,0,960,962,5,43,0,0,961,963,5,15,0,0,962,961,1,0,0,0,962, + 963,1,0,0,0,963,975,1,0,0,0,964,966,5,59,0,0,965,964,1,0,0,0,965, + 966,1,0,0,0,966,967,1,0,0,0,967,975,7,11,0,0,968,975,5,146,0,0,969, + 975,5,147,0,0,970,975,5,136,0,0,971,975,5,127,0,0,972,975,5,128, + 0,0,973,975,5,135,0,0,974,950,1,0,0,0,974,951,1,0,0,0,974,952,1, + 0,0,0,974,953,1,0,0,0,974,954,1,0,0,0,974,955,1,0,0,0,974,956,1, + 0,0,0,974,958,1,0,0,0,974,965,1,0,0,0,974,968,1,0,0,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,976,1,0,0,0,976,1044,3,116,58,19,977,978,10,16,0,0,978, + 979,5,138,0,0,979,1044,3,116,58,17,980,981,10,14,0,0,981,982,5,2, + 0,0,982,1044,3,116,58,15,983,984,10,13,0,0,984,985,5,64,0,0,985, + 1044,3,116,58,14,986,988,10,12,0,0,987,989,5,59,0,0,988,987,1,0, + 0,0,988,989,1,0,0,0,989,990,1,0,0,0,990,991,5,9,0,0,991,992,3,116, + 58,0,992,993,5,2,0,0,993,994,3,116,58,13,994,1044,1,0,0,0,995,996, + 10,11,0,0,996,997,5,141,0,0,997,998,3,116,58,0,998,999,5,116,0,0, + 999,1000,3,116,58,11,1000,1044,1,0,0,0,1001,1002,10,31,0,0,1002, + 1004,5,131,0,0,1003,1005,3,114,57,0,1004,1003,1,0,0,0,1004,1005, + 1,0,0,0,1005,1006,1,0,0,0,1006,1044,5,150,0,0,1007,1008,10,27,0, + 0,1008,1009,5,130,0,0,1009,1010,3,116,58,0,1010,1011,5,149,0,0,1011, + 1044,1,0,0,0,1012,1013,10,26,0,0,1013,1014,5,121,0,0,1014,1044,5, + 109,0,0,1015,1016,10,25,0,0,1016,1017,5,121,0,0,1017,1044,3,156, + 78,0,1018,1019,10,24,0,0,1019,1020,5,137,0,0,1020,1021,5,130,0,0, + 1021,1022,3,116,58,0,1022,1023,5,149,0,0,1023,1044,1,0,0,0,1024, + 1025,10,23,0,0,1025,1026,5,137,0,0,1026,1044,5,109,0,0,1027,1028, + 10,22,0,0,1028,1029,5,137,0,0,1029,1044,3,156,78,0,1030,1031,10, + 17,0,0,1031,1033,5,47,0,0,1032,1034,5,59,0,0,1033,1032,1,0,0,0,1033, + 1034,1,0,0,0,1034,1035,1,0,0,0,1035,1044,5,60,0,0,1036,1041,10,10, + 0,0,1037,1038,5,6,0,0,1038,1042,3,156,78,0,1039,1040,5,6,0,0,1040, + 1042,5,111,0,0,1041,1037,1,0,0,0,1041,1039,1,0,0,0,1042,1044,1,0, + 0,0,1043,935,1,0,0,0,1043,942,1,0,0,0,1043,949,1,0,0,0,1043,977, + 1,0,0,0,1043,980,1,0,0,0,1043,983,1,0,0,0,1043,986,1,0,0,0,1043, + 995,1,0,0,0,1043,1001,1,0,0,0,1043,1007,1,0,0,0,1043,1012,1,0,0, + 0,1043,1015,1,0,0,0,1043,1018,1,0,0,0,1043,1024,1,0,0,0,1043,1027, + 1,0,0,0,1043,1030,1,0,0,0,1043,1036,1,0,0,0,1044,1047,1,0,0,0,1045, + 1043,1,0,0,0,1045,1046,1,0,0,0,1046,117,1,0,0,0,1047,1045,1,0,0, + 0,1048,1049,5,131,0,0,1049,1054,3,156,78,0,1050,1051,5,117,0,0,1051, + 1053,3,156,78,0,1052,1050,1,0,0,0,1053,1056,1,0,0,0,1054,1052,1, + 0,0,0,1054,1055,1,0,0,0,1055,1058,1,0,0,0,1056,1054,1,0,0,0,1057, + 1059,5,117,0,0,1058,1057,1,0,0,0,1058,1059,1,0,0,0,1059,1060,1,0, + 0,0,1060,1061,5,150,0,0,1061,1076,1,0,0,0,1062,1067,3,156,78,0,1063, + 1064,5,117,0,0,1064,1066,3,156,78,0,1065,1063,1,0,0,0,1066,1069, + 1,0,0,0,1067,1065,1,0,0,0,1067,1068,1,0,0,0,1068,1071,1,0,0,0,1069, + 1067,1,0,0,0,1070,1072,5,117,0,0,1071,1070,1,0,0,0,1071,1072,1,0, + 0,0,1072,1076,1,0,0,0,1073,1074,5,131,0,0,1074,1076,5,150,0,0,1075, + 1048,1,0,0,0,1075,1062,1,0,0,0,1075,1073,1,0,0,0,1076,1077,1,0,0, + 0,1077,1080,5,112,0,0,1078,1081,3,36,18,0,1079,1081,3,116,58,0,1080, + 1078,1,0,0,0,1080,1079,1,0,0,0,1081,119,1,0,0,0,1082,1083,5,133, + 0,0,1083,1087,3,156,78,0,1084,1086,3,122,61,0,1085,1084,1,0,0,0, + 1086,1089,1,0,0,0,1087,1085,1,0,0,0,1087,1088,1,0,0,0,1088,1090, + 1,0,0,0,1089,1087,1,0,0,0,1090,1091,5,152,0,0,1091,1092,5,125,0, + 0,1092,1115,1,0,0,0,1093,1094,5,133,0,0,1094,1098,3,156,78,0,1095, + 1097,3,122,61,0,1096,1095,1,0,0,0,1097,1100,1,0,0,0,1098,1096,1, + 0,0,0,1098,1099,1,0,0,0,1099,1101,1,0,0,0,1100,1098,1,0,0,0,1101, + 1107,5,125,0,0,1102,1108,3,120,60,0,1103,1104,5,129,0,0,1104,1105, + 3,116,58,0,1105,1106,5,148,0,0,1106,1108,1,0,0,0,1107,1102,1,0,0, + 0,1107,1103,1,0,0,0,1107,1108,1,0,0,0,1108,1109,1,0,0,0,1109,1110, + 5,133,0,0,1110,1111,5,152,0,0,1111,1112,3,156,78,0,1112,1113,5,125, + 0,0,1113,1115,1,0,0,0,1114,1082,1,0,0,0,1114,1093,1,0,0,0,1115,121, + 1,0,0,0,1116,1117,3,156,78,0,1117,1118,5,123,0,0,1118,1119,3,162, + 81,0,1119,1128,1,0,0,0,1120,1121,3,156,78,0,1121,1122,5,123,0,0, + 1122,1123,5,129,0,0,1123,1124,3,116,58,0,1124,1125,5,148,0,0,1125, + 1128,1,0,0,0,1126,1128,3,156,78,0,1127,1116,1,0,0,0,1127,1120,1, + 0,0,0,1127,1126,1,0,0,0,1128,123,1,0,0,0,1129,1134,3,126,63,0,1130, + 1131,5,117,0,0,1131,1133,3,126,63,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,1138,1,0,0,0,1136, + 1134,1,0,0,0,1137,1139,5,117,0,0,1138,1137,1,0,0,0,1138,1139,1,0, + 0,0,1139,125,1,0,0,0,1140,1141,3,156,78,0,1141,1142,5,6,0,0,1142, + 1143,5,131,0,0,1143,1144,3,44,22,0,1144,1145,5,150,0,0,1145,1151, + 1,0,0,0,1146,1147,3,116,58,0,1147,1148,5,6,0,0,1148,1149,3,156,78, + 0,1149,1151,1,0,0,0,1150,1140,1,0,0,0,1150,1146,1,0,0,0,1151,127, + 1,0,0,0,1152,1160,3,160,80,0,1153,1154,3,136,68,0,1154,1155,5,121, + 0,0,1155,1157,1,0,0,0,1156,1153,1,0,0,0,1156,1157,1,0,0,0,1157,1158, + 1,0,0,0,1158,1160,3,130,65,0,1159,1152,1,0,0,0,1159,1156,1,0,0,0, + 1160,129,1,0,0,0,1161,1166,3,156,78,0,1162,1163,5,121,0,0,1163,1165, + 3,156,78,0,1164,1162,1,0,0,0,1165,1168,1,0,0,0,1166,1164,1,0,0,0, + 1166,1167,1,0,0,0,1167,131,1,0,0,0,1168,1166,1,0,0,0,1169,1170,6, + 66,-1,0,1170,1179,3,136,68,0,1171,1179,3,134,67,0,1172,1173,5,131, + 0,0,1173,1174,3,44,22,0,1174,1175,5,150,0,0,1175,1179,1,0,0,0,1176, + 1179,3,120,60,0,1177,1179,3,160,80,0,1178,1169,1,0,0,0,1178,1171, + 1,0,0,0,1178,1172,1,0,0,0,1178,1176,1,0,0,0,1178,1177,1,0,0,0,1179, + 1188,1,0,0,0,1180,1184,10,3,0,0,1181,1185,3,154,77,0,1182,1183,5, + 6,0,0,1183,1185,3,156,78,0,1184,1181,1,0,0,0,1184,1182,1,0,0,0,1185, + 1187,1,0,0,0,1186,1180,1,0,0,0,1187,1190,1,0,0,0,1188,1186,1,0,0, + 0,1188,1189,1,0,0,0,1189,133,1,0,0,0,1190,1188,1,0,0,0,1191,1192, + 3,156,78,0,1192,1194,5,131,0,0,1193,1195,3,138,69,0,1194,1193,1, + 0,0,0,1194,1195,1,0,0,0,1195,1196,1,0,0,0,1196,1197,5,150,0,0,1197, + 135,1,0,0,0,1198,1199,3,140,70,0,1199,1200,5,121,0,0,1200,1202,1, + 0,0,0,1201,1198,1,0,0,0,1201,1202,1,0,0,0,1202,1203,1,0,0,0,1203, + 1204,3,156,78,0,1204,137,1,0,0,0,1205,1210,3,116,58,0,1206,1207, + 5,117,0,0,1207,1209,3,116,58,0,1208,1206,1,0,0,0,1209,1212,1,0,0, + 0,1210,1208,1,0,0,0,1210,1211,1,0,0,0,1211,1214,1,0,0,0,1212,1210, + 1,0,0,0,1213,1215,5,117,0,0,1214,1213,1,0,0,0,1214,1215,1,0,0,0, + 1215,139,1,0,0,0,1216,1217,3,156,78,0,1217,141,1,0,0,0,1218,1227, + 5,107,0,0,1219,1220,5,121,0,0,1220,1227,7,12,0,0,1221,1222,5,109, + 0,0,1222,1224,5,121,0,0,1223,1225,7,12,0,0,1224,1223,1,0,0,0,1224, + 1225,1,0,0,0,1225,1227,1,0,0,0,1226,1218,1,0,0,0,1226,1219,1,0,0, + 0,1226,1221,1,0,0,0,1227,143,1,0,0,0,1228,1230,7,13,0,0,1229,1228, + 1,0,0,0,1229,1230,1,0,0,0,1230,1237,1,0,0,0,1231,1238,3,142,71,0, + 1232,1238,5,108,0,0,1233,1238,5,109,0,0,1234,1238,5,110,0,0,1235, + 1238,5,44,0,0,1236,1238,5,58,0,0,1237,1231,1,0,0,0,1237,1232,1,0, + 0,0,1237,1233,1,0,0,0,1237,1234,1,0,0,0,1237,1235,1,0,0,0,1237,1236, + 1,0,0,0,1238,145,1,0,0,0,1239,1243,3,144,72,0,1240,1243,5,111,0, + 0,1241,1243,5,60,0,0,1242,1239,1,0,0,0,1242,1240,1,0,0,0,1242,1241, + 1,0,0,0,1243,147,1,0,0,0,1244,1245,7,14,0,0,1245,149,1,0,0,0,1246, + 1247,7,15,0,0,1247,151,1,0,0,0,1248,1249,7,16,0,0,1249,153,1,0,0, + 0,1250,1253,5,106,0,0,1251,1253,3,152,76,0,1252,1250,1,0,0,0,1252, + 1251,1,0,0,0,1253,155,1,0,0,0,1254,1258,5,106,0,0,1255,1258,3,148, + 74,0,1256,1258,3,150,75,0,1257,1254,1,0,0,0,1257,1255,1,0,0,0,1257, + 1256,1,0,0,0,1258,157,1,0,0,0,1259,1260,3,162,81,0,1260,1261,5,123, + 0,0,1261,1262,3,144,72,0,1262,159,1,0,0,0,1263,1264,3,36,18,0,1264, + 161,1,0,0,0,1265,1268,5,111,0,0,1266,1268,3,164,82,0,1267,1265,1, + 0,0,0,1267,1266,1,0,0,0,1268,163,1,0,0,0,1269,1273,5,143,0,0,1270, + 1272,3,166,83,0,1271,1270,1,0,0,0,1272,1275,1,0,0,0,1273,1271,1, + 0,0,0,1273,1274,1,0,0,0,1274,1276,1,0,0,0,1275,1273,1,0,0,0,1276, + 1277,5,145,0,0,1277,165,1,0,0,0,1278,1279,5,158,0,0,1279,1280,3, + 116,58,0,1280,1281,5,148,0,0,1281,1284,1,0,0,0,1282,1284,5,157,0, + 0,1283,1278,1,0,0,0,1283,1282,1,0,0,0,1284,167,1,0,0,0,1285,1289, + 5,144,0,0,1286,1288,3,170,85,0,1287,1286,1,0,0,0,1288,1291,1,0,0, + 0,1289,1287,1,0,0,0,1289,1290,1,0,0,0,1290,1292,1,0,0,0,1291,1289, + 1,0,0,0,1292,1293,5,0,0,1,1293,169,1,0,0,0,1294,1295,5,160,0,0,1295, + 1296,3,116,58,0,1296,1297,5,148,0,0,1297,1300,1,0,0,0,1298,1300, + 5,159,0,0,1299,1294,1,0,0,0,1299,1298,1,0,0,0,1300,171,1,0,0,0,167, + 175,182,191,198,202,216,220,223,227,230,237,241,250,255,264,272, + 279,283,289,294,302,309,315,327,335,349,353,358,368,377,380,384, + 387,391,394,397,400,403,407,411,414,417,420,424,427,436,442,463, + 480,497,503,509,520,522,533,536,542,550,556,558,562,567,570,573, + 577,581,584,586,589,593,597,600,602,604,609,620,626,633,638,642, + 646,652,654,661,669,672,675,694,708,724,728,739,743,754,758,765, + 769,776,780,785,794,798,822,839,845,848,851,861,867,870,873,881, + 884,888,891,905,922,927,933,939,946,958,962,965,974,988,1004,1033, + 1041,1043,1045,1054,1058,1067,1071,1075,1080,1087,1098,1107,1114, + 1127,1134,1138,1150,1156,1159,1166,1178,1184,1188,1194,1201,1210, + 1214,1224,1226,1229,1237,1242,1252,1257,1267,1273,1283,1289,1299 ] class HogQLParser ( Parser ): @@ -5981,6 +5980,23 @@ def accept(self, visitor:ParseTreeVisitor): return visitor.visitChildren(self) + class ColumnExprBlockContext(ColumnExprContext): + + def __init__(self, parser, ctx:ParserRuleContext): # actually a HogQLParser.ColumnExprContext + super().__init__(parser) + self.copyFrom(ctx) + + def block(self): + return self.getTypedRuleContext(HogQLParser.BlockContext,0) + + + def accept(self, visitor:ParseTreeVisitor): + if hasattr( visitor, "visitColumnExprBlock" ): + return visitor.visitColumnExprBlock(self) + else: + return visitor.visitChildren(self) + + class ColumnExprPrecedence1Context(ColumnExprContext): def __init__(self, parser, ctx:ParserRuleContext): # actually a HogQLParser.ColumnExprContext @@ -6744,7 +6760,7 @@ def columnExpr(self, _p:int=0): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 932 + self.state = 933 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,118,self._ctx) if la_ == 1: @@ -7080,7 +7096,7 @@ def columnExpr(self, _p:int=0): self.state = 898 self.match(HogQLParser.DASH) self.state = 899 - self.columnExpr(20) + self.columnExpr(21) pass elif la_ == 15: @@ -7090,7 +7106,7 @@ def columnExpr(self, _p:int=0): self.state = 900 self.match(HogQLParser.NOT) self.state = 901 - self.columnExpr(14) + self.columnExpr(15) pass elif la_ == 16: @@ -7199,9 +7215,17 @@ def columnExpr(self, _p:int=0): self.columnIdentifier() pass + elif la_ == 24: + localctx = HogQLParser.ColumnExprBlockContext(self, localctx) + self._ctx = localctx + _prevctx = localctx + self.state = 932 + self.block() + pass + self._ctx.stop = self._input.LT(-1) - self.state = 1044 + self.state = 1045 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,130,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: @@ -7209,146 +7233,146 @@ def columnExpr(self, _p:int=0): if self._parseListeners is not None: self.triggerExitRuleEvent() _prevctx = localctx - self.state = 1042 + self.state = 1043 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,129,self._ctx) if la_ == 1: localctx = HogQLParser.ColumnExprPrecedence1Context(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) localctx.left = _prevctx self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 934 - if not self.precpred(self._ctx, 19): + self.state = 935 + if not self.precpred(self._ctx, 20): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 19)") - self.state = 938 + raise FailedPredicateException(self, "self.precpred(self._ctx, 20)") + self.state = 939 self._errHandler.sync(self) token = self._input.LA(1) if token in [113]: - self.state = 935 + self.state = 936 localctx.operator = self.match(HogQLParser.ASTERISK) pass elif token in [152]: - self.state = 936 + self.state = 937 localctx.operator = self.match(HogQLParser.SLASH) pass elif token in [139]: - self.state = 937 + self.state = 938 localctx.operator = self.match(HogQLParser.PERCENT) pass else: raise NoViableAltException(self) - self.state = 940 - localctx.right = self.columnExpr(20) + self.state = 941 + localctx.right = self.columnExpr(21) pass elif la_ == 2: localctx = HogQLParser.ColumnExprPrecedence2Context(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) localctx.left = _prevctx self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 941 - if not self.precpred(self._ctx, 18): + self.state = 942 + if not self.precpred(self._ctx, 19): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 18)") - self.state = 945 + raise FailedPredicateException(self, "self.precpred(self._ctx, 19)") + self.state = 946 self._errHandler.sync(self) token = self._input.LA(1) if token in [140]: - self.state = 942 + self.state = 943 localctx.operator = self.match(HogQLParser.PLUS) pass elif token in [119]: - self.state = 943 + self.state = 944 localctx.operator = self.match(HogQLParser.DASH) pass elif token in [118]: - self.state = 944 + self.state = 945 localctx.operator = self.match(HogQLParser.CONCAT) pass else: raise NoViableAltException(self) - self.state = 947 - localctx.right = self.columnExpr(19) + self.state = 948 + localctx.right = self.columnExpr(20) pass elif la_ == 3: localctx = HogQLParser.ColumnExprPrecedence3Context(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) localctx.left = _prevctx self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 948 - if not self.precpred(self._ctx, 17): + self.state = 949 + if not self.precpred(self._ctx, 18): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 17)") - self.state = 973 + raise FailedPredicateException(self, "self.precpred(self._ctx, 18)") + self.state = 974 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,124,self._ctx) if la_ == 1: - self.state = 949 + self.state = 950 localctx.operator = self.match(HogQLParser.EQ_DOUBLE) pass elif la_ == 2: - self.state = 950 + self.state = 951 localctx.operator = self.match(HogQLParser.EQ_SINGLE) pass elif la_ == 3: - self.state = 951 + self.state = 952 localctx.operator = self.match(HogQLParser.NOT_EQ) pass elif la_ == 4: - self.state = 952 + self.state = 953 localctx.operator = self.match(HogQLParser.LT_EQ) pass elif la_ == 5: - self.state = 953 + self.state = 954 localctx.operator = self.match(HogQLParser.LT) pass elif la_ == 6: - self.state = 954 + self.state = 955 localctx.operator = self.match(HogQLParser.GT_EQ) pass elif la_ == 7: - self.state = 955 + self.state = 956 localctx.operator = self.match(HogQLParser.GT) pass elif la_ == 8: - self.state = 957 + self.state = 958 self._errHandler.sync(self) _la = self._input.LA(1) if _la==59: - self.state = 956 + self.state = 957 localctx.operator = self.match(HogQLParser.NOT) - self.state = 959 + self.state = 960 self.match(HogQLParser.IN) - self.state = 961 + self.state = 962 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,122,self._ctx) if la_ == 1: - self.state = 960 + self.state = 961 self.match(HogQLParser.COHORT) pass elif la_ == 9: - self.state = 964 + self.state = 965 self._errHandler.sync(self) _la = self._input.LA(1) if _la==59: - self.state = 963 + self.state = 964 localctx.operator = self.match(HogQLParser.NOT) - self.state = 966 + self.state = 967 _la = self._input.LA(1) if not(_la==42 or _la==54): self._errHandler.recoverInline(self) @@ -7358,268 +7382,268 @@ def columnExpr(self, _p:int=0): pass elif la_ == 10: - self.state = 967 + self.state = 968 localctx.operator = self.match(HogQLParser.REGEX_SINGLE) pass elif la_ == 11: - self.state = 968 + self.state = 969 localctx.operator = self.match(HogQLParser.REGEX_DOUBLE) pass elif la_ == 12: - self.state = 969 + self.state = 970 localctx.operator = self.match(HogQLParser.NOT_REGEX) pass elif la_ == 13: - self.state = 970 + self.state = 971 localctx.operator = self.match(HogQLParser.IREGEX_SINGLE) pass elif la_ == 14: - self.state = 971 + self.state = 972 localctx.operator = self.match(HogQLParser.IREGEX_DOUBLE) pass elif la_ == 15: - self.state = 972 + self.state = 973 localctx.operator = self.match(HogQLParser.NOT_IREGEX) pass - self.state = 975 - localctx.right = self.columnExpr(18) + self.state = 976 + localctx.right = self.columnExpr(19) pass elif la_ == 4: localctx = HogQLParser.ColumnExprNullishContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 976 - if not self.precpred(self._ctx, 15): - from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 15)") self.state = 977 - self.match(HogQLParser.NULLISH) + if not self.precpred(self._ctx, 16): + from antlr4.error.Errors import FailedPredicateException + raise FailedPredicateException(self, "self.precpred(self._ctx, 16)") self.state = 978 - self.columnExpr(16) + self.match(HogQLParser.NULLISH) + self.state = 979 + self.columnExpr(17) pass elif la_ == 5: localctx = HogQLParser.ColumnExprAndContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 979 - if not self.precpred(self._ctx, 13): - from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 13)") self.state = 980 - self.match(HogQLParser.AND) + if not self.precpred(self._ctx, 14): + from antlr4.error.Errors import FailedPredicateException + raise FailedPredicateException(self, "self.precpred(self._ctx, 14)") self.state = 981 - self.columnExpr(14) + self.match(HogQLParser.AND) + self.state = 982 + self.columnExpr(15) pass elif la_ == 6: localctx = HogQLParser.ColumnExprOrContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 982 - if not self.precpred(self._ctx, 12): - from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 12)") self.state = 983 - self.match(HogQLParser.OR) + if not self.precpred(self._ctx, 13): + from antlr4.error.Errors import FailedPredicateException + raise FailedPredicateException(self, "self.precpred(self._ctx, 13)") self.state = 984 - self.columnExpr(13) + self.match(HogQLParser.OR) + self.state = 985 + self.columnExpr(14) pass elif la_ == 7: localctx = HogQLParser.ColumnExprBetweenContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 985 - if not self.precpred(self._ctx, 11): + self.state = 986 + if not self.precpred(self._ctx, 12): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 11)") - self.state = 987 + raise FailedPredicateException(self, "self.precpred(self._ctx, 12)") + self.state = 988 self._errHandler.sync(self) _la = self._input.LA(1) if _la==59: - self.state = 986 + self.state = 987 self.match(HogQLParser.NOT) - self.state = 989 - self.match(HogQLParser.BETWEEN) self.state = 990 - self.columnExpr(0) + self.match(HogQLParser.BETWEEN) self.state = 991 - self.match(HogQLParser.AND) + self.columnExpr(0) self.state = 992 - self.columnExpr(12) + self.match(HogQLParser.AND) + self.state = 993 + self.columnExpr(13) pass elif la_ == 8: localctx = HogQLParser.ColumnExprTernaryOpContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 994 - if not self.precpred(self._ctx, 10): - from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 10)") self.state = 995 - self.match(HogQLParser.QUERY) + if not self.precpred(self._ctx, 11): + from antlr4.error.Errors import FailedPredicateException + raise FailedPredicateException(self, "self.precpred(self._ctx, 11)") self.state = 996 - self.columnExpr(0) + self.match(HogQLParser.QUERY) self.state = 997 - self.match(HogQLParser.COLON) + self.columnExpr(0) self.state = 998 - self.columnExpr(10) + self.match(HogQLParser.COLON) + self.state = 999 + self.columnExpr(11) pass elif la_ == 9: localctx = HogQLParser.ColumnExprCallContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1000 - if not self.precpred(self._ctx, 30): - from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 30)") self.state = 1001 + if not self.precpred(self._ctx, 31): + from antlr4.error.Errors import FailedPredicateException + raise FailedPredicateException(self, "self.precpred(self._ctx, 31)") + self.state = 1002 self.match(HogQLParser.LPAREN) - self.state = 1003 + self.state = 1004 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & -9007270658588674) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 180986072486903807) != 0) or ((((_la - 129)) & ~0x3f) == 0 and ((1 << (_la - 129)) & 18455) != 0): - self.state = 1002 + self.state = 1003 self.columnExprList() - self.state = 1005 + self.state = 1006 self.match(HogQLParser.RPAREN) pass elif la_ == 10: localctx = HogQLParser.ColumnExprArrayAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1006 - if not self.precpred(self._ctx, 26): - from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 26)") self.state = 1007 - self.match(HogQLParser.LBRACKET) + if not self.precpred(self._ctx, 27): + from antlr4.error.Errors import FailedPredicateException + raise FailedPredicateException(self, "self.precpred(self._ctx, 27)") self.state = 1008 - self.columnExpr(0) + self.match(HogQLParser.LBRACKET) self.state = 1009 + self.columnExpr(0) + self.state = 1010 self.match(HogQLParser.RBRACKET) pass elif la_ == 11: localctx = HogQLParser.ColumnExprTupleAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1011 - if not self.precpred(self._ctx, 25): - from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 25)") self.state = 1012 - self.match(HogQLParser.DOT) + if not self.precpred(self._ctx, 26): + from antlr4.error.Errors import FailedPredicateException + raise FailedPredicateException(self, "self.precpred(self._ctx, 26)") self.state = 1013 + self.match(HogQLParser.DOT) + self.state = 1014 self.match(HogQLParser.DECIMAL_LITERAL) pass elif la_ == 12: localctx = HogQLParser.ColumnExprPropertyAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1014 - if not self.precpred(self._ctx, 24): - from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 24)") self.state = 1015 - self.match(HogQLParser.DOT) + if not self.precpred(self._ctx, 25): + from antlr4.error.Errors import FailedPredicateException + raise FailedPredicateException(self, "self.precpred(self._ctx, 25)") self.state = 1016 + self.match(HogQLParser.DOT) + self.state = 1017 self.identifier() pass elif la_ == 13: localctx = HogQLParser.ColumnExprNullArrayAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1017 - if not self.precpred(self._ctx, 23): - from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 23)") self.state = 1018 - self.match(HogQLParser.NULL_PROPERTY) + if not self.precpred(self._ctx, 24): + from antlr4.error.Errors import FailedPredicateException + raise FailedPredicateException(self, "self.precpred(self._ctx, 24)") self.state = 1019 - self.match(HogQLParser.LBRACKET) + self.match(HogQLParser.NULL_PROPERTY) self.state = 1020 - self.columnExpr(0) + self.match(HogQLParser.LBRACKET) self.state = 1021 + self.columnExpr(0) + self.state = 1022 self.match(HogQLParser.RBRACKET) pass elif la_ == 14: localctx = HogQLParser.ColumnExprNullTupleAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1023 - if not self.precpred(self._ctx, 22): - from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 22)") self.state = 1024 - self.match(HogQLParser.NULL_PROPERTY) + if not self.precpred(self._ctx, 23): + from antlr4.error.Errors import FailedPredicateException + raise FailedPredicateException(self, "self.precpred(self._ctx, 23)") self.state = 1025 + self.match(HogQLParser.NULL_PROPERTY) + self.state = 1026 self.match(HogQLParser.DECIMAL_LITERAL) pass elif la_ == 15: localctx = HogQLParser.ColumnExprNullPropertyAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1026 - if not self.precpred(self._ctx, 21): - from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 21)") self.state = 1027 - self.match(HogQLParser.NULL_PROPERTY) + if not self.precpred(self._ctx, 22): + from antlr4.error.Errors import FailedPredicateException + raise FailedPredicateException(self, "self.precpred(self._ctx, 22)") self.state = 1028 + self.match(HogQLParser.NULL_PROPERTY) + self.state = 1029 self.identifier() pass elif la_ == 16: localctx = HogQLParser.ColumnExprIsNullContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1029 - if not self.precpred(self._ctx, 16): - from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 16)") self.state = 1030 + if not self.precpred(self._ctx, 17): + from antlr4.error.Errors import FailedPredicateException + raise FailedPredicateException(self, "self.precpred(self._ctx, 17)") + self.state = 1031 self.match(HogQLParser.IS) - self.state = 1032 + self.state = 1033 self._errHandler.sync(self) _la = self._input.LA(1) if _la==59: - self.state = 1031 + self.state = 1032 self.match(HogQLParser.NOT) - self.state = 1034 + self.state = 1035 self.match(HogQLParser.NULL_SQL) pass elif la_ == 17: localctx = HogQLParser.ColumnExprAliasContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1035 - if not self.precpred(self._ctx, 9): + self.state = 1036 + if not self.precpred(self._ctx, 10): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 9)") - self.state = 1040 + raise FailedPredicateException(self, "self.precpred(self._ctx, 10)") + self.state = 1041 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,128,self._ctx) if la_ == 1: - self.state = 1036 - self.match(HogQLParser.AS) self.state = 1037 + self.match(HogQLParser.AS) + self.state = 1038 self.identifier() pass elif la_ == 2: - self.state = 1038 - self.match(HogQLParser.AS) self.state = 1039 + self.match(HogQLParser.AS) + self.state = 1040 self.match(HogQLParser.STRING_LITERAL) pass @@ -7627,7 +7651,7 @@ def columnExpr(self, _p:int=0): pass - self.state = 1046 + self.state = 1047 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,130,self._ctx) @@ -7696,85 +7720,85 @@ def columnLambdaExpr(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1074 + self.state = 1075 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,135,self._ctx) if la_ == 1: - self.state = 1047 - self.match(HogQLParser.LPAREN) self.state = 1048 + self.match(HogQLParser.LPAREN) + self.state = 1049 self.identifier() - self.state = 1053 + self.state = 1054 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,131,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 1049 - self.match(HogQLParser.COMMA) self.state = 1050 + self.match(HogQLParser.COMMA) + self.state = 1051 self.identifier() - self.state = 1055 + self.state = 1056 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,131,self._ctx) - self.state = 1057 + self.state = 1058 self._errHandler.sync(self) _la = self._input.LA(1) if _la==117: - self.state = 1056 + self.state = 1057 self.match(HogQLParser.COMMA) - self.state = 1059 + self.state = 1060 self.match(HogQLParser.RPAREN) pass elif la_ == 2: - self.state = 1061 + self.state = 1062 self.identifier() - self.state = 1066 + self.state = 1067 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,133,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 1062 - self.match(HogQLParser.COMMA) self.state = 1063 + self.match(HogQLParser.COMMA) + self.state = 1064 self.identifier() - self.state = 1068 + self.state = 1069 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,133,self._ctx) - self.state = 1070 + self.state = 1071 self._errHandler.sync(self) _la = self._input.LA(1) if _la==117: - self.state = 1069 + self.state = 1070 self.match(HogQLParser.COMMA) pass elif la_ == 3: - self.state = 1072 - self.match(HogQLParser.LPAREN) self.state = 1073 + self.match(HogQLParser.LPAREN) + self.state = 1074 self.match(HogQLParser.RPAREN) pass - self.state = 1076 + self.state = 1077 self.match(HogQLParser.ARROW) - self.state = 1079 + self.state = 1080 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,136,self._ctx) if la_ == 1: - self.state = 1077 + self.state = 1078 self.block() pass elif la_ == 2: - self.state = 1078 + self.state = 1079 self.columnExpr(0) pass @@ -7889,74 +7913,74 @@ def hogqlxTagElement(self): self.enterRule(localctx, 120, self.RULE_hogqlxTagElement) self._la = 0 # Token type try: - self.state = 1113 + self.state = 1114 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,140,self._ctx) if la_ == 1: localctx = HogQLParser.HogqlxTagElementClosedContext(self, localctx) self.enterOuterAlt(localctx, 1) - self.state = 1081 - self.match(HogQLParser.LT) self.state = 1082 + self.match(HogQLParser.LT) + self.state = 1083 self.identifier() - self.state = 1086 + self.state = 1087 self._errHandler.sync(self) _la = self._input.LA(1) while (((_la) & ~0x3f) == 0 and ((1 << _la) & -1450176743603191810) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 6458554974207) != 0): - self.state = 1083 + self.state = 1084 self.hogqlxTagAttribute() - self.state = 1088 + self.state = 1089 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 1089 - self.match(HogQLParser.SLASH) self.state = 1090 + self.match(HogQLParser.SLASH) + self.state = 1091 self.match(HogQLParser.GT) pass elif la_ == 2: localctx = HogQLParser.HogqlxTagElementNestedContext(self, localctx) self.enterOuterAlt(localctx, 2) - self.state = 1092 - self.match(HogQLParser.LT) self.state = 1093 + self.match(HogQLParser.LT) + self.state = 1094 self.identifier() - self.state = 1097 + self.state = 1098 self._errHandler.sync(self) _la = self._input.LA(1) while (((_la) & ~0x3f) == 0 and ((1 << _la) & -1450176743603191810) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 6458554974207) != 0): - self.state = 1094 + self.state = 1095 self.hogqlxTagAttribute() - self.state = 1099 + self.state = 1100 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 1100 + self.state = 1101 self.match(HogQLParser.GT) - self.state = 1106 + self.state = 1107 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,139,self._ctx) if la_ == 1: - self.state = 1101 + self.state = 1102 self.hogqlxTagElement() elif la_ == 2: - self.state = 1102 - self.match(HogQLParser.LBRACE) self.state = 1103 - self.columnExpr(0) + self.match(HogQLParser.LBRACE) self.state = 1104 + self.columnExpr(0) + self.state = 1105 self.match(HogQLParser.RBRACE) - self.state = 1108 - self.match(HogQLParser.LT) self.state = 1109 - self.match(HogQLParser.SLASH) + self.match(HogQLParser.LT) self.state = 1110 - self.identifier() + self.match(HogQLParser.SLASH) self.state = 1111 + self.identifier() + self.state = 1112 self.match(HogQLParser.GT) pass @@ -8015,36 +8039,36 @@ def hogqlxTagAttribute(self): localctx = HogQLParser.HogqlxTagAttributeContext(self, self._ctx, self.state) self.enterRule(localctx, 122, self.RULE_hogqlxTagAttribute) try: - self.state = 1126 + self.state = 1127 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,141,self._ctx) if la_ == 1: self.enterOuterAlt(localctx, 1) - self.state = 1115 - self.identifier() self.state = 1116 - self.match(HogQLParser.EQ_SINGLE) + self.identifier() self.state = 1117 + self.match(HogQLParser.EQ_SINGLE) + self.state = 1118 self.string() pass elif la_ == 2: self.enterOuterAlt(localctx, 2) - self.state = 1119 - self.identifier() self.state = 1120 - self.match(HogQLParser.EQ_SINGLE) + self.identifier() self.state = 1121 - self.match(HogQLParser.LBRACE) + self.match(HogQLParser.EQ_SINGLE) self.state = 1122 - self.columnExpr(0) + self.match(HogQLParser.LBRACE) self.state = 1123 + self.columnExpr(0) + self.state = 1124 self.match(HogQLParser.RBRACE) pass elif la_ == 3: self.enterOuterAlt(localctx, 3) - self.state = 1125 + self.state = 1126 self.identifier() pass @@ -8097,26 +8121,26 @@ def withExprList(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1128 + self.state = 1129 self.withExpr() - self.state = 1133 + self.state = 1134 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,142,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 1129 - self.match(HogQLParser.COMMA) self.state = 1130 + self.match(HogQLParser.COMMA) + self.state = 1131 self.withExpr() - self.state = 1135 + self.state = 1136 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,142,self._ctx) - self.state = 1137 + self.state = 1138 self._errHandler.sync(self) _la = self._input.LA(1) if _la==117: - self.state = 1136 + self.state = 1137 self.match(HogQLParser.COMMA) @@ -8200,32 +8224,32 @@ def withExpr(self): localctx = HogQLParser.WithExprContext(self, self._ctx, self.state) self.enterRule(localctx, 126, self.RULE_withExpr) try: - self.state = 1149 + self.state = 1150 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,144,self._ctx) if la_ == 1: localctx = HogQLParser.WithExprSubqueryContext(self, localctx) self.enterOuterAlt(localctx, 1) - self.state = 1139 - self.identifier() self.state = 1140 - self.match(HogQLParser.AS) + self.identifier() self.state = 1141 - self.match(HogQLParser.LPAREN) + self.match(HogQLParser.AS) self.state = 1142 - self.selectUnionStmt() + self.match(HogQLParser.LPAREN) self.state = 1143 + self.selectUnionStmt() + self.state = 1144 self.match(HogQLParser.RPAREN) pass elif la_ == 2: localctx = HogQLParser.WithExprColumnContext(self, localctx) self.enterOuterAlt(localctx, 2) - self.state = 1145 - self.columnExpr(0) self.state = 1146 - self.match(HogQLParser.AS) + self.columnExpr(0) self.state = 1147 + self.match(HogQLParser.AS) + self.state = 1148 self.identifier() pass @@ -8278,27 +8302,27 @@ def columnIdentifier(self): localctx = HogQLParser.ColumnIdentifierContext(self, self._ctx, self.state) self.enterRule(localctx, 128, self.RULE_columnIdentifier) try: - self.state = 1158 + self.state = 1159 self._errHandler.sync(self) token = self._input.LA(1) if token in [129]: self.enterOuterAlt(localctx, 1) - self.state = 1151 + self.state = 1152 self.placeholder() pass elif token in [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 102, 103, 104, 106]: self.enterOuterAlt(localctx, 2) - self.state = 1155 + self.state = 1156 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,145,self._ctx) if la_ == 1: - self.state = 1152 - self.tableIdentifier() self.state = 1153 + self.tableIdentifier() + self.state = 1154 self.match(HogQLParser.DOT) - self.state = 1157 + self.state = 1158 self.nestedIdentifier() pass else: @@ -8351,18 +8375,18 @@ def nestedIdentifier(self): self.enterRule(localctx, 130, self.RULE_nestedIdentifier) try: self.enterOuterAlt(localctx, 1) - self.state = 1160 + self.state = 1161 self.identifier() - self.state = 1165 + self.state = 1166 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,147,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 1161 - self.match(HogQLParser.DOT) self.state = 1162 + self.match(HogQLParser.DOT) + self.state = 1163 self.identifier() - self.state = 1167 + self.state = 1168 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,147,self._ctx) @@ -8515,7 +8539,7 @@ def tableExpr(self, _p:int=0): self.enterRecursionRule(localctx, 132, self.RULE_tableExpr, _p) try: self.enterOuterAlt(localctx, 1) - self.state = 1177 + self.state = 1178 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,148,self._ctx) if la_ == 1: @@ -8523,7 +8547,7 @@ def tableExpr(self, _p:int=0): self._ctx = localctx _prevctx = localctx - self.state = 1169 + self.state = 1170 self.tableIdentifier() pass @@ -8531,7 +8555,7 @@ def tableExpr(self, _p:int=0): localctx = HogQLParser.TableExprFunctionContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 1170 + self.state = 1171 self.tableFunctionExpr() pass @@ -8539,11 +8563,11 @@ def tableExpr(self, _p:int=0): localctx = HogQLParser.TableExprSubqueryContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 1171 - self.match(HogQLParser.LPAREN) self.state = 1172 - self.selectUnionStmt() + self.match(HogQLParser.LPAREN) self.state = 1173 + self.selectUnionStmt() + self.state = 1174 self.match(HogQLParser.RPAREN) pass @@ -8551,7 +8575,7 @@ def tableExpr(self, _p:int=0): localctx = HogQLParser.TableExprTagContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 1175 + self.state = 1176 self.hogqlxTagElement() pass @@ -8559,13 +8583,13 @@ def tableExpr(self, _p:int=0): localctx = HogQLParser.TableExprPlaceholderContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 1176 + self.state = 1177 self.placeholder() pass self._ctx.stop = self._input.LT(-1) - self.state = 1187 + self.state = 1188 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,150,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: @@ -8575,27 +8599,27 @@ def tableExpr(self, _p:int=0): _prevctx = localctx localctx = HogQLParser.TableExprAliasContext(self, HogQLParser.TableExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_tableExpr) - self.state = 1179 + self.state = 1180 if not self.precpred(self._ctx, 3): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 3)") - self.state = 1183 + self.state = 1184 self._errHandler.sync(self) token = self._input.LA(1) if token in [20, 30, 40, 49, 106]: - self.state = 1180 + self.state = 1181 self.alias() pass elif token in [6]: - self.state = 1181 - self.match(HogQLParser.AS) self.state = 1182 + self.match(HogQLParser.AS) + self.state = 1183 self.identifier() pass else: raise NoViableAltException(self) - self.state = 1189 + self.state = 1190 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,150,self._ctx) @@ -8648,19 +8672,19 @@ def tableFunctionExpr(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1190 - self.identifier() self.state = 1191 + self.identifier() + self.state = 1192 self.match(HogQLParser.LPAREN) - self.state = 1193 + self.state = 1194 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & -9007270658588674) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 180986072486903807) != 0) or ((((_la - 129)) & ~0x3f) == 0 and ((1 << (_la - 129)) & 18455) != 0): - self.state = 1192 + self.state = 1193 self.tableArgList() - self.state = 1195 + self.state = 1196 self.match(HogQLParser.RPAREN) except RecognitionException as re: localctx.exception = re @@ -8707,17 +8731,17 @@ def tableIdentifier(self): self.enterRule(localctx, 136, self.RULE_tableIdentifier) try: self.enterOuterAlt(localctx, 1) - self.state = 1200 + self.state = 1201 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,152,self._ctx) if la_ == 1: - self.state = 1197 - self.databaseIdentifier() self.state = 1198 + self.databaseIdentifier() + self.state = 1199 self.match(HogQLParser.DOT) - self.state = 1202 + self.state = 1203 self.identifier() except RecognitionException as re: localctx.exception = re @@ -8767,26 +8791,26 @@ def tableArgList(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1204 + self.state = 1205 self.columnExpr(0) - self.state = 1209 + self.state = 1210 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,153,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 1205 - self.match(HogQLParser.COMMA) self.state = 1206 + self.match(HogQLParser.COMMA) + self.state = 1207 self.columnExpr(0) - self.state = 1211 + self.state = 1212 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,153,self._ctx) - self.state = 1213 + self.state = 1214 self._errHandler.sync(self) _la = self._input.LA(1) if _la==117: - self.state = 1212 + self.state = 1213 self.match(HogQLParser.COMMA) @@ -8828,7 +8852,7 @@ def databaseIdentifier(self): self.enterRule(localctx, 140, self.RULE_databaseIdentifier) try: self.enterOuterAlt(localctx, 1) - self.state = 1215 + self.state = 1216 self.identifier() except RecognitionException as re: localctx.exception = re @@ -8879,19 +8903,19 @@ def floatingLiteral(self): self.enterRule(localctx, 142, self.RULE_floatingLiteral) self._la = 0 # Token type try: - self.state = 1225 + self.state = 1226 self._errHandler.sync(self) token = self._input.LA(1) if token in [107]: self.enterOuterAlt(localctx, 1) - self.state = 1217 + self.state = 1218 self.match(HogQLParser.FLOATING_LITERAL) pass elif token in [121]: self.enterOuterAlt(localctx, 2) - self.state = 1218 - self.match(HogQLParser.DOT) self.state = 1219 + self.match(HogQLParser.DOT) + self.state = 1220 _la = self._input.LA(1) if not(_la==108 or _la==109): self._errHandler.recoverInline(self) @@ -8901,15 +8925,15 @@ def floatingLiteral(self): pass elif token in [109]: self.enterOuterAlt(localctx, 3) - self.state = 1220 - self.match(HogQLParser.DECIMAL_LITERAL) self.state = 1221 + self.match(HogQLParser.DECIMAL_LITERAL) + self.state = 1222 self.match(HogQLParser.DOT) - self.state = 1223 + self.state = 1224 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,155,self._ctx) if la_ == 1: - self.state = 1222 + self.state = 1223 _la = self._input.LA(1) if not(_la==108 or _la==109): self._errHandler.recoverInline(self) @@ -8982,11 +9006,11 @@ def numberLiteral(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1228 + self.state = 1229 self._errHandler.sync(self) _la = self._input.LA(1) if _la==119 or _la==140: - self.state = 1227 + self.state = 1228 _la = self._input.LA(1) if not(_la==119 or _la==140): self._errHandler.recoverInline(self) @@ -8995,36 +9019,36 @@ def numberLiteral(self): self.consume() - self.state = 1236 + self.state = 1237 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,158,self._ctx) if la_ == 1: - self.state = 1230 + self.state = 1231 self.floatingLiteral() pass elif la_ == 2: - self.state = 1231 + self.state = 1232 self.match(HogQLParser.OCTAL_LITERAL) pass elif la_ == 3: - self.state = 1232 + self.state = 1233 self.match(HogQLParser.DECIMAL_LITERAL) pass elif la_ == 4: - self.state = 1233 + self.state = 1234 self.match(HogQLParser.HEXADECIMAL_LITERAL) pass elif la_ == 5: - self.state = 1234 + self.state = 1235 self.match(HogQLParser.INF) pass elif la_ == 6: - self.state = 1235 + self.state = 1236 self.match(HogQLParser.NAN_SQL) pass @@ -9072,22 +9096,22 @@ def literal(self): localctx = HogQLParser.LiteralContext(self, self._ctx, self.state) self.enterRule(localctx, 146, self.RULE_literal) try: - self.state = 1241 + self.state = 1242 self._errHandler.sync(self) token = self._input.LA(1) if token in [44, 58, 107, 108, 109, 110, 119, 121, 140]: self.enterOuterAlt(localctx, 1) - self.state = 1238 + self.state = 1239 self.numberLiteral() pass elif token in [111]: self.enterOuterAlt(localctx, 2) - self.state = 1239 + self.state = 1240 self.match(HogQLParser.STRING_LITERAL) pass elif token in [60]: self.enterOuterAlt(localctx, 3) - self.state = 1240 + self.state = 1241 self.match(HogQLParser.NULL_SQL) pass else: @@ -9152,7 +9176,7 @@ def interval(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1243 + self.state = 1244 _la = self._input.LA(1) if not((((_la) & ~0x3f) == 0 and ((1 << _la) & 216173331871694848) != 0) or ((((_la - 71)) & ~0x3f) == 0 and ((1 << (_la - 71)) & 8724152577) != 0)): self._errHandler.recoverInline(self) @@ -9449,7 +9473,7 @@ def keyword(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1245 + self.state = 1246 _la = self._input.LA(1) if not((((_la) & ~0x3f) == 0 and ((1 << _la) & -1666350075474886658) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 943816933247) != 0)): self._errHandler.recoverInline(self) @@ -9503,7 +9527,7 @@ def keywordForAlias(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1247 + self.state = 1248 _la = self._input.LA(1) if not((((_la) & ~0x3f) == 0 and ((1 << _la) & 564050539839488) != 0)): self._errHandler.recoverInline(self) @@ -9550,17 +9574,17 @@ def alias(self): localctx = HogQLParser.AliasContext(self, self._ctx, self.state) self.enterRule(localctx, 154, self.RULE_alias) try: - self.state = 1251 + self.state = 1252 self._errHandler.sync(self) token = self._input.LA(1) if token in [106]: self.enterOuterAlt(localctx, 1) - self.state = 1249 + self.state = 1250 self.match(HogQLParser.IDENTIFIER) pass elif token in [20, 30, 40, 49]: self.enterOuterAlt(localctx, 2) - self.state = 1250 + self.state = 1251 self.keywordForAlias() pass else: @@ -9610,22 +9634,22 @@ def identifier(self): localctx = HogQLParser.IdentifierContext(self, self._ctx, self.state) self.enterRule(localctx, 156, self.RULE_identifier) try: - self.state = 1256 + self.state = 1257 self._errHandler.sync(self) token = self._input.LA(1) if token in [106]: self.enterOuterAlt(localctx, 1) - self.state = 1253 + self.state = 1254 self.match(HogQLParser.IDENTIFIER) pass elif token in [21, 39, 56, 57, 71, 79, 98, 104]: self.enterOuterAlt(localctx, 2) - self.state = 1254 + self.state = 1255 self.interval() pass elif token in [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 37, 38, 40, 41, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 99, 100, 102, 103]: self.enterOuterAlt(localctx, 3) - self.state = 1255 + self.state = 1256 self.keyword() pass else: @@ -9676,11 +9700,11 @@ def enumValue(self): self.enterRule(localctx, 158, self.RULE_enumValue) try: self.enterOuterAlt(localctx, 1) - self.state = 1258 - self.string() self.state = 1259 - self.match(HogQLParser.EQ_SINGLE) + self.string() self.state = 1260 + self.match(HogQLParser.EQ_SINGLE) + self.state = 1261 self.numberLiteral() except RecognitionException as re: localctx.exception = re @@ -9698,15 +9722,9 @@ def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): super().__init__(parent, invokingState) self.parser = parser - def LBRACE(self): - return self.getToken(HogQLParser.LBRACE, 0) - - def columnExpr(self): - return self.getTypedRuleContext(HogQLParser.ColumnExprContext,0) - + def block(self): + return self.getTypedRuleContext(HogQLParser.BlockContext,0) - def RBRACE(self): - return self.getToken(HogQLParser.RBRACE, 0) def getRuleIndex(self): return HogQLParser.RULE_placeholder @@ -9726,12 +9744,8 @@ def placeholder(self): self.enterRule(localctx, 160, self.RULE_placeholder) try: self.enterOuterAlt(localctx, 1) - self.state = 1262 - self.match(HogQLParser.LBRACE) self.state = 1263 - self.columnExpr(0) - self.state = 1264 - self.match(HogQLParser.RBRACE) + self.block() except RecognitionException as re: localctx.exception = re self._errHandler.reportError(self, re) @@ -9772,17 +9786,17 @@ def string(self): localctx = HogQLParser.StringContext(self, self._ctx, self.state) self.enterRule(localctx, 162, self.RULE_string) try: - self.state = 1268 + self.state = 1267 self._errHandler.sync(self) token = self._input.LA(1) if token in [111]: self.enterOuterAlt(localctx, 1) - self.state = 1266 + self.state = 1265 self.match(HogQLParser.STRING_LITERAL) pass elif token in [143]: self.enterOuterAlt(localctx, 2) - self.state = 1267 + self.state = 1266 self.templateString() pass else: @@ -9836,19 +9850,19 @@ def templateString(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1270 + self.state = 1269 self.match(HogQLParser.QUOTE_SINGLE_TEMPLATE) - self.state = 1274 + self.state = 1273 self._errHandler.sync(self) _la = self._input.LA(1) while _la==157 or _la==158: - self.state = 1271 + self.state = 1270 self.stringContents() - self.state = 1276 + self.state = 1275 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 1277 + self.state = 1276 self.match(HogQLParser.QUOTE_SINGLE) except RecognitionException as re: localctx.exception = re @@ -9896,21 +9910,21 @@ def stringContents(self): localctx = HogQLParser.StringContentsContext(self, self._ctx, self.state) self.enterRule(localctx, 166, self.RULE_stringContents) try: - self.state = 1284 + self.state = 1283 self._errHandler.sync(self) token = self._input.LA(1) if token in [158]: self.enterOuterAlt(localctx, 1) - self.state = 1279 + self.state = 1278 self.match(HogQLParser.STRING_ESCAPE_TRIGGER) - self.state = 1280 + self.state = 1279 self.columnExpr(0) - self.state = 1281 + self.state = 1280 self.match(HogQLParser.RBRACE) pass elif token in [157]: self.enterOuterAlt(localctx, 2) - self.state = 1283 + self.state = 1282 self.match(HogQLParser.STRING_TEXT) pass else: @@ -9964,19 +9978,19 @@ def fullTemplateString(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1286 + self.state = 1285 self.match(HogQLParser.QUOTE_SINGLE_TEMPLATE_FULL) - self.state = 1290 + self.state = 1289 self._errHandler.sync(self) _la = self._input.LA(1) while _la==159 or _la==160: - self.state = 1287 + self.state = 1286 self.stringContentsFull() - self.state = 1292 + self.state = 1291 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 1293 + self.state = 1292 self.match(HogQLParser.EOF) except RecognitionException as re: localctx.exception = re @@ -10024,21 +10038,21 @@ def stringContentsFull(self): localctx = HogQLParser.StringContentsFullContext(self, self._ctx, self.state) self.enterRule(localctx, 170, self.RULE_stringContentsFull) try: - self.state = 1300 + self.state = 1299 self._errHandler.sync(self) token = self._input.LA(1) if token in [160]: self.enterOuterAlt(localctx, 1) - self.state = 1295 + self.state = 1294 self.match(HogQLParser.FULL_STRING_ESCAPE_TRIGGER) - self.state = 1296 + self.state = 1295 self.columnExpr(0) - self.state = 1297 + self.state = 1296 self.match(HogQLParser.RBRACE) pass elif token in [159]: self.enterOuterAlt(localctx, 2) - self.state = 1299 + self.state = 1298 self.match(HogQLParser.FULL_STRING_TEXT) pass else: @@ -10077,71 +10091,71 @@ def joinExpr_sempred(self, localctx:JoinExprContext, predIndex:int): def columnExpr_sempred(self, localctx:ColumnExprContext, predIndex:int): if predIndex == 2: - return self.precpred(self._ctx, 19) + return self.precpred(self._ctx, 20) if predIndex == 3: - return self.precpred(self._ctx, 18) + return self.precpred(self._ctx, 19) if predIndex == 4: - return self.precpred(self._ctx, 17) + return self.precpred(self._ctx, 18) if predIndex == 5: - return self.precpred(self._ctx, 15) + return self.precpred(self._ctx, 16) if predIndex == 6: - return self.precpred(self._ctx, 13) + return self.precpred(self._ctx, 14) if predIndex == 7: - return self.precpred(self._ctx, 12) + return self.precpred(self._ctx, 13) if predIndex == 8: - return self.precpred(self._ctx, 11) + return self.precpred(self._ctx, 12) if predIndex == 9: - return self.precpred(self._ctx, 10) + return self.precpred(self._ctx, 11) if predIndex == 10: - return self.precpred(self._ctx, 30) + return self.precpred(self._ctx, 31) if predIndex == 11: - return self.precpred(self._ctx, 26) + return self.precpred(self._ctx, 27) if predIndex == 12: - return self.precpred(self._ctx, 25) + return self.precpred(self._ctx, 26) if predIndex == 13: - return self.precpred(self._ctx, 24) + return self.precpred(self._ctx, 25) if predIndex == 14: - return self.precpred(self._ctx, 23) + return self.precpred(self._ctx, 24) if predIndex == 15: - return self.precpred(self._ctx, 22) + return self.precpred(self._ctx, 23) if predIndex == 16: - return self.precpred(self._ctx, 21) + return self.precpred(self._ctx, 22) if predIndex == 17: - return self.precpred(self._ctx, 16) + return self.precpred(self._ctx, 17) if predIndex == 18: - return self.precpred(self._ctx, 9) + return self.precpred(self._ctx, 10) def tableExpr_sempred(self, localctx:TableExprContext, predIndex:int): diff --git a/posthog/hogql/grammar/HogQLParserVisitor.py b/posthog/hogql/grammar/HogQLParserVisitor.py index be0ba9f0e29da..d841b7a5e02b1 100644 --- a/posthog/hogql/grammar/HogQLParserVisitor.py +++ b/posthog/hogql/grammar/HogQLParserVisitor.py @@ -404,6 +404,11 @@ def visitColumnExprNullTupleAccess(self, ctx:HogQLParser.ColumnExprNullTupleAcce return self.visitChildren(ctx) + # Visit a parse tree produced by HogQLParser#ColumnExprBlock. + def visitColumnExprBlock(self, ctx:HogQLParser.ColumnExprBlockContext): + return self.visitChildren(ctx) + + # Visit a parse tree produced by HogQLParser#ColumnExprPrecedence1. def visitColumnExprPrecedence1(self, ctx:HogQLParser.ColumnExprPrecedence1Context): return self.visitChildren(ctx) diff --git a/posthog/hogql/parser.py b/posthog/hogql/parser.py index 960dbe3ebf824..7bf1e97bb8082 100644 --- a/posthog/hogql/parser.py +++ b/posthog/hogql/parser.py @@ -923,6 +923,9 @@ def visitColumnExprWinFunction(self, ctx: HogQLParser.ColumnExprWinFunctionConte def visitColumnExprIdentifier(self, ctx: HogQLParser.ColumnExprIdentifierContext): return self.visit(ctx.columnIdentifier()) + def visitColumnExprBlock(self, ctx: HogQLParser.ColumnExprBlockContext): + return self.visit(ctx.block()) + def visitColumnExprFunction(self, ctx: HogQLParser.ColumnExprFunctionContext): name = self.visit(ctx.identifier()) @@ -1122,7 +1125,7 @@ def visitHogqlxTagAttribute(self, ctx: HogQLParser.HogqlxTagAttributeContext): return ast.HogQLXAttribute(name=name, value=ast.Constant(value=True)) def visitPlaceholder(self, ctx: HogQLParser.PlaceholderContext): - return ast.Placeholder(expr=self.visit(ctx.columnExpr())) + return self.visit(ctx.block()) def visitColumnExprTemplateString(self, ctx: HogQLParser.ColumnExprTemplateStringContext): return self.visit(ctx.templateString()) diff --git a/posthog/hogql/placeholders.py b/posthog/hogql/placeholders.py index 7a891e5568b75..c87e9fea84d62 100644 --- a/posthog/hogql/placeholders.py +++ b/posthog/hogql/placeholders.py @@ -23,8 +23,16 @@ def __init__(self): def visit_cte(self, node: ast.CTE): super().visit(node.expr) - def visit_placeholder(self, node: ast.Placeholder): - self.found.add(node.field) + def visit_block(self, node: ast.Block): + # TODO: remove all this when we can use bytecode in placeholders + if len(node.declarations) > 1: + raise QueryError("Placeholders can only contain a single declaration") + declaration = node.declarations[0] + if not isinstance(declaration, ast.ExprStatement) and not isinstance(declaration, ast.ReturnStatement): + raise QueryError("Placeholders can only contain a simple expression") + if not isinstance(declaration.expr, ast.Field): + raise QueryError("Placeholders can only contain a single field expression") + self.found.add(".".join(declaration.expr.chain)) class ReplacePlaceholders(CloningVisitor): @@ -32,15 +40,18 @@ def __init__(self, placeholders: Optional[dict[str, ast.Expr]]): super().__init__() self.placeholders = placeholders - def visit_placeholder(self, node): + def visit_block(self, node: ast.Block): + field = node.placeholder_chain + if not field: + raise QueryError("Placeholder must be a field expression") if not self.placeholders: - raise QueryError(f"Unresolved placeholder: {{{node.field}}}") - if node.field in self.placeholders and self.placeholders[node.field] is not None: - new_node = self.placeholders[node.field] + raise QueryError(f"Unresolved placeholder: {{{field}}}") + if field in self.placeholders and self.placeholders[field] is not None: + new_node = self.placeholders[field] new_node.start = node.start new_node.end = node.end return new_node raise QueryError( - f"Placeholder {{{node.field}}} is not available in this context. You can use the following: " + f"Placeholder {{{field}}} is not available in this context. You can use the following: " + ", ".join(f"{placeholder}" for placeholder in self.placeholders) ) diff --git a/posthog/hogql/printer.py b/posthog/hogql/printer.py index 9ea47cf91f764..61bea5e61261f 100644 --- a/posthog/hogql/printer.py +++ b/posthog/hogql/printer.py @@ -590,6 +590,8 @@ def visit_dict(self, node: ast.Dict): def visit_lambda(self, node: ast.Lambda): identifiers = [self._print_identifier(arg) for arg in node.args] + if isinstance(node.expr, ast.Block): + raise QueryError("Cannot print multi line lambdas") if len(identifiers) == 0: raise ValueError("Lambdas require at least one argument") elif len(identifiers) == 1: @@ -1164,7 +1166,7 @@ def visit_call(self, node: ast.Call): ) raise QueryError(f"Unsupported function call '{node.name}(...)'") - def visit_placeholder(self, node: ast.Placeholder): + def visit_block(self, node: ast.Block): raise QueryError(f"Unresolved placeholder: {{{node.field}}}") def visit_alias(self, node: ast.Alias): diff --git a/posthog/hogql/resolver.py b/posthog/hogql/resolver.py index 1ef96523d1bd9..cb61e60226669 100644 --- a/posthog/hogql/resolver.py +++ b/posthog/hogql/resolver.py @@ -519,7 +519,15 @@ def visit_expr_call(self, node: ast.ExprCall): raise QueryError("You can only call simple functions in HogQL, not expressions") def visit_block(self, node: ast.Block): - raise QueryError("You can not use blocks in HogQL") + if len(node.declarations) == 1: + declaration = node.declarations[0] + if isinstance(declaration, ast.ExprStatement) or isinstance(declaration, ast.ReturnStatement): + if isinstance(declaration.expr, ast.Field): + raise QueryError(f"Unresolved placeholder: {{{node.placeholder_chain}}}") + else: + raise QueryError("Blocks can only contain HogQL field access expressions") + raise QueryError("Blocks can only contain a single HogQL expression") + raise QueryError("Unexpected block. It should have been resolved by now.") def visit_lambda(self, node: ast.Lambda): """Visit each SELECT query or subquery.""" diff --git a/posthog/hogql/test/_test_parser.py b/posthog/hogql/test/_test_parser.py index 23356b1835484..08f618572051b 100644 --- a/posthog/hogql/test/_test_parser.py +++ b/posthog/hogql/test/_test_parser.py @@ -735,7 +735,7 @@ def test_expr_with_ignored_sql_comment(self): def test_placeholders(self): self.assertEqual( self._expr("{foo}"), - ast.Placeholder(expr=ast.Field(chain=["foo"])), + ast.Block(declarations=[ast.ExprStatement(expr=ast.Field(chain=["foo"]))]), ) self.assertEqual( self._expr("{foo}", {"foo": ast.Constant(value="bar")}), @@ -946,7 +946,9 @@ def test_select_from_placeholder(self): self._select("select 1 from {placeholder}"), ast.SelectQuery( select=[ast.Constant(value=1)], - select_from=ast.JoinExpr(table=ast.Placeholder(expr=ast.Field(chain=["placeholder"]))), + select_from=ast.JoinExpr( + table=ast.Block(declarations=[ast.ExprStatement(expr=ast.Field(chain=["placeholder"]))]) + ), ), ) self.assertEqual( @@ -1336,7 +1338,7 @@ def test_select_placeholders(self): where=ast.CompareOperation( op=ast.CompareOperationOp.Eq, left=ast.Constant(value=1), - right=ast.Placeholder(expr=ast.Field(chain=["hogql_val_1"])), + right=ast.Block(declarations=[ast.ExprStatement(expr=ast.Field(chain=["hogql_val_1"]))]), ), ), ) diff --git a/posthog/hogql/test/test_placeholders.py b/posthog/hogql/test/test_placeholders.py index ab376c7d307d5..412dad29bfbc1 100644 --- a/posthog/hogql/test/test_placeholders.py +++ b/posthog/hogql/test/test_placeholders.py @@ -15,7 +15,7 @@ def test_replace_placeholders_simple(self): expr = parse_expr("{foo}") self.assertEqual( expr, - ast.Placeholder(expr=ast.Field(chain=["foo"], start=0, end=5), start=0, end=5), + ast.Block(declarations=[ast.ExprStatement(expr=ast.Field(chain=["foo"], start=0, end=5), start=0, end=5)]), ) expr2 = replace_placeholders(expr, {"foo": ast.Constant(value="bar")}) self.assertEqual( @@ -24,7 +24,7 @@ def test_replace_placeholders_simple(self): ) def test_replace_placeholders_error(self): - expr = ast.Placeholder(expr=ast.Field(chain=["foo"])) + expr = ast.Block(declarations=[ast.ExprStatement(expr=ast.Field(chain=["foo"]))]) with self.assertRaises(QueryError) as context: replace_placeholders(expr, {}) self.assertEqual( @@ -47,7 +47,9 @@ def test_replace_placeholders_comparison(self): end=23, op=ast.CompareOperationOp.Lt, left=ast.Field(chain=["timestamp"], start=0, end=9), - right=ast.Placeholder(expr=ast.Field(chain=["timestamp"]), start=12, end=23), + right=ast.Block( + declarations=[ast.ExprStatement(expr=ast.Field(chain=["timestamp"], start=12, end=23))] + ), ), ) expr2 = replace_placeholders(expr, {"timestamp": ast.Constant(value=123)}) @@ -63,7 +65,7 @@ def test_replace_placeholders_comparison(self): ) def test_assert_no_placeholders(self): - expr = ast.Placeholder(expr=ast.Field(chain=["foo"])) + expr = ast.Block(declarations=[ast.ExprStatement(expr=ast.Field(chain=["foo"]))]) with self.assertRaises(QueryError) as context: replace_placeholders(expr, None) self.assertEqual( diff --git a/posthog/hogql/test/test_visitor.py b/posthog/hogql/test/test_visitor.py index 3bd5d25976c11..2ef8cef6f1f41 100644 --- a/posthog/hogql/test/test_visitor.py +++ b/posthog/hogql/test/test_visitor.py @@ -58,7 +58,7 @@ def test_everything_visitor(self): args=[ ast.Alias( alias="d", - expr=ast.Placeholder(expr=ast.Field(chain=["e"])), + expr=ast.Block(declarations=[ast.ExprStatement(expr=ast.Field(chain=["e"]))]), ), ast.OrderExpr( expr=ast.Field(chain=["c"]), diff --git a/posthog/hogql/visitor.py b/posthog/hogql/visitor.py index c5658bbbfe951..0d85b8f659d93 100644 --- a/posthog/hogql/visitor.py +++ b/posthog/hogql/visitor.py @@ -92,9 +92,6 @@ def visit_constant(self, node: ast.Constant): def visit_field(self, node: ast.Field): self.visit(node.type) - def visit_placeholder(self, node: ast.Placeholder): - self.visit(node.type) - def visit_call(self, node: ast.Call): for expr in node.args: self.visit(expr) @@ -493,14 +490,6 @@ def visit_field(self, node: ast.Field): chain=node.chain.copy(), ) - def visit_placeholder(self, node: ast.Placeholder): - return ast.Placeholder( - start=None if self.clear_locations else node.start, - end=None if self.clear_locations else node.end, - type=None if self.clear_types else node.type, - expr=node.expr, - ) - def visit_call(self, node: ast.Call): return ast.Call( start=None if self.clear_locations else node.start, diff --git a/posthog/hogql_queries/error_tracking_query_runner.py b/posthog/hogql_queries/error_tracking_query_runner.py index b9caf173a0eaf..f2d22bc3fee3a 100644 --- a/posthog/hogql_queries/error_tracking_query_runner.py +++ b/posthog/hogql_queries/error_tracking_query_runner.py @@ -105,7 +105,7 @@ def where(self): left=ast.Field(chain=["event"]), right=ast.Constant(value="$exception"), ), - ast.Placeholder(expr=ast.Field(chain=["filters"])), + ast.Block(declarations=[ast.ExprStatement(expr=ast.Field(chain=["filters"]))]), ] groups = [] diff --git a/posthog/hogql_queries/insights/retention_query_runner.py b/posthog/hogql_queries/insights/retention_query_runner.py index 27db6819148e1..8eebd97c71509 100644 --- a/posthog/hogql_queries/insights/retention_query_runner.py +++ b/posthog/hogql_queries/insights/retention_query_runner.py @@ -233,7 +233,7 @@ def actor_query(self, breakdown_values_filter: Optional[int] = None, cumulative: expr=parse_expr( """ arrayMap( - x -> {date_from_start_of_interval} + {to_interval_function}, + x -> ({date_from_start_of_interval} + {to_interval_function}), range(0, {total_intervals}) ) """, diff --git a/posthog/hogql_queries/insights/trends/aggregation_operations.py b/posthog/hogql_queries/insights/trends/aggregation_operations.py index efcf86db14bef..2a7c3cbc13f89 100644 --- a/posthog/hogql_queries/insights/trends/aggregation_operations.py +++ b/posthog/hogql_queries/insights/trends/aggregation_operations.py @@ -51,12 +51,12 @@ def select_aggregation(self) -> ast.Expr: actor = "e.distinct_id" if self.team.aggregate_users_by_distinct_id else "e.person_id" return parse_expr(f"count(DISTINCT {actor})") elif self.series.math == "weekly_active": - return ast.Placeholder( - expr=ast.Field(chain=["replaced"]) + return ast.Block( + declarations=[ast.ExprStatement(expr=ast.Field(chain=["replaced"]))] ) # This gets replaced when doing query orchestration elif self.series.math == "monthly_active": - return ast.Placeholder( - expr=ast.Field(chain=["replaced"]) + return ast.Block( + declarations=[ast.ExprStatement(expr=ast.Field(chain=["replaced"]))] ) # This gets replaced when doing query orchestration elif self.series.math == "unique_session": return parse_expr('count(DISTINCT e."$session_id")') diff --git a/posthog/hogql_queries/insights/trends/trends_query_builder.py b/posthog/hogql_queries/insights/trends/trends_query_builder.py index 393109d7fce90..f802855375d00 100644 --- a/posthog/hogql_queries/insights/trends/trends_query_builder.py +++ b/posthog/hogql_queries/insights/trends/trends_query_builder.py @@ -125,7 +125,7 @@ def _get_date_subqueries(self) -> ast.Expr: return parse_expr( """ arrayMap( - number -> {date_from_start_of_interval} + {plus_interval}, -- NOTE: flipped the order around to use start date + number -> ({date_from_start_of_interval} + {plus_interval}), -- NOTE: flipped the order around to use start date range( 0, coalesce( From 6a3f41562ffee3dff4ccdb1ec2880ac6486e5660 Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Sat, 21 Sep 2024 02:36:38 +0200 Subject: [PATCH 05/11] bump --- hogql_parser/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hogql_parser/setup.py b/hogql_parser/setup.py index 99d9b27c87a64..6fa4ec1c53f1b 100644 --- a/hogql_parser/setup.py +++ b/hogql_parser/setup.py @@ -32,7 +32,7 @@ setup( name="hogql_parser", - version="1.0.41", + version="1.0.42", url="https://github.com/PostHog/posthog/tree/master/hogql_parser", author="PostHog Inc.", author_email="hey@posthog.com", From c3cd95d2de0b11cef279edc3184aa1d5373c6d89 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Sep 2024 00:55:33 +0000 Subject: [PATCH 06/11] Use new hogql-parser version --- requirements.in | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.in b/requirements.in index e6661bc313431..997f7d3116c22 100644 --- a/requirements.in +++ b/requirements.in @@ -104,7 +104,7 @@ phonenumberslite==8.13.6 openai==1.43.0 tiktoken==0.7.0 nh3==0.2.14 -hogql-parser==1.0.41 +hogql-parser==1.0.42 zxcvbn==4.4.28 zstd==1.5.5.1 xmlsec==1.3.13 # Do not change this version - it will break SAML diff --git a/requirements.txt b/requirements.txt index c5e97a93259cf..af319817d74c4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -283,7 +283,7 @@ h11==0.13.0 # wsproto hexbytes==1.0.0 # via dlt -hogql-parser==1.0.41 +hogql-parser==1.0.42 # via -r requirements.in httpcore==1.0.2 # via httpx From 67fb382e10d53fb2cf35982da19fc46dd1443f77 Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Sat, 21 Sep 2024 09:21:42 +0200 Subject: [PATCH 07/11] fixes --- posthog/hogql/ast.py | 2 +- posthog/hogql/parser.py | 4 ++-- posthog/hogql/placeholders.py | 2 +- posthog/hogql/printer.py | 2 +- posthog/hogql/resolver.py | 2 +- posthog/hogql/test/test_placeholders.py | 14 +++++++++++--- posthog/hogql/test/test_printer.py | 2 +- 7 files changed, 18 insertions(+), 10 deletions(-) diff --git a/posthog/hogql/ast.py b/posthog/hogql/ast.py index a1d0eb7eebab2..8e5de3cafacec 100644 --- a/posthog/hogql/ast.py +++ b/posthog/hogql/ast.py @@ -115,7 +115,7 @@ def placeholder_chain(self) -> str | None: declaration = self.declarations[0] if isinstance(declaration, ExprStatement) or isinstance(declaration, ReturnStatement): if isinstance(declaration.expr, Field): - return ".".join(declaration.expr.chain) + return ".".join(str(c) for c in declaration.expr.chain) return None diff --git a/posthog/hogql/parser.py b/posthog/hogql/parser.py index 7bf1e97bb8082..8bb72df115e56 100644 --- a/posthog/hogql/parser.py +++ b/posthog/hogql/parser.py @@ -330,7 +330,7 @@ def visitSelect(self, ctx: HogQLParser.SelectContext): return self.visit(ctx.selectUnionStmt() or ctx.selectStmt() or ctx.hogqlxTagElement()) def visitSelectUnionStmt(self, ctx: HogQLParser.SelectUnionStmtContext): - select_queries: list[ast.SelectQuery | ast.SelectUnionQuery | ast.Placeholder] = [ + select_queries: list[ast.SelectQuery | ast.SelectUnionQuery | ast.Block] = [ self.visit(select) for select in ctx.selectStmtWithParens() ] flattened_queries: list[ast.SelectQuery] = [] @@ -339,7 +339,7 @@ def visitSelectUnionStmt(self, ctx: HogQLParser.SelectUnionStmtContext): flattened_queries.append(query) elif isinstance(query, ast.SelectUnionQuery): flattened_queries.extend(query.select_queries) - elif isinstance(query, ast.Placeholder): + elif isinstance(query, ast.Block): flattened_queries.append(query) # type: ignore else: raise Exception(f"Unexpected query node type {type(query).__name__}") diff --git a/posthog/hogql/placeholders.py b/posthog/hogql/placeholders.py index c87e9fea84d62..0b17af182da4b 100644 --- a/posthog/hogql/placeholders.py +++ b/posthog/hogql/placeholders.py @@ -32,7 +32,7 @@ def visit_block(self, node: ast.Block): raise QueryError("Placeholders can only contain a simple expression") if not isinstance(declaration.expr, ast.Field): raise QueryError("Placeholders can only contain a single field expression") - self.found.add(".".join(declaration.expr.chain)) + self.found.add(".".join(str(c) for c in declaration.expr.chain)) class ReplacePlaceholders(CloningVisitor): diff --git a/posthog/hogql/printer.py b/posthog/hogql/printer.py index 61bea5e61261f..b81890936ab46 100644 --- a/posthog/hogql/printer.py +++ b/posthog/hogql/printer.py @@ -1167,7 +1167,7 @@ def visit_call(self, node: ast.Call): raise QueryError(f"Unsupported function call '{node.name}(...)'") def visit_block(self, node: ast.Block): - raise QueryError(f"Unresolved placeholder: {{{node.field}}}") + raise QueryError(f"Unresolved placeholder: {{{node.placeholder_chain}}}") def visit_alias(self, node: ast.Alias): # Skip hidden aliases completely. diff --git a/posthog/hogql/resolver.py b/posthog/hogql/resolver.py index cb61e60226669..e0c66726a02d7 100644 --- a/posthog/hogql/resolver.py +++ b/posthog/hogql/resolver.py @@ -525,7 +525,7 @@ def visit_block(self, node: ast.Block): if isinstance(declaration.expr, ast.Field): raise QueryError(f"Unresolved placeholder: {{{node.placeholder_chain}}}") else: - raise QueryError("Blocks can only contain HogQL field access expressions") + raise QueryError("You can only use field access in placeholders") raise QueryError("Blocks can only contain a single HogQL expression") raise QueryError("Unexpected block. It should have been resolved by now.") diff --git a/posthog/hogql/test/test_placeholders.py b/posthog/hogql/test/test_placeholders.py index 412dad29bfbc1..6d79c3e499477 100644 --- a/posthog/hogql/test/test_placeholders.py +++ b/posthog/hogql/test/test_placeholders.py @@ -15,7 +15,11 @@ def test_replace_placeholders_simple(self): expr = parse_expr("{foo}") self.assertEqual( expr, - ast.Block(declarations=[ast.ExprStatement(expr=ast.Field(chain=["foo"], start=0, end=5), start=0, end=5)]), + ast.Block( + declarations=[ast.ExprStatement(expr=ast.Field(chain=["foo"], start=1, end=4), start=1, end=4)], + start=0, + end=5, + ), ) expr2 = replace_placeholders(expr, {"foo": ast.Constant(value="bar")}) self.assertEqual( @@ -48,7 +52,11 @@ def test_replace_placeholders_comparison(self): op=ast.CompareOperationOp.Lt, left=ast.Field(chain=["timestamp"], start=0, end=9), right=ast.Block( - declarations=[ast.ExprStatement(expr=ast.Field(chain=["timestamp"], start=12, end=23))] + declarations=[ + ast.ExprStatement(expr=ast.Field(chain=["timestamp"], start=13, end=22), start=13, end=22) + ], + start=12, + end=23, ), ), ) @@ -78,7 +86,7 @@ def test_replace_placeholders_with_cte(self): assert expr.ctes is not None and expr.ctes["test"] is not None assert isinstance(expr.ctes["test"].expr, ast.SelectQuery) - assert isinstance(expr.ctes["test"].expr.select[0], ast.Placeholder) + assert isinstance(expr.ctes["test"].expr.select[0], ast.Block) expr2 = cast(ast.SelectQuery, replace_placeholders(expr, {"foo": ast.Constant(value=1)})) diff --git a/posthog/hogql/test/test_printer.py b/posthog/hogql/test/test_printer.py index a3c4ecd107905..f8494776e9ad6 100644 --- a/posthog/hogql/test/test_printer.py +++ b/posthog/hogql/test/test_printer.py @@ -745,7 +745,7 @@ def test_expr_syntax_errors(self): self._assert_expr_error("this makes little sense", "mismatched input 'makes' expecting ") self._assert_expr_error("1;2", "mismatched input ';' expecting ") self._assert_expr_error("b.a(bla)", "You can only call simple functions in HogQL, not expressions") - self._assert_expr_error("a -> { print(2) }", "You can not use blocks in HogQL") + self._assert_expr_error("a -> { print(2) }", "You can only use field access in placeholders") def test_logic(self): self.assertEqual( From 58cc784b62e61da7a6ed7a5a4eb2e70fcf4e3c97 Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Sat, 21 Sep 2024 09:54:07 +0200 Subject: [PATCH 08/11] mypy --- mypy-baseline.txt | 275 +++++++++++++------------- posthog/hogql/ast.py | 49 ++--- posthog/hogql/bytecode.py | 2 +- posthog/hogql/parser.py | 2 +- posthog/hogql/resolver.py | 21 +- posthog/hogql/test/test_resolver.py | 4 +- posthog/hogql/transforms/in_cohort.py | 11 +- 7 files changed, 185 insertions(+), 179 deletions(-) diff --git a/mypy-baseline.txt b/mypy-baseline.txt index c09e41f207357..ac29496a3e351 100644 --- a/mypy-baseline.txt +++ b/mypy-baseline.txt @@ -3,6 +3,54 @@ posthog/temporal/common/utils.py:0: note: This is likely because "from_activity" posthog/temporal/common/utils.py:0: error: Argument 2 to "__get__" of "classmethod" has incompatible type "type[HeartbeatType]"; expected "type[Never]" [arg-type] posthog/tasks/exports/ordered_csv_renderer.py:0: error: No return value expected [return-value] posthog/warehouse/models/ssh_tunnel.py:0: error: Incompatible types in assignment (expression has type "NoEncryption", variable has type "BestAvailableEncryption") [assignment] +posthog/temporal/data_imports/pipelines/sql_database/helpers.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Dict entry 2 has incompatible type "Literal['auto']": "None"; expected "Literal['json_response', 'header_link', 'auto', 'single_page', 'cursor', 'offset', 'page_number']": "type[BasePaginator]" [dict-item] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Incompatible types in assignment (expression has type "None", variable has type "AuthConfigBase") [assignment] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Argument 1 to "get_auth_class" has incompatible type "Literal['bearer', 'api_key', 'http_basic'] | None"; expected "Literal['bearer', 'api_key', 'http_basic']" [arg-type] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Need type annotation for "dependency_graph" [var-annotated] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Incompatible types in assignment (expression has type "None", target has type "ResolvedParam") [assignment] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Incompatible return value type (got "tuple[TopologicalSorter[Any], dict[str, EndpointResource], dict[str, ResolvedParam]]", expected "tuple[Any, dict[str, EndpointResource], dict[str, ResolvedParam | None]]") [return-value] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Unsupported right operand type for in ("str | Endpoint | None") [operator] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Value of type variable "StrOrLiteralStr" of "parse" of "Formatter" cannot be "str | None" [type-var] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Unsupported right operand type for in ("dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None") [operator] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Unsupported right operand type for in ("dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None") [operator] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Value of type "dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None" is not indexable [index] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Item "None" of "dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None" has no attribute "pop" [union-attr] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Value of type "dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None" is not indexable [index] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Item "None" of "str | None" has no attribute "format" [union-attr] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Argument 1 to "single_entity_path" has incompatible type "str | None"; expected "str" [arg-type] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Item "None" of "dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None" has no attribute "items" [union-attr] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Incompatible types in assignment (expression has type "str | None", variable has type "str") [assignment] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Incompatible types in assignment (expression has type "str | None", variable has type "str") [assignment] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Statement is unreachable [unreachable] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Unpacked dict entry 0 has incompatible type "dict[str, Any] | None"; expected "SupportsKeysAndGetItem[str, Any]" [dict-item] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Unpacked dict entry 1 has incompatible type "dict[str, Any] | None"; expected "SupportsKeysAndGetItem[str, Any]" [dict-item] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Unpacked dict entry 0 has incompatible type "dict[str, Any] | None"; expected "SupportsKeysAndGetItem[str, ResolveParamConfig | IncrementalParamConfig | Any]" [dict-item] +posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Unpacked dict entry 1 has incompatible type "dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None"; expected "SupportsKeysAndGetItem[str, ResolveParamConfig | IncrementalParamConfig | Any]" [dict-item] +posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Not all union combinations were tried because there are too many unions [misc] +posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 2 to "source" has incompatible type "str | None"; expected "str" [arg-type] +posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 3 to "source" has incompatible type "str | None"; expected "str" [arg-type] +posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 4 to "source" has incompatible type "int | None"; expected "int" [arg-type] +posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 6 to "source" has incompatible type "Schema | None"; expected "Schema" [arg-type] +posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 7 to "source" has incompatible type "Literal['evolve', 'discard_value', 'freeze', 'discard_row'] | TSchemaContractDict | None"; expected "Literal['evolve', 'discard_value', 'freeze', 'discard_row'] | TSchemaContractDict" [arg-type] +posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 8 to "source" has incompatible type "type[BaseConfiguration] | None"; expected "type[BaseConfiguration]" [arg-type] +posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 1 to "build_resource_dependency_graph" has incompatible type "EndpointResourceBase | None"; expected "EndpointResourceBase" [arg-type] +posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Incompatible types in assignment (expression has type "list[str] | None", variable has type "list[str]") [assignment] +posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 1 to "setup_incremental_object" has incompatible type "dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None"; expected "dict[str, Any]" [arg-type] +posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument "base_url" to "RESTClient" has incompatible type "str | None"; expected "str" [arg-type] +posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 1 to "exclude_keys" has incompatible type "dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None"; expected "Mapping[str, Any]" [arg-type] +posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Incompatible default for argument "resolved_param" (default has type "ResolvedParam | None", argument has type "ResolvedParam") [assignment] +posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument "module" to "SourceInfo" has incompatible type Module | None; expected Module [arg-type] +posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] posthog/utils.py:0: error: No overload variant of "asdict" matches argument type "type[DataclassInstance]" [call-overload] posthog/utils.py:0: note: Possible overload variants: posthog/utils.py:0: note: def asdict(obj: DataclassInstance) -> dict[str, Any] @@ -117,20 +165,13 @@ posthog/hogql_queries/utils/query_date_range.py:0: error: Item "None" of "Interv posthog/hogql/resolver.py:0: error: List comprehension has incompatible type List[SelectQueryType | None]; expected List[SelectQueryType] [misc] posthog/hogql/resolver.py:0: error: Need type annotation for "columns_with_visible_alias" (hint: "columns_with_visible_alias: dict[, ] = ...") [var-annotated] posthog/hogql/resolver.py:0: error: Statement is unreachable [unreachable] -posthog/hogql/resolver.py:0: error: Incompatible types in assignment (expression has type "Expr", variable has type "SelectQuery | SelectUnionQuery | Field | None") [assignment] posthog/hogql/resolver.py:0: error: Item "None" of "Database | None" has no attribute "get_table" [union-attr] posthog/hogql/resolver.py:0: error: Incompatible types in assignment (expression has type "TableType", variable has type "LazyTableType") [assignment] posthog/hogql/resolver.py:0: error: Argument "table_type" to "TableAliasType" has incompatible type "LazyTableType"; expected "TableType" [arg-type] posthog/hogql/resolver.py:0: error: Incompatible types in assignment (expression has type "LazyTableType", variable has type "TableAliasType") [assignment] -posthog/hogql/resolver.py:0: error: Argument 1 to "clone_expr" has incompatible type "SelectQuery | SelectUnionQuery | Field | None"; expected "Expr" [arg-type] posthog/hogql/resolver.py:0: error: Statement is unreachable [unreachable] posthog/hogql/resolver.py:0: error: Item "None" of "JoinExpr | None" has no attribute "join_type" [union-attr] posthog/hogql/resolver.py:0: error: Argument "select_query_type" to "SelectViewType" has incompatible type "SelectQueryType | None"; expected "SelectQueryType | SelectUnionQueryType" [arg-type] -posthog/hogql/resolver.py:0: error: Item "None" of "SelectQuery | SelectUnionQuery | Field | None" has no attribute "type" [union-attr] -posthog/hogql/resolver.py:0: error: Argument "select_query_type" to "SelectQueryAliasType" has incompatible type "Type | Any | None"; expected "SelectQueryType | SelectUnionQueryType" [arg-type] -posthog/hogql/resolver.py:0: error: Item "None" of "SelectQuery | SelectUnionQuery | Field | None" has no attribute "type" [union-attr] -posthog/hogql/resolver.py:0: error: Incompatible types in assignment (expression has type "Type | Any | None", variable has type "BaseTableType | SelectUnionQueryType | SelectQueryType | SelectQueryAliasType | SelectViewType | None") [assignment] -posthog/hogql/resolver.py:0: error: Argument 1 to "append" of "list" has incompatible type "BaseTableType | SelectUnionQueryType | SelectQueryType | SelectQueryAliasType | SelectViewType | None"; expected "SelectQueryType | SelectUnionQueryType" [arg-type] posthog/hogql/resolver.py:0: error: Statement is unreachable [unreachable] posthog/hogql/resolver.py:0: error: Statement is unreachable [unreachable] posthog/hogql/resolver.py:0: error: Item "None" of "Type | None" has no attribute "resolve_constant_type" [union-attr] @@ -170,7 +211,6 @@ posthog/hogql/transforms/in_cohort.py:0: note: PEP 484 prohibits implicit Option posthog/hogql/transforms/in_cohort.py:0: note: Use https://github.com/hauntsaninja/no_implicit_optional to automatically upgrade your codebase posthog/hogql/transforms/in_cohort.py:0: error: Incompatible type for lookup 'team_id': (got "int | None", expected "str | int") [misc] posthog/hogql/transforms/in_cohort.py:0: error: Incompatible type for lookup 'team_id': (got "int | None", expected "str | int") [misc] -posthog/hogql/transforms/in_cohort.py:0: error: Argument "table" to "JoinExpr" has incompatible type "Expr"; expected "SelectQuery | SelectUnionQuery | Field | None" [arg-type] posthog/hogql/transforms/in_cohort.py:0: error: List item 0 has incompatible type "SelectQueryType | None"; expected "SelectQueryType" [list-item] posthog/hogql/transforms/in_cohort.py:0: error: Item "None" of "JoinConstraint | None" has no attribute "expr" [union-attr] posthog/hogql/transforms/in_cohort.py:0: error: Item "Expr" of "Expr | Any" has no attribute "left" [union-attr] @@ -384,7 +424,23 @@ posthog/test/test_feature_flag_analytics.py:0: error: Item "None" of "Dashboard posthog/test/test_feature_flag_analytics.py:0: error: Item "None" of "Dashboard | None" has no attribute "tiles" [union-attr] posthog/test/test_feature_flag_analytics.py:0: error: Item "None" of "Dashboard | None" has no attribute "tiles" [union-attr] posthog/test/test_feature_flag_analytics.py:0: error: Item "None" of "Dashboard | None" has no attribute "delete" [union-attr] -posthog/temporal/data_imports/pipelines/sql_database/helpers.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/stripe/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/stripe/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/stripe/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/stripe/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/stripe/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/stripe/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/stripe/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/data_imports/pipelines/stripe/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] posthog/tasks/test/test_update_survey_iteration.py:0: error: Item "None" of "FeatureFlag | None" has no attribute "filters" [union-attr] posthog/tasks/test/test_stop_surveys_reached_target.py:0: error: No overload variant of "__sub__" of "datetime" matches argument type "None" [operator] posthog/tasks/test/test_stop_surveys_reached_target.py:0: note: Possible overload variants: @@ -417,6 +473,7 @@ posthog/hogql_queries/test/test_query_runner.py:0: error: Invalid base class "Te posthog/hogql_queries/test/test_hogql_query_runner.py:0: error: Incompatible types in assignment (expression has type "Expr", variable has type "SelectQuery") [assignment] posthog/hogql_queries/test/test_hogql_query_runner.py:0: error: Incompatible types in assignment (expression has type "Expr", variable has type "SelectQuery") [assignment] posthog/hogql_queries/test/test_hogql_query_runner.py:0: error: Incompatible types in assignment (expression has type "Expr", variable has type "SelectQuery") [assignment] +posthog/hogql_queries/test/test_actors_query_runner.py:0: error: Incompatible types in assignment (expression has type "Expr", variable has type "SelectQuery") [assignment] posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py:0: error: Need type annotation for "properties_0" (hint: "properties_0: list[] = ...") [var-annotated] posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py:0: error: Need type annotation for "properties_3" (hint: "properties_3: dict[, ] = ...") [var-annotated] posthog/hogql_queries/legacy_compatibility/test/test_filter_to_query.py:0: error: Need type annotation for "filter" (hint: "filter: dict[, ] = ...") [var-annotated] @@ -429,6 +486,19 @@ posthog/hogql/test/test_timings.py:0: error: No overload variant of "__setitem__ posthog/hogql/test/test_timings.py:0: note: Possible overload variants: posthog/hogql/test/test_timings.py:0: note: def __setitem__(self, SupportsIndex, int, /) -> None posthog/hogql/test/test_timings.py:0: note: def __setitem__(self, slice, Iterable[int], /) -> None +posthog/hogql/test/test_resolver.py:0: error: Item "None" of "JoinExpr | None" has no attribute "next_join" [union-attr] +posthog/hogql/test/test_resolver.py:0: error: Item "None" of "JoinExpr | Any | None" has no attribute "constraint" [union-attr] +posthog/hogql/test/test_resolver.py:0: error: Item "None" of "JoinConstraint | Any | None" has no attribute "constraint_type" [union-attr] +posthog/hogql/test/test_resolver.py:0: error: Item "None" of "JoinConstraint | Any | None" has no attribute "expr" [union-attr] +posthog/hogql/test/test_resolver.py:0: error: Item "None" of "JoinExpr | None" has no attribute "next_join" [union-attr] +posthog/hogql/test/test_resolver.py:0: error: Item "None" of "JoinExpr | Any | None" has no attribute "constraint" [union-attr] +posthog/hogql/test/test_resolver.py:0: error: Item "None" of "JoinConstraint | Any | None" has no attribute "constraint_type" [union-attr] +posthog/hogql/test/test_resolver.py:0: error: Item "SelectUnionQueryType" of "SelectQueryType | SelectUnionQueryType | None" has no attribute "columns" [union-attr] +posthog/hogql/test/test_resolver.py:0: error: Item "None" of "SelectQueryType | SelectUnionQueryType | None" has no attribute "columns" [union-attr] +posthog/hogql/test/test_resolver.py:0: error: "FieldOrTable" has no attribute "fields" [attr-defined] +posthog/hogql/test/test_resolver.py:0: error: "FieldOrTable" has no attribute "fields" [attr-defined] +posthog/hogql/test/test_resolver.py:0: error: "FieldOrTable" has no attribute "fields" [attr-defined] +posthog/hogql/test/test_resolver.py:0: error: Item "None" of "JoinExpr | None" has no attribute "alias" [union-attr] posthog/hogql/test/test_property.py:0: error: Argument 1 to "_property_to_expr" of "TestProperty" has incompatible type "HogQLPropertyFilter"; expected "PropertyGroup | Property | dict[Any, Any] | list[Any]" [arg-type] posthog/hogql/test/test_printer.py:0: error: Argument 2 to "Database" has incompatible type "int"; expected "WeekStartDay | None" [arg-type] posthog/hogql/test/test_printer.py:0: error: Argument 2 to "Database" has incompatible type "int"; expected "WeekStartDay | None" [arg-type] @@ -449,7 +519,6 @@ posthog/hogql/test/test_modifiers.py:0: error: Unsupported right operand type fo posthog/hogql/test/test_modifiers.py:0: error: Unsupported right operand type for in ("str | None") [operator] posthog/hogql/test/test_modifiers.py:0: error: Unsupported right operand type for in ("str | None") [operator] posthog/hogql/test/_test_parser.py:0: error: Invalid base class [misc] -posthog/hogql/test/_test_parser.py:0: error: Argument "table" to "JoinExpr" has incompatible type "Placeholder"; expected "SelectQuery | SelectUnionQuery | Field | None" [arg-type] posthog/hogql/test/_test_parser.py:0: error: Item "None" of "JoinExpr | None" has no attribute "table" [union-attr] posthog/hogql/test/_test_parser.py:0: error: Item "None" of "JoinExpr | None" has no attribute "table" [union-attr] posthog/hogql/test/_test_parser.py:0: error: Item "None" of "JoinExpr | None" has no attribute "table" [union-attr] @@ -457,6 +526,9 @@ posthog/hogql/test/_test_parser.py:0: error: Item "None" of "JoinExpr | None" ha posthog/hogql/test/_test_parser.py:0: error: Item "None" of "JoinExpr | None" has no attribute "table" [union-attr] posthog/hogql/test/_test_parser.py:0: error: Item "None" of "JoinExpr | None" has no attribute "alias" [union-attr] posthog/hogql/test/_test_parser.py:0: error: Item "None" of "JoinExpr | None" has no attribute "table" [union-attr] +posthog/hogql/functions/test/test_cohort.py:0: error: "TestCohort" has no attribute "snapshot" [attr-defined] +posthog/hogql/functions/test/test_cohort.py:0: error: "TestCohort" has no attribute "snapshot" [attr-defined] +posthog/hogql/functions/test/test_cohort.py:0: error: "TestCohort" has no attribute "snapshot" [attr-defined] posthog/hogql/database/schema/event_sessions.py:0: error: Statement is unreachable [unreachable] posthog/hogql/ai.py:0: error: No overload variant of "__getitem__" of "tuple" matches argument type "str" [call-overload] posthog/hogql/ai.py:0: note: Possible overload variants: @@ -512,6 +584,14 @@ posthog/warehouse/data_load/validate_schema.py:0: error: Incompatible types in a posthog/warehouse/data_load/validate_schema.py:0: error: Incompatible types in assignment (expression has type "object", variable has type "str | int | Combinable") [assignment] posthog/warehouse/data_load/validate_schema.py:0: error: Incompatible types in assignment (expression has type "dict[str, dict[str, str | bool]] | dict[str, str]", variable has type "dict[str, dict[str, str]]") [assignment] posthog/warehouse/data_load/source_templates.py:0: error: Incompatible types in assignment (expression has type "str", variable has type "Type") [assignment] +posthog/temporal/data_imports/workflow_activities/create_job_model.py:0: error: Argument 1 has incompatible type "str"; expected "Type" [arg-type] +posthog/temporal/data_imports/workflow_activities/create_job_model.py:0: error: Incompatible types in assignment (expression has type "list[Any]", variable has type "dict[str, list[tuple[str, str]]]") [assignment] +posthog/temporal/data_imports/workflow_activities/create_job_model.py:0: error: No overload variant of "get" of "dict" matches argument types "str", "tuple[()]" [call-overload] +posthog/temporal/data_imports/workflow_activities/create_job_model.py:0: note: Possible overload variants: +posthog/temporal/data_imports/workflow_activities/create_job_model.py:0: note: def get(self, Type, /) -> Sequence[str] | None +posthog/temporal/data_imports/workflow_activities/create_job_model.py:0: note: def get(self, Type, Sequence[str], /) -> Sequence[str] +posthog/temporal/data_imports/workflow_activities/create_job_model.py:0: note: def [_T] get(self, Type, _T, /) -> Sequence[str] | _T +posthog/temporal/data_imports/workflow_activities/create_job_model.py:0: error: Argument 1 has incompatible type "dict[str, list[tuple[str, str]]]"; expected "list[Any]" [arg-type] posthog/tasks/exports/test/test_csv_exporter.py:0: error: Function is missing a return type annotation [no-untyped-def] posthog/tasks/exports/test/test_csv_exporter.py:0: error: Function is missing a type annotation [no-untyped-def] posthog/tasks/exports/test/test_csv_exporter.py:0: error: Function is missing a type annotation for one or more arguments [no-untyped-def] @@ -560,22 +640,6 @@ posthog/management/commands/migrate_team.py:0: error: Incompatible types in assi posthog/management/commands/migrate_team.py:0: error: "BatchExportDestination" has no attribute "exclude_events" [attr-defined] posthog/management/commands/migrate_team.py:0: error: "BatchExportDestination" has no attribute "include_events" [attr-defined] posthog/management/commands/fix_future_person_created_at.py:0: error: Argument "version" to "create_person" has incompatible type "int | None"; expected "int" [arg-type] -posthog/hogql_queries/test/test_actors_query_runner.py:0: error: Incompatible types in assignment (expression has type "Expr", variable has type "SelectQuery") [assignment] -posthog/hogql/test/test_resolver.py:0: error: Item "None" of "JoinExpr | None" has no attribute "next_join" [union-attr] -posthog/hogql/test/test_resolver.py:0: error: Item "None" of "JoinExpr | Any | None" has no attribute "constraint" [union-attr] -posthog/hogql/test/test_resolver.py:0: error: Item "None" of "JoinConstraint | Any | None" has no attribute "constraint_type" [union-attr] -posthog/hogql/test/test_resolver.py:0: error: Item "None" of "JoinConstraint | Any | None" has no attribute "expr" [union-attr] -posthog/hogql/test/test_resolver.py:0: error: Item "None" of "JoinExpr | None" has no attribute "next_join" [union-attr] -posthog/hogql/test/test_resolver.py:0: error: Item "None" of "JoinExpr | Any | None" has no attribute "constraint" [union-attr] -posthog/hogql/test/test_resolver.py:0: error: Item "None" of "JoinConstraint | Any | None" has no attribute "constraint_type" [union-attr] -posthog/hogql/test/test_resolver.py:0: error: Item "SelectUnionQueryType" of "SelectQueryType | SelectUnionQueryType | None" has no attribute "columns" [union-attr] -posthog/hogql/test/test_resolver.py:0: error: Item "None" of "SelectQueryType | SelectUnionQueryType | None" has no attribute "columns" [union-attr] -posthog/hogql/test/test_resolver.py:0: error: "FieldOrTable" has no attribute "fields" [attr-defined] -posthog/hogql/test/test_resolver.py:0: error: "FieldOrTable" has no attribute "fields" [attr-defined] -posthog/hogql/test/test_resolver.py:0: error: "FieldOrTable" has no attribute "fields" [attr-defined] -posthog/hogql/test/test_resolver.py:0: error: Item "None" of "JoinExpr | None" has no attribute "table" [union-attr] -posthog/hogql/test/test_resolver.py:0: error: Argument 1 to "clone_expr" has incompatible type "SelectQuery | SelectUnionQuery | Field | Any | None"; expected "Expr" [arg-type] -posthog/hogql/test/test_resolver.py:0: error: Item "None" of "JoinExpr | None" has no attribute "alias" [union-attr] posthog/hogql/test/test_query.py:0: error: Value of type "list[QueryTiming] | None" is not indexable [index] posthog/hogql/test/test_query.py:0: error: Value of type "list[QueryTiming] | None" is not indexable [index] posthog/hogql/test/test_query.py:0: error: Module has no attribute "utc" [attr-defined] @@ -606,9 +670,6 @@ posthog/hogql/test/test_parser_python.py:0: error: Unsupported dynamic base clas posthog/hogql/test/test_parser_cpp.py:0: error: Unsupported dynamic base class "parser_test_factory" [misc] posthog/hogql/test/test_parse_string_python.py:0: error: Unsupported dynamic base class "parse_string_test_factory" [misc] posthog/hogql/test/test_parse_string_cpp.py:0: error: Unsupported dynamic base class "parse_string_test_factory" [misc] -posthog/hogql/functions/test/test_cohort.py:0: error: "TestCohort" has no attribute "snapshot" [attr-defined] -posthog/hogql/functions/test/test_cohort.py:0: error: "TestCohort" has no attribute "snapshot" [attr-defined] -posthog/hogql/functions/test/test_cohort.py:0: error: "TestCohort" has no attribute "snapshot" [attr-defined] posthog/hogql/database/test/test_view.py:0: error: Argument "dialect" to "print_ast" has incompatible type "str"; expected "Literal['hogql', 'clickhouse']" [arg-type] posthog/hogql/database/test/test_s3_table.py:0: error: Argument "dialect" to "print_ast" has incompatible type "str"; expected "Literal['hogql', 'clickhouse']" [arg-type] posthog/async_migrations/test/test_runner.py:0: error: Item "None" of "datetime | None" has no attribute "day" [union-attr] @@ -682,14 +743,11 @@ ee/clickhouse/views/experiments.py:0: error: Argument 4 to "ClickhouseTrendExper ee/clickhouse/views/experiments.py:0: error: Argument 4 to "ClickhouseFunnelExperimentResult" has incompatible type "datetime | None"; expected "datetime" [arg-type] ee/clickhouse/views/experiments.py:0: error: Argument 4 to "ClickhouseSecondaryExperimentResult" has incompatible type "datetime | None"; expected "datetime" [arg-type] ee/clickhouse/views/experiments.py:0: error: Item "None" of "User | None" has no attribute "email" [union-attr] -posthog/temporal/data_imports/workflow_activities/create_job_model.py:0: error: Argument 1 has incompatible type "str"; expected "Type" [arg-type] -posthog/temporal/data_imports/workflow_activities/create_job_model.py:0: error: Incompatible types in assignment (expression has type "list[Any]", variable has type "dict[str, list[tuple[str, str]]]") [assignment] -posthog/temporal/data_imports/workflow_activities/create_job_model.py:0: error: No overload variant of "get" of "dict" matches argument types "str", "tuple[()]" [call-overload] -posthog/temporal/data_imports/workflow_activities/create_job_model.py:0: note: Possible overload variants: -posthog/temporal/data_imports/workflow_activities/create_job_model.py:0: note: def get(self, Type, /) -> Sequence[str] | None -posthog/temporal/data_imports/workflow_activities/create_job_model.py:0: note: def get(self, Type, Sequence[str], /) -> Sequence[str] -posthog/temporal/data_imports/workflow_activities/create_job_model.py:0: note: def [_T] get(self, Type, _T, /) -> Sequence[str] | _T -posthog/temporal/data_imports/workflow_activities/create_job_model.py:0: error: Argument 1 has incompatible type "dict[str, list[tuple[str, str]]]"; expected "list[Any]" [arg-type] +posthog/temporal/tests/batch_exports/test_run_updates.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/tests/batch_exports/test_run_updates.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/tests/batch_exports/test_run_updates.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/tests/batch_exports/test_run_updates.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/tests/batch_exports/test_batch_exports.py:0: error: TypedDict key must be a string literal; expected one of ("_timestamp", "created_at", "distinct_id", "elements", "elements_chain", ...) [literal-required] posthog/session_recordings/session_recording_api.py:0: error: Argument "team_id" to "get_realtime_snapshots" has incompatible type "int"; expected "str" [arg-type] posthog/session_recordings/session_recording_api.py:0: error: Value of type variable "SupportsRichComparisonT" of "sorted" cannot be "str | None" [type-var] posthog/session_recordings/session_recording_api.py:0: error: Argument 1 to "get" of "dict" has incompatible type "str | None"; expected "str" [arg-type] @@ -701,12 +759,32 @@ posthog/api/test/test_decide.py:0: error: Item "None" of "User | None" has no at posthog/api/test/test_decide.py:0: error: Item "None" of "User | None" has no attribute "save" [union-attr] posthog/api/test/test_authentication.py:0: error: Module has no attribute "utc" [attr-defined] posthog/admin/admins/plugin_config_admin.py:0: error: Item "None" of "Team | None" has no attribute "name" [union-attr] +posthog/warehouse/api/external_data_schema.py:0: error: Incompatible return value type (got "str | None", expected "SyncType | None") [return-value] +posthog/warehouse/api/external_data_schema.py:0: error: Argument 1 to "get_sql_schemas_for_source_type" has incompatible type "str"; expected "Type" [arg-type] +posthog/warehouse/api/external_data_schema.py:0: error: No overload variant of "get" of "dict" matches argument type "str" [call-overload] +posthog/warehouse/api/external_data_schema.py:0: note: Possible overload variants: +posthog/warehouse/api/external_data_schema.py:0: note: def get(self, Type, /) -> dict[str, list[IncrementalField]] | None +posthog/warehouse/api/external_data_schema.py:0: note: def get(self, Type, dict[str, list[IncrementalField]], /) -> dict[str, list[IncrementalField]] +posthog/warehouse/api/external_data_schema.py:0: note: def [_T] get(self, Type, _T, /) -> dict[str, list[IncrementalField]] | _T +posthog/warehouse/api/table.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/warehouse/api/table.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/warehouse/api/table.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py:0: error: Need type annotation for "_execute_calls" (hint: "_execute_calls: list[] = ...") [var-annotated] +posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py:0: error: Need type annotation for "_execute_async_calls" (hint: "_execute_async_calls: list[] = ...") [var-annotated] +posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py:0: error: Need type annotation for "_cursors" (hint: "_cursors: list[] = ...") [var-annotated] +posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py:0: error: List item 0 has incompatible type "tuple[str, str, int, int, int, int, str, int]"; expected "tuple[str, str, int, int, str, str, str, str]" [list-item] +posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py:0: error: "tuple[Any, ...]" has no attribute "last_uploaded_part_timestamp" [attr-defined] +posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py:0: error: "tuple[Any, ...]" has no attribute "upload_state" [attr-defined] +posthog/temporal/data_imports/workflow_activities/import_data.py:0: error: Argument "job_type" to "PipelineInputs" has incompatible type "str"; expected "Type" [arg-type] +posthog/temporal/data_imports/workflow_activities/import_data.py:0: error: Argument "source_type" to "sql_source_for_type" has incompatible type "str"; expected "Type" [arg-type] +posthog/temporal/data_imports/workflow_activities/import_data.py:0: error: Argument "source_type" to "sql_source_for_type" has incompatible type "str"; expected "Type" [arg-type] posthog/migrations/0237_remove_timezone_from_teams.py:0: error: Argument 2 to "RunPython" has incompatible type "Callable[[Migration, Any], None]"; expected "_CodeCallable | None" [arg-type] posthog/migrations/0228_fix_tile_layouts.py:0: error: Argument 2 to "RunPython" has incompatible type "Callable[[Migration, Any], None]"; expected "_CodeCallable | None" [arg-type] posthog/warehouse/external_data_source/source.py:0: error: Incompatible types in assignment (expression has type "int", target has type "str") [assignment] posthog/warehouse/external_data_source/source.py:0: error: Incompatible types in assignment (expression has type "int", target has type "str") [assignment] posthog/warehouse/external_data_source/source.py:0: error: Incompatible types in assignment (expression has type "dict[str, Collection[str]]", variable has type "StripeSourcePayload") [assignment] posthog/warehouse/external_data_source/source.py:0: error: Argument 1 to "_create_source" has incompatible type "StripeSourcePayload"; expected "dict[Any, Any]" [arg-type] +posthog/temporal/tests/batch_exports/test_redshift_batch_export_workflow.py:0: error: Incompatible types in assignment (expression has type "str | int", variable has type "int") [assignment] posthog/api/sharing.py:0: error: Item "None" of "list[Any] | None" has no attribute "__iter__" (not iterable) [union-attr] posthog/api/plugin.py:0: error: Item "None" of "Team | None" has no attribute "organization" [union-attr] posthog/api/plugin.py:0: error: Item "None" of "Team | None" has no attribute "id" [union-attr] @@ -721,105 +799,22 @@ posthog/api/plugin.py:0: error: Incompatible type for "file_size" of "PluginAtta posthog/api/plugin.py:0: error: Item "None" of "IO[Any] | None" has no attribute "read" [union-attr] posthog/api/plugin.py:0: error: Item "None" of "Team | None" has no attribute "organization" [union-attr] posthog/api/plugin.py:0: error: Item "None" of "Team | None" has no attribute "id" [union-attr] -posthog/temporal/tests/batch_exports/test_run_updates.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/tests/batch_exports/test_run_updates.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/tests/batch_exports/test_run_updates.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/tests/batch_exports/test_run_updates.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/tests/batch_exports/test_batch_exports.py:0: error: TypedDict key must be a string literal; expected one of ("_timestamp", "created_at", "distinct_id", "elements", "elements_chain", ...) [literal-required] -posthog/api/plugin_log_entry.py:0: error: Name "timezone.datetime" is not defined [name-defined] -posthog/api/plugin_log_entry.py:0: error: Module "django.utils.timezone" does not explicitly export attribute "datetime" [attr-defined] -posthog/api/plugin_log_entry.py:0: error: Name "timezone.datetime" is not defined [name-defined] -posthog/api/plugin_log_entry.py:0: error: Module "django.utils.timezone" does not explicitly export attribute "datetime" [attr-defined] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Dict entry 2 has incompatible type "Literal['auto']": "None"; expected "Literal['json_response', 'header_link', 'auto', 'single_page', 'cursor', 'offset', 'page_number']": "type[BasePaginator]" [dict-item] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Incompatible types in assignment (expression has type "None", variable has type "AuthConfigBase") [assignment] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Argument 1 to "get_auth_class" has incompatible type "Literal['bearer', 'api_key', 'http_basic'] | None"; expected "Literal['bearer', 'api_key', 'http_basic']" [arg-type] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Need type annotation for "dependency_graph" [var-annotated] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Incompatible types in assignment (expression has type "None", target has type "ResolvedParam") [assignment] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Incompatible return value type (got "tuple[TopologicalSorter[Any], dict[str, EndpointResource], dict[str, ResolvedParam]]", expected "tuple[Any, dict[str, EndpointResource], dict[str, ResolvedParam | None]]") [return-value] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Unsupported right operand type for in ("str | Endpoint | None") [operator] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Value of type variable "StrOrLiteralStr" of "parse" of "Formatter" cannot be "str | None" [type-var] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Unsupported right operand type for in ("dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None") [operator] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Unsupported right operand type for in ("dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None") [operator] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Value of type "dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None" is not indexable [index] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Item "None" of "dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None" has no attribute "pop" [union-attr] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Value of type "dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None" is not indexable [index] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Item "None" of "str | None" has no attribute "format" [union-attr] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Argument 1 to "single_entity_path" has incompatible type "str | None"; expected "str" [arg-type] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Item "None" of "dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None" has no attribute "items" [union-attr] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Incompatible types in assignment (expression has type "str | None", variable has type "str") [assignment] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Incompatible types in assignment (expression has type "str | None", variable has type "str") [assignment] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Statement is unreachable [unreachable] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Unpacked dict entry 0 has incompatible type "dict[str, Any] | None"; expected "SupportsKeysAndGetItem[str, Any]" [dict-item] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Unpacked dict entry 1 has incompatible type "dict[str, Any] | None"; expected "SupportsKeysAndGetItem[str, Any]" [dict-item] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Unpacked dict entry 0 has incompatible type "dict[str, Any] | None"; expected "SupportsKeysAndGetItem[str, ResolveParamConfig | IncrementalParamConfig | Any]" [dict-item] -posthog/temporal/data_imports/pipelines/rest_source/config_setup.py:0: error: Unpacked dict entry 1 has incompatible type "dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None"; expected "SupportsKeysAndGetItem[str, ResolveParamConfig | IncrementalParamConfig | Any]" [dict-item] -posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py:0: error: Need type annotation for "_execute_calls" (hint: "_execute_calls: list[] = ...") [var-annotated] -posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py:0: error: Need type annotation for "_execute_async_calls" (hint: "_execute_async_calls: list[] = ...") [var-annotated] -posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py:0: error: Need type annotation for "_cursors" (hint: "_cursors: list[] = ...") [var-annotated] -posthog/temporal/tests/batch_exports/test_snowflake_batch_export_workflow.py:0: error: List item 0 has incompatible type "tuple[str, str, int, int, int, int, str, int]"; expected "tuple[str, str, int, int, str, str, str, str]" [list-item] -posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py:0: error: "tuple[Any, ...]" has no attribute "last_uploaded_part_timestamp" [attr-defined] -posthog/temporal/tests/batch_exports/test_s3_batch_export_workflow.py:0: error: "tuple[Any, ...]" has no attribute "upload_state" [attr-defined] -posthog/temporal/tests/batch_exports/test_redshift_batch_export_workflow.py:0: error: Incompatible types in assignment (expression has type "str | int", variable has type "int") [assignment] -posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Not all union combinations were tried because there are too many unions [misc] -posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 2 to "source" has incompatible type "str | None"; expected "str" [arg-type] -posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 3 to "source" has incompatible type "str | None"; expected "str" [arg-type] -posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 4 to "source" has incompatible type "int | None"; expected "int" [arg-type] -posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 6 to "source" has incompatible type "Schema | None"; expected "Schema" [arg-type] -posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 7 to "source" has incompatible type "Literal['evolve', 'discard_value', 'freeze', 'discard_row'] | TSchemaContractDict | None"; expected "Literal['evolve', 'discard_value', 'freeze', 'discard_row'] | TSchemaContractDict" [arg-type] -posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 8 to "source" has incompatible type "type[BaseConfiguration] | None"; expected "type[BaseConfiguration]" [arg-type] -posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 1 to "build_resource_dependency_graph" has incompatible type "EndpointResourceBase | None"; expected "EndpointResourceBase" [arg-type] -posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Incompatible types in assignment (expression has type "list[str] | None", variable has type "list[str]") [assignment] -posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 1 to "setup_incremental_object" has incompatible type "dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None"; expected "dict[str, Any]" [arg-type] -posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument "base_url" to "RESTClient" has incompatible type "str | None"; expected "str" [arg-type] -posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument 1 to "exclude_keys" has incompatible type "dict[str, ResolveParamConfig | IncrementalParamConfig | Any] | None"; expected "Mapping[str, Any]" [arg-type] -posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Incompatible default for argument "resolved_param" (default has type "ResolvedParam | None", argument has type "ResolvedParam") [assignment] -posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/rest_source/__init__.py:0: error: Argument "module" to "SourceInfo" has incompatible type Module | None; expected Module [arg-type] -posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/zendesk/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/vitally/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/stripe/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/stripe/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/stripe/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/stripe/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/stripe/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/stripe/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/stripe/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/pipelines/stripe/__init__.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/temporal/tests/external_data/test_external_data_job.py:0: error: Invalid index type "str" for "dict[Type, Sequence[str]]"; expected type "Type" [index] +posthog/temporal/tests/external_data/test_external_data_job.py:0: error: Invalid index type "str" for "dict[Type, Sequence[str]]"; expected type "Type" [index] +posthog/temporal/tests/external_data/test_external_data_job.py:0: error: Invalid index type "str" for "dict[Type, Sequence[str]]"; expected type "Type" [index] +posthog/temporal/tests/external_data/test_external_data_job.py:0: error: Invalid index type "str" for "dict[Type, Sequence[str]]"; expected type "Type" [index] +posthog/temporal/tests/external_data/test_external_data_job.py:0: error: Invalid index type "str" for "dict[Type, Sequence[str]]"; expected type "Type" [index] posthog/api/test/batch_exports/conftest.py:0: error: Signature of "run" incompatible with supertype "Worker" [override] posthog/api/test/batch_exports/conftest.py:0: note: Superclass: posthog/api/test/batch_exports/conftest.py:0: note: def run(self) -> Coroutine[Any, Any, None] posthog/api/test/batch_exports/conftest.py:0: note: Subclass: posthog/api/test/batch_exports/conftest.py:0: note: def run(self, loop: Any) -> Any posthog/api/test/batch_exports/conftest.py:0: error: Argument "activities" to "ThreadedWorker" has incompatible type "list[function]"; expected "Sequence[Callable[..., Any]]" [arg-type] -posthog/warehouse/api/external_data_schema.py:0: error: Incompatible return value type (got "str | None", expected "SyncType | None") [return-value] -posthog/warehouse/api/external_data_schema.py:0: error: Argument 1 to "get_sql_schemas_for_source_type" has incompatible type "str"; expected "Type" [arg-type] -posthog/warehouse/api/external_data_schema.py:0: error: No overload variant of "get" of "dict" matches argument type "str" [call-overload] -posthog/warehouse/api/external_data_schema.py:0: note: Possible overload variants: -posthog/warehouse/api/external_data_schema.py:0: note: def get(self, Type, /) -> dict[str, list[IncrementalField]] | None -posthog/warehouse/api/external_data_schema.py:0: note: def get(self, Type, dict[str, list[IncrementalField]], /) -> dict[str, list[IncrementalField]] -posthog/warehouse/api/external_data_schema.py:0: note: def [_T] get(self, Type, _T, /) -> dict[str, list[IncrementalField]] | _T -posthog/warehouse/api/table.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/warehouse/api/table.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/warehouse/api/table.py:0: error: Unused "type: ignore" comment [unused-ignore] -posthog/temporal/data_imports/workflow_activities/import_data.py:0: error: Argument "job_type" to "PipelineInputs" has incompatible type "str"; expected "Type" [arg-type] -posthog/temporal/data_imports/workflow_activities/import_data.py:0: error: Argument "source_type" to "sql_source_for_type" has incompatible type "str"; expected "Type" [arg-type] -posthog/temporal/data_imports/workflow_activities/import_data.py:0: error: Argument "source_type" to "sql_source_for_type" has incompatible type "str"; expected "Type" [arg-type] +posthog/api/plugin_log_entry.py:0: error: Name "timezone.datetime" is not defined [name-defined] +posthog/api/plugin_log_entry.py:0: error: Module "django.utils.timezone" does not explicitly export attribute "datetime" [attr-defined] +posthog/api/plugin_log_entry.py:0: error: Name "timezone.datetime" is not defined [name-defined] +posthog/api/plugin_log_entry.py:0: error: Module "django.utils.timezone" does not explicitly export attribute "datetime" [attr-defined] +posthog/temporal/tests/data_imports/test_end_to_end.py:0: error: Unused "type: ignore" comment [unused-ignore] posthog/api/test/test_team.py:0: error: "HttpResponse" has no attribute "json" [attr-defined] posthog/api/test/test_team.py:0: error: "HttpResponse" has no attribute "json" [attr-defined] posthog/test/test_middleware.py:0: error: Incompatible types in assignment (expression has type "_MonkeyPatchedWSGIResponse", variable has type "_MonkeyPatchedResponse") [assignment] @@ -857,18 +852,6 @@ posthog/management/commands/test/test_create_batch_export_from_app.py:0: error: posthog/management/commands/test/test_create_batch_export_from_app.py:0: note: Possible overload variants: posthog/management/commands/test/test_create_batch_export_from_app.py:0: note: def __getitem__(self, SupportsIndex, /) -> str posthog/management/commands/test/test_create_batch_export_from_app.py:0: note: def __getitem__(self, slice, /) -> list[str] -posthog/api/test/batch_exports/test_update.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] -posthog/api/test/batch_exports/test_update.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] -posthog/api/test/batch_exports/test_update.py:0: error: Dict entry 1 has incompatible type "str": "dict[str, Collection[str]]"; expected "str": "str" [dict-item] -posthog/api/test/batch_exports/test_update.py:0: error: Value of type "BatchExport" is not indexable [index] -posthog/api/test/batch_exports/test_update.py:0: error: Value of type "BatchExport" is not indexable [index] -posthog/api/test/batch_exports/test_update.py:0: error: Value of type "BatchExport" is not indexable [index] -posthog/api/test/batch_exports/test_pause.py:0: error: "batch_export_delete_schedule" does not return a value (it only ever returns None) [func-returns-value] -posthog/temporal/tests/external_data/test_external_data_job.py:0: error: Invalid index type "str" for "dict[Type, Sequence[str]]"; expected type "Type" [index] -posthog/temporal/tests/external_data/test_external_data_job.py:0: error: Invalid index type "str" for "dict[Type, Sequence[str]]"; expected type "Type" [index] -posthog/temporal/tests/external_data/test_external_data_job.py:0: error: Invalid index type "str" for "dict[Type, Sequence[str]]"; expected type "Type" [index] -posthog/temporal/tests/external_data/test_external_data_job.py:0: error: Invalid index type "str" for "dict[Type, Sequence[str]]"; expected type "Type" [index] -posthog/temporal/tests/external_data/test_external_data_job.py:0: error: Invalid index type "str" for "dict[Type, Sequence[str]]"; expected type "Type" [index] posthog/api/test/test_capture.py:0: error: Statement is unreachable [unreachable] posthog/api/test/test_capture.py:0: error: Incompatible return value type (got "_MonkeyPatchedWSGIResponse", expected "HttpResponse") [return-value] posthog/api/test/test_capture.py:0: error: Module has no attribute "utc" [attr-defined] @@ -881,4 +864,10 @@ posthog/api/test/test_capture.py:0: error: Dict entry 0 has incompatible type "s posthog/api/test/test_capture.py:0: error: Dict entry 0 has incompatible type "str": "float"; expected "str": "int" [dict-item] posthog/api/test/test_capture.py:0: error: Dict entry 0 has incompatible type "str": "float"; expected "str": "int" [dict-item] posthog/api/test/test_capture.py:0: error: Dict entry 0 has incompatible type "str": "float"; expected "str": "int" [dict-item] -posthog/temporal/tests/data_imports/test_end_to_end.py:0: error: Unused "type: ignore" comment [unused-ignore] +posthog/api/test/batch_exports/test_update.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +posthog/api/test/batch_exports/test_update.py:0: error: Unsupported target for indexed assignment ("Collection[str]") [index] +posthog/api/test/batch_exports/test_update.py:0: error: Dict entry 1 has incompatible type "str": "dict[str, Collection[str]]"; expected "str": "str" [dict-item] +posthog/api/test/batch_exports/test_update.py:0: error: Value of type "BatchExport" is not indexable [index] +posthog/api/test/batch_exports/test_update.py:0: error: Value of type "BatchExport" is not indexable [index] +posthog/api/test/batch_exports/test_update.py:0: error: Value of type "BatchExport" is not indexable [index] +posthog/api/test/batch_exports/test_pause.py:0: error: "batch_export_delete_schedule" does not return a value (it only ever returns None) [func-returns-value] diff --git a/posthog/hogql/ast.py b/posthog/hogql/ast.py index 8e5de3cafacec..a260e2b6c253a 100644 --- a/posthog/hogql/ast.py +++ b/posthog/hogql/ast.py @@ -41,6 +41,21 @@ class VariableDeclaration(Declaration): expr: Optional[Expr] = None +@dataclass(kw_only=True) +class Block(Expr): + declarations: list[Declaration] + type: Optional[Type] = None + + @cached_property + def placeholder_chain(self) -> str | None: + if len(self.declarations) == 1: + declaration = self.declarations[0] + if isinstance(declaration, ExprStatement) or isinstance(declaration, ReturnStatement): + if isinstance(declaration.expr, Field): + return ".".join(str(c) for c in declaration.expr.chain) + return None + + @dataclass(kw_only=True) class Statement(Declaration): pass @@ -63,23 +78,23 @@ class ThrowStatement(Statement): @dataclass(kw_only=True) class TryCatchStatement(Statement): - try_stmt: Statement + try_stmt: Statement | Block # var name (e), error type (RetryError), stmt ({}) # (e: RetryError) {} - catches: list[tuple[Optional[str], Optional[str], Statement]] - finally_stmt: Optional[Statement] = None + catches: list[tuple[Optional[str], Optional[str], Statement | Block]] + finally_stmt: Optional[Statement | Block] = None @dataclass(kw_only=True) class IfStatement(Statement): expr: Expr - then: Statement - else_: Optional[Statement] = None + then: Statement | Block + else_: Optional[Statement | Block] = None @dataclass(kw_only=True) class WhileStatement(Statement): expr: Expr - body: Statement + body: Statement | Block @dataclass(kw_only=True) @@ -87,7 +102,7 @@ class ForStatement(Statement): initializer: Optional[VariableDeclaration | VariableAssignment | Expr] condition: Optional[Expr] increment: Optional[Expr] - body: Statement + body: Statement | Block @dataclass(kw_only=True) @@ -95,28 +110,14 @@ class ForInStatement(Statement): keyVar: Optional[str] valueVar: str expr: Expr - body: Statement + body: Statement | Block @dataclass(kw_only=True) class Function(Statement): name: str params: list[str] - body: Statement - - -@dataclass(kw_only=True) -class Block(Statement): - declarations: list[Declaration] - - @cached_property - def placeholder_chain(self) -> str | None: - if len(self.declarations) == 1: - declaration = self.declarations[0] - if isinstance(declaration, ExprStatement) or isinstance(declaration, ReturnStatement): - if isinstance(declaration.expr, Field): - return ".".join(str(c) for c in declaration.expr.chain) - return None + body: Statement | Block @dataclass(kw_only=True) @@ -737,7 +738,7 @@ class JoinExpr(Expr): type: Optional[TableOrSelectType] = None join_type: Optional[str] = None - table: Optional[Union["SelectQuery", "SelectUnionQuery", Field]] = None + table: Optional[Union["SelectQuery", "SelectUnionQuery", Field, Block]] = None table_args: Optional[list[Expr]] = None alias: Optional[str] = None table_final: Optional[bool] = None diff --git a/posthog/hogql/bytecode.py b/posthog/hogql/bytecode.py index a734fa3588631..ba19c8c9148ed 100644 --- a/posthog/hogql/bytecode.py +++ b/posthog/hogql/bytecode.py @@ -717,7 +717,7 @@ def visit_variable_assignment(self, node: ast.VariableAssignment): def visit_function(self, node: ast.Function): # add an implicit return if none at the end of the function - body = node.body + body: ast.Statement | ast.Block = node.body if isinstance(node.body, ast.Block): if len(node.body.declarations) == 0 or not isinstance(node.body.declarations[-1], ast.ReturnStatement): body = ast.Block(declarations=[*node.body.declarations, ast.ReturnStatement(expr=None)]) diff --git a/posthog/hogql/parser.py b/posthog/hogql/parser.py index 8bb72df115e56..abcea6244cb44 100644 --- a/posthog/hogql/parser.py +++ b/posthog/hogql/parser.py @@ -272,7 +272,7 @@ def visitIfStmt(self, ctx: HogQLParser.IfStmtContext): def visitWhileStmt(self, ctx: HogQLParser.WhileStmtContext): return ast.WhileStatement( expr=self.visit(ctx.expression()), - body=self.visit(ctx.statement()) if ctx.statement() else None, + body=self.visit(ctx.statement()), ) def visitForInStmt(self, ctx: HogQLParser.ForInStmtContext): diff --git a/posthog/hogql/resolver.py b/posthog/hogql/resolver.py index e0c66726a02d7..5c1b221668998 100644 --- a/posthog/hogql/resolver.py +++ b/posthog/hogql/resolver.py @@ -286,7 +286,16 @@ def visit_join_expr(self, node: ast.JoinExpr): cte = lookup_cte_by_name(self.scopes, table_name) if cte: node = cast(ast.JoinExpr, clone_expr(node)) - node.table = clone_expr(cte.expr) + table = clone_expr(cte.expr) + if ( + isinstance(table, ast.SelectQuery) + or isinstance(table, ast.SelectUnionQuery) + or isinstance(table, ast.Field) + or isinstance(table, ast.Block) + ): + node.table = table + else: + raise QueryError(f"CTE {table_name} is not a SELECT query or subquery. Can not use as a table") if node.alias is None: node.alias = table_name @@ -342,7 +351,7 @@ def visit_join_expr(self, node: ast.JoinExpr): # :TRICKY: Make sure to clone and visit _all_ JoinExpr fields/nodes. node.type = node_type - node.table = cast(ast.Field, clone_expr(node.table)) + node.table = cast(ast.Field, clone_expr(cast(ast.Expr, node.table))) node.table.type = node_table_type if node.table_args is not None: node.table_args = [self.visit(arg) for arg in node.table_args] @@ -388,10 +397,14 @@ def visit_join_expr(self, node: ast.JoinExpr): raise QueryError( f'Already have joined a table called "{node.alias}". Can\'t join another one with the same name.' ) - node.type = ast.SelectQueryAliasType(alias=node.alias, select_query_type=node.table.type) + assert node.table is not None + node.type = ast.SelectQueryAliasType( + alias=node.alias, select_query_type=cast(ast.SelectQueryType, node.table.type) + ) scope.tables[node.alias] = node.type else: - node.type = node.table.type + assert node.table is not None + node.type = cast(ast.SelectQueryType, node.table.type) scope.anonymous_tables.append(node.type) # :TRICKY: Make sure to clone and visit _all_ JoinExpr fields/nodes. diff --git a/posthog/hogql/test/test_resolver.py b/posthog/hogql/test/test_resolver.py index 01604bf13b6e6..00c02f4daa8a6 100644 --- a/posthog/hogql/test/test_resolver.py +++ b/posthog/hogql/test/test_resolver.py @@ -404,12 +404,12 @@ def test_field_traverser_double_dot(self): def test_visit_hogqlx_tag(self): node = self._select("select event from ") node = cast(ast.SelectQuery, resolve_types(node, self.context, dialect="clickhouse")) - table_node = cast(ast.SelectQuery, node).select_from.table + table_node = cast(ast.SelectQuery, node).select_from.table # type: ignore expected = ast.SelectQuery( select=[ast.Alias(hidden=True, alias="event", expr=ast.Field(chain=["event"]))], select_from=ast.JoinExpr(table=ast.Field(chain=["events"])), ) - assert clone_expr(table_node, clear_types=True) == expected + assert clone_expr(table_node, clear_types=True) == expected # type: ignore def test_visit_hogqlx_tag_alias(self): node = self._select("select event from a") diff --git a/posthog/hogql/transforms/in_cohort.py b/posthog/hogql/transforms/in_cohort.py index fec1a4d7ccd16..a116b982ea68a 100644 --- a/posthog/hogql/transforms/in_cohort.py +++ b/posthog/hogql/transforms/in_cohort.py @@ -362,10 +362,13 @@ def _add_join_for_cohort( sql = "(SELECT person_id, 1 as matched FROM raw_cohort_people WHERE cohort_id = {cohort_id} AND version = {version})" else: sql = "(SELECT person_id, 1 as matched FROM raw_cohort_people WHERE cohort_id = {cohort_id} GROUP BY person_id, cohort_id, version HAVING sum(sign) > 0)" - subquery = parse_expr( - sql, - {"cohort_id": ast.Constant(value=cohort_id), "version": ast.Constant(value=version)}, - start=None, # clear the source start position + subquery = cast( + ast.SelectQuery, + parse_expr( + sql, + {"cohort_id": ast.Constant(value=cohort_id), "version": ast.Constant(value=version)}, + start=None, # clear the source start position + ), ) new_join = ast.JoinExpr( From 2e0642c08b75c2285de5bf152c1a51a2a99a28b7 Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Sun, 22 Sep 2024 22:57:05 +0200 Subject: [PATCH 09/11] somewhat faster parser --- hogql_parser/HogQLParser.cpp | 2786 +++++++++--------- hogql_parser/HogQLParser.h | 39 +- hogql_parser/HogQLParser.interp | 3 +- hogql_parser/HogQLParserBaseVisitor.h | 8 +- hogql_parser/HogQLParserVisitor.h | 4 +- hogql_parser/parser.cpp | 25 +- posthog/hogql/grammar/HogQLParser.g4 | 12 +- posthog/hogql/grammar/HogQLParser.interp | 3 +- posthog/hogql/grammar/HogQLParser.py | 2827 +++++++++---------- posthog/hogql/grammar/HogQLParserVisitor.py | 10 +- posthog/hogql/parser.py | 14 +- 11 files changed, 2789 insertions(+), 2942 deletions(-) diff --git a/hogql_parser/HogQLParser.cpp b/hogql_parser/HogQLParser.cpp index 8196100e9f2e7..03d2cdb798393 100644 --- a/hogql_parser/HogQLParser.cpp +++ b/hogql_parser/HogQLParser.cpp @@ -68,8 +68,8 @@ void hogqlparserParserInitialize() { "withExpr", "columnIdentifier", "nestedIdentifier", "tableExpr", "tableFunctionExpr", "tableIdentifier", "tableArgList", "databaseIdentifier", "floatingLiteral", "numberLiteral", "literal", "interval", "keyword", "keywordForAlias", - "alias", "identifier", "enumValue", "placeholder", "string", "templateString", - "stringContents", "fullTemplateString", "stringContentsFull" + "alias", "identifier", "enumValue", "string", "templateString", "stringContents", + "fullTemplateString", "stringContentsFull" }, std::vector{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", @@ -113,7 +113,7 @@ void hogqlparserParserInitialize() { } ); static const int32_t serializedATNSegment[] = { - 4,1,160,1302,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, + 4,1,160,1300,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, @@ -125,442 +125,442 @@ void hogqlparserParserInitialize() { 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,1,0,5,0,174,8,0,10,0,12,0,177,9,0,1,0,1,0,1,1,1,1,3,1, - 183,8,1,1,2,1,2,1,3,1,3,1,3,1,3,1,3,3,3,192,8,3,1,4,1,4,1,4,5,4,197,8, - 4,10,4,12,4,200,9,4,1,4,3,4,203,8,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1, - 5,1,5,1,5,1,5,3,5,217,8,5,1,6,1,6,3,6,221,8,6,1,6,3,6,224,8,6,1,7,1,7, - 3,7,228,8,7,1,7,3,7,231,8,7,1,8,1,8,1,8,1,8,1,8,3,8,238,8,8,1,8,1,8,3, - 8,242,8,8,1,8,1,8,1,9,1,9,1,9,5,9,249,8,9,10,9,12,9,252,9,9,1,9,1,9,3, - 9,256,8,9,1,10,1,10,1,10,1,10,1,10,1,10,1,10,3,10,265,8,10,1,11,1,11, - 1,11,1,11,1,11,1,11,3,11,273,8,11,1,12,1,12,1,12,1,12,1,12,3,12,280,8, - 12,1,12,1,12,3,12,284,8,12,1,12,1,12,1,12,1,12,3,12,290,8,12,1,12,1,12, - 1,12,3,12,295,8,12,1,13,1,13,1,13,1,13,1,13,1,13,3,13,303,8,13,1,13,1, - 13,1,13,1,13,1,13,3,13,310,8,13,1,14,1,14,1,14,1,14,3,14,316,8,14,1,14, - 1,14,1,14,1,15,1,15,1,15,1,15,1,15,1,16,1,16,3,16,328,8,16,1,17,1,17, - 1,18,1,18,5,18,334,8,18,10,18,12,18,337,9,18,1,18,1,18,1,19,1,19,1,19, - 1,19,1,20,1,20,1,20,5,20,348,8,20,10,20,12,20,351,9,20,1,20,3,20,354, - 8,20,1,21,1,21,1,21,3,21,359,8,21,1,21,1,21,1,22,1,22,1,22,1,22,5,22, - 367,8,22,10,22,12,22,370,9,22,1,23,1,23,1,23,1,23,1,23,1,23,3,23,378, - 8,23,1,24,3,24,381,8,24,1,24,1,24,3,24,385,8,24,1,24,3,24,388,8,24,1, - 24,1,24,3,24,392,8,24,1,24,3,24,395,8,24,1,24,3,24,398,8,24,1,24,3,24, - 401,8,24,1,24,3,24,404,8,24,1,24,1,24,3,24,408,8,24,1,24,1,24,3,24,412, - 8,24,1,24,3,24,415,8,24,1,24,3,24,418,8,24,1,24,3,24,421,8,24,1,24,1, - 24,3,24,425,8,24,1,24,3,24,428,8,24,1,25,1,25,1,25,1,26,1,26,1,26,1,26, - 3,26,437,8,26,1,27,1,27,1,27,1,28,3,28,443,8,28,1,28,1,28,1,28,1,28,1, - 29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,5,29,462, - 8,29,10,29,12,29,465,9,29,1,30,1,30,1,30,1,31,1,31,1,31,1,32,1,32,1,32, - 1,32,1,32,1,32,1,32,1,32,3,32,481,8,32,1,33,1,33,1,33,1,34,1,34,1,34, - 1,34,1,35,1,35,1,35,1,35,1,36,1,36,1,36,1,36,3,36,498,8,36,1,36,1,36, - 1,36,1,36,3,36,504,8,36,1,36,1,36,1,36,1,36,3,36,510,8,36,1,36,1,36,1, - 36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,521,8,36,3,36,523,8,36,1,37,1,37, - 1,37,1,38,1,38,1,38,1,39,1,39,1,39,3,39,534,8,39,1,39,3,39,537,8,39,1, - 39,1,39,1,39,1,39,3,39,543,8,39,1,39,1,39,1,39,1,39,1,39,1,39,3,39,551, - 8,39,1,39,1,39,1,39,1,39,5,39,557,8,39,10,39,12,39,560,9,39,1,40,3,40, - 563,8,40,1,40,1,40,1,40,3,40,568,8,40,1,40,3,40,571,8,40,1,40,3,40,574, - 8,40,1,40,1,40,3,40,578,8,40,1,40,1,40,3,40,582,8,40,1,40,3,40,585,8, - 40,3,40,587,8,40,1,40,3,40,590,8,40,1,40,1,40,3,40,594,8,40,1,40,1,40, - 3,40,598,8,40,1,40,3,40,601,8,40,3,40,603,8,40,3,40,605,8,40,1,41,1,41, - 1,41,3,41,610,8,41,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42, - 621,8,42,1,43,1,43,1,43,1,43,3,43,627,8,43,1,44,1,44,1,44,5,44,632,8, - 44,10,44,12,44,635,9,44,1,45,1,45,3,45,639,8,45,1,45,1,45,3,45,643,8, - 45,1,45,1,45,3,45,647,8,45,1,46,1,46,1,46,1,46,3,46,653,8,46,3,46,655, - 8,46,1,47,1,47,1,47,5,47,660,8,47,10,47,12,47,663,9,47,1,48,1,48,1,48, - 1,48,1,49,3,49,670,8,49,1,49,3,49,673,8,49,1,49,3,49,676,8,49,1,50,1, - 50,1,50,1,50,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,53,1,53,1,53,1,53,1, - 53,1,53,3,53,695,8,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1, - 54,1,54,1,54,3,54,709,8,54,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1, - 56,1,56,1,56,1,56,5,56,723,8,56,10,56,12,56,726,9,56,1,56,3,56,729,8, - 56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,5,56,738,8,56,10,56,12,56,741,9, - 56,1,56,3,56,744,8,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,5,56,753,8,56, - 10,56,12,56,756,9,56,1,56,3,56,759,8,56,1,56,1,56,1,56,1,56,1,56,3,56, - 766,8,56,1,56,1,56,3,56,770,8,56,1,57,1,57,1,57,5,57,775,8,57,10,57,12, - 57,778,9,57,1,57,3,57,781,8,57,1,58,1,58,1,58,3,58,786,8,58,1,58,1,58, - 1,58,1,58,1,58,4,58,793,8,58,11,58,12,58,794,1,58,1,58,3,58,799,8,58, - 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, - 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,823,8,58,1,58,1,58,1,58, - 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,840, - 8,58,1,58,1,58,1,58,1,58,3,58,846,8,58,1,58,3,58,849,8,58,1,58,3,58,852, - 8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,862,8,58,1,58,1,58, - 1,58,1,58,3,58,868,8,58,1,58,3,58,871,8,58,1,58,3,58,874,8,58,1,58,1, - 58,1,58,1,58,1,58,1,58,3,58,882,8,58,1,58,3,58,885,8,58,1,58,1,58,3,58, - 889,8,58,1,58,3,58,892,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, - 58,1,58,1,58,1,58,3,58,906,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, - 58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,923,8,58,1,58,1,58,1,58,3, - 58,928,8,58,1,58,1,58,1,58,1,58,3,58,934,8,58,1,58,1,58,1,58,1,58,3,58, - 940,8,58,1,58,1,58,1,58,1,58,1,58,3,58,947,8,58,1,58,1,58,1,58,1,58,1, - 58,1,58,1,58,1,58,1,58,1,58,3,58,959,8,58,1,58,1,58,3,58,963,8,58,1,58, - 3,58,966,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,975,8,58,1,58,1, - 58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,989,8,58,1, - 58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3, - 58,1005,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, + 7,84,1,0,5,0,172,8,0,10,0,12,0,175,9,0,1,0,1,0,1,1,1,1,3,1,181,8,1,1, + 2,1,2,1,3,1,3,1,3,1,3,1,3,3,3,190,8,3,1,4,1,4,1,4,5,4,195,8,4,10,4,12, + 4,198,9,4,1,4,3,4,201,8,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, + 1,5,3,5,215,8,5,1,6,1,6,3,6,219,8,6,1,6,3,6,222,8,6,1,7,1,7,3,7,226,8, + 7,1,7,3,7,229,8,7,1,8,1,8,1,8,1,8,1,8,3,8,236,8,8,1,8,1,8,3,8,240,8,8, + 1,8,1,8,1,9,1,9,1,9,5,9,247,8,9,10,9,12,9,250,9,9,1,9,1,9,3,9,254,8,9, + 1,10,1,10,1,10,1,10,1,10,1,10,1,10,3,10,263,8,10,1,11,1,11,1,11,1,11, + 1,11,1,11,3,11,271,8,11,1,12,1,12,1,12,1,12,1,12,3,12,278,8,12,1,12,1, + 12,3,12,282,8,12,1,12,1,12,1,12,1,12,3,12,288,8,12,1,12,1,12,1,12,3,12, + 293,8,12,1,13,1,13,1,13,1,13,1,13,1,13,3,13,301,8,13,1,13,1,13,1,13,1, + 13,1,13,3,13,308,8,13,1,14,1,14,1,14,1,14,3,14,314,8,14,1,14,1,14,1,14, + 1,15,1,15,1,15,1,15,1,15,1,16,1,16,3,16,326,8,16,1,17,1,17,1,18,1,18, + 5,18,332,8,18,10,18,12,18,335,9,18,1,18,1,18,1,19,1,19,1,19,1,19,1,20, + 1,20,1,20,5,20,346,8,20,10,20,12,20,349,9,20,1,20,3,20,352,8,20,1,21, + 1,21,1,21,3,21,357,8,21,1,21,1,21,1,22,1,22,1,22,1,22,5,22,365,8,22,10, + 22,12,22,368,9,22,1,23,1,23,1,23,1,23,1,23,1,23,3,23,376,8,23,1,24,3, + 24,379,8,24,1,24,1,24,3,24,383,8,24,1,24,3,24,386,8,24,1,24,1,24,3,24, + 390,8,24,1,24,3,24,393,8,24,1,24,3,24,396,8,24,1,24,3,24,399,8,24,1,24, + 3,24,402,8,24,1,24,1,24,3,24,406,8,24,1,24,1,24,3,24,410,8,24,1,24,3, + 24,413,8,24,1,24,3,24,416,8,24,1,24,3,24,419,8,24,1,24,1,24,3,24,423, + 8,24,1,24,3,24,426,8,24,1,25,1,25,1,25,1,26,1,26,1,26,1,26,3,26,435,8, + 26,1,27,1,27,1,27,1,28,3,28,441,8,28,1,28,1,28,1,28,1,28,1,29,1,29,1, + 29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,5,29,460,8,29,10, + 29,12,29,463,9,29,1,30,1,30,1,30,1,31,1,31,1,31,1,32,1,32,1,32,1,32,1, + 32,1,32,1,32,1,32,3,32,479,8,32,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1, + 35,1,35,1,35,1,35,1,36,1,36,1,36,1,36,3,36,496,8,36,1,36,1,36,1,36,1, + 36,3,36,502,8,36,1,36,1,36,1,36,1,36,3,36,508,8,36,1,36,1,36,1,36,1,36, + 1,36,1,36,1,36,1,36,1,36,3,36,519,8,36,3,36,521,8,36,1,37,1,37,1,37,1, + 38,1,38,1,38,1,39,1,39,1,39,3,39,532,8,39,1,39,3,39,535,8,39,1,39,1,39, + 1,39,1,39,3,39,541,8,39,1,39,1,39,1,39,1,39,1,39,1,39,3,39,549,8,39,1, + 39,1,39,1,39,1,39,5,39,555,8,39,10,39,12,39,558,9,39,1,40,3,40,561,8, + 40,1,40,1,40,1,40,3,40,566,8,40,1,40,3,40,569,8,40,1,40,3,40,572,8,40, + 1,40,1,40,3,40,576,8,40,1,40,1,40,3,40,580,8,40,1,40,3,40,583,8,40,3, + 40,585,8,40,1,40,3,40,588,8,40,1,40,1,40,3,40,592,8,40,1,40,1,40,3,40, + 596,8,40,1,40,3,40,599,8,40,3,40,601,8,40,3,40,603,8,40,1,41,1,41,1,41, + 3,41,608,8,41,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,619,8, + 42,1,43,1,43,1,43,1,43,3,43,625,8,43,1,44,1,44,1,44,5,44,630,8,44,10, + 44,12,44,633,9,44,1,45,1,45,3,45,637,8,45,1,45,1,45,3,45,641,8,45,1,45, + 1,45,3,45,645,8,45,1,46,1,46,1,46,1,46,3,46,651,8,46,3,46,653,8,46,1, + 47,1,47,1,47,5,47,658,8,47,10,47,12,47,661,9,47,1,48,1,48,1,48,1,48,1, + 49,3,49,668,8,49,1,49,3,49,671,8,49,1,49,3,49,674,8,49,1,50,1,50,1,50, + 1,50,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,53,1,53,1,53,1,53,1,53,1,53, + 3,53,693,8,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54, + 1,54,3,54,707,8,54,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56, + 1,56,1,56,5,56,721,8,56,10,56,12,56,724,9,56,1,56,3,56,727,8,56,1,56, + 1,56,1,56,1,56,1,56,1,56,1,56,5,56,736,8,56,10,56,12,56,739,9,56,1,56, + 3,56,742,8,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,5,56,751,8,56,10,56, + 12,56,754,9,56,1,56,3,56,757,8,56,1,56,1,56,1,56,1,56,1,56,3,56,764,8, + 56,1,56,1,56,3,56,768,8,56,1,57,1,57,1,57,5,57,773,8,57,10,57,12,57,776, + 9,57,1,57,3,57,779,8,57,1,58,1,58,1,58,3,58,784,8,58,1,58,1,58,1,58,1, + 58,1,58,4,58,791,8,58,11,58,12,58,792,1,58,1,58,3,58,797,8,58,1,58,1, 58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, - 58,1,58,3,58,1034,8,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,1042,8,58,5, - 58,1044,8,58,10,58,12,58,1047,9,58,1,59,1,59,1,59,1,59,5,59,1053,8,59, - 10,59,12,59,1056,9,59,1,59,3,59,1059,8,59,1,59,1,59,1,59,1,59,1,59,5, - 59,1066,8,59,10,59,12,59,1069,9,59,1,59,3,59,1072,8,59,1,59,1,59,3,59, - 1076,8,59,1,59,1,59,1,59,3,59,1081,8,59,1,60,1,60,1,60,5,60,1086,8,60, - 10,60,12,60,1089,9,60,1,60,1,60,1,60,1,60,1,60,1,60,5,60,1097,8,60,10, - 60,12,60,1100,9,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,1108,8,60,1,60, - 1,60,1,60,1,60,1,60,3,60,1115,8,60,1,61,1,61,1,61,1,61,1,61,1,61,1,61, - 1,61,1,61,1,61,1,61,3,61,1128,8,61,1,62,1,62,1,62,5,62,1133,8,62,10,62, - 12,62,1136,9,62,1,62,3,62,1139,8,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63, - 1,63,1,63,1,63,3,63,1151,8,63,1,64,1,64,1,64,1,64,3,64,1157,8,64,1,64, - 3,64,1160,8,64,1,65,1,65,1,65,5,65,1165,8,65,10,65,12,65,1168,9,65,1, - 66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,3,66,1179,8,66,1,66,1,66,1, - 66,1,66,3,66,1185,8,66,5,66,1187,8,66,10,66,12,66,1190,9,66,1,67,1,67, - 1,67,3,67,1195,8,67,1,67,1,67,1,68,1,68,1,68,3,68,1202,8,68,1,68,1,68, - 1,69,1,69,1,69,5,69,1209,8,69,10,69,12,69,1212,9,69,1,69,3,69,1215,8, - 69,1,70,1,70,1,71,1,71,1,71,1,71,1,71,1,71,3,71,1225,8,71,3,71,1227,8, - 71,1,72,3,72,1230,8,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,1238,8,72,1, - 73,1,73,1,73,3,73,1243,8,73,1,74,1,74,1,75,1,75,1,76,1,76,1,77,1,77,3, - 77,1253,8,77,1,78,1,78,1,78,3,78,1258,8,78,1,79,1,79,1,79,1,79,1,80,1, - 80,1,81,1,81,3,81,1268,8,81,1,82,1,82,5,82,1272,8,82,10,82,12,82,1275, - 9,82,1,82,1,82,1,83,1,83,1,83,1,83,1,83,3,83,1284,8,83,1,84,1,84,5,84, - 1288,8,84,10,84,12,84,1291,9,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,3, - 85,1300,8,85,1,85,0,3,78,116,132,86,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,0,17,2,0,31,31,36,36,2,0, - 18,18,75,75,2,0,45,45,52,52,3,0,1,1,4,4,8,8,4,0,1,1,3,4,8,8,81,81,2,0, - 52,52,74,74,2,0,1,1,4,4,2,0,7,7,22,23,2,0,30,30,50,50,2,0,72,72,77,77, - 3,0,10,10,51,51,91,91,2,0,42,42,54,54,1,0,108,109,2,0,119,119,140,140, - 7,0,21,21,39,39,56,57,71,71,79,79,98,98,104,104,17,0,1,13,15,20,22,28, - 30,30,32,35,37,38,40,43,45,52,54,55,59,59,61,70,72,78,80,84,86,93,95, - 97,99,100,102,103,4,0,20,20,30,30,40,40,49,49,1475,0,175,1,0,0,0,2,182, - 1,0,0,0,4,184,1,0,0,0,6,186,1,0,0,0,8,193,1,0,0,0,10,216,1,0,0,0,12,218, - 1,0,0,0,14,225,1,0,0,0,16,232,1,0,0,0,18,245,1,0,0,0,20,257,1,0,0,0,22, - 266,1,0,0,0,24,274,1,0,0,0,26,296,1,0,0,0,28,311,1,0,0,0,30,320,1,0,0, - 0,32,325,1,0,0,0,34,329,1,0,0,0,36,331,1,0,0,0,38,340,1,0,0,0,40,344, - 1,0,0,0,42,358,1,0,0,0,44,362,1,0,0,0,46,377,1,0,0,0,48,380,1,0,0,0,50, - 429,1,0,0,0,52,432,1,0,0,0,54,438,1,0,0,0,56,442,1,0,0,0,58,448,1,0,0, - 0,60,466,1,0,0,0,62,469,1,0,0,0,64,472,1,0,0,0,66,482,1,0,0,0,68,485, - 1,0,0,0,70,489,1,0,0,0,72,522,1,0,0,0,74,524,1,0,0,0,76,527,1,0,0,0,78, - 542,1,0,0,0,80,604,1,0,0,0,82,609,1,0,0,0,84,620,1,0,0,0,86,622,1,0,0, - 0,88,628,1,0,0,0,90,636,1,0,0,0,92,654,1,0,0,0,94,656,1,0,0,0,96,664, - 1,0,0,0,98,669,1,0,0,0,100,677,1,0,0,0,102,681,1,0,0,0,104,685,1,0,0, - 0,106,694,1,0,0,0,108,708,1,0,0,0,110,710,1,0,0,0,112,769,1,0,0,0,114, - 771,1,0,0,0,116,933,1,0,0,0,118,1075,1,0,0,0,120,1114,1,0,0,0,122,1127, - 1,0,0,0,124,1129,1,0,0,0,126,1150,1,0,0,0,128,1159,1,0,0,0,130,1161,1, - 0,0,0,132,1178,1,0,0,0,134,1191,1,0,0,0,136,1201,1,0,0,0,138,1205,1,0, - 0,0,140,1216,1,0,0,0,142,1226,1,0,0,0,144,1229,1,0,0,0,146,1242,1,0,0, - 0,148,1244,1,0,0,0,150,1246,1,0,0,0,152,1248,1,0,0,0,154,1252,1,0,0,0, - 156,1257,1,0,0,0,158,1259,1,0,0,0,160,1263,1,0,0,0,162,1267,1,0,0,0,164, - 1269,1,0,0,0,166,1283,1,0,0,0,168,1285,1,0,0,0,170,1299,1,0,0,0,172,174, - 3,2,1,0,173,172,1,0,0,0,174,177,1,0,0,0,175,173,1,0,0,0,175,176,1,0,0, - 0,176,178,1,0,0,0,177,175,1,0,0,0,178,179,5,0,0,1,179,1,1,0,0,0,180,183, - 3,6,3,0,181,183,3,10,5,0,182,180,1,0,0,0,182,181,1,0,0,0,183,3,1,0,0, - 0,184,185,3,116,58,0,185,5,1,0,0,0,186,187,5,53,0,0,187,191,3,156,78, - 0,188,189,5,116,0,0,189,190,5,123,0,0,190,192,3,4,2,0,191,188,1,0,0,0, - 191,192,1,0,0,0,192,7,1,0,0,0,193,198,3,156,78,0,194,195,5,117,0,0,195, - 197,3,156,78,0,196,194,1,0,0,0,197,200,1,0,0,0,198,196,1,0,0,0,198,199, - 1,0,0,0,199,202,1,0,0,0,200,198,1,0,0,0,201,203,5,117,0,0,202,201,1,0, - 0,0,202,203,1,0,0,0,203,9,1,0,0,0,204,217,3,12,6,0,205,217,3,14,7,0,206, - 217,3,18,9,0,207,217,3,20,10,0,208,217,3,22,11,0,209,217,3,26,13,0,210, - 217,3,24,12,0,211,217,3,28,14,0,212,217,3,30,15,0,213,217,3,36,18,0,214, - 217,3,32,16,0,215,217,3,34,17,0,216,204,1,0,0,0,216,205,1,0,0,0,216,206, - 1,0,0,0,216,207,1,0,0,0,216,208,1,0,0,0,216,209,1,0,0,0,216,210,1,0,0, - 0,216,211,1,0,0,0,216,212,1,0,0,0,216,213,1,0,0,0,216,214,1,0,0,0,216, - 215,1,0,0,0,217,11,1,0,0,0,218,220,5,73,0,0,219,221,3,4,2,0,220,219,1, - 0,0,0,220,221,1,0,0,0,221,223,1,0,0,0,222,224,5,151,0,0,223,222,1,0,0, - 0,223,224,1,0,0,0,224,13,1,0,0,0,225,227,5,85,0,0,226,228,3,4,2,0,227, - 226,1,0,0,0,227,228,1,0,0,0,228,230,1,0,0,0,229,231,5,151,0,0,230,229, - 1,0,0,0,230,231,1,0,0,0,231,15,1,0,0,0,232,241,5,14,0,0,233,234,5,131, - 0,0,234,237,3,156,78,0,235,236,5,116,0,0,236,238,3,156,78,0,237,235,1, - 0,0,0,237,238,1,0,0,0,238,239,1,0,0,0,239,240,5,150,0,0,240,242,1,0,0, - 0,241,233,1,0,0,0,241,242,1,0,0,0,242,243,1,0,0,0,243,244,3,36,18,0,244, - 17,1,0,0,0,245,246,5,94,0,0,246,250,3,36,18,0,247,249,3,16,8,0,248,247, - 1,0,0,0,249,252,1,0,0,0,250,248,1,0,0,0,250,251,1,0,0,0,251,255,1,0,0, - 0,252,250,1,0,0,0,253,254,5,29,0,0,254,256,3,36,18,0,255,253,1,0,0,0, - 255,256,1,0,0,0,256,19,1,0,0,0,257,258,5,41,0,0,258,259,5,131,0,0,259, - 260,3,4,2,0,260,261,5,150,0,0,261,264,3,10,5,0,262,263,5,25,0,0,263,265, - 3,10,5,0,264,262,1,0,0,0,264,265,1,0,0,0,265,21,1,0,0,0,266,267,5,101, - 0,0,267,268,5,131,0,0,268,269,3,4,2,0,269,270,5,150,0,0,270,272,3,10, - 5,0,271,273,5,151,0,0,272,271,1,0,0,0,272,273,1,0,0,0,273,23,1,0,0,0, - 274,275,5,33,0,0,275,279,5,131,0,0,276,280,3,6,3,0,277,280,3,30,15,0, - 278,280,3,4,2,0,279,276,1,0,0,0,279,277,1,0,0,0,279,278,1,0,0,0,279,280, - 1,0,0,0,280,281,1,0,0,0,281,283,5,151,0,0,282,284,3,4,2,0,283,282,1,0, - 0,0,283,284,1,0,0,0,284,285,1,0,0,0,285,289,5,151,0,0,286,290,3,6,3,0, - 287,290,3,30,15,0,288,290,3,4,2,0,289,286,1,0,0,0,289,287,1,0,0,0,289, - 288,1,0,0,0,289,290,1,0,0,0,290,291,1,0,0,0,291,292,5,150,0,0,292,294, - 3,10,5,0,293,295,5,151,0,0,294,293,1,0,0,0,294,295,1,0,0,0,295,25,1,0, - 0,0,296,297,5,33,0,0,297,298,5,131,0,0,298,299,5,53,0,0,299,302,3,156, - 78,0,300,301,5,117,0,0,301,303,3,156,78,0,302,300,1,0,0,0,302,303,1,0, - 0,0,303,304,1,0,0,0,304,305,5,43,0,0,305,306,3,4,2,0,306,307,5,150,0, - 0,307,309,3,10,5,0,308,310,5,151,0,0,309,308,1,0,0,0,309,310,1,0,0,0, - 310,27,1,0,0,0,311,312,7,0,0,0,312,313,3,156,78,0,313,315,5,131,0,0,314, - 316,3,8,4,0,315,314,1,0,0,0,315,316,1,0,0,0,316,317,1,0,0,0,317,318,5, - 150,0,0,318,319,3,36,18,0,319,29,1,0,0,0,320,321,3,4,2,0,321,322,5,116, - 0,0,322,323,5,123,0,0,323,324,3,4,2,0,324,31,1,0,0,0,325,327,3,4,2,0, - 326,328,5,151,0,0,327,326,1,0,0,0,327,328,1,0,0,0,328,33,1,0,0,0,329, - 330,5,151,0,0,330,35,1,0,0,0,331,335,5,129,0,0,332,334,3,2,1,0,333,332, - 1,0,0,0,334,337,1,0,0,0,335,333,1,0,0,0,335,336,1,0,0,0,336,338,1,0,0, - 0,337,335,1,0,0,0,338,339,5,148,0,0,339,37,1,0,0,0,340,341,3,4,2,0,341, - 342,5,116,0,0,342,343,3,4,2,0,343,39,1,0,0,0,344,349,3,38,19,0,345,346, - 5,117,0,0,346,348,3,38,19,0,347,345,1,0,0,0,348,351,1,0,0,0,349,347,1, - 0,0,0,349,350,1,0,0,0,350,353,1,0,0,0,351,349,1,0,0,0,352,354,5,117,0, - 0,353,352,1,0,0,0,353,354,1,0,0,0,354,41,1,0,0,0,355,359,3,44,22,0,356, - 359,3,48,24,0,357,359,3,120,60,0,358,355,1,0,0,0,358,356,1,0,0,0,358, - 357,1,0,0,0,359,360,1,0,0,0,360,361,5,0,0,1,361,43,1,0,0,0,362,368,3, - 46,23,0,363,364,5,96,0,0,364,365,5,1,0,0,365,367,3,46,23,0,366,363,1, - 0,0,0,367,370,1,0,0,0,368,366,1,0,0,0,368,369,1,0,0,0,369,45,1,0,0,0, - 370,368,1,0,0,0,371,378,3,48,24,0,372,373,5,131,0,0,373,374,3,44,22,0, - 374,375,5,150,0,0,375,378,1,0,0,0,376,378,3,160,80,0,377,371,1,0,0,0, - 377,372,1,0,0,0,377,376,1,0,0,0,378,47,1,0,0,0,379,381,3,50,25,0,380, - 379,1,0,0,0,380,381,1,0,0,0,381,382,1,0,0,0,382,384,5,80,0,0,383,385, - 5,24,0,0,384,383,1,0,0,0,384,385,1,0,0,0,385,387,1,0,0,0,386,388,3,52, - 26,0,387,386,1,0,0,0,387,388,1,0,0,0,388,389,1,0,0,0,389,391,3,114,57, - 0,390,392,3,54,27,0,391,390,1,0,0,0,391,392,1,0,0,0,392,394,1,0,0,0,393, - 395,3,56,28,0,394,393,1,0,0,0,394,395,1,0,0,0,395,397,1,0,0,0,396,398, - 3,60,30,0,397,396,1,0,0,0,397,398,1,0,0,0,398,400,1,0,0,0,399,401,3,62, - 31,0,400,399,1,0,0,0,400,401,1,0,0,0,401,403,1,0,0,0,402,404,3,64,32, - 0,403,402,1,0,0,0,403,404,1,0,0,0,404,407,1,0,0,0,405,406,5,103,0,0,406, - 408,7,1,0,0,407,405,1,0,0,0,407,408,1,0,0,0,408,411,1,0,0,0,409,410,5, - 103,0,0,410,412,5,90,0,0,411,409,1,0,0,0,411,412,1,0,0,0,412,414,1,0, - 0,0,413,415,3,66,33,0,414,413,1,0,0,0,414,415,1,0,0,0,415,417,1,0,0,0, - 416,418,3,58,29,0,417,416,1,0,0,0,417,418,1,0,0,0,418,420,1,0,0,0,419, - 421,3,68,34,0,420,419,1,0,0,0,420,421,1,0,0,0,421,424,1,0,0,0,422,425, - 3,72,36,0,423,425,3,74,37,0,424,422,1,0,0,0,424,423,1,0,0,0,424,425,1, - 0,0,0,425,427,1,0,0,0,426,428,3,76,38,0,427,426,1,0,0,0,427,428,1,0,0, - 0,428,49,1,0,0,0,429,430,5,103,0,0,430,431,3,124,62,0,431,51,1,0,0,0, - 432,433,5,89,0,0,433,436,5,109,0,0,434,435,5,103,0,0,435,437,5,86,0,0, - 436,434,1,0,0,0,436,437,1,0,0,0,437,53,1,0,0,0,438,439,5,34,0,0,439,440, - 3,78,39,0,440,55,1,0,0,0,441,443,7,2,0,0,442,441,1,0,0,0,442,443,1,0, - 0,0,443,444,1,0,0,0,444,445,5,5,0,0,445,446,5,48,0,0,446,447,3,114,57, - 0,447,57,1,0,0,0,448,449,5,102,0,0,449,450,3,156,78,0,450,451,5,6,0,0, - 451,452,5,131,0,0,452,453,3,98,49,0,453,463,5,150,0,0,454,455,5,117,0, - 0,455,456,3,156,78,0,456,457,5,6,0,0,457,458,5,131,0,0,458,459,3,98,49, - 0,459,460,5,150,0,0,460,462,1,0,0,0,461,454,1,0,0,0,462,465,1,0,0,0,463, - 461,1,0,0,0,463,464,1,0,0,0,464,59,1,0,0,0,465,463,1,0,0,0,466,467,5, - 70,0,0,467,468,3,116,58,0,468,61,1,0,0,0,469,470,5,100,0,0,470,471,3, - 116,58,0,471,63,1,0,0,0,472,473,5,37,0,0,473,480,5,11,0,0,474,475,7,1, - 0,0,475,476,5,131,0,0,476,477,3,114,57,0,477,478,5,150,0,0,478,481,1, - 0,0,0,479,481,3,114,57,0,480,474,1,0,0,0,480,479,1,0,0,0,481,65,1,0,0, - 0,482,483,5,38,0,0,483,484,3,116,58,0,484,67,1,0,0,0,485,486,5,65,0,0, - 486,487,5,11,0,0,487,488,3,88,44,0,488,69,1,0,0,0,489,490,5,65,0,0,490, - 491,5,11,0,0,491,492,3,114,57,0,492,71,1,0,0,0,493,494,5,55,0,0,494,497, - 3,116,58,0,495,496,5,117,0,0,496,498,3,116,58,0,497,495,1,0,0,0,497,498, - 1,0,0,0,498,503,1,0,0,0,499,500,5,103,0,0,500,504,5,86,0,0,501,502,5, - 11,0,0,502,504,3,114,57,0,503,499,1,0,0,0,503,501,1,0,0,0,503,504,1,0, - 0,0,504,523,1,0,0,0,505,506,5,55,0,0,506,509,3,116,58,0,507,508,5,103, - 0,0,508,510,5,86,0,0,509,507,1,0,0,0,509,510,1,0,0,0,510,511,1,0,0,0, - 511,512,5,62,0,0,512,513,3,116,58,0,513,523,1,0,0,0,514,515,5,55,0,0, - 515,516,3,116,58,0,516,517,5,62,0,0,517,520,3,116,58,0,518,519,5,11,0, - 0,519,521,3,114,57,0,520,518,1,0,0,0,520,521,1,0,0,0,521,523,1,0,0,0, - 522,493,1,0,0,0,522,505,1,0,0,0,522,514,1,0,0,0,523,73,1,0,0,0,524,525, - 5,62,0,0,525,526,3,116,58,0,526,75,1,0,0,0,527,528,5,82,0,0,528,529,3, - 94,47,0,529,77,1,0,0,0,530,531,6,39,-1,0,531,533,3,132,66,0,532,534,5, - 28,0,0,533,532,1,0,0,0,533,534,1,0,0,0,534,536,1,0,0,0,535,537,3,86,43, - 0,536,535,1,0,0,0,536,537,1,0,0,0,537,543,1,0,0,0,538,539,5,131,0,0,539, - 540,3,78,39,0,540,541,5,150,0,0,541,543,1,0,0,0,542,530,1,0,0,0,542,538, - 1,0,0,0,543,558,1,0,0,0,544,545,10,3,0,0,545,546,3,82,41,0,546,547,3, - 78,39,4,547,557,1,0,0,0,548,550,10,4,0,0,549,551,3,80,40,0,550,549,1, - 0,0,0,550,551,1,0,0,0,551,552,1,0,0,0,552,553,5,48,0,0,553,554,3,78,39, - 0,554,555,3,84,42,0,555,557,1,0,0,0,556,544,1,0,0,0,556,548,1,0,0,0,557, - 560,1,0,0,0,558,556,1,0,0,0,558,559,1,0,0,0,559,79,1,0,0,0,560,558,1, - 0,0,0,561,563,7,3,0,0,562,561,1,0,0,0,562,563,1,0,0,0,563,564,1,0,0,0, - 564,571,5,45,0,0,565,567,5,45,0,0,566,568,7,3,0,0,567,566,1,0,0,0,567, - 568,1,0,0,0,568,571,1,0,0,0,569,571,7,3,0,0,570,562,1,0,0,0,570,565,1, - 0,0,0,570,569,1,0,0,0,571,605,1,0,0,0,572,574,7,4,0,0,573,572,1,0,0,0, - 573,574,1,0,0,0,574,575,1,0,0,0,575,577,7,5,0,0,576,578,5,66,0,0,577, - 576,1,0,0,0,577,578,1,0,0,0,578,587,1,0,0,0,579,581,7,5,0,0,580,582,5, - 66,0,0,581,580,1,0,0,0,581,582,1,0,0,0,582,584,1,0,0,0,583,585,7,4,0, - 0,584,583,1,0,0,0,584,585,1,0,0,0,585,587,1,0,0,0,586,573,1,0,0,0,586, - 579,1,0,0,0,587,605,1,0,0,0,588,590,7,6,0,0,589,588,1,0,0,0,589,590,1, - 0,0,0,590,591,1,0,0,0,591,593,5,35,0,0,592,594,5,66,0,0,593,592,1,0,0, - 0,593,594,1,0,0,0,594,603,1,0,0,0,595,597,5,35,0,0,596,598,5,66,0,0,597, - 596,1,0,0,0,597,598,1,0,0,0,598,600,1,0,0,0,599,601,7,6,0,0,600,599,1, - 0,0,0,600,601,1,0,0,0,601,603,1,0,0,0,602,589,1,0,0,0,602,595,1,0,0,0, - 603,605,1,0,0,0,604,570,1,0,0,0,604,586,1,0,0,0,604,602,1,0,0,0,605,81, - 1,0,0,0,606,607,5,17,0,0,607,610,5,48,0,0,608,610,5,117,0,0,609,606,1, - 0,0,0,609,608,1,0,0,0,610,83,1,0,0,0,611,612,5,63,0,0,612,621,3,114,57, - 0,613,614,5,97,0,0,614,615,5,131,0,0,615,616,3,114,57,0,616,617,5,150, - 0,0,617,621,1,0,0,0,618,619,5,97,0,0,619,621,3,114,57,0,620,611,1,0,0, - 0,620,613,1,0,0,0,620,618,1,0,0,0,621,85,1,0,0,0,622,623,5,78,0,0,623, - 626,3,92,46,0,624,625,5,62,0,0,625,627,3,92,46,0,626,624,1,0,0,0,626, - 627,1,0,0,0,627,87,1,0,0,0,628,633,3,90,45,0,629,630,5,117,0,0,630,632, - 3,90,45,0,631,629,1,0,0,0,632,635,1,0,0,0,633,631,1,0,0,0,633,634,1,0, - 0,0,634,89,1,0,0,0,635,633,1,0,0,0,636,638,3,116,58,0,637,639,7,7,0,0, - 638,637,1,0,0,0,638,639,1,0,0,0,639,642,1,0,0,0,640,641,5,61,0,0,641, - 643,7,8,0,0,642,640,1,0,0,0,642,643,1,0,0,0,643,646,1,0,0,0,644,645,5, - 16,0,0,645,647,5,111,0,0,646,644,1,0,0,0,646,647,1,0,0,0,647,91,1,0,0, - 0,648,655,3,160,80,0,649,652,3,144,72,0,650,651,5,152,0,0,651,653,3,144, - 72,0,652,650,1,0,0,0,652,653,1,0,0,0,653,655,1,0,0,0,654,648,1,0,0,0, - 654,649,1,0,0,0,655,93,1,0,0,0,656,661,3,96,48,0,657,658,5,117,0,0,658, - 660,3,96,48,0,659,657,1,0,0,0,660,663,1,0,0,0,661,659,1,0,0,0,661,662, - 1,0,0,0,662,95,1,0,0,0,663,661,1,0,0,0,664,665,3,156,78,0,665,666,5,123, - 0,0,666,667,3,146,73,0,667,97,1,0,0,0,668,670,3,100,50,0,669,668,1,0, - 0,0,669,670,1,0,0,0,670,672,1,0,0,0,671,673,3,102,51,0,672,671,1,0,0, - 0,672,673,1,0,0,0,673,675,1,0,0,0,674,676,3,104,52,0,675,674,1,0,0,0, - 675,676,1,0,0,0,676,99,1,0,0,0,677,678,5,68,0,0,678,679,5,11,0,0,679, - 680,3,114,57,0,680,101,1,0,0,0,681,682,5,65,0,0,682,683,5,11,0,0,683, - 684,3,88,44,0,684,103,1,0,0,0,685,686,7,9,0,0,686,687,3,106,53,0,687, - 105,1,0,0,0,688,695,3,108,54,0,689,690,5,9,0,0,690,691,3,108,54,0,691, - 692,5,2,0,0,692,693,3,108,54,0,693,695,1,0,0,0,694,688,1,0,0,0,694,689, - 1,0,0,0,695,107,1,0,0,0,696,697,5,19,0,0,697,709,5,76,0,0,698,699,5,95, - 0,0,699,709,5,69,0,0,700,701,5,95,0,0,701,709,5,32,0,0,702,703,3,144, - 72,0,703,704,5,69,0,0,704,709,1,0,0,0,705,706,3,144,72,0,706,707,5,32, - 0,0,707,709,1,0,0,0,708,696,1,0,0,0,708,698,1,0,0,0,708,700,1,0,0,0,708, - 702,1,0,0,0,708,705,1,0,0,0,709,109,1,0,0,0,710,711,3,116,58,0,711,712, - 5,0,0,1,712,111,1,0,0,0,713,770,3,156,78,0,714,715,3,156,78,0,715,716, - 5,131,0,0,716,717,3,156,78,0,717,724,3,112,56,0,718,719,5,117,0,0,719, - 720,3,156,78,0,720,721,3,112,56,0,721,723,1,0,0,0,722,718,1,0,0,0,723, - 726,1,0,0,0,724,722,1,0,0,0,724,725,1,0,0,0,725,728,1,0,0,0,726,724,1, - 0,0,0,727,729,5,117,0,0,728,727,1,0,0,0,728,729,1,0,0,0,729,730,1,0,0, - 0,730,731,5,150,0,0,731,770,1,0,0,0,732,733,3,156,78,0,733,734,5,131, - 0,0,734,739,3,158,79,0,735,736,5,117,0,0,736,738,3,158,79,0,737,735,1, - 0,0,0,738,741,1,0,0,0,739,737,1,0,0,0,739,740,1,0,0,0,740,743,1,0,0,0, - 741,739,1,0,0,0,742,744,5,117,0,0,743,742,1,0,0,0,743,744,1,0,0,0,744, - 745,1,0,0,0,745,746,5,150,0,0,746,770,1,0,0,0,747,748,3,156,78,0,748, - 749,5,131,0,0,749,754,3,112,56,0,750,751,5,117,0,0,751,753,3,112,56,0, - 752,750,1,0,0,0,753,756,1,0,0,0,754,752,1,0,0,0,754,755,1,0,0,0,755,758, - 1,0,0,0,756,754,1,0,0,0,757,759,5,117,0,0,758,757,1,0,0,0,758,759,1,0, - 0,0,759,760,1,0,0,0,760,761,5,150,0,0,761,770,1,0,0,0,762,763,3,156,78, - 0,763,765,5,131,0,0,764,766,3,114,57,0,765,764,1,0,0,0,765,766,1,0,0, - 0,766,767,1,0,0,0,767,768,5,150,0,0,768,770,1,0,0,0,769,713,1,0,0,0,769, - 714,1,0,0,0,769,732,1,0,0,0,769,747,1,0,0,0,769,762,1,0,0,0,770,113,1, - 0,0,0,771,776,3,116,58,0,772,773,5,117,0,0,773,775,3,116,58,0,774,772, - 1,0,0,0,775,778,1,0,0,0,776,774,1,0,0,0,776,777,1,0,0,0,777,780,1,0,0, - 0,778,776,1,0,0,0,779,781,5,117,0,0,780,779,1,0,0,0,780,781,1,0,0,0,781, - 115,1,0,0,0,782,783,6,58,-1,0,783,785,5,12,0,0,784,786,3,116,58,0,785, - 784,1,0,0,0,785,786,1,0,0,0,786,792,1,0,0,0,787,788,5,99,0,0,788,789, - 3,116,58,0,789,790,5,84,0,0,790,791,3,116,58,0,791,793,1,0,0,0,792,787, - 1,0,0,0,793,794,1,0,0,0,794,792,1,0,0,0,794,795,1,0,0,0,795,798,1,0,0, - 0,796,797,5,25,0,0,797,799,3,116,58,0,798,796,1,0,0,0,798,799,1,0,0,0, - 799,800,1,0,0,0,800,801,5,26,0,0,801,934,1,0,0,0,802,803,5,13,0,0,803, - 804,5,131,0,0,804,805,3,116,58,0,805,806,5,6,0,0,806,807,3,112,56,0,807, - 808,5,150,0,0,808,934,1,0,0,0,809,810,5,20,0,0,810,934,5,111,0,0,811, - 812,5,46,0,0,812,813,3,116,58,0,813,814,3,148,74,0,814,934,1,0,0,0,815, - 816,5,83,0,0,816,817,5,131,0,0,817,818,3,116,58,0,818,819,5,34,0,0,819, - 822,3,116,58,0,820,821,5,33,0,0,821,823,3,116,58,0,822,820,1,0,0,0,822, - 823,1,0,0,0,823,824,1,0,0,0,824,825,5,150,0,0,825,934,1,0,0,0,826,827, - 5,87,0,0,827,934,5,111,0,0,828,829,5,92,0,0,829,830,5,131,0,0,830,831, - 7,10,0,0,831,832,3,162,81,0,832,833,5,34,0,0,833,834,3,116,58,0,834,835, - 5,150,0,0,835,934,1,0,0,0,836,837,3,156,78,0,837,839,5,131,0,0,838,840, - 3,114,57,0,839,838,1,0,0,0,839,840,1,0,0,0,840,841,1,0,0,0,841,842,5, - 150,0,0,842,851,1,0,0,0,843,845,5,131,0,0,844,846,5,24,0,0,845,844,1, - 0,0,0,845,846,1,0,0,0,846,848,1,0,0,0,847,849,3,114,57,0,848,847,1,0, - 0,0,848,849,1,0,0,0,849,850,1,0,0,0,850,852,5,150,0,0,851,843,1,0,0,0, - 851,852,1,0,0,0,852,853,1,0,0,0,853,854,5,67,0,0,854,855,5,131,0,0,855, - 856,3,98,49,0,856,857,5,150,0,0,857,934,1,0,0,0,858,859,3,156,78,0,859, - 861,5,131,0,0,860,862,3,114,57,0,861,860,1,0,0,0,861,862,1,0,0,0,862, - 863,1,0,0,0,863,864,5,150,0,0,864,873,1,0,0,0,865,867,5,131,0,0,866,868, - 5,24,0,0,867,866,1,0,0,0,867,868,1,0,0,0,868,870,1,0,0,0,869,871,3,114, - 57,0,870,869,1,0,0,0,870,871,1,0,0,0,871,872,1,0,0,0,872,874,5,150,0, - 0,873,865,1,0,0,0,873,874,1,0,0,0,874,875,1,0,0,0,875,876,5,67,0,0,876, - 877,3,156,78,0,877,934,1,0,0,0,878,884,3,156,78,0,879,881,5,131,0,0,880, - 882,3,114,57,0,881,880,1,0,0,0,881,882,1,0,0,0,882,883,1,0,0,0,883,885, - 5,150,0,0,884,879,1,0,0,0,884,885,1,0,0,0,885,886,1,0,0,0,886,888,5,131, - 0,0,887,889,5,24,0,0,888,887,1,0,0,0,888,889,1,0,0,0,889,891,1,0,0,0, - 890,892,3,114,57,0,891,890,1,0,0,0,891,892,1,0,0,0,892,893,1,0,0,0,893, - 894,5,150,0,0,894,934,1,0,0,0,895,934,3,120,60,0,896,934,3,164,82,0,897, - 934,3,146,73,0,898,899,5,119,0,0,899,934,3,116,58,21,900,901,5,59,0,0, - 901,934,3,116,58,15,902,903,3,136,68,0,903,904,5,121,0,0,904,906,1,0, - 0,0,905,902,1,0,0,0,905,906,1,0,0,0,906,907,1,0,0,0,907,934,5,113,0,0, - 908,909,5,131,0,0,909,910,3,44,22,0,910,911,5,150,0,0,911,934,1,0,0,0, - 912,913,5,131,0,0,913,914,3,116,58,0,914,915,5,150,0,0,915,934,1,0,0, - 0,916,917,5,131,0,0,917,918,3,114,57,0,918,919,5,150,0,0,919,934,1,0, - 0,0,920,922,5,130,0,0,921,923,3,114,57,0,922,921,1,0,0,0,922,923,1,0, - 0,0,923,924,1,0,0,0,924,934,5,149,0,0,925,927,5,129,0,0,926,928,3,40, - 20,0,927,926,1,0,0,0,927,928,1,0,0,0,928,929,1,0,0,0,929,934,5,148,0, - 0,930,934,3,118,59,0,931,934,3,128,64,0,932,934,3,36,18,0,933,782,1,0, - 0,0,933,802,1,0,0,0,933,809,1,0,0,0,933,811,1,0,0,0,933,815,1,0,0,0,933, - 826,1,0,0,0,933,828,1,0,0,0,933,836,1,0,0,0,933,858,1,0,0,0,933,878,1, - 0,0,0,933,895,1,0,0,0,933,896,1,0,0,0,933,897,1,0,0,0,933,898,1,0,0,0, - 933,900,1,0,0,0,933,905,1,0,0,0,933,908,1,0,0,0,933,912,1,0,0,0,933,916, - 1,0,0,0,933,920,1,0,0,0,933,925,1,0,0,0,933,930,1,0,0,0,933,931,1,0,0, - 0,933,932,1,0,0,0,934,1045,1,0,0,0,935,939,10,20,0,0,936,940,5,113,0, - 0,937,940,5,152,0,0,938,940,5,139,0,0,939,936,1,0,0,0,939,937,1,0,0,0, - 939,938,1,0,0,0,940,941,1,0,0,0,941,1044,3,116,58,21,942,946,10,19,0, - 0,943,947,5,140,0,0,944,947,5,119,0,0,945,947,5,118,0,0,946,943,1,0,0, - 0,946,944,1,0,0,0,946,945,1,0,0,0,947,948,1,0,0,0,948,1044,3,116,58,20, - 949,974,10,18,0,0,950,975,5,122,0,0,951,975,5,123,0,0,952,975,5,134,0, - 0,953,975,5,132,0,0,954,975,5,133,0,0,955,975,5,124,0,0,956,975,5,125, - 0,0,957,959,5,59,0,0,958,957,1,0,0,0,958,959,1,0,0,0,959,960,1,0,0,0, - 960,962,5,43,0,0,961,963,5,15,0,0,962,961,1,0,0,0,962,963,1,0,0,0,963, - 975,1,0,0,0,964,966,5,59,0,0,965,964,1,0,0,0,965,966,1,0,0,0,966,967, - 1,0,0,0,967,975,7,11,0,0,968,975,5,146,0,0,969,975,5,147,0,0,970,975, - 5,136,0,0,971,975,5,127,0,0,972,975,5,128,0,0,973,975,5,135,0,0,974,950, - 1,0,0,0,974,951,1,0,0,0,974,952,1,0,0,0,974,953,1,0,0,0,974,954,1,0,0, - 0,974,955,1,0,0,0,974,956,1,0,0,0,974,958,1,0,0,0,974,965,1,0,0,0,974, - 968,1,0,0,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,976,1,0,0,0,976,1044,3,116,58,19,977,978,10, - 16,0,0,978,979,5,138,0,0,979,1044,3,116,58,17,980,981,10,14,0,0,981,982, - 5,2,0,0,982,1044,3,116,58,15,983,984,10,13,0,0,984,985,5,64,0,0,985,1044, - 3,116,58,14,986,988,10,12,0,0,987,989,5,59,0,0,988,987,1,0,0,0,988,989, - 1,0,0,0,989,990,1,0,0,0,990,991,5,9,0,0,991,992,3,116,58,0,992,993,5, - 2,0,0,993,994,3,116,58,13,994,1044,1,0,0,0,995,996,10,11,0,0,996,997, - 5,141,0,0,997,998,3,116,58,0,998,999,5,116,0,0,999,1000,3,116,58,11,1000, - 1044,1,0,0,0,1001,1002,10,31,0,0,1002,1004,5,131,0,0,1003,1005,3,114, - 57,0,1004,1003,1,0,0,0,1004,1005,1,0,0,0,1005,1006,1,0,0,0,1006,1044, - 5,150,0,0,1007,1008,10,27,0,0,1008,1009,5,130,0,0,1009,1010,3,116,58, - 0,1010,1011,5,149,0,0,1011,1044,1,0,0,0,1012,1013,10,26,0,0,1013,1014, - 5,121,0,0,1014,1044,5,109,0,0,1015,1016,10,25,0,0,1016,1017,5,121,0,0, - 1017,1044,3,156,78,0,1018,1019,10,24,0,0,1019,1020,5,137,0,0,1020,1021, - 5,130,0,0,1021,1022,3,116,58,0,1022,1023,5,149,0,0,1023,1044,1,0,0,0, - 1024,1025,10,23,0,0,1025,1026,5,137,0,0,1026,1044,5,109,0,0,1027,1028, - 10,22,0,0,1028,1029,5,137,0,0,1029,1044,3,156,78,0,1030,1031,10,17,0, - 0,1031,1033,5,47,0,0,1032,1034,5,59,0,0,1033,1032,1,0,0,0,1033,1034,1, - 0,0,0,1034,1035,1,0,0,0,1035,1044,5,60,0,0,1036,1041,10,10,0,0,1037,1038, - 5,6,0,0,1038,1042,3,156,78,0,1039,1040,5,6,0,0,1040,1042,5,111,0,0,1041, - 1037,1,0,0,0,1041,1039,1,0,0,0,1042,1044,1,0,0,0,1043,935,1,0,0,0,1043, - 942,1,0,0,0,1043,949,1,0,0,0,1043,977,1,0,0,0,1043,980,1,0,0,0,1043,983, - 1,0,0,0,1043,986,1,0,0,0,1043,995,1,0,0,0,1043,1001,1,0,0,0,1043,1007, - 1,0,0,0,1043,1012,1,0,0,0,1043,1015,1,0,0,0,1043,1018,1,0,0,0,1043,1024, - 1,0,0,0,1043,1027,1,0,0,0,1043,1030,1,0,0,0,1043,1036,1,0,0,0,1044,1047, - 1,0,0,0,1045,1043,1,0,0,0,1045,1046,1,0,0,0,1046,117,1,0,0,0,1047,1045, - 1,0,0,0,1048,1049,5,131,0,0,1049,1054,3,156,78,0,1050,1051,5,117,0,0, - 1051,1053,3,156,78,0,1052,1050,1,0,0,0,1053,1056,1,0,0,0,1054,1052,1, - 0,0,0,1054,1055,1,0,0,0,1055,1058,1,0,0,0,1056,1054,1,0,0,0,1057,1059, - 5,117,0,0,1058,1057,1,0,0,0,1058,1059,1,0,0,0,1059,1060,1,0,0,0,1060, - 1061,5,150,0,0,1061,1076,1,0,0,0,1062,1067,3,156,78,0,1063,1064,5,117, - 0,0,1064,1066,3,156,78,0,1065,1063,1,0,0,0,1066,1069,1,0,0,0,1067,1065, - 1,0,0,0,1067,1068,1,0,0,0,1068,1071,1,0,0,0,1069,1067,1,0,0,0,1070,1072, - 5,117,0,0,1071,1070,1,0,0,0,1071,1072,1,0,0,0,1072,1076,1,0,0,0,1073, - 1074,5,131,0,0,1074,1076,5,150,0,0,1075,1048,1,0,0,0,1075,1062,1,0,0, - 0,1075,1073,1,0,0,0,1076,1077,1,0,0,0,1077,1080,5,112,0,0,1078,1081,3, - 36,18,0,1079,1081,3,116,58,0,1080,1078,1,0,0,0,1080,1079,1,0,0,0,1081, - 119,1,0,0,0,1082,1083,5,133,0,0,1083,1087,3,156,78,0,1084,1086,3,122, - 61,0,1085,1084,1,0,0,0,1086,1089,1,0,0,0,1087,1085,1,0,0,0,1087,1088, - 1,0,0,0,1088,1090,1,0,0,0,1089,1087,1,0,0,0,1090,1091,5,152,0,0,1091, - 1092,5,125,0,0,1092,1115,1,0,0,0,1093,1094,5,133,0,0,1094,1098,3,156, - 78,0,1095,1097,3,122,61,0,1096,1095,1,0,0,0,1097,1100,1,0,0,0,1098,1096, - 1,0,0,0,1098,1099,1,0,0,0,1099,1101,1,0,0,0,1100,1098,1,0,0,0,1101,1107, - 5,125,0,0,1102,1108,3,120,60,0,1103,1104,5,129,0,0,1104,1105,3,116,58, - 0,1105,1106,5,148,0,0,1106,1108,1,0,0,0,1107,1102,1,0,0,0,1107,1103,1, - 0,0,0,1107,1108,1,0,0,0,1108,1109,1,0,0,0,1109,1110,5,133,0,0,1110,1111, - 5,152,0,0,1111,1112,3,156,78,0,1112,1113,5,125,0,0,1113,1115,1,0,0,0, - 1114,1082,1,0,0,0,1114,1093,1,0,0,0,1115,121,1,0,0,0,1116,1117,3,156, - 78,0,1117,1118,5,123,0,0,1118,1119,3,162,81,0,1119,1128,1,0,0,0,1120, - 1121,3,156,78,0,1121,1122,5,123,0,0,1122,1123,5,129,0,0,1123,1124,3,116, - 58,0,1124,1125,5,148,0,0,1125,1128,1,0,0,0,1126,1128,3,156,78,0,1127, - 1116,1,0,0,0,1127,1120,1,0,0,0,1127,1126,1,0,0,0,1128,123,1,0,0,0,1129, - 1134,3,126,63,0,1130,1131,5,117,0,0,1131,1133,3,126,63,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,1138, - 1,0,0,0,1136,1134,1,0,0,0,1137,1139,5,117,0,0,1138,1137,1,0,0,0,1138, - 1139,1,0,0,0,1139,125,1,0,0,0,1140,1141,3,156,78,0,1141,1142,5,6,0,0, - 1142,1143,5,131,0,0,1143,1144,3,44,22,0,1144,1145,5,150,0,0,1145,1151, - 1,0,0,0,1146,1147,3,116,58,0,1147,1148,5,6,0,0,1148,1149,3,156,78,0,1149, - 1151,1,0,0,0,1150,1140,1,0,0,0,1150,1146,1,0,0,0,1151,127,1,0,0,0,1152, - 1160,3,160,80,0,1153,1154,3,136,68,0,1154,1155,5,121,0,0,1155,1157,1, - 0,0,0,1156,1153,1,0,0,0,1156,1157,1,0,0,0,1157,1158,1,0,0,0,1158,1160, - 3,130,65,0,1159,1152,1,0,0,0,1159,1156,1,0,0,0,1160,129,1,0,0,0,1161, - 1166,3,156,78,0,1162,1163,5,121,0,0,1163,1165,3,156,78,0,1164,1162,1, - 0,0,0,1165,1168,1,0,0,0,1166,1164,1,0,0,0,1166,1167,1,0,0,0,1167,131, - 1,0,0,0,1168,1166,1,0,0,0,1169,1170,6,66,-1,0,1170,1179,3,136,68,0,1171, - 1179,3,134,67,0,1172,1173,5,131,0,0,1173,1174,3,44,22,0,1174,1175,5,150, - 0,0,1175,1179,1,0,0,0,1176,1179,3,120,60,0,1177,1179,3,160,80,0,1178, - 1169,1,0,0,0,1178,1171,1,0,0,0,1178,1172,1,0,0,0,1178,1176,1,0,0,0,1178, - 1177,1,0,0,0,1179,1188,1,0,0,0,1180,1184,10,3,0,0,1181,1185,3,154,77, - 0,1182,1183,5,6,0,0,1183,1185,3,156,78,0,1184,1181,1,0,0,0,1184,1182, - 1,0,0,0,1185,1187,1,0,0,0,1186,1180,1,0,0,0,1187,1190,1,0,0,0,1188,1186, - 1,0,0,0,1188,1189,1,0,0,0,1189,133,1,0,0,0,1190,1188,1,0,0,0,1191,1192, - 3,156,78,0,1192,1194,5,131,0,0,1193,1195,3,138,69,0,1194,1193,1,0,0,0, - 1194,1195,1,0,0,0,1195,1196,1,0,0,0,1196,1197,5,150,0,0,1197,135,1,0, - 0,0,1198,1199,3,140,70,0,1199,1200,5,121,0,0,1200,1202,1,0,0,0,1201,1198, - 1,0,0,0,1201,1202,1,0,0,0,1202,1203,1,0,0,0,1203,1204,3,156,78,0,1204, - 137,1,0,0,0,1205,1210,3,116,58,0,1206,1207,5,117,0,0,1207,1209,3,116, - 58,0,1208,1206,1,0,0,0,1209,1212,1,0,0,0,1210,1208,1,0,0,0,1210,1211, + 58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,821,8,58,1,58,1,58,1,58,1,58,1, + 58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,838,8,58,1, + 58,1,58,1,58,1,58,3,58,844,8,58,1,58,3,58,847,8,58,1,58,3,58,850,8,58, + 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,860,8,58,1,58,1,58,1,58, + 1,58,3,58,866,8,58,1,58,3,58,869,8,58,1,58,3,58,872,8,58,1,58,1,58,1, + 58,1,58,1,58,1,58,3,58,880,8,58,1,58,3,58,883,8,58,1,58,1,58,3,58,887, + 8,58,1,58,3,58,890,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, + 1,58,1,58,1,58,3,58,904,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, + 1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,921,8,58,1,58,1,58,1,58,3,58, + 926,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,936,8,58,1,58,1, + 58,1,58,1,58,3,58,942,8,58,1,58,1,58,1,58,1,58,1,58,3,58,949,8,58,1,58, + 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,961,8,58,1,58,1,58, + 3,58,965,8,58,1,58,3,58,968,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3, + 58,977,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, + 58,3,58,991,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, + 58,1,58,1,58,1,58,3,58,1007,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, + 58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1, + 58,1,58,1,58,1,58,1,58,1,58,3,58,1036,8,58,1,58,1,58,1,58,1,58,1,58,1, + 58,3,58,1044,8,58,5,58,1046,8,58,10,58,12,58,1049,9,58,1,59,1,59,1,59, + 1,59,5,59,1055,8,59,10,59,12,59,1058,9,59,1,59,3,59,1061,8,59,1,59,1, + 59,1,59,1,59,1,59,5,59,1068,8,59,10,59,12,59,1071,9,59,1,59,3,59,1074, + 8,59,1,59,1,59,3,59,1078,8,59,1,59,1,59,1,59,3,59,1083,8,59,1,60,1,60, + 1,60,5,60,1088,8,60,10,60,12,60,1091,9,60,1,60,1,60,1,60,1,60,1,60,1, + 60,5,60,1099,8,60,10,60,12,60,1102,9,60,1,60,1,60,1,60,1,60,1,60,1,60, + 3,60,1110,8,60,1,60,1,60,1,60,1,60,1,60,3,60,1117,8,60,1,61,1,61,1,61, + 1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61,3,61,1130,8,61,1,62,1,62,1,62, + 5,62,1135,8,62,10,62,12,62,1138,9,62,1,62,3,62,1141,8,62,1,63,1,63,1, + 63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,3,63,1153,8,63,1,64,1,64,1,64,3, + 64,1158,8,64,1,64,1,64,1,65,1,65,1,65,5,65,1165,8,65,10,65,12,65,1168, + 9,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,3,66,1179,8,66,1,66, + 1,66,1,66,1,66,3,66,1185,8,66,5,66,1187,8,66,10,66,12,66,1190,9,66,1, + 67,1,67,1,67,3,67,1195,8,67,1,67,1,67,1,68,1,68,1,68,3,68,1202,8,68,1, + 68,1,68,1,69,1,69,1,69,5,69,1209,8,69,10,69,12,69,1212,9,69,1,69,3,69, + 1215,8,69,1,70,1,70,1,71,1,71,1,71,1,71,1,71,1,71,3,71,1225,8,71,3,71, + 1227,8,71,1,72,3,72,1230,8,72,1,72,1,72,1,72,1,72,1,72,1,72,3,72,1238, + 8,72,1,73,1,73,1,73,3,73,1243,8,73,1,74,1,74,1,75,1,75,1,76,1,76,1,77, + 1,77,3,77,1253,8,77,1,78,1,78,1,78,3,78,1258,8,78,1,79,1,79,1,79,1,79, + 1,80,1,80,3,80,1266,8,80,1,81,1,81,5,81,1270,8,81,10,81,12,81,1273,9, + 81,1,81,1,81,1,82,1,82,1,82,1,82,1,82,3,82,1282,8,82,1,83,1,83,5,83,1286, + 8,83,10,83,12,83,1289,9,83,1,83,1,83,1,84,1,84,1,84,1,84,1,84,3,84,1298, + 8,84,1,84,0,3,78,116,132,85,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,0,17,2,0,31,31,36,36,2,0,18,18,75,75, + 2,0,45,45,52,52,3,0,1,1,4,4,8,8,4,0,1,1,3,4,8,8,81,81,2,0,52,52,74,74, + 2,0,1,1,4,4,2,0,7,7,22,23,2,0,30,30,50,50,2,0,72,72,77,77,3,0,10,10,51, + 51,91,91,2,0,42,42,54,54,1,0,108,109,2,0,119,119,140,140,7,0,21,21,39, + 39,56,57,71,71,79,79,98,98,104,104,17,0,1,13,15,20,22,28,30,30,32,35, + 37,38,40,43,45,52,54,55,59,59,61,70,72,78,80,84,86,93,95,97,99,100,102, + 103,4,0,20,20,30,30,40,40,49,49,1474,0,173,1,0,0,0,2,180,1,0,0,0,4,182, + 1,0,0,0,6,184,1,0,0,0,8,191,1,0,0,0,10,214,1,0,0,0,12,216,1,0,0,0,14, + 223,1,0,0,0,16,230,1,0,0,0,18,243,1,0,0,0,20,255,1,0,0,0,22,264,1,0,0, + 0,24,272,1,0,0,0,26,294,1,0,0,0,28,309,1,0,0,0,30,318,1,0,0,0,32,323, + 1,0,0,0,34,327,1,0,0,0,36,329,1,0,0,0,38,338,1,0,0,0,40,342,1,0,0,0,42, + 356,1,0,0,0,44,360,1,0,0,0,46,375,1,0,0,0,48,378,1,0,0,0,50,427,1,0,0, + 0,52,430,1,0,0,0,54,436,1,0,0,0,56,440,1,0,0,0,58,446,1,0,0,0,60,464, + 1,0,0,0,62,467,1,0,0,0,64,470,1,0,0,0,66,480,1,0,0,0,68,483,1,0,0,0,70, + 487,1,0,0,0,72,520,1,0,0,0,74,522,1,0,0,0,76,525,1,0,0,0,78,540,1,0,0, + 0,80,602,1,0,0,0,82,607,1,0,0,0,84,618,1,0,0,0,86,620,1,0,0,0,88,626, + 1,0,0,0,90,634,1,0,0,0,92,652,1,0,0,0,94,654,1,0,0,0,96,662,1,0,0,0,98, + 667,1,0,0,0,100,675,1,0,0,0,102,679,1,0,0,0,104,683,1,0,0,0,106,692,1, + 0,0,0,108,706,1,0,0,0,110,708,1,0,0,0,112,767,1,0,0,0,114,769,1,0,0,0, + 116,935,1,0,0,0,118,1077,1,0,0,0,120,1116,1,0,0,0,122,1129,1,0,0,0,124, + 1131,1,0,0,0,126,1152,1,0,0,0,128,1157,1,0,0,0,130,1161,1,0,0,0,132,1178, + 1,0,0,0,134,1191,1,0,0,0,136,1201,1,0,0,0,138,1205,1,0,0,0,140,1216,1, + 0,0,0,142,1226,1,0,0,0,144,1229,1,0,0,0,146,1242,1,0,0,0,148,1244,1,0, + 0,0,150,1246,1,0,0,0,152,1248,1,0,0,0,154,1252,1,0,0,0,156,1257,1,0,0, + 0,158,1259,1,0,0,0,160,1265,1,0,0,0,162,1267,1,0,0,0,164,1281,1,0,0,0, + 166,1283,1,0,0,0,168,1297,1,0,0,0,170,172,3,2,1,0,171,170,1,0,0,0,172, + 175,1,0,0,0,173,171,1,0,0,0,173,174,1,0,0,0,174,176,1,0,0,0,175,173,1, + 0,0,0,176,177,5,0,0,1,177,1,1,0,0,0,178,181,3,6,3,0,179,181,3,10,5,0, + 180,178,1,0,0,0,180,179,1,0,0,0,181,3,1,0,0,0,182,183,3,116,58,0,183, + 5,1,0,0,0,184,185,5,53,0,0,185,189,3,156,78,0,186,187,5,116,0,0,187,188, + 5,123,0,0,188,190,3,4,2,0,189,186,1,0,0,0,189,190,1,0,0,0,190,7,1,0,0, + 0,191,196,3,156,78,0,192,193,5,117,0,0,193,195,3,156,78,0,194,192,1,0, + 0,0,195,198,1,0,0,0,196,194,1,0,0,0,196,197,1,0,0,0,197,200,1,0,0,0,198, + 196,1,0,0,0,199,201,5,117,0,0,200,199,1,0,0,0,200,201,1,0,0,0,201,9,1, + 0,0,0,202,215,3,12,6,0,203,215,3,14,7,0,204,215,3,18,9,0,205,215,3,20, + 10,0,206,215,3,22,11,0,207,215,3,26,13,0,208,215,3,24,12,0,209,215,3, + 28,14,0,210,215,3,30,15,0,211,215,3,36,18,0,212,215,3,32,16,0,213,215, + 3,34,17,0,214,202,1,0,0,0,214,203,1,0,0,0,214,204,1,0,0,0,214,205,1,0, + 0,0,214,206,1,0,0,0,214,207,1,0,0,0,214,208,1,0,0,0,214,209,1,0,0,0,214, + 210,1,0,0,0,214,211,1,0,0,0,214,212,1,0,0,0,214,213,1,0,0,0,215,11,1, + 0,0,0,216,218,5,73,0,0,217,219,3,4,2,0,218,217,1,0,0,0,218,219,1,0,0, + 0,219,221,1,0,0,0,220,222,5,151,0,0,221,220,1,0,0,0,221,222,1,0,0,0,222, + 13,1,0,0,0,223,225,5,85,0,0,224,226,3,4,2,0,225,224,1,0,0,0,225,226,1, + 0,0,0,226,228,1,0,0,0,227,229,5,151,0,0,228,227,1,0,0,0,228,229,1,0,0, + 0,229,15,1,0,0,0,230,239,5,14,0,0,231,232,5,131,0,0,232,235,3,156,78, + 0,233,234,5,116,0,0,234,236,3,156,78,0,235,233,1,0,0,0,235,236,1,0,0, + 0,236,237,1,0,0,0,237,238,5,150,0,0,238,240,1,0,0,0,239,231,1,0,0,0,239, + 240,1,0,0,0,240,241,1,0,0,0,241,242,3,36,18,0,242,17,1,0,0,0,243,244, + 5,94,0,0,244,248,3,36,18,0,245,247,3,16,8,0,246,245,1,0,0,0,247,250,1, + 0,0,0,248,246,1,0,0,0,248,249,1,0,0,0,249,253,1,0,0,0,250,248,1,0,0,0, + 251,252,5,29,0,0,252,254,3,36,18,0,253,251,1,0,0,0,253,254,1,0,0,0,254, + 19,1,0,0,0,255,256,5,41,0,0,256,257,5,131,0,0,257,258,3,4,2,0,258,259, + 5,150,0,0,259,262,3,10,5,0,260,261,5,25,0,0,261,263,3,10,5,0,262,260, + 1,0,0,0,262,263,1,0,0,0,263,21,1,0,0,0,264,265,5,101,0,0,265,266,5,131, + 0,0,266,267,3,4,2,0,267,268,5,150,0,0,268,270,3,10,5,0,269,271,5,151, + 0,0,270,269,1,0,0,0,270,271,1,0,0,0,271,23,1,0,0,0,272,273,5,33,0,0,273, + 277,5,131,0,0,274,278,3,6,3,0,275,278,3,30,15,0,276,278,3,4,2,0,277,274, + 1,0,0,0,277,275,1,0,0,0,277,276,1,0,0,0,277,278,1,0,0,0,278,279,1,0,0, + 0,279,281,5,151,0,0,280,282,3,4,2,0,281,280,1,0,0,0,281,282,1,0,0,0,282, + 283,1,0,0,0,283,287,5,151,0,0,284,288,3,6,3,0,285,288,3,30,15,0,286,288, + 3,4,2,0,287,284,1,0,0,0,287,285,1,0,0,0,287,286,1,0,0,0,287,288,1,0,0, + 0,288,289,1,0,0,0,289,290,5,150,0,0,290,292,3,10,5,0,291,293,5,151,0, + 0,292,291,1,0,0,0,292,293,1,0,0,0,293,25,1,0,0,0,294,295,5,33,0,0,295, + 296,5,131,0,0,296,297,5,53,0,0,297,300,3,156,78,0,298,299,5,117,0,0,299, + 301,3,156,78,0,300,298,1,0,0,0,300,301,1,0,0,0,301,302,1,0,0,0,302,303, + 5,43,0,0,303,304,3,4,2,0,304,305,5,150,0,0,305,307,3,10,5,0,306,308,5, + 151,0,0,307,306,1,0,0,0,307,308,1,0,0,0,308,27,1,0,0,0,309,310,7,0,0, + 0,310,311,3,156,78,0,311,313,5,131,0,0,312,314,3,8,4,0,313,312,1,0,0, + 0,313,314,1,0,0,0,314,315,1,0,0,0,315,316,5,150,0,0,316,317,3,36,18,0, + 317,29,1,0,0,0,318,319,3,4,2,0,319,320,5,116,0,0,320,321,5,123,0,0,321, + 322,3,4,2,0,322,31,1,0,0,0,323,325,3,4,2,0,324,326,5,151,0,0,325,324, + 1,0,0,0,325,326,1,0,0,0,326,33,1,0,0,0,327,328,5,151,0,0,328,35,1,0,0, + 0,329,333,5,129,0,0,330,332,3,2,1,0,331,330,1,0,0,0,332,335,1,0,0,0,333, + 331,1,0,0,0,333,334,1,0,0,0,334,336,1,0,0,0,335,333,1,0,0,0,336,337,5, + 148,0,0,337,37,1,0,0,0,338,339,3,4,2,0,339,340,5,116,0,0,340,341,3,4, + 2,0,341,39,1,0,0,0,342,347,3,38,19,0,343,344,5,117,0,0,344,346,3,38,19, + 0,345,343,1,0,0,0,346,349,1,0,0,0,347,345,1,0,0,0,347,348,1,0,0,0,348, + 351,1,0,0,0,349,347,1,0,0,0,350,352,5,117,0,0,351,350,1,0,0,0,351,352, + 1,0,0,0,352,41,1,0,0,0,353,357,3,44,22,0,354,357,3,48,24,0,355,357,3, + 120,60,0,356,353,1,0,0,0,356,354,1,0,0,0,356,355,1,0,0,0,357,358,1,0, + 0,0,358,359,5,0,0,1,359,43,1,0,0,0,360,366,3,46,23,0,361,362,5,96,0,0, + 362,363,5,1,0,0,363,365,3,46,23,0,364,361,1,0,0,0,365,368,1,0,0,0,366, + 364,1,0,0,0,366,367,1,0,0,0,367,45,1,0,0,0,368,366,1,0,0,0,369,376,3, + 48,24,0,370,371,5,131,0,0,371,372,3,44,22,0,372,373,5,150,0,0,373,376, + 1,0,0,0,374,376,3,36,18,0,375,369,1,0,0,0,375,370,1,0,0,0,375,374,1,0, + 0,0,376,47,1,0,0,0,377,379,3,50,25,0,378,377,1,0,0,0,378,379,1,0,0,0, + 379,380,1,0,0,0,380,382,5,80,0,0,381,383,5,24,0,0,382,381,1,0,0,0,382, + 383,1,0,0,0,383,385,1,0,0,0,384,386,3,52,26,0,385,384,1,0,0,0,385,386, + 1,0,0,0,386,387,1,0,0,0,387,389,3,114,57,0,388,390,3,54,27,0,389,388, + 1,0,0,0,389,390,1,0,0,0,390,392,1,0,0,0,391,393,3,56,28,0,392,391,1,0, + 0,0,392,393,1,0,0,0,393,395,1,0,0,0,394,396,3,60,30,0,395,394,1,0,0,0, + 395,396,1,0,0,0,396,398,1,0,0,0,397,399,3,62,31,0,398,397,1,0,0,0,398, + 399,1,0,0,0,399,401,1,0,0,0,400,402,3,64,32,0,401,400,1,0,0,0,401,402, + 1,0,0,0,402,405,1,0,0,0,403,404,5,103,0,0,404,406,7,1,0,0,405,403,1,0, + 0,0,405,406,1,0,0,0,406,409,1,0,0,0,407,408,5,103,0,0,408,410,5,90,0, + 0,409,407,1,0,0,0,409,410,1,0,0,0,410,412,1,0,0,0,411,413,3,66,33,0,412, + 411,1,0,0,0,412,413,1,0,0,0,413,415,1,0,0,0,414,416,3,58,29,0,415,414, + 1,0,0,0,415,416,1,0,0,0,416,418,1,0,0,0,417,419,3,68,34,0,418,417,1,0, + 0,0,418,419,1,0,0,0,419,422,1,0,0,0,420,423,3,72,36,0,421,423,3,74,37, + 0,422,420,1,0,0,0,422,421,1,0,0,0,422,423,1,0,0,0,423,425,1,0,0,0,424, + 426,3,76,38,0,425,424,1,0,0,0,425,426,1,0,0,0,426,49,1,0,0,0,427,428, + 5,103,0,0,428,429,3,124,62,0,429,51,1,0,0,0,430,431,5,89,0,0,431,434, + 5,109,0,0,432,433,5,103,0,0,433,435,5,86,0,0,434,432,1,0,0,0,434,435, + 1,0,0,0,435,53,1,0,0,0,436,437,5,34,0,0,437,438,3,78,39,0,438,55,1,0, + 0,0,439,441,7,2,0,0,440,439,1,0,0,0,440,441,1,0,0,0,441,442,1,0,0,0,442, + 443,5,5,0,0,443,444,5,48,0,0,444,445,3,114,57,0,445,57,1,0,0,0,446,447, + 5,102,0,0,447,448,3,156,78,0,448,449,5,6,0,0,449,450,5,131,0,0,450,451, + 3,98,49,0,451,461,5,150,0,0,452,453,5,117,0,0,453,454,3,156,78,0,454, + 455,5,6,0,0,455,456,5,131,0,0,456,457,3,98,49,0,457,458,5,150,0,0,458, + 460,1,0,0,0,459,452,1,0,0,0,460,463,1,0,0,0,461,459,1,0,0,0,461,462,1, + 0,0,0,462,59,1,0,0,0,463,461,1,0,0,0,464,465,5,70,0,0,465,466,3,116,58, + 0,466,61,1,0,0,0,467,468,5,100,0,0,468,469,3,116,58,0,469,63,1,0,0,0, + 470,471,5,37,0,0,471,478,5,11,0,0,472,473,7,1,0,0,473,474,5,131,0,0,474, + 475,3,114,57,0,475,476,5,150,0,0,476,479,1,0,0,0,477,479,3,114,57,0,478, + 472,1,0,0,0,478,477,1,0,0,0,479,65,1,0,0,0,480,481,5,38,0,0,481,482,3, + 116,58,0,482,67,1,0,0,0,483,484,5,65,0,0,484,485,5,11,0,0,485,486,3,88, + 44,0,486,69,1,0,0,0,487,488,5,65,0,0,488,489,5,11,0,0,489,490,3,114,57, + 0,490,71,1,0,0,0,491,492,5,55,0,0,492,495,3,116,58,0,493,494,5,117,0, + 0,494,496,3,116,58,0,495,493,1,0,0,0,495,496,1,0,0,0,496,501,1,0,0,0, + 497,498,5,103,0,0,498,502,5,86,0,0,499,500,5,11,0,0,500,502,3,114,57, + 0,501,497,1,0,0,0,501,499,1,0,0,0,501,502,1,0,0,0,502,521,1,0,0,0,503, + 504,5,55,0,0,504,507,3,116,58,0,505,506,5,103,0,0,506,508,5,86,0,0,507, + 505,1,0,0,0,507,508,1,0,0,0,508,509,1,0,0,0,509,510,5,62,0,0,510,511, + 3,116,58,0,511,521,1,0,0,0,512,513,5,55,0,0,513,514,3,116,58,0,514,515, + 5,62,0,0,515,518,3,116,58,0,516,517,5,11,0,0,517,519,3,114,57,0,518,516, + 1,0,0,0,518,519,1,0,0,0,519,521,1,0,0,0,520,491,1,0,0,0,520,503,1,0,0, + 0,520,512,1,0,0,0,521,73,1,0,0,0,522,523,5,62,0,0,523,524,3,116,58,0, + 524,75,1,0,0,0,525,526,5,82,0,0,526,527,3,94,47,0,527,77,1,0,0,0,528, + 529,6,39,-1,0,529,531,3,132,66,0,530,532,5,28,0,0,531,530,1,0,0,0,531, + 532,1,0,0,0,532,534,1,0,0,0,533,535,3,86,43,0,534,533,1,0,0,0,534,535, + 1,0,0,0,535,541,1,0,0,0,536,537,5,131,0,0,537,538,3,78,39,0,538,539,5, + 150,0,0,539,541,1,0,0,0,540,528,1,0,0,0,540,536,1,0,0,0,541,556,1,0,0, + 0,542,543,10,3,0,0,543,544,3,82,41,0,544,545,3,78,39,4,545,555,1,0,0, + 0,546,548,10,4,0,0,547,549,3,80,40,0,548,547,1,0,0,0,548,549,1,0,0,0, + 549,550,1,0,0,0,550,551,5,48,0,0,551,552,3,78,39,0,552,553,3,84,42,0, + 553,555,1,0,0,0,554,542,1,0,0,0,554,546,1,0,0,0,555,558,1,0,0,0,556,554, + 1,0,0,0,556,557,1,0,0,0,557,79,1,0,0,0,558,556,1,0,0,0,559,561,7,3,0, + 0,560,559,1,0,0,0,560,561,1,0,0,0,561,562,1,0,0,0,562,569,5,45,0,0,563, + 565,5,45,0,0,564,566,7,3,0,0,565,564,1,0,0,0,565,566,1,0,0,0,566,569, + 1,0,0,0,567,569,7,3,0,0,568,560,1,0,0,0,568,563,1,0,0,0,568,567,1,0,0, + 0,569,603,1,0,0,0,570,572,7,4,0,0,571,570,1,0,0,0,571,572,1,0,0,0,572, + 573,1,0,0,0,573,575,7,5,0,0,574,576,5,66,0,0,575,574,1,0,0,0,575,576, + 1,0,0,0,576,585,1,0,0,0,577,579,7,5,0,0,578,580,5,66,0,0,579,578,1,0, + 0,0,579,580,1,0,0,0,580,582,1,0,0,0,581,583,7,4,0,0,582,581,1,0,0,0,582, + 583,1,0,0,0,583,585,1,0,0,0,584,571,1,0,0,0,584,577,1,0,0,0,585,603,1, + 0,0,0,586,588,7,6,0,0,587,586,1,0,0,0,587,588,1,0,0,0,588,589,1,0,0,0, + 589,591,5,35,0,0,590,592,5,66,0,0,591,590,1,0,0,0,591,592,1,0,0,0,592, + 601,1,0,0,0,593,595,5,35,0,0,594,596,5,66,0,0,595,594,1,0,0,0,595,596, + 1,0,0,0,596,598,1,0,0,0,597,599,7,6,0,0,598,597,1,0,0,0,598,599,1,0,0, + 0,599,601,1,0,0,0,600,587,1,0,0,0,600,593,1,0,0,0,601,603,1,0,0,0,602, + 568,1,0,0,0,602,584,1,0,0,0,602,600,1,0,0,0,603,81,1,0,0,0,604,605,5, + 17,0,0,605,608,5,48,0,0,606,608,5,117,0,0,607,604,1,0,0,0,607,606,1,0, + 0,0,608,83,1,0,0,0,609,610,5,63,0,0,610,619,3,114,57,0,611,612,5,97,0, + 0,612,613,5,131,0,0,613,614,3,114,57,0,614,615,5,150,0,0,615,619,1,0, + 0,0,616,617,5,97,0,0,617,619,3,114,57,0,618,609,1,0,0,0,618,611,1,0,0, + 0,618,616,1,0,0,0,619,85,1,0,0,0,620,621,5,78,0,0,621,624,3,92,46,0,622, + 623,5,62,0,0,623,625,3,92,46,0,624,622,1,0,0,0,624,625,1,0,0,0,625,87, + 1,0,0,0,626,631,3,90,45,0,627,628,5,117,0,0,628,630,3,90,45,0,629,627, + 1,0,0,0,630,633,1,0,0,0,631,629,1,0,0,0,631,632,1,0,0,0,632,89,1,0,0, + 0,633,631,1,0,0,0,634,636,3,116,58,0,635,637,7,7,0,0,636,635,1,0,0,0, + 636,637,1,0,0,0,637,640,1,0,0,0,638,639,5,61,0,0,639,641,7,8,0,0,640, + 638,1,0,0,0,640,641,1,0,0,0,641,644,1,0,0,0,642,643,5,16,0,0,643,645, + 5,111,0,0,644,642,1,0,0,0,644,645,1,0,0,0,645,91,1,0,0,0,646,653,3,36, + 18,0,647,650,3,144,72,0,648,649,5,152,0,0,649,651,3,144,72,0,650,648, + 1,0,0,0,650,651,1,0,0,0,651,653,1,0,0,0,652,646,1,0,0,0,652,647,1,0,0, + 0,653,93,1,0,0,0,654,659,3,96,48,0,655,656,5,117,0,0,656,658,3,96,48, + 0,657,655,1,0,0,0,658,661,1,0,0,0,659,657,1,0,0,0,659,660,1,0,0,0,660, + 95,1,0,0,0,661,659,1,0,0,0,662,663,3,156,78,0,663,664,5,123,0,0,664,665, + 3,146,73,0,665,97,1,0,0,0,666,668,3,100,50,0,667,666,1,0,0,0,667,668, + 1,0,0,0,668,670,1,0,0,0,669,671,3,102,51,0,670,669,1,0,0,0,670,671,1, + 0,0,0,671,673,1,0,0,0,672,674,3,104,52,0,673,672,1,0,0,0,673,674,1,0, + 0,0,674,99,1,0,0,0,675,676,5,68,0,0,676,677,5,11,0,0,677,678,3,114,57, + 0,678,101,1,0,0,0,679,680,5,65,0,0,680,681,5,11,0,0,681,682,3,88,44,0, + 682,103,1,0,0,0,683,684,7,9,0,0,684,685,3,106,53,0,685,105,1,0,0,0,686, + 693,3,108,54,0,687,688,5,9,0,0,688,689,3,108,54,0,689,690,5,2,0,0,690, + 691,3,108,54,0,691,693,1,0,0,0,692,686,1,0,0,0,692,687,1,0,0,0,693,107, + 1,0,0,0,694,695,5,19,0,0,695,707,5,76,0,0,696,697,5,95,0,0,697,707,5, + 69,0,0,698,699,5,95,0,0,699,707,5,32,0,0,700,701,3,144,72,0,701,702,5, + 69,0,0,702,707,1,0,0,0,703,704,3,144,72,0,704,705,5,32,0,0,705,707,1, + 0,0,0,706,694,1,0,0,0,706,696,1,0,0,0,706,698,1,0,0,0,706,700,1,0,0,0, + 706,703,1,0,0,0,707,109,1,0,0,0,708,709,3,116,58,0,709,710,5,0,0,1,710, + 111,1,0,0,0,711,768,3,156,78,0,712,713,3,156,78,0,713,714,5,131,0,0,714, + 715,3,156,78,0,715,722,3,112,56,0,716,717,5,117,0,0,717,718,3,156,78, + 0,718,719,3,112,56,0,719,721,1,0,0,0,720,716,1,0,0,0,721,724,1,0,0,0, + 722,720,1,0,0,0,722,723,1,0,0,0,723,726,1,0,0,0,724,722,1,0,0,0,725,727, + 5,117,0,0,726,725,1,0,0,0,726,727,1,0,0,0,727,728,1,0,0,0,728,729,5,150, + 0,0,729,768,1,0,0,0,730,731,3,156,78,0,731,732,5,131,0,0,732,737,3,158, + 79,0,733,734,5,117,0,0,734,736,3,158,79,0,735,733,1,0,0,0,736,739,1,0, + 0,0,737,735,1,0,0,0,737,738,1,0,0,0,738,741,1,0,0,0,739,737,1,0,0,0,740, + 742,5,117,0,0,741,740,1,0,0,0,741,742,1,0,0,0,742,743,1,0,0,0,743,744, + 5,150,0,0,744,768,1,0,0,0,745,746,3,156,78,0,746,747,5,131,0,0,747,752, + 3,112,56,0,748,749,5,117,0,0,749,751,3,112,56,0,750,748,1,0,0,0,751,754, + 1,0,0,0,752,750,1,0,0,0,752,753,1,0,0,0,753,756,1,0,0,0,754,752,1,0,0, + 0,755,757,5,117,0,0,756,755,1,0,0,0,756,757,1,0,0,0,757,758,1,0,0,0,758, + 759,5,150,0,0,759,768,1,0,0,0,760,761,3,156,78,0,761,763,5,131,0,0,762, + 764,3,114,57,0,763,762,1,0,0,0,763,764,1,0,0,0,764,765,1,0,0,0,765,766, + 5,150,0,0,766,768,1,0,0,0,767,711,1,0,0,0,767,712,1,0,0,0,767,730,1,0, + 0,0,767,745,1,0,0,0,767,760,1,0,0,0,768,113,1,0,0,0,769,774,3,116,58, + 0,770,771,5,117,0,0,771,773,3,116,58,0,772,770,1,0,0,0,773,776,1,0,0, + 0,774,772,1,0,0,0,774,775,1,0,0,0,775,778,1,0,0,0,776,774,1,0,0,0,777, + 779,5,117,0,0,778,777,1,0,0,0,778,779,1,0,0,0,779,115,1,0,0,0,780,781, + 6,58,-1,0,781,783,5,12,0,0,782,784,3,116,58,0,783,782,1,0,0,0,783,784, + 1,0,0,0,784,790,1,0,0,0,785,786,5,99,0,0,786,787,3,116,58,0,787,788,5, + 84,0,0,788,789,3,116,58,0,789,791,1,0,0,0,790,785,1,0,0,0,791,792,1,0, + 0,0,792,790,1,0,0,0,792,793,1,0,0,0,793,796,1,0,0,0,794,795,5,25,0,0, + 795,797,3,116,58,0,796,794,1,0,0,0,796,797,1,0,0,0,797,798,1,0,0,0,798, + 799,5,26,0,0,799,936,1,0,0,0,800,801,5,13,0,0,801,802,5,131,0,0,802,803, + 3,116,58,0,803,804,5,6,0,0,804,805,3,112,56,0,805,806,5,150,0,0,806,936, + 1,0,0,0,807,808,5,20,0,0,808,936,5,111,0,0,809,810,5,46,0,0,810,811,3, + 116,58,0,811,812,3,148,74,0,812,936,1,0,0,0,813,814,5,83,0,0,814,815, + 5,131,0,0,815,816,3,116,58,0,816,817,5,34,0,0,817,820,3,116,58,0,818, + 819,5,33,0,0,819,821,3,116,58,0,820,818,1,0,0,0,820,821,1,0,0,0,821,822, + 1,0,0,0,822,823,5,150,0,0,823,936,1,0,0,0,824,825,5,87,0,0,825,936,5, + 111,0,0,826,827,5,92,0,0,827,828,5,131,0,0,828,829,7,10,0,0,829,830,3, + 160,80,0,830,831,5,34,0,0,831,832,3,116,58,0,832,833,5,150,0,0,833,936, + 1,0,0,0,834,835,3,156,78,0,835,837,5,131,0,0,836,838,3,114,57,0,837,836, + 1,0,0,0,837,838,1,0,0,0,838,839,1,0,0,0,839,840,5,150,0,0,840,849,1,0, + 0,0,841,843,5,131,0,0,842,844,5,24,0,0,843,842,1,0,0,0,843,844,1,0,0, + 0,844,846,1,0,0,0,845,847,3,114,57,0,846,845,1,0,0,0,846,847,1,0,0,0, + 847,848,1,0,0,0,848,850,5,150,0,0,849,841,1,0,0,0,849,850,1,0,0,0,850, + 851,1,0,0,0,851,852,5,67,0,0,852,853,5,131,0,0,853,854,3,98,49,0,854, + 855,5,150,0,0,855,936,1,0,0,0,856,857,3,156,78,0,857,859,5,131,0,0,858, + 860,3,114,57,0,859,858,1,0,0,0,859,860,1,0,0,0,860,861,1,0,0,0,861,862, + 5,150,0,0,862,871,1,0,0,0,863,865,5,131,0,0,864,866,5,24,0,0,865,864, + 1,0,0,0,865,866,1,0,0,0,866,868,1,0,0,0,867,869,3,114,57,0,868,867,1, + 0,0,0,868,869,1,0,0,0,869,870,1,0,0,0,870,872,5,150,0,0,871,863,1,0,0, + 0,871,872,1,0,0,0,872,873,1,0,0,0,873,874,5,67,0,0,874,875,3,156,78,0, + 875,936,1,0,0,0,876,882,3,156,78,0,877,879,5,131,0,0,878,880,3,114,57, + 0,879,878,1,0,0,0,879,880,1,0,0,0,880,881,1,0,0,0,881,883,5,150,0,0,882, + 877,1,0,0,0,882,883,1,0,0,0,883,884,1,0,0,0,884,886,5,131,0,0,885,887, + 5,24,0,0,886,885,1,0,0,0,886,887,1,0,0,0,887,889,1,0,0,0,888,890,3,114, + 57,0,889,888,1,0,0,0,889,890,1,0,0,0,890,891,1,0,0,0,891,892,5,150,0, + 0,892,936,1,0,0,0,893,936,3,120,60,0,894,936,3,162,81,0,895,936,3,146, + 73,0,896,897,5,119,0,0,897,936,3,116,58,22,898,899,5,59,0,0,899,936,3, + 116,58,16,900,901,3,136,68,0,901,902,5,121,0,0,902,904,1,0,0,0,903,900, + 1,0,0,0,903,904,1,0,0,0,904,905,1,0,0,0,905,936,5,113,0,0,906,907,5,131, + 0,0,907,908,3,44,22,0,908,909,5,150,0,0,909,936,1,0,0,0,910,911,5,131, + 0,0,911,912,3,116,58,0,912,913,5,150,0,0,913,936,1,0,0,0,914,915,5,131, + 0,0,915,916,3,114,57,0,916,917,5,150,0,0,917,936,1,0,0,0,918,920,5,130, + 0,0,919,921,3,114,57,0,920,919,1,0,0,0,920,921,1,0,0,0,921,922,1,0,0, + 0,922,936,5,149,0,0,923,925,5,129,0,0,924,926,3,40,20,0,925,924,1,0,0, + 0,925,926,1,0,0,0,926,927,1,0,0,0,927,936,5,148,0,0,928,936,3,118,59, + 0,929,930,5,129,0,0,930,931,3,130,65,0,931,932,5,148,0,0,932,936,1,0, + 0,0,933,936,3,36,18,0,934,936,3,128,64,0,935,780,1,0,0,0,935,800,1,0, + 0,0,935,807,1,0,0,0,935,809,1,0,0,0,935,813,1,0,0,0,935,824,1,0,0,0,935, + 826,1,0,0,0,935,834,1,0,0,0,935,856,1,0,0,0,935,876,1,0,0,0,935,893,1, + 0,0,0,935,894,1,0,0,0,935,895,1,0,0,0,935,896,1,0,0,0,935,898,1,0,0,0, + 935,903,1,0,0,0,935,906,1,0,0,0,935,910,1,0,0,0,935,914,1,0,0,0,935,918, + 1,0,0,0,935,923,1,0,0,0,935,928,1,0,0,0,935,929,1,0,0,0,935,933,1,0,0, + 0,935,934,1,0,0,0,936,1047,1,0,0,0,937,941,10,21,0,0,938,942,5,113,0, + 0,939,942,5,152,0,0,940,942,5,139,0,0,941,938,1,0,0,0,941,939,1,0,0,0, + 941,940,1,0,0,0,942,943,1,0,0,0,943,1046,3,116,58,22,944,948,10,20,0, + 0,945,949,5,140,0,0,946,949,5,119,0,0,947,949,5,118,0,0,948,945,1,0,0, + 0,948,946,1,0,0,0,948,947,1,0,0,0,949,950,1,0,0,0,950,1046,3,116,58,21, + 951,976,10,19,0,0,952,977,5,122,0,0,953,977,5,123,0,0,954,977,5,134,0, + 0,955,977,5,132,0,0,956,977,5,133,0,0,957,977,5,124,0,0,958,977,5,125, + 0,0,959,961,5,59,0,0,960,959,1,0,0,0,960,961,1,0,0,0,961,962,1,0,0,0, + 962,964,5,43,0,0,963,965,5,15,0,0,964,963,1,0,0,0,964,965,1,0,0,0,965, + 977,1,0,0,0,966,968,5,59,0,0,967,966,1,0,0,0,967,968,1,0,0,0,968,969, + 1,0,0,0,969,977,7,11,0,0,970,977,5,146,0,0,971,977,5,147,0,0,972,977, + 5,136,0,0,973,977,5,127,0,0,974,977,5,128,0,0,975,977,5,135,0,0,976,952, + 1,0,0,0,976,953,1,0,0,0,976,954,1,0,0,0,976,955,1,0,0,0,976,956,1,0,0, + 0,976,957,1,0,0,0,976,958,1,0,0,0,976,960,1,0,0,0,976,967,1,0,0,0,976, + 970,1,0,0,0,976,971,1,0,0,0,976,972,1,0,0,0,976,973,1,0,0,0,976,974,1, + 0,0,0,976,975,1,0,0,0,977,978,1,0,0,0,978,1046,3,116,58,20,979,980,10, + 17,0,0,980,981,5,138,0,0,981,1046,3,116,58,18,982,983,10,15,0,0,983,984, + 5,2,0,0,984,1046,3,116,58,16,985,986,10,14,0,0,986,987,5,64,0,0,987,1046, + 3,116,58,15,988,990,10,13,0,0,989,991,5,59,0,0,990,989,1,0,0,0,990,991, + 1,0,0,0,991,992,1,0,0,0,992,993,5,9,0,0,993,994,3,116,58,0,994,995,5, + 2,0,0,995,996,3,116,58,14,996,1046,1,0,0,0,997,998,10,12,0,0,998,999, + 5,141,0,0,999,1000,3,116,58,0,1000,1001,5,116,0,0,1001,1002,3,116,58, + 12,1002,1046,1,0,0,0,1003,1004,10,32,0,0,1004,1006,5,131,0,0,1005,1007, + 3,114,57,0,1006,1005,1,0,0,0,1006,1007,1,0,0,0,1007,1008,1,0,0,0,1008, + 1046,5,150,0,0,1009,1010,10,28,0,0,1010,1011,5,130,0,0,1011,1012,3,116, + 58,0,1012,1013,5,149,0,0,1013,1046,1,0,0,0,1014,1015,10,27,0,0,1015,1016, + 5,121,0,0,1016,1046,5,109,0,0,1017,1018,10,26,0,0,1018,1019,5,121,0,0, + 1019,1046,3,156,78,0,1020,1021,10,25,0,0,1021,1022,5,137,0,0,1022,1023, + 5,130,0,0,1023,1024,3,116,58,0,1024,1025,5,149,0,0,1025,1046,1,0,0,0, + 1026,1027,10,24,0,0,1027,1028,5,137,0,0,1028,1046,5,109,0,0,1029,1030, + 10,23,0,0,1030,1031,5,137,0,0,1031,1046,3,156,78,0,1032,1033,10,18,0, + 0,1033,1035,5,47,0,0,1034,1036,5,59,0,0,1035,1034,1,0,0,0,1035,1036,1, + 0,0,0,1036,1037,1,0,0,0,1037,1046,5,60,0,0,1038,1043,10,11,0,0,1039,1040, + 5,6,0,0,1040,1044,3,156,78,0,1041,1042,5,6,0,0,1042,1044,5,111,0,0,1043, + 1039,1,0,0,0,1043,1041,1,0,0,0,1044,1046,1,0,0,0,1045,937,1,0,0,0,1045, + 944,1,0,0,0,1045,951,1,0,0,0,1045,979,1,0,0,0,1045,982,1,0,0,0,1045,985, + 1,0,0,0,1045,988,1,0,0,0,1045,997,1,0,0,0,1045,1003,1,0,0,0,1045,1009, + 1,0,0,0,1045,1014,1,0,0,0,1045,1017,1,0,0,0,1045,1020,1,0,0,0,1045,1026, + 1,0,0,0,1045,1029,1,0,0,0,1045,1032,1,0,0,0,1045,1038,1,0,0,0,1046,1049, + 1,0,0,0,1047,1045,1,0,0,0,1047,1048,1,0,0,0,1048,117,1,0,0,0,1049,1047, + 1,0,0,0,1050,1051,5,131,0,0,1051,1056,3,156,78,0,1052,1053,5,117,0,0, + 1053,1055,3,156,78,0,1054,1052,1,0,0,0,1055,1058,1,0,0,0,1056,1054,1, + 0,0,0,1056,1057,1,0,0,0,1057,1060,1,0,0,0,1058,1056,1,0,0,0,1059,1061, + 5,117,0,0,1060,1059,1,0,0,0,1060,1061,1,0,0,0,1061,1062,1,0,0,0,1062, + 1063,5,150,0,0,1063,1078,1,0,0,0,1064,1069,3,156,78,0,1065,1066,5,117, + 0,0,1066,1068,3,156,78,0,1067,1065,1,0,0,0,1068,1071,1,0,0,0,1069,1067, + 1,0,0,0,1069,1070,1,0,0,0,1070,1073,1,0,0,0,1071,1069,1,0,0,0,1072,1074, + 5,117,0,0,1073,1072,1,0,0,0,1073,1074,1,0,0,0,1074,1078,1,0,0,0,1075, + 1076,5,131,0,0,1076,1078,5,150,0,0,1077,1050,1,0,0,0,1077,1064,1,0,0, + 0,1077,1075,1,0,0,0,1078,1079,1,0,0,0,1079,1082,5,112,0,0,1080,1083,3, + 36,18,0,1081,1083,3,116,58,0,1082,1080,1,0,0,0,1082,1081,1,0,0,0,1083, + 119,1,0,0,0,1084,1085,5,133,0,0,1085,1089,3,156,78,0,1086,1088,3,122, + 61,0,1087,1086,1,0,0,0,1088,1091,1,0,0,0,1089,1087,1,0,0,0,1089,1090, + 1,0,0,0,1090,1092,1,0,0,0,1091,1089,1,0,0,0,1092,1093,5,152,0,0,1093, + 1094,5,125,0,0,1094,1117,1,0,0,0,1095,1096,5,133,0,0,1096,1100,3,156, + 78,0,1097,1099,3,122,61,0,1098,1097,1,0,0,0,1099,1102,1,0,0,0,1100,1098, + 1,0,0,0,1100,1101,1,0,0,0,1101,1103,1,0,0,0,1102,1100,1,0,0,0,1103,1109, + 5,125,0,0,1104,1110,3,120,60,0,1105,1106,5,129,0,0,1106,1107,3,116,58, + 0,1107,1108,5,148,0,0,1108,1110,1,0,0,0,1109,1104,1,0,0,0,1109,1105,1, + 0,0,0,1109,1110,1,0,0,0,1110,1111,1,0,0,0,1111,1112,5,133,0,0,1112,1113, + 5,152,0,0,1113,1114,3,156,78,0,1114,1115,5,125,0,0,1115,1117,1,0,0,0, + 1116,1084,1,0,0,0,1116,1095,1,0,0,0,1117,121,1,0,0,0,1118,1119,3,156, + 78,0,1119,1120,5,123,0,0,1120,1121,3,160,80,0,1121,1130,1,0,0,0,1122, + 1123,3,156,78,0,1123,1124,5,123,0,0,1124,1125,5,129,0,0,1125,1126,3,116, + 58,0,1126,1127,5,148,0,0,1127,1130,1,0,0,0,1128,1130,3,156,78,0,1129, + 1118,1,0,0,0,1129,1122,1,0,0,0,1129,1128,1,0,0,0,1130,123,1,0,0,0,1131, + 1136,3,126,63,0,1132,1133,5,117,0,0,1133,1135,3,126,63,0,1134,1132,1, + 0,0,0,1135,1138,1,0,0,0,1136,1134,1,0,0,0,1136,1137,1,0,0,0,1137,1140, + 1,0,0,0,1138,1136,1,0,0,0,1139,1141,5,117,0,0,1140,1139,1,0,0,0,1140, + 1141,1,0,0,0,1141,125,1,0,0,0,1142,1143,3,156,78,0,1143,1144,5,6,0,0, + 1144,1145,5,131,0,0,1145,1146,3,44,22,0,1146,1147,5,150,0,0,1147,1153, + 1,0,0,0,1148,1149,3,116,58,0,1149,1150,5,6,0,0,1150,1151,3,156,78,0,1151, + 1153,1,0,0,0,1152,1142,1,0,0,0,1152,1148,1,0,0,0,1153,127,1,0,0,0,1154, + 1155,3,136,68,0,1155,1156,5,121,0,0,1156,1158,1,0,0,0,1157,1154,1,0,0, + 0,1157,1158,1,0,0,0,1158,1159,1,0,0,0,1159,1160,3,130,65,0,1160,129,1, + 0,0,0,1161,1166,3,156,78,0,1162,1163,5,121,0,0,1163,1165,3,156,78,0,1164, + 1162,1,0,0,0,1165,1168,1,0,0,0,1166,1164,1,0,0,0,1166,1167,1,0,0,0,1167, + 131,1,0,0,0,1168,1166,1,0,0,0,1169,1170,6,66,-1,0,1170,1179,3,136,68, + 0,1171,1179,3,134,67,0,1172,1173,5,131,0,0,1173,1174,3,44,22,0,1174,1175, + 5,150,0,0,1175,1179,1,0,0,0,1176,1179,3,120,60,0,1177,1179,3,36,18,0, + 1178,1169,1,0,0,0,1178,1171,1,0,0,0,1178,1172,1,0,0,0,1178,1176,1,0,0, + 0,1178,1177,1,0,0,0,1179,1188,1,0,0,0,1180,1184,10,3,0,0,1181,1185,3, + 154,77,0,1182,1183,5,6,0,0,1183,1185,3,156,78,0,1184,1181,1,0,0,0,1184, + 1182,1,0,0,0,1185,1187,1,0,0,0,1186,1180,1,0,0,0,1187,1190,1,0,0,0,1188, + 1186,1,0,0,0,1188,1189,1,0,0,0,1189,133,1,0,0,0,1190,1188,1,0,0,0,1191, + 1192,3,156,78,0,1192,1194,5,131,0,0,1193,1195,3,138,69,0,1194,1193,1, + 0,0,0,1194,1195,1,0,0,0,1195,1196,1,0,0,0,1196,1197,5,150,0,0,1197,135, + 1,0,0,0,1198,1199,3,140,70,0,1199,1200,5,121,0,0,1200,1202,1,0,0,0,1201, + 1198,1,0,0,0,1201,1202,1,0,0,0,1202,1203,1,0,0,0,1203,1204,3,156,78,0, + 1204,137,1,0,0,0,1205,1210,3,116,58,0,1206,1207,5,117,0,0,1207,1209,3, + 116,58,0,1208,1206,1,0,0,0,1209,1212,1,0,0,0,1210,1208,1,0,0,0,1210,1211, 1,0,0,0,1211,1214,1,0,0,0,1212,1210,1,0,0,0,1213,1215,5,117,0,0,1214, 1213,1,0,0,0,1214,1215,1,0,0,0,1215,139,1,0,0,0,1216,1217,3,156,78,0, 1217,141,1,0,0,0,1218,1227,5,107,0,0,1219,1220,5,121,0,0,1220,1227,7, @@ -578,29 +578,28 @@ void hogqlparserParserInitialize() { 3,152,76,0,1252,1250,1,0,0,0,1252,1251,1,0,0,0,1253,155,1,0,0,0,1254, 1258,5,106,0,0,1255,1258,3,148,74,0,1256,1258,3,150,75,0,1257,1254,1, 0,0,0,1257,1255,1,0,0,0,1257,1256,1,0,0,0,1258,157,1,0,0,0,1259,1260, - 3,162,81,0,1260,1261,5,123,0,0,1261,1262,3,144,72,0,1262,159,1,0,0,0, - 1263,1264,3,36,18,0,1264,161,1,0,0,0,1265,1268,5,111,0,0,1266,1268,3, - 164,82,0,1267,1265,1,0,0,0,1267,1266,1,0,0,0,1268,163,1,0,0,0,1269,1273, - 5,143,0,0,1270,1272,3,166,83,0,1271,1270,1,0,0,0,1272,1275,1,0,0,0,1273, - 1271,1,0,0,0,1273,1274,1,0,0,0,1274,1276,1,0,0,0,1275,1273,1,0,0,0,1276, - 1277,5,145,0,0,1277,165,1,0,0,0,1278,1279,5,158,0,0,1279,1280,3,116,58, - 0,1280,1281,5,148,0,0,1281,1284,1,0,0,0,1282,1284,5,157,0,0,1283,1278, - 1,0,0,0,1283,1282,1,0,0,0,1284,167,1,0,0,0,1285,1289,5,144,0,0,1286,1288, - 3,170,85,0,1287,1286,1,0,0,0,1288,1291,1,0,0,0,1289,1287,1,0,0,0,1289, - 1290,1,0,0,0,1290,1292,1,0,0,0,1291,1289,1,0,0,0,1292,1293,5,0,0,1,1293, - 169,1,0,0,0,1294,1295,5,160,0,0,1295,1296,3,116,58,0,1296,1297,5,148, - 0,0,1297,1300,1,0,0,0,1298,1300,5,159,0,0,1299,1294,1,0,0,0,1299,1298, - 1,0,0,0,1300,171,1,0,0,0,167,175,182,191,198,202,216,220,223,227,230, - 237,241,250,255,264,272,279,283,289,294,302,309,315,327,335,349,353,358, - 368,377,380,384,387,391,394,397,400,403,407,411,414,417,420,424,427,436, - 442,463,480,497,503,509,520,522,533,536,542,550,556,558,562,567,570,573, - 577,581,584,586,589,593,597,600,602,604,609,620,626,633,638,642,646,652, - 654,661,669,672,675,694,708,724,728,739,743,754,758,765,769,776,780,785, - 794,798,822,839,845,848,851,861,867,870,873,881,884,888,891,905,922,927, - 933,939,946,958,962,965,974,988,1004,1033,1041,1043,1045,1054,1058,1067, - 1071,1075,1080,1087,1098,1107,1114,1127,1134,1138,1150,1156,1159,1166, - 1178,1184,1188,1194,1201,1210,1214,1224,1226,1229,1237,1242,1252,1257, - 1267,1273,1283,1289,1299 + 3,160,80,0,1260,1261,5,123,0,0,1261,1262,3,144,72,0,1262,159,1,0,0,0, + 1263,1266,5,111,0,0,1264,1266,3,162,81,0,1265,1263,1,0,0,0,1265,1264, + 1,0,0,0,1266,161,1,0,0,0,1267,1271,5,143,0,0,1268,1270,3,164,82,0,1269, + 1268,1,0,0,0,1270,1273,1,0,0,0,1271,1269,1,0,0,0,1271,1272,1,0,0,0,1272, + 1274,1,0,0,0,1273,1271,1,0,0,0,1274,1275,5,145,0,0,1275,163,1,0,0,0,1276, + 1277,5,158,0,0,1277,1278,3,116,58,0,1278,1279,5,148,0,0,1279,1282,1,0, + 0,0,1280,1282,5,157,0,0,1281,1276,1,0,0,0,1281,1280,1,0,0,0,1282,165, + 1,0,0,0,1283,1287,5,144,0,0,1284,1286,3,168,84,0,1285,1284,1,0,0,0,1286, + 1289,1,0,0,0,1287,1285,1,0,0,0,1287,1288,1,0,0,0,1288,1290,1,0,0,0,1289, + 1287,1,0,0,0,1290,1291,5,0,0,1,1291,167,1,0,0,0,1292,1293,5,160,0,0,1293, + 1294,3,116,58,0,1294,1295,5,148,0,0,1295,1298,1,0,0,0,1296,1298,5,159, + 0,0,1297,1292,1,0,0,0,1297,1296,1,0,0,0,1298,169,1,0,0,0,166,173,180, + 189,196,200,214,218,221,225,228,235,239,248,253,262,270,277,281,287,292, + 300,307,313,325,333,347,351,356,366,375,378,382,385,389,392,395,398,401, + 405,409,412,415,418,422,425,434,440,461,478,495,501,507,518,520,531,534, + 540,548,554,556,560,565,568,571,575,579,582,584,587,591,595,598,600,602, + 607,618,624,631,636,640,644,650,652,659,667,670,673,692,706,722,726,737, + 741,752,756,763,767,774,778,783,792,796,820,837,843,846,849,859,865,868, + 871,879,882,886,889,903,920,925,935,941,948,960,964,967,976,990,1006, + 1035,1043,1045,1047,1056,1060,1069,1073,1077,1082,1089,1100,1109,1116, + 1129,1136,1140,1152,1157,1166,1178,1184,1188,1194,1201,1210,1214,1224, + 1226,1229,1237,1242,1252,1257,1265,1271,1281,1287,1297 }; staticData->serializedATN = antlr4::atn::SerializedATNView(serializedATNSegment, sizeof(serializedATNSegment) / sizeof(serializedATNSegment[0])); @@ -694,20 +693,20 @@ HogQLParser::ProgramContext* HogQLParser::program() { }); try { enterOuterAlt(_localctx, 1); - setState(175); + setState(173); _errHandler->sync(this); _la = _input->LA(1); while ((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & -536887298) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 180986211001696255) != 0) || ((((_la - 129) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 129)) & 4212759) != 0)) { - setState(172); + setState(170); declaration(); - setState(177); + setState(175); _errHandler->sync(this); _la = _input->LA(1); } - setState(178); + setState(176); match(HogQLParser::EOF); } @@ -759,12 +758,12 @@ HogQLParser::DeclarationContext* HogQLParser::declaration() { exitRule(); }); try { - setState(182); + setState(180); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::LET: { enterOuterAlt(_localctx, 1); - setState(180); + setState(178); varDecl(); break; } @@ -887,7 +886,7 @@ HogQLParser::DeclarationContext* HogQLParser::declaration() { case HogQLParser::QUOTE_SINGLE_TEMPLATE: case HogQLParser::SEMICOLON: { enterOuterAlt(_localctx, 2); - setState(181); + setState(179); statement(); break; } @@ -942,7 +941,7 @@ HogQLParser::ExpressionContext* HogQLParser::expression() { }); try { enterOuterAlt(_localctx, 1); - setState(184); + setState(182); columnExpr(0); } @@ -1008,20 +1007,20 @@ HogQLParser::VarDeclContext* HogQLParser::varDecl() { }); try { enterOuterAlt(_localctx, 1); - setState(186); + setState(184); match(HogQLParser::LET); - setState(187); + setState(185); identifier(); - setState(191); + setState(189); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::COLON) { - setState(188); + setState(186); match(HogQLParser::COLON); - setState(189); + setState(187); match(HogQLParser::EQ_SINGLE); - setState(190); + setState(188); expression(); } @@ -1085,28 +1084,28 @@ HogQLParser::IdentifierListContext* HogQLParser::identifierList() { try { size_t alt; enterOuterAlt(_localctx, 1); - setState(193); + setState(191); identifier(); - setState(198); + setState(196); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 3, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { if (alt == 1) { - setState(194); + setState(192); match(HogQLParser::COMMA); - setState(195); + setState(193); identifier(); } - setState(200); + setState(198); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 3, _ctx); } - setState(202); + setState(200); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::COMMA) { - setState(201); + setState(199); match(HogQLParser::COMMA); } @@ -1199,89 +1198,89 @@ HogQLParser::StatementContext* HogQLParser::statement() { exitRule(); }); try { - setState(216); + setState(214); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 5, _ctx)) { case 1: { enterOuterAlt(_localctx, 1); - setState(204); + setState(202); returnStmt(); break; } case 2: { enterOuterAlt(_localctx, 2); - setState(205); + setState(203); throwStmt(); break; } case 3: { enterOuterAlt(_localctx, 3); - setState(206); + setState(204); tryCatchStmt(); break; } case 4: { enterOuterAlt(_localctx, 4); - setState(207); + setState(205); ifStmt(); break; } case 5: { enterOuterAlt(_localctx, 5); - setState(208); + setState(206); whileStmt(); break; } case 6: { enterOuterAlt(_localctx, 6); - setState(209); + setState(207); forInStmt(); break; } case 7: { enterOuterAlt(_localctx, 7); - setState(210); + setState(208); forStmt(); break; } case 8: { enterOuterAlt(_localctx, 8); - setState(211); + setState(209); funcStmt(); break; } case 9: { enterOuterAlt(_localctx, 9); - setState(212); + setState(210); varAssignment(); break; } case 10: { enterOuterAlt(_localctx, 10); - setState(213); + setState(211); block(); break; } case 11: { enterOuterAlt(_localctx, 11); - setState(214); + setState(212); exprStmt(); break; } case 12: { enterOuterAlt(_localctx, 12); - setState(215); + setState(213); emptyStmt(); break; } @@ -1344,14 +1343,14 @@ HogQLParser::ReturnStmtContext* HogQLParser::returnStmt() { }); try { enterOuterAlt(_localctx, 1); - setState(218); + setState(216); match(HogQLParser::RETURN); - setState(220); + setState(218); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 6, _ctx)) { case 1: { - setState(219); + setState(217); expression(); break; } @@ -1359,12 +1358,12 @@ HogQLParser::ReturnStmtContext* HogQLParser::returnStmt() { default: break; } - setState(223); + setState(221); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 7, _ctx)) { case 1: { - setState(222); + setState(220); match(HogQLParser::SEMICOLON); break; } @@ -1427,14 +1426,14 @@ HogQLParser::ThrowStmtContext* HogQLParser::throwStmt() { }); try { enterOuterAlt(_localctx, 1); - setState(225); + setState(223); match(HogQLParser::THROW); - setState(227); + setState(225); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 8, _ctx)) { case 1: { - setState(226); + setState(224); expression(); break; } @@ -1442,12 +1441,12 @@ HogQLParser::ThrowStmtContext* HogQLParser::throwStmt() { default: break; } - setState(230); + setState(228); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 9, _ctx)) { case 1: { - setState(229); + setState(227); match(HogQLParser::SEMICOLON); break; } @@ -1527,31 +1526,31 @@ HogQLParser::CatchBlockContext* HogQLParser::catchBlock() { }); try { enterOuterAlt(_localctx, 1); - setState(232); + setState(230); match(HogQLParser::CATCH); - setState(241); + setState(239); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::LPAREN) { - setState(233); + setState(231); match(HogQLParser::LPAREN); - setState(234); + setState(232); antlrcpp::downCast(_localctx)->catchVar = identifier(); - setState(237); + setState(235); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::COLON) { - setState(235); + setState(233); match(HogQLParser::COLON); - setState(236); + setState(234); antlrcpp::downCast(_localctx)->catchType = identifier(); } - setState(239); + setState(237); match(HogQLParser::RPAREN); } - setState(243); + setState(241); antlrcpp::downCast(_localctx)->catchStmt = block(); } @@ -1621,28 +1620,28 @@ HogQLParser::TryCatchStmtContext* HogQLParser::tryCatchStmt() { }); try { enterOuterAlt(_localctx, 1); - setState(245); + setState(243); match(HogQLParser::TRY); - setState(246); + setState(244); antlrcpp::downCast(_localctx)->tryStmt = block(); - setState(250); + setState(248); _errHandler->sync(this); _la = _input->LA(1); while (_la == HogQLParser::CATCH) { - setState(247); + setState(245); catchBlock(); - setState(252); + setState(250); _errHandler->sync(this); _la = _input->LA(1); } - setState(255); + setState(253); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::FINALLY) { - setState(253); + setState(251); match(HogQLParser::FINALLY); - setState(254); + setState(252); antlrcpp::downCast(_localctx)->finallyStmt = block(); } @@ -1716,24 +1715,24 @@ HogQLParser::IfStmtContext* HogQLParser::ifStmt() { }); try { enterOuterAlt(_localctx, 1); - setState(257); + setState(255); match(HogQLParser::IF); - setState(258); + setState(256); match(HogQLParser::LPAREN); - setState(259); + setState(257); expression(); - setState(260); + setState(258); match(HogQLParser::RPAREN); - setState(261); + setState(259); statement(); - setState(264); + setState(262); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 14, _ctx)) { case 1: { - setState(262); + setState(260); match(HogQLParser::ELSE); - setState(263); + setState(261); statement(); break; } @@ -1808,22 +1807,22 @@ HogQLParser::WhileStmtContext* HogQLParser::whileStmt() { }); try { enterOuterAlt(_localctx, 1); - setState(266); + setState(264); match(HogQLParser::WHILE); - setState(267); + setState(265); match(HogQLParser::LPAREN); - setState(268); + setState(266); expression(); - setState(269); + setState(267); match(HogQLParser::RPAREN); - setState(270); + setState(268); statement(); - setState(272); + setState(270); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 15, _ctx)) { case 1: { - setState(271); + setState(269); match(HogQLParser::SEMICOLON); break; } @@ -1923,28 +1922,28 @@ HogQLParser::ForStmtContext* HogQLParser::forStmt() { }); try { enterOuterAlt(_localctx, 1); - setState(274); + setState(272); match(HogQLParser::FOR); - setState(275); + setState(273); match(HogQLParser::LPAREN); - setState(279); + setState(277); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 16, _ctx)) { case 1: { - setState(276); + setState(274); antlrcpp::downCast(_localctx)->initializerVarDeclr = varDecl(); break; } case 2: { - setState(277); + setState(275); antlrcpp::downCast(_localctx)->initializerVarAssignment = varAssignment(); break; } case 3: { - setState(278); + setState(276); antlrcpp::downCast(_localctx)->initializerExpression = expression(); break; } @@ -1952,9 +1951,9 @@ HogQLParser::ForStmtContext* HogQLParser::forStmt() { default: break; } - setState(281); + setState(279); match(HogQLParser::SEMICOLON); - setState(283); + setState(281); _errHandler->sync(this); _la = _input->LA(1); @@ -1962,29 +1961,29 @@ HogQLParser::ForStmtContext* HogQLParser::forStmt() { ((1ULL << _la) & -9007270658588674) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 180986072486903807) != 0) || ((((_la - 129) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 129)) & 18455) != 0)) { - setState(282); + setState(280); antlrcpp::downCast(_localctx)->condition = expression(); } - setState(285); + setState(283); match(HogQLParser::SEMICOLON); - setState(289); + setState(287); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 18, _ctx)) { case 1: { - setState(286); + setState(284); antlrcpp::downCast(_localctx)->incrementVarDeclr = varDecl(); break; } case 2: { - setState(287); + setState(285); antlrcpp::downCast(_localctx)->incrementVarAssignment = varAssignment(); break; } case 3: { - setState(288); + setState(286); antlrcpp::downCast(_localctx)->incrementExpression = expression(); break; } @@ -1992,16 +1991,16 @@ HogQLParser::ForStmtContext* HogQLParser::forStmt() { default: break; } - setState(291); + setState(289); match(HogQLParser::RPAREN); - setState(292); + setState(290); statement(); - setState(294); + setState(292); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 19, _ctx)) { case 1: { - setState(293); + setState(291); match(HogQLParser::SEMICOLON); break; } @@ -2097,38 +2096,38 @@ HogQLParser::ForInStmtContext* HogQLParser::forInStmt() { }); try { enterOuterAlt(_localctx, 1); - setState(296); + setState(294); match(HogQLParser::FOR); - setState(297); + setState(295); match(HogQLParser::LPAREN); - setState(298); + setState(296); match(HogQLParser::LET); - setState(299); + setState(297); identifier(); - setState(302); + setState(300); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::COMMA) { - setState(300); + setState(298); match(HogQLParser::COMMA); - setState(301); + setState(299); identifier(); } - setState(304); + setState(302); match(HogQLParser::IN); - setState(305); + setState(303); expression(); - setState(306); + setState(304); match(HogQLParser::RPAREN); - setState(307); + setState(305); statement(); - setState(309); + setState(307); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 21, _ctx)) { case 1: { - setState(308); + setState(306); match(HogQLParser::SEMICOLON); break; } @@ -2208,7 +2207,7 @@ HogQLParser::FuncStmtContext* HogQLParser::funcStmt() { }); try { enterOuterAlt(_localctx, 1); - setState(311); + setState(309); _la = _input->LA(1); if (!(_la == HogQLParser::FN @@ -2219,23 +2218,23 @@ HogQLParser::FuncStmtContext* HogQLParser::funcStmt() { _errHandler->reportMatch(this); consume(); } - setState(312); + setState(310); identifier(); - setState(313); + setState(311); match(HogQLParser::LPAREN); - setState(315); + setState(313); _errHandler->sync(this); _la = _input->LA(1); if ((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & -1450176743603191810) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 6458554974207) != 0)) { - setState(314); + setState(312); identifierList(); } - setState(317); + setState(315); match(HogQLParser::RPAREN); - setState(318); + setState(316); block(); } @@ -2296,13 +2295,13 @@ HogQLParser::VarAssignmentContext* HogQLParser::varAssignment() { }); try { enterOuterAlt(_localctx, 1); - setState(320); + setState(318); expression(); - setState(321); + setState(319); match(HogQLParser::COLON); - setState(322); + setState(320); match(HogQLParser::EQ_SINGLE); - setState(323); + setState(321); expression(); } @@ -2355,14 +2354,14 @@ HogQLParser::ExprStmtContext* HogQLParser::exprStmt() { }); try { enterOuterAlt(_localctx, 1); - setState(325); + setState(323); expression(); - setState(327); + setState(325); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 23, _ctx)) { case 1: { - setState(326); + setState(324); match(HogQLParser::SEMICOLON); break; } @@ -2417,7 +2416,7 @@ HogQLParser::EmptyStmtContext* HogQLParser::emptyStmt() { }); try { enterOuterAlt(_localctx, 1); - setState(329); + setState(327); match(HogQLParser::SEMICOLON); } @@ -2479,22 +2478,22 @@ HogQLParser::BlockContext* HogQLParser::block() { }); try { enterOuterAlt(_localctx, 1); - setState(331); + setState(329); match(HogQLParser::LBRACE); - setState(335); + setState(333); _errHandler->sync(this); _la = _input->LA(1); while ((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & -536887298) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 180986211001696255) != 0) || ((((_la - 129) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 129)) & 4212759) != 0)) { - setState(332); + setState(330); declaration(); - setState(337); + setState(335); _errHandler->sync(this); _la = _input->LA(1); } - setState(338); + setState(336); match(HogQLParser::RBRACE); } @@ -2551,11 +2550,11 @@ HogQLParser::KvPairContext* HogQLParser::kvPair() { }); try { enterOuterAlt(_localctx, 1); - setState(340); + setState(338); expression(); - setState(341); + setState(339); match(HogQLParser::COLON); - setState(342); + setState(340); expression(); } @@ -2618,28 +2617,28 @@ HogQLParser::KvPairListContext* HogQLParser::kvPairList() { try { size_t alt; enterOuterAlt(_localctx, 1); - setState(344); + setState(342); kvPair(); - setState(349); + setState(347); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 25, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { if (alt == 1) { - setState(345); + setState(343); match(HogQLParser::COMMA); - setState(346); + setState(344); kvPair(); } - setState(351); + setState(349); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 25, _ctx); } - setState(353); + setState(351); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::COMMA) { - setState(352); + setState(350); match(HogQLParser::COMMA); } @@ -2701,23 +2700,23 @@ HogQLParser::SelectContext* HogQLParser::select() { }); try { enterOuterAlt(_localctx, 1); - setState(358); + setState(356); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 27, _ctx)) { case 1: { - setState(355); + setState(353); selectUnionStmt(); break; } case 2: { - setState(356); + setState(354); selectStmt(); break; } case 3: { - setState(357); + setState(355); hogqlxTagElement(); break; } @@ -2725,7 +2724,7 @@ HogQLParser::SelectContext* HogQLParser::select() { default: break; } - setState(360); + setState(358); match(HogQLParser::EOF); } @@ -2795,19 +2794,19 @@ HogQLParser::SelectUnionStmtContext* HogQLParser::selectUnionStmt() { }); try { enterOuterAlt(_localctx, 1); - setState(362); + setState(360); selectStmtWithParens(); - setState(368); + setState(366); _errHandler->sync(this); _la = _input->LA(1); while (_la == HogQLParser::UNION) { - setState(363); + setState(361); match(HogQLParser::UNION); - setState(364); + setState(362); match(HogQLParser::ALL); - setState(365); + setState(363); selectStmtWithParens(); - setState(370); + setState(368); _errHandler->sync(this); _la = _input->LA(1); } @@ -2844,8 +2843,8 @@ tree::TerminalNode* HogQLParser::SelectStmtWithParensContext::RPAREN() { return getToken(HogQLParser::RPAREN, 0); } -HogQLParser::PlaceholderContext* HogQLParser::SelectStmtWithParensContext::placeholder() { - return getRuleContext(0); +HogQLParser::BlockContext* HogQLParser::SelectStmtWithParensContext::block() { + return getRuleContext(0); } @@ -2873,32 +2872,32 @@ HogQLParser::SelectStmtWithParensContext* HogQLParser::selectStmtWithParens() { exitRule(); }); try { - setState(377); + setState(375); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::SELECT: case HogQLParser::WITH: { enterOuterAlt(_localctx, 1); - setState(371); + setState(369); selectStmt(); break; } case HogQLParser::LPAREN: { enterOuterAlt(_localctx, 2); - setState(372); + setState(370); match(HogQLParser::LPAREN); - setState(373); + setState(371); selectUnionStmt(); - setState(374); + setState(372); match(HogQLParser::RPAREN); break; } case HogQLParser::LBRACE: { enterOuterAlt(_localctx, 3); - setState(376); - placeholder(); + setState(374); + antlrcpp::downCast(_localctx)->placeholder = block(); break; } @@ -3033,22 +3032,22 @@ HogQLParser::SelectStmtContext* HogQLParser::selectStmt() { }); try { enterOuterAlt(_localctx, 1); - setState(380); + setState(378); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::WITH) { - setState(379); + setState(377); antlrcpp::downCast(_localctx)->with = withClause(); } - setState(382); + setState(380); match(HogQLParser::SELECT); - setState(384); + setState(382); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 31, _ctx)) { case 1: { - setState(383); + setState(381); match(HogQLParser::DISTINCT); break; } @@ -3056,12 +3055,12 @@ HogQLParser::SelectStmtContext* HogQLParser::selectStmt() { default: break; } - setState(387); + setState(385); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 32, _ctx)) { case 1: { - setState(386); + setState(384); topClause(); break; } @@ -3069,57 +3068,57 @@ HogQLParser::SelectStmtContext* HogQLParser::selectStmt() { default: break; } - setState(389); + setState(387); antlrcpp::downCast(_localctx)->columns = columnExprList(); - setState(391); + setState(389); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::FROM) { - setState(390); + setState(388); antlrcpp::downCast(_localctx)->from = fromClause(); } - setState(394); + setState(392); _errHandler->sync(this); _la = _input->LA(1); if ((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & 4538783999459360) != 0)) { - setState(393); + setState(391); arrayJoinClause(); } - setState(397); + setState(395); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::PREWHERE) { - setState(396); + setState(394); prewhereClause(); } - setState(400); + setState(398); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::WHERE) { - setState(399); + setState(397); antlrcpp::downCast(_localctx)->where = whereClause(); } - setState(403); + setState(401); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::GROUP) { - setState(402); + setState(400); groupByClause(); } - setState(407); + setState(405); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 38, _ctx)) { case 1: { - setState(405); + setState(403); match(HogQLParser::WITH); - setState(406); + setState(404); _la = _input->LA(1); if (!(_la == HogQLParser::CUBE @@ -3136,51 +3135,51 @@ HogQLParser::SelectStmtContext* HogQLParser::selectStmt() { default: break; } - setState(411); + setState(409); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::WITH) { - setState(409); + setState(407); match(HogQLParser::WITH); - setState(410); + setState(408); match(HogQLParser::TOTALS); } - setState(414); + setState(412); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::HAVING) { - setState(413); + setState(411); havingClause(); } - setState(417); + setState(415); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::WINDOW) { - setState(416); + setState(414); windowClause(); } - setState(420); + setState(418); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::ORDER) { - setState(419); + setState(417); orderByClause(); } - setState(424); + setState(422); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::LIMIT: { - setState(422); + setState(420); limitAndOffsetClause(); break; } case HogQLParser::OFFSET: { - setState(423); + setState(421); offsetOnlyClause(); break; } @@ -3195,12 +3194,12 @@ HogQLParser::SelectStmtContext* HogQLParser::selectStmt() { default: break; } - setState(427); + setState(425); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::SETTINGS) { - setState(426); + setState(424); settingsClause(); } @@ -3254,9 +3253,9 @@ HogQLParser::WithClauseContext* HogQLParser::withClause() { }); try { enterOuterAlt(_localctx, 1); - setState(429); + setState(427); match(HogQLParser::WITH); - setState(430); + setState(428); withExprList(); } @@ -3317,18 +3316,18 @@ HogQLParser::TopClauseContext* HogQLParser::topClause() { }); try { enterOuterAlt(_localctx, 1); - setState(432); + setState(430); match(HogQLParser::TOP); - setState(433); + setState(431); match(HogQLParser::DECIMAL_LITERAL); - setState(436); + setState(434); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 45, _ctx)) { case 1: { - setState(434); + setState(432); match(HogQLParser::WITH); - setState(435); + setState(433); match(HogQLParser::TIES); break; } @@ -3387,9 +3386,9 @@ HogQLParser::FromClauseContext* HogQLParser::fromClause() { }); try { enterOuterAlt(_localctx, 1); - setState(438); + setState(436); match(HogQLParser::FROM); - setState(439); + setState(437); joinExpr(0); } @@ -3455,14 +3454,14 @@ HogQLParser::ArrayJoinClauseContext* HogQLParser::arrayJoinClause() { }); try { enterOuterAlt(_localctx, 1); - setState(442); + setState(440); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::INNER || _la == HogQLParser::LEFT) { - setState(441); + setState(439); _la = _input->LA(1); if (!(_la == HogQLParser::INNER @@ -3474,11 +3473,11 @@ HogQLParser::ArrayJoinClauseContext* HogQLParser::arrayJoinClause() { consume(); } } - setState(444); + setState(442); match(HogQLParser::ARRAY); - setState(445); + setState(443); match(HogQLParser::JOIN); - setState(446); + setState(444); columnExprList(); } @@ -3576,35 +3575,35 @@ HogQLParser::WindowClauseContext* HogQLParser::windowClause() { }); try { enterOuterAlt(_localctx, 1); - setState(448); + setState(446); match(HogQLParser::WINDOW); - setState(449); + setState(447); identifier(); - setState(450); + setState(448); match(HogQLParser::AS); - setState(451); + setState(449); match(HogQLParser::LPAREN); - setState(452); + setState(450); windowExpr(); - setState(453); + setState(451); match(HogQLParser::RPAREN); - setState(463); + setState(461); _errHandler->sync(this); _la = _input->LA(1); while (_la == HogQLParser::COMMA) { - setState(454); + setState(452); match(HogQLParser::COMMA); - setState(455); + setState(453); identifier(); - setState(456); + setState(454); match(HogQLParser::AS); - setState(457); + setState(455); match(HogQLParser::LPAREN); - setState(458); + setState(456); windowExpr(); - setState(459); + setState(457); match(HogQLParser::RPAREN); - setState(465); + setState(463); _errHandler->sync(this); _la = _input->LA(1); } @@ -3659,9 +3658,9 @@ HogQLParser::PrewhereClauseContext* HogQLParser::prewhereClause() { }); try { enterOuterAlt(_localctx, 1); - setState(466); + setState(464); match(HogQLParser::PREWHERE); - setState(467); + setState(465); columnExpr(0); } @@ -3714,9 +3713,9 @@ HogQLParser::WhereClauseContext* HogQLParser::whereClause() { }); try { enterOuterAlt(_localctx, 1); - setState(469); + setState(467); match(HogQLParser::WHERE); - setState(470); + setState(468); columnExpr(0); } @@ -3790,15 +3789,15 @@ HogQLParser::GroupByClauseContext* HogQLParser::groupByClause() { }); try { enterOuterAlt(_localctx, 1); - setState(472); + setState(470); match(HogQLParser::GROUP); - setState(473); + setState(471); match(HogQLParser::BY); - setState(480); + setState(478); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 48, _ctx)) { case 1: { - setState(474); + setState(472); _la = _input->LA(1); if (!(_la == HogQLParser::CUBE @@ -3809,17 +3808,17 @@ HogQLParser::GroupByClauseContext* HogQLParser::groupByClause() { _errHandler->reportMatch(this); consume(); } - setState(475); + setState(473); match(HogQLParser::LPAREN); - setState(476); + setState(474); columnExprList(); - setState(477); + setState(475); match(HogQLParser::RPAREN); break; } case 2: { - setState(479); + setState(477); columnExprList(); break; } @@ -3878,9 +3877,9 @@ HogQLParser::HavingClauseContext* HogQLParser::havingClause() { }); try { enterOuterAlt(_localctx, 1); - setState(482); + setState(480); match(HogQLParser::HAVING); - setState(483); + setState(481); columnExpr(0); } @@ -3937,11 +3936,11 @@ HogQLParser::OrderByClauseContext* HogQLParser::orderByClause() { }); try { enterOuterAlt(_localctx, 1); - setState(485); + setState(483); match(HogQLParser::ORDER); - setState(486); + setState(484); match(HogQLParser::BY); - setState(487); + setState(485); orderExprList(); } @@ -3998,11 +3997,11 @@ HogQLParser::ProjectionOrderByClauseContext* HogQLParser::projectionOrderByClaus }); try { enterOuterAlt(_localctx, 1); - setState(489); + setState(487); match(HogQLParser::ORDER); - setState(490); + setState(488); match(HogQLParser::BY); - setState(491); + setState(489); columnExprList(); } @@ -4083,40 +4082,40 @@ HogQLParser::LimitAndOffsetClauseContext* HogQLParser::limitAndOffsetClause() { exitRule(); }); try { - setState(522); + setState(520); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 53, _ctx)) { case 1: { enterOuterAlt(_localctx, 1); - setState(493); + setState(491); match(HogQLParser::LIMIT); - setState(494); + setState(492); columnExpr(0); - setState(497); + setState(495); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::COMMA) { - setState(495); + setState(493); match(HogQLParser::COMMA); - setState(496); + setState(494); columnExpr(0); } - setState(503); + setState(501); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::WITH: { - setState(499); + setState(497); match(HogQLParser::WITH); - setState(500); + setState(498); match(HogQLParser::TIES); break; } case HogQLParser::BY: { - setState(501); + setState(499); match(HogQLParser::BY); - setState(502); + setState(500); columnExprList(); break; } @@ -4136,45 +4135,45 @@ HogQLParser::LimitAndOffsetClauseContext* HogQLParser::limitAndOffsetClause() { case 2: { enterOuterAlt(_localctx, 2); - setState(505); + setState(503); match(HogQLParser::LIMIT); - setState(506); + setState(504); columnExpr(0); - setState(509); + setState(507); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::WITH) { - setState(507); + setState(505); match(HogQLParser::WITH); - setState(508); + setState(506); match(HogQLParser::TIES); } - setState(511); + setState(509); match(HogQLParser::OFFSET); - setState(512); + setState(510); columnExpr(0); break; } case 3: { enterOuterAlt(_localctx, 3); - setState(514); + setState(512); match(HogQLParser::LIMIT); - setState(515); + setState(513); columnExpr(0); - setState(516); + setState(514); match(HogQLParser::OFFSET); - setState(517); + setState(515); columnExpr(0); - setState(520); + setState(518); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::BY) { - setState(518); + setState(516); match(HogQLParser::BY); - setState(519); + setState(517); columnExprList(); } break; @@ -4234,9 +4233,9 @@ HogQLParser::OffsetOnlyClauseContext* HogQLParser::offsetOnlyClause() { }); try { enterOuterAlt(_localctx, 1); - setState(524); + setState(522); match(HogQLParser::OFFSET); - setState(525); + setState(523); columnExpr(0); } @@ -4289,9 +4288,9 @@ HogQLParser::SettingsClauseContext* HogQLParser::settingsClause() { }); try { enterOuterAlt(_localctx, 1); - setState(527); + setState(525); match(HogQLParser::SETTINGS); - setState(528); + setState(526); settingExprList(); } @@ -4445,7 +4444,7 @@ HogQLParser::JoinExprContext* HogQLParser::joinExpr(int precedence) { try { size_t alt; enterOuterAlt(_localctx, 1); - setState(542); + setState(540); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 56, _ctx)) { case 1: { @@ -4453,14 +4452,14 @@ HogQLParser::JoinExprContext* HogQLParser::joinExpr(int precedence) { _ctx = _localctx; previousContext = _localctx; - setState(531); + setState(529); tableExpr(0); - setState(533); + setState(531); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 54, _ctx)) { case 1: { - setState(532); + setState(530); match(HogQLParser::FINAL); break; } @@ -4468,12 +4467,12 @@ HogQLParser::JoinExprContext* HogQLParser::joinExpr(int precedence) { default: break; } - setState(536); + setState(534); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 55, _ctx)) { case 1: { - setState(535); + setState(533); sampleClause(); break; } @@ -4488,11 +4487,11 @@ HogQLParser::JoinExprContext* HogQLParser::joinExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(538); + setState(536); match(HogQLParser::LPAREN); - setState(539); + setState(537); joinExpr(0); - setState(540); + setState(538); match(HogQLParser::RPAREN); break; } @@ -4501,7 +4500,7 @@ HogQLParser::JoinExprContext* HogQLParser::joinExpr(int precedence) { break; } _ctx->stop = _input->LT(-1); - setState(558); + setState(556); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 59, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { @@ -4509,19 +4508,19 @@ HogQLParser::JoinExprContext* HogQLParser::joinExpr(int precedence) { if (!_parseListeners.empty()) triggerExitRuleEvent(); previousContext = _localctx; - setState(556); + setState(554); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 58, _ctx)) { case 1: { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleJoinExpr); - setState(544); + setState(542); if (!(precpred(_ctx, 3))) throw FailedPredicateException(this, "precpred(_ctx, 3)"); - setState(545); + setState(543); joinOpCross(); - setState(546); + setState(544); joinExpr(4); break; } @@ -4530,10 +4529,10 @@ HogQLParser::JoinExprContext* HogQLParser::joinExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleJoinExpr); - setState(548); + setState(546); if (!(precpred(_ctx, 4))) throw FailedPredicateException(this, "precpred(_ctx, 4)"); - setState(550); + setState(548); _errHandler->sync(this); _la = _input->LA(1); @@ -4541,14 +4540,14 @@ HogQLParser::JoinExprContext* HogQLParser::joinExpr(int precedence) { ((1ULL << _la) & 4538818359197978) != 0) || _la == HogQLParser::RIGHT || _la == HogQLParser::SEMI) { - setState(549); + setState(547); joinOp(); } - setState(552); + setState(550); match(HogQLParser::JOIN); - setState(553); + setState(551); joinExpr(0); - setState(554); + setState(552); joinConstraintClause(); break; } @@ -4557,7 +4556,7 @@ HogQLParser::JoinExprContext* HogQLParser::joinExpr(int precedence) { break; } } - setState(560); + setState(558); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 59, _ctx); } @@ -4695,23 +4694,23 @@ HogQLParser::JoinOpContext* HogQLParser::joinOp() { exitRule(); }); try { - setState(604); + setState(602); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 73, _ctx)) { case 1: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 1); - setState(570); + setState(568); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 62, _ctx)) { case 1: { - setState(562); + setState(560); _errHandler->sync(this); _la = _input->LA(1); if ((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & 274) != 0)) { - setState(561); + setState(559); _la = _input->LA(1); if (!((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & 274) != 0))) { @@ -4722,21 +4721,21 @@ HogQLParser::JoinOpContext* HogQLParser::joinOp() { consume(); } } - setState(564); + setState(562); match(HogQLParser::INNER); break; } case 2: { - setState(565); + setState(563); match(HogQLParser::INNER); - setState(567); + setState(565); _errHandler->sync(this); _la = _input->LA(1); if ((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & 274) != 0)) { - setState(566); + setState(564); _la = _input->LA(1); if (!((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & 274) != 0))) { @@ -4751,7 +4750,7 @@ HogQLParser::JoinOpContext* HogQLParser::joinOp() { } case 3: { - setState(569); + setState(567); _la = _input->LA(1); if (!((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & 274) != 0))) { @@ -4773,17 +4772,17 @@ HogQLParser::JoinOpContext* HogQLParser::joinOp() { case 2: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 2); - setState(586); + setState(584); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 67, _ctx)) { case 1: { - setState(573); + setState(571); _errHandler->sync(this); _la = _input->LA(1); if ((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & 282) != 0) || _la == HogQLParser::SEMI) { - setState(572); + setState(570); _la = _input->LA(1); if (!((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & 282) != 0) || _la == HogQLParser::SEMI)) { @@ -4794,7 +4793,7 @@ HogQLParser::JoinOpContext* HogQLParser::joinOp() { consume(); } } - setState(575); + setState(573); _la = _input->LA(1); if (!(_la == HogQLParser::LEFT @@ -4805,19 +4804,19 @@ HogQLParser::JoinOpContext* HogQLParser::joinOp() { _errHandler->reportMatch(this); consume(); } - setState(577); + setState(575); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::OUTER) { - setState(576); + setState(574); match(HogQLParser::OUTER); } break; } case 2: { - setState(579); + setState(577); _la = _input->LA(1); if (!(_la == HogQLParser::LEFT @@ -4828,21 +4827,21 @@ HogQLParser::JoinOpContext* HogQLParser::joinOp() { _errHandler->reportMatch(this); consume(); } - setState(581); + setState(579); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::OUTER) { - setState(580); + setState(578); match(HogQLParser::OUTER); } - setState(584); + setState(582); _errHandler->sync(this); _la = _input->LA(1); if ((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & 282) != 0) || _la == HogQLParser::SEMI) { - setState(583); + setState(581); _la = _input->LA(1); if (!((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & 282) != 0) || _la == HogQLParser::SEMI)) { @@ -4865,18 +4864,18 @@ HogQLParser::JoinOpContext* HogQLParser::joinOp() { case 3: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 3); - setState(602); + setState(600); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 72, _ctx)) { case 1: { - setState(589); + setState(587); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::ALL || _la == HogQLParser::ANY) { - setState(588); + setState(586); _la = _input->LA(1); if (!(_la == HogQLParser::ALL @@ -4888,38 +4887,38 @@ HogQLParser::JoinOpContext* HogQLParser::joinOp() { consume(); } } - setState(591); + setState(589); match(HogQLParser::FULL); - setState(593); + setState(591); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::OUTER) { - setState(592); + setState(590); match(HogQLParser::OUTER); } break; } case 2: { - setState(595); + setState(593); match(HogQLParser::FULL); - setState(597); + setState(595); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::OUTER) { - setState(596); + setState(594); match(HogQLParser::OUTER); } - setState(600); + setState(598); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::ALL || _la == HogQLParser::ANY) { - setState(599); + setState(597); _la = _input->LA(1); if (!(_la == HogQLParser::ALL @@ -4997,21 +4996,21 @@ HogQLParser::JoinOpCrossContext* HogQLParser::joinOpCross() { exitRule(); }); try { - setState(609); + setState(607); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::CROSS: { enterOuterAlt(_localctx, 1); - setState(606); + setState(604); match(HogQLParser::CROSS); - setState(607); + setState(605); match(HogQLParser::JOIN); break; } case HogQLParser::COMMA: { enterOuterAlt(_localctx, 2); - setState(608); + setState(606); match(HogQLParser::COMMA); break; } @@ -5081,36 +5080,36 @@ HogQLParser::JoinConstraintClauseContext* HogQLParser::joinConstraintClause() { exitRule(); }); try { - setState(620); + setState(618); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 75, _ctx)) { case 1: { enterOuterAlt(_localctx, 1); - setState(611); + setState(609); match(HogQLParser::ON); - setState(612); + setState(610); columnExprList(); break; } case 2: { enterOuterAlt(_localctx, 2); - setState(613); + setState(611); match(HogQLParser::USING); - setState(614); + setState(612); match(HogQLParser::LPAREN); - setState(615); + setState(613); columnExprList(); - setState(616); + setState(614); match(HogQLParser::RPAREN); break; } case 3: { enterOuterAlt(_localctx, 3); - setState(618); + setState(616); match(HogQLParser::USING); - setState(619); + setState(617); columnExprList(); break; } @@ -5177,18 +5176,18 @@ HogQLParser::SampleClauseContext* HogQLParser::sampleClause() { }); try { enterOuterAlt(_localctx, 1); - setState(622); + setState(620); match(HogQLParser::SAMPLE); - setState(623); + setState(621); ratioExpr(); - setState(626); + setState(624); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 76, _ctx)) { case 1: { - setState(624); + setState(622); match(HogQLParser::OFFSET); - setState(625); + setState(623); ratioExpr(); break; } @@ -5256,17 +5255,17 @@ HogQLParser::OrderExprListContext* HogQLParser::orderExprList() { }); try { enterOuterAlt(_localctx, 1); - setState(628); + setState(626); orderExpr(); - setState(633); + setState(631); _errHandler->sync(this); _la = _input->LA(1); while (_la == HogQLParser::COMMA) { - setState(629); + setState(627); match(HogQLParser::COMMA); - setState(630); + setState(628); orderExpr(); - setState(635); + setState(633); _errHandler->sync(this); _la = _input->LA(1); } @@ -5350,15 +5349,15 @@ HogQLParser::OrderExprContext* HogQLParser::orderExpr() { }); try { enterOuterAlt(_localctx, 1); - setState(636); + setState(634); columnExpr(0); - setState(638); + setState(636); _errHandler->sync(this); _la = _input->LA(1); if ((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & 12583040) != 0)) { - setState(637); + setState(635); _la = _input->LA(1); if (!((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & 12583040) != 0))) { @@ -5369,14 +5368,14 @@ HogQLParser::OrderExprContext* HogQLParser::orderExpr() { consume(); } } - setState(642); + setState(640); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::NULLS) { - setState(640); + setState(638); match(HogQLParser::NULLS); - setState(641); + setState(639); _la = _input->LA(1); if (!(_la == HogQLParser::FIRST @@ -5388,14 +5387,14 @@ HogQLParser::OrderExprContext* HogQLParser::orderExpr() { consume(); } } - setState(646); + setState(644); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::COLLATE) { - setState(644); + setState(642); match(HogQLParser::COLLATE); - setState(645); + setState(643); match(HogQLParser::STRING_LITERAL); } @@ -5415,8 +5414,8 @@ HogQLParser::RatioExprContext::RatioExprContext(ParserRuleContext *parent, size_ : ParserRuleContext(parent, invokingState) { } -HogQLParser::PlaceholderContext* HogQLParser::RatioExprContext::placeholder() { - return getRuleContext(0); +HogQLParser::BlockContext* HogQLParser::RatioExprContext::block() { + return getRuleContext(0); } std::vector HogQLParser::RatioExprContext::numberLiteral() { @@ -5456,13 +5455,13 @@ HogQLParser::RatioExprContext* HogQLParser::ratioExpr() { exitRule(); }); try { - setState(654); + setState(652); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::LBRACE: { enterOuterAlt(_localctx, 1); - setState(648); - placeholder(); + setState(646); + antlrcpp::downCast(_localctx)->placeholder = block(); break; } @@ -5476,16 +5475,16 @@ HogQLParser::RatioExprContext* HogQLParser::ratioExpr() { case HogQLParser::DOT: case HogQLParser::PLUS: { enterOuterAlt(_localctx, 2); - setState(649); + setState(647); numberLiteral(); - setState(652); + setState(650); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 81, _ctx)) { case 1: { - setState(650); + setState(648); match(HogQLParser::SLASH); - setState(651); + setState(649); numberLiteral(); break; } @@ -5559,17 +5558,17 @@ HogQLParser::SettingExprListContext* HogQLParser::settingExprList() { }); try { enterOuterAlt(_localctx, 1); - setState(656); + setState(654); settingExpr(); - setState(661); + setState(659); _errHandler->sync(this); _la = _input->LA(1); while (_la == HogQLParser::COMMA) { - setState(657); + setState(655); match(HogQLParser::COMMA); - setState(658); + setState(656); settingExpr(); - setState(663); + setState(661); _errHandler->sync(this); _la = _input->LA(1); } @@ -5628,11 +5627,11 @@ HogQLParser::SettingExprContext* HogQLParser::settingExpr() { }); try { enterOuterAlt(_localctx, 1); - setState(664); + setState(662); identifier(); - setState(665); + setState(663); match(HogQLParser::EQ_SINGLE); - setState(666); + setState(664); literal(); } @@ -5690,30 +5689,30 @@ HogQLParser::WindowExprContext* HogQLParser::windowExpr() { }); try { enterOuterAlt(_localctx, 1); - setState(669); + setState(667); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::PARTITION) { - setState(668); + setState(666); winPartitionByClause(); } - setState(672); + setState(670); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::ORDER) { - setState(671); + setState(669); winOrderByClause(); } - setState(675); + setState(673); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::RANGE || _la == HogQLParser::ROWS) { - setState(674); + setState(672); winFrameClause(); } @@ -5771,11 +5770,11 @@ HogQLParser::WinPartitionByClauseContext* HogQLParser::winPartitionByClause() { }); try { enterOuterAlt(_localctx, 1); - setState(677); + setState(675); match(HogQLParser::PARTITION); - setState(678); + setState(676); match(HogQLParser::BY); - setState(679); + setState(677); columnExprList(); } @@ -5832,11 +5831,11 @@ HogQLParser::WinOrderByClauseContext* HogQLParser::winOrderByClause() { }); try { enterOuterAlt(_localctx, 1); - setState(681); + setState(679); match(HogQLParser::ORDER); - setState(682); + setState(680); match(HogQLParser::BY); - setState(683); + setState(681); orderExprList(); } @@ -5894,7 +5893,7 @@ HogQLParser::WinFrameClauseContext* HogQLParser::winFrameClause() { }); try { enterOuterAlt(_localctx, 1); - setState(685); + setState(683); _la = _input->LA(1); if (!(_la == HogQLParser::RANGE @@ -5905,7 +5904,7 @@ HogQLParser::WinFrameClauseContext* HogQLParser::winFrameClause() { _errHandler->reportMatch(this); consume(); } - setState(686); + setState(684); winFrameExtend(); } @@ -5987,7 +5986,7 @@ HogQLParser::WinFrameExtendContext* HogQLParser::winFrameExtend() { exitRule(); }); try { - setState(694); + setState(692); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::CURRENT: @@ -6003,7 +6002,7 @@ HogQLParser::WinFrameExtendContext* HogQLParser::winFrameExtend() { case HogQLParser::PLUS: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 1); - setState(688); + setState(686); winFrameBound(); break; } @@ -6011,13 +6010,13 @@ HogQLParser::WinFrameExtendContext* HogQLParser::winFrameExtend() { case HogQLParser::BETWEEN: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 2); - setState(689); + setState(687); match(HogQLParser::BETWEEN); - setState(690); + setState(688); winFrameBound(); - setState(691); + setState(689); match(HogQLParser::AND); - setState(692); + setState(690); winFrameBound(); break; } @@ -6092,45 +6091,45 @@ HogQLParser::WinFrameBoundContext* HogQLParser::winFrameBound() { }); try { enterOuterAlt(_localctx, 1); - setState(708); + setState(706); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 88, _ctx)) { case 1: { - setState(696); + setState(694); match(HogQLParser::CURRENT); - setState(697); + setState(695); match(HogQLParser::ROW); break; } case 2: { - setState(698); + setState(696); match(HogQLParser::UNBOUNDED); - setState(699); + setState(697); match(HogQLParser::PRECEDING); break; } case 3: { - setState(700); + setState(698); match(HogQLParser::UNBOUNDED); - setState(701); + setState(699); match(HogQLParser::FOLLOWING); break; } case 4: { - setState(702); + setState(700); numberLiteral(); - setState(703); + setState(701); match(HogQLParser::PRECEDING); break; } case 5: { - setState(705); + setState(703); numberLiteral(); - setState(706); + setState(704); match(HogQLParser::FOLLOWING); break; } @@ -6189,9 +6188,9 @@ HogQLParser::ExprContext* HogQLParser::expr() { }); try { enterOuterAlt(_localctx, 1); - setState(710); + setState(708); columnExpr(0); - setState(711); + setState(709); match(HogQLParser::EOF); } @@ -6396,13 +6395,13 @@ HogQLParser::ColumnTypeExprContext* HogQLParser::columnTypeExpr() { }); try { size_t alt; - setState(769); + setState(767); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 96, _ctx)) { case 1: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 1); - setState(713); + setState(711); identifier(); break; } @@ -6410,39 +6409,39 @@ HogQLParser::ColumnTypeExprContext* HogQLParser::columnTypeExpr() { case 2: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 2); - setState(714); + setState(712); identifier(); - setState(715); + setState(713); match(HogQLParser::LPAREN); - setState(716); + setState(714); identifier(); - setState(717); + setState(715); columnTypeExpr(); - setState(724); + setState(722); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 89, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { if (alt == 1) { - setState(718); + setState(716); match(HogQLParser::COMMA); - setState(719); + setState(717); identifier(); - setState(720); + setState(718); columnTypeExpr(); } - setState(726); + setState(724); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 89, _ctx); } - setState(728); + setState(726); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::COMMA) { - setState(727); + setState(725); match(HogQLParser::COMMA); } - setState(730); + setState(728); match(HogQLParser::RPAREN); break; } @@ -6450,35 +6449,35 @@ HogQLParser::ColumnTypeExprContext* HogQLParser::columnTypeExpr() { case 3: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 3); - setState(732); + setState(730); identifier(); - setState(733); + setState(731); match(HogQLParser::LPAREN); - setState(734); + setState(732); enumValue(); - setState(739); + setState(737); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 91, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { if (alt == 1) { - setState(735); + setState(733); match(HogQLParser::COMMA); - setState(736); + setState(734); enumValue(); } - setState(741); + setState(739); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 91, _ctx); } - setState(743); + setState(741); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::COMMA) { - setState(742); + setState(740); match(HogQLParser::COMMA); } - setState(745); + setState(743); match(HogQLParser::RPAREN); break; } @@ -6486,35 +6485,35 @@ HogQLParser::ColumnTypeExprContext* HogQLParser::columnTypeExpr() { case 4: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 4); - setState(747); + setState(745); identifier(); - setState(748); + setState(746); match(HogQLParser::LPAREN); - setState(749); + setState(747); columnTypeExpr(); - setState(754); + setState(752); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 93, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { if (alt == 1) { - setState(750); + setState(748); match(HogQLParser::COMMA); - setState(751); + setState(749); columnTypeExpr(); } - setState(756); + setState(754); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 93, _ctx); } - setState(758); + setState(756); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::COMMA) { - setState(757); + setState(755); match(HogQLParser::COMMA); } - setState(760); + setState(758); match(HogQLParser::RPAREN); break; } @@ -6522,11 +6521,11 @@ HogQLParser::ColumnTypeExprContext* HogQLParser::columnTypeExpr() { case 5: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 5); - setState(762); + setState(760); identifier(); - setState(763); + setState(761); match(HogQLParser::LPAREN); - setState(765); + setState(763); _errHandler->sync(this); _la = _input->LA(1); @@ -6534,10 +6533,10 @@ HogQLParser::ColumnTypeExprContext* HogQLParser::columnTypeExpr() { ((1ULL << _la) & -9007270658588674) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 180986072486903807) != 0) || ((((_la - 129) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 129)) & 18455) != 0)) { - setState(764); + setState(762); columnExprList(); } - setState(767); + setState(765); match(HogQLParser::RPAREN); break; } @@ -6605,28 +6604,28 @@ HogQLParser::ColumnExprListContext* HogQLParser::columnExprList() { try { size_t alt; enterOuterAlt(_localctx, 1); - setState(771); + setState(769); columnExpr(0); - setState(776); + setState(774); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 97, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { if (alt == 1) { - setState(772); + setState(770); match(HogQLParser::COMMA); - setState(773); + setState(771); columnExpr(0); } - setState(778); + setState(776); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 97, _ctx); } - setState(780); + setState(778); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 98, _ctx)) { case 1: { - setState(779); + setState(777); match(HogQLParser::COMMA); break; } @@ -7510,6 +7509,29 @@ std::any HogQLParser::ColumnExprTimestampContext::accept(tree::ParseTreeVisitor else return visitor->visitChildren(this); } +//----------------- ColumnExprPlaceholderContext ------------------------------------------------------------------ + +tree::TerminalNode* HogQLParser::ColumnExprPlaceholderContext::LBRACE() { + return getToken(HogQLParser::LBRACE, 0); +} + +HogQLParser::NestedIdentifierContext* HogQLParser::ColumnExprPlaceholderContext::nestedIdentifier() { + return getRuleContext(0); +} + +tree::TerminalNode* HogQLParser::ColumnExprPlaceholderContext::RBRACE() { + return getToken(HogQLParser::RBRACE, 0); +} + +HogQLParser::ColumnExprPlaceholderContext::ColumnExprPlaceholderContext(ColumnExprContext *ctx) { copyFrom(ctx); } + + +std::any HogQLParser::ColumnExprPlaceholderContext::accept(tree::ParseTreeVisitor *visitor) { + if (auto parserVisitor = dynamic_cast(visitor)) + return parserVisitor->visitColumnExprPlaceholder(this); + else + return visitor->visitChildren(this); +} //----------------- ColumnExprNullishContext ------------------------------------------------------------------ std::vector HogQLParser::ColumnExprNullishContext::columnExpr() { @@ -7837,7 +7859,7 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { try { size_t alt; enterOuterAlt(_localctx, 1); - setState(933); + setState(935); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 118, _ctx)) { case 1: { @@ -7845,14 +7867,14 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _ctx = _localctx; previousContext = _localctx; - setState(783); + setState(781); match(HogQLParser::CASE); - setState(785); + setState(783); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 99, _ctx)) { case 1: { - setState(784); + setState(782); antlrcpp::downCast(_localctx)->caseExpr = columnExpr(0); break; } @@ -7860,33 +7882,33 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { default: break; } - setState(792); + setState(790); _errHandler->sync(this); _la = _input->LA(1); do { - setState(787); + setState(785); match(HogQLParser::WHEN); - setState(788); + setState(786); antlrcpp::downCast(_localctx)->whenExpr = columnExpr(0); - setState(789); + setState(787); match(HogQLParser::THEN); - setState(790); + setState(788); antlrcpp::downCast(_localctx)->thenExpr = columnExpr(0); - setState(794); + setState(792); _errHandler->sync(this); _la = _input->LA(1); } while (_la == HogQLParser::WHEN); - setState(798); + setState(796); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::ELSE) { - setState(796); + setState(794); match(HogQLParser::ELSE); - setState(797); + setState(795); antlrcpp::downCast(_localctx)->elseExpr = columnExpr(0); } - setState(800); + setState(798); match(HogQLParser::END); break; } @@ -7895,17 +7917,17 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(802); + setState(800); match(HogQLParser::CAST); - setState(803); + setState(801); match(HogQLParser::LPAREN); - setState(804); + setState(802); columnExpr(0); - setState(805); + setState(803); match(HogQLParser::AS); - setState(806); + setState(804); columnTypeExpr(); - setState(807); + setState(805); match(HogQLParser::RPAREN); break; } @@ -7914,9 +7936,9 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(809); + setState(807); match(HogQLParser::DATE); - setState(810); + setState(808); match(HogQLParser::STRING_LITERAL); break; } @@ -7925,11 +7947,11 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(811); + setState(809); match(HogQLParser::INTERVAL); - setState(812); + setState(810); columnExpr(0); - setState(813); + setState(811); interval(); break; } @@ -7938,27 +7960,27 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(815); + setState(813); match(HogQLParser::SUBSTRING); - setState(816); + setState(814); match(HogQLParser::LPAREN); - setState(817); + setState(815); columnExpr(0); - setState(818); + setState(816); match(HogQLParser::FROM); - setState(819); + setState(817); columnExpr(0); - setState(822); + setState(820); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::FOR) { - setState(820); + setState(818); match(HogQLParser::FOR); - setState(821); + setState(819); columnExpr(0); } - setState(824); + setState(822); match(HogQLParser::RPAREN); break; } @@ -7967,9 +7989,9 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(826); + setState(824); match(HogQLParser::TIMESTAMP); - setState(827); + setState(825); match(HogQLParser::STRING_LITERAL); break; } @@ -7978,11 +8000,11 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(828); + setState(826); match(HogQLParser::TRIM); - setState(829); + setState(827); match(HogQLParser::LPAREN); - setState(830); + setState(828); _la = _input->LA(1); if (!(_la == HogQLParser::BOTH @@ -7993,13 +8015,13 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _errHandler->reportMatch(this); consume(); } - setState(831); + setState(829); string(); - setState(832); + setState(830); match(HogQLParser::FROM); - setState(833); + setState(831); columnExpr(0); - setState(834); + setState(832); match(HogQLParser::RPAREN); break; } @@ -8008,12 +8030,12 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(836); + setState(834); identifier(); - setState(837); + setState(835); match(HogQLParser::LPAREN); - setState(839); + setState(837); _errHandler->sync(this); _la = _input->LA(1); @@ -8021,24 +8043,24 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { ((1ULL << _la) & -9007270658588674) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 180986072486903807) != 0) || ((((_la - 129) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 129)) & 18455) != 0)) { - setState(838); + setState(836); antlrcpp::downCast(_localctx)->columnExprs = columnExprList(); } - setState(841); + setState(839); match(HogQLParser::RPAREN); - setState(851); + setState(849); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::LPAREN) { - setState(843); + setState(841); match(HogQLParser::LPAREN); - setState(845); + setState(843); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 104, _ctx)) { case 1: { - setState(844); + setState(842); match(HogQLParser::DISTINCT); break; } @@ -8046,7 +8068,7 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { default: break; } - setState(848); + setState(846); _errHandler->sync(this); _la = _input->LA(1); @@ -8054,19 +8076,19 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { ((1ULL << _la) & -9007270658588674) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 180986072486903807) != 0) || ((((_la - 129) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 129)) & 18455) != 0)) { - setState(847); + setState(845); antlrcpp::downCast(_localctx)->columnArgList = columnExprList(); } - setState(850); + setState(848); match(HogQLParser::RPAREN); } - setState(853); + setState(851); match(HogQLParser::OVER); - setState(854); + setState(852); match(HogQLParser::LPAREN); - setState(855); + setState(853); windowExpr(); - setState(856); + setState(854); match(HogQLParser::RPAREN); break; } @@ -8075,12 +8097,12 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(858); + setState(856); identifier(); - setState(859); + setState(857); match(HogQLParser::LPAREN); - setState(861); + setState(859); _errHandler->sync(this); _la = _input->LA(1); @@ -8088,24 +8110,24 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { ((1ULL << _la) & -9007270658588674) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 180986072486903807) != 0) || ((((_la - 129) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 129)) & 18455) != 0)) { - setState(860); + setState(858); antlrcpp::downCast(_localctx)->columnExprs = columnExprList(); } - setState(863); + setState(861); match(HogQLParser::RPAREN); - setState(873); + setState(871); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::LPAREN) { - setState(865); + setState(863); match(HogQLParser::LPAREN); - setState(867); + setState(865); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 108, _ctx)) { case 1: { - setState(866); + setState(864); match(HogQLParser::DISTINCT); break; } @@ -8113,7 +8135,7 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { default: break; } - setState(870); + setState(868); _errHandler->sync(this); _la = _input->LA(1); @@ -8121,15 +8143,15 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { ((1ULL << _la) & -9007270658588674) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 180986072486903807) != 0) || ((((_la - 129) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 129)) & 18455) != 0)) { - setState(869); + setState(867); antlrcpp::downCast(_localctx)->columnArgList = columnExprList(); } - setState(872); + setState(870); match(HogQLParser::RPAREN); } - setState(875); + setState(873); match(HogQLParser::OVER); - setState(876); + setState(874); identifier(); break; } @@ -8138,16 +8160,16 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(878); + setState(876); identifier(); - setState(884); + setState(882); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 112, _ctx)) { case 1: { - setState(879); + setState(877); match(HogQLParser::LPAREN); - setState(881); + setState(879); _errHandler->sync(this); _la = _input->LA(1); @@ -8155,10 +8177,10 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { ((1ULL << _la) & -9007270658588674) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 180986072486903807) != 0) || ((((_la - 129) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 129)) & 18455) != 0)) { - setState(880); + setState(878); antlrcpp::downCast(_localctx)->columnExprs = columnExprList(); } - setState(883); + setState(881); match(HogQLParser::RPAREN); break; } @@ -8166,14 +8188,14 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { default: break; } - setState(886); + setState(884); match(HogQLParser::LPAREN); - setState(888); + setState(886); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 113, _ctx)) { case 1: { - setState(887); + setState(885); match(HogQLParser::DISTINCT); break; } @@ -8181,7 +8203,7 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { default: break; } - setState(891); + setState(889); _errHandler->sync(this); _la = _input->LA(1); @@ -8189,10 +8211,10 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { ((1ULL << _la) & -9007270658588674) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 180986072486903807) != 0) || ((((_la - 129) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 129)) & 18455) != 0)) { - setState(890); + setState(888); antlrcpp::downCast(_localctx)->columnArgList = columnExprList(); } - setState(893); + setState(891); match(HogQLParser::RPAREN); break; } @@ -8201,7 +8223,7 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(895); + setState(893); hogqlxTagElement(); break; } @@ -8210,7 +8232,7 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(896); + setState(894); templateString(); break; } @@ -8219,7 +8241,7 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(897); + setState(895); literal(); break; } @@ -8228,10 +8250,10 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(898); + setState(896); match(HogQLParser::DASH); - setState(899); - columnExpr(21); + setState(897); + columnExpr(22); break; } @@ -8239,10 +8261,10 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(900); + setState(898); match(HogQLParser::NOT); - setState(901); - columnExpr(15); + setState(899); + columnExpr(16); break; } @@ -8250,19 +8272,19 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(905); + setState(903); _errHandler->sync(this); _la = _input->LA(1); if ((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & -1450176743603191810) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 6458554974207) != 0)) { - setState(902); + setState(900); tableIdentifier(); - setState(903); + setState(901); match(HogQLParser::DOT); } - setState(907); + setState(905); match(HogQLParser::ASTERISK); break; } @@ -8271,11 +8293,11 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(908); + setState(906); match(HogQLParser::LPAREN); - setState(909); + setState(907); selectUnionStmt(); - setState(910); + setState(908); match(HogQLParser::RPAREN); break; } @@ -8284,11 +8306,11 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(912); + setState(910); match(HogQLParser::LPAREN); - setState(913); + setState(911); columnExpr(0); - setState(914); + setState(912); match(HogQLParser::RPAREN); break; } @@ -8297,11 +8319,11 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(916); + setState(914); match(HogQLParser::LPAREN); - setState(917); + setState(915); columnExprList(); - setState(918); + setState(916); match(HogQLParser::RPAREN); break; } @@ -8310,9 +8332,9 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(920); + setState(918); match(HogQLParser::LBRACKET); - setState(922); + setState(920); _errHandler->sync(this); _la = _input->LA(1); @@ -8320,10 +8342,10 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { ((1ULL << _la) & -9007270658588674) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 180986072486903807) != 0) || ((((_la - 129) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 129)) & 18455) != 0)) { - setState(921); + setState(919); columnExprList(); } - setState(924); + setState(922); match(HogQLParser::RBRACKET); break; } @@ -8332,9 +8354,9 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(925); + setState(923); match(HogQLParser::LBRACE); - setState(927); + setState(925); _errHandler->sync(this); _la = _input->LA(1); @@ -8342,10 +8364,10 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { ((1ULL << _la) & -9007270658588674) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 180986072486903807) != 0) || ((((_la - 129) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 129)) & 18455) != 0)) { - setState(926); + setState(924); kvPairList(); } - setState(929); + setState(927); match(HogQLParser::RBRACE); break; } @@ -8354,17 +8376,21 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(930); + setState(928); columnLambdaExpr(); break; } case 23: { - _localctx = _tracker.createInstance(_localctx); + _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; + setState(929); + match(HogQLParser::LBRACE); + setState(930); + nestedIdentifier(); setState(931); - columnIdentifier(); + match(HogQLParser::RBRACE); break; } @@ -8372,16 +8398,25 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; previousContext = _localctx; - setState(932); + setState(933); block(); break; } + case 25: { + _localctx = _tracker.createInstance(_localctx); + _ctx = _localctx; + previousContext = _localctx; + setState(934); + columnIdentifier(); + break; + } + default: break; } _ctx->stop = _input->LT(-1); - setState(1045); + setState(1047); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 130, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { @@ -8389,7 +8424,7 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { if (!_parseListeners.empty()) triggerExitRuleEvent(); previousContext = _localctx; - setState(1043); + setState(1045); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 129, _ctx)) { case 1: { @@ -8397,26 +8432,26 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = newContext; newContext->left = previousContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(935); + setState(937); - if (!(precpred(_ctx, 20))) throw FailedPredicateException(this, "precpred(_ctx, 20)"); - setState(939); + if (!(precpred(_ctx, 21))) throw FailedPredicateException(this, "precpred(_ctx, 21)"); + setState(941); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::ASTERISK: { - setState(936); + setState(938); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::ASTERISK); break; } case HogQLParser::SLASH: { - setState(937); + setState(939); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::SLASH); break; } case HogQLParser::PERCENT: { - setState(938); + setState(940); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::PERCENT); break; } @@ -8424,8 +8459,8 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { default: throw NoViableAltException(this); } - setState(941); - antlrcpp::downCast(_localctx)->right = columnExpr(21); + setState(943); + antlrcpp::downCast(_localctx)->right = columnExpr(22); break; } @@ -8434,26 +8469,26 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = newContext; newContext->left = previousContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(942); + setState(944); - if (!(precpred(_ctx, 19))) throw FailedPredicateException(this, "precpred(_ctx, 19)"); - setState(946); + if (!(precpred(_ctx, 20))) throw FailedPredicateException(this, "precpred(_ctx, 20)"); + setState(948); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::PLUS: { - setState(943); + setState(945); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::PLUS); break; } case HogQLParser::DASH: { - setState(944); + setState(946); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::DASH); break; } case HogQLParser::CONCAT: { - setState(945); + setState(947); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::CONCAT); break; } @@ -8461,8 +8496,8 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { default: throw NoViableAltException(this); } - setState(948); - antlrcpp::downCast(_localctx)->right = columnExpr(20); + setState(950); + antlrcpp::downCast(_localctx)->right = columnExpr(21); break; } @@ -8471,71 +8506,71 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { _localctx = newContext; newContext->left = previousContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(949); + setState(951); - if (!(precpred(_ctx, 18))) throw FailedPredicateException(this, "precpred(_ctx, 18)"); - setState(974); + if (!(precpred(_ctx, 19))) throw FailedPredicateException(this, "precpred(_ctx, 19)"); + setState(976); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 124, _ctx)) { case 1: { - setState(950); + setState(952); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::EQ_DOUBLE); break; } case 2: { - setState(951); + setState(953); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::EQ_SINGLE); break; } case 3: { - setState(952); + setState(954); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::NOT_EQ); break; } case 4: { - setState(953); + setState(955); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::LT_EQ); break; } case 5: { - setState(954); + setState(956); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::LT); break; } case 6: { - setState(955); + setState(957); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::GT_EQ); break; } case 7: { - setState(956); + setState(958); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::GT); break; } case 8: { - setState(958); + setState(960); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::NOT) { - setState(957); + setState(959); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::NOT); } - setState(960); - match(HogQLParser::IN); setState(962); + match(HogQLParser::IN); + setState(964); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 122, _ctx)) { case 1: { - setState(961); + setState(963); match(HogQLParser::COHORT); break; } @@ -8547,15 +8582,15 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { } case 9: { - setState(965); + setState(967); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::NOT) { - setState(964); + setState(966); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::NOT); } - setState(967); + setState(969); _la = _input->LA(1); if (!(_la == HogQLParser::ILIKE @@ -8570,37 +8605,37 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { } case 10: { - setState(968); + setState(970); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::REGEX_SINGLE); break; } case 11: { - setState(969); + setState(971); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::REGEX_DOUBLE); break; } case 12: { - setState(970); + setState(972); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::NOT_REGEX); break; } case 13: { - setState(971); + setState(973); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::IREGEX_SINGLE); break; } case 14: { - setState(972); + setState(974); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::IREGEX_DOUBLE); break; } case 15: { - setState(973); + setState(975); antlrcpp::downCast(_localctx)->operator_ = match(HogQLParser::NOT_IREGEX); break; } @@ -8608,8 +8643,8 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { default: break; } - setState(976); - antlrcpp::downCast(_localctx)->right = columnExpr(19); + setState(978); + antlrcpp::downCast(_localctx)->right = columnExpr(20); break; } @@ -8617,13 +8652,13 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(977); + setState(979); - if (!(precpred(_ctx, 16))) throw FailedPredicateException(this, "precpred(_ctx, 16)"); - setState(978); + if (!(precpred(_ctx, 17))) throw FailedPredicateException(this, "precpred(_ctx, 17)"); + setState(980); match(HogQLParser::NULLISH); - setState(979); - columnExpr(17); + setState(981); + columnExpr(18); break; } @@ -8631,13 +8666,13 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(980); + setState(982); - if (!(precpred(_ctx, 14))) throw FailedPredicateException(this, "precpred(_ctx, 14)"); - setState(981); + if (!(precpred(_ctx, 15))) throw FailedPredicateException(this, "precpred(_ctx, 15)"); + setState(983); match(HogQLParser::AND); - setState(982); - columnExpr(15); + setState(984); + columnExpr(16); break; } @@ -8645,13 +8680,13 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(983); + setState(985); - if (!(precpred(_ctx, 13))) throw FailedPredicateException(this, "precpred(_ctx, 13)"); - setState(984); + if (!(precpred(_ctx, 14))) throw FailedPredicateException(this, "precpred(_ctx, 14)"); + setState(986); match(HogQLParser::OR); - setState(985); - columnExpr(14); + setState(987); + columnExpr(15); break; } @@ -8659,25 +8694,25 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(986); - - if (!(precpred(_ctx, 12))) throw FailedPredicateException(this, "precpred(_ctx, 12)"); setState(988); + + if (!(precpred(_ctx, 13))) throw FailedPredicateException(this, "precpred(_ctx, 13)"); + setState(990); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::NOT) { - setState(987); + setState(989); match(HogQLParser::NOT); } - setState(990); + setState(992); match(HogQLParser::BETWEEN); - setState(991); + setState(993); columnExpr(0); - setState(992); + setState(994); match(HogQLParser::AND); - setState(993); - columnExpr(13); + setState(995); + columnExpr(14); break; } @@ -8685,17 +8720,17 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(995); + setState(997); - if (!(precpred(_ctx, 11))) throw FailedPredicateException(this, "precpred(_ctx, 11)"); - setState(996); + if (!(precpred(_ctx, 12))) throw FailedPredicateException(this, "precpred(_ctx, 12)"); + setState(998); match(HogQLParser::QUERY); - setState(997); + setState(999); columnExpr(0); - setState(998); + setState(1000); match(HogQLParser::COLON); - setState(999); - columnExpr(11); + setState(1001); + columnExpr(12); break; } @@ -8703,12 +8738,12 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1001); + setState(1003); - if (!(precpred(_ctx, 31))) throw FailedPredicateException(this, "precpred(_ctx, 31)"); - setState(1002); - match(HogQLParser::LPAREN); + if (!(precpred(_ctx, 32))) throw FailedPredicateException(this, "precpred(_ctx, 32)"); setState(1004); + match(HogQLParser::LPAREN); + setState(1006); _errHandler->sync(this); _la = _input->LA(1); @@ -8716,10 +8751,10 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { ((1ULL << _la) & -9007270658588674) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 180986072486903807) != 0) || ((((_la - 129) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 129)) & 18455) != 0)) { - setState(1003); + setState(1005); columnExprList(); } - setState(1006); + setState(1008); match(HogQLParser::RPAREN); break; } @@ -8728,14 +8763,14 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1007); + setState(1009); - if (!(precpred(_ctx, 27))) throw FailedPredicateException(this, "precpred(_ctx, 27)"); - setState(1008); + if (!(precpred(_ctx, 28))) throw FailedPredicateException(this, "precpred(_ctx, 28)"); + setState(1010); match(HogQLParser::LBRACKET); - setState(1009); + setState(1011); columnExpr(0); - setState(1010); + setState(1012); match(HogQLParser::RBRACKET); break; } @@ -8744,12 +8779,12 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1012); + setState(1014); - if (!(precpred(_ctx, 26))) throw FailedPredicateException(this, "precpred(_ctx, 26)"); - setState(1013); + if (!(precpred(_ctx, 27))) throw FailedPredicateException(this, "precpred(_ctx, 27)"); + setState(1015); match(HogQLParser::DOT); - setState(1014); + setState(1016); match(HogQLParser::DECIMAL_LITERAL); break; } @@ -8758,12 +8793,12 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1015); + setState(1017); - if (!(precpred(_ctx, 25))) throw FailedPredicateException(this, "precpred(_ctx, 25)"); - setState(1016); + if (!(precpred(_ctx, 26))) throw FailedPredicateException(this, "precpred(_ctx, 26)"); + setState(1018); match(HogQLParser::DOT); - setState(1017); + setState(1019); identifier(); break; } @@ -8772,16 +8807,16 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1018); + setState(1020); - if (!(precpred(_ctx, 24))) throw FailedPredicateException(this, "precpred(_ctx, 24)"); - setState(1019); + if (!(precpred(_ctx, 25))) throw FailedPredicateException(this, "precpred(_ctx, 25)"); + setState(1021); match(HogQLParser::NULL_PROPERTY); - setState(1020); + setState(1022); match(HogQLParser::LBRACKET); - setState(1021); + setState(1023); columnExpr(0); - setState(1022); + setState(1024); match(HogQLParser::RBRACKET); break; } @@ -8790,12 +8825,12 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1024); + setState(1026); - if (!(precpred(_ctx, 23))) throw FailedPredicateException(this, "precpred(_ctx, 23)"); - setState(1025); + if (!(precpred(_ctx, 24))) throw FailedPredicateException(this, "precpred(_ctx, 24)"); + setState(1027); match(HogQLParser::NULL_PROPERTY); - setState(1026); + setState(1028); match(HogQLParser::DECIMAL_LITERAL); break; } @@ -8804,12 +8839,12 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1027); + setState(1029); - if (!(precpred(_ctx, 22))) throw FailedPredicateException(this, "precpred(_ctx, 22)"); - setState(1028); + if (!(precpred(_ctx, 23))) throw FailedPredicateException(this, "precpred(_ctx, 23)"); + setState(1030); match(HogQLParser::NULL_PROPERTY); - setState(1029); + setState(1031); identifier(); break; } @@ -8818,20 +8853,20 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1030); + setState(1032); - if (!(precpred(_ctx, 17))) throw FailedPredicateException(this, "precpred(_ctx, 17)"); - setState(1031); - match(HogQLParser::IS); + if (!(precpred(_ctx, 18))) throw FailedPredicateException(this, "precpred(_ctx, 18)"); setState(1033); + match(HogQLParser::IS); + setState(1035); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::NOT) { - setState(1032); + setState(1034); match(HogQLParser::NOT); } - setState(1035); + setState(1037); match(HogQLParser::NULL_SQL); break; } @@ -8840,24 +8875,24 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { auto newContext = _tracker.createInstance(_tracker.createInstance(parentContext, parentState)); _localctx = newContext; pushNewRecursionContext(newContext, startState, RuleColumnExpr); - setState(1036); + setState(1038); - if (!(precpred(_ctx, 10))) throw FailedPredicateException(this, "precpred(_ctx, 10)"); - setState(1041); + if (!(precpred(_ctx, 11))) throw FailedPredicateException(this, "precpred(_ctx, 11)"); + setState(1043); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 128, _ctx)) { case 1: { - setState(1037); + setState(1039); match(HogQLParser::AS); - setState(1038); + setState(1040); identifier(); break; } case 2: { - setState(1039); + setState(1041); match(HogQLParser::AS); - setState(1040); + setState(1042); match(HogQLParser::STRING_LITERAL); break; } @@ -8872,7 +8907,7 @@ HogQLParser::ColumnExprContext* HogQLParser::columnExpr(int precedence) { break; } } - setState(1047); + setState(1049); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 130, _ctx); } @@ -8955,73 +8990,73 @@ HogQLParser::ColumnLambdaExprContext* HogQLParser::columnLambdaExpr() { try { size_t alt; enterOuterAlt(_localctx, 1); - setState(1075); + setState(1077); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 135, _ctx)) { case 1: { - setState(1048); + setState(1050); match(HogQLParser::LPAREN); - setState(1049); + setState(1051); identifier(); - setState(1054); + setState(1056); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 131, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { if (alt == 1) { - setState(1050); + setState(1052); match(HogQLParser::COMMA); - setState(1051); + setState(1053); identifier(); } - setState(1056); + setState(1058); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 131, _ctx); } - setState(1058); + setState(1060); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::COMMA) { - setState(1057); + setState(1059); match(HogQLParser::COMMA); } - setState(1060); + setState(1062); match(HogQLParser::RPAREN); break; } case 2: { - setState(1062); + setState(1064); identifier(); - setState(1067); + setState(1069); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 133, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { if (alt == 1) { - setState(1063); + setState(1065); match(HogQLParser::COMMA); - setState(1064); + setState(1066); identifier(); } - setState(1069); + setState(1071); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 133, _ctx); } - setState(1071); + setState(1073); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::COMMA) { - setState(1070); + setState(1072); match(HogQLParser::COMMA); } break; } case 3: { - setState(1073); + setState(1075); match(HogQLParser::LPAREN); - setState(1074); + setState(1076); match(HogQLParser::RPAREN); break; } @@ -9029,19 +9064,19 @@ HogQLParser::ColumnLambdaExprContext* HogQLParser::columnLambdaExpr() { default: break; } - setState(1077); + setState(1079); match(HogQLParser::ARROW); - setState(1080); + setState(1082); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 136, _ctx)) { case 1: { - setState(1078); + setState(1080); block(); break; } case 2: { - setState(1079); + setState(1081); columnExpr(0); break; } @@ -9186,31 +9221,31 @@ HogQLParser::HogqlxTagElementContext* HogQLParser::hogqlxTagElement() { exitRule(); }); try { - setState(1114); + setState(1116); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 140, _ctx)) { case 1: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 1); - setState(1082); + setState(1084); match(HogQLParser::LT); - setState(1083); + setState(1085); identifier(); - setState(1087); + setState(1089); _errHandler->sync(this); _la = _input->LA(1); while ((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & -1450176743603191810) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 6458554974207) != 0)) { - setState(1084); + setState(1086); hogqlxTagAttribute(); - setState(1089); + setState(1091); _errHandler->sync(this); _la = _input->LA(1); } - setState(1090); + setState(1092); match(HogQLParser::SLASH); - setState(1091); + setState(1093); match(HogQLParser::GT); break; } @@ -9218,40 +9253,40 @@ HogQLParser::HogqlxTagElementContext* HogQLParser::hogqlxTagElement() { case 2: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 2); - setState(1093); + setState(1095); match(HogQLParser::LT); - setState(1094); + setState(1096); identifier(); - setState(1098); + setState(1100); _errHandler->sync(this); _la = _input->LA(1); while ((((_la & ~ 0x3fULL) == 0) && ((1ULL << _la) & -1450176743603191810) != 0) || ((((_la - 64) & ~ 0x3fULL) == 0) && ((1ULL << (_la - 64)) & 6458554974207) != 0)) { - setState(1095); + setState(1097); hogqlxTagAttribute(); - setState(1100); + setState(1102); _errHandler->sync(this); _la = _input->LA(1); } - setState(1101); + setState(1103); match(HogQLParser::GT); - setState(1107); + setState(1109); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 139, _ctx)) { case 1: { - setState(1102); + setState(1104); hogqlxTagElement(); break; } case 2: { - setState(1103); + setState(1105); match(HogQLParser::LBRACE); - setState(1104); + setState(1106); columnExpr(0); - setState(1105); + setState(1107); match(HogQLParser::RBRACE); break; } @@ -9259,13 +9294,13 @@ HogQLParser::HogqlxTagElementContext* HogQLParser::hogqlxTagElement() { default: break; } - setState(1109); + setState(1111); match(HogQLParser::LT); - setState(1110); + setState(1112); match(HogQLParser::SLASH); - setState(1111); + setState(1113); identifier(); - setState(1112); + setState(1114); match(HogQLParser::GT); break; } @@ -9339,38 +9374,38 @@ HogQLParser::HogqlxTagAttributeContext* HogQLParser::hogqlxTagAttribute() { exitRule(); }); try { - setState(1127); + setState(1129); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 141, _ctx)) { case 1: { enterOuterAlt(_localctx, 1); - setState(1116); + setState(1118); identifier(); - setState(1117); + setState(1119); match(HogQLParser::EQ_SINGLE); - setState(1118); + setState(1120); string(); break; } case 2: { enterOuterAlt(_localctx, 2); - setState(1120); + setState(1122); identifier(); - setState(1121); + setState(1123); match(HogQLParser::EQ_SINGLE); - setState(1122); + setState(1124); match(HogQLParser::LBRACE); - setState(1123); + setState(1125); columnExpr(0); - setState(1124); + setState(1126); match(HogQLParser::RBRACE); break; } case 3: { enterOuterAlt(_localctx, 3); - setState(1126); + setState(1128); identifier(); break; } @@ -9439,28 +9474,28 @@ HogQLParser::WithExprListContext* HogQLParser::withExprList() { try { size_t alt; enterOuterAlt(_localctx, 1); - setState(1129); + setState(1131); withExpr(); - setState(1134); + setState(1136); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 142, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { if (alt == 1) { - setState(1130); + setState(1132); match(HogQLParser::COMMA); - setState(1131); + setState(1133); withExpr(); } - setState(1136); + setState(1138); _errHandler->sync(this); alt = getInterpreter()->adaptivePredict(_input, 142, _ctx); } - setState(1138); + setState(1140); _errHandler->sync(this); _la = _input->LA(1); if (_la == HogQLParser::COMMA) { - setState(1137); + setState(1139); match(HogQLParser::COMMA); } @@ -9555,21 +9590,21 @@ HogQLParser::WithExprContext* HogQLParser::withExpr() { exitRule(); }); try { - setState(1150); + setState(1152); _errHandler->sync(this); switch (getInterpreter()->adaptivePredict(_input, 144, _ctx)) { case 1: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 1); - setState(1140); + setState(1142); identifier(); - setState(1141); + setState(1143); match(HogQLParser::AS); - setState(1142); + setState(1144); match(HogQLParser::LPAREN); - setState(1143); + setState(1145); selectUnionStmt(); - setState(1144); + setState(1146); match(HogQLParser::RPAREN); break; } @@ -9577,11 +9612,11 @@ HogQLParser::WithExprContext* HogQLParser::withExpr() { case 2: { _localctx = _tracker.createInstance(_localctx); enterOuterAlt(_localctx, 2); - setState(1146); + setState(1148); columnExpr(0); - setState(1147); + setState(1149); match(HogQLParser::AS); - setState(1148); + setState(1150); identifier(); break; } @@ -9606,10 +9641,6 @@ HogQLParser::ColumnIdentifierContext::ColumnIdentifierContext(ParserRuleContext : ParserRuleContext(parent, invokingState) { } -HogQLParser::PlaceholderContext* HogQLParser::ColumnIdentifierContext::placeholder() { - return getRuleContext(0); -} - HogQLParser::NestedIdentifierContext* HogQLParser::ColumnIdentifierContext::nestedIdentifier() { return getRuleContext(0); } @@ -9647,134 +9678,24 @@ HogQLParser::ColumnIdentifierContext* HogQLParser::columnIdentifier() { exitRule(); }); try { - setState(1159); + enterOuterAlt(_localctx, 1); + setState(1157); _errHandler->sync(this); - switch (_input->LA(1)) { - case HogQLParser::LBRACE: { - enterOuterAlt(_localctx, 1); - setState(1152); - placeholder(); - break; - } - case HogQLParser::ALL: - case HogQLParser::AND: - case HogQLParser::ANTI: - case HogQLParser::ANY: - case HogQLParser::ARRAY: - case HogQLParser::AS: - case HogQLParser::ASCENDING: - case HogQLParser::ASOF: - case HogQLParser::BETWEEN: - case HogQLParser::BOTH: - case HogQLParser::BY: - case HogQLParser::CASE: - case HogQLParser::CAST: - case HogQLParser::COHORT: - case HogQLParser::COLLATE: - case HogQLParser::CROSS: - case HogQLParser::CUBE: - case HogQLParser::CURRENT: - case HogQLParser::DATE: - case HogQLParser::DAY: - case HogQLParser::DESC: - case HogQLParser::DESCENDING: - case HogQLParser::DISTINCT: - case HogQLParser::ELSE: - case HogQLParser::END: - case HogQLParser::EXTRACT: - case HogQLParser::FINAL: - case HogQLParser::FIRST: - case HogQLParser::FOLLOWING: - case HogQLParser::FOR: - case HogQLParser::FROM: - case HogQLParser::FULL: - case HogQLParser::GROUP: - case HogQLParser::HAVING: - case HogQLParser::HOUR: - case HogQLParser::ID: - case HogQLParser::IF: - case HogQLParser::ILIKE: - case HogQLParser::IN: - case HogQLParser::INNER: - case HogQLParser::INTERVAL: - case HogQLParser::IS: - case HogQLParser::JOIN: - case HogQLParser::KEY: - case HogQLParser::LAST: - case HogQLParser::LEADING: - case HogQLParser::LEFT: - case HogQLParser::LIKE: - case HogQLParser::LIMIT: - case HogQLParser::MINUTE: - case HogQLParser::MONTH: - case HogQLParser::NOT: - case HogQLParser::NULLS: - case HogQLParser::OFFSET: - case HogQLParser::ON: - case HogQLParser::OR: - case HogQLParser::ORDER: - case HogQLParser::OUTER: - case HogQLParser::OVER: - case HogQLParser::PARTITION: - case HogQLParser::PRECEDING: - case HogQLParser::PREWHERE: - case HogQLParser::QUARTER: - case HogQLParser::RANGE: - case HogQLParser::RETURN: - case HogQLParser::RIGHT: - case HogQLParser::ROLLUP: - case HogQLParser::ROW: - case HogQLParser::ROWS: - case HogQLParser::SAMPLE: - case HogQLParser::SECOND: - case HogQLParser::SELECT: - case HogQLParser::SEMI: - case HogQLParser::SETTINGS: - case HogQLParser::SUBSTRING: - case HogQLParser::THEN: - case HogQLParser::TIES: - case HogQLParser::TIMESTAMP: - case HogQLParser::TO: - case HogQLParser::TOP: - case HogQLParser::TOTALS: - case HogQLParser::TRAILING: - case HogQLParser::TRIM: - case HogQLParser::TRUNCATE: - case HogQLParser::UNBOUNDED: - case HogQLParser::UNION: - case HogQLParser::USING: - case HogQLParser::WEEK: - case HogQLParser::WHEN: - case HogQLParser::WHERE: - case HogQLParser::WINDOW: - case HogQLParser::WITH: - case HogQLParser::YEAR: - case HogQLParser::IDENTIFIER: { - enterOuterAlt(_localctx, 2); - setState(1156); - _errHandler->sync(this); - - switch (getInterpreter()->adaptivePredict(_input, 145, _ctx)) { - case 1: { - setState(1153); - tableIdentifier(); - setState(1154); - match(HogQLParser::DOT); - break; - } - - default: - break; - } - setState(1158); - nestedIdentifier(); - break; - } + switch (getInterpreter()->adaptivePredict(_input, 145, _ctx)) { + case 1: { + setState(1154); + tableIdentifier(); + setState(1155); + match(HogQLParser::DOT); + break; + } default: - throw NoViableAltException(this); + break; } + setState(1159); + nestedIdentifier(); } catch (RecognitionException &e) { @@ -9839,7 +9760,7 @@ HogQLParser::NestedIdentifierContext* HogQLParser::nestedIdentifier() { identifier(); setState(1166); _errHandler->sync(this); - alt = getInterpreter()->adaptivePredict(_input, 147, _ctx); + alt = getInterpreter()->adaptivePredict(_input, 146, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { if (alt == 1) { setState(1162); @@ -9849,7 +9770,7 @@ HogQLParser::NestedIdentifierContext* HogQLParser::nestedIdentifier() { } setState(1168); _errHandler->sync(this); - alt = getInterpreter()->adaptivePredict(_input, 147, _ctx); + alt = getInterpreter()->adaptivePredict(_input, 146, _ctx); } } @@ -9909,8 +9830,8 @@ std::any HogQLParser::TableExprIdentifierContext::accept(tree::ParseTreeVisitor } //----------------- TableExprPlaceholderContext ------------------------------------------------------------------ -HogQLParser::PlaceholderContext* HogQLParser::TableExprPlaceholderContext::placeholder() { - return getRuleContext(0); +HogQLParser::BlockContext* HogQLParser::TableExprPlaceholderContext::block() { + return getRuleContext(0); } HogQLParser::TableExprPlaceholderContext::TableExprPlaceholderContext(TableExprContext *ctx) { copyFrom(ctx); } @@ -10015,7 +9936,7 @@ HogQLParser::TableExprContext* HogQLParser::tableExpr(int precedence) { enterOuterAlt(_localctx, 1); setState(1178); _errHandler->sync(this); - switch (getInterpreter()->adaptivePredict(_input, 148, _ctx)) { + switch (getInterpreter()->adaptivePredict(_input, 147, _ctx)) { case 1: { _localctx = _tracker.createInstance(_localctx); _ctx = _localctx; @@ -10062,7 +9983,7 @@ HogQLParser::TableExprContext* HogQLParser::tableExpr(int precedence) { _ctx = _localctx; previousContext = _localctx; setState(1177); - placeholder(); + antlrcpp::downCast(_localctx)->placeholder = block(); break; } @@ -10072,7 +9993,7 @@ HogQLParser::TableExprContext* HogQLParser::tableExpr(int precedence) { _ctx->stop = _input->LT(-1); setState(1188); _errHandler->sync(this); - alt = getInterpreter()->adaptivePredict(_input, 150, _ctx); + alt = getInterpreter()->adaptivePredict(_input, 149, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { if (alt == 1) { if (!_parseListeners.empty()) @@ -10111,7 +10032,7 @@ HogQLParser::TableExprContext* HogQLParser::tableExpr(int precedence) { } setState(1190); _errHandler->sync(this); - alt = getInterpreter()->adaptivePredict(_input, 150, _ctx); + alt = getInterpreter()->adaptivePredict(_input, 149, _ctx); } } catch (RecognitionException &e) { @@ -10246,7 +10167,7 @@ HogQLParser::TableIdentifierContext* HogQLParser::tableIdentifier() { setState(1201); _errHandler->sync(this); - switch (getInterpreter()->adaptivePredict(_input, 152, _ctx)) { + switch (getInterpreter()->adaptivePredict(_input, 151, _ctx)) { case 1: { setState(1198); databaseIdentifier(); @@ -10325,7 +10246,7 @@ HogQLParser::TableArgListContext* HogQLParser::tableArgList() { columnExpr(0); setState(1210); _errHandler->sync(this); - alt = getInterpreter()->adaptivePredict(_input, 153, _ctx); + alt = getInterpreter()->adaptivePredict(_input, 152, _ctx); while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) { if (alt == 1) { setState(1206); @@ -10335,7 +10256,7 @@ HogQLParser::TableArgListContext* HogQLParser::tableArgList() { } setState(1212); _errHandler->sync(this); - alt = getInterpreter()->adaptivePredict(_input, 153, _ctx); + alt = getInterpreter()->adaptivePredict(_input, 152, _ctx); } setState(1214); _errHandler->sync(this); @@ -10494,7 +10415,7 @@ HogQLParser::FloatingLiteralContext* HogQLParser::floatingLiteral() { setState(1224); _errHandler->sync(this); - switch (getInterpreter()->adaptivePredict(_input, 155, _ctx)) { + switch (getInterpreter()->adaptivePredict(_input, 154, _ctx)) { case 1: { setState(1223); _la = _input->LA(1); @@ -10616,7 +10537,7 @@ HogQLParser::NumberLiteralContext* HogQLParser::numberLiteral() { } setState(1237); _errHandler->sync(this); - switch (getInterpreter()->adaptivePredict(_input, 158, _ctx)) { + switch (getInterpreter()->adaptivePredict(_input, 157, _ctx)) { case 1: { setState(1231); floatingLiteral(); @@ -11614,55 +11535,6 @@ HogQLParser::EnumValueContext* HogQLParser::enumValue() { return _localctx; } -//----------------- PlaceholderContext ------------------------------------------------------------------ - -HogQLParser::PlaceholderContext::PlaceholderContext(ParserRuleContext *parent, size_t invokingState) - : ParserRuleContext(parent, invokingState) { -} - -HogQLParser::BlockContext* HogQLParser::PlaceholderContext::block() { - return getRuleContext(0); -} - - -size_t HogQLParser::PlaceholderContext::getRuleIndex() const { - return HogQLParser::RulePlaceholder; -} - - -std::any HogQLParser::PlaceholderContext::accept(tree::ParseTreeVisitor *visitor) { - if (auto parserVisitor = dynamic_cast(visitor)) - return parserVisitor->visitPlaceholder(this); - else - return visitor->visitChildren(this); -} - -HogQLParser::PlaceholderContext* HogQLParser::placeholder() { - PlaceholderContext *_localctx = _tracker.createInstance(_ctx, getState()); - enterRule(_localctx, 160, HogQLParser::RulePlaceholder); - -#if __cplusplus > 201703L - auto onExit = finally([=, this] { -#else - auto onExit = finally([=] { -#endif - exitRule(); - }); - try { - enterOuterAlt(_localctx, 1); - setState(1263); - block(); - - } - catch (RecognitionException &e) { - _errHandler->reportError(this, e); - _localctx->exception = std::current_exception(); - _errHandler->recover(this, _localctx->exception); - } - - return _localctx; -} - //----------------- StringContext ------------------------------------------------------------------ HogQLParser::StringContext::StringContext(ParserRuleContext *parent, size_t invokingState) @@ -11692,7 +11564,7 @@ std::any HogQLParser::StringContext::accept(tree::ParseTreeVisitor *visitor) { HogQLParser::StringContext* HogQLParser::string() { StringContext *_localctx = _tracker.createInstance(_ctx, getState()); - enterRule(_localctx, 162, HogQLParser::RuleString); + enterRule(_localctx, 160, HogQLParser::RuleString); #if __cplusplus > 201703L auto onExit = finally([=, this] { @@ -11702,19 +11574,19 @@ HogQLParser::StringContext* HogQLParser::string() { exitRule(); }); try { - setState(1267); + setState(1265); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::STRING_LITERAL: { enterOuterAlt(_localctx, 1); - setState(1265); + setState(1263); match(HogQLParser::STRING_LITERAL); break; } case HogQLParser::QUOTE_SINGLE_TEMPLATE: { enterOuterAlt(_localctx, 2); - setState(1266); + setState(1264); templateString(); break; } @@ -11770,7 +11642,7 @@ std::any HogQLParser::TemplateStringContext::accept(tree::ParseTreeVisitor *visi HogQLParser::TemplateStringContext* HogQLParser::templateString() { TemplateStringContext *_localctx = _tracker.createInstance(_ctx, getState()); - enterRule(_localctx, 164, HogQLParser::RuleTemplateString); + enterRule(_localctx, 162, HogQLParser::RuleTemplateString); size_t _la = 0; #if __cplusplus > 201703L @@ -11782,21 +11654,21 @@ HogQLParser::TemplateStringContext* HogQLParser::templateString() { }); try { enterOuterAlt(_localctx, 1); - setState(1269); + setState(1267); match(HogQLParser::QUOTE_SINGLE_TEMPLATE); - setState(1273); + setState(1271); _errHandler->sync(this); _la = _input->LA(1); while (_la == HogQLParser::STRING_TEXT || _la == HogQLParser::STRING_ESCAPE_TRIGGER) { - setState(1270); + setState(1268); stringContents(); - setState(1275); + setState(1273); _errHandler->sync(this); _la = _input->LA(1); } - setState(1276); + setState(1274); match(HogQLParser::QUOTE_SINGLE); } @@ -11846,7 +11718,7 @@ std::any HogQLParser::StringContentsContext::accept(tree::ParseTreeVisitor *visi HogQLParser::StringContentsContext* HogQLParser::stringContents() { StringContentsContext *_localctx = _tracker.createInstance(_ctx, getState()); - enterRule(_localctx, 166, HogQLParser::RuleStringContents); + enterRule(_localctx, 164, HogQLParser::RuleStringContents); #if __cplusplus > 201703L auto onExit = finally([=, this] { @@ -11856,23 +11728,23 @@ HogQLParser::StringContentsContext* HogQLParser::stringContents() { exitRule(); }); try { - setState(1283); + setState(1281); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::STRING_ESCAPE_TRIGGER: { enterOuterAlt(_localctx, 1); - setState(1278); + setState(1276); match(HogQLParser::STRING_ESCAPE_TRIGGER); - setState(1279); + setState(1277); columnExpr(0); - setState(1280); + setState(1278); match(HogQLParser::RBRACE); break; } case HogQLParser::STRING_TEXT: { enterOuterAlt(_localctx, 2); - setState(1282); + setState(1280); match(HogQLParser::STRING_TEXT); break; } @@ -11928,7 +11800,7 @@ std::any HogQLParser::FullTemplateStringContext::accept(tree::ParseTreeVisitor * HogQLParser::FullTemplateStringContext* HogQLParser::fullTemplateString() { FullTemplateStringContext *_localctx = _tracker.createInstance(_ctx, getState()); - enterRule(_localctx, 168, HogQLParser::RuleFullTemplateString); + enterRule(_localctx, 166, HogQLParser::RuleFullTemplateString); size_t _la = 0; #if __cplusplus > 201703L @@ -11940,21 +11812,21 @@ HogQLParser::FullTemplateStringContext* HogQLParser::fullTemplateString() { }); try { enterOuterAlt(_localctx, 1); - setState(1285); + setState(1283); match(HogQLParser::QUOTE_SINGLE_TEMPLATE_FULL); - setState(1289); + setState(1287); _errHandler->sync(this); _la = _input->LA(1); while (_la == HogQLParser::FULL_STRING_TEXT || _la == HogQLParser::FULL_STRING_ESCAPE_TRIGGER) { - setState(1286); + setState(1284); stringContentsFull(); - setState(1291); + setState(1289); _errHandler->sync(this); _la = _input->LA(1); } - setState(1292); + setState(1290); match(HogQLParser::EOF); } @@ -12004,7 +11876,7 @@ std::any HogQLParser::StringContentsFullContext::accept(tree::ParseTreeVisitor * HogQLParser::StringContentsFullContext* HogQLParser::stringContentsFull() { StringContentsFullContext *_localctx = _tracker.createInstance(_ctx, getState()); - enterRule(_localctx, 170, HogQLParser::RuleStringContentsFull); + enterRule(_localctx, 168, HogQLParser::RuleStringContentsFull); #if __cplusplus > 201703L auto onExit = finally([=, this] { @@ -12014,23 +11886,23 @@ HogQLParser::StringContentsFullContext* HogQLParser::stringContentsFull() { exitRule(); }); try { - setState(1299); + setState(1297); _errHandler->sync(this); switch (_input->LA(1)) { case HogQLParser::FULL_STRING_ESCAPE_TRIGGER: { enterOuterAlt(_localctx, 1); - setState(1294); + setState(1292); match(HogQLParser::FULL_STRING_ESCAPE_TRIGGER); - setState(1295); + setState(1293); columnExpr(0); - setState(1296); + setState(1294); match(HogQLParser::RBRACE); break; } case HogQLParser::FULL_STRING_TEXT: { enterOuterAlt(_localctx, 2); - setState(1298); + setState(1296); match(HogQLParser::FULL_STRING_TEXT); break; } @@ -12074,23 +11946,23 @@ bool HogQLParser::joinExprSempred(JoinExprContext *_localctx, size_t predicateIn bool HogQLParser::columnExprSempred(ColumnExprContext *_localctx, size_t predicateIndex) { switch (predicateIndex) { - case 2: return precpred(_ctx, 20); - case 3: return precpred(_ctx, 19); - case 4: return precpred(_ctx, 18); - case 5: return precpred(_ctx, 16); - case 6: return precpred(_ctx, 14); - case 7: return precpred(_ctx, 13); - case 8: return precpred(_ctx, 12); - case 9: return precpred(_ctx, 11); - case 10: return precpred(_ctx, 31); - case 11: return precpred(_ctx, 27); - case 12: return precpred(_ctx, 26); - case 13: return precpred(_ctx, 25); - case 14: return precpred(_ctx, 24); - case 15: return precpred(_ctx, 23); - case 16: return precpred(_ctx, 22); - case 17: return precpred(_ctx, 17); - case 18: return precpred(_ctx, 10); + case 2: return precpred(_ctx, 21); + case 3: return precpred(_ctx, 20); + case 4: return precpred(_ctx, 19); + case 5: return precpred(_ctx, 17); + case 6: return precpred(_ctx, 15); + case 7: return precpred(_ctx, 14); + case 8: return precpred(_ctx, 13); + case 9: return precpred(_ctx, 12); + case 10: return precpred(_ctx, 32); + case 11: return precpred(_ctx, 28); + case 12: return precpred(_ctx, 27); + case 13: return precpred(_ctx, 26); + case 14: return precpred(_ctx, 25); + case 15: return precpred(_ctx, 24); + case 16: return precpred(_ctx, 23); + case 17: return precpred(_ctx, 18); + case 18: return precpred(_ctx, 11); default: break; diff --git a/hogql_parser/HogQLParser.h b/hogql_parser/HogQLParser.h index 1891ea9de827a..3f4d3c9f518a4 100644 --- a/hogql_parser/HogQLParser.h +++ b/hogql_parser/HogQLParser.h @@ -68,8 +68,8 @@ class HogQLParser : public antlr4::Parser { RuleTableArgList = 69, RuleDatabaseIdentifier = 70, RuleFloatingLiteral = 71, RuleNumberLiteral = 72, RuleLiteral = 73, RuleInterval = 74, RuleKeyword = 75, RuleKeywordForAlias = 76, RuleAlias = 77, RuleIdentifier = 78, RuleEnumValue = 79, - RulePlaceholder = 80, RuleString = 81, RuleTemplateString = 82, RuleStringContents = 83, - RuleFullTemplateString = 84, RuleStringContentsFull = 85 + RuleString = 80, RuleTemplateString = 81, RuleStringContents = 82, RuleFullTemplateString = 83, + RuleStringContentsFull = 84 }; explicit HogQLParser(antlr4::TokenStream *input); @@ -169,7 +169,6 @@ class HogQLParser : public antlr4::Parser { class AliasContext; class IdentifierContext; class EnumValueContext; - class PlaceholderContext; class StringContext; class TemplateStringContext; class StringContentsContext; @@ -583,13 +582,14 @@ class HogQLParser : public antlr4::Parser { class SelectStmtWithParensContext : public antlr4::ParserRuleContext { public: + HogQLParser::BlockContext *placeholder = nullptr; SelectStmtWithParensContext(antlr4::ParserRuleContext *parent, size_t invokingState); virtual size_t getRuleIndex() const override; SelectStmtContext *selectStmt(); antlr4::tree::TerminalNode *LPAREN(); SelectUnionStmtContext *selectUnionStmt(); antlr4::tree::TerminalNode *RPAREN(); - PlaceholderContext *placeholder(); + BlockContext *block(); virtual std::any accept(antlr4::tree::ParseTreeVisitor *visitor) override; @@ -1064,9 +1064,10 @@ class HogQLParser : public antlr4::Parser { class RatioExprContext : public antlr4::ParserRuleContext { public: + HogQLParser::BlockContext *placeholder = nullptr; RatioExprContext(antlr4::ParserRuleContext *parent, size_t invokingState); virtual size_t getRuleIndex() const override; - PlaceholderContext *placeholder(); + BlockContext *block(); std::vector numberLiteral(); NumberLiteralContext* numberLiteral(size_t i); antlr4::tree::TerminalNode *SLASH(); @@ -1729,6 +1730,17 @@ class HogQLParser : public antlr4::Parser { virtual std::any accept(antlr4::tree::ParseTreeVisitor *visitor) override; }; + class ColumnExprPlaceholderContext : public ColumnExprContext { + public: + ColumnExprPlaceholderContext(ColumnExprContext *ctx); + + antlr4::tree::TerminalNode *LBRACE(); + NestedIdentifierContext *nestedIdentifier(); + antlr4::tree::TerminalNode *RBRACE(); + + virtual std::any accept(antlr4::tree::ParseTreeVisitor *visitor) override; + }; + class ColumnExprNullishContext : public ColumnExprContext { public: ColumnExprNullishContext(ColumnExprContext *ctx); @@ -2020,7 +2032,6 @@ class HogQLParser : public antlr4::Parser { public: ColumnIdentifierContext(antlr4::ParserRuleContext *parent, size_t invokingState); virtual size_t getRuleIndex() const override; - PlaceholderContext *placeholder(); NestedIdentifierContext *nestedIdentifier(); TableIdentifierContext *tableIdentifier(); antlr4::tree::TerminalNode *DOT(); @@ -2083,7 +2094,8 @@ class HogQLParser : public antlr4::Parser { public: TableExprPlaceholderContext(TableExprContext *ctx); - PlaceholderContext *placeholder(); + HogQLParser::BlockContext *placeholder = nullptr; + BlockContext *block(); virtual std::any accept(antlr4::tree::ParseTreeVisitor *visitor) override; }; @@ -2411,19 +2423,6 @@ class HogQLParser : public antlr4::Parser { EnumValueContext* enumValue(); - class PlaceholderContext : public antlr4::ParserRuleContext { - public: - PlaceholderContext(antlr4::ParserRuleContext *parent, size_t invokingState); - virtual size_t getRuleIndex() const override; - BlockContext *block(); - - - virtual std::any accept(antlr4::tree::ParseTreeVisitor *visitor) override; - - }; - - PlaceholderContext* placeholder(); - class StringContext : public antlr4::ParserRuleContext { public: StringContext(antlr4::ParserRuleContext *parent, size_t invokingState); diff --git a/hogql_parser/HogQLParser.interp b/hogql_parser/HogQLParser.interp index ebb7058a58df9..a666065c515a1 100644 --- a/hogql_parser/HogQLParser.interp +++ b/hogql_parser/HogQLParser.interp @@ -405,7 +405,6 @@ keywordForAlias alias identifier enumValue -placeholder string templateString stringContents @@ -414,4 +413,4 @@ stringContentsFull atn: -[4, 1, 160, 1302, 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, 1, 0, 5, 0, 174, 8, 0, 10, 0, 12, 0, 177, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 183, 8, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 192, 8, 3, 1, 4, 1, 4, 1, 4, 5, 4, 197, 8, 4, 10, 4, 12, 4, 200, 9, 4, 1, 4, 3, 4, 203, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 217, 8, 5, 1, 6, 1, 6, 3, 6, 221, 8, 6, 1, 6, 3, 6, 224, 8, 6, 1, 7, 1, 7, 3, 7, 228, 8, 7, 1, 7, 3, 7, 231, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 238, 8, 8, 1, 8, 1, 8, 3, 8, 242, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 249, 8, 9, 10, 9, 12, 9, 252, 9, 9, 1, 9, 1, 9, 3, 9, 256, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 265, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 273, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 280, 8, 12, 1, 12, 1, 12, 3, 12, 284, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 290, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 295, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 303, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 310, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 316, 8, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 328, 8, 16, 1, 17, 1, 17, 1, 18, 1, 18, 5, 18, 334, 8, 18, 10, 18, 12, 18, 337, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 5, 20, 348, 8, 20, 10, 20, 12, 20, 351, 9, 20, 1, 20, 3, 20, 354, 8, 20, 1, 21, 1, 21, 1, 21, 3, 21, 359, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 367, 8, 22, 10, 22, 12, 22, 370, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 378, 8, 23, 1, 24, 3, 24, 381, 8, 24, 1, 24, 1, 24, 3, 24, 385, 8, 24, 1, 24, 3, 24, 388, 8, 24, 1, 24, 1, 24, 3, 24, 392, 8, 24, 1, 24, 3, 24, 395, 8, 24, 1, 24, 3, 24, 398, 8, 24, 1, 24, 3, 24, 401, 8, 24, 1, 24, 3, 24, 404, 8, 24, 1, 24, 1, 24, 3, 24, 408, 8, 24, 1, 24, 1, 24, 3, 24, 412, 8, 24, 1, 24, 3, 24, 415, 8, 24, 1, 24, 3, 24, 418, 8, 24, 1, 24, 3, 24, 421, 8, 24, 1, 24, 1, 24, 3, 24, 425, 8, 24, 1, 24, 3, 24, 428, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 437, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 443, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 462, 8, 29, 10, 29, 12, 29, 465, 9, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 481, 8, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 498, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 504, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 510, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 521, 8, 36, 3, 36, 523, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 534, 8, 39, 1, 39, 3, 39, 537, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 543, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 551, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 557, 8, 39, 10, 39, 12, 39, 560, 9, 39, 1, 40, 3, 40, 563, 8, 40, 1, 40, 1, 40, 1, 40, 3, 40, 568, 8, 40, 1, 40, 3, 40, 571, 8, 40, 1, 40, 3, 40, 574, 8, 40, 1, 40, 1, 40, 3, 40, 578, 8, 40, 1, 40, 1, 40, 3, 40, 582, 8, 40, 1, 40, 3, 40, 585, 8, 40, 3, 40, 587, 8, 40, 1, 40, 3, 40, 590, 8, 40, 1, 40, 1, 40, 3, 40, 594, 8, 40, 1, 40, 1, 40, 3, 40, 598, 8, 40, 1, 40, 3, 40, 601, 8, 40, 3, 40, 603, 8, 40, 3, 40, 605, 8, 40, 1, 41, 1, 41, 1, 41, 3, 41, 610, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 621, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 627, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 632, 8, 44, 10, 44, 12, 44, 635, 9, 44, 1, 45, 1, 45, 3, 45, 639, 8, 45, 1, 45, 1, 45, 3, 45, 643, 8, 45, 1, 45, 1, 45, 3, 45, 647, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 653, 8, 46, 3, 46, 655, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 660, 8, 47, 10, 47, 12, 47, 663, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 3, 49, 670, 8, 49, 1, 49, 3, 49, 673, 8, 49, 1, 49, 3, 49, 676, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 695, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 709, 8, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 723, 8, 56, 10, 56, 12, 56, 726, 9, 56, 1, 56, 3, 56, 729, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 738, 8, 56, 10, 56, 12, 56, 741, 9, 56, 1, 56, 3, 56, 744, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 753, 8, 56, 10, 56, 12, 56, 756, 9, 56, 1, 56, 3, 56, 759, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 766, 8, 56, 1, 56, 1, 56, 3, 56, 770, 8, 56, 1, 57, 1, 57, 1, 57, 5, 57, 775, 8, 57, 10, 57, 12, 57, 778, 9, 57, 1, 57, 3, 57, 781, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 786, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 4, 58, 793, 8, 58, 11, 58, 12, 58, 794, 1, 58, 1, 58, 3, 58, 799, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 823, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 840, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 846, 8, 58, 1, 58, 3, 58, 849, 8, 58, 1, 58, 3, 58, 852, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 862, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 868, 8, 58, 1, 58, 3, 58, 871, 8, 58, 1, 58, 3, 58, 874, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 882, 8, 58, 1, 58, 3, 58, 885, 8, 58, 1, 58, 1, 58, 3, 58, 889, 8, 58, 1, 58, 3, 58, 892, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 906, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 923, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 928, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 934, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 940, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 947, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 959, 8, 58, 1, 58, 1, 58, 3, 58, 963, 8, 58, 1, 58, 3, 58, 966, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 975, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 989, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1005, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1034, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1042, 8, 58, 5, 58, 1044, 8, 58, 10, 58, 12, 58, 1047, 9, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1053, 8, 59, 10, 59, 12, 59, 1056, 9, 59, 1, 59, 3, 59, 1059, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1066, 8, 59, 10, 59, 12, 59, 1069, 9, 59, 1, 59, 3, 59, 1072, 8, 59, 1, 59, 1, 59, 3, 59, 1076, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1081, 8, 59, 1, 60, 1, 60, 1, 60, 5, 60, 1086, 8, 60, 10, 60, 12, 60, 1089, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1097, 8, 60, 10, 60, 12, 60, 1100, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1108, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1115, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1128, 8, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1133, 8, 62, 10, 62, 12, 62, 1136, 9, 62, 1, 62, 3, 62, 1139, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1151, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1157, 8, 64, 1, 64, 3, 64, 1160, 8, 64, 1, 65, 1, 65, 1, 65, 5, 65, 1165, 8, 65, 10, 65, 12, 65, 1168, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1179, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1185, 8, 66, 5, 66, 1187, 8, 66, 10, 66, 12, 66, 1190, 9, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1195, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1202, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 5, 69, 1209, 8, 69, 10, 69, 12, 69, 1212, 9, 69, 1, 69, 3, 69, 1215, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1225, 8, 71, 3, 71, 1227, 8, 71, 1, 72, 3, 72, 1230, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1238, 8, 72, 1, 73, 1, 73, 1, 73, 3, 73, 1243, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1253, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 1258, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 3, 81, 1268, 8, 81, 1, 82, 1, 82, 5, 82, 1272, 8, 82, 10, 82, 12, 82, 1275, 9, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1284, 8, 83, 1, 84, 1, 84, 5, 84, 1288, 8, 84, 10, 84, 12, 84, 1291, 9, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1300, 8, 85, 1, 85, 0, 3, 78, 116, 132, 86, 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, 0, 17, 2, 0, 31, 31, 36, 36, 2, 0, 18, 18, 75, 75, 2, 0, 45, 45, 52, 52, 3, 0, 1, 1, 4, 4, 8, 8, 4, 0, 1, 1, 3, 4, 8, 8, 81, 81, 2, 0, 52, 52, 74, 74, 2, 0, 1, 1, 4, 4, 2, 0, 7, 7, 22, 23, 2, 0, 30, 30, 50, 50, 2, 0, 72, 72, 77, 77, 3, 0, 10, 10, 51, 51, 91, 91, 2, 0, 42, 42, 54, 54, 1, 0, 108, 109, 2, 0, 119, 119, 140, 140, 7, 0, 21, 21, 39, 39, 56, 57, 71, 71, 79, 79, 98, 98, 104, 104, 17, 0, 1, 13, 15, 20, 22, 28, 30, 30, 32, 35, 37, 38, 40, 43, 45, 52, 54, 55, 59, 59, 61, 70, 72, 78, 80, 84, 86, 93, 95, 97, 99, 100, 102, 103, 4, 0, 20, 20, 30, 30, 40, 40, 49, 49, 1475, 0, 175, 1, 0, 0, 0, 2, 182, 1, 0, 0, 0, 4, 184, 1, 0, 0, 0, 6, 186, 1, 0, 0, 0, 8, 193, 1, 0, 0, 0, 10, 216, 1, 0, 0, 0, 12, 218, 1, 0, 0, 0, 14, 225, 1, 0, 0, 0, 16, 232, 1, 0, 0, 0, 18, 245, 1, 0, 0, 0, 20, 257, 1, 0, 0, 0, 22, 266, 1, 0, 0, 0, 24, 274, 1, 0, 0, 0, 26, 296, 1, 0, 0, 0, 28, 311, 1, 0, 0, 0, 30, 320, 1, 0, 0, 0, 32, 325, 1, 0, 0, 0, 34, 329, 1, 0, 0, 0, 36, 331, 1, 0, 0, 0, 38, 340, 1, 0, 0, 0, 40, 344, 1, 0, 0, 0, 42, 358, 1, 0, 0, 0, 44, 362, 1, 0, 0, 0, 46, 377, 1, 0, 0, 0, 48, 380, 1, 0, 0, 0, 50, 429, 1, 0, 0, 0, 52, 432, 1, 0, 0, 0, 54, 438, 1, 0, 0, 0, 56, 442, 1, 0, 0, 0, 58, 448, 1, 0, 0, 0, 60, 466, 1, 0, 0, 0, 62, 469, 1, 0, 0, 0, 64, 472, 1, 0, 0, 0, 66, 482, 1, 0, 0, 0, 68, 485, 1, 0, 0, 0, 70, 489, 1, 0, 0, 0, 72, 522, 1, 0, 0, 0, 74, 524, 1, 0, 0, 0, 76, 527, 1, 0, 0, 0, 78, 542, 1, 0, 0, 0, 80, 604, 1, 0, 0, 0, 82, 609, 1, 0, 0, 0, 84, 620, 1, 0, 0, 0, 86, 622, 1, 0, 0, 0, 88, 628, 1, 0, 0, 0, 90, 636, 1, 0, 0, 0, 92, 654, 1, 0, 0, 0, 94, 656, 1, 0, 0, 0, 96, 664, 1, 0, 0, 0, 98, 669, 1, 0, 0, 0, 100, 677, 1, 0, 0, 0, 102, 681, 1, 0, 0, 0, 104, 685, 1, 0, 0, 0, 106, 694, 1, 0, 0, 0, 108, 708, 1, 0, 0, 0, 110, 710, 1, 0, 0, 0, 112, 769, 1, 0, 0, 0, 114, 771, 1, 0, 0, 0, 116, 933, 1, 0, 0, 0, 118, 1075, 1, 0, 0, 0, 120, 1114, 1, 0, 0, 0, 122, 1127, 1, 0, 0, 0, 124, 1129, 1, 0, 0, 0, 126, 1150, 1, 0, 0, 0, 128, 1159, 1, 0, 0, 0, 130, 1161, 1, 0, 0, 0, 132, 1178, 1, 0, 0, 0, 134, 1191, 1, 0, 0, 0, 136, 1201, 1, 0, 0, 0, 138, 1205, 1, 0, 0, 0, 140, 1216, 1, 0, 0, 0, 142, 1226, 1, 0, 0, 0, 144, 1229, 1, 0, 0, 0, 146, 1242, 1, 0, 0, 0, 148, 1244, 1, 0, 0, 0, 150, 1246, 1, 0, 0, 0, 152, 1248, 1, 0, 0, 0, 154, 1252, 1, 0, 0, 0, 156, 1257, 1, 0, 0, 0, 158, 1259, 1, 0, 0, 0, 160, 1263, 1, 0, 0, 0, 162, 1267, 1, 0, 0, 0, 164, 1269, 1, 0, 0, 0, 166, 1283, 1, 0, 0, 0, 168, 1285, 1, 0, 0, 0, 170, 1299, 1, 0, 0, 0, 172, 174, 3, 2, 1, 0, 173, 172, 1, 0, 0, 0, 174, 177, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 175, 176, 1, 0, 0, 0, 176, 178, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 178, 179, 5, 0, 0, 1, 179, 1, 1, 0, 0, 0, 180, 183, 3, 6, 3, 0, 181, 183, 3, 10, 5, 0, 182, 180, 1, 0, 0, 0, 182, 181, 1, 0, 0, 0, 183, 3, 1, 0, 0, 0, 184, 185, 3, 116, 58, 0, 185, 5, 1, 0, 0, 0, 186, 187, 5, 53, 0, 0, 187, 191, 3, 156, 78, 0, 188, 189, 5, 116, 0, 0, 189, 190, 5, 123, 0, 0, 190, 192, 3, 4, 2, 0, 191, 188, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 7, 1, 0, 0, 0, 193, 198, 3, 156, 78, 0, 194, 195, 5, 117, 0, 0, 195, 197, 3, 156, 78, 0, 196, 194, 1, 0, 0, 0, 197, 200, 1, 0, 0, 0, 198, 196, 1, 0, 0, 0, 198, 199, 1, 0, 0, 0, 199, 202, 1, 0, 0, 0, 200, 198, 1, 0, 0, 0, 201, 203, 5, 117, 0, 0, 202, 201, 1, 0, 0, 0, 202, 203, 1, 0, 0, 0, 203, 9, 1, 0, 0, 0, 204, 217, 3, 12, 6, 0, 205, 217, 3, 14, 7, 0, 206, 217, 3, 18, 9, 0, 207, 217, 3, 20, 10, 0, 208, 217, 3, 22, 11, 0, 209, 217, 3, 26, 13, 0, 210, 217, 3, 24, 12, 0, 211, 217, 3, 28, 14, 0, 212, 217, 3, 30, 15, 0, 213, 217, 3, 36, 18, 0, 214, 217, 3, 32, 16, 0, 215, 217, 3, 34, 17, 0, 216, 204, 1, 0, 0, 0, 216, 205, 1, 0, 0, 0, 216, 206, 1, 0, 0, 0, 216, 207, 1, 0, 0, 0, 216, 208, 1, 0, 0, 0, 216, 209, 1, 0, 0, 0, 216, 210, 1, 0, 0, 0, 216, 211, 1, 0, 0, 0, 216, 212, 1, 0, 0, 0, 216, 213, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 216, 215, 1, 0, 0, 0, 217, 11, 1, 0, 0, 0, 218, 220, 5, 73, 0, 0, 219, 221, 3, 4, 2, 0, 220, 219, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 223, 1, 0, 0, 0, 222, 224, 5, 151, 0, 0, 223, 222, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 13, 1, 0, 0, 0, 225, 227, 5, 85, 0, 0, 226, 228, 3, 4, 2, 0, 227, 226, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 231, 5, 151, 0, 0, 230, 229, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 15, 1, 0, 0, 0, 232, 241, 5, 14, 0, 0, 233, 234, 5, 131, 0, 0, 234, 237, 3, 156, 78, 0, 235, 236, 5, 116, 0, 0, 236, 238, 3, 156, 78, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 5, 150, 0, 0, 240, 242, 1, 0, 0, 0, 241, 233, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 244, 3, 36, 18, 0, 244, 17, 1, 0, 0, 0, 245, 246, 5, 94, 0, 0, 246, 250, 3, 36, 18, 0, 247, 249, 3, 16, 8, 0, 248, 247, 1, 0, 0, 0, 249, 252, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 250, 251, 1, 0, 0, 0, 251, 255, 1, 0, 0, 0, 252, 250, 1, 0, 0, 0, 253, 254, 5, 29, 0, 0, 254, 256, 3, 36, 18, 0, 255, 253, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 19, 1, 0, 0, 0, 257, 258, 5, 41, 0, 0, 258, 259, 5, 131, 0, 0, 259, 260, 3, 4, 2, 0, 260, 261, 5, 150, 0, 0, 261, 264, 3, 10, 5, 0, 262, 263, 5, 25, 0, 0, 263, 265, 3, 10, 5, 0, 264, 262, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 21, 1, 0, 0, 0, 266, 267, 5, 101, 0, 0, 267, 268, 5, 131, 0, 0, 268, 269, 3, 4, 2, 0, 269, 270, 5, 150, 0, 0, 270, 272, 3, 10, 5, 0, 271, 273, 5, 151, 0, 0, 272, 271, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 23, 1, 0, 0, 0, 274, 275, 5, 33, 0, 0, 275, 279, 5, 131, 0, 0, 276, 280, 3, 6, 3, 0, 277, 280, 3, 30, 15, 0, 278, 280, 3, 4, 2, 0, 279, 276, 1, 0, 0, 0, 279, 277, 1, 0, 0, 0, 279, 278, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 281, 1, 0, 0, 0, 281, 283, 5, 151, 0, 0, 282, 284, 3, 4, 2, 0, 283, 282, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 289, 5, 151, 0, 0, 286, 290, 3, 6, 3, 0, 287, 290, 3, 30, 15, 0, 288, 290, 3, 4, 2, 0, 289, 286, 1, 0, 0, 0, 289, 287, 1, 0, 0, 0, 289, 288, 1, 0, 0, 0, 289, 290, 1, 0, 0, 0, 290, 291, 1, 0, 0, 0, 291, 292, 5, 150, 0, 0, 292, 294, 3, 10, 5, 0, 293, 295, 5, 151, 0, 0, 294, 293, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 25, 1, 0, 0, 0, 296, 297, 5, 33, 0, 0, 297, 298, 5, 131, 0, 0, 298, 299, 5, 53, 0, 0, 299, 302, 3, 156, 78, 0, 300, 301, 5, 117, 0, 0, 301, 303, 3, 156, 78, 0, 302, 300, 1, 0, 0, 0, 302, 303, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 305, 5, 43, 0, 0, 305, 306, 3, 4, 2, 0, 306, 307, 5, 150, 0, 0, 307, 309, 3, 10, 5, 0, 308, 310, 5, 151, 0, 0, 309, 308, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 27, 1, 0, 0, 0, 311, 312, 7, 0, 0, 0, 312, 313, 3, 156, 78, 0, 313, 315, 5, 131, 0, 0, 314, 316, 3, 8, 4, 0, 315, 314, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 5, 150, 0, 0, 318, 319, 3, 36, 18, 0, 319, 29, 1, 0, 0, 0, 320, 321, 3, 4, 2, 0, 321, 322, 5, 116, 0, 0, 322, 323, 5, 123, 0, 0, 323, 324, 3, 4, 2, 0, 324, 31, 1, 0, 0, 0, 325, 327, 3, 4, 2, 0, 326, 328, 5, 151, 0, 0, 327, 326, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 33, 1, 0, 0, 0, 329, 330, 5, 151, 0, 0, 330, 35, 1, 0, 0, 0, 331, 335, 5, 129, 0, 0, 332, 334, 3, 2, 1, 0, 333, 332, 1, 0, 0, 0, 334, 337, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 338, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 338, 339, 5, 148, 0, 0, 339, 37, 1, 0, 0, 0, 340, 341, 3, 4, 2, 0, 341, 342, 5, 116, 0, 0, 342, 343, 3, 4, 2, 0, 343, 39, 1, 0, 0, 0, 344, 349, 3, 38, 19, 0, 345, 346, 5, 117, 0, 0, 346, 348, 3, 38, 19, 0, 347, 345, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 353, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 354, 5, 117, 0, 0, 353, 352, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 41, 1, 0, 0, 0, 355, 359, 3, 44, 22, 0, 356, 359, 3, 48, 24, 0, 357, 359, 3, 120, 60, 0, 358, 355, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 358, 357, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 361, 5, 0, 0, 1, 361, 43, 1, 0, 0, 0, 362, 368, 3, 46, 23, 0, 363, 364, 5, 96, 0, 0, 364, 365, 5, 1, 0, 0, 365, 367, 3, 46, 23, 0, 366, 363, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 45, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 378, 3, 48, 24, 0, 372, 373, 5, 131, 0, 0, 373, 374, 3, 44, 22, 0, 374, 375, 5, 150, 0, 0, 375, 378, 1, 0, 0, 0, 376, 378, 3, 160, 80, 0, 377, 371, 1, 0, 0, 0, 377, 372, 1, 0, 0, 0, 377, 376, 1, 0, 0, 0, 378, 47, 1, 0, 0, 0, 379, 381, 3, 50, 25, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 384, 5, 80, 0, 0, 383, 385, 5, 24, 0, 0, 384, 383, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 387, 1, 0, 0, 0, 386, 388, 3, 52, 26, 0, 387, 386, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 391, 3, 114, 57, 0, 390, 392, 3, 54, 27, 0, 391, 390, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 1, 0, 0, 0, 393, 395, 3, 56, 28, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 397, 1, 0, 0, 0, 396, 398, 3, 60, 30, 0, 397, 396, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 400, 1, 0, 0, 0, 399, 401, 3, 62, 31, 0, 400, 399, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 403, 1, 0, 0, 0, 402, 404, 3, 64, 32, 0, 403, 402, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 406, 5, 103, 0, 0, 406, 408, 7, 1, 0, 0, 407, 405, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 410, 5, 103, 0, 0, 410, 412, 5, 90, 0, 0, 411, 409, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 1, 0, 0, 0, 413, 415, 3, 66, 33, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 417, 1, 0, 0, 0, 416, 418, 3, 58, 29, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 420, 1, 0, 0, 0, 419, 421, 3, 68, 34, 0, 420, 419, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 424, 1, 0, 0, 0, 422, 425, 3, 72, 36, 0, 423, 425, 3, 74, 37, 0, 424, 422, 1, 0, 0, 0, 424, 423, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 427, 1, 0, 0, 0, 426, 428, 3, 76, 38, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 49, 1, 0, 0, 0, 429, 430, 5, 103, 0, 0, 430, 431, 3, 124, 62, 0, 431, 51, 1, 0, 0, 0, 432, 433, 5, 89, 0, 0, 433, 436, 5, 109, 0, 0, 434, 435, 5, 103, 0, 0, 435, 437, 5, 86, 0, 0, 436, 434, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 53, 1, 0, 0, 0, 438, 439, 5, 34, 0, 0, 439, 440, 3, 78, 39, 0, 440, 55, 1, 0, 0, 0, 441, 443, 7, 2, 0, 0, 442, 441, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 5, 5, 0, 0, 445, 446, 5, 48, 0, 0, 446, 447, 3, 114, 57, 0, 447, 57, 1, 0, 0, 0, 448, 449, 5, 102, 0, 0, 449, 450, 3, 156, 78, 0, 450, 451, 5, 6, 0, 0, 451, 452, 5, 131, 0, 0, 452, 453, 3, 98, 49, 0, 453, 463, 5, 150, 0, 0, 454, 455, 5, 117, 0, 0, 455, 456, 3, 156, 78, 0, 456, 457, 5, 6, 0, 0, 457, 458, 5, 131, 0, 0, 458, 459, 3, 98, 49, 0, 459, 460, 5, 150, 0, 0, 460, 462, 1, 0, 0, 0, 461, 454, 1, 0, 0, 0, 462, 465, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 59, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 466, 467, 5, 70, 0, 0, 467, 468, 3, 116, 58, 0, 468, 61, 1, 0, 0, 0, 469, 470, 5, 100, 0, 0, 470, 471, 3, 116, 58, 0, 471, 63, 1, 0, 0, 0, 472, 473, 5, 37, 0, 0, 473, 480, 5, 11, 0, 0, 474, 475, 7, 1, 0, 0, 475, 476, 5, 131, 0, 0, 476, 477, 3, 114, 57, 0, 477, 478, 5, 150, 0, 0, 478, 481, 1, 0, 0, 0, 479, 481, 3, 114, 57, 0, 480, 474, 1, 0, 0, 0, 480, 479, 1, 0, 0, 0, 481, 65, 1, 0, 0, 0, 482, 483, 5, 38, 0, 0, 483, 484, 3, 116, 58, 0, 484, 67, 1, 0, 0, 0, 485, 486, 5, 65, 0, 0, 486, 487, 5, 11, 0, 0, 487, 488, 3, 88, 44, 0, 488, 69, 1, 0, 0, 0, 489, 490, 5, 65, 0, 0, 490, 491, 5, 11, 0, 0, 491, 492, 3, 114, 57, 0, 492, 71, 1, 0, 0, 0, 493, 494, 5, 55, 0, 0, 494, 497, 3, 116, 58, 0, 495, 496, 5, 117, 0, 0, 496, 498, 3, 116, 58, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 503, 1, 0, 0, 0, 499, 500, 5, 103, 0, 0, 500, 504, 5, 86, 0, 0, 501, 502, 5, 11, 0, 0, 502, 504, 3, 114, 57, 0, 503, 499, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 523, 1, 0, 0, 0, 505, 506, 5, 55, 0, 0, 506, 509, 3, 116, 58, 0, 507, 508, 5, 103, 0, 0, 508, 510, 5, 86, 0, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 5, 62, 0, 0, 512, 513, 3, 116, 58, 0, 513, 523, 1, 0, 0, 0, 514, 515, 5, 55, 0, 0, 515, 516, 3, 116, 58, 0, 516, 517, 5, 62, 0, 0, 517, 520, 3, 116, 58, 0, 518, 519, 5, 11, 0, 0, 519, 521, 3, 114, 57, 0, 520, 518, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 523, 1, 0, 0, 0, 522, 493, 1, 0, 0, 0, 522, 505, 1, 0, 0, 0, 522, 514, 1, 0, 0, 0, 523, 73, 1, 0, 0, 0, 524, 525, 5, 62, 0, 0, 525, 526, 3, 116, 58, 0, 526, 75, 1, 0, 0, 0, 527, 528, 5, 82, 0, 0, 528, 529, 3, 94, 47, 0, 529, 77, 1, 0, 0, 0, 530, 531, 6, 39, -1, 0, 531, 533, 3, 132, 66, 0, 532, 534, 5, 28, 0, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 536, 1, 0, 0, 0, 535, 537, 3, 86, 43, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 543, 1, 0, 0, 0, 538, 539, 5, 131, 0, 0, 539, 540, 3, 78, 39, 0, 540, 541, 5, 150, 0, 0, 541, 543, 1, 0, 0, 0, 542, 530, 1, 0, 0, 0, 542, 538, 1, 0, 0, 0, 543, 558, 1, 0, 0, 0, 544, 545, 10, 3, 0, 0, 545, 546, 3, 82, 41, 0, 546, 547, 3, 78, 39, 4, 547, 557, 1, 0, 0, 0, 548, 550, 10, 4, 0, 0, 549, 551, 3, 80, 40, 0, 550, 549, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 5, 48, 0, 0, 553, 554, 3, 78, 39, 0, 554, 555, 3, 84, 42, 0, 555, 557, 1, 0, 0, 0, 556, 544, 1, 0, 0, 0, 556, 548, 1, 0, 0, 0, 557, 560, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 79, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 561, 563, 7, 3, 0, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 571, 5, 45, 0, 0, 565, 567, 5, 45, 0, 0, 566, 568, 7, 3, 0, 0, 567, 566, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 571, 1, 0, 0, 0, 569, 571, 7, 3, 0, 0, 570, 562, 1, 0, 0, 0, 570, 565, 1, 0, 0, 0, 570, 569, 1, 0, 0, 0, 571, 605, 1, 0, 0, 0, 572, 574, 7, 4, 0, 0, 573, 572, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 577, 7, 5, 0, 0, 576, 578, 5, 66, 0, 0, 577, 576, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 587, 1, 0, 0, 0, 579, 581, 7, 5, 0, 0, 580, 582, 5, 66, 0, 0, 581, 580, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 584, 1, 0, 0, 0, 583, 585, 7, 4, 0, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 587, 1, 0, 0, 0, 586, 573, 1, 0, 0, 0, 586, 579, 1, 0, 0, 0, 587, 605, 1, 0, 0, 0, 588, 590, 7, 6, 0, 0, 589, 588, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 593, 5, 35, 0, 0, 592, 594, 5, 66, 0, 0, 593, 592, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 603, 1, 0, 0, 0, 595, 597, 5, 35, 0, 0, 596, 598, 5, 66, 0, 0, 597, 596, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 600, 1, 0, 0, 0, 599, 601, 7, 6, 0, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 603, 1, 0, 0, 0, 602, 589, 1, 0, 0, 0, 602, 595, 1, 0, 0, 0, 603, 605, 1, 0, 0, 0, 604, 570, 1, 0, 0, 0, 604, 586, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 605, 81, 1, 0, 0, 0, 606, 607, 5, 17, 0, 0, 607, 610, 5, 48, 0, 0, 608, 610, 5, 117, 0, 0, 609, 606, 1, 0, 0, 0, 609, 608, 1, 0, 0, 0, 610, 83, 1, 0, 0, 0, 611, 612, 5, 63, 0, 0, 612, 621, 3, 114, 57, 0, 613, 614, 5, 97, 0, 0, 614, 615, 5, 131, 0, 0, 615, 616, 3, 114, 57, 0, 616, 617, 5, 150, 0, 0, 617, 621, 1, 0, 0, 0, 618, 619, 5, 97, 0, 0, 619, 621, 3, 114, 57, 0, 620, 611, 1, 0, 0, 0, 620, 613, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 621, 85, 1, 0, 0, 0, 622, 623, 5, 78, 0, 0, 623, 626, 3, 92, 46, 0, 624, 625, 5, 62, 0, 0, 625, 627, 3, 92, 46, 0, 626, 624, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 87, 1, 0, 0, 0, 628, 633, 3, 90, 45, 0, 629, 630, 5, 117, 0, 0, 630, 632, 3, 90, 45, 0, 631, 629, 1, 0, 0, 0, 632, 635, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 89, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 638, 3, 116, 58, 0, 637, 639, 7, 7, 0, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 642, 1, 0, 0, 0, 640, 641, 5, 61, 0, 0, 641, 643, 7, 8, 0, 0, 642, 640, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 645, 5, 16, 0, 0, 645, 647, 5, 111, 0, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 91, 1, 0, 0, 0, 648, 655, 3, 160, 80, 0, 649, 652, 3, 144, 72, 0, 650, 651, 5, 152, 0, 0, 651, 653, 3, 144, 72, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 655, 1, 0, 0, 0, 654, 648, 1, 0, 0, 0, 654, 649, 1, 0, 0, 0, 655, 93, 1, 0, 0, 0, 656, 661, 3, 96, 48, 0, 657, 658, 5, 117, 0, 0, 658, 660, 3, 96, 48, 0, 659, 657, 1, 0, 0, 0, 660, 663, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 95, 1, 0, 0, 0, 663, 661, 1, 0, 0, 0, 664, 665, 3, 156, 78, 0, 665, 666, 5, 123, 0, 0, 666, 667, 3, 146, 73, 0, 667, 97, 1, 0, 0, 0, 668, 670, 3, 100, 50, 0, 669, 668, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 1, 0, 0, 0, 671, 673, 3, 102, 51, 0, 672, 671, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 675, 1, 0, 0, 0, 674, 676, 3, 104, 52, 0, 675, 674, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 99, 1, 0, 0, 0, 677, 678, 5, 68, 0, 0, 678, 679, 5, 11, 0, 0, 679, 680, 3, 114, 57, 0, 680, 101, 1, 0, 0, 0, 681, 682, 5, 65, 0, 0, 682, 683, 5, 11, 0, 0, 683, 684, 3, 88, 44, 0, 684, 103, 1, 0, 0, 0, 685, 686, 7, 9, 0, 0, 686, 687, 3, 106, 53, 0, 687, 105, 1, 0, 0, 0, 688, 695, 3, 108, 54, 0, 689, 690, 5, 9, 0, 0, 690, 691, 3, 108, 54, 0, 691, 692, 5, 2, 0, 0, 692, 693, 3, 108, 54, 0, 693, 695, 1, 0, 0, 0, 694, 688, 1, 0, 0, 0, 694, 689, 1, 0, 0, 0, 695, 107, 1, 0, 0, 0, 696, 697, 5, 19, 0, 0, 697, 709, 5, 76, 0, 0, 698, 699, 5, 95, 0, 0, 699, 709, 5, 69, 0, 0, 700, 701, 5, 95, 0, 0, 701, 709, 5, 32, 0, 0, 702, 703, 3, 144, 72, 0, 703, 704, 5, 69, 0, 0, 704, 709, 1, 0, 0, 0, 705, 706, 3, 144, 72, 0, 706, 707, 5, 32, 0, 0, 707, 709, 1, 0, 0, 0, 708, 696, 1, 0, 0, 0, 708, 698, 1, 0, 0, 0, 708, 700, 1, 0, 0, 0, 708, 702, 1, 0, 0, 0, 708, 705, 1, 0, 0, 0, 709, 109, 1, 0, 0, 0, 710, 711, 3, 116, 58, 0, 711, 712, 5, 0, 0, 1, 712, 111, 1, 0, 0, 0, 713, 770, 3, 156, 78, 0, 714, 715, 3, 156, 78, 0, 715, 716, 5, 131, 0, 0, 716, 717, 3, 156, 78, 0, 717, 724, 3, 112, 56, 0, 718, 719, 5, 117, 0, 0, 719, 720, 3, 156, 78, 0, 720, 721, 3, 112, 56, 0, 721, 723, 1, 0, 0, 0, 722, 718, 1, 0, 0, 0, 723, 726, 1, 0, 0, 0, 724, 722, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 728, 1, 0, 0, 0, 726, 724, 1, 0, 0, 0, 727, 729, 5, 117, 0, 0, 728, 727, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 5, 150, 0, 0, 731, 770, 1, 0, 0, 0, 732, 733, 3, 156, 78, 0, 733, 734, 5, 131, 0, 0, 734, 739, 3, 158, 79, 0, 735, 736, 5, 117, 0, 0, 736, 738, 3, 158, 79, 0, 737, 735, 1, 0, 0, 0, 738, 741, 1, 0, 0, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 744, 5, 117, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 150, 0, 0, 746, 770, 1, 0, 0, 0, 747, 748, 3, 156, 78, 0, 748, 749, 5, 131, 0, 0, 749, 754, 3, 112, 56, 0, 750, 751, 5, 117, 0, 0, 751, 753, 3, 112, 56, 0, 752, 750, 1, 0, 0, 0, 753, 756, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 758, 1, 0, 0, 0, 756, 754, 1, 0, 0, 0, 757, 759, 5, 117, 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 761, 5, 150, 0, 0, 761, 770, 1, 0, 0, 0, 762, 763, 3, 156, 78, 0, 763, 765, 5, 131, 0, 0, 764, 766, 3, 114, 57, 0, 765, 764, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 5, 150, 0, 0, 768, 770, 1, 0, 0, 0, 769, 713, 1, 0, 0, 0, 769, 714, 1, 0, 0, 0, 769, 732, 1, 0, 0, 0, 769, 747, 1, 0, 0, 0, 769, 762, 1, 0, 0, 0, 770, 113, 1, 0, 0, 0, 771, 776, 3, 116, 58, 0, 772, 773, 5, 117, 0, 0, 773, 775, 3, 116, 58, 0, 774, 772, 1, 0, 0, 0, 775, 778, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 780, 1, 0, 0, 0, 778, 776, 1, 0, 0, 0, 779, 781, 5, 117, 0, 0, 780, 779, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 115, 1, 0, 0, 0, 782, 783, 6, 58, -1, 0, 783, 785, 5, 12, 0, 0, 784, 786, 3, 116, 58, 0, 785, 784, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 792, 1, 0, 0, 0, 787, 788, 5, 99, 0, 0, 788, 789, 3, 116, 58, 0, 789, 790, 5, 84, 0, 0, 790, 791, 3, 116, 58, 0, 791, 793, 1, 0, 0, 0, 792, 787, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 798, 1, 0, 0, 0, 796, 797, 5, 25, 0, 0, 797, 799, 3, 116, 58, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 5, 26, 0, 0, 801, 934, 1, 0, 0, 0, 802, 803, 5, 13, 0, 0, 803, 804, 5, 131, 0, 0, 804, 805, 3, 116, 58, 0, 805, 806, 5, 6, 0, 0, 806, 807, 3, 112, 56, 0, 807, 808, 5, 150, 0, 0, 808, 934, 1, 0, 0, 0, 809, 810, 5, 20, 0, 0, 810, 934, 5, 111, 0, 0, 811, 812, 5, 46, 0, 0, 812, 813, 3, 116, 58, 0, 813, 814, 3, 148, 74, 0, 814, 934, 1, 0, 0, 0, 815, 816, 5, 83, 0, 0, 816, 817, 5, 131, 0, 0, 817, 818, 3, 116, 58, 0, 818, 819, 5, 34, 0, 0, 819, 822, 3, 116, 58, 0, 820, 821, 5, 33, 0, 0, 821, 823, 3, 116, 58, 0, 822, 820, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 825, 5, 150, 0, 0, 825, 934, 1, 0, 0, 0, 826, 827, 5, 87, 0, 0, 827, 934, 5, 111, 0, 0, 828, 829, 5, 92, 0, 0, 829, 830, 5, 131, 0, 0, 830, 831, 7, 10, 0, 0, 831, 832, 3, 162, 81, 0, 832, 833, 5, 34, 0, 0, 833, 834, 3, 116, 58, 0, 834, 835, 5, 150, 0, 0, 835, 934, 1, 0, 0, 0, 836, 837, 3, 156, 78, 0, 837, 839, 5, 131, 0, 0, 838, 840, 3, 114, 57, 0, 839, 838, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 5, 150, 0, 0, 842, 851, 1, 0, 0, 0, 843, 845, 5, 131, 0, 0, 844, 846, 5, 24, 0, 0, 845, 844, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 848, 1, 0, 0, 0, 847, 849, 3, 114, 57, 0, 848, 847, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 852, 5, 150, 0, 0, 851, 843, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 5, 67, 0, 0, 854, 855, 5, 131, 0, 0, 855, 856, 3, 98, 49, 0, 856, 857, 5, 150, 0, 0, 857, 934, 1, 0, 0, 0, 858, 859, 3, 156, 78, 0, 859, 861, 5, 131, 0, 0, 860, 862, 3, 114, 57, 0, 861, 860, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 5, 150, 0, 0, 864, 873, 1, 0, 0, 0, 865, 867, 5, 131, 0, 0, 866, 868, 5, 24, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 871, 3, 114, 57, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 5, 150, 0, 0, 873, 865, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 67, 0, 0, 876, 877, 3, 156, 78, 0, 877, 934, 1, 0, 0, 0, 878, 884, 3, 156, 78, 0, 879, 881, 5, 131, 0, 0, 880, 882, 3, 114, 57, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 885, 5, 150, 0, 0, 884, 879, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 888, 5, 131, 0, 0, 887, 889, 5, 24, 0, 0, 888, 887, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 891, 1, 0, 0, 0, 890, 892, 3, 114, 57, 0, 891, 890, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 5, 150, 0, 0, 894, 934, 1, 0, 0, 0, 895, 934, 3, 120, 60, 0, 896, 934, 3, 164, 82, 0, 897, 934, 3, 146, 73, 0, 898, 899, 5, 119, 0, 0, 899, 934, 3, 116, 58, 21, 900, 901, 5, 59, 0, 0, 901, 934, 3, 116, 58, 15, 902, 903, 3, 136, 68, 0, 903, 904, 5, 121, 0, 0, 904, 906, 1, 0, 0, 0, 905, 902, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 934, 5, 113, 0, 0, 908, 909, 5, 131, 0, 0, 909, 910, 3, 44, 22, 0, 910, 911, 5, 150, 0, 0, 911, 934, 1, 0, 0, 0, 912, 913, 5, 131, 0, 0, 913, 914, 3, 116, 58, 0, 914, 915, 5, 150, 0, 0, 915, 934, 1, 0, 0, 0, 916, 917, 5, 131, 0, 0, 917, 918, 3, 114, 57, 0, 918, 919, 5, 150, 0, 0, 919, 934, 1, 0, 0, 0, 920, 922, 5, 130, 0, 0, 921, 923, 3, 114, 57, 0, 922, 921, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 934, 5, 149, 0, 0, 925, 927, 5, 129, 0, 0, 926, 928, 3, 40, 20, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 934, 5, 148, 0, 0, 930, 934, 3, 118, 59, 0, 931, 934, 3, 128, 64, 0, 932, 934, 3, 36, 18, 0, 933, 782, 1, 0, 0, 0, 933, 802, 1, 0, 0, 0, 933, 809, 1, 0, 0, 0, 933, 811, 1, 0, 0, 0, 933, 815, 1, 0, 0, 0, 933, 826, 1, 0, 0, 0, 933, 828, 1, 0, 0, 0, 933, 836, 1, 0, 0, 0, 933, 858, 1, 0, 0, 0, 933, 878, 1, 0, 0, 0, 933, 895, 1, 0, 0, 0, 933, 896, 1, 0, 0, 0, 933, 897, 1, 0, 0, 0, 933, 898, 1, 0, 0, 0, 933, 900, 1, 0, 0, 0, 933, 905, 1, 0, 0, 0, 933, 908, 1, 0, 0, 0, 933, 912, 1, 0, 0, 0, 933, 916, 1, 0, 0, 0, 933, 920, 1, 0, 0, 0, 933, 925, 1, 0, 0, 0, 933, 930, 1, 0, 0, 0, 933, 931, 1, 0, 0, 0, 933, 932, 1, 0, 0, 0, 934, 1045, 1, 0, 0, 0, 935, 939, 10, 20, 0, 0, 936, 940, 5, 113, 0, 0, 937, 940, 5, 152, 0, 0, 938, 940, 5, 139, 0, 0, 939, 936, 1, 0, 0, 0, 939, 937, 1, 0, 0, 0, 939, 938, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 1044, 3, 116, 58, 21, 942, 946, 10, 19, 0, 0, 943, 947, 5, 140, 0, 0, 944, 947, 5, 119, 0, 0, 945, 947, 5, 118, 0, 0, 946, 943, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 946, 945, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 1044, 3, 116, 58, 20, 949, 974, 10, 18, 0, 0, 950, 975, 5, 122, 0, 0, 951, 975, 5, 123, 0, 0, 952, 975, 5, 134, 0, 0, 953, 975, 5, 132, 0, 0, 954, 975, 5, 133, 0, 0, 955, 975, 5, 124, 0, 0, 956, 975, 5, 125, 0, 0, 957, 959, 5, 59, 0, 0, 958, 957, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 962, 5, 43, 0, 0, 961, 963, 5, 15, 0, 0, 962, 961, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 975, 1, 0, 0, 0, 964, 966, 5, 59, 0, 0, 965, 964, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 975, 7, 11, 0, 0, 968, 975, 5, 146, 0, 0, 969, 975, 5, 147, 0, 0, 970, 975, 5, 136, 0, 0, 971, 975, 5, 127, 0, 0, 972, 975, 5, 128, 0, 0, 973, 975, 5, 135, 0, 0, 974, 950, 1, 0, 0, 0, 974, 951, 1, 0, 0, 0, 974, 952, 1, 0, 0, 0, 974, 953, 1, 0, 0, 0, 974, 954, 1, 0, 0, 0, 974, 955, 1, 0, 0, 0, 974, 956, 1, 0, 0, 0, 974, 958, 1, 0, 0, 0, 974, 965, 1, 0, 0, 0, 974, 968, 1, 0, 0, 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, 976, 1, 0, 0, 0, 976, 1044, 3, 116, 58, 19, 977, 978, 10, 16, 0, 0, 978, 979, 5, 138, 0, 0, 979, 1044, 3, 116, 58, 17, 980, 981, 10, 14, 0, 0, 981, 982, 5, 2, 0, 0, 982, 1044, 3, 116, 58, 15, 983, 984, 10, 13, 0, 0, 984, 985, 5, 64, 0, 0, 985, 1044, 3, 116, 58, 14, 986, 988, 10, 12, 0, 0, 987, 989, 5, 59, 0, 0, 988, 987, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 5, 9, 0, 0, 991, 992, 3, 116, 58, 0, 992, 993, 5, 2, 0, 0, 993, 994, 3, 116, 58, 13, 994, 1044, 1, 0, 0, 0, 995, 996, 10, 11, 0, 0, 996, 997, 5, 141, 0, 0, 997, 998, 3, 116, 58, 0, 998, 999, 5, 116, 0, 0, 999, 1000, 3, 116, 58, 11, 1000, 1044, 1, 0, 0, 0, 1001, 1002, 10, 31, 0, 0, 1002, 1004, 5, 131, 0, 0, 1003, 1005, 3, 114, 57, 0, 1004, 1003, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1044, 5, 150, 0, 0, 1007, 1008, 10, 27, 0, 0, 1008, 1009, 5, 130, 0, 0, 1009, 1010, 3, 116, 58, 0, 1010, 1011, 5, 149, 0, 0, 1011, 1044, 1, 0, 0, 0, 1012, 1013, 10, 26, 0, 0, 1013, 1014, 5, 121, 0, 0, 1014, 1044, 5, 109, 0, 0, 1015, 1016, 10, 25, 0, 0, 1016, 1017, 5, 121, 0, 0, 1017, 1044, 3, 156, 78, 0, 1018, 1019, 10, 24, 0, 0, 1019, 1020, 5, 137, 0, 0, 1020, 1021, 5, 130, 0, 0, 1021, 1022, 3, 116, 58, 0, 1022, 1023, 5, 149, 0, 0, 1023, 1044, 1, 0, 0, 0, 1024, 1025, 10, 23, 0, 0, 1025, 1026, 5, 137, 0, 0, 1026, 1044, 5, 109, 0, 0, 1027, 1028, 10, 22, 0, 0, 1028, 1029, 5, 137, 0, 0, 1029, 1044, 3, 156, 78, 0, 1030, 1031, 10, 17, 0, 0, 1031, 1033, 5, 47, 0, 0, 1032, 1034, 5, 59, 0, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1044, 5, 60, 0, 0, 1036, 1041, 10, 10, 0, 0, 1037, 1038, 5, 6, 0, 0, 1038, 1042, 3, 156, 78, 0, 1039, 1040, 5, 6, 0, 0, 1040, 1042, 5, 111, 0, 0, 1041, 1037, 1, 0, 0, 0, 1041, 1039, 1, 0, 0, 0, 1042, 1044, 1, 0, 0, 0, 1043, 935, 1, 0, 0, 0, 1043, 942, 1, 0, 0, 0, 1043, 949, 1, 0, 0, 0, 1043, 977, 1, 0, 0, 0, 1043, 980, 1, 0, 0, 0, 1043, 983, 1, 0, 0, 0, 1043, 986, 1, 0, 0, 0, 1043, 995, 1, 0, 0, 0, 1043, 1001, 1, 0, 0, 0, 1043, 1007, 1, 0, 0, 0, 1043, 1012, 1, 0, 0, 0, 1043, 1015, 1, 0, 0, 0, 1043, 1018, 1, 0, 0, 0, 1043, 1024, 1, 0, 0, 0, 1043, 1027, 1, 0, 0, 0, 1043, 1030, 1, 0, 0, 0, 1043, 1036, 1, 0, 0, 0, 1044, 1047, 1, 0, 0, 0, 1045, 1043, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 117, 1, 0, 0, 0, 1047, 1045, 1, 0, 0, 0, 1048, 1049, 5, 131, 0, 0, 1049, 1054, 3, 156, 78, 0, 1050, 1051, 5, 117, 0, 0, 1051, 1053, 3, 156, 78, 0, 1052, 1050, 1, 0, 0, 0, 1053, 1056, 1, 0, 0, 0, 1054, 1052, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1058, 1, 0, 0, 0, 1056, 1054, 1, 0, 0, 0, 1057, 1059, 5, 117, 0, 0, 1058, 1057, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 5, 150, 0, 0, 1061, 1076, 1, 0, 0, 0, 1062, 1067, 3, 156, 78, 0, 1063, 1064, 5, 117, 0, 0, 1064, 1066, 3, 156, 78, 0, 1065, 1063, 1, 0, 0, 0, 1066, 1069, 1, 0, 0, 0, 1067, 1065, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1071, 1, 0, 0, 0, 1069, 1067, 1, 0, 0, 0, 1070, 1072, 5, 117, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1076, 1, 0, 0, 0, 1073, 1074, 5, 131, 0, 0, 1074, 1076, 5, 150, 0, 0, 1075, 1048, 1, 0, 0, 0, 1075, 1062, 1, 0, 0, 0, 1075, 1073, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1080, 5, 112, 0, 0, 1078, 1081, 3, 36, 18, 0, 1079, 1081, 3, 116, 58, 0, 1080, 1078, 1, 0, 0, 0, 1080, 1079, 1, 0, 0, 0, 1081, 119, 1, 0, 0, 0, 1082, 1083, 5, 133, 0, 0, 1083, 1087, 3, 156, 78, 0, 1084, 1086, 3, 122, 61, 0, 1085, 1084, 1, 0, 0, 0, 1086, 1089, 1, 0, 0, 0, 1087, 1085, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1090, 1, 0, 0, 0, 1089, 1087, 1, 0, 0, 0, 1090, 1091, 5, 152, 0, 0, 1091, 1092, 5, 125, 0, 0, 1092, 1115, 1, 0, 0, 0, 1093, 1094, 5, 133, 0, 0, 1094, 1098, 3, 156, 78, 0, 1095, 1097, 3, 122, 61, 0, 1096, 1095, 1, 0, 0, 0, 1097, 1100, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 1098, 1, 0, 0, 0, 1101, 1107, 5, 125, 0, 0, 1102, 1108, 3, 120, 60, 0, 1103, 1104, 5, 129, 0, 0, 1104, 1105, 3, 116, 58, 0, 1105, 1106, 5, 148, 0, 0, 1106, 1108, 1, 0, 0, 0, 1107, 1102, 1, 0, 0, 0, 1107, 1103, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1110, 5, 133, 0, 0, 1110, 1111, 5, 152, 0, 0, 1111, 1112, 3, 156, 78, 0, 1112, 1113, 5, 125, 0, 0, 1113, 1115, 1, 0, 0, 0, 1114, 1082, 1, 0, 0, 0, 1114, 1093, 1, 0, 0, 0, 1115, 121, 1, 0, 0, 0, 1116, 1117, 3, 156, 78, 0, 1117, 1118, 5, 123, 0, 0, 1118, 1119, 3, 162, 81, 0, 1119, 1128, 1, 0, 0, 0, 1120, 1121, 3, 156, 78, 0, 1121, 1122, 5, 123, 0, 0, 1122, 1123, 5, 129, 0, 0, 1123, 1124, 3, 116, 58, 0, 1124, 1125, 5, 148, 0, 0, 1125, 1128, 1, 0, 0, 0, 1126, 1128, 3, 156, 78, 0, 1127, 1116, 1, 0, 0, 0, 1127, 1120, 1, 0, 0, 0, 1127, 1126, 1, 0, 0, 0, 1128, 123, 1, 0, 0, 0, 1129, 1134, 3, 126, 63, 0, 1130, 1131, 5, 117, 0, 0, 1131, 1133, 3, 126, 63, 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, 1138, 1, 0, 0, 0, 1136, 1134, 1, 0, 0, 0, 1137, 1139, 5, 117, 0, 0, 1138, 1137, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 125, 1, 0, 0, 0, 1140, 1141, 3, 156, 78, 0, 1141, 1142, 5, 6, 0, 0, 1142, 1143, 5, 131, 0, 0, 1143, 1144, 3, 44, 22, 0, 1144, 1145, 5, 150, 0, 0, 1145, 1151, 1, 0, 0, 0, 1146, 1147, 3, 116, 58, 0, 1147, 1148, 5, 6, 0, 0, 1148, 1149, 3, 156, 78, 0, 1149, 1151, 1, 0, 0, 0, 1150, 1140, 1, 0, 0, 0, 1150, 1146, 1, 0, 0, 0, 1151, 127, 1, 0, 0, 0, 1152, 1160, 3, 160, 80, 0, 1153, 1154, 3, 136, 68, 0, 1154, 1155, 5, 121, 0, 0, 1155, 1157, 1, 0, 0, 0, 1156, 1153, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1160, 3, 130, 65, 0, 1159, 1152, 1, 0, 0, 0, 1159, 1156, 1, 0, 0, 0, 1160, 129, 1, 0, 0, 0, 1161, 1166, 3, 156, 78, 0, 1162, 1163, 5, 121, 0, 0, 1163, 1165, 3, 156, 78, 0, 1164, 1162, 1, 0, 0, 0, 1165, 1168, 1, 0, 0, 0, 1166, 1164, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 131, 1, 0, 0, 0, 1168, 1166, 1, 0, 0, 0, 1169, 1170, 6, 66, -1, 0, 1170, 1179, 3, 136, 68, 0, 1171, 1179, 3, 134, 67, 0, 1172, 1173, 5, 131, 0, 0, 1173, 1174, 3, 44, 22, 0, 1174, 1175, 5, 150, 0, 0, 1175, 1179, 1, 0, 0, 0, 1176, 1179, 3, 120, 60, 0, 1177, 1179, 3, 160, 80, 0, 1178, 1169, 1, 0, 0, 0, 1178, 1171, 1, 0, 0, 0, 1178, 1172, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1178, 1177, 1, 0, 0, 0, 1179, 1188, 1, 0, 0, 0, 1180, 1184, 10, 3, 0, 0, 1181, 1185, 3, 154, 77, 0, 1182, 1183, 5, 6, 0, 0, 1183, 1185, 3, 156, 78, 0, 1184, 1181, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1180, 1, 0, 0, 0, 1187, 1190, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 133, 1, 0, 0, 0, 1190, 1188, 1, 0, 0, 0, 1191, 1192, 3, 156, 78, 0, 1192, 1194, 5, 131, 0, 0, 1193, 1195, 3, 138, 69, 0, 1194, 1193, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 5, 150, 0, 0, 1197, 135, 1, 0, 0, 0, 1198, 1199, 3, 140, 70, 0, 1199, 1200, 5, 121, 0, 0, 1200, 1202, 1, 0, 0, 0, 1201, 1198, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 3, 156, 78, 0, 1204, 137, 1, 0, 0, 0, 1205, 1210, 3, 116, 58, 0, 1206, 1207, 5, 117, 0, 0, 1207, 1209, 3, 116, 58, 0, 1208, 1206, 1, 0, 0, 0, 1209, 1212, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1214, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1213, 1215, 5, 117, 0, 0, 1214, 1213, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 139, 1, 0, 0, 0, 1216, 1217, 3, 156, 78, 0, 1217, 141, 1, 0, 0, 0, 1218, 1227, 5, 107, 0, 0, 1219, 1220, 5, 121, 0, 0, 1220, 1227, 7, 12, 0, 0, 1221, 1222, 5, 109, 0, 0, 1222, 1224, 5, 121, 0, 0, 1223, 1225, 7, 12, 0, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1227, 1, 0, 0, 0, 1226, 1218, 1, 0, 0, 0, 1226, 1219, 1, 0, 0, 0, 1226, 1221, 1, 0, 0, 0, 1227, 143, 1, 0, 0, 0, 1228, 1230, 7, 13, 0, 0, 1229, 1228, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1237, 1, 0, 0, 0, 1231, 1238, 3, 142, 71, 0, 1232, 1238, 5, 108, 0, 0, 1233, 1238, 5, 109, 0, 0, 1234, 1238, 5, 110, 0, 0, 1235, 1238, 5, 44, 0, 0, 1236, 1238, 5, 58, 0, 0, 1237, 1231, 1, 0, 0, 0, 1237, 1232, 1, 0, 0, 0, 1237, 1233, 1, 0, 0, 0, 1237, 1234, 1, 0, 0, 0, 1237, 1235, 1, 0, 0, 0, 1237, 1236, 1, 0, 0, 0, 1238, 145, 1, 0, 0, 0, 1239, 1243, 3, 144, 72, 0, 1240, 1243, 5, 111, 0, 0, 1241, 1243, 5, 60, 0, 0, 1242, 1239, 1, 0, 0, 0, 1242, 1240, 1, 0, 0, 0, 1242, 1241, 1, 0, 0, 0, 1243, 147, 1, 0, 0, 0, 1244, 1245, 7, 14, 0, 0, 1245, 149, 1, 0, 0, 0, 1246, 1247, 7, 15, 0, 0, 1247, 151, 1, 0, 0, 0, 1248, 1249, 7, 16, 0, 0, 1249, 153, 1, 0, 0, 0, 1250, 1253, 5, 106, 0, 0, 1251, 1253, 3, 152, 76, 0, 1252, 1250, 1, 0, 0, 0, 1252, 1251, 1, 0, 0, 0, 1253, 155, 1, 0, 0, 0, 1254, 1258, 5, 106, 0, 0, 1255, 1258, 3, 148, 74, 0, 1256, 1258, 3, 150, 75, 0, 1257, 1254, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 157, 1, 0, 0, 0, 1259, 1260, 3, 162, 81, 0, 1260, 1261, 5, 123, 0, 0, 1261, 1262, 3, 144, 72, 0, 1262, 159, 1, 0, 0, 0, 1263, 1264, 3, 36, 18, 0, 1264, 161, 1, 0, 0, 0, 1265, 1268, 5, 111, 0, 0, 1266, 1268, 3, 164, 82, 0, 1267, 1265, 1, 0, 0, 0, 1267, 1266, 1, 0, 0, 0, 1268, 163, 1, 0, 0, 0, 1269, 1273, 5, 143, 0, 0, 1270, 1272, 3, 166, 83, 0, 1271, 1270, 1, 0, 0, 0, 1272, 1275, 1, 0, 0, 0, 1273, 1271, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1273, 1, 0, 0, 0, 1276, 1277, 5, 145, 0, 0, 1277, 165, 1, 0, 0, 0, 1278, 1279, 5, 158, 0, 0, 1279, 1280, 3, 116, 58, 0, 1280, 1281, 5, 148, 0, 0, 1281, 1284, 1, 0, 0, 0, 1282, 1284, 5, 157, 0, 0, 1283, 1278, 1, 0, 0, 0, 1283, 1282, 1, 0, 0, 0, 1284, 167, 1, 0, 0, 0, 1285, 1289, 5, 144, 0, 0, 1286, 1288, 3, 170, 85, 0, 1287, 1286, 1, 0, 0, 0, 1288, 1291, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1292, 1, 0, 0, 0, 1291, 1289, 1, 0, 0, 0, 1292, 1293, 5, 0, 0, 1, 1293, 169, 1, 0, 0, 0, 1294, 1295, 5, 160, 0, 0, 1295, 1296, 3, 116, 58, 0, 1296, 1297, 5, 148, 0, 0, 1297, 1300, 1, 0, 0, 0, 1298, 1300, 5, 159, 0, 0, 1299, 1294, 1, 0, 0, 0, 1299, 1298, 1, 0, 0, 0, 1300, 171, 1, 0, 0, 0, 167, 175, 182, 191, 198, 202, 216, 220, 223, 227, 230, 237, 241, 250, 255, 264, 272, 279, 283, 289, 294, 302, 309, 315, 327, 335, 349, 353, 358, 368, 377, 380, 384, 387, 391, 394, 397, 400, 403, 407, 411, 414, 417, 420, 424, 427, 436, 442, 463, 480, 497, 503, 509, 520, 522, 533, 536, 542, 550, 556, 558, 562, 567, 570, 573, 577, 581, 584, 586, 589, 593, 597, 600, 602, 604, 609, 620, 626, 633, 638, 642, 646, 652, 654, 661, 669, 672, 675, 694, 708, 724, 728, 739, 743, 754, 758, 765, 769, 776, 780, 785, 794, 798, 822, 839, 845, 848, 851, 861, 867, 870, 873, 881, 884, 888, 891, 905, 922, 927, 933, 939, 946, 958, 962, 965, 974, 988, 1004, 1033, 1041, 1043, 1045, 1054, 1058, 1067, 1071, 1075, 1080, 1087, 1098, 1107, 1114, 1127, 1134, 1138, 1150, 1156, 1159, 1166, 1178, 1184, 1188, 1194, 1201, 1210, 1214, 1224, 1226, 1229, 1237, 1242, 1252, 1257, 1267, 1273, 1283, 1289, 1299] \ No newline at end of file +[4, 1, 160, 1300, 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, 1, 0, 5, 0, 172, 8, 0, 10, 0, 12, 0, 175, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 181, 8, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 190, 8, 3, 1, 4, 1, 4, 1, 4, 5, 4, 195, 8, 4, 10, 4, 12, 4, 198, 9, 4, 1, 4, 3, 4, 201, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 215, 8, 5, 1, 6, 1, 6, 3, 6, 219, 8, 6, 1, 6, 3, 6, 222, 8, 6, 1, 7, 1, 7, 3, 7, 226, 8, 7, 1, 7, 3, 7, 229, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 236, 8, 8, 1, 8, 1, 8, 3, 8, 240, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 247, 8, 9, 10, 9, 12, 9, 250, 9, 9, 1, 9, 1, 9, 3, 9, 254, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 263, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 271, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 278, 8, 12, 1, 12, 1, 12, 3, 12, 282, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 288, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 293, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 301, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 308, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 314, 8, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 326, 8, 16, 1, 17, 1, 17, 1, 18, 1, 18, 5, 18, 332, 8, 18, 10, 18, 12, 18, 335, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 5, 20, 346, 8, 20, 10, 20, 12, 20, 349, 9, 20, 1, 20, 3, 20, 352, 8, 20, 1, 21, 1, 21, 1, 21, 3, 21, 357, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 365, 8, 22, 10, 22, 12, 22, 368, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 376, 8, 23, 1, 24, 3, 24, 379, 8, 24, 1, 24, 1, 24, 3, 24, 383, 8, 24, 1, 24, 3, 24, 386, 8, 24, 1, 24, 1, 24, 3, 24, 390, 8, 24, 1, 24, 3, 24, 393, 8, 24, 1, 24, 3, 24, 396, 8, 24, 1, 24, 3, 24, 399, 8, 24, 1, 24, 3, 24, 402, 8, 24, 1, 24, 1, 24, 3, 24, 406, 8, 24, 1, 24, 1, 24, 3, 24, 410, 8, 24, 1, 24, 3, 24, 413, 8, 24, 1, 24, 3, 24, 416, 8, 24, 1, 24, 3, 24, 419, 8, 24, 1, 24, 1, 24, 3, 24, 423, 8, 24, 1, 24, 3, 24, 426, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 435, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 441, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 460, 8, 29, 10, 29, 12, 29, 463, 9, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 479, 8, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 496, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 502, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 508, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 519, 8, 36, 3, 36, 521, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 532, 8, 39, 1, 39, 3, 39, 535, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 541, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 549, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 555, 8, 39, 10, 39, 12, 39, 558, 9, 39, 1, 40, 3, 40, 561, 8, 40, 1, 40, 1, 40, 1, 40, 3, 40, 566, 8, 40, 1, 40, 3, 40, 569, 8, 40, 1, 40, 3, 40, 572, 8, 40, 1, 40, 1, 40, 3, 40, 576, 8, 40, 1, 40, 1, 40, 3, 40, 580, 8, 40, 1, 40, 3, 40, 583, 8, 40, 3, 40, 585, 8, 40, 1, 40, 3, 40, 588, 8, 40, 1, 40, 1, 40, 3, 40, 592, 8, 40, 1, 40, 1, 40, 3, 40, 596, 8, 40, 1, 40, 3, 40, 599, 8, 40, 3, 40, 601, 8, 40, 3, 40, 603, 8, 40, 1, 41, 1, 41, 1, 41, 3, 41, 608, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 619, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 625, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 630, 8, 44, 10, 44, 12, 44, 633, 9, 44, 1, 45, 1, 45, 3, 45, 637, 8, 45, 1, 45, 1, 45, 3, 45, 641, 8, 45, 1, 45, 1, 45, 3, 45, 645, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 651, 8, 46, 3, 46, 653, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 658, 8, 47, 10, 47, 12, 47, 661, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 3, 49, 668, 8, 49, 1, 49, 3, 49, 671, 8, 49, 1, 49, 3, 49, 674, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 693, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 707, 8, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 721, 8, 56, 10, 56, 12, 56, 724, 9, 56, 1, 56, 3, 56, 727, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 736, 8, 56, 10, 56, 12, 56, 739, 9, 56, 1, 56, 3, 56, 742, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 751, 8, 56, 10, 56, 12, 56, 754, 9, 56, 1, 56, 3, 56, 757, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 764, 8, 56, 1, 56, 1, 56, 3, 56, 768, 8, 56, 1, 57, 1, 57, 1, 57, 5, 57, 773, 8, 57, 10, 57, 12, 57, 776, 9, 57, 1, 57, 3, 57, 779, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 784, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 4, 58, 791, 8, 58, 11, 58, 12, 58, 792, 1, 58, 1, 58, 3, 58, 797, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 821, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 838, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 844, 8, 58, 1, 58, 3, 58, 847, 8, 58, 1, 58, 3, 58, 850, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 860, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 866, 8, 58, 1, 58, 3, 58, 869, 8, 58, 1, 58, 3, 58, 872, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 880, 8, 58, 1, 58, 3, 58, 883, 8, 58, 1, 58, 1, 58, 3, 58, 887, 8, 58, 1, 58, 3, 58, 890, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 904, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 921, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 926, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 936, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 942, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 949, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 961, 8, 58, 1, 58, 1, 58, 3, 58, 965, 8, 58, 1, 58, 3, 58, 968, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 977, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 991, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1007, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1036, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1044, 8, 58, 5, 58, 1046, 8, 58, 10, 58, 12, 58, 1049, 9, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1055, 8, 59, 10, 59, 12, 59, 1058, 9, 59, 1, 59, 3, 59, 1061, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1068, 8, 59, 10, 59, 12, 59, 1071, 9, 59, 1, 59, 3, 59, 1074, 8, 59, 1, 59, 1, 59, 3, 59, 1078, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1083, 8, 59, 1, 60, 1, 60, 1, 60, 5, 60, 1088, 8, 60, 10, 60, 12, 60, 1091, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1099, 8, 60, 10, 60, 12, 60, 1102, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1110, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1117, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1130, 8, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1135, 8, 62, 10, 62, 12, 62, 1138, 9, 62, 1, 62, 3, 62, 1141, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1153, 8, 63, 1, 64, 1, 64, 1, 64, 3, 64, 1158, 8, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 5, 65, 1165, 8, 65, 10, 65, 12, 65, 1168, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1179, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1185, 8, 66, 5, 66, 1187, 8, 66, 10, 66, 12, 66, 1190, 9, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1195, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1202, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 5, 69, 1209, 8, 69, 10, 69, 12, 69, 1212, 9, 69, 1, 69, 3, 69, 1215, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1225, 8, 71, 3, 71, 1227, 8, 71, 1, 72, 3, 72, 1230, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1238, 8, 72, 1, 73, 1, 73, 1, 73, 3, 73, 1243, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1253, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 1258, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 3, 80, 1266, 8, 80, 1, 81, 1, 81, 5, 81, 1270, 8, 81, 10, 81, 12, 81, 1273, 9, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 1282, 8, 82, 1, 83, 1, 83, 5, 83, 1286, 8, 83, 10, 83, 12, 83, 1289, 9, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1298, 8, 84, 1, 84, 0, 3, 78, 116, 132, 85, 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, 0, 17, 2, 0, 31, 31, 36, 36, 2, 0, 18, 18, 75, 75, 2, 0, 45, 45, 52, 52, 3, 0, 1, 1, 4, 4, 8, 8, 4, 0, 1, 1, 3, 4, 8, 8, 81, 81, 2, 0, 52, 52, 74, 74, 2, 0, 1, 1, 4, 4, 2, 0, 7, 7, 22, 23, 2, 0, 30, 30, 50, 50, 2, 0, 72, 72, 77, 77, 3, 0, 10, 10, 51, 51, 91, 91, 2, 0, 42, 42, 54, 54, 1, 0, 108, 109, 2, 0, 119, 119, 140, 140, 7, 0, 21, 21, 39, 39, 56, 57, 71, 71, 79, 79, 98, 98, 104, 104, 17, 0, 1, 13, 15, 20, 22, 28, 30, 30, 32, 35, 37, 38, 40, 43, 45, 52, 54, 55, 59, 59, 61, 70, 72, 78, 80, 84, 86, 93, 95, 97, 99, 100, 102, 103, 4, 0, 20, 20, 30, 30, 40, 40, 49, 49, 1474, 0, 173, 1, 0, 0, 0, 2, 180, 1, 0, 0, 0, 4, 182, 1, 0, 0, 0, 6, 184, 1, 0, 0, 0, 8, 191, 1, 0, 0, 0, 10, 214, 1, 0, 0, 0, 12, 216, 1, 0, 0, 0, 14, 223, 1, 0, 0, 0, 16, 230, 1, 0, 0, 0, 18, 243, 1, 0, 0, 0, 20, 255, 1, 0, 0, 0, 22, 264, 1, 0, 0, 0, 24, 272, 1, 0, 0, 0, 26, 294, 1, 0, 0, 0, 28, 309, 1, 0, 0, 0, 30, 318, 1, 0, 0, 0, 32, 323, 1, 0, 0, 0, 34, 327, 1, 0, 0, 0, 36, 329, 1, 0, 0, 0, 38, 338, 1, 0, 0, 0, 40, 342, 1, 0, 0, 0, 42, 356, 1, 0, 0, 0, 44, 360, 1, 0, 0, 0, 46, 375, 1, 0, 0, 0, 48, 378, 1, 0, 0, 0, 50, 427, 1, 0, 0, 0, 52, 430, 1, 0, 0, 0, 54, 436, 1, 0, 0, 0, 56, 440, 1, 0, 0, 0, 58, 446, 1, 0, 0, 0, 60, 464, 1, 0, 0, 0, 62, 467, 1, 0, 0, 0, 64, 470, 1, 0, 0, 0, 66, 480, 1, 0, 0, 0, 68, 483, 1, 0, 0, 0, 70, 487, 1, 0, 0, 0, 72, 520, 1, 0, 0, 0, 74, 522, 1, 0, 0, 0, 76, 525, 1, 0, 0, 0, 78, 540, 1, 0, 0, 0, 80, 602, 1, 0, 0, 0, 82, 607, 1, 0, 0, 0, 84, 618, 1, 0, 0, 0, 86, 620, 1, 0, 0, 0, 88, 626, 1, 0, 0, 0, 90, 634, 1, 0, 0, 0, 92, 652, 1, 0, 0, 0, 94, 654, 1, 0, 0, 0, 96, 662, 1, 0, 0, 0, 98, 667, 1, 0, 0, 0, 100, 675, 1, 0, 0, 0, 102, 679, 1, 0, 0, 0, 104, 683, 1, 0, 0, 0, 106, 692, 1, 0, 0, 0, 108, 706, 1, 0, 0, 0, 110, 708, 1, 0, 0, 0, 112, 767, 1, 0, 0, 0, 114, 769, 1, 0, 0, 0, 116, 935, 1, 0, 0, 0, 118, 1077, 1, 0, 0, 0, 120, 1116, 1, 0, 0, 0, 122, 1129, 1, 0, 0, 0, 124, 1131, 1, 0, 0, 0, 126, 1152, 1, 0, 0, 0, 128, 1157, 1, 0, 0, 0, 130, 1161, 1, 0, 0, 0, 132, 1178, 1, 0, 0, 0, 134, 1191, 1, 0, 0, 0, 136, 1201, 1, 0, 0, 0, 138, 1205, 1, 0, 0, 0, 140, 1216, 1, 0, 0, 0, 142, 1226, 1, 0, 0, 0, 144, 1229, 1, 0, 0, 0, 146, 1242, 1, 0, 0, 0, 148, 1244, 1, 0, 0, 0, 150, 1246, 1, 0, 0, 0, 152, 1248, 1, 0, 0, 0, 154, 1252, 1, 0, 0, 0, 156, 1257, 1, 0, 0, 0, 158, 1259, 1, 0, 0, 0, 160, 1265, 1, 0, 0, 0, 162, 1267, 1, 0, 0, 0, 164, 1281, 1, 0, 0, 0, 166, 1283, 1, 0, 0, 0, 168, 1297, 1, 0, 0, 0, 170, 172, 3, 2, 1, 0, 171, 170, 1, 0, 0, 0, 172, 175, 1, 0, 0, 0, 173, 171, 1, 0, 0, 0, 173, 174, 1, 0, 0, 0, 174, 176, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 176, 177, 5, 0, 0, 1, 177, 1, 1, 0, 0, 0, 178, 181, 3, 6, 3, 0, 179, 181, 3, 10, 5, 0, 180, 178, 1, 0, 0, 0, 180, 179, 1, 0, 0, 0, 181, 3, 1, 0, 0, 0, 182, 183, 3, 116, 58, 0, 183, 5, 1, 0, 0, 0, 184, 185, 5, 53, 0, 0, 185, 189, 3, 156, 78, 0, 186, 187, 5, 116, 0, 0, 187, 188, 5, 123, 0, 0, 188, 190, 3, 4, 2, 0, 189, 186, 1, 0, 0, 0, 189, 190, 1, 0, 0, 0, 190, 7, 1, 0, 0, 0, 191, 196, 3, 156, 78, 0, 192, 193, 5, 117, 0, 0, 193, 195, 3, 156, 78, 0, 194, 192, 1, 0, 0, 0, 195, 198, 1, 0, 0, 0, 196, 194, 1, 0, 0, 0, 196, 197, 1, 0, 0, 0, 197, 200, 1, 0, 0, 0, 198, 196, 1, 0, 0, 0, 199, 201, 5, 117, 0, 0, 200, 199, 1, 0, 0, 0, 200, 201, 1, 0, 0, 0, 201, 9, 1, 0, 0, 0, 202, 215, 3, 12, 6, 0, 203, 215, 3, 14, 7, 0, 204, 215, 3, 18, 9, 0, 205, 215, 3, 20, 10, 0, 206, 215, 3, 22, 11, 0, 207, 215, 3, 26, 13, 0, 208, 215, 3, 24, 12, 0, 209, 215, 3, 28, 14, 0, 210, 215, 3, 30, 15, 0, 211, 215, 3, 36, 18, 0, 212, 215, 3, 32, 16, 0, 213, 215, 3, 34, 17, 0, 214, 202, 1, 0, 0, 0, 214, 203, 1, 0, 0, 0, 214, 204, 1, 0, 0, 0, 214, 205, 1, 0, 0, 0, 214, 206, 1, 0, 0, 0, 214, 207, 1, 0, 0, 0, 214, 208, 1, 0, 0, 0, 214, 209, 1, 0, 0, 0, 214, 210, 1, 0, 0, 0, 214, 211, 1, 0, 0, 0, 214, 212, 1, 0, 0, 0, 214, 213, 1, 0, 0, 0, 215, 11, 1, 0, 0, 0, 216, 218, 5, 73, 0, 0, 217, 219, 3, 4, 2, 0, 218, 217, 1, 0, 0, 0, 218, 219, 1, 0, 0, 0, 219, 221, 1, 0, 0, 0, 220, 222, 5, 151, 0, 0, 221, 220, 1, 0, 0, 0, 221, 222, 1, 0, 0, 0, 222, 13, 1, 0, 0, 0, 223, 225, 5, 85, 0, 0, 224, 226, 3, 4, 2, 0, 225, 224, 1, 0, 0, 0, 225, 226, 1, 0, 0, 0, 226, 228, 1, 0, 0, 0, 227, 229, 5, 151, 0, 0, 228, 227, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 15, 1, 0, 0, 0, 230, 239, 5, 14, 0, 0, 231, 232, 5, 131, 0, 0, 232, 235, 3, 156, 78, 0, 233, 234, 5, 116, 0, 0, 234, 236, 3, 156, 78, 0, 235, 233, 1, 0, 0, 0, 235, 236, 1, 0, 0, 0, 236, 237, 1, 0, 0, 0, 237, 238, 5, 150, 0, 0, 238, 240, 1, 0, 0, 0, 239, 231, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 242, 3, 36, 18, 0, 242, 17, 1, 0, 0, 0, 243, 244, 5, 94, 0, 0, 244, 248, 3, 36, 18, 0, 245, 247, 3, 16, 8, 0, 246, 245, 1, 0, 0, 0, 247, 250, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 253, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 251, 252, 5, 29, 0, 0, 252, 254, 3, 36, 18, 0, 253, 251, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 19, 1, 0, 0, 0, 255, 256, 5, 41, 0, 0, 256, 257, 5, 131, 0, 0, 257, 258, 3, 4, 2, 0, 258, 259, 5, 150, 0, 0, 259, 262, 3, 10, 5, 0, 260, 261, 5, 25, 0, 0, 261, 263, 3, 10, 5, 0, 262, 260, 1, 0, 0, 0, 262, 263, 1, 0, 0, 0, 263, 21, 1, 0, 0, 0, 264, 265, 5, 101, 0, 0, 265, 266, 5, 131, 0, 0, 266, 267, 3, 4, 2, 0, 267, 268, 5, 150, 0, 0, 268, 270, 3, 10, 5, 0, 269, 271, 5, 151, 0, 0, 270, 269, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 23, 1, 0, 0, 0, 272, 273, 5, 33, 0, 0, 273, 277, 5, 131, 0, 0, 274, 278, 3, 6, 3, 0, 275, 278, 3, 30, 15, 0, 276, 278, 3, 4, 2, 0, 277, 274, 1, 0, 0, 0, 277, 275, 1, 0, 0, 0, 277, 276, 1, 0, 0, 0, 277, 278, 1, 0, 0, 0, 278, 279, 1, 0, 0, 0, 279, 281, 5, 151, 0, 0, 280, 282, 3, 4, 2, 0, 281, 280, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 283, 1, 0, 0, 0, 283, 287, 5, 151, 0, 0, 284, 288, 3, 6, 3, 0, 285, 288, 3, 30, 15, 0, 286, 288, 3, 4, 2, 0, 287, 284, 1, 0, 0, 0, 287, 285, 1, 0, 0, 0, 287, 286, 1, 0, 0, 0, 287, 288, 1, 0, 0, 0, 288, 289, 1, 0, 0, 0, 289, 290, 5, 150, 0, 0, 290, 292, 3, 10, 5, 0, 291, 293, 5, 151, 0, 0, 292, 291, 1, 0, 0, 0, 292, 293, 1, 0, 0, 0, 293, 25, 1, 0, 0, 0, 294, 295, 5, 33, 0, 0, 295, 296, 5, 131, 0, 0, 296, 297, 5, 53, 0, 0, 297, 300, 3, 156, 78, 0, 298, 299, 5, 117, 0, 0, 299, 301, 3, 156, 78, 0, 300, 298, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 303, 5, 43, 0, 0, 303, 304, 3, 4, 2, 0, 304, 305, 5, 150, 0, 0, 305, 307, 3, 10, 5, 0, 306, 308, 5, 151, 0, 0, 307, 306, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 27, 1, 0, 0, 0, 309, 310, 7, 0, 0, 0, 310, 311, 3, 156, 78, 0, 311, 313, 5, 131, 0, 0, 312, 314, 3, 8, 4, 0, 313, 312, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 316, 5, 150, 0, 0, 316, 317, 3, 36, 18, 0, 317, 29, 1, 0, 0, 0, 318, 319, 3, 4, 2, 0, 319, 320, 5, 116, 0, 0, 320, 321, 5, 123, 0, 0, 321, 322, 3, 4, 2, 0, 322, 31, 1, 0, 0, 0, 323, 325, 3, 4, 2, 0, 324, 326, 5, 151, 0, 0, 325, 324, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 33, 1, 0, 0, 0, 327, 328, 5, 151, 0, 0, 328, 35, 1, 0, 0, 0, 329, 333, 5, 129, 0, 0, 330, 332, 3, 2, 1, 0, 331, 330, 1, 0, 0, 0, 332, 335, 1, 0, 0, 0, 333, 331, 1, 0, 0, 0, 333, 334, 1, 0, 0, 0, 334, 336, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 336, 337, 5, 148, 0, 0, 337, 37, 1, 0, 0, 0, 338, 339, 3, 4, 2, 0, 339, 340, 5, 116, 0, 0, 340, 341, 3, 4, 2, 0, 341, 39, 1, 0, 0, 0, 342, 347, 3, 38, 19, 0, 343, 344, 5, 117, 0, 0, 344, 346, 3, 38, 19, 0, 345, 343, 1, 0, 0, 0, 346, 349, 1, 0, 0, 0, 347, 345, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 350, 352, 5, 117, 0, 0, 351, 350, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 41, 1, 0, 0, 0, 353, 357, 3, 44, 22, 0, 354, 357, 3, 48, 24, 0, 355, 357, 3, 120, 60, 0, 356, 353, 1, 0, 0, 0, 356, 354, 1, 0, 0, 0, 356, 355, 1, 0, 0, 0, 357, 358, 1, 0, 0, 0, 358, 359, 5, 0, 0, 1, 359, 43, 1, 0, 0, 0, 360, 366, 3, 46, 23, 0, 361, 362, 5, 96, 0, 0, 362, 363, 5, 1, 0, 0, 363, 365, 3, 46, 23, 0, 364, 361, 1, 0, 0, 0, 365, 368, 1, 0, 0, 0, 366, 364, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 45, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 369, 376, 3, 48, 24, 0, 370, 371, 5, 131, 0, 0, 371, 372, 3, 44, 22, 0, 372, 373, 5, 150, 0, 0, 373, 376, 1, 0, 0, 0, 374, 376, 3, 36, 18, 0, 375, 369, 1, 0, 0, 0, 375, 370, 1, 0, 0, 0, 375, 374, 1, 0, 0, 0, 376, 47, 1, 0, 0, 0, 377, 379, 3, 50, 25, 0, 378, 377, 1, 0, 0, 0, 378, 379, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 382, 5, 80, 0, 0, 381, 383, 5, 24, 0, 0, 382, 381, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 385, 1, 0, 0, 0, 384, 386, 3, 52, 26, 0, 385, 384, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 389, 3, 114, 57, 0, 388, 390, 3, 54, 27, 0, 389, 388, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 392, 1, 0, 0, 0, 391, 393, 3, 56, 28, 0, 392, 391, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 395, 1, 0, 0, 0, 394, 396, 3, 60, 30, 0, 395, 394, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 398, 1, 0, 0, 0, 397, 399, 3, 62, 31, 0, 398, 397, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 401, 1, 0, 0, 0, 400, 402, 3, 64, 32, 0, 401, 400, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 404, 5, 103, 0, 0, 404, 406, 7, 1, 0, 0, 405, 403, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 406, 409, 1, 0, 0, 0, 407, 408, 5, 103, 0, 0, 408, 410, 5, 90, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 412, 1, 0, 0, 0, 411, 413, 3, 66, 33, 0, 412, 411, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 415, 1, 0, 0, 0, 414, 416, 3, 58, 29, 0, 415, 414, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 418, 1, 0, 0, 0, 417, 419, 3, 68, 34, 0, 418, 417, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 422, 1, 0, 0, 0, 420, 423, 3, 72, 36, 0, 421, 423, 3, 74, 37, 0, 422, 420, 1, 0, 0, 0, 422, 421, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 425, 1, 0, 0, 0, 424, 426, 3, 76, 38, 0, 425, 424, 1, 0, 0, 0, 425, 426, 1, 0, 0, 0, 426, 49, 1, 0, 0, 0, 427, 428, 5, 103, 0, 0, 428, 429, 3, 124, 62, 0, 429, 51, 1, 0, 0, 0, 430, 431, 5, 89, 0, 0, 431, 434, 5, 109, 0, 0, 432, 433, 5, 103, 0, 0, 433, 435, 5, 86, 0, 0, 434, 432, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 53, 1, 0, 0, 0, 436, 437, 5, 34, 0, 0, 437, 438, 3, 78, 39, 0, 438, 55, 1, 0, 0, 0, 439, 441, 7, 2, 0, 0, 440, 439, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 443, 5, 5, 0, 0, 443, 444, 5, 48, 0, 0, 444, 445, 3, 114, 57, 0, 445, 57, 1, 0, 0, 0, 446, 447, 5, 102, 0, 0, 447, 448, 3, 156, 78, 0, 448, 449, 5, 6, 0, 0, 449, 450, 5, 131, 0, 0, 450, 451, 3, 98, 49, 0, 451, 461, 5, 150, 0, 0, 452, 453, 5, 117, 0, 0, 453, 454, 3, 156, 78, 0, 454, 455, 5, 6, 0, 0, 455, 456, 5, 131, 0, 0, 456, 457, 3, 98, 49, 0, 457, 458, 5, 150, 0, 0, 458, 460, 1, 0, 0, 0, 459, 452, 1, 0, 0, 0, 460, 463, 1, 0, 0, 0, 461, 459, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 59, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 464, 465, 5, 70, 0, 0, 465, 466, 3, 116, 58, 0, 466, 61, 1, 0, 0, 0, 467, 468, 5, 100, 0, 0, 468, 469, 3, 116, 58, 0, 469, 63, 1, 0, 0, 0, 470, 471, 5, 37, 0, 0, 471, 478, 5, 11, 0, 0, 472, 473, 7, 1, 0, 0, 473, 474, 5, 131, 0, 0, 474, 475, 3, 114, 57, 0, 475, 476, 5, 150, 0, 0, 476, 479, 1, 0, 0, 0, 477, 479, 3, 114, 57, 0, 478, 472, 1, 0, 0, 0, 478, 477, 1, 0, 0, 0, 479, 65, 1, 0, 0, 0, 480, 481, 5, 38, 0, 0, 481, 482, 3, 116, 58, 0, 482, 67, 1, 0, 0, 0, 483, 484, 5, 65, 0, 0, 484, 485, 5, 11, 0, 0, 485, 486, 3, 88, 44, 0, 486, 69, 1, 0, 0, 0, 487, 488, 5, 65, 0, 0, 488, 489, 5, 11, 0, 0, 489, 490, 3, 114, 57, 0, 490, 71, 1, 0, 0, 0, 491, 492, 5, 55, 0, 0, 492, 495, 3, 116, 58, 0, 493, 494, 5, 117, 0, 0, 494, 496, 3, 116, 58, 0, 495, 493, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 501, 1, 0, 0, 0, 497, 498, 5, 103, 0, 0, 498, 502, 5, 86, 0, 0, 499, 500, 5, 11, 0, 0, 500, 502, 3, 114, 57, 0, 501, 497, 1, 0, 0, 0, 501, 499, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 521, 1, 0, 0, 0, 503, 504, 5, 55, 0, 0, 504, 507, 3, 116, 58, 0, 505, 506, 5, 103, 0, 0, 506, 508, 5, 86, 0, 0, 507, 505, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 510, 5, 62, 0, 0, 510, 511, 3, 116, 58, 0, 511, 521, 1, 0, 0, 0, 512, 513, 5, 55, 0, 0, 513, 514, 3, 116, 58, 0, 514, 515, 5, 62, 0, 0, 515, 518, 3, 116, 58, 0, 516, 517, 5, 11, 0, 0, 517, 519, 3, 114, 57, 0, 518, 516, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 521, 1, 0, 0, 0, 520, 491, 1, 0, 0, 0, 520, 503, 1, 0, 0, 0, 520, 512, 1, 0, 0, 0, 521, 73, 1, 0, 0, 0, 522, 523, 5, 62, 0, 0, 523, 524, 3, 116, 58, 0, 524, 75, 1, 0, 0, 0, 525, 526, 5, 82, 0, 0, 526, 527, 3, 94, 47, 0, 527, 77, 1, 0, 0, 0, 528, 529, 6, 39, -1, 0, 529, 531, 3, 132, 66, 0, 530, 532, 5, 28, 0, 0, 531, 530, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 534, 1, 0, 0, 0, 533, 535, 3, 86, 43, 0, 534, 533, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 541, 1, 0, 0, 0, 536, 537, 5, 131, 0, 0, 537, 538, 3, 78, 39, 0, 538, 539, 5, 150, 0, 0, 539, 541, 1, 0, 0, 0, 540, 528, 1, 0, 0, 0, 540, 536, 1, 0, 0, 0, 541, 556, 1, 0, 0, 0, 542, 543, 10, 3, 0, 0, 543, 544, 3, 82, 41, 0, 544, 545, 3, 78, 39, 4, 545, 555, 1, 0, 0, 0, 546, 548, 10, 4, 0, 0, 547, 549, 3, 80, 40, 0, 548, 547, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 5, 48, 0, 0, 551, 552, 3, 78, 39, 0, 552, 553, 3, 84, 42, 0, 553, 555, 1, 0, 0, 0, 554, 542, 1, 0, 0, 0, 554, 546, 1, 0, 0, 0, 555, 558, 1, 0, 0, 0, 556, 554, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 79, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 559, 561, 7, 3, 0, 0, 560, 559, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 569, 5, 45, 0, 0, 563, 565, 5, 45, 0, 0, 564, 566, 7, 3, 0, 0, 565, 564, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 569, 1, 0, 0, 0, 567, 569, 7, 3, 0, 0, 568, 560, 1, 0, 0, 0, 568, 563, 1, 0, 0, 0, 568, 567, 1, 0, 0, 0, 569, 603, 1, 0, 0, 0, 570, 572, 7, 4, 0, 0, 571, 570, 1, 0, 0, 0, 571, 572, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 575, 7, 5, 0, 0, 574, 576, 5, 66, 0, 0, 575, 574, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 585, 1, 0, 0, 0, 577, 579, 7, 5, 0, 0, 578, 580, 5, 66, 0, 0, 579, 578, 1, 0, 0, 0, 579, 580, 1, 0, 0, 0, 580, 582, 1, 0, 0, 0, 581, 583, 7, 4, 0, 0, 582, 581, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 585, 1, 0, 0, 0, 584, 571, 1, 0, 0, 0, 584, 577, 1, 0, 0, 0, 585, 603, 1, 0, 0, 0, 586, 588, 7, 6, 0, 0, 587, 586, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 591, 5, 35, 0, 0, 590, 592, 5, 66, 0, 0, 591, 590, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 601, 1, 0, 0, 0, 593, 595, 5, 35, 0, 0, 594, 596, 5, 66, 0, 0, 595, 594, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 598, 1, 0, 0, 0, 597, 599, 7, 6, 0, 0, 598, 597, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 601, 1, 0, 0, 0, 600, 587, 1, 0, 0, 0, 600, 593, 1, 0, 0, 0, 601, 603, 1, 0, 0, 0, 602, 568, 1, 0, 0, 0, 602, 584, 1, 0, 0, 0, 602, 600, 1, 0, 0, 0, 603, 81, 1, 0, 0, 0, 604, 605, 5, 17, 0, 0, 605, 608, 5, 48, 0, 0, 606, 608, 5, 117, 0, 0, 607, 604, 1, 0, 0, 0, 607, 606, 1, 0, 0, 0, 608, 83, 1, 0, 0, 0, 609, 610, 5, 63, 0, 0, 610, 619, 3, 114, 57, 0, 611, 612, 5, 97, 0, 0, 612, 613, 5, 131, 0, 0, 613, 614, 3, 114, 57, 0, 614, 615, 5, 150, 0, 0, 615, 619, 1, 0, 0, 0, 616, 617, 5, 97, 0, 0, 617, 619, 3, 114, 57, 0, 618, 609, 1, 0, 0, 0, 618, 611, 1, 0, 0, 0, 618, 616, 1, 0, 0, 0, 619, 85, 1, 0, 0, 0, 620, 621, 5, 78, 0, 0, 621, 624, 3, 92, 46, 0, 622, 623, 5, 62, 0, 0, 623, 625, 3, 92, 46, 0, 624, 622, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 87, 1, 0, 0, 0, 626, 631, 3, 90, 45, 0, 627, 628, 5, 117, 0, 0, 628, 630, 3, 90, 45, 0, 629, 627, 1, 0, 0, 0, 630, 633, 1, 0, 0, 0, 631, 629, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 89, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 634, 636, 3, 116, 58, 0, 635, 637, 7, 7, 0, 0, 636, 635, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 640, 1, 0, 0, 0, 638, 639, 5, 61, 0, 0, 639, 641, 7, 8, 0, 0, 640, 638, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 644, 1, 0, 0, 0, 642, 643, 5, 16, 0, 0, 643, 645, 5, 111, 0, 0, 644, 642, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 91, 1, 0, 0, 0, 646, 653, 3, 36, 18, 0, 647, 650, 3, 144, 72, 0, 648, 649, 5, 152, 0, 0, 649, 651, 3, 144, 72, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 653, 1, 0, 0, 0, 652, 646, 1, 0, 0, 0, 652, 647, 1, 0, 0, 0, 653, 93, 1, 0, 0, 0, 654, 659, 3, 96, 48, 0, 655, 656, 5, 117, 0, 0, 656, 658, 3, 96, 48, 0, 657, 655, 1, 0, 0, 0, 658, 661, 1, 0, 0, 0, 659, 657, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 95, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 662, 663, 3, 156, 78, 0, 663, 664, 5, 123, 0, 0, 664, 665, 3, 146, 73, 0, 665, 97, 1, 0, 0, 0, 666, 668, 3, 100, 50, 0, 667, 666, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 670, 1, 0, 0, 0, 669, 671, 3, 102, 51, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 673, 1, 0, 0, 0, 672, 674, 3, 104, 52, 0, 673, 672, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 99, 1, 0, 0, 0, 675, 676, 5, 68, 0, 0, 676, 677, 5, 11, 0, 0, 677, 678, 3, 114, 57, 0, 678, 101, 1, 0, 0, 0, 679, 680, 5, 65, 0, 0, 680, 681, 5, 11, 0, 0, 681, 682, 3, 88, 44, 0, 682, 103, 1, 0, 0, 0, 683, 684, 7, 9, 0, 0, 684, 685, 3, 106, 53, 0, 685, 105, 1, 0, 0, 0, 686, 693, 3, 108, 54, 0, 687, 688, 5, 9, 0, 0, 688, 689, 3, 108, 54, 0, 689, 690, 5, 2, 0, 0, 690, 691, 3, 108, 54, 0, 691, 693, 1, 0, 0, 0, 692, 686, 1, 0, 0, 0, 692, 687, 1, 0, 0, 0, 693, 107, 1, 0, 0, 0, 694, 695, 5, 19, 0, 0, 695, 707, 5, 76, 0, 0, 696, 697, 5, 95, 0, 0, 697, 707, 5, 69, 0, 0, 698, 699, 5, 95, 0, 0, 699, 707, 5, 32, 0, 0, 700, 701, 3, 144, 72, 0, 701, 702, 5, 69, 0, 0, 702, 707, 1, 0, 0, 0, 703, 704, 3, 144, 72, 0, 704, 705, 5, 32, 0, 0, 705, 707, 1, 0, 0, 0, 706, 694, 1, 0, 0, 0, 706, 696, 1, 0, 0, 0, 706, 698, 1, 0, 0, 0, 706, 700, 1, 0, 0, 0, 706, 703, 1, 0, 0, 0, 707, 109, 1, 0, 0, 0, 708, 709, 3, 116, 58, 0, 709, 710, 5, 0, 0, 1, 710, 111, 1, 0, 0, 0, 711, 768, 3, 156, 78, 0, 712, 713, 3, 156, 78, 0, 713, 714, 5, 131, 0, 0, 714, 715, 3, 156, 78, 0, 715, 722, 3, 112, 56, 0, 716, 717, 5, 117, 0, 0, 717, 718, 3, 156, 78, 0, 718, 719, 3, 112, 56, 0, 719, 721, 1, 0, 0, 0, 720, 716, 1, 0, 0, 0, 721, 724, 1, 0, 0, 0, 722, 720, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 726, 1, 0, 0, 0, 724, 722, 1, 0, 0, 0, 725, 727, 5, 117, 0, 0, 726, 725, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 729, 5, 150, 0, 0, 729, 768, 1, 0, 0, 0, 730, 731, 3, 156, 78, 0, 731, 732, 5, 131, 0, 0, 732, 737, 3, 158, 79, 0, 733, 734, 5, 117, 0, 0, 734, 736, 3, 158, 79, 0, 735, 733, 1, 0, 0, 0, 736, 739, 1, 0, 0, 0, 737, 735, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 741, 1, 0, 0, 0, 739, 737, 1, 0, 0, 0, 740, 742, 5, 117, 0, 0, 741, 740, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 5, 150, 0, 0, 744, 768, 1, 0, 0, 0, 745, 746, 3, 156, 78, 0, 746, 747, 5, 131, 0, 0, 747, 752, 3, 112, 56, 0, 748, 749, 5, 117, 0, 0, 749, 751, 3, 112, 56, 0, 750, 748, 1, 0, 0, 0, 751, 754, 1, 0, 0, 0, 752, 750, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 756, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 755, 757, 5, 117, 0, 0, 756, 755, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 759, 5, 150, 0, 0, 759, 768, 1, 0, 0, 0, 760, 761, 3, 156, 78, 0, 761, 763, 5, 131, 0, 0, 762, 764, 3, 114, 57, 0, 763, 762, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 766, 5, 150, 0, 0, 766, 768, 1, 0, 0, 0, 767, 711, 1, 0, 0, 0, 767, 712, 1, 0, 0, 0, 767, 730, 1, 0, 0, 0, 767, 745, 1, 0, 0, 0, 767, 760, 1, 0, 0, 0, 768, 113, 1, 0, 0, 0, 769, 774, 3, 116, 58, 0, 770, 771, 5, 117, 0, 0, 771, 773, 3, 116, 58, 0, 772, 770, 1, 0, 0, 0, 773, 776, 1, 0, 0, 0, 774, 772, 1, 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 778, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 777, 779, 5, 117, 0, 0, 778, 777, 1, 0, 0, 0, 778, 779, 1, 0, 0, 0, 779, 115, 1, 0, 0, 0, 780, 781, 6, 58, -1, 0, 781, 783, 5, 12, 0, 0, 782, 784, 3, 116, 58, 0, 783, 782, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 790, 1, 0, 0, 0, 785, 786, 5, 99, 0, 0, 786, 787, 3, 116, 58, 0, 787, 788, 5, 84, 0, 0, 788, 789, 3, 116, 58, 0, 789, 791, 1, 0, 0, 0, 790, 785, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 790, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 796, 1, 0, 0, 0, 794, 795, 5, 25, 0, 0, 795, 797, 3, 116, 58, 0, 796, 794, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 799, 5, 26, 0, 0, 799, 936, 1, 0, 0, 0, 800, 801, 5, 13, 0, 0, 801, 802, 5, 131, 0, 0, 802, 803, 3, 116, 58, 0, 803, 804, 5, 6, 0, 0, 804, 805, 3, 112, 56, 0, 805, 806, 5, 150, 0, 0, 806, 936, 1, 0, 0, 0, 807, 808, 5, 20, 0, 0, 808, 936, 5, 111, 0, 0, 809, 810, 5, 46, 0, 0, 810, 811, 3, 116, 58, 0, 811, 812, 3, 148, 74, 0, 812, 936, 1, 0, 0, 0, 813, 814, 5, 83, 0, 0, 814, 815, 5, 131, 0, 0, 815, 816, 3, 116, 58, 0, 816, 817, 5, 34, 0, 0, 817, 820, 3, 116, 58, 0, 818, 819, 5, 33, 0, 0, 819, 821, 3, 116, 58, 0, 820, 818, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 823, 5, 150, 0, 0, 823, 936, 1, 0, 0, 0, 824, 825, 5, 87, 0, 0, 825, 936, 5, 111, 0, 0, 826, 827, 5, 92, 0, 0, 827, 828, 5, 131, 0, 0, 828, 829, 7, 10, 0, 0, 829, 830, 3, 160, 80, 0, 830, 831, 5, 34, 0, 0, 831, 832, 3, 116, 58, 0, 832, 833, 5, 150, 0, 0, 833, 936, 1, 0, 0, 0, 834, 835, 3, 156, 78, 0, 835, 837, 5, 131, 0, 0, 836, 838, 3, 114, 57, 0, 837, 836, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 840, 5, 150, 0, 0, 840, 849, 1, 0, 0, 0, 841, 843, 5, 131, 0, 0, 842, 844, 5, 24, 0, 0, 843, 842, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 846, 1, 0, 0, 0, 845, 847, 3, 114, 57, 0, 846, 845, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 850, 5, 150, 0, 0, 849, 841, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 852, 5, 67, 0, 0, 852, 853, 5, 131, 0, 0, 853, 854, 3, 98, 49, 0, 854, 855, 5, 150, 0, 0, 855, 936, 1, 0, 0, 0, 856, 857, 3, 156, 78, 0, 857, 859, 5, 131, 0, 0, 858, 860, 3, 114, 57, 0, 859, 858, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 862, 5, 150, 0, 0, 862, 871, 1, 0, 0, 0, 863, 865, 5, 131, 0, 0, 864, 866, 5, 24, 0, 0, 865, 864, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 868, 1, 0, 0, 0, 867, 869, 3, 114, 57, 0, 868, 867, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 872, 5, 150, 0, 0, 871, 863, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 5, 67, 0, 0, 874, 875, 3, 156, 78, 0, 875, 936, 1, 0, 0, 0, 876, 882, 3, 156, 78, 0, 877, 879, 5, 131, 0, 0, 878, 880, 3, 114, 57, 0, 879, 878, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 881, 1, 0, 0, 0, 881, 883, 5, 150, 0, 0, 882, 877, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 886, 5, 131, 0, 0, 885, 887, 5, 24, 0, 0, 886, 885, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 889, 1, 0, 0, 0, 888, 890, 3, 114, 57, 0, 889, 888, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 892, 5, 150, 0, 0, 892, 936, 1, 0, 0, 0, 893, 936, 3, 120, 60, 0, 894, 936, 3, 162, 81, 0, 895, 936, 3, 146, 73, 0, 896, 897, 5, 119, 0, 0, 897, 936, 3, 116, 58, 22, 898, 899, 5, 59, 0, 0, 899, 936, 3, 116, 58, 16, 900, 901, 3, 136, 68, 0, 901, 902, 5, 121, 0, 0, 902, 904, 1, 0, 0, 0, 903, 900, 1, 0, 0, 0, 903, 904, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 936, 5, 113, 0, 0, 906, 907, 5, 131, 0, 0, 907, 908, 3, 44, 22, 0, 908, 909, 5, 150, 0, 0, 909, 936, 1, 0, 0, 0, 910, 911, 5, 131, 0, 0, 911, 912, 3, 116, 58, 0, 912, 913, 5, 150, 0, 0, 913, 936, 1, 0, 0, 0, 914, 915, 5, 131, 0, 0, 915, 916, 3, 114, 57, 0, 916, 917, 5, 150, 0, 0, 917, 936, 1, 0, 0, 0, 918, 920, 5, 130, 0, 0, 919, 921, 3, 114, 57, 0, 920, 919, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 936, 5, 149, 0, 0, 923, 925, 5, 129, 0, 0, 924, 926, 3, 40, 20, 0, 925, 924, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 936, 5, 148, 0, 0, 928, 936, 3, 118, 59, 0, 929, 930, 5, 129, 0, 0, 930, 931, 3, 130, 65, 0, 931, 932, 5, 148, 0, 0, 932, 936, 1, 0, 0, 0, 933, 936, 3, 36, 18, 0, 934, 936, 3, 128, 64, 0, 935, 780, 1, 0, 0, 0, 935, 800, 1, 0, 0, 0, 935, 807, 1, 0, 0, 0, 935, 809, 1, 0, 0, 0, 935, 813, 1, 0, 0, 0, 935, 824, 1, 0, 0, 0, 935, 826, 1, 0, 0, 0, 935, 834, 1, 0, 0, 0, 935, 856, 1, 0, 0, 0, 935, 876, 1, 0, 0, 0, 935, 893, 1, 0, 0, 0, 935, 894, 1, 0, 0, 0, 935, 895, 1, 0, 0, 0, 935, 896, 1, 0, 0, 0, 935, 898, 1, 0, 0, 0, 935, 903, 1, 0, 0, 0, 935, 906, 1, 0, 0, 0, 935, 910, 1, 0, 0, 0, 935, 914, 1, 0, 0, 0, 935, 918, 1, 0, 0, 0, 935, 923, 1, 0, 0, 0, 935, 928, 1, 0, 0, 0, 935, 929, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 935, 934, 1, 0, 0, 0, 936, 1047, 1, 0, 0, 0, 937, 941, 10, 21, 0, 0, 938, 942, 5, 113, 0, 0, 939, 942, 5, 152, 0, 0, 940, 942, 5, 139, 0, 0, 941, 938, 1, 0, 0, 0, 941, 939, 1, 0, 0, 0, 941, 940, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 1046, 3, 116, 58, 22, 944, 948, 10, 20, 0, 0, 945, 949, 5, 140, 0, 0, 946, 949, 5, 119, 0, 0, 947, 949, 5, 118, 0, 0, 948, 945, 1, 0, 0, 0, 948, 946, 1, 0, 0, 0, 948, 947, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 1046, 3, 116, 58, 21, 951, 976, 10, 19, 0, 0, 952, 977, 5, 122, 0, 0, 953, 977, 5, 123, 0, 0, 954, 977, 5, 134, 0, 0, 955, 977, 5, 132, 0, 0, 956, 977, 5, 133, 0, 0, 957, 977, 5, 124, 0, 0, 958, 977, 5, 125, 0, 0, 959, 961, 5, 59, 0, 0, 960, 959, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 964, 5, 43, 0, 0, 963, 965, 5, 15, 0, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 977, 1, 0, 0, 0, 966, 968, 5, 59, 0, 0, 967, 966, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 977, 7, 11, 0, 0, 970, 977, 5, 146, 0, 0, 971, 977, 5, 147, 0, 0, 972, 977, 5, 136, 0, 0, 973, 977, 5, 127, 0, 0, 974, 977, 5, 128, 0, 0, 975, 977, 5, 135, 0, 0, 976, 952, 1, 0, 0, 0, 976, 953, 1, 0, 0, 0, 976, 954, 1, 0, 0, 0, 976, 955, 1, 0, 0, 0, 976, 956, 1, 0, 0, 0, 976, 957, 1, 0, 0, 0, 976, 958, 1, 0, 0, 0, 976, 960, 1, 0, 0, 0, 976, 967, 1, 0, 0, 0, 976, 970, 1, 0, 0, 0, 976, 971, 1, 0, 0, 0, 976, 972, 1, 0, 0, 0, 976, 973, 1, 0, 0, 0, 976, 974, 1, 0, 0, 0, 976, 975, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 1046, 3, 116, 58, 20, 979, 980, 10, 17, 0, 0, 980, 981, 5, 138, 0, 0, 981, 1046, 3, 116, 58, 18, 982, 983, 10, 15, 0, 0, 983, 984, 5, 2, 0, 0, 984, 1046, 3, 116, 58, 16, 985, 986, 10, 14, 0, 0, 986, 987, 5, 64, 0, 0, 987, 1046, 3, 116, 58, 15, 988, 990, 10, 13, 0, 0, 989, 991, 5, 59, 0, 0, 990, 989, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 993, 5, 9, 0, 0, 993, 994, 3, 116, 58, 0, 994, 995, 5, 2, 0, 0, 995, 996, 3, 116, 58, 14, 996, 1046, 1, 0, 0, 0, 997, 998, 10, 12, 0, 0, 998, 999, 5, 141, 0, 0, 999, 1000, 3, 116, 58, 0, 1000, 1001, 5, 116, 0, 0, 1001, 1002, 3, 116, 58, 12, 1002, 1046, 1, 0, 0, 0, 1003, 1004, 10, 32, 0, 0, 1004, 1006, 5, 131, 0, 0, 1005, 1007, 3, 114, 57, 0, 1006, 1005, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1046, 5, 150, 0, 0, 1009, 1010, 10, 28, 0, 0, 1010, 1011, 5, 130, 0, 0, 1011, 1012, 3, 116, 58, 0, 1012, 1013, 5, 149, 0, 0, 1013, 1046, 1, 0, 0, 0, 1014, 1015, 10, 27, 0, 0, 1015, 1016, 5, 121, 0, 0, 1016, 1046, 5, 109, 0, 0, 1017, 1018, 10, 26, 0, 0, 1018, 1019, 5, 121, 0, 0, 1019, 1046, 3, 156, 78, 0, 1020, 1021, 10, 25, 0, 0, 1021, 1022, 5, 137, 0, 0, 1022, 1023, 5, 130, 0, 0, 1023, 1024, 3, 116, 58, 0, 1024, 1025, 5, 149, 0, 0, 1025, 1046, 1, 0, 0, 0, 1026, 1027, 10, 24, 0, 0, 1027, 1028, 5, 137, 0, 0, 1028, 1046, 5, 109, 0, 0, 1029, 1030, 10, 23, 0, 0, 1030, 1031, 5, 137, 0, 0, 1031, 1046, 3, 156, 78, 0, 1032, 1033, 10, 18, 0, 0, 1033, 1035, 5, 47, 0, 0, 1034, 1036, 5, 59, 0, 0, 1035, 1034, 1, 0, 0, 0, 1035, 1036, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1046, 5, 60, 0, 0, 1038, 1043, 10, 11, 0, 0, 1039, 1040, 5, 6, 0, 0, 1040, 1044, 3, 156, 78, 0, 1041, 1042, 5, 6, 0, 0, 1042, 1044, 5, 111, 0, 0, 1043, 1039, 1, 0, 0, 0, 1043, 1041, 1, 0, 0, 0, 1044, 1046, 1, 0, 0, 0, 1045, 937, 1, 0, 0, 0, 1045, 944, 1, 0, 0, 0, 1045, 951, 1, 0, 0, 0, 1045, 979, 1, 0, 0, 0, 1045, 982, 1, 0, 0, 0, 1045, 985, 1, 0, 0, 0, 1045, 988, 1, 0, 0, 0, 1045, 997, 1, 0, 0, 0, 1045, 1003, 1, 0, 0, 0, 1045, 1009, 1, 0, 0, 0, 1045, 1014, 1, 0, 0, 0, 1045, 1017, 1, 0, 0, 0, 1045, 1020, 1, 0, 0, 0, 1045, 1026, 1, 0, 0, 0, 1045, 1029, 1, 0, 0, 0, 1045, 1032, 1, 0, 0, 0, 1045, 1038, 1, 0, 0, 0, 1046, 1049, 1, 0, 0, 0, 1047, 1045, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 117, 1, 0, 0, 0, 1049, 1047, 1, 0, 0, 0, 1050, 1051, 5, 131, 0, 0, 1051, 1056, 3, 156, 78, 0, 1052, 1053, 5, 117, 0, 0, 1053, 1055, 3, 156, 78, 0, 1054, 1052, 1, 0, 0, 0, 1055, 1058, 1, 0, 0, 0, 1056, 1054, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1060, 1, 0, 0, 0, 1058, 1056, 1, 0, 0, 0, 1059, 1061, 5, 117, 0, 0, 1060, 1059, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 5, 150, 0, 0, 1063, 1078, 1, 0, 0, 0, 1064, 1069, 3, 156, 78, 0, 1065, 1066, 5, 117, 0, 0, 1066, 1068, 3, 156, 78, 0, 1067, 1065, 1, 0, 0, 0, 1068, 1071, 1, 0, 0, 0, 1069, 1067, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1073, 1, 0, 0, 0, 1071, 1069, 1, 0, 0, 0, 1072, 1074, 5, 117, 0, 0, 1073, 1072, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1078, 1, 0, 0, 0, 1075, 1076, 5, 131, 0, 0, 1076, 1078, 5, 150, 0, 0, 1077, 1050, 1, 0, 0, 0, 1077, 1064, 1, 0, 0, 0, 1077, 1075, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1082, 5, 112, 0, 0, 1080, 1083, 3, 36, 18, 0, 1081, 1083, 3, 116, 58, 0, 1082, 1080, 1, 0, 0, 0, 1082, 1081, 1, 0, 0, 0, 1083, 119, 1, 0, 0, 0, 1084, 1085, 5, 133, 0, 0, 1085, 1089, 3, 156, 78, 0, 1086, 1088, 3, 122, 61, 0, 1087, 1086, 1, 0, 0, 0, 1088, 1091, 1, 0, 0, 0, 1089, 1087, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1092, 1, 0, 0, 0, 1091, 1089, 1, 0, 0, 0, 1092, 1093, 5, 152, 0, 0, 1093, 1094, 5, 125, 0, 0, 1094, 1117, 1, 0, 0, 0, 1095, 1096, 5, 133, 0, 0, 1096, 1100, 3, 156, 78, 0, 1097, 1099, 3, 122, 61, 0, 1098, 1097, 1, 0, 0, 0, 1099, 1102, 1, 0, 0, 0, 1100, 1098, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1103, 1, 0, 0, 0, 1102, 1100, 1, 0, 0, 0, 1103, 1109, 5, 125, 0, 0, 1104, 1110, 3, 120, 60, 0, 1105, 1106, 5, 129, 0, 0, 1106, 1107, 3, 116, 58, 0, 1107, 1108, 5, 148, 0, 0, 1108, 1110, 1, 0, 0, 0, 1109, 1104, 1, 0, 0, 0, 1109, 1105, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 5, 133, 0, 0, 1112, 1113, 5, 152, 0, 0, 1113, 1114, 3, 156, 78, 0, 1114, 1115, 5, 125, 0, 0, 1115, 1117, 1, 0, 0, 0, 1116, 1084, 1, 0, 0, 0, 1116, 1095, 1, 0, 0, 0, 1117, 121, 1, 0, 0, 0, 1118, 1119, 3, 156, 78, 0, 1119, 1120, 5, 123, 0, 0, 1120, 1121, 3, 160, 80, 0, 1121, 1130, 1, 0, 0, 0, 1122, 1123, 3, 156, 78, 0, 1123, 1124, 5, 123, 0, 0, 1124, 1125, 5, 129, 0, 0, 1125, 1126, 3, 116, 58, 0, 1126, 1127, 5, 148, 0, 0, 1127, 1130, 1, 0, 0, 0, 1128, 1130, 3, 156, 78, 0, 1129, 1118, 1, 0, 0, 0, 1129, 1122, 1, 0, 0, 0, 1129, 1128, 1, 0, 0, 0, 1130, 123, 1, 0, 0, 0, 1131, 1136, 3, 126, 63, 0, 1132, 1133, 5, 117, 0, 0, 1133, 1135, 3, 126, 63, 0, 1134, 1132, 1, 0, 0, 0, 1135, 1138, 1, 0, 0, 0, 1136, 1134, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1140, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1139, 1141, 5, 117, 0, 0, 1140, 1139, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 125, 1, 0, 0, 0, 1142, 1143, 3, 156, 78, 0, 1143, 1144, 5, 6, 0, 0, 1144, 1145, 5, 131, 0, 0, 1145, 1146, 3, 44, 22, 0, 1146, 1147, 5, 150, 0, 0, 1147, 1153, 1, 0, 0, 0, 1148, 1149, 3, 116, 58, 0, 1149, 1150, 5, 6, 0, 0, 1150, 1151, 3, 156, 78, 0, 1151, 1153, 1, 0, 0, 0, 1152, 1142, 1, 0, 0, 0, 1152, 1148, 1, 0, 0, 0, 1153, 127, 1, 0, 0, 0, 1154, 1155, 3, 136, 68, 0, 1155, 1156, 5, 121, 0, 0, 1156, 1158, 1, 0, 0, 0, 1157, 1154, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 3, 130, 65, 0, 1160, 129, 1, 0, 0, 0, 1161, 1166, 3, 156, 78, 0, 1162, 1163, 5, 121, 0, 0, 1163, 1165, 3, 156, 78, 0, 1164, 1162, 1, 0, 0, 0, 1165, 1168, 1, 0, 0, 0, 1166, 1164, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 131, 1, 0, 0, 0, 1168, 1166, 1, 0, 0, 0, 1169, 1170, 6, 66, -1, 0, 1170, 1179, 3, 136, 68, 0, 1171, 1179, 3, 134, 67, 0, 1172, 1173, 5, 131, 0, 0, 1173, 1174, 3, 44, 22, 0, 1174, 1175, 5, 150, 0, 0, 1175, 1179, 1, 0, 0, 0, 1176, 1179, 3, 120, 60, 0, 1177, 1179, 3, 36, 18, 0, 1178, 1169, 1, 0, 0, 0, 1178, 1171, 1, 0, 0, 0, 1178, 1172, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1178, 1177, 1, 0, 0, 0, 1179, 1188, 1, 0, 0, 0, 1180, 1184, 10, 3, 0, 0, 1181, 1185, 3, 154, 77, 0, 1182, 1183, 5, 6, 0, 0, 1183, 1185, 3, 156, 78, 0, 1184, 1181, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1180, 1, 0, 0, 0, 1187, 1190, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 133, 1, 0, 0, 0, 1190, 1188, 1, 0, 0, 0, 1191, 1192, 3, 156, 78, 0, 1192, 1194, 5, 131, 0, 0, 1193, 1195, 3, 138, 69, 0, 1194, 1193, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 5, 150, 0, 0, 1197, 135, 1, 0, 0, 0, 1198, 1199, 3, 140, 70, 0, 1199, 1200, 5, 121, 0, 0, 1200, 1202, 1, 0, 0, 0, 1201, 1198, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 3, 156, 78, 0, 1204, 137, 1, 0, 0, 0, 1205, 1210, 3, 116, 58, 0, 1206, 1207, 5, 117, 0, 0, 1207, 1209, 3, 116, 58, 0, 1208, 1206, 1, 0, 0, 0, 1209, 1212, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1214, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1213, 1215, 5, 117, 0, 0, 1214, 1213, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 139, 1, 0, 0, 0, 1216, 1217, 3, 156, 78, 0, 1217, 141, 1, 0, 0, 0, 1218, 1227, 5, 107, 0, 0, 1219, 1220, 5, 121, 0, 0, 1220, 1227, 7, 12, 0, 0, 1221, 1222, 5, 109, 0, 0, 1222, 1224, 5, 121, 0, 0, 1223, 1225, 7, 12, 0, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1227, 1, 0, 0, 0, 1226, 1218, 1, 0, 0, 0, 1226, 1219, 1, 0, 0, 0, 1226, 1221, 1, 0, 0, 0, 1227, 143, 1, 0, 0, 0, 1228, 1230, 7, 13, 0, 0, 1229, 1228, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1237, 1, 0, 0, 0, 1231, 1238, 3, 142, 71, 0, 1232, 1238, 5, 108, 0, 0, 1233, 1238, 5, 109, 0, 0, 1234, 1238, 5, 110, 0, 0, 1235, 1238, 5, 44, 0, 0, 1236, 1238, 5, 58, 0, 0, 1237, 1231, 1, 0, 0, 0, 1237, 1232, 1, 0, 0, 0, 1237, 1233, 1, 0, 0, 0, 1237, 1234, 1, 0, 0, 0, 1237, 1235, 1, 0, 0, 0, 1237, 1236, 1, 0, 0, 0, 1238, 145, 1, 0, 0, 0, 1239, 1243, 3, 144, 72, 0, 1240, 1243, 5, 111, 0, 0, 1241, 1243, 5, 60, 0, 0, 1242, 1239, 1, 0, 0, 0, 1242, 1240, 1, 0, 0, 0, 1242, 1241, 1, 0, 0, 0, 1243, 147, 1, 0, 0, 0, 1244, 1245, 7, 14, 0, 0, 1245, 149, 1, 0, 0, 0, 1246, 1247, 7, 15, 0, 0, 1247, 151, 1, 0, 0, 0, 1248, 1249, 7, 16, 0, 0, 1249, 153, 1, 0, 0, 0, 1250, 1253, 5, 106, 0, 0, 1251, 1253, 3, 152, 76, 0, 1252, 1250, 1, 0, 0, 0, 1252, 1251, 1, 0, 0, 0, 1253, 155, 1, 0, 0, 0, 1254, 1258, 5, 106, 0, 0, 1255, 1258, 3, 148, 74, 0, 1256, 1258, 3, 150, 75, 0, 1257, 1254, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 157, 1, 0, 0, 0, 1259, 1260, 3, 160, 80, 0, 1260, 1261, 5, 123, 0, 0, 1261, 1262, 3, 144, 72, 0, 1262, 159, 1, 0, 0, 0, 1263, 1266, 5, 111, 0, 0, 1264, 1266, 3, 162, 81, 0, 1265, 1263, 1, 0, 0, 0, 1265, 1264, 1, 0, 0, 0, 1266, 161, 1, 0, 0, 0, 1267, 1271, 5, 143, 0, 0, 1268, 1270, 3, 164, 82, 0, 1269, 1268, 1, 0, 0, 0, 1270, 1273, 1, 0, 0, 0, 1271, 1269, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1274, 1, 0, 0, 0, 1273, 1271, 1, 0, 0, 0, 1274, 1275, 5, 145, 0, 0, 1275, 163, 1, 0, 0, 0, 1276, 1277, 5, 158, 0, 0, 1277, 1278, 3, 116, 58, 0, 1278, 1279, 5, 148, 0, 0, 1279, 1282, 1, 0, 0, 0, 1280, 1282, 5, 157, 0, 0, 1281, 1276, 1, 0, 0, 0, 1281, 1280, 1, 0, 0, 0, 1282, 165, 1, 0, 0, 0, 1283, 1287, 5, 144, 0, 0, 1284, 1286, 3, 168, 84, 0, 1285, 1284, 1, 0, 0, 0, 1286, 1289, 1, 0, 0, 0, 1287, 1285, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1290, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1290, 1291, 5, 0, 0, 1, 1291, 167, 1, 0, 0, 0, 1292, 1293, 5, 160, 0, 0, 1293, 1294, 3, 116, 58, 0, 1294, 1295, 5, 148, 0, 0, 1295, 1298, 1, 0, 0, 0, 1296, 1298, 5, 159, 0, 0, 1297, 1292, 1, 0, 0, 0, 1297, 1296, 1, 0, 0, 0, 1298, 169, 1, 0, 0, 0, 166, 173, 180, 189, 196, 200, 214, 218, 221, 225, 228, 235, 239, 248, 253, 262, 270, 277, 281, 287, 292, 300, 307, 313, 325, 333, 347, 351, 356, 366, 375, 378, 382, 385, 389, 392, 395, 398, 401, 405, 409, 412, 415, 418, 422, 425, 434, 440, 461, 478, 495, 501, 507, 518, 520, 531, 534, 540, 548, 554, 556, 560, 565, 568, 571, 575, 579, 582, 584, 587, 591, 595, 598, 600, 602, 607, 618, 624, 631, 636, 640, 644, 650, 652, 659, 667, 670, 673, 692, 706, 722, 726, 737, 741, 752, 756, 763, 767, 774, 778, 783, 792, 796, 820, 837, 843, 846, 849, 859, 865, 868, 871, 879, 882, 886, 889, 903, 920, 925, 935, 941, 948, 960, 964, 967, 976, 990, 1006, 1035, 1043, 1045, 1047, 1056, 1060, 1069, 1073, 1077, 1082, 1089, 1100, 1109, 1116, 1129, 1136, 1140, 1152, 1157, 1166, 1178, 1184, 1188, 1194, 1201, 1210, 1214, 1224, 1226, 1229, 1237, 1242, 1252, 1257, 1265, 1271, 1281, 1287, 1297] \ No newline at end of file diff --git a/hogql_parser/HogQLParserBaseVisitor.h b/hogql_parser/HogQLParserBaseVisitor.h index d46bc2387ff6e..1d6db1b4d54e1 100644 --- a/hogql_parser/HogQLParserBaseVisitor.h +++ b/hogql_parser/HogQLParserBaseVisitor.h @@ -407,6 +407,10 @@ class HogQLParserBaseVisitor : public HogQLParserVisitor { return visitChildren(ctx); } + virtual std::any visitColumnExprPlaceholder(HogQLParser::ColumnExprPlaceholderContext *ctx) override { + return visitChildren(ctx); + } + virtual std::any visitColumnExprNullish(HogQLParser::ColumnExprNullishContext *ctx) override { return visitChildren(ctx); } @@ -563,10 +567,6 @@ class HogQLParserBaseVisitor : public HogQLParserVisitor { return visitChildren(ctx); } - virtual std::any visitPlaceholder(HogQLParser::PlaceholderContext *ctx) override { - return visitChildren(ctx); - } - virtual std::any visitString(HogQLParser::StringContext *ctx) override { return visitChildren(ctx); } diff --git a/hogql_parser/HogQLParserVisitor.h b/hogql_parser/HogQLParserVisitor.h index 2cbe2f933eb18..706266921fcef 100644 --- a/hogql_parser/HogQLParserVisitor.h +++ b/hogql_parser/HogQLParserVisitor.h @@ -215,6 +215,8 @@ class HogQLParserVisitor : public antlr4::tree::AbstractParseTreeVisitor { virtual std::any visitColumnExprTimestamp(HogQLParser::ColumnExprTimestampContext *context) = 0; + virtual std::any visitColumnExprPlaceholder(HogQLParser::ColumnExprPlaceholderContext *context) = 0; + virtual std::any visitColumnExprNullish(HogQLParser::ColumnExprNullishContext *context) = 0; virtual std::any visitColumnExprAnd(HogQLParser::ColumnExprAndContext *context) = 0; @@ -293,8 +295,6 @@ class HogQLParserVisitor : public antlr4::tree::AbstractParseTreeVisitor { virtual std::any visitEnumValue(HogQLParser::EnumValueContext *context) = 0; - virtual std::any visitPlaceholder(HogQLParser::PlaceholderContext *context) = 0; - virtual std::any visitString(HogQLParser::StringContext *context) = 0; virtual std::any visitTemplateString(HogQLParser::TemplateStringContext *context) = 0; diff --git a/hogql_parser/parser.cpp b/hogql_parser/parser.cpp index c4f4d7bf4fcd1..844ba0eca911f 100644 --- a/hogql_parser/parser.cpp +++ b/hogql_parser/parser.cpp @@ -846,7 +846,7 @@ class HogQLParseTreeConverter : public HogQLParserBaseVisitor { return visit(select_stmt_ctx); } - auto placeholder_ctx = ctx->placeholder(); + auto placeholder_ctx = ctx->placeholder; if (placeholder_ctx) { return visitAsPyObject(placeholder_ctx); } @@ -1429,7 +1429,7 @@ class HogQLParseTreeConverter : public HogQLParserBaseVisitor { } VISIT(RatioExpr) { - auto placeholder_ctx = ctx->placeholder(); + auto placeholder_ctx = ctx->placeholder; if (placeholder_ctx) { return visitAsPyObject(placeholder_ctx); } @@ -2195,6 +2195,19 @@ class HogQLParseTreeConverter : public HogQLParserBaseVisitor { VISIT(ColumnExprIdentifier) { return visit(ctx->columnIdentifier()); } + VISIT(ColumnExprPlaceholder) { + auto nested_identifier_ctx = ctx->nestedIdentifier(); + vector nested = + nested_identifier_ctx ? any_cast>(visit(nested_identifier_ctx)) : vector(); + + PyObject* field = build_ast_node("Field", "{s:N}", "chain", X_PyList_FromStrings(nested)); + PyObject* value = build_ast_node("ExprStatement", "{s:O}", "expr", field); + PyObject* declarations = PyList_New(1); + if (!declarations) throw PyInternalError(); + PyList_SET_ITEM(declarations, 0, value); + RETURN_NEW_AST_NODE("Block", "{s:O}", "declarations", declarations); + } + VISIT(ColumnExprBlock) { return visit(ctx->block()); } VISIT(ColumnExprFunction) { @@ -2300,10 +2313,6 @@ class HogQLParseTreeConverter : public HogQLParserBaseVisitor { } VISIT(ColumnIdentifier) { - auto placeholder_ctx = ctx->placeholder(); - if (placeholder_ctx) { - return visitAsPyObject(placeholder_ctx); - } auto table_identifier_ctx = ctx->tableIdentifier(); auto nested_identifier_ctx = ctx->nestedIdentifier(); vector table = @@ -2336,7 +2345,7 @@ class HogQLParseTreeConverter : public HogQLParserBaseVisitor { VISIT(TableExprSubquery) { return visit(ctx->selectUnionStmt()); } - VISIT(TableExprPlaceholder) { return visitAsPyObject(ctx->placeholder()); } + VISIT(TableExprPlaceholder) { return visitAsPyObject(ctx->placeholder); } VISIT(TableExprAlias) { auto alias_ctx = ctx->alias(); @@ -2571,8 +2580,6 @@ class HogQLParseTreeConverter : public HogQLParserBaseVisitor { RETURN_NEW_AST_NODE("HogQLXTag", "{s:s#,s:N}", "kind", opening.data(), opening.size(), "attributes", attributes); } - VISIT(Placeholder) { return visit(ctx->block()); } - VISIT_UNSUPPORTED(EnumValue) VISIT(ColumnExprNullish) { diff --git a/posthog/hogql/grammar/HogQLParser.g4 b/posthog/hogql/grammar/HogQLParser.g4 index 40d9d4342b5fc..21dc8004eaad7 100644 --- a/posthog/hogql/grammar/HogQLParser.g4 +++ b/posthog/hogql/grammar/HogQLParser.g4 @@ -54,7 +54,7 @@ kvPairList: kvPair (COMMA kvPair)* COMMA?; select: (selectUnionStmt | selectStmt | hogqlxTagElement) EOF; selectUnionStmt: selectStmtWithParens (UNION ALL selectStmtWithParens)*; -selectStmtWithParens: selectStmt | LPAREN selectUnionStmt RPAREN | placeholder; +selectStmtWithParens: selectStmt | LPAREN selectUnionStmt RPAREN | placeholder=block; selectStmt: with=withClause? @@ -117,7 +117,7 @@ joinConstraintClause sampleClause: SAMPLE ratioExpr (OFFSET ratioExpr)?; orderExprList: orderExpr (COMMA orderExpr)*; orderExpr: columnExpr (ASCENDING | DESCENDING | DESC)? (NULLS (FIRST | LAST))? (COLLATE STRING_LITERAL)?; -ratioExpr: placeholder | numberLiteral (SLASH numberLiteral)?; +ratioExpr: placeholder=block | numberLiteral (SLASH numberLiteral)?; settingExprList: settingExpr (COMMA settingExpr)*; settingExpr: identifier EQ_SINGLE literal; @@ -207,8 +207,9 @@ columnExpr | LBRACKET columnExprList? RBRACKET # ColumnExprArray | LBRACE (kvPairList)? RBRACE # ColumnExprDict | columnLambdaExpr # ColumnExprLambda - | columnIdentifier # ColumnExprIdentifier + | LBRACE nestedIdentifier RBRACE # ColumnExprPlaceholder // Faster to parse than block | block # ColumnExprBlock + | columnIdentifier # ColumnExprIdentifier ; columnLambdaExpr: @@ -242,7 +243,7 @@ withExpr // HogQL allows unlimited ("*") nestedIdentifier-s "properties.b.a.a.w.a.s". // We parse and convert "databaseIdentifier.tableIdentifier.columnIdentifier.nestedIdentifier.*" // to just one ast.Field(chain=['a','b','columnIdentifier','on','and','on']). -columnIdentifier: placeholder | ((tableIdentifier DOT)? nestedIdentifier); +columnIdentifier: ((tableIdentifier DOT)? nestedIdentifier); nestedIdentifier: identifier (DOT identifier)*; tableExpr : tableIdentifier # TableExprIdentifier @@ -250,7 +251,7 @@ tableExpr | LPAREN selectUnionStmt RPAREN # TableExprSubquery | tableExpr (alias | AS identifier) # TableExprAlias | hogqlxTagElement # TableExprTag - | placeholder # TableExprPlaceholder + | placeholder=block # TableExprPlaceholder ; tableFunctionExpr: identifier LPAREN tableArgList? RPAREN; tableIdentifier: (databaseIdentifier DOT)? identifier; @@ -294,7 +295,6 @@ keywordForAlias alias: IDENTIFIER | keywordForAlias; // |interval| can't be an alias, otherwise 'INTERVAL 1 SOMETHING' becomes ambiguous. identifier: IDENTIFIER | interval | keyword; enumValue: string EQ_SINGLE numberLiteral; -placeholder: block; string: STRING_LITERAL | templateString; templateString : QUOTE_SINGLE_TEMPLATE stringContents* QUOTE_SINGLE ; diff --git a/posthog/hogql/grammar/HogQLParser.interp b/posthog/hogql/grammar/HogQLParser.interp index ebb7058a58df9..a666065c515a1 100644 --- a/posthog/hogql/grammar/HogQLParser.interp +++ b/posthog/hogql/grammar/HogQLParser.interp @@ -405,7 +405,6 @@ keywordForAlias alias identifier enumValue -placeholder string templateString stringContents @@ -414,4 +413,4 @@ stringContentsFull atn: -[4, 1, 160, 1302, 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, 1, 0, 5, 0, 174, 8, 0, 10, 0, 12, 0, 177, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 183, 8, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 192, 8, 3, 1, 4, 1, 4, 1, 4, 5, 4, 197, 8, 4, 10, 4, 12, 4, 200, 9, 4, 1, 4, 3, 4, 203, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 217, 8, 5, 1, 6, 1, 6, 3, 6, 221, 8, 6, 1, 6, 3, 6, 224, 8, 6, 1, 7, 1, 7, 3, 7, 228, 8, 7, 1, 7, 3, 7, 231, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 238, 8, 8, 1, 8, 1, 8, 3, 8, 242, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 249, 8, 9, 10, 9, 12, 9, 252, 9, 9, 1, 9, 1, 9, 3, 9, 256, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 265, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 273, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 280, 8, 12, 1, 12, 1, 12, 3, 12, 284, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 290, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 295, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 303, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 310, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 316, 8, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 328, 8, 16, 1, 17, 1, 17, 1, 18, 1, 18, 5, 18, 334, 8, 18, 10, 18, 12, 18, 337, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 5, 20, 348, 8, 20, 10, 20, 12, 20, 351, 9, 20, 1, 20, 3, 20, 354, 8, 20, 1, 21, 1, 21, 1, 21, 3, 21, 359, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 367, 8, 22, 10, 22, 12, 22, 370, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 378, 8, 23, 1, 24, 3, 24, 381, 8, 24, 1, 24, 1, 24, 3, 24, 385, 8, 24, 1, 24, 3, 24, 388, 8, 24, 1, 24, 1, 24, 3, 24, 392, 8, 24, 1, 24, 3, 24, 395, 8, 24, 1, 24, 3, 24, 398, 8, 24, 1, 24, 3, 24, 401, 8, 24, 1, 24, 3, 24, 404, 8, 24, 1, 24, 1, 24, 3, 24, 408, 8, 24, 1, 24, 1, 24, 3, 24, 412, 8, 24, 1, 24, 3, 24, 415, 8, 24, 1, 24, 3, 24, 418, 8, 24, 1, 24, 3, 24, 421, 8, 24, 1, 24, 1, 24, 3, 24, 425, 8, 24, 1, 24, 3, 24, 428, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 437, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 443, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 462, 8, 29, 10, 29, 12, 29, 465, 9, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 481, 8, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 498, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 504, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 510, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 521, 8, 36, 3, 36, 523, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 534, 8, 39, 1, 39, 3, 39, 537, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 543, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 551, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 557, 8, 39, 10, 39, 12, 39, 560, 9, 39, 1, 40, 3, 40, 563, 8, 40, 1, 40, 1, 40, 1, 40, 3, 40, 568, 8, 40, 1, 40, 3, 40, 571, 8, 40, 1, 40, 3, 40, 574, 8, 40, 1, 40, 1, 40, 3, 40, 578, 8, 40, 1, 40, 1, 40, 3, 40, 582, 8, 40, 1, 40, 3, 40, 585, 8, 40, 3, 40, 587, 8, 40, 1, 40, 3, 40, 590, 8, 40, 1, 40, 1, 40, 3, 40, 594, 8, 40, 1, 40, 1, 40, 3, 40, 598, 8, 40, 1, 40, 3, 40, 601, 8, 40, 3, 40, 603, 8, 40, 3, 40, 605, 8, 40, 1, 41, 1, 41, 1, 41, 3, 41, 610, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 621, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 627, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 632, 8, 44, 10, 44, 12, 44, 635, 9, 44, 1, 45, 1, 45, 3, 45, 639, 8, 45, 1, 45, 1, 45, 3, 45, 643, 8, 45, 1, 45, 1, 45, 3, 45, 647, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 653, 8, 46, 3, 46, 655, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 660, 8, 47, 10, 47, 12, 47, 663, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 3, 49, 670, 8, 49, 1, 49, 3, 49, 673, 8, 49, 1, 49, 3, 49, 676, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 695, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 709, 8, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 723, 8, 56, 10, 56, 12, 56, 726, 9, 56, 1, 56, 3, 56, 729, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 738, 8, 56, 10, 56, 12, 56, 741, 9, 56, 1, 56, 3, 56, 744, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 753, 8, 56, 10, 56, 12, 56, 756, 9, 56, 1, 56, 3, 56, 759, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 766, 8, 56, 1, 56, 1, 56, 3, 56, 770, 8, 56, 1, 57, 1, 57, 1, 57, 5, 57, 775, 8, 57, 10, 57, 12, 57, 778, 9, 57, 1, 57, 3, 57, 781, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 786, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 4, 58, 793, 8, 58, 11, 58, 12, 58, 794, 1, 58, 1, 58, 3, 58, 799, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 823, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 840, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 846, 8, 58, 1, 58, 3, 58, 849, 8, 58, 1, 58, 3, 58, 852, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 862, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 868, 8, 58, 1, 58, 3, 58, 871, 8, 58, 1, 58, 3, 58, 874, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 882, 8, 58, 1, 58, 3, 58, 885, 8, 58, 1, 58, 1, 58, 3, 58, 889, 8, 58, 1, 58, 3, 58, 892, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 906, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 923, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 928, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 934, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 940, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 947, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 959, 8, 58, 1, 58, 1, 58, 3, 58, 963, 8, 58, 1, 58, 3, 58, 966, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 975, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 989, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1005, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1034, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1042, 8, 58, 5, 58, 1044, 8, 58, 10, 58, 12, 58, 1047, 9, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1053, 8, 59, 10, 59, 12, 59, 1056, 9, 59, 1, 59, 3, 59, 1059, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1066, 8, 59, 10, 59, 12, 59, 1069, 9, 59, 1, 59, 3, 59, 1072, 8, 59, 1, 59, 1, 59, 3, 59, 1076, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1081, 8, 59, 1, 60, 1, 60, 1, 60, 5, 60, 1086, 8, 60, 10, 60, 12, 60, 1089, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1097, 8, 60, 10, 60, 12, 60, 1100, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1108, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1115, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1128, 8, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1133, 8, 62, 10, 62, 12, 62, 1136, 9, 62, 1, 62, 3, 62, 1139, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1151, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1157, 8, 64, 1, 64, 3, 64, 1160, 8, 64, 1, 65, 1, 65, 1, 65, 5, 65, 1165, 8, 65, 10, 65, 12, 65, 1168, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1179, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1185, 8, 66, 5, 66, 1187, 8, 66, 10, 66, 12, 66, 1190, 9, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1195, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1202, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 5, 69, 1209, 8, 69, 10, 69, 12, 69, 1212, 9, 69, 1, 69, 3, 69, 1215, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1225, 8, 71, 3, 71, 1227, 8, 71, 1, 72, 3, 72, 1230, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1238, 8, 72, 1, 73, 1, 73, 1, 73, 3, 73, 1243, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1253, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 1258, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, 3, 81, 1268, 8, 81, 1, 82, 1, 82, 5, 82, 1272, 8, 82, 10, 82, 12, 82, 1275, 9, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 1284, 8, 83, 1, 84, 1, 84, 5, 84, 1288, 8, 84, 10, 84, 12, 84, 1291, 9, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 3, 85, 1300, 8, 85, 1, 85, 0, 3, 78, 116, 132, 86, 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, 0, 17, 2, 0, 31, 31, 36, 36, 2, 0, 18, 18, 75, 75, 2, 0, 45, 45, 52, 52, 3, 0, 1, 1, 4, 4, 8, 8, 4, 0, 1, 1, 3, 4, 8, 8, 81, 81, 2, 0, 52, 52, 74, 74, 2, 0, 1, 1, 4, 4, 2, 0, 7, 7, 22, 23, 2, 0, 30, 30, 50, 50, 2, 0, 72, 72, 77, 77, 3, 0, 10, 10, 51, 51, 91, 91, 2, 0, 42, 42, 54, 54, 1, 0, 108, 109, 2, 0, 119, 119, 140, 140, 7, 0, 21, 21, 39, 39, 56, 57, 71, 71, 79, 79, 98, 98, 104, 104, 17, 0, 1, 13, 15, 20, 22, 28, 30, 30, 32, 35, 37, 38, 40, 43, 45, 52, 54, 55, 59, 59, 61, 70, 72, 78, 80, 84, 86, 93, 95, 97, 99, 100, 102, 103, 4, 0, 20, 20, 30, 30, 40, 40, 49, 49, 1475, 0, 175, 1, 0, 0, 0, 2, 182, 1, 0, 0, 0, 4, 184, 1, 0, 0, 0, 6, 186, 1, 0, 0, 0, 8, 193, 1, 0, 0, 0, 10, 216, 1, 0, 0, 0, 12, 218, 1, 0, 0, 0, 14, 225, 1, 0, 0, 0, 16, 232, 1, 0, 0, 0, 18, 245, 1, 0, 0, 0, 20, 257, 1, 0, 0, 0, 22, 266, 1, 0, 0, 0, 24, 274, 1, 0, 0, 0, 26, 296, 1, 0, 0, 0, 28, 311, 1, 0, 0, 0, 30, 320, 1, 0, 0, 0, 32, 325, 1, 0, 0, 0, 34, 329, 1, 0, 0, 0, 36, 331, 1, 0, 0, 0, 38, 340, 1, 0, 0, 0, 40, 344, 1, 0, 0, 0, 42, 358, 1, 0, 0, 0, 44, 362, 1, 0, 0, 0, 46, 377, 1, 0, 0, 0, 48, 380, 1, 0, 0, 0, 50, 429, 1, 0, 0, 0, 52, 432, 1, 0, 0, 0, 54, 438, 1, 0, 0, 0, 56, 442, 1, 0, 0, 0, 58, 448, 1, 0, 0, 0, 60, 466, 1, 0, 0, 0, 62, 469, 1, 0, 0, 0, 64, 472, 1, 0, 0, 0, 66, 482, 1, 0, 0, 0, 68, 485, 1, 0, 0, 0, 70, 489, 1, 0, 0, 0, 72, 522, 1, 0, 0, 0, 74, 524, 1, 0, 0, 0, 76, 527, 1, 0, 0, 0, 78, 542, 1, 0, 0, 0, 80, 604, 1, 0, 0, 0, 82, 609, 1, 0, 0, 0, 84, 620, 1, 0, 0, 0, 86, 622, 1, 0, 0, 0, 88, 628, 1, 0, 0, 0, 90, 636, 1, 0, 0, 0, 92, 654, 1, 0, 0, 0, 94, 656, 1, 0, 0, 0, 96, 664, 1, 0, 0, 0, 98, 669, 1, 0, 0, 0, 100, 677, 1, 0, 0, 0, 102, 681, 1, 0, 0, 0, 104, 685, 1, 0, 0, 0, 106, 694, 1, 0, 0, 0, 108, 708, 1, 0, 0, 0, 110, 710, 1, 0, 0, 0, 112, 769, 1, 0, 0, 0, 114, 771, 1, 0, 0, 0, 116, 933, 1, 0, 0, 0, 118, 1075, 1, 0, 0, 0, 120, 1114, 1, 0, 0, 0, 122, 1127, 1, 0, 0, 0, 124, 1129, 1, 0, 0, 0, 126, 1150, 1, 0, 0, 0, 128, 1159, 1, 0, 0, 0, 130, 1161, 1, 0, 0, 0, 132, 1178, 1, 0, 0, 0, 134, 1191, 1, 0, 0, 0, 136, 1201, 1, 0, 0, 0, 138, 1205, 1, 0, 0, 0, 140, 1216, 1, 0, 0, 0, 142, 1226, 1, 0, 0, 0, 144, 1229, 1, 0, 0, 0, 146, 1242, 1, 0, 0, 0, 148, 1244, 1, 0, 0, 0, 150, 1246, 1, 0, 0, 0, 152, 1248, 1, 0, 0, 0, 154, 1252, 1, 0, 0, 0, 156, 1257, 1, 0, 0, 0, 158, 1259, 1, 0, 0, 0, 160, 1263, 1, 0, 0, 0, 162, 1267, 1, 0, 0, 0, 164, 1269, 1, 0, 0, 0, 166, 1283, 1, 0, 0, 0, 168, 1285, 1, 0, 0, 0, 170, 1299, 1, 0, 0, 0, 172, 174, 3, 2, 1, 0, 173, 172, 1, 0, 0, 0, 174, 177, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 175, 176, 1, 0, 0, 0, 176, 178, 1, 0, 0, 0, 177, 175, 1, 0, 0, 0, 178, 179, 5, 0, 0, 1, 179, 1, 1, 0, 0, 0, 180, 183, 3, 6, 3, 0, 181, 183, 3, 10, 5, 0, 182, 180, 1, 0, 0, 0, 182, 181, 1, 0, 0, 0, 183, 3, 1, 0, 0, 0, 184, 185, 3, 116, 58, 0, 185, 5, 1, 0, 0, 0, 186, 187, 5, 53, 0, 0, 187, 191, 3, 156, 78, 0, 188, 189, 5, 116, 0, 0, 189, 190, 5, 123, 0, 0, 190, 192, 3, 4, 2, 0, 191, 188, 1, 0, 0, 0, 191, 192, 1, 0, 0, 0, 192, 7, 1, 0, 0, 0, 193, 198, 3, 156, 78, 0, 194, 195, 5, 117, 0, 0, 195, 197, 3, 156, 78, 0, 196, 194, 1, 0, 0, 0, 197, 200, 1, 0, 0, 0, 198, 196, 1, 0, 0, 0, 198, 199, 1, 0, 0, 0, 199, 202, 1, 0, 0, 0, 200, 198, 1, 0, 0, 0, 201, 203, 5, 117, 0, 0, 202, 201, 1, 0, 0, 0, 202, 203, 1, 0, 0, 0, 203, 9, 1, 0, 0, 0, 204, 217, 3, 12, 6, 0, 205, 217, 3, 14, 7, 0, 206, 217, 3, 18, 9, 0, 207, 217, 3, 20, 10, 0, 208, 217, 3, 22, 11, 0, 209, 217, 3, 26, 13, 0, 210, 217, 3, 24, 12, 0, 211, 217, 3, 28, 14, 0, 212, 217, 3, 30, 15, 0, 213, 217, 3, 36, 18, 0, 214, 217, 3, 32, 16, 0, 215, 217, 3, 34, 17, 0, 216, 204, 1, 0, 0, 0, 216, 205, 1, 0, 0, 0, 216, 206, 1, 0, 0, 0, 216, 207, 1, 0, 0, 0, 216, 208, 1, 0, 0, 0, 216, 209, 1, 0, 0, 0, 216, 210, 1, 0, 0, 0, 216, 211, 1, 0, 0, 0, 216, 212, 1, 0, 0, 0, 216, 213, 1, 0, 0, 0, 216, 214, 1, 0, 0, 0, 216, 215, 1, 0, 0, 0, 217, 11, 1, 0, 0, 0, 218, 220, 5, 73, 0, 0, 219, 221, 3, 4, 2, 0, 220, 219, 1, 0, 0, 0, 220, 221, 1, 0, 0, 0, 221, 223, 1, 0, 0, 0, 222, 224, 5, 151, 0, 0, 223, 222, 1, 0, 0, 0, 223, 224, 1, 0, 0, 0, 224, 13, 1, 0, 0, 0, 225, 227, 5, 85, 0, 0, 226, 228, 3, 4, 2, 0, 227, 226, 1, 0, 0, 0, 227, 228, 1, 0, 0, 0, 228, 230, 1, 0, 0, 0, 229, 231, 5, 151, 0, 0, 230, 229, 1, 0, 0, 0, 230, 231, 1, 0, 0, 0, 231, 15, 1, 0, 0, 0, 232, 241, 5, 14, 0, 0, 233, 234, 5, 131, 0, 0, 234, 237, 3, 156, 78, 0, 235, 236, 5, 116, 0, 0, 236, 238, 3, 156, 78, 0, 237, 235, 1, 0, 0, 0, 237, 238, 1, 0, 0, 0, 238, 239, 1, 0, 0, 0, 239, 240, 5, 150, 0, 0, 240, 242, 1, 0, 0, 0, 241, 233, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 243, 1, 0, 0, 0, 243, 244, 3, 36, 18, 0, 244, 17, 1, 0, 0, 0, 245, 246, 5, 94, 0, 0, 246, 250, 3, 36, 18, 0, 247, 249, 3, 16, 8, 0, 248, 247, 1, 0, 0, 0, 249, 252, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 250, 251, 1, 0, 0, 0, 251, 255, 1, 0, 0, 0, 252, 250, 1, 0, 0, 0, 253, 254, 5, 29, 0, 0, 254, 256, 3, 36, 18, 0, 255, 253, 1, 0, 0, 0, 255, 256, 1, 0, 0, 0, 256, 19, 1, 0, 0, 0, 257, 258, 5, 41, 0, 0, 258, 259, 5, 131, 0, 0, 259, 260, 3, 4, 2, 0, 260, 261, 5, 150, 0, 0, 261, 264, 3, 10, 5, 0, 262, 263, 5, 25, 0, 0, 263, 265, 3, 10, 5, 0, 264, 262, 1, 0, 0, 0, 264, 265, 1, 0, 0, 0, 265, 21, 1, 0, 0, 0, 266, 267, 5, 101, 0, 0, 267, 268, 5, 131, 0, 0, 268, 269, 3, 4, 2, 0, 269, 270, 5, 150, 0, 0, 270, 272, 3, 10, 5, 0, 271, 273, 5, 151, 0, 0, 272, 271, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 23, 1, 0, 0, 0, 274, 275, 5, 33, 0, 0, 275, 279, 5, 131, 0, 0, 276, 280, 3, 6, 3, 0, 277, 280, 3, 30, 15, 0, 278, 280, 3, 4, 2, 0, 279, 276, 1, 0, 0, 0, 279, 277, 1, 0, 0, 0, 279, 278, 1, 0, 0, 0, 279, 280, 1, 0, 0, 0, 280, 281, 1, 0, 0, 0, 281, 283, 5, 151, 0, 0, 282, 284, 3, 4, 2, 0, 283, 282, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 285, 1, 0, 0, 0, 285, 289, 5, 151, 0, 0, 286, 290, 3, 6, 3, 0, 287, 290, 3, 30, 15, 0, 288, 290, 3, 4, 2, 0, 289, 286, 1, 0, 0, 0, 289, 287, 1, 0, 0, 0, 289, 288, 1, 0, 0, 0, 289, 290, 1, 0, 0, 0, 290, 291, 1, 0, 0, 0, 291, 292, 5, 150, 0, 0, 292, 294, 3, 10, 5, 0, 293, 295, 5, 151, 0, 0, 294, 293, 1, 0, 0, 0, 294, 295, 1, 0, 0, 0, 295, 25, 1, 0, 0, 0, 296, 297, 5, 33, 0, 0, 297, 298, 5, 131, 0, 0, 298, 299, 5, 53, 0, 0, 299, 302, 3, 156, 78, 0, 300, 301, 5, 117, 0, 0, 301, 303, 3, 156, 78, 0, 302, 300, 1, 0, 0, 0, 302, 303, 1, 0, 0, 0, 303, 304, 1, 0, 0, 0, 304, 305, 5, 43, 0, 0, 305, 306, 3, 4, 2, 0, 306, 307, 5, 150, 0, 0, 307, 309, 3, 10, 5, 0, 308, 310, 5, 151, 0, 0, 309, 308, 1, 0, 0, 0, 309, 310, 1, 0, 0, 0, 310, 27, 1, 0, 0, 0, 311, 312, 7, 0, 0, 0, 312, 313, 3, 156, 78, 0, 313, 315, 5, 131, 0, 0, 314, 316, 3, 8, 4, 0, 315, 314, 1, 0, 0, 0, 315, 316, 1, 0, 0, 0, 316, 317, 1, 0, 0, 0, 317, 318, 5, 150, 0, 0, 318, 319, 3, 36, 18, 0, 319, 29, 1, 0, 0, 0, 320, 321, 3, 4, 2, 0, 321, 322, 5, 116, 0, 0, 322, 323, 5, 123, 0, 0, 323, 324, 3, 4, 2, 0, 324, 31, 1, 0, 0, 0, 325, 327, 3, 4, 2, 0, 326, 328, 5, 151, 0, 0, 327, 326, 1, 0, 0, 0, 327, 328, 1, 0, 0, 0, 328, 33, 1, 0, 0, 0, 329, 330, 5, 151, 0, 0, 330, 35, 1, 0, 0, 0, 331, 335, 5, 129, 0, 0, 332, 334, 3, 2, 1, 0, 333, 332, 1, 0, 0, 0, 334, 337, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 338, 1, 0, 0, 0, 337, 335, 1, 0, 0, 0, 338, 339, 5, 148, 0, 0, 339, 37, 1, 0, 0, 0, 340, 341, 3, 4, 2, 0, 341, 342, 5, 116, 0, 0, 342, 343, 3, 4, 2, 0, 343, 39, 1, 0, 0, 0, 344, 349, 3, 38, 19, 0, 345, 346, 5, 117, 0, 0, 346, 348, 3, 38, 19, 0, 347, 345, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 349, 350, 1, 0, 0, 0, 350, 353, 1, 0, 0, 0, 351, 349, 1, 0, 0, 0, 352, 354, 5, 117, 0, 0, 353, 352, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 41, 1, 0, 0, 0, 355, 359, 3, 44, 22, 0, 356, 359, 3, 48, 24, 0, 357, 359, 3, 120, 60, 0, 358, 355, 1, 0, 0, 0, 358, 356, 1, 0, 0, 0, 358, 357, 1, 0, 0, 0, 359, 360, 1, 0, 0, 0, 360, 361, 5, 0, 0, 1, 361, 43, 1, 0, 0, 0, 362, 368, 3, 46, 23, 0, 363, 364, 5, 96, 0, 0, 364, 365, 5, 1, 0, 0, 365, 367, 3, 46, 23, 0, 366, 363, 1, 0, 0, 0, 367, 370, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 45, 1, 0, 0, 0, 370, 368, 1, 0, 0, 0, 371, 378, 3, 48, 24, 0, 372, 373, 5, 131, 0, 0, 373, 374, 3, 44, 22, 0, 374, 375, 5, 150, 0, 0, 375, 378, 1, 0, 0, 0, 376, 378, 3, 160, 80, 0, 377, 371, 1, 0, 0, 0, 377, 372, 1, 0, 0, 0, 377, 376, 1, 0, 0, 0, 378, 47, 1, 0, 0, 0, 379, 381, 3, 50, 25, 0, 380, 379, 1, 0, 0, 0, 380, 381, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 384, 5, 80, 0, 0, 383, 385, 5, 24, 0, 0, 384, 383, 1, 0, 0, 0, 384, 385, 1, 0, 0, 0, 385, 387, 1, 0, 0, 0, 386, 388, 3, 52, 26, 0, 387, 386, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 389, 1, 0, 0, 0, 389, 391, 3, 114, 57, 0, 390, 392, 3, 54, 27, 0, 391, 390, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 394, 1, 0, 0, 0, 393, 395, 3, 56, 28, 0, 394, 393, 1, 0, 0, 0, 394, 395, 1, 0, 0, 0, 395, 397, 1, 0, 0, 0, 396, 398, 3, 60, 30, 0, 397, 396, 1, 0, 0, 0, 397, 398, 1, 0, 0, 0, 398, 400, 1, 0, 0, 0, 399, 401, 3, 62, 31, 0, 400, 399, 1, 0, 0, 0, 400, 401, 1, 0, 0, 0, 401, 403, 1, 0, 0, 0, 402, 404, 3, 64, 32, 0, 403, 402, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 407, 1, 0, 0, 0, 405, 406, 5, 103, 0, 0, 406, 408, 7, 1, 0, 0, 407, 405, 1, 0, 0, 0, 407, 408, 1, 0, 0, 0, 408, 411, 1, 0, 0, 0, 409, 410, 5, 103, 0, 0, 410, 412, 5, 90, 0, 0, 411, 409, 1, 0, 0, 0, 411, 412, 1, 0, 0, 0, 412, 414, 1, 0, 0, 0, 413, 415, 3, 66, 33, 0, 414, 413, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 417, 1, 0, 0, 0, 416, 418, 3, 58, 29, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 420, 1, 0, 0, 0, 419, 421, 3, 68, 34, 0, 420, 419, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 424, 1, 0, 0, 0, 422, 425, 3, 72, 36, 0, 423, 425, 3, 74, 37, 0, 424, 422, 1, 0, 0, 0, 424, 423, 1, 0, 0, 0, 424, 425, 1, 0, 0, 0, 425, 427, 1, 0, 0, 0, 426, 428, 3, 76, 38, 0, 427, 426, 1, 0, 0, 0, 427, 428, 1, 0, 0, 0, 428, 49, 1, 0, 0, 0, 429, 430, 5, 103, 0, 0, 430, 431, 3, 124, 62, 0, 431, 51, 1, 0, 0, 0, 432, 433, 5, 89, 0, 0, 433, 436, 5, 109, 0, 0, 434, 435, 5, 103, 0, 0, 435, 437, 5, 86, 0, 0, 436, 434, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 53, 1, 0, 0, 0, 438, 439, 5, 34, 0, 0, 439, 440, 3, 78, 39, 0, 440, 55, 1, 0, 0, 0, 441, 443, 7, 2, 0, 0, 442, 441, 1, 0, 0, 0, 442, 443, 1, 0, 0, 0, 443, 444, 1, 0, 0, 0, 444, 445, 5, 5, 0, 0, 445, 446, 5, 48, 0, 0, 446, 447, 3, 114, 57, 0, 447, 57, 1, 0, 0, 0, 448, 449, 5, 102, 0, 0, 449, 450, 3, 156, 78, 0, 450, 451, 5, 6, 0, 0, 451, 452, 5, 131, 0, 0, 452, 453, 3, 98, 49, 0, 453, 463, 5, 150, 0, 0, 454, 455, 5, 117, 0, 0, 455, 456, 3, 156, 78, 0, 456, 457, 5, 6, 0, 0, 457, 458, 5, 131, 0, 0, 458, 459, 3, 98, 49, 0, 459, 460, 5, 150, 0, 0, 460, 462, 1, 0, 0, 0, 461, 454, 1, 0, 0, 0, 462, 465, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 59, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 466, 467, 5, 70, 0, 0, 467, 468, 3, 116, 58, 0, 468, 61, 1, 0, 0, 0, 469, 470, 5, 100, 0, 0, 470, 471, 3, 116, 58, 0, 471, 63, 1, 0, 0, 0, 472, 473, 5, 37, 0, 0, 473, 480, 5, 11, 0, 0, 474, 475, 7, 1, 0, 0, 475, 476, 5, 131, 0, 0, 476, 477, 3, 114, 57, 0, 477, 478, 5, 150, 0, 0, 478, 481, 1, 0, 0, 0, 479, 481, 3, 114, 57, 0, 480, 474, 1, 0, 0, 0, 480, 479, 1, 0, 0, 0, 481, 65, 1, 0, 0, 0, 482, 483, 5, 38, 0, 0, 483, 484, 3, 116, 58, 0, 484, 67, 1, 0, 0, 0, 485, 486, 5, 65, 0, 0, 486, 487, 5, 11, 0, 0, 487, 488, 3, 88, 44, 0, 488, 69, 1, 0, 0, 0, 489, 490, 5, 65, 0, 0, 490, 491, 5, 11, 0, 0, 491, 492, 3, 114, 57, 0, 492, 71, 1, 0, 0, 0, 493, 494, 5, 55, 0, 0, 494, 497, 3, 116, 58, 0, 495, 496, 5, 117, 0, 0, 496, 498, 3, 116, 58, 0, 497, 495, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 503, 1, 0, 0, 0, 499, 500, 5, 103, 0, 0, 500, 504, 5, 86, 0, 0, 501, 502, 5, 11, 0, 0, 502, 504, 3, 114, 57, 0, 503, 499, 1, 0, 0, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 523, 1, 0, 0, 0, 505, 506, 5, 55, 0, 0, 506, 509, 3, 116, 58, 0, 507, 508, 5, 103, 0, 0, 508, 510, 5, 86, 0, 0, 509, 507, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 5, 62, 0, 0, 512, 513, 3, 116, 58, 0, 513, 523, 1, 0, 0, 0, 514, 515, 5, 55, 0, 0, 515, 516, 3, 116, 58, 0, 516, 517, 5, 62, 0, 0, 517, 520, 3, 116, 58, 0, 518, 519, 5, 11, 0, 0, 519, 521, 3, 114, 57, 0, 520, 518, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 523, 1, 0, 0, 0, 522, 493, 1, 0, 0, 0, 522, 505, 1, 0, 0, 0, 522, 514, 1, 0, 0, 0, 523, 73, 1, 0, 0, 0, 524, 525, 5, 62, 0, 0, 525, 526, 3, 116, 58, 0, 526, 75, 1, 0, 0, 0, 527, 528, 5, 82, 0, 0, 528, 529, 3, 94, 47, 0, 529, 77, 1, 0, 0, 0, 530, 531, 6, 39, -1, 0, 531, 533, 3, 132, 66, 0, 532, 534, 5, 28, 0, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 536, 1, 0, 0, 0, 535, 537, 3, 86, 43, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 543, 1, 0, 0, 0, 538, 539, 5, 131, 0, 0, 539, 540, 3, 78, 39, 0, 540, 541, 5, 150, 0, 0, 541, 543, 1, 0, 0, 0, 542, 530, 1, 0, 0, 0, 542, 538, 1, 0, 0, 0, 543, 558, 1, 0, 0, 0, 544, 545, 10, 3, 0, 0, 545, 546, 3, 82, 41, 0, 546, 547, 3, 78, 39, 4, 547, 557, 1, 0, 0, 0, 548, 550, 10, 4, 0, 0, 549, 551, 3, 80, 40, 0, 550, 549, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 553, 5, 48, 0, 0, 553, 554, 3, 78, 39, 0, 554, 555, 3, 84, 42, 0, 555, 557, 1, 0, 0, 0, 556, 544, 1, 0, 0, 0, 556, 548, 1, 0, 0, 0, 557, 560, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 558, 559, 1, 0, 0, 0, 559, 79, 1, 0, 0, 0, 560, 558, 1, 0, 0, 0, 561, 563, 7, 3, 0, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 571, 5, 45, 0, 0, 565, 567, 5, 45, 0, 0, 566, 568, 7, 3, 0, 0, 567, 566, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 571, 1, 0, 0, 0, 569, 571, 7, 3, 0, 0, 570, 562, 1, 0, 0, 0, 570, 565, 1, 0, 0, 0, 570, 569, 1, 0, 0, 0, 571, 605, 1, 0, 0, 0, 572, 574, 7, 4, 0, 0, 573, 572, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 577, 7, 5, 0, 0, 576, 578, 5, 66, 0, 0, 577, 576, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 587, 1, 0, 0, 0, 579, 581, 7, 5, 0, 0, 580, 582, 5, 66, 0, 0, 581, 580, 1, 0, 0, 0, 581, 582, 1, 0, 0, 0, 582, 584, 1, 0, 0, 0, 583, 585, 7, 4, 0, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 587, 1, 0, 0, 0, 586, 573, 1, 0, 0, 0, 586, 579, 1, 0, 0, 0, 587, 605, 1, 0, 0, 0, 588, 590, 7, 6, 0, 0, 589, 588, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 593, 5, 35, 0, 0, 592, 594, 5, 66, 0, 0, 593, 592, 1, 0, 0, 0, 593, 594, 1, 0, 0, 0, 594, 603, 1, 0, 0, 0, 595, 597, 5, 35, 0, 0, 596, 598, 5, 66, 0, 0, 597, 596, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 600, 1, 0, 0, 0, 599, 601, 7, 6, 0, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 603, 1, 0, 0, 0, 602, 589, 1, 0, 0, 0, 602, 595, 1, 0, 0, 0, 603, 605, 1, 0, 0, 0, 604, 570, 1, 0, 0, 0, 604, 586, 1, 0, 0, 0, 604, 602, 1, 0, 0, 0, 605, 81, 1, 0, 0, 0, 606, 607, 5, 17, 0, 0, 607, 610, 5, 48, 0, 0, 608, 610, 5, 117, 0, 0, 609, 606, 1, 0, 0, 0, 609, 608, 1, 0, 0, 0, 610, 83, 1, 0, 0, 0, 611, 612, 5, 63, 0, 0, 612, 621, 3, 114, 57, 0, 613, 614, 5, 97, 0, 0, 614, 615, 5, 131, 0, 0, 615, 616, 3, 114, 57, 0, 616, 617, 5, 150, 0, 0, 617, 621, 1, 0, 0, 0, 618, 619, 5, 97, 0, 0, 619, 621, 3, 114, 57, 0, 620, 611, 1, 0, 0, 0, 620, 613, 1, 0, 0, 0, 620, 618, 1, 0, 0, 0, 621, 85, 1, 0, 0, 0, 622, 623, 5, 78, 0, 0, 623, 626, 3, 92, 46, 0, 624, 625, 5, 62, 0, 0, 625, 627, 3, 92, 46, 0, 626, 624, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 87, 1, 0, 0, 0, 628, 633, 3, 90, 45, 0, 629, 630, 5, 117, 0, 0, 630, 632, 3, 90, 45, 0, 631, 629, 1, 0, 0, 0, 632, 635, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 89, 1, 0, 0, 0, 635, 633, 1, 0, 0, 0, 636, 638, 3, 116, 58, 0, 637, 639, 7, 7, 0, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 642, 1, 0, 0, 0, 640, 641, 5, 61, 0, 0, 641, 643, 7, 8, 0, 0, 642, 640, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 646, 1, 0, 0, 0, 644, 645, 5, 16, 0, 0, 645, 647, 5, 111, 0, 0, 646, 644, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 91, 1, 0, 0, 0, 648, 655, 3, 160, 80, 0, 649, 652, 3, 144, 72, 0, 650, 651, 5, 152, 0, 0, 651, 653, 3, 144, 72, 0, 652, 650, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 655, 1, 0, 0, 0, 654, 648, 1, 0, 0, 0, 654, 649, 1, 0, 0, 0, 655, 93, 1, 0, 0, 0, 656, 661, 3, 96, 48, 0, 657, 658, 5, 117, 0, 0, 658, 660, 3, 96, 48, 0, 659, 657, 1, 0, 0, 0, 660, 663, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 95, 1, 0, 0, 0, 663, 661, 1, 0, 0, 0, 664, 665, 3, 156, 78, 0, 665, 666, 5, 123, 0, 0, 666, 667, 3, 146, 73, 0, 667, 97, 1, 0, 0, 0, 668, 670, 3, 100, 50, 0, 669, 668, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 1, 0, 0, 0, 671, 673, 3, 102, 51, 0, 672, 671, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 675, 1, 0, 0, 0, 674, 676, 3, 104, 52, 0, 675, 674, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 99, 1, 0, 0, 0, 677, 678, 5, 68, 0, 0, 678, 679, 5, 11, 0, 0, 679, 680, 3, 114, 57, 0, 680, 101, 1, 0, 0, 0, 681, 682, 5, 65, 0, 0, 682, 683, 5, 11, 0, 0, 683, 684, 3, 88, 44, 0, 684, 103, 1, 0, 0, 0, 685, 686, 7, 9, 0, 0, 686, 687, 3, 106, 53, 0, 687, 105, 1, 0, 0, 0, 688, 695, 3, 108, 54, 0, 689, 690, 5, 9, 0, 0, 690, 691, 3, 108, 54, 0, 691, 692, 5, 2, 0, 0, 692, 693, 3, 108, 54, 0, 693, 695, 1, 0, 0, 0, 694, 688, 1, 0, 0, 0, 694, 689, 1, 0, 0, 0, 695, 107, 1, 0, 0, 0, 696, 697, 5, 19, 0, 0, 697, 709, 5, 76, 0, 0, 698, 699, 5, 95, 0, 0, 699, 709, 5, 69, 0, 0, 700, 701, 5, 95, 0, 0, 701, 709, 5, 32, 0, 0, 702, 703, 3, 144, 72, 0, 703, 704, 5, 69, 0, 0, 704, 709, 1, 0, 0, 0, 705, 706, 3, 144, 72, 0, 706, 707, 5, 32, 0, 0, 707, 709, 1, 0, 0, 0, 708, 696, 1, 0, 0, 0, 708, 698, 1, 0, 0, 0, 708, 700, 1, 0, 0, 0, 708, 702, 1, 0, 0, 0, 708, 705, 1, 0, 0, 0, 709, 109, 1, 0, 0, 0, 710, 711, 3, 116, 58, 0, 711, 712, 5, 0, 0, 1, 712, 111, 1, 0, 0, 0, 713, 770, 3, 156, 78, 0, 714, 715, 3, 156, 78, 0, 715, 716, 5, 131, 0, 0, 716, 717, 3, 156, 78, 0, 717, 724, 3, 112, 56, 0, 718, 719, 5, 117, 0, 0, 719, 720, 3, 156, 78, 0, 720, 721, 3, 112, 56, 0, 721, 723, 1, 0, 0, 0, 722, 718, 1, 0, 0, 0, 723, 726, 1, 0, 0, 0, 724, 722, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 728, 1, 0, 0, 0, 726, 724, 1, 0, 0, 0, 727, 729, 5, 117, 0, 0, 728, 727, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 730, 1, 0, 0, 0, 730, 731, 5, 150, 0, 0, 731, 770, 1, 0, 0, 0, 732, 733, 3, 156, 78, 0, 733, 734, 5, 131, 0, 0, 734, 739, 3, 158, 79, 0, 735, 736, 5, 117, 0, 0, 736, 738, 3, 158, 79, 0, 737, 735, 1, 0, 0, 0, 738, 741, 1, 0, 0, 0, 739, 737, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 743, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 744, 5, 117, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 150, 0, 0, 746, 770, 1, 0, 0, 0, 747, 748, 3, 156, 78, 0, 748, 749, 5, 131, 0, 0, 749, 754, 3, 112, 56, 0, 750, 751, 5, 117, 0, 0, 751, 753, 3, 112, 56, 0, 752, 750, 1, 0, 0, 0, 753, 756, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 758, 1, 0, 0, 0, 756, 754, 1, 0, 0, 0, 757, 759, 5, 117, 0, 0, 758, 757, 1, 0, 0, 0, 758, 759, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 761, 5, 150, 0, 0, 761, 770, 1, 0, 0, 0, 762, 763, 3, 156, 78, 0, 763, 765, 5, 131, 0, 0, 764, 766, 3, 114, 57, 0, 765, 764, 1, 0, 0, 0, 765, 766, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 768, 5, 150, 0, 0, 768, 770, 1, 0, 0, 0, 769, 713, 1, 0, 0, 0, 769, 714, 1, 0, 0, 0, 769, 732, 1, 0, 0, 0, 769, 747, 1, 0, 0, 0, 769, 762, 1, 0, 0, 0, 770, 113, 1, 0, 0, 0, 771, 776, 3, 116, 58, 0, 772, 773, 5, 117, 0, 0, 773, 775, 3, 116, 58, 0, 774, 772, 1, 0, 0, 0, 775, 778, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 780, 1, 0, 0, 0, 778, 776, 1, 0, 0, 0, 779, 781, 5, 117, 0, 0, 780, 779, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 115, 1, 0, 0, 0, 782, 783, 6, 58, -1, 0, 783, 785, 5, 12, 0, 0, 784, 786, 3, 116, 58, 0, 785, 784, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 792, 1, 0, 0, 0, 787, 788, 5, 99, 0, 0, 788, 789, 3, 116, 58, 0, 789, 790, 5, 84, 0, 0, 790, 791, 3, 116, 58, 0, 791, 793, 1, 0, 0, 0, 792, 787, 1, 0, 0, 0, 793, 794, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 798, 1, 0, 0, 0, 796, 797, 5, 25, 0, 0, 797, 799, 3, 116, 58, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 5, 26, 0, 0, 801, 934, 1, 0, 0, 0, 802, 803, 5, 13, 0, 0, 803, 804, 5, 131, 0, 0, 804, 805, 3, 116, 58, 0, 805, 806, 5, 6, 0, 0, 806, 807, 3, 112, 56, 0, 807, 808, 5, 150, 0, 0, 808, 934, 1, 0, 0, 0, 809, 810, 5, 20, 0, 0, 810, 934, 5, 111, 0, 0, 811, 812, 5, 46, 0, 0, 812, 813, 3, 116, 58, 0, 813, 814, 3, 148, 74, 0, 814, 934, 1, 0, 0, 0, 815, 816, 5, 83, 0, 0, 816, 817, 5, 131, 0, 0, 817, 818, 3, 116, 58, 0, 818, 819, 5, 34, 0, 0, 819, 822, 3, 116, 58, 0, 820, 821, 5, 33, 0, 0, 821, 823, 3, 116, 58, 0, 822, 820, 1, 0, 0, 0, 822, 823, 1, 0, 0, 0, 823, 824, 1, 0, 0, 0, 824, 825, 5, 150, 0, 0, 825, 934, 1, 0, 0, 0, 826, 827, 5, 87, 0, 0, 827, 934, 5, 111, 0, 0, 828, 829, 5, 92, 0, 0, 829, 830, 5, 131, 0, 0, 830, 831, 7, 10, 0, 0, 831, 832, 3, 162, 81, 0, 832, 833, 5, 34, 0, 0, 833, 834, 3, 116, 58, 0, 834, 835, 5, 150, 0, 0, 835, 934, 1, 0, 0, 0, 836, 837, 3, 156, 78, 0, 837, 839, 5, 131, 0, 0, 838, 840, 3, 114, 57, 0, 839, 838, 1, 0, 0, 0, 839, 840, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 842, 5, 150, 0, 0, 842, 851, 1, 0, 0, 0, 843, 845, 5, 131, 0, 0, 844, 846, 5, 24, 0, 0, 845, 844, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 848, 1, 0, 0, 0, 847, 849, 3, 114, 57, 0, 848, 847, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 852, 5, 150, 0, 0, 851, 843, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 5, 67, 0, 0, 854, 855, 5, 131, 0, 0, 855, 856, 3, 98, 49, 0, 856, 857, 5, 150, 0, 0, 857, 934, 1, 0, 0, 0, 858, 859, 3, 156, 78, 0, 859, 861, 5, 131, 0, 0, 860, 862, 3, 114, 57, 0, 861, 860, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 864, 5, 150, 0, 0, 864, 873, 1, 0, 0, 0, 865, 867, 5, 131, 0, 0, 866, 868, 5, 24, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 870, 1, 0, 0, 0, 869, 871, 3, 114, 57, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 874, 5, 150, 0, 0, 873, 865, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 67, 0, 0, 876, 877, 3, 156, 78, 0, 877, 934, 1, 0, 0, 0, 878, 884, 3, 156, 78, 0, 879, 881, 5, 131, 0, 0, 880, 882, 3, 114, 57, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 885, 5, 150, 0, 0, 884, 879, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 888, 5, 131, 0, 0, 887, 889, 5, 24, 0, 0, 888, 887, 1, 0, 0, 0, 888, 889, 1, 0, 0, 0, 889, 891, 1, 0, 0, 0, 890, 892, 3, 114, 57, 0, 891, 890, 1, 0, 0, 0, 891, 892, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 894, 5, 150, 0, 0, 894, 934, 1, 0, 0, 0, 895, 934, 3, 120, 60, 0, 896, 934, 3, 164, 82, 0, 897, 934, 3, 146, 73, 0, 898, 899, 5, 119, 0, 0, 899, 934, 3, 116, 58, 21, 900, 901, 5, 59, 0, 0, 901, 934, 3, 116, 58, 15, 902, 903, 3, 136, 68, 0, 903, 904, 5, 121, 0, 0, 904, 906, 1, 0, 0, 0, 905, 902, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 934, 5, 113, 0, 0, 908, 909, 5, 131, 0, 0, 909, 910, 3, 44, 22, 0, 910, 911, 5, 150, 0, 0, 911, 934, 1, 0, 0, 0, 912, 913, 5, 131, 0, 0, 913, 914, 3, 116, 58, 0, 914, 915, 5, 150, 0, 0, 915, 934, 1, 0, 0, 0, 916, 917, 5, 131, 0, 0, 917, 918, 3, 114, 57, 0, 918, 919, 5, 150, 0, 0, 919, 934, 1, 0, 0, 0, 920, 922, 5, 130, 0, 0, 921, 923, 3, 114, 57, 0, 922, 921, 1, 0, 0, 0, 922, 923, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 934, 5, 149, 0, 0, 925, 927, 5, 129, 0, 0, 926, 928, 3, 40, 20, 0, 927, 926, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 934, 5, 148, 0, 0, 930, 934, 3, 118, 59, 0, 931, 934, 3, 128, 64, 0, 932, 934, 3, 36, 18, 0, 933, 782, 1, 0, 0, 0, 933, 802, 1, 0, 0, 0, 933, 809, 1, 0, 0, 0, 933, 811, 1, 0, 0, 0, 933, 815, 1, 0, 0, 0, 933, 826, 1, 0, 0, 0, 933, 828, 1, 0, 0, 0, 933, 836, 1, 0, 0, 0, 933, 858, 1, 0, 0, 0, 933, 878, 1, 0, 0, 0, 933, 895, 1, 0, 0, 0, 933, 896, 1, 0, 0, 0, 933, 897, 1, 0, 0, 0, 933, 898, 1, 0, 0, 0, 933, 900, 1, 0, 0, 0, 933, 905, 1, 0, 0, 0, 933, 908, 1, 0, 0, 0, 933, 912, 1, 0, 0, 0, 933, 916, 1, 0, 0, 0, 933, 920, 1, 0, 0, 0, 933, 925, 1, 0, 0, 0, 933, 930, 1, 0, 0, 0, 933, 931, 1, 0, 0, 0, 933, 932, 1, 0, 0, 0, 934, 1045, 1, 0, 0, 0, 935, 939, 10, 20, 0, 0, 936, 940, 5, 113, 0, 0, 937, 940, 5, 152, 0, 0, 938, 940, 5, 139, 0, 0, 939, 936, 1, 0, 0, 0, 939, 937, 1, 0, 0, 0, 939, 938, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 1044, 3, 116, 58, 21, 942, 946, 10, 19, 0, 0, 943, 947, 5, 140, 0, 0, 944, 947, 5, 119, 0, 0, 945, 947, 5, 118, 0, 0, 946, 943, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 946, 945, 1, 0, 0, 0, 947, 948, 1, 0, 0, 0, 948, 1044, 3, 116, 58, 20, 949, 974, 10, 18, 0, 0, 950, 975, 5, 122, 0, 0, 951, 975, 5, 123, 0, 0, 952, 975, 5, 134, 0, 0, 953, 975, 5, 132, 0, 0, 954, 975, 5, 133, 0, 0, 955, 975, 5, 124, 0, 0, 956, 975, 5, 125, 0, 0, 957, 959, 5, 59, 0, 0, 958, 957, 1, 0, 0, 0, 958, 959, 1, 0, 0, 0, 959, 960, 1, 0, 0, 0, 960, 962, 5, 43, 0, 0, 961, 963, 5, 15, 0, 0, 962, 961, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 975, 1, 0, 0, 0, 964, 966, 5, 59, 0, 0, 965, 964, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 975, 7, 11, 0, 0, 968, 975, 5, 146, 0, 0, 969, 975, 5, 147, 0, 0, 970, 975, 5, 136, 0, 0, 971, 975, 5, 127, 0, 0, 972, 975, 5, 128, 0, 0, 973, 975, 5, 135, 0, 0, 974, 950, 1, 0, 0, 0, 974, 951, 1, 0, 0, 0, 974, 952, 1, 0, 0, 0, 974, 953, 1, 0, 0, 0, 974, 954, 1, 0, 0, 0, 974, 955, 1, 0, 0, 0, 974, 956, 1, 0, 0, 0, 974, 958, 1, 0, 0, 0, 974, 965, 1, 0, 0, 0, 974, 968, 1, 0, 0, 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, 976, 1, 0, 0, 0, 976, 1044, 3, 116, 58, 19, 977, 978, 10, 16, 0, 0, 978, 979, 5, 138, 0, 0, 979, 1044, 3, 116, 58, 17, 980, 981, 10, 14, 0, 0, 981, 982, 5, 2, 0, 0, 982, 1044, 3, 116, 58, 15, 983, 984, 10, 13, 0, 0, 984, 985, 5, 64, 0, 0, 985, 1044, 3, 116, 58, 14, 986, 988, 10, 12, 0, 0, 987, 989, 5, 59, 0, 0, 988, 987, 1, 0, 0, 0, 988, 989, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 5, 9, 0, 0, 991, 992, 3, 116, 58, 0, 992, 993, 5, 2, 0, 0, 993, 994, 3, 116, 58, 13, 994, 1044, 1, 0, 0, 0, 995, 996, 10, 11, 0, 0, 996, 997, 5, 141, 0, 0, 997, 998, 3, 116, 58, 0, 998, 999, 5, 116, 0, 0, 999, 1000, 3, 116, 58, 11, 1000, 1044, 1, 0, 0, 0, 1001, 1002, 10, 31, 0, 0, 1002, 1004, 5, 131, 0, 0, 1003, 1005, 3, 114, 57, 0, 1004, 1003, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1044, 5, 150, 0, 0, 1007, 1008, 10, 27, 0, 0, 1008, 1009, 5, 130, 0, 0, 1009, 1010, 3, 116, 58, 0, 1010, 1011, 5, 149, 0, 0, 1011, 1044, 1, 0, 0, 0, 1012, 1013, 10, 26, 0, 0, 1013, 1014, 5, 121, 0, 0, 1014, 1044, 5, 109, 0, 0, 1015, 1016, 10, 25, 0, 0, 1016, 1017, 5, 121, 0, 0, 1017, 1044, 3, 156, 78, 0, 1018, 1019, 10, 24, 0, 0, 1019, 1020, 5, 137, 0, 0, 1020, 1021, 5, 130, 0, 0, 1021, 1022, 3, 116, 58, 0, 1022, 1023, 5, 149, 0, 0, 1023, 1044, 1, 0, 0, 0, 1024, 1025, 10, 23, 0, 0, 1025, 1026, 5, 137, 0, 0, 1026, 1044, 5, 109, 0, 0, 1027, 1028, 10, 22, 0, 0, 1028, 1029, 5, 137, 0, 0, 1029, 1044, 3, 156, 78, 0, 1030, 1031, 10, 17, 0, 0, 1031, 1033, 5, 47, 0, 0, 1032, 1034, 5, 59, 0, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1044, 5, 60, 0, 0, 1036, 1041, 10, 10, 0, 0, 1037, 1038, 5, 6, 0, 0, 1038, 1042, 3, 156, 78, 0, 1039, 1040, 5, 6, 0, 0, 1040, 1042, 5, 111, 0, 0, 1041, 1037, 1, 0, 0, 0, 1041, 1039, 1, 0, 0, 0, 1042, 1044, 1, 0, 0, 0, 1043, 935, 1, 0, 0, 0, 1043, 942, 1, 0, 0, 0, 1043, 949, 1, 0, 0, 0, 1043, 977, 1, 0, 0, 0, 1043, 980, 1, 0, 0, 0, 1043, 983, 1, 0, 0, 0, 1043, 986, 1, 0, 0, 0, 1043, 995, 1, 0, 0, 0, 1043, 1001, 1, 0, 0, 0, 1043, 1007, 1, 0, 0, 0, 1043, 1012, 1, 0, 0, 0, 1043, 1015, 1, 0, 0, 0, 1043, 1018, 1, 0, 0, 0, 1043, 1024, 1, 0, 0, 0, 1043, 1027, 1, 0, 0, 0, 1043, 1030, 1, 0, 0, 0, 1043, 1036, 1, 0, 0, 0, 1044, 1047, 1, 0, 0, 0, 1045, 1043, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 117, 1, 0, 0, 0, 1047, 1045, 1, 0, 0, 0, 1048, 1049, 5, 131, 0, 0, 1049, 1054, 3, 156, 78, 0, 1050, 1051, 5, 117, 0, 0, 1051, 1053, 3, 156, 78, 0, 1052, 1050, 1, 0, 0, 0, 1053, 1056, 1, 0, 0, 0, 1054, 1052, 1, 0, 0, 0, 1054, 1055, 1, 0, 0, 0, 1055, 1058, 1, 0, 0, 0, 1056, 1054, 1, 0, 0, 0, 1057, 1059, 5, 117, 0, 0, 1058, 1057, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 5, 150, 0, 0, 1061, 1076, 1, 0, 0, 0, 1062, 1067, 3, 156, 78, 0, 1063, 1064, 5, 117, 0, 0, 1064, 1066, 3, 156, 78, 0, 1065, 1063, 1, 0, 0, 0, 1066, 1069, 1, 0, 0, 0, 1067, 1065, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1071, 1, 0, 0, 0, 1069, 1067, 1, 0, 0, 0, 1070, 1072, 5, 117, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1076, 1, 0, 0, 0, 1073, 1074, 5, 131, 0, 0, 1074, 1076, 5, 150, 0, 0, 1075, 1048, 1, 0, 0, 0, 1075, 1062, 1, 0, 0, 0, 1075, 1073, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1080, 5, 112, 0, 0, 1078, 1081, 3, 36, 18, 0, 1079, 1081, 3, 116, 58, 0, 1080, 1078, 1, 0, 0, 0, 1080, 1079, 1, 0, 0, 0, 1081, 119, 1, 0, 0, 0, 1082, 1083, 5, 133, 0, 0, 1083, 1087, 3, 156, 78, 0, 1084, 1086, 3, 122, 61, 0, 1085, 1084, 1, 0, 0, 0, 1086, 1089, 1, 0, 0, 0, 1087, 1085, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1090, 1, 0, 0, 0, 1089, 1087, 1, 0, 0, 0, 1090, 1091, 5, 152, 0, 0, 1091, 1092, 5, 125, 0, 0, 1092, 1115, 1, 0, 0, 0, 1093, 1094, 5, 133, 0, 0, 1094, 1098, 3, 156, 78, 0, 1095, 1097, 3, 122, 61, 0, 1096, 1095, 1, 0, 0, 0, 1097, 1100, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 1098, 1, 0, 0, 0, 1101, 1107, 5, 125, 0, 0, 1102, 1108, 3, 120, 60, 0, 1103, 1104, 5, 129, 0, 0, 1104, 1105, 3, 116, 58, 0, 1105, 1106, 5, 148, 0, 0, 1106, 1108, 1, 0, 0, 0, 1107, 1102, 1, 0, 0, 0, 1107, 1103, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 1110, 5, 133, 0, 0, 1110, 1111, 5, 152, 0, 0, 1111, 1112, 3, 156, 78, 0, 1112, 1113, 5, 125, 0, 0, 1113, 1115, 1, 0, 0, 0, 1114, 1082, 1, 0, 0, 0, 1114, 1093, 1, 0, 0, 0, 1115, 121, 1, 0, 0, 0, 1116, 1117, 3, 156, 78, 0, 1117, 1118, 5, 123, 0, 0, 1118, 1119, 3, 162, 81, 0, 1119, 1128, 1, 0, 0, 0, 1120, 1121, 3, 156, 78, 0, 1121, 1122, 5, 123, 0, 0, 1122, 1123, 5, 129, 0, 0, 1123, 1124, 3, 116, 58, 0, 1124, 1125, 5, 148, 0, 0, 1125, 1128, 1, 0, 0, 0, 1126, 1128, 3, 156, 78, 0, 1127, 1116, 1, 0, 0, 0, 1127, 1120, 1, 0, 0, 0, 1127, 1126, 1, 0, 0, 0, 1128, 123, 1, 0, 0, 0, 1129, 1134, 3, 126, 63, 0, 1130, 1131, 5, 117, 0, 0, 1131, 1133, 3, 126, 63, 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, 1138, 1, 0, 0, 0, 1136, 1134, 1, 0, 0, 0, 1137, 1139, 5, 117, 0, 0, 1138, 1137, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 125, 1, 0, 0, 0, 1140, 1141, 3, 156, 78, 0, 1141, 1142, 5, 6, 0, 0, 1142, 1143, 5, 131, 0, 0, 1143, 1144, 3, 44, 22, 0, 1144, 1145, 5, 150, 0, 0, 1145, 1151, 1, 0, 0, 0, 1146, 1147, 3, 116, 58, 0, 1147, 1148, 5, 6, 0, 0, 1148, 1149, 3, 156, 78, 0, 1149, 1151, 1, 0, 0, 0, 1150, 1140, 1, 0, 0, 0, 1150, 1146, 1, 0, 0, 0, 1151, 127, 1, 0, 0, 0, 1152, 1160, 3, 160, 80, 0, 1153, 1154, 3, 136, 68, 0, 1154, 1155, 5, 121, 0, 0, 1155, 1157, 1, 0, 0, 0, 1156, 1153, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1160, 3, 130, 65, 0, 1159, 1152, 1, 0, 0, 0, 1159, 1156, 1, 0, 0, 0, 1160, 129, 1, 0, 0, 0, 1161, 1166, 3, 156, 78, 0, 1162, 1163, 5, 121, 0, 0, 1163, 1165, 3, 156, 78, 0, 1164, 1162, 1, 0, 0, 0, 1165, 1168, 1, 0, 0, 0, 1166, 1164, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 131, 1, 0, 0, 0, 1168, 1166, 1, 0, 0, 0, 1169, 1170, 6, 66, -1, 0, 1170, 1179, 3, 136, 68, 0, 1171, 1179, 3, 134, 67, 0, 1172, 1173, 5, 131, 0, 0, 1173, 1174, 3, 44, 22, 0, 1174, 1175, 5, 150, 0, 0, 1175, 1179, 1, 0, 0, 0, 1176, 1179, 3, 120, 60, 0, 1177, 1179, 3, 160, 80, 0, 1178, 1169, 1, 0, 0, 0, 1178, 1171, 1, 0, 0, 0, 1178, 1172, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1178, 1177, 1, 0, 0, 0, 1179, 1188, 1, 0, 0, 0, 1180, 1184, 10, 3, 0, 0, 1181, 1185, 3, 154, 77, 0, 1182, 1183, 5, 6, 0, 0, 1183, 1185, 3, 156, 78, 0, 1184, 1181, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1180, 1, 0, 0, 0, 1187, 1190, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 133, 1, 0, 0, 0, 1190, 1188, 1, 0, 0, 0, 1191, 1192, 3, 156, 78, 0, 1192, 1194, 5, 131, 0, 0, 1193, 1195, 3, 138, 69, 0, 1194, 1193, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 5, 150, 0, 0, 1197, 135, 1, 0, 0, 0, 1198, 1199, 3, 140, 70, 0, 1199, 1200, 5, 121, 0, 0, 1200, 1202, 1, 0, 0, 0, 1201, 1198, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 3, 156, 78, 0, 1204, 137, 1, 0, 0, 0, 1205, 1210, 3, 116, 58, 0, 1206, 1207, 5, 117, 0, 0, 1207, 1209, 3, 116, 58, 0, 1208, 1206, 1, 0, 0, 0, 1209, 1212, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1214, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1213, 1215, 5, 117, 0, 0, 1214, 1213, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 139, 1, 0, 0, 0, 1216, 1217, 3, 156, 78, 0, 1217, 141, 1, 0, 0, 0, 1218, 1227, 5, 107, 0, 0, 1219, 1220, 5, 121, 0, 0, 1220, 1227, 7, 12, 0, 0, 1221, 1222, 5, 109, 0, 0, 1222, 1224, 5, 121, 0, 0, 1223, 1225, 7, 12, 0, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1227, 1, 0, 0, 0, 1226, 1218, 1, 0, 0, 0, 1226, 1219, 1, 0, 0, 0, 1226, 1221, 1, 0, 0, 0, 1227, 143, 1, 0, 0, 0, 1228, 1230, 7, 13, 0, 0, 1229, 1228, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1237, 1, 0, 0, 0, 1231, 1238, 3, 142, 71, 0, 1232, 1238, 5, 108, 0, 0, 1233, 1238, 5, 109, 0, 0, 1234, 1238, 5, 110, 0, 0, 1235, 1238, 5, 44, 0, 0, 1236, 1238, 5, 58, 0, 0, 1237, 1231, 1, 0, 0, 0, 1237, 1232, 1, 0, 0, 0, 1237, 1233, 1, 0, 0, 0, 1237, 1234, 1, 0, 0, 0, 1237, 1235, 1, 0, 0, 0, 1237, 1236, 1, 0, 0, 0, 1238, 145, 1, 0, 0, 0, 1239, 1243, 3, 144, 72, 0, 1240, 1243, 5, 111, 0, 0, 1241, 1243, 5, 60, 0, 0, 1242, 1239, 1, 0, 0, 0, 1242, 1240, 1, 0, 0, 0, 1242, 1241, 1, 0, 0, 0, 1243, 147, 1, 0, 0, 0, 1244, 1245, 7, 14, 0, 0, 1245, 149, 1, 0, 0, 0, 1246, 1247, 7, 15, 0, 0, 1247, 151, 1, 0, 0, 0, 1248, 1249, 7, 16, 0, 0, 1249, 153, 1, 0, 0, 0, 1250, 1253, 5, 106, 0, 0, 1251, 1253, 3, 152, 76, 0, 1252, 1250, 1, 0, 0, 0, 1252, 1251, 1, 0, 0, 0, 1253, 155, 1, 0, 0, 0, 1254, 1258, 5, 106, 0, 0, 1255, 1258, 3, 148, 74, 0, 1256, 1258, 3, 150, 75, 0, 1257, 1254, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 157, 1, 0, 0, 0, 1259, 1260, 3, 162, 81, 0, 1260, 1261, 5, 123, 0, 0, 1261, 1262, 3, 144, 72, 0, 1262, 159, 1, 0, 0, 0, 1263, 1264, 3, 36, 18, 0, 1264, 161, 1, 0, 0, 0, 1265, 1268, 5, 111, 0, 0, 1266, 1268, 3, 164, 82, 0, 1267, 1265, 1, 0, 0, 0, 1267, 1266, 1, 0, 0, 0, 1268, 163, 1, 0, 0, 0, 1269, 1273, 5, 143, 0, 0, 1270, 1272, 3, 166, 83, 0, 1271, 1270, 1, 0, 0, 0, 1272, 1275, 1, 0, 0, 0, 1273, 1271, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1273, 1, 0, 0, 0, 1276, 1277, 5, 145, 0, 0, 1277, 165, 1, 0, 0, 0, 1278, 1279, 5, 158, 0, 0, 1279, 1280, 3, 116, 58, 0, 1280, 1281, 5, 148, 0, 0, 1281, 1284, 1, 0, 0, 0, 1282, 1284, 5, 157, 0, 0, 1283, 1278, 1, 0, 0, 0, 1283, 1282, 1, 0, 0, 0, 1284, 167, 1, 0, 0, 0, 1285, 1289, 5, 144, 0, 0, 1286, 1288, 3, 170, 85, 0, 1287, 1286, 1, 0, 0, 0, 1288, 1291, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1292, 1, 0, 0, 0, 1291, 1289, 1, 0, 0, 0, 1292, 1293, 5, 0, 0, 1, 1293, 169, 1, 0, 0, 0, 1294, 1295, 5, 160, 0, 0, 1295, 1296, 3, 116, 58, 0, 1296, 1297, 5, 148, 0, 0, 1297, 1300, 1, 0, 0, 0, 1298, 1300, 5, 159, 0, 0, 1299, 1294, 1, 0, 0, 0, 1299, 1298, 1, 0, 0, 0, 1300, 171, 1, 0, 0, 0, 167, 175, 182, 191, 198, 202, 216, 220, 223, 227, 230, 237, 241, 250, 255, 264, 272, 279, 283, 289, 294, 302, 309, 315, 327, 335, 349, 353, 358, 368, 377, 380, 384, 387, 391, 394, 397, 400, 403, 407, 411, 414, 417, 420, 424, 427, 436, 442, 463, 480, 497, 503, 509, 520, 522, 533, 536, 542, 550, 556, 558, 562, 567, 570, 573, 577, 581, 584, 586, 589, 593, 597, 600, 602, 604, 609, 620, 626, 633, 638, 642, 646, 652, 654, 661, 669, 672, 675, 694, 708, 724, 728, 739, 743, 754, 758, 765, 769, 776, 780, 785, 794, 798, 822, 839, 845, 848, 851, 861, 867, 870, 873, 881, 884, 888, 891, 905, 922, 927, 933, 939, 946, 958, 962, 965, 974, 988, 1004, 1033, 1041, 1043, 1045, 1054, 1058, 1067, 1071, 1075, 1080, 1087, 1098, 1107, 1114, 1127, 1134, 1138, 1150, 1156, 1159, 1166, 1178, 1184, 1188, 1194, 1201, 1210, 1214, 1224, 1226, 1229, 1237, 1242, 1252, 1257, 1267, 1273, 1283, 1289, 1299] \ No newline at end of file +[4, 1, 160, 1300, 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, 1, 0, 5, 0, 172, 8, 0, 10, 0, 12, 0, 175, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 181, 8, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 190, 8, 3, 1, 4, 1, 4, 1, 4, 5, 4, 195, 8, 4, 10, 4, 12, 4, 198, 9, 4, 1, 4, 3, 4, 201, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 215, 8, 5, 1, 6, 1, 6, 3, 6, 219, 8, 6, 1, 6, 3, 6, 222, 8, 6, 1, 7, 1, 7, 3, 7, 226, 8, 7, 1, 7, 3, 7, 229, 8, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 236, 8, 8, 1, 8, 1, 8, 3, 8, 240, 8, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 5, 9, 247, 8, 9, 10, 9, 12, 9, 250, 9, 9, 1, 9, 1, 9, 3, 9, 254, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 263, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 271, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 278, 8, 12, 1, 12, 1, 12, 3, 12, 282, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 288, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 293, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 301, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 308, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 314, 8, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 326, 8, 16, 1, 17, 1, 17, 1, 18, 1, 18, 5, 18, 332, 8, 18, 10, 18, 12, 18, 335, 9, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 5, 20, 346, 8, 20, 10, 20, 12, 20, 349, 9, 20, 1, 20, 3, 20, 352, 8, 20, 1, 21, 1, 21, 1, 21, 3, 21, 357, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 365, 8, 22, 10, 22, 12, 22, 368, 9, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 376, 8, 23, 1, 24, 3, 24, 379, 8, 24, 1, 24, 1, 24, 3, 24, 383, 8, 24, 1, 24, 3, 24, 386, 8, 24, 1, 24, 1, 24, 3, 24, 390, 8, 24, 1, 24, 3, 24, 393, 8, 24, 1, 24, 3, 24, 396, 8, 24, 1, 24, 3, 24, 399, 8, 24, 1, 24, 3, 24, 402, 8, 24, 1, 24, 1, 24, 3, 24, 406, 8, 24, 1, 24, 1, 24, 3, 24, 410, 8, 24, 1, 24, 3, 24, 413, 8, 24, 1, 24, 3, 24, 416, 8, 24, 1, 24, 3, 24, 419, 8, 24, 1, 24, 1, 24, 3, 24, 423, 8, 24, 1, 24, 3, 24, 426, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 435, 8, 26, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 441, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 5, 29, 460, 8, 29, 10, 29, 12, 29, 463, 9, 29, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 479, 8, 32, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 496, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 502, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 508, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 519, 8, 36, 3, 36, 521, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 3, 39, 532, 8, 39, 1, 39, 3, 39, 535, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 541, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 549, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 5, 39, 555, 8, 39, 10, 39, 12, 39, 558, 9, 39, 1, 40, 3, 40, 561, 8, 40, 1, 40, 1, 40, 1, 40, 3, 40, 566, 8, 40, 1, 40, 3, 40, 569, 8, 40, 1, 40, 3, 40, 572, 8, 40, 1, 40, 1, 40, 3, 40, 576, 8, 40, 1, 40, 1, 40, 3, 40, 580, 8, 40, 1, 40, 3, 40, 583, 8, 40, 3, 40, 585, 8, 40, 1, 40, 3, 40, 588, 8, 40, 1, 40, 1, 40, 3, 40, 592, 8, 40, 1, 40, 1, 40, 3, 40, 596, 8, 40, 1, 40, 3, 40, 599, 8, 40, 3, 40, 601, 8, 40, 3, 40, 603, 8, 40, 1, 41, 1, 41, 1, 41, 3, 41, 608, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 619, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 625, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 630, 8, 44, 10, 44, 12, 44, 633, 9, 44, 1, 45, 1, 45, 3, 45, 637, 8, 45, 1, 45, 1, 45, 3, 45, 641, 8, 45, 1, 45, 1, 45, 3, 45, 645, 8, 45, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 651, 8, 46, 3, 46, 653, 8, 46, 1, 47, 1, 47, 1, 47, 5, 47, 658, 8, 47, 10, 47, 12, 47, 661, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 3, 49, 668, 8, 49, 1, 49, 3, 49, 671, 8, 49, 1, 49, 3, 49, 674, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 693, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 707, 8, 54, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 721, 8, 56, 10, 56, 12, 56, 724, 9, 56, 1, 56, 3, 56, 727, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 736, 8, 56, 10, 56, 12, 56, 739, 9, 56, 1, 56, 3, 56, 742, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 751, 8, 56, 10, 56, 12, 56, 754, 9, 56, 1, 56, 3, 56, 757, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 764, 8, 56, 1, 56, 1, 56, 3, 56, 768, 8, 56, 1, 57, 1, 57, 1, 57, 5, 57, 773, 8, 57, 10, 57, 12, 57, 776, 9, 57, 1, 57, 3, 57, 779, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 784, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 4, 58, 791, 8, 58, 11, 58, 12, 58, 792, 1, 58, 1, 58, 3, 58, 797, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 821, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 838, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 844, 8, 58, 1, 58, 3, 58, 847, 8, 58, 1, 58, 3, 58, 850, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 860, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 866, 8, 58, 1, 58, 3, 58, 869, 8, 58, 1, 58, 3, 58, 872, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 880, 8, 58, 1, 58, 3, 58, 883, 8, 58, 1, 58, 1, 58, 3, 58, 887, 8, 58, 1, 58, 3, 58, 890, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 904, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 921, 8, 58, 1, 58, 1, 58, 1, 58, 3, 58, 926, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 936, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 942, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 949, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 961, 8, 58, 1, 58, 1, 58, 3, 58, 965, 8, 58, 1, 58, 3, 58, 968, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 977, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 991, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1007, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1036, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1044, 8, 58, 5, 58, 1046, 8, 58, 10, 58, 12, 58, 1049, 9, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1055, 8, 59, 10, 59, 12, 59, 1058, 9, 59, 1, 59, 3, 59, 1061, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1068, 8, 59, 10, 59, 12, 59, 1071, 9, 59, 1, 59, 3, 59, 1074, 8, 59, 1, 59, 1, 59, 3, 59, 1078, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1083, 8, 59, 1, 60, 1, 60, 1, 60, 5, 60, 1088, 8, 60, 10, 60, 12, 60, 1091, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1099, 8, 60, 10, 60, 12, 60, 1102, 9, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1110, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1117, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1130, 8, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1135, 8, 62, 10, 62, 12, 62, 1138, 9, 62, 1, 62, 3, 62, 1141, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1153, 8, 63, 1, 64, 1, 64, 1, 64, 3, 64, 1158, 8, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 5, 65, 1165, 8, 65, 10, 65, 12, 65, 1168, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1179, 8, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1185, 8, 66, 5, 66, 1187, 8, 66, 10, 66, 12, 66, 1190, 9, 66, 1, 67, 1, 67, 1, 67, 3, 67, 1195, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 3, 68, 1202, 8, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 5, 69, 1209, 8, 69, 10, 69, 12, 69, 1212, 9, 69, 1, 69, 3, 69, 1215, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1225, 8, 71, 3, 71, 1227, 8, 71, 1, 72, 3, 72, 1230, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1238, 8, 72, 1, 73, 1, 73, 1, 73, 3, 73, 1243, 8, 73, 1, 74, 1, 74, 1, 75, 1, 75, 1, 76, 1, 76, 1, 77, 1, 77, 3, 77, 1253, 8, 77, 1, 78, 1, 78, 1, 78, 3, 78, 1258, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 3, 80, 1266, 8, 80, 1, 81, 1, 81, 5, 81, 1270, 8, 81, 10, 81, 12, 81, 1273, 9, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 1282, 8, 82, 1, 83, 1, 83, 5, 83, 1286, 8, 83, 10, 83, 12, 83, 1289, 9, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 1298, 8, 84, 1, 84, 0, 3, 78, 116, 132, 85, 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, 0, 17, 2, 0, 31, 31, 36, 36, 2, 0, 18, 18, 75, 75, 2, 0, 45, 45, 52, 52, 3, 0, 1, 1, 4, 4, 8, 8, 4, 0, 1, 1, 3, 4, 8, 8, 81, 81, 2, 0, 52, 52, 74, 74, 2, 0, 1, 1, 4, 4, 2, 0, 7, 7, 22, 23, 2, 0, 30, 30, 50, 50, 2, 0, 72, 72, 77, 77, 3, 0, 10, 10, 51, 51, 91, 91, 2, 0, 42, 42, 54, 54, 1, 0, 108, 109, 2, 0, 119, 119, 140, 140, 7, 0, 21, 21, 39, 39, 56, 57, 71, 71, 79, 79, 98, 98, 104, 104, 17, 0, 1, 13, 15, 20, 22, 28, 30, 30, 32, 35, 37, 38, 40, 43, 45, 52, 54, 55, 59, 59, 61, 70, 72, 78, 80, 84, 86, 93, 95, 97, 99, 100, 102, 103, 4, 0, 20, 20, 30, 30, 40, 40, 49, 49, 1474, 0, 173, 1, 0, 0, 0, 2, 180, 1, 0, 0, 0, 4, 182, 1, 0, 0, 0, 6, 184, 1, 0, 0, 0, 8, 191, 1, 0, 0, 0, 10, 214, 1, 0, 0, 0, 12, 216, 1, 0, 0, 0, 14, 223, 1, 0, 0, 0, 16, 230, 1, 0, 0, 0, 18, 243, 1, 0, 0, 0, 20, 255, 1, 0, 0, 0, 22, 264, 1, 0, 0, 0, 24, 272, 1, 0, 0, 0, 26, 294, 1, 0, 0, 0, 28, 309, 1, 0, 0, 0, 30, 318, 1, 0, 0, 0, 32, 323, 1, 0, 0, 0, 34, 327, 1, 0, 0, 0, 36, 329, 1, 0, 0, 0, 38, 338, 1, 0, 0, 0, 40, 342, 1, 0, 0, 0, 42, 356, 1, 0, 0, 0, 44, 360, 1, 0, 0, 0, 46, 375, 1, 0, 0, 0, 48, 378, 1, 0, 0, 0, 50, 427, 1, 0, 0, 0, 52, 430, 1, 0, 0, 0, 54, 436, 1, 0, 0, 0, 56, 440, 1, 0, 0, 0, 58, 446, 1, 0, 0, 0, 60, 464, 1, 0, 0, 0, 62, 467, 1, 0, 0, 0, 64, 470, 1, 0, 0, 0, 66, 480, 1, 0, 0, 0, 68, 483, 1, 0, 0, 0, 70, 487, 1, 0, 0, 0, 72, 520, 1, 0, 0, 0, 74, 522, 1, 0, 0, 0, 76, 525, 1, 0, 0, 0, 78, 540, 1, 0, 0, 0, 80, 602, 1, 0, 0, 0, 82, 607, 1, 0, 0, 0, 84, 618, 1, 0, 0, 0, 86, 620, 1, 0, 0, 0, 88, 626, 1, 0, 0, 0, 90, 634, 1, 0, 0, 0, 92, 652, 1, 0, 0, 0, 94, 654, 1, 0, 0, 0, 96, 662, 1, 0, 0, 0, 98, 667, 1, 0, 0, 0, 100, 675, 1, 0, 0, 0, 102, 679, 1, 0, 0, 0, 104, 683, 1, 0, 0, 0, 106, 692, 1, 0, 0, 0, 108, 706, 1, 0, 0, 0, 110, 708, 1, 0, 0, 0, 112, 767, 1, 0, 0, 0, 114, 769, 1, 0, 0, 0, 116, 935, 1, 0, 0, 0, 118, 1077, 1, 0, 0, 0, 120, 1116, 1, 0, 0, 0, 122, 1129, 1, 0, 0, 0, 124, 1131, 1, 0, 0, 0, 126, 1152, 1, 0, 0, 0, 128, 1157, 1, 0, 0, 0, 130, 1161, 1, 0, 0, 0, 132, 1178, 1, 0, 0, 0, 134, 1191, 1, 0, 0, 0, 136, 1201, 1, 0, 0, 0, 138, 1205, 1, 0, 0, 0, 140, 1216, 1, 0, 0, 0, 142, 1226, 1, 0, 0, 0, 144, 1229, 1, 0, 0, 0, 146, 1242, 1, 0, 0, 0, 148, 1244, 1, 0, 0, 0, 150, 1246, 1, 0, 0, 0, 152, 1248, 1, 0, 0, 0, 154, 1252, 1, 0, 0, 0, 156, 1257, 1, 0, 0, 0, 158, 1259, 1, 0, 0, 0, 160, 1265, 1, 0, 0, 0, 162, 1267, 1, 0, 0, 0, 164, 1281, 1, 0, 0, 0, 166, 1283, 1, 0, 0, 0, 168, 1297, 1, 0, 0, 0, 170, 172, 3, 2, 1, 0, 171, 170, 1, 0, 0, 0, 172, 175, 1, 0, 0, 0, 173, 171, 1, 0, 0, 0, 173, 174, 1, 0, 0, 0, 174, 176, 1, 0, 0, 0, 175, 173, 1, 0, 0, 0, 176, 177, 5, 0, 0, 1, 177, 1, 1, 0, 0, 0, 178, 181, 3, 6, 3, 0, 179, 181, 3, 10, 5, 0, 180, 178, 1, 0, 0, 0, 180, 179, 1, 0, 0, 0, 181, 3, 1, 0, 0, 0, 182, 183, 3, 116, 58, 0, 183, 5, 1, 0, 0, 0, 184, 185, 5, 53, 0, 0, 185, 189, 3, 156, 78, 0, 186, 187, 5, 116, 0, 0, 187, 188, 5, 123, 0, 0, 188, 190, 3, 4, 2, 0, 189, 186, 1, 0, 0, 0, 189, 190, 1, 0, 0, 0, 190, 7, 1, 0, 0, 0, 191, 196, 3, 156, 78, 0, 192, 193, 5, 117, 0, 0, 193, 195, 3, 156, 78, 0, 194, 192, 1, 0, 0, 0, 195, 198, 1, 0, 0, 0, 196, 194, 1, 0, 0, 0, 196, 197, 1, 0, 0, 0, 197, 200, 1, 0, 0, 0, 198, 196, 1, 0, 0, 0, 199, 201, 5, 117, 0, 0, 200, 199, 1, 0, 0, 0, 200, 201, 1, 0, 0, 0, 201, 9, 1, 0, 0, 0, 202, 215, 3, 12, 6, 0, 203, 215, 3, 14, 7, 0, 204, 215, 3, 18, 9, 0, 205, 215, 3, 20, 10, 0, 206, 215, 3, 22, 11, 0, 207, 215, 3, 26, 13, 0, 208, 215, 3, 24, 12, 0, 209, 215, 3, 28, 14, 0, 210, 215, 3, 30, 15, 0, 211, 215, 3, 36, 18, 0, 212, 215, 3, 32, 16, 0, 213, 215, 3, 34, 17, 0, 214, 202, 1, 0, 0, 0, 214, 203, 1, 0, 0, 0, 214, 204, 1, 0, 0, 0, 214, 205, 1, 0, 0, 0, 214, 206, 1, 0, 0, 0, 214, 207, 1, 0, 0, 0, 214, 208, 1, 0, 0, 0, 214, 209, 1, 0, 0, 0, 214, 210, 1, 0, 0, 0, 214, 211, 1, 0, 0, 0, 214, 212, 1, 0, 0, 0, 214, 213, 1, 0, 0, 0, 215, 11, 1, 0, 0, 0, 216, 218, 5, 73, 0, 0, 217, 219, 3, 4, 2, 0, 218, 217, 1, 0, 0, 0, 218, 219, 1, 0, 0, 0, 219, 221, 1, 0, 0, 0, 220, 222, 5, 151, 0, 0, 221, 220, 1, 0, 0, 0, 221, 222, 1, 0, 0, 0, 222, 13, 1, 0, 0, 0, 223, 225, 5, 85, 0, 0, 224, 226, 3, 4, 2, 0, 225, 224, 1, 0, 0, 0, 225, 226, 1, 0, 0, 0, 226, 228, 1, 0, 0, 0, 227, 229, 5, 151, 0, 0, 228, 227, 1, 0, 0, 0, 228, 229, 1, 0, 0, 0, 229, 15, 1, 0, 0, 0, 230, 239, 5, 14, 0, 0, 231, 232, 5, 131, 0, 0, 232, 235, 3, 156, 78, 0, 233, 234, 5, 116, 0, 0, 234, 236, 3, 156, 78, 0, 235, 233, 1, 0, 0, 0, 235, 236, 1, 0, 0, 0, 236, 237, 1, 0, 0, 0, 237, 238, 5, 150, 0, 0, 238, 240, 1, 0, 0, 0, 239, 231, 1, 0, 0, 0, 239, 240, 1, 0, 0, 0, 240, 241, 1, 0, 0, 0, 241, 242, 3, 36, 18, 0, 242, 17, 1, 0, 0, 0, 243, 244, 5, 94, 0, 0, 244, 248, 3, 36, 18, 0, 245, 247, 3, 16, 8, 0, 246, 245, 1, 0, 0, 0, 247, 250, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 253, 1, 0, 0, 0, 250, 248, 1, 0, 0, 0, 251, 252, 5, 29, 0, 0, 252, 254, 3, 36, 18, 0, 253, 251, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 19, 1, 0, 0, 0, 255, 256, 5, 41, 0, 0, 256, 257, 5, 131, 0, 0, 257, 258, 3, 4, 2, 0, 258, 259, 5, 150, 0, 0, 259, 262, 3, 10, 5, 0, 260, 261, 5, 25, 0, 0, 261, 263, 3, 10, 5, 0, 262, 260, 1, 0, 0, 0, 262, 263, 1, 0, 0, 0, 263, 21, 1, 0, 0, 0, 264, 265, 5, 101, 0, 0, 265, 266, 5, 131, 0, 0, 266, 267, 3, 4, 2, 0, 267, 268, 5, 150, 0, 0, 268, 270, 3, 10, 5, 0, 269, 271, 5, 151, 0, 0, 270, 269, 1, 0, 0, 0, 270, 271, 1, 0, 0, 0, 271, 23, 1, 0, 0, 0, 272, 273, 5, 33, 0, 0, 273, 277, 5, 131, 0, 0, 274, 278, 3, 6, 3, 0, 275, 278, 3, 30, 15, 0, 276, 278, 3, 4, 2, 0, 277, 274, 1, 0, 0, 0, 277, 275, 1, 0, 0, 0, 277, 276, 1, 0, 0, 0, 277, 278, 1, 0, 0, 0, 278, 279, 1, 0, 0, 0, 279, 281, 5, 151, 0, 0, 280, 282, 3, 4, 2, 0, 281, 280, 1, 0, 0, 0, 281, 282, 1, 0, 0, 0, 282, 283, 1, 0, 0, 0, 283, 287, 5, 151, 0, 0, 284, 288, 3, 6, 3, 0, 285, 288, 3, 30, 15, 0, 286, 288, 3, 4, 2, 0, 287, 284, 1, 0, 0, 0, 287, 285, 1, 0, 0, 0, 287, 286, 1, 0, 0, 0, 287, 288, 1, 0, 0, 0, 288, 289, 1, 0, 0, 0, 289, 290, 5, 150, 0, 0, 290, 292, 3, 10, 5, 0, 291, 293, 5, 151, 0, 0, 292, 291, 1, 0, 0, 0, 292, 293, 1, 0, 0, 0, 293, 25, 1, 0, 0, 0, 294, 295, 5, 33, 0, 0, 295, 296, 5, 131, 0, 0, 296, 297, 5, 53, 0, 0, 297, 300, 3, 156, 78, 0, 298, 299, 5, 117, 0, 0, 299, 301, 3, 156, 78, 0, 300, 298, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 303, 5, 43, 0, 0, 303, 304, 3, 4, 2, 0, 304, 305, 5, 150, 0, 0, 305, 307, 3, 10, 5, 0, 306, 308, 5, 151, 0, 0, 307, 306, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 27, 1, 0, 0, 0, 309, 310, 7, 0, 0, 0, 310, 311, 3, 156, 78, 0, 311, 313, 5, 131, 0, 0, 312, 314, 3, 8, 4, 0, 313, 312, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 316, 5, 150, 0, 0, 316, 317, 3, 36, 18, 0, 317, 29, 1, 0, 0, 0, 318, 319, 3, 4, 2, 0, 319, 320, 5, 116, 0, 0, 320, 321, 5, 123, 0, 0, 321, 322, 3, 4, 2, 0, 322, 31, 1, 0, 0, 0, 323, 325, 3, 4, 2, 0, 324, 326, 5, 151, 0, 0, 325, 324, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 33, 1, 0, 0, 0, 327, 328, 5, 151, 0, 0, 328, 35, 1, 0, 0, 0, 329, 333, 5, 129, 0, 0, 330, 332, 3, 2, 1, 0, 331, 330, 1, 0, 0, 0, 332, 335, 1, 0, 0, 0, 333, 331, 1, 0, 0, 0, 333, 334, 1, 0, 0, 0, 334, 336, 1, 0, 0, 0, 335, 333, 1, 0, 0, 0, 336, 337, 5, 148, 0, 0, 337, 37, 1, 0, 0, 0, 338, 339, 3, 4, 2, 0, 339, 340, 5, 116, 0, 0, 340, 341, 3, 4, 2, 0, 341, 39, 1, 0, 0, 0, 342, 347, 3, 38, 19, 0, 343, 344, 5, 117, 0, 0, 344, 346, 3, 38, 19, 0, 345, 343, 1, 0, 0, 0, 346, 349, 1, 0, 0, 0, 347, 345, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 351, 1, 0, 0, 0, 349, 347, 1, 0, 0, 0, 350, 352, 5, 117, 0, 0, 351, 350, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 41, 1, 0, 0, 0, 353, 357, 3, 44, 22, 0, 354, 357, 3, 48, 24, 0, 355, 357, 3, 120, 60, 0, 356, 353, 1, 0, 0, 0, 356, 354, 1, 0, 0, 0, 356, 355, 1, 0, 0, 0, 357, 358, 1, 0, 0, 0, 358, 359, 5, 0, 0, 1, 359, 43, 1, 0, 0, 0, 360, 366, 3, 46, 23, 0, 361, 362, 5, 96, 0, 0, 362, 363, 5, 1, 0, 0, 363, 365, 3, 46, 23, 0, 364, 361, 1, 0, 0, 0, 365, 368, 1, 0, 0, 0, 366, 364, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 45, 1, 0, 0, 0, 368, 366, 1, 0, 0, 0, 369, 376, 3, 48, 24, 0, 370, 371, 5, 131, 0, 0, 371, 372, 3, 44, 22, 0, 372, 373, 5, 150, 0, 0, 373, 376, 1, 0, 0, 0, 374, 376, 3, 36, 18, 0, 375, 369, 1, 0, 0, 0, 375, 370, 1, 0, 0, 0, 375, 374, 1, 0, 0, 0, 376, 47, 1, 0, 0, 0, 377, 379, 3, 50, 25, 0, 378, 377, 1, 0, 0, 0, 378, 379, 1, 0, 0, 0, 379, 380, 1, 0, 0, 0, 380, 382, 5, 80, 0, 0, 381, 383, 5, 24, 0, 0, 382, 381, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 385, 1, 0, 0, 0, 384, 386, 3, 52, 26, 0, 385, 384, 1, 0, 0, 0, 385, 386, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 389, 3, 114, 57, 0, 388, 390, 3, 54, 27, 0, 389, 388, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 392, 1, 0, 0, 0, 391, 393, 3, 56, 28, 0, 392, 391, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 395, 1, 0, 0, 0, 394, 396, 3, 60, 30, 0, 395, 394, 1, 0, 0, 0, 395, 396, 1, 0, 0, 0, 396, 398, 1, 0, 0, 0, 397, 399, 3, 62, 31, 0, 398, 397, 1, 0, 0, 0, 398, 399, 1, 0, 0, 0, 399, 401, 1, 0, 0, 0, 400, 402, 3, 64, 32, 0, 401, 400, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 404, 5, 103, 0, 0, 404, 406, 7, 1, 0, 0, 405, 403, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 406, 409, 1, 0, 0, 0, 407, 408, 5, 103, 0, 0, 408, 410, 5, 90, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 412, 1, 0, 0, 0, 411, 413, 3, 66, 33, 0, 412, 411, 1, 0, 0, 0, 412, 413, 1, 0, 0, 0, 413, 415, 1, 0, 0, 0, 414, 416, 3, 58, 29, 0, 415, 414, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 418, 1, 0, 0, 0, 417, 419, 3, 68, 34, 0, 418, 417, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 422, 1, 0, 0, 0, 420, 423, 3, 72, 36, 0, 421, 423, 3, 74, 37, 0, 422, 420, 1, 0, 0, 0, 422, 421, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 425, 1, 0, 0, 0, 424, 426, 3, 76, 38, 0, 425, 424, 1, 0, 0, 0, 425, 426, 1, 0, 0, 0, 426, 49, 1, 0, 0, 0, 427, 428, 5, 103, 0, 0, 428, 429, 3, 124, 62, 0, 429, 51, 1, 0, 0, 0, 430, 431, 5, 89, 0, 0, 431, 434, 5, 109, 0, 0, 432, 433, 5, 103, 0, 0, 433, 435, 5, 86, 0, 0, 434, 432, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 53, 1, 0, 0, 0, 436, 437, 5, 34, 0, 0, 437, 438, 3, 78, 39, 0, 438, 55, 1, 0, 0, 0, 439, 441, 7, 2, 0, 0, 440, 439, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 443, 5, 5, 0, 0, 443, 444, 5, 48, 0, 0, 444, 445, 3, 114, 57, 0, 445, 57, 1, 0, 0, 0, 446, 447, 5, 102, 0, 0, 447, 448, 3, 156, 78, 0, 448, 449, 5, 6, 0, 0, 449, 450, 5, 131, 0, 0, 450, 451, 3, 98, 49, 0, 451, 461, 5, 150, 0, 0, 452, 453, 5, 117, 0, 0, 453, 454, 3, 156, 78, 0, 454, 455, 5, 6, 0, 0, 455, 456, 5, 131, 0, 0, 456, 457, 3, 98, 49, 0, 457, 458, 5, 150, 0, 0, 458, 460, 1, 0, 0, 0, 459, 452, 1, 0, 0, 0, 460, 463, 1, 0, 0, 0, 461, 459, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 59, 1, 0, 0, 0, 463, 461, 1, 0, 0, 0, 464, 465, 5, 70, 0, 0, 465, 466, 3, 116, 58, 0, 466, 61, 1, 0, 0, 0, 467, 468, 5, 100, 0, 0, 468, 469, 3, 116, 58, 0, 469, 63, 1, 0, 0, 0, 470, 471, 5, 37, 0, 0, 471, 478, 5, 11, 0, 0, 472, 473, 7, 1, 0, 0, 473, 474, 5, 131, 0, 0, 474, 475, 3, 114, 57, 0, 475, 476, 5, 150, 0, 0, 476, 479, 1, 0, 0, 0, 477, 479, 3, 114, 57, 0, 478, 472, 1, 0, 0, 0, 478, 477, 1, 0, 0, 0, 479, 65, 1, 0, 0, 0, 480, 481, 5, 38, 0, 0, 481, 482, 3, 116, 58, 0, 482, 67, 1, 0, 0, 0, 483, 484, 5, 65, 0, 0, 484, 485, 5, 11, 0, 0, 485, 486, 3, 88, 44, 0, 486, 69, 1, 0, 0, 0, 487, 488, 5, 65, 0, 0, 488, 489, 5, 11, 0, 0, 489, 490, 3, 114, 57, 0, 490, 71, 1, 0, 0, 0, 491, 492, 5, 55, 0, 0, 492, 495, 3, 116, 58, 0, 493, 494, 5, 117, 0, 0, 494, 496, 3, 116, 58, 0, 495, 493, 1, 0, 0, 0, 495, 496, 1, 0, 0, 0, 496, 501, 1, 0, 0, 0, 497, 498, 5, 103, 0, 0, 498, 502, 5, 86, 0, 0, 499, 500, 5, 11, 0, 0, 500, 502, 3, 114, 57, 0, 501, 497, 1, 0, 0, 0, 501, 499, 1, 0, 0, 0, 501, 502, 1, 0, 0, 0, 502, 521, 1, 0, 0, 0, 503, 504, 5, 55, 0, 0, 504, 507, 3, 116, 58, 0, 505, 506, 5, 103, 0, 0, 506, 508, 5, 86, 0, 0, 507, 505, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 510, 5, 62, 0, 0, 510, 511, 3, 116, 58, 0, 511, 521, 1, 0, 0, 0, 512, 513, 5, 55, 0, 0, 513, 514, 3, 116, 58, 0, 514, 515, 5, 62, 0, 0, 515, 518, 3, 116, 58, 0, 516, 517, 5, 11, 0, 0, 517, 519, 3, 114, 57, 0, 518, 516, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 521, 1, 0, 0, 0, 520, 491, 1, 0, 0, 0, 520, 503, 1, 0, 0, 0, 520, 512, 1, 0, 0, 0, 521, 73, 1, 0, 0, 0, 522, 523, 5, 62, 0, 0, 523, 524, 3, 116, 58, 0, 524, 75, 1, 0, 0, 0, 525, 526, 5, 82, 0, 0, 526, 527, 3, 94, 47, 0, 527, 77, 1, 0, 0, 0, 528, 529, 6, 39, -1, 0, 529, 531, 3, 132, 66, 0, 530, 532, 5, 28, 0, 0, 531, 530, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 534, 1, 0, 0, 0, 533, 535, 3, 86, 43, 0, 534, 533, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 541, 1, 0, 0, 0, 536, 537, 5, 131, 0, 0, 537, 538, 3, 78, 39, 0, 538, 539, 5, 150, 0, 0, 539, 541, 1, 0, 0, 0, 540, 528, 1, 0, 0, 0, 540, 536, 1, 0, 0, 0, 541, 556, 1, 0, 0, 0, 542, 543, 10, 3, 0, 0, 543, 544, 3, 82, 41, 0, 544, 545, 3, 78, 39, 4, 545, 555, 1, 0, 0, 0, 546, 548, 10, 4, 0, 0, 547, 549, 3, 80, 40, 0, 548, 547, 1, 0, 0, 0, 548, 549, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 5, 48, 0, 0, 551, 552, 3, 78, 39, 0, 552, 553, 3, 84, 42, 0, 553, 555, 1, 0, 0, 0, 554, 542, 1, 0, 0, 0, 554, 546, 1, 0, 0, 0, 555, 558, 1, 0, 0, 0, 556, 554, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 79, 1, 0, 0, 0, 558, 556, 1, 0, 0, 0, 559, 561, 7, 3, 0, 0, 560, 559, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 569, 5, 45, 0, 0, 563, 565, 5, 45, 0, 0, 564, 566, 7, 3, 0, 0, 565, 564, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 569, 1, 0, 0, 0, 567, 569, 7, 3, 0, 0, 568, 560, 1, 0, 0, 0, 568, 563, 1, 0, 0, 0, 568, 567, 1, 0, 0, 0, 569, 603, 1, 0, 0, 0, 570, 572, 7, 4, 0, 0, 571, 570, 1, 0, 0, 0, 571, 572, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 575, 7, 5, 0, 0, 574, 576, 5, 66, 0, 0, 575, 574, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 585, 1, 0, 0, 0, 577, 579, 7, 5, 0, 0, 578, 580, 5, 66, 0, 0, 579, 578, 1, 0, 0, 0, 579, 580, 1, 0, 0, 0, 580, 582, 1, 0, 0, 0, 581, 583, 7, 4, 0, 0, 582, 581, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 585, 1, 0, 0, 0, 584, 571, 1, 0, 0, 0, 584, 577, 1, 0, 0, 0, 585, 603, 1, 0, 0, 0, 586, 588, 7, 6, 0, 0, 587, 586, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 591, 5, 35, 0, 0, 590, 592, 5, 66, 0, 0, 591, 590, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 601, 1, 0, 0, 0, 593, 595, 5, 35, 0, 0, 594, 596, 5, 66, 0, 0, 595, 594, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 598, 1, 0, 0, 0, 597, 599, 7, 6, 0, 0, 598, 597, 1, 0, 0, 0, 598, 599, 1, 0, 0, 0, 599, 601, 1, 0, 0, 0, 600, 587, 1, 0, 0, 0, 600, 593, 1, 0, 0, 0, 601, 603, 1, 0, 0, 0, 602, 568, 1, 0, 0, 0, 602, 584, 1, 0, 0, 0, 602, 600, 1, 0, 0, 0, 603, 81, 1, 0, 0, 0, 604, 605, 5, 17, 0, 0, 605, 608, 5, 48, 0, 0, 606, 608, 5, 117, 0, 0, 607, 604, 1, 0, 0, 0, 607, 606, 1, 0, 0, 0, 608, 83, 1, 0, 0, 0, 609, 610, 5, 63, 0, 0, 610, 619, 3, 114, 57, 0, 611, 612, 5, 97, 0, 0, 612, 613, 5, 131, 0, 0, 613, 614, 3, 114, 57, 0, 614, 615, 5, 150, 0, 0, 615, 619, 1, 0, 0, 0, 616, 617, 5, 97, 0, 0, 617, 619, 3, 114, 57, 0, 618, 609, 1, 0, 0, 0, 618, 611, 1, 0, 0, 0, 618, 616, 1, 0, 0, 0, 619, 85, 1, 0, 0, 0, 620, 621, 5, 78, 0, 0, 621, 624, 3, 92, 46, 0, 622, 623, 5, 62, 0, 0, 623, 625, 3, 92, 46, 0, 624, 622, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 87, 1, 0, 0, 0, 626, 631, 3, 90, 45, 0, 627, 628, 5, 117, 0, 0, 628, 630, 3, 90, 45, 0, 629, 627, 1, 0, 0, 0, 630, 633, 1, 0, 0, 0, 631, 629, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 89, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 634, 636, 3, 116, 58, 0, 635, 637, 7, 7, 0, 0, 636, 635, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 640, 1, 0, 0, 0, 638, 639, 5, 61, 0, 0, 639, 641, 7, 8, 0, 0, 640, 638, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 644, 1, 0, 0, 0, 642, 643, 5, 16, 0, 0, 643, 645, 5, 111, 0, 0, 644, 642, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 91, 1, 0, 0, 0, 646, 653, 3, 36, 18, 0, 647, 650, 3, 144, 72, 0, 648, 649, 5, 152, 0, 0, 649, 651, 3, 144, 72, 0, 650, 648, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 653, 1, 0, 0, 0, 652, 646, 1, 0, 0, 0, 652, 647, 1, 0, 0, 0, 653, 93, 1, 0, 0, 0, 654, 659, 3, 96, 48, 0, 655, 656, 5, 117, 0, 0, 656, 658, 3, 96, 48, 0, 657, 655, 1, 0, 0, 0, 658, 661, 1, 0, 0, 0, 659, 657, 1, 0, 0, 0, 659, 660, 1, 0, 0, 0, 660, 95, 1, 0, 0, 0, 661, 659, 1, 0, 0, 0, 662, 663, 3, 156, 78, 0, 663, 664, 5, 123, 0, 0, 664, 665, 3, 146, 73, 0, 665, 97, 1, 0, 0, 0, 666, 668, 3, 100, 50, 0, 667, 666, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 670, 1, 0, 0, 0, 669, 671, 3, 102, 51, 0, 670, 669, 1, 0, 0, 0, 670, 671, 1, 0, 0, 0, 671, 673, 1, 0, 0, 0, 672, 674, 3, 104, 52, 0, 673, 672, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 99, 1, 0, 0, 0, 675, 676, 5, 68, 0, 0, 676, 677, 5, 11, 0, 0, 677, 678, 3, 114, 57, 0, 678, 101, 1, 0, 0, 0, 679, 680, 5, 65, 0, 0, 680, 681, 5, 11, 0, 0, 681, 682, 3, 88, 44, 0, 682, 103, 1, 0, 0, 0, 683, 684, 7, 9, 0, 0, 684, 685, 3, 106, 53, 0, 685, 105, 1, 0, 0, 0, 686, 693, 3, 108, 54, 0, 687, 688, 5, 9, 0, 0, 688, 689, 3, 108, 54, 0, 689, 690, 5, 2, 0, 0, 690, 691, 3, 108, 54, 0, 691, 693, 1, 0, 0, 0, 692, 686, 1, 0, 0, 0, 692, 687, 1, 0, 0, 0, 693, 107, 1, 0, 0, 0, 694, 695, 5, 19, 0, 0, 695, 707, 5, 76, 0, 0, 696, 697, 5, 95, 0, 0, 697, 707, 5, 69, 0, 0, 698, 699, 5, 95, 0, 0, 699, 707, 5, 32, 0, 0, 700, 701, 3, 144, 72, 0, 701, 702, 5, 69, 0, 0, 702, 707, 1, 0, 0, 0, 703, 704, 3, 144, 72, 0, 704, 705, 5, 32, 0, 0, 705, 707, 1, 0, 0, 0, 706, 694, 1, 0, 0, 0, 706, 696, 1, 0, 0, 0, 706, 698, 1, 0, 0, 0, 706, 700, 1, 0, 0, 0, 706, 703, 1, 0, 0, 0, 707, 109, 1, 0, 0, 0, 708, 709, 3, 116, 58, 0, 709, 710, 5, 0, 0, 1, 710, 111, 1, 0, 0, 0, 711, 768, 3, 156, 78, 0, 712, 713, 3, 156, 78, 0, 713, 714, 5, 131, 0, 0, 714, 715, 3, 156, 78, 0, 715, 722, 3, 112, 56, 0, 716, 717, 5, 117, 0, 0, 717, 718, 3, 156, 78, 0, 718, 719, 3, 112, 56, 0, 719, 721, 1, 0, 0, 0, 720, 716, 1, 0, 0, 0, 721, 724, 1, 0, 0, 0, 722, 720, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 726, 1, 0, 0, 0, 724, 722, 1, 0, 0, 0, 725, 727, 5, 117, 0, 0, 726, 725, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 729, 5, 150, 0, 0, 729, 768, 1, 0, 0, 0, 730, 731, 3, 156, 78, 0, 731, 732, 5, 131, 0, 0, 732, 737, 3, 158, 79, 0, 733, 734, 5, 117, 0, 0, 734, 736, 3, 158, 79, 0, 735, 733, 1, 0, 0, 0, 736, 739, 1, 0, 0, 0, 737, 735, 1, 0, 0, 0, 737, 738, 1, 0, 0, 0, 738, 741, 1, 0, 0, 0, 739, 737, 1, 0, 0, 0, 740, 742, 5, 117, 0, 0, 741, 740, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 5, 150, 0, 0, 744, 768, 1, 0, 0, 0, 745, 746, 3, 156, 78, 0, 746, 747, 5, 131, 0, 0, 747, 752, 3, 112, 56, 0, 748, 749, 5, 117, 0, 0, 749, 751, 3, 112, 56, 0, 750, 748, 1, 0, 0, 0, 751, 754, 1, 0, 0, 0, 752, 750, 1, 0, 0, 0, 752, 753, 1, 0, 0, 0, 753, 756, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 755, 757, 5, 117, 0, 0, 756, 755, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 759, 5, 150, 0, 0, 759, 768, 1, 0, 0, 0, 760, 761, 3, 156, 78, 0, 761, 763, 5, 131, 0, 0, 762, 764, 3, 114, 57, 0, 763, 762, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 765, 1, 0, 0, 0, 765, 766, 5, 150, 0, 0, 766, 768, 1, 0, 0, 0, 767, 711, 1, 0, 0, 0, 767, 712, 1, 0, 0, 0, 767, 730, 1, 0, 0, 0, 767, 745, 1, 0, 0, 0, 767, 760, 1, 0, 0, 0, 768, 113, 1, 0, 0, 0, 769, 774, 3, 116, 58, 0, 770, 771, 5, 117, 0, 0, 771, 773, 3, 116, 58, 0, 772, 770, 1, 0, 0, 0, 773, 776, 1, 0, 0, 0, 774, 772, 1, 0, 0, 0, 774, 775, 1, 0, 0, 0, 775, 778, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 777, 779, 5, 117, 0, 0, 778, 777, 1, 0, 0, 0, 778, 779, 1, 0, 0, 0, 779, 115, 1, 0, 0, 0, 780, 781, 6, 58, -1, 0, 781, 783, 5, 12, 0, 0, 782, 784, 3, 116, 58, 0, 783, 782, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 790, 1, 0, 0, 0, 785, 786, 5, 99, 0, 0, 786, 787, 3, 116, 58, 0, 787, 788, 5, 84, 0, 0, 788, 789, 3, 116, 58, 0, 789, 791, 1, 0, 0, 0, 790, 785, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 790, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 796, 1, 0, 0, 0, 794, 795, 5, 25, 0, 0, 795, 797, 3, 116, 58, 0, 796, 794, 1, 0, 0, 0, 796, 797, 1, 0, 0, 0, 797, 798, 1, 0, 0, 0, 798, 799, 5, 26, 0, 0, 799, 936, 1, 0, 0, 0, 800, 801, 5, 13, 0, 0, 801, 802, 5, 131, 0, 0, 802, 803, 3, 116, 58, 0, 803, 804, 5, 6, 0, 0, 804, 805, 3, 112, 56, 0, 805, 806, 5, 150, 0, 0, 806, 936, 1, 0, 0, 0, 807, 808, 5, 20, 0, 0, 808, 936, 5, 111, 0, 0, 809, 810, 5, 46, 0, 0, 810, 811, 3, 116, 58, 0, 811, 812, 3, 148, 74, 0, 812, 936, 1, 0, 0, 0, 813, 814, 5, 83, 0, 0, 814, 815, 5, 131, 0, 0, 815, 816, 3, 116, 58, 0, 816, 817, 5, 34, 0, 0, 817, 820, 3, 116, 58, 0, 818, 819, 5, 33, 0, 0, 819, 821, 3, 116, 58, 0, 820, 818, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 823, 5, 150, 0, 0, 823, 936, 1, 0, 0, 0, 824, 825, 5, 87, 0, 0, 825, 936, 5, 111, 0, 0, 826, 827, 5, 92, 0, 0, 827, 828, 5, 131, 0, 0, 828, 829, 7, 10, 0, 0, 829, 830, 3, 160, 80, 0, 830, 831, 5, 34, 0, 0, 831, 832, 3, 116, 58, 0, 832, 833, 5, 150, 0, 0, 833, 936, 1, 0, 0, 0, 834, 835, 3, 156, 78, 0, 835, 837, 5, 131, 0, 0, 836, 838, 3, 114, 57, 0, 837, 836, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 840, 5, 150, 0, 0, 840, 849, 1, 0, 0, 0, 841, 843, 5, 131, 0, 0, 842, 844, 5, 24, 0, 0, 843, 842, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 846, 1, 0, 0, 0, 845, 847, 3, 114, 57, 0, 846, 845, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 850, 5, 150, 0, 0, 849, 841, 1, 0, 0, 0, 849, 850, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 852, 5, 67, 0, 0, 852, 853, 5, 131, 0, 0, 853, 854, 3, 98, 49, 0, 854, 855, 5, 150, 0, 0, 855, 936, 1, 0, 0, 0, 856, 857, 3, 156, 78, 0, 857, 859, 5, 131, 0, 0, 858, 860, 3, 114, 57, 0, 859, 858, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 862, 5, 150, 0, 0, 862, 871, 1, 0, 0, 0, 863, 865, 5, 131, 0, 0, 864, 866, 5, 24, 0, 0, 865, 864, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 868, 1, 0, 0, 0, 867, 869, 3, 114, 57, 0, 868, 867, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 872, 5, 150, 0, 0, 871, 863, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 5, 67, 0, 0, 874, 875, 3, 156, 78, 0, 875, 936, 1, 0, 0, 0, 876, 882, 3, 156, 78, 0, 877, 879, 5, 131, 0, 0, 878, 880, 3, 114, 57, 0, 879, 878, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 881, 1, 0, 0, 0, 881, 883, 5, 150, 0, 0, 882, 877, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 884, 1, 0, 0, 0, 884, 886, 5, 131, 0, 0, 885, 887, 5, 24, 0, 0, 886, 885, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 889, 1, 0, 0, 0, 888, 890, 3, 114, 57, 0, 889, 888, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 892, 5, 150, 0, 0, 892, 936, 1, 0, 0, 0, 893, 936, 3, 120, 60, 0, 894, 936, 3, 162, 81, 0, 895, 936, 3, 146, 73, 0, 896, 897, 5, 119, 0, 0, 897, 936, 3, 116, 58, 22, 898, 899, 5, 59, 0, 0, 899, 936, 3, 116, 58, 16, 900, 901, 3, 136, 68, 0, 901, 902, 5, 121, 0, 0, 902, 904, 1, 0, 0, 0, 903, 900, 1, 0, 0, 0, 903, 904, 1, 0, 0, 0, 904, 905, 1, 0, 0, 0, 905, 936, 5, 113, 0, 0, 906, 907, 5, 131, 0, 0, 907, 908, 3, 44, 22, 0, 908, 909, 5, 150, 0, 0, 909, 936, 1, 0, 0, 0, 910, 911, 5, 131, 0, 0, 911, 912, 3, 116, 58, 0, 912, 913, 5, 150, 0, 0, 913, 936, 1, 0, 0, 0, 914, 915, 5, 131, 0, 0, 915, 916, 3, 114, 57, 0, 916, 917, 5, 150, 0, 0, 917, 936, 1, 0, 0, 0, 918, 920, 5, 130, 0, 0, 919, 921, 3, 114, 57, 0, 920, 919, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 936, 5, 149, 0, 0, 923, 925, 5, 129, 0, 0, 924, 926, 3, 40, 20, 0, 925, 924, 1, 0, 0, 0, 925, 926, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 936, 5, 148, 0, 0, 928, 936, 3, 118, 59, 0, 929, 930, 5, 129, 0, 0, 930, 931, 3, 130, 65, 0, 931, 932, 5, 148, 0, 0, 932, 936, 1, 0, 0, 0, 933, 936, 3, 36, 18, 0, 934, 936, 3, 128, 64, 0, 935, 780, 1, 0, 0, 0, 935, 800, 1, 0, 0, 0, 935, 807, 1, 0, 0, 0, 935, 809, 1, 0, 0, 0, 935, 813, 1, 0, 0, 0, 935, 824, 1, 0, 0, 0, 935, 826, 1, 0, 0, 0, 935, 834, 1, 0, 0, 0, 935, 856, 1, 0, 0, 0, 935, 876, 1, 0, 0, 0, 935, 893, 1, 0, 0, 0, 935, 894, 1, 0, 0, 0, 935, 895, 1, 0, 0, 0, 935, 896, 1, 0, 0, 0, 935, 898, 1, 0, 0, 0, 935, 903, 1, 0, 0, 0, 935, 906, 1, 0, 0, 0, 935, 910, 1, 0, 0, 0, 935, 914, 1, 0, 0, 0, 935, 918, 1, 0, 0, 0, 935, 923, 1, 0, 0, 0, 935, 928, 1, 0, 0, 0, 935, 929, 1, 0, 0, 0, 935, 933, 1, 0, 0, 0, 935, 934, 1, 0, 0, 0, 936, 1047, 1, 0, 0, 0, 937, 941, 10, 21, 0, 0, 938, 942, 5, 113, 0, 0, 939, 942, 5, 152, 0, 0, 940, 942, 5, 139, 0, 0, 941, 938, 1, 0, 0, 0, 941, 939, 1, 0, 0, 0, 941, 940, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 1046, 3, 116, 58, 22, 944, 948, 10, 20, 0, 0, 945, 949, 5, 140, 0, 0, 946, 949, 5, 119, 0, 0, 947, 949, 5, 118, 0, 0, 948, 945, 1, 0, 0, 0, 948, 946, 1, 0, 0, 0, 948, 947, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 1046, 3, 116, 58, 21, 951, 976, 10, 19, 0, 0, 952, 977, 5, 122, 0, 0, 953, 977, 5, 123, 0, 0, 954, 977, 5, 134, 0, 0, 955, 977, 5, 132, 0, 0, 956, 977, 5, 133, 0, 0, 957, 977, 5, 124, 0, 0, 958, 977, 5, 125, 0, 0, 959, 961, 5, 59, 0, 0, 960, 959, 1, 0, 0, 0, 960, 961, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 964, 5, 43, 0, 0, 963, 965, 5, 15, 0, 0, 964, 963, 1, 0, 0, 0, 964, 965, 1, 0, 0, 0, 965, 977, 1, 0, 0, 0, 966, 968, 5, 59, 0, 0, 967, 966, 1, 0, 0, 0, 967, 968, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 977, 7, 11, 0, 0, 970, 977, 5, 146, 0, 0, 971, 977, 5, 147, 0, 0, 972, 977, 5, 136, 0, 0, 973, 977, 5, 127, 0, 0, 974, 977, 5, 128, 0, 0, 975, 977, 5, 135, 0, 0, 976, 952, 1, 0, 0, 0, 976, 953, 1, 0, 0, 0, 976, 954, 1, 0, 0, 0, 976, 955, 1, 0, 0, 0, 976, 956, 1, 0, 0, 0, 976, 957, 1, 0, 0, 0, 976, 958, 1, 0, 0, 0, 976, 960, 1, 0, 0, 0, 976, 967, 1, 0, 0, 0, 976, 970, 1, 0, 0, 0, 976, 971, 1, 0, 0, 0, 976, 972, 1, 0, 0, 0, 976, 973, 1, 0, 0, 0, 976, 974, 1, 0, 0, 0, 976, 975, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 1046, 3, 116, 58, 20, 979, 980, 10, 17, 0, 0, 980, 981, 5, 138, 0, 0, 981, 1046, 3, 116, 58, 18, 982, 983, 10, 15, 0, 0, 983, 984, 5, 2, 0, 0, 984, 1046, 3, 116, 58, 16, 985, 986, 10, 14, 0, 0, 986, 987, 5, 64, 0, 0, 987, 1046, 3, 116, 58, 15, 988, 990, 10, 13, 0, 0, 989, 991, 5, 59, 0, 0, 990, 989, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 992, 1, 0, 0, 0, 992, 993, 5, 9, 0, 0, 993, 994, 3, 116, 58, 0, 994, 995, 5, 2, 0, 0, 995, 996, 3, 116, 58, 14, 996, 1046, 1, 0, 0, 0, 997, 998, 10, 12, 0, 0, 998, 999, 5, 141, 0, 0, 999, 1000, 3, 116, 58, 0, 1000, 1001, 5, 116, 0, 0, 1001, 1002, 3, 116, 58, 12, 1002, 1046, 1, 0, 0, 0, 1003, 1004, 10, 32, 0, 0, 1004, 1006, 5, 131, 0, 0, 1005, 1007, 3, 114, 57, 0, 1006, 1005, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 1008, 1, 0, 0, 0, 1008, 1046, 5, 150, 0, 0, 1009, 1010, 10, 28, 0, 0, 1010, 1011, 5, 130, 0, 0, 1011, 1012, 3, 116, 58, 0, 1012, 1013, 5, 149, 0, 0, 1013, 1046, 1, 0, 0, 0, 1014, 1015, 10, 27, 0, 0, 1015, 1016, 5, 121, 0, 0, 1016, 1046, 5, 109, 0, 0, 1017, 1018, 10, 26, 0, 0, 1018, 1019, 5, 121, 0, 0, 1019, 1046, 3, 156, 78, 0, 1020, 1021, 10, 25, 0, 0, 1021, 1022, 5, 137, 0, 0, 1022, 1023, 5, 130, 0, 0, 1023, 1024, 3, 116, 58, 0, 1024, 1025, 5, 149, 0, 0, 1025, 1046, 1, 0, 0, 0, 1026, 1027, 10, 24, 0, 0, 1027, 1028, 5, 137, 0, 0, 1028, 1046, 5, 109, 0, 0, 1029, 1030, 10, 23, 0, 0, 1030, 1031, 5, 137, 0, 0, 1031, 1046, 3, 156, 78, 0, 1032, 1033, 10, 18, 0, 0, 1033, 1035, 5, 47, 0, 0, 1034, 1036, 5, 59, 0, 0, 1035, 1034, 1, 0, 0, 0, 1035, 1036, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1046, 5, 60, 0, 0, 1038, 1043, 10, 11, 0, 0, 1039, 1040, 5, 6, 0, 0, 1040, 1044, 3, 156, 78, 0, 1041, 1042, 5, 6, 0, 0, 1042, 1044, 5, 111, 0, 0, 1043, 1039, 1, 0, 0, 0, 1043, 1041, 1, 0, 0, 0, 1044, 1046, 1, 0, 0, 0, 1045, 937, 1, 0, 0, 0, 1045, 944, 1, 0, 0, 0, 1045, 951, 1, 0, 0, 0, 1045, 979, 1, 0, 0, 0, 1045, 982, 1, 0, 0, 0, 1045, 985, 1, 0, 0, 0, 1045, 988, 1, 0, 0, 0, 1045, 997, 1, 0, 0, 0, 1045, 1003, 1, 0, 0, 0, 1045, 1009, 1, 0, 0, 0, 1045, 1014, 1, 0, 0, 0, 1045, 1017, 1, 0, 0, 0, 1045, 1020, 1, 0, 0, 0, 1045, 1026, 1, 0, 0, 0, 1045, 1029, 1, 0, 0, 0, 1045, 1032, 1, 0, 0, 0, 1045, 1038, 1, 0, 0, 0, 1046, 1049, 1, 0, 0, 0, 1047, 1045, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 117, 1, 0, 0, 0, 1049, 1047, 1, 0, 0, 0, 1050, 1051, 5, 131, 0, 0, 1051, 1056, 3, 156, 78, 0, 1052, 1053, 5, 117, 0, 0, 1053, 1055, 3, 156, 78, 0, 1054, 1052, 1, 0, 0, 0, 1055, 1058, 1, 0, 0, 0, 1056, 1054, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1060, 1, 0, 0, 0, 1058, 1056, 1, 0, 0, 0, 1059, 1061, 5, 117, 0, 0, 1060, 1059, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 5, 150, 0, 0, 1063, 1078, 1, 0, 0, 0, 1064, 1069, 3, 156, 78, 0, 1065, 1066, 5, 117, 0, 0, 1066, 1068, 3, 156, 78, 0, 1067, 1065, 1, 0, 0, 0, 1068, 1071, 1, 0, 0, 0, 1069, 1067, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1073, 1, 0, 0, 0, 1071, 1069, 1, 0, 0, 0, 1072, 1074, 5, 117, 0, 0, 1073, 1072, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1078, 1, 0, 0, 0, 1075, 1076, 5, 131, 0, 0, 1076, 1078, 5, 150, 0, 0, 1077, 1050, 1, 0, 0, 0, 1077, 1064, 1, 0, 0, 0, 1077, 1075, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1082, 5, 112, 0, 0, 1080, 1083, 3, 36, 18, 0, 1081, 1083, 3, 116, 58, 0, 1082, 1080, 1, 0, 0, 0, 1082, 1081, 1, 0, 0, 0, 1083, 119, 1, 0, 0, 0, 1084, 1085, 5, 133, 0, 0, 1085, 1089, 3, 156, 78, 0, 1086, 1088, 3, 122, 61, 0, 1087, 1086, 1, 0, 0, 0, 1088, 1091, 1, 0, 0, 0, 1089, 1087, 1, 0, 0, 0, 1089, 1090, 1, 0, 0, 0, 1090, 1092, 1, 0, 0, 0, 1091, 1089, 1, 0, 0, 0, 1092, 1093, 5, 152, 0, 0, 1093, 1094, 5, 125, 0, 0, 1094, 1117, 1, 0, 0, 0, 1095, 1096, 5, 133, 0, 0, 1096, 1100, 3, 156, 78, 0, 1097, 1099, 3, 122, 61, 0, 1098, 1097, 1, 0, 0, 0, 1099, 1102, 1, 0, 0, 0, 1100, 1098, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1103, 1, 0, 0, 0, 1102, 1100, 1, 0, 0, 0, 1103, 1109, 5, 125, 0, 0, 1104, 1110, 3, 120, 60, 0, 1105, 1106, 5, 129, 0, 0, 1106, 1107, 3, 116, 58, 0, 1107, 1108, 5, 148, 0, 0, 1108, 1110, 1, 0, 0, 0, 1109, 1104, 1, 0, 0, 0, 1109, 1105, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 5, 133, 0, 0, 1112, 1113, 5, 152, 0, 0, 1113, 1114, 3, 156, 78, 0, 1114, 1115, 5, 125, 0, 0, 1115, 1117, 1, 0, 0, 0, 1116, 1084, 1, 0, 0, 0, 1116, 1095, 1, 0, 0, 0, 1117, 121, 1, 0, 0, 0, 1118, 1119, 3, 156, 78, 0, 1119, 1120, 5, 123, 0, 0, 1120, 1121, 3, 160, 80, 0, 1121, 1130, 1, 0, 0, 0, 1122, 1123, 3, 156, 78, 0, 1123, 1124, 5, 123, 0, 0, 1124, 1125, 5, 129, 0, 0, 1125, 1126, 3, 116, 58, 0, 1126, 1127, 5, 148, 0, 0, 1127, 1130, 1, 0, 0, 0, 1128, 1130, 3, 156, 78, 0, 1129, 1118, 1, 0, 0, 0, 1129, 1122, 1, 0, 0, 0, 1129, 1128, 1, 0, 0, 0, 1130, 123, 1, 0, 0, 0, 1131, 1136, 3, 126, 63, 0, 1132, 1133, 5, 117, 0, 0, 1133, 1135, 3, 126, 63, 0, 1134, 1132, 1, 0, 0, 0, 1135, 1138, 1, 0, 0, 0, 1136, 1134, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1140, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1139, 1141, 5, 117, 0, 0, 1140, 1139, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 125, 1, 0, 0, 0, 1142, 1143, 3, 156, 78, 0, 1143, 1144, 5, 6, 0, 0, 1144, 1145, 5, 131, 0, 0, 1145, 1146, 3, 44, 22, 0, 1146, 1147, 5, 150, 0, 0, 1147, 1153, 1, 0, 0, 0, 1148, 1149, 3, 116, 58, 0, 1149, 1150, 5, 6, 0, 0, 1150, 1151, 3, 156, 78, 0, 1151, 1153, 1, 0, 0, 0, 1152, 1142, 1, 0, 0, 0, 1152, 1148, 1, 0, 0, 0, 1153, 127, 1, 0, 0, 0, 1154, 1155, 3, 136, 68, 0, 1155, 1156, 5, 121, 0, 0, 1156, 1158, 1, 0, 0, 0, 1157, 1154, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 3, 130, 65, 0, 1160, 129, 1, 0, 0, 0, 1161, 1166, 3, 156, 78, 0, 1162, 1163, 5, 121, 0, 0, 1163, 1165, 3, 156, 78, 0, 1164, 1162, 1, 0, 0, 0, 1165, 1168, 1, 0, 0, 0, 1166, 1164, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 131, 1, 0, 0, 0, 1168, 1166, 1, 0, 0, 0, 1169, 1170, 6, 66, -1, 0, 1170, 1179, 3, 136, 68, 0, 1171, 1179, 3, 134, 67, 0, 1172, 1173, 5, 131, 0, 0, 1173, 1174, 3, 44, 22, 0, 1174, 1175, 5, 150, 0, 0, 1175, 1179, 1, 0, 0, 0, 1176, 1179, 3, 120, 60, 0, 1177, 1179, 3, 36, 18, 0, 1178, 1169, 1, 0, 0, 0, 1178, 1171, 1, 0, 0, 0, 1178, 1172, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1178, 1177, 1, 0, 0, 0, 1179, 1188, 1, 0, 0, 0, 1180, 1184, 10, 3, 0, 0, 1181, 1185, 3, 154, 77, 0, 1182, 1183, 5, 6, 0, 0, 1183, 1185, 3, 156, 78, 0, 1184, 1181, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1185, 1187, 1, 0, 0, 0, 1186, 1180, 1, 0, 0, 0, 1187, 1190, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 133, 1, 0, 0, 0, 1190, 1188, 1, 0, 0, 0, 1191, 1192, 3, 156, 78, 0, 1192, 1194, 5, 131, 0, 0, 1193, 1195, 3, 138, 69, 0, 1194, 1193, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 5, 150, 0, 0, 1197, 135, 1, 0, 0, 0, 1198, 1199, 3, 140, 70, 0, 1199, 1200, 5, 121, 0, 0, 1200, 1202, 1, 0, 0, 0, 1201, 1198, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 3, 156, 78, 0, 1204, 137, 1, 0, 0, 0, 1205, 1210, 3, 116, 58, 0, 1206, 1207, 5, 117, 0, 0, 1207, 1209, 3, 116, 58, 0, 1208, 1206, 1, 0, 0, 0, 1209, 1212, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1214, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1213, 1215, 5, 117, 0, 0, 1214, 1213, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 139, 1, 0, 0, 0, 1216, 1217, 3, 156, 78, 0, 1217, 141, 1, 0, 0, 0, 1218, 1227, 5, 107, 0, 0, 1219, 1220, 5, 121, 0, 0, 1220, 1227, 7, 12, 0, 0, 1221, 1222, 5, 109, 0, 0, 1222, 1224, 5, 121, 0, 0, 1223, 1225, 7, 12, 0, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1227, 1, 0, 0, 0, 1226, 1218, 1, 0, 0, 0, 1226, 1219, 1, 0, 0, 0, 1226, 1221, 1, 0, 0, 0, 1227, 143, 1, 0, 0, 0, 1228, 1230, 7, 13, 0, 0, 1229, 1228, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1237, 1, 0, 0, 0, 1231, 1238, 3, 142, 71, 0, 1232, 1238, 5, 108, 0, 0, 1233, 1238, 5, 109, 0, 0, 1234, 1238, 5, 110, 0, 0, 1235, 1238, 5, 44, 0, 0, 1236, 1238, 5, 58, 0, 0, 1237, 1231, 1, 0, 0, 0, 1237, 1232, 1, 0, 0, 0, 1237, 1233, 1, 0, 0, 0, 1237, 1234, 1, 0, 0, 0, 1237, 1235, 1, 0, 0, 0, 1237, 1236, 1, 0, 0, 0, 1238, 145, 1, 0, 0, 0, 1239, 1243, 3, 144, 72, 0, 1240, 1243, 5, 111, 0, 0, 1241, 1243, 5, 60, 0, 0, 1242, 1239, 1, 0, 0, 0, 1242, 1240, 1, 0, 0, 0, 1242, 1241, 1, 0, 0, 0, 1243, 147, 1, 0, 0, 0, 1244, 1245, 7, 14, 0, 0, 1245, 149, 1, 0, 0, 0, 1246, 1247, 7, 15, 0, 0, 1247, 151, 1, 0, 0, 0, 1248, 1249, 7, 16, 0, 0, 1249, 153, 1, 0, 0, 0, 1250, 1253, 5, 106, 0, 0, 1251, 1253, 3, 152, 76, 0, 1252, 1250, 1, 0, 0, 0, 1252, 1251, 1, 0, 0, 0, 1253, 155, 1, 0, 0, 0, 1254, 1258, 5, 106, 0, 0, 1255, 1258, 3, 148, 74, 0, 1256, 1258, 3, 150, 75, 0, 1257, 1254, 1, 0, 0, 0, 1257, 1255, 1, 0, 0, 0, 1257, 1256, 1, 0, 0, 0, 1258, 157, 1, 0, 0, 0, 1259, 1260, 3, 160, 80, 0, 1260, 1261, 5, 123, 0, 0, 1261, 1262, 3, 144, 72, 0, 1262, 159, 1, 0, 0, 0, 1263, 1266, 5, 111, 0, 0, 1264, 1266, 3, 162, 81, 0, 1265, 1263, 1, 0, 0, 0, 1265, 1264, 1, 0, 0, 0, 1266, 161, 1, 0, 0, 0, 1267, 1271, 5, 143, 0, 0, 1268, 1270, 3, 164, 82, 0, 1269, 1268, 1, 0, 0, 0, 1270, 1273, 1, 0, 0, 0, 1271, 1269, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1274, 1, 0, 0, 0, 1273, 1271, 1, 0, 0, 0, 1274, 1275, 5, 145, 0, 0, 1275, 163, 1, 0, 0, 0, 1276, 1277, 5, 158, 0, 0, 1277, 1278, 3, 116, 58, 0, 1278, 1279, 5, 148, 0, 0, 1279, 1282, 1, 0, 0, 0, 1280, 1282, 5, 157, 0, 0, 1281, 1276, 1, 0, 0, 0, 1281, 1280, 1, 0, 0, 0, 1282, 165, 1, 0, 0, 0, 1283, 1287, 5, 144, 0, 0, 1284, 1286, 3, 168, 84, 0, 1285, 1284, 1, 0, 0, 0, 1286, 1289, 1, 0, 0, 0, 1287, 1285, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1290, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1290, 1291, 5, 0, 0, 1, 1291, 167, 1, 0, 0, 0, 1292, 1293, 5, 160, 0, 0, 1293, 1294, 3, 116, 58, 0, 1294, 1295, 5, 148, 0, 0, 1295, 1298, 1, 0, 0, 0, 1296, 1298, 5, 159, 0, 0, 1297, 1292, 1, 0, 0, 0, 1297, 1296, 1, 0, 0, 0, 1298, 169, 1, 0, 0, 0, 166, 173, 180, 189, 196, 200, 214, 218, 221, 225, 228, 235, 239, 248, 253, 262, 270, 277, 281, 287, 292, 300, 307, 313, 325, 333, 347, 351, 356, 366, 375, 378, 382, 385, 389, 392, 395, 398, 401, 405, 409, 412, 415, 418, 422, 425, 434, 440, 461, 478, 495, 501, 507, 518, 520, 531, 534, 540, 548, 554, 556, 560, 565, 568, 571, 575, 579, 582, 584, 587, 591, 595, 598, 600, 602, 607, 618, 624, 631, 636, 640, 644, 650, 652, 659, 667, 670, 673, 692, 706, 722, 726, 737, 741, 752, 756, 763, 767, 774, 778, 783, 792, 796, 820, 837, 843, 846, 849, 859, 865, 868, 871, 879, 882, 886, 889, 903, 920, 925, 935, 941, 948, 960, 964, 967, 976, 990, 1006, 1035, 1043, 1045, 1047, 1056, 1060, 1069, 1073, 1077, 1082, 1089, 1100, 1109, 1116, 1129, 1136, 1140, 1152, 1157, 1166, 1178, 1184, 1188, 1194, 1201, 1210, 1214, 1224, 1226, 1229, 1237, 1242, 1252, 1257, 1265, 1271, 1281, 1287, 1297] \ No newline at end of file diff --git a/posthog/hogql/grammar/HogQLParser.py b/posthog/hogql/grammar/HogQLParser.py index fc7ea030d66d6..347791e3ea4f1 100644 --- a/posthog/hogql/grammar/HogQLParser.py +++ b/posthog/hogql/grammar/HogQLParser.py @@ -10,7 +10,7 @@ def serializedATN(): return [ - 4,1,160,1302,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,160,1300,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, @@ -22,519 +22,519 @@ def serializedATN(): 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,1,0,5,0,174,8,0,10,0,12,0,177,9,0,1,0,1,0,1,1,1,1,3,1,183, - 8,1,1,2,1,2,1,3,1,3,1,3,1,3,1,3,3,3,192,8,3,1,4,1,4,1,4,5,4,197, - 8,4,10,4,12,4,200,9,4,1,4,3,4,203,8,4,1,5,1,5,1,5,1,5,1,5,1,5,1, - 5,1,5,1,5,1,5,1,5,1,5,3,5,217,8,5,1,6,1,6,3,6,221,8,6,1,6,3,6,224, - 8,6,1,7,1,7,3,7,228,8,7,1,7,3,7,231,8,7,1,8,1,8,1,8,1,8,1,8,3,8, - 238,8,8,1,8,1,8,3,8,242,8,8,1,8,1,8,1,9,1,9,1,9,5,9,249,8,9,10,9, - 12,9,252,9,9,1,9,1,9,3,9,256,8,9,1,10,1,10,1,10,1,10,1,10,1,10,1, - 10,3,10,265,8,10,1,11,1,11,1,11,1,11,1,11,1,11,3,11,273,8,11,1,12, - 1,12,1,12,1,12,1,12,3,12,280,8,12,1,12,1,12,3,12,284,8,12,1,12,1, - 12,1,12,1,12,3,12,290,8,12,1,12,1,12,1,12,3,12,295,8,12,1,13,1,13, - 1,13,1,13,1,13,1,13,3,13,303,8,13,1,13,1,13,1,13,1,13,1,13,3,13, - 310,8,13,1,14,1,14,1,14,1,14,3,14,316,8,14,1,14,1,14,1,14,1,15,1, - 15,1,15,1,15,1,15,1,16,1,16,3,16,328,8,16,1,17,1,17,1,18,1,18,5, - 18,334,8,18,10,18,12,18,337,9,18,1,18,1,18,1,19,1,19,1,19,1,19,1, - 20,1,20,1,20,5,20,348,8,20,10,20,12,20,351,9,20,1,20,3,20,354,8, - 20,1,21,1,21,1,21,3,21,359,8,21,1,21,1,21,1,22,1,22,1,22,1,22,5, - 22,367,8,22,10,22,12,22,370,9,22,1,23,1,23,1,23,1,23,1,23,1,23,3, - 23,378,8,23,1,24,3,24,381,8,24,1,24,1,24,3,24,385,8,24,1,24,3,24, - 388,8,24,1,24,1,24,3,24,392,8,24,1,24,3,24,395,8,24,1,24,3,24,398, - 8,24,1,24,3,24,401,8,24,1,24,3,24,404,8,24,1,24,1,24,3,24,408,8, - 24,1,24,1,24,3,24,412,8,24,1,24,3,24,415,8,24,1,24,3,24,418,8,24, - 1,24,3,24,421,8,24,1,24,1,24,3,24,425,8,24,1,24,3,24,428,8,24,1, - 25,1,25,1,25,1,26,1,26,1,26,1,26,3,26,437,8,26,1,27,1,27,1,27,1, - 28,3,28,443,8,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1,29,1, - 29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,5,29,462,8,29,10,29,12,29, - 465,9,29,1,30,1,30,1,30,1,31,1,31,1,31,1,32,1,32,1,32,1,32,1,32, - 1,32,1,32,1,32,3,32,481,8,32,1,33,1,33,1,33,1,34,1,34,1,34,1,34, - 1,35,1,35,1,35,1,35,1,36,1,36,1,36,1,36,3,36,498,8,36,1,36,1,36, - 1,36,1,36,3,36,504,8,36,1,36,1,36,1,36,1,36,3,36,510,8,36,1,36,1, - 36,1,36,1,36,1,36,1,36,1,36,1,36,1,36,3,36,521,8,36,3,36,523,8,36, - 1,37,1,37,1,37,1,38,1,38,1,38,1,39,1,39,1,39,3,39,534,8,39,1,39, - 3,39,537,8,39,1,39,1,39,1,39,1,39,3,39,543,8,39,1,39,1,39,1,39,1, - 39,1,39,1,39,3,39,551,8,39,1,39,1,39,1,39,1,39,5,39,557,8,39,10, - 39,12,39,560,9,39,1,40,3,40,563,8,40,1,40,1,40,1,40,3,40,568,8,40, - 1,40,3,40,571,8,40,1,40,3,40,574,8,40,1,40,1,40,3,40,578,8,40,1, - 40,1,40,3,40,582,8,40,1,40,3,40,585,8,40,3,40,587,8,40,1,40,3,40, - 590,8,40,1,40,1,40,3,40,594,8,40,1,40,1,40,3,40,598,8,40,1,40,3, - 40,601,8,40,3,40,603,8,40,3,40,605,8,40,1,41,1,41,1,41,3,41,610, - 8,41,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,621,8,42, - 1,43,1,43,1,43,1,43,3,43,627,8,43,1,44,1,44,1,44,5,44,632,8,44,10, - 44,12,44,635,9,44,1,45,1,45,3,45,639,8,45,1,45,1,45,3,45,643,8,45, - 1,45,1,45,3,45,647,8,45,1,46,1,46,1,46,1,46,3,46,653,8,46,3,46,655, - 8,46,1,47,1,47,1,47,5,47,660,8,47,10,47,12,47,663,9,47,1,48,1,48, - 1,48,1,48,1,49,3,49,670,8,49,1,49,3,49,673,8,49,1,49,3,49,676,8, - 49,1,50,1,50,1,50,1,50,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,53,1, - 53,1,53,1,53,1,53,1,53,3,53,695,8,53,1,54,1,54,1,54,1,54,1,54,1, - 54,1,54,1,54,1,54,1,54,1,54,1,54,3,54,709,8,54,1,55,1,55,1,55,1, - 56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,5,56,723,8,56,10,56,12, - 56,726,9,56,1,56,3,56,729,8,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56, - 5,56,738,8,56,10,56,12,56,741,9,56,1,56,3,56,744,8,56,1,56,1,56, - 1,56,1,56,1,56,1,56,1,56,5,56,753,8,56,10,56,12,56,756,9,56,1,56, - 3,56,759,8,56,1,56,1,56,1,56,1,56,1,56,3,56,766,8,56,1,56,1,56,3, - 56,770,8,56,1,57,1,57,1,57,5,57,775,8,57,10,57,12,57,778,9,57,1, - 57,3,57,781,8,57,1,58,1,58,1,58,3,58,786,8,58,1,58,1,58,1,58,1,58, - 1,58,4,58,793,8,58,11,58,12,58,794,1,58,1,58,3,58,799,8,58,1,58, + 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,1, + 0,5,0,172,8,0,10,0,12,0,175,9,0,1,0,1,0,1,1,1,1,3,1,181,8,1,1,2, + 1,2,1,3,1,3,1,3,1,3,1,3,3,3,190,8,3,1,4,1,4,1,4,5,4,195,8,4,10,4, + 12,4,198,9,4,1,4,3,4,201,8,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5, + 1,5,1,5,1,5,3,5,215,8,5,1,6,1,6,3,6,219,8,6,1,6,3,6,222,8,6,1,7, + 1,7,3,7,226,8,7,1,7,3,7,229,8,7,1,8,1,8,1,8,1,8,1,8,3,8,236,8,8, + 1,8,1,8,3,8,240,8,8,1,8,1,8,1,9,1,9,1,9,5,9,247,8,9,10,9,12,9,250, + 9,9,1,9,1,9,3,9,254,8,9,1,10,1,10,1,10,1,10,1,10,1,10,1,10,3,10, + 263,8,10,1,11,1,11,1,11,1,11,1,11,1,11,3,11,271,8,11,1,12,1,12,1, + 12,1,12,1,12,3,12,278,8,12,1,12,1,12,3,12,282,8,12,1,12,1,12,1,12, + 1,12,3,12,288,8,12,1,12,1,12,1,12,3,12,293,8,12,1,13,1,13,1,13,1, + 13,1,13,1,13,3,13,301,8,13,1,13,1,13,1,13,1,13,1,13,3,13,308,8,13, + 1,14,1,14,1,14,1,14,3,14,314,8,14,1,14,1,14,1,14,1,15,1,15,1,15, + 1,15,1,15,1,16,1,16,3,16,326,8,16,1,17,1,17,1,18,1,18,5,18,332,8, + 18,10,18,12,18,335,9,18,1,18,1,18,1,19,1,19,1,19,1,19,1,20,1,20, + 1,20,5,20,346,8,20,10,20,12,20,349,9,20,1,20,3,20,352,8,20,1,21, + 1,21,1,21,3,21,357,8,21,1,21,1,21,1,22,1,22,1,22,1,22,5,22,365,8, + 22,10,22,12,22,368,9,22,1,23,1,23,1,23,1,23,1,23,1,23,3,23,376,8, + 23,1,24,3,24,379,8,24,1,24,1,24,3,24,383,8,24,1,24,3,24,386,8,24, + 1,24,1,24,3,24,390,8,24,1,24,3,24,393,8,24,1,24,3,24,396,8,24,1, + 24,3,24,399,8,24,1,24,3,24,402,8,24,1,24,1,24,3,24,406,8,24,1,24, + 1,24,3,24,410,8,24,1,24,3,24,413,8,24,1,24,3,24,416,8,24,1,24,3, + 24,419,8,24,1,24,1,24,3,24,423,8,24,1,24,3,24,426,8,24,1,25,1,25, + 1,25,1,26,1,26,1,26,1,26,3,26,435,8,26,1,27,1,27,1,27,1,28,3,28, + 441,8,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1,29,1,29,1,29, + 1,29,1,29,1,29,1,29,1,29,1,29,5,29,460,8,29,10,29,12,29,463,9,29, + 1,30,1,30,1,30,1,31,1,31,1,31,1,32,1,32,1,32,1,32,1,32,1,32,1,32, + 1,32,3,32,479,8,32,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,35,1,35, + 1,35,1,35,1,36,1,36,1,36,1,36,3,36,496,8,36,1,36,1,36,1,36,1,36, + 3,36,502,8,36,1,36,1,36,1,36,1,36,3,36,508,8,36,1,36,1,36,1,36,1, + 36,1,36,1,36,1,36,1,36,1,36,3,36,519,8,36,3,36,521,8,36,1,37,1,37, + 1,37,1,38,1,38,1,38,1,39,1,39,1,39,3,39,532,8,39,1,39,3,39,535,8, + 39,1,39,1,39,1,39,1,39,3,39,541,8,39,1,39,1,39,1,39,1,39,1,39,1, + 39,3,39,549,8,39,1,39,1,39,1,39,1,39,5,39,555,8,39,10,39,12,39,558, + 9,39,1,40,3,40,561,8,40,1,40,1,40,1,40,3,40,566,8,40,1,40,3,40,569, + 8,40,1,40,3,40,572,8,40,1,40,1,40,3,40,576,8,40,1,40,1,40,3,40,580, + 8,40,1,40,3,40,583,8,40,3,40,585,8,40,1,40,3,40,588,8,40,1,40,1, + 40,3,40,592,8,40,1,40,1,40,3,40,596,8,40,1,40,3,40,599,8,40,3,40, + 601,8,40,3,40,603,8,40,1,41,1,41,1,41,3,41,608,8,41,1,42,1,42,1, + 42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,619,8,42,1,43,1,43,1,43,1, + 43,3,43,625,8,43,1,44,1,44,1,44,5,44,630,8,44,10,44,12,44,633,9, + 44,1,45,1,45,3,45,637,8,45,1,45,1,45,3,45,641,8,45,1,45,1,45,3,45, + 645,8,45,1,46,1,46,1,46,1,46,3,46,651,8,46,3,46,653,8,46,1,47,1, + 47,1,47,5,47,658,8,47,10,47,12,47,661,9,47,1,48,1,48,1,48,1,48,1, + 49,3,49,668,8,49,1,49,3,49,671,8,49,1,49,3,49,674,8,49,1,50,1,50, + 1,50,1,50,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,53,1,53,1,53,1,53, + 1,53,1,53,3,53,693,8,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54, + 1,54,1,54,1,54,1,54,3,54,707,8,54,1,55,1,55,1,55,1,56,1,56,1,56, + 1,56,1,56,1,56,1,56,1,56,1,56,5,56,721,8,56,10,56,12,56,724,9,56, + 1,56,3,56,727,8,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,5,56,736,8, + 56,10,56,12,56,739,9,56,1,56,3,56,742,8,56,1,56,1,56,1,56,1,56,1, + 56,1,56,1,56,5,56,751,8,56,10,56,12,56,754,9,56,1,56,3,56,757,8, + 56,1,56,1,56,1,56,1,56,1,56,3,56,764,8,56,1,56,1,56,3,56,768,8,56, + 1,57,1,57,1,57,5,57,773,8,57,10,57,12,57,776,9,57,1,57,3,57,779, + 8,57,1,58,1,58,1,58,3,58,784,8,58,1,58,1,58,1,58,1,58,1,58,4,58, + 791,8,58,11,58,12,58,792,1,58,1,58,3,58,797,8,58,1,58,1,58,1,58, 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, - 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,823,8,58,1,58,1,58, + 1,58,1,58,1,58,1,58,1,58,1,58,3,58,821,8,58,1,58,1,58,1,58,1,58, + 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,838, + 8,58,1,58,1,58,1,58,1,58,3,58,844,8,58,1,58,3,58,847,8,58,1,58,3, + 58,850,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,860,8,58, + 1,58,1,58,1,58,1,58,3,58,866,8,58,1,58,3,58,869,8,58,1,58,3,58,872, + 8,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,880,8,58,1,58,3,58,883,8, + 58,1,58,1,58,3,58,887,8,58,1,58,3,58,890,8,58,1,58,1,58,1,58,1,58, + 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,904,8,58,1,58,1,58, 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, - 3,58,840,8,58,1,58,1,58,1,58,1,58,3,58,846,8,58,1,58,3,58,849,8, - 58,1,58,3,58,852,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3, - 58,862,8,58,1,58,1,58,1,58,1,58,3,58,868,8,58,1,58,3,58,871,8,58, - 1,58,3,58,874,8,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,882,8,58,1, - 58,3,58,885,8,58,1,58,1,58,3,58,889,8,58,1,58,3,58,892,8,58,1,58, - 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,906, - 8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, - 1,58,1,58,1,58,3,58,923,8,58,1,58,1,58,1,58,3,58,928,8,58,1,58,1, - 58,1,58,1,58,3,58,934,8,58,1,58,1,58,1,58,1,58,3,58,940,8,58,1,58, - 1,58,1,58,1,58,1,58,3,58,947,8,58,1,58,1,58,1,58,1,58,1,58,1,58, - 1,58,1,58,1,58,1,58,3,58,959,8,58,1,58,1,58,3,58,963,8,58,1,58,3, - 58,966,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,975,8,58,1,58, - 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,989, - 8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, - 1,58,1,58,3,58,1005,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, + 3,58,921,8,58,1,58,1,58,1,58,3,58,926,8,58,1,58,1,58,1,58,1,58,1, + 58,1,58,1,58,1,58,3,58,936,8,58,1,58,1,58,1,58,1,58,3,58,942,8,58, + 1,58,1,58,1,58,1,58,1,58,3,58,949,8,58,1,58,1,58,1,58,1,58,1,58, + 1,58,1,58,1,58,1,58,1,58,3,58,961,8,58,1,58,1,58,3,58,965,8,58,1, + 58,3,58,968,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,977,8,58, + 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58, + 991,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, + 1,58,1,58,1,58,3,58,1007,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, 1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, - 1,58,1,58,1,58,1,58,1,58,1,58,3,58,1034,8,58,1,58,1,58,1,58,1,58, - 1,58,1,58,3,58,1042,8,58,5,58,1044,8,58,10,58,12,58,1047,9,58,1, - 59,1,59,1,59,1,59,5,59,1053,8,59,10,59,12,59,1056,9,59,1,59,3,59, - 1059,8,59,1,59,1,59,1,59,1,59,1,59,5,59,1066,8,59,10,59,12,59,1069, - 9,59,1,59,3,59,1072,8,59,1,59,1,59,3,59,1076,8,59,1,59,1,59,1,59, - 3,59,1081,8,59,1,60,1,60,1,60,5,60,1086,8,60,10,60,12,60,1089,9, - 60,1,60,1,60,1,60,1,60,1,60,1,60,5,60,1097,8,60,10,60,12,60,1100, - 9,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,1108,8,60,1,60,1,60,1,60, - 1,60,1,60,3,60,1115,8,60,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,61, - 1,61,1,61,1,61,3,61,1128,8,61,1,62,1,62,1,62,5,62,1133,8,62,10,62, - 12,62,1136,9,62,1,62,3,62,1139,8,62,1,63,1,63,1,63,1,63,1,63,1,63, - 1,63,1,63,1,63,1,63,3,63,1151,8,63,1,64,1,64,1,64,1,64,3,64,1157, - 8,64,1,64,3,64,1160,8,64,1,65,1,65,1,65,5,65,1165,8,65,10,65,12, - 65,1168,9,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,3,66,1179, - 8,66,1,66,1,66,1,66,1,66,3,66,1185,8,66,5,66,1187,8,66,10,66,12, - 66,1190,9,66,1,67,1,67,1,67,3,67,1195,8,67,1,67,1,67,1,68,1,68,1, - 68,3,68,1202,8,68,1,68,1,68,1,69,1,69,1,69,5,69,1209,8,69,10,69, - 12,69,1212,9,69,1,69,3,69,1215,8,69,1,70,1,70,1,71,1,71,1,71,1,71, - 1,71,1,71,3,71,1225,8,71,3,71,1227,8,71,1,72,3,72,1230,8,72,1,72, - 1,72,1,72,1,72,1,72,1,72,3,72,1238,8,72,1,73,1,73,1,73,3,73,1243, - 8,73,1,74,1,74,1,75,1,75,1,76,1,76,1,77,1,77,3,77,1253,8,77,1,78, - 1,78,1,78,3,78,1258,8,78,1,79,1,79,1,79,1,79,1,80,1,80,1,81,1,81, - 3,81,1268,8,81,1,82,1,82,5,82,1272,8,82,10,82,12,82,1275,9,82,1, - 82,1,82,1,83,1,83,1,83,1,83,1,83,3,83,1284,8,83,1,84,1,84,5,84,1288, - 8,84,10,84,12,84,1291,9,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,3, - 85,1300,8,85,1,85,0,3,78,116,132,86,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, - 0,17,2,0,31,31,36,36,2,0,18,18,75,75,2,0,45,45,52,52,3,0,1,1,4,4, - 8,8,4,0,1,1,3,4,8,8,81,81,2,0,52,52,74,74,2,0,1,1,4,4,2,0,7,7,22, - 23,2,0,30,30,50,50,2,0,72,72,77,77,3,0,10,10,51,51,91,91,2,0,42, - 42,54,54,1,0,108,109,2,0,119,119,140,140,7,0,21,21,39,39,56,57,71, - 71,79,79,98,98,104,104,17,0,1,13,15,20,22,28,30,30,32,35,37,38,40, - 43,45,52,54,55,59,59,61,70,72,78,80,84,86,93,95,97,99,100,102,103, - 4,0,20,20,30,30,40,40,49,49,1475,0,175,1,0,0,0,2,182,1,0,0,0,4,184, - 1,0,0,0,6,186,1,0,0,0,8,193,1,0,0,0,10,216,1,0,0,0,12,218,1,0,0, - 0,14,225,1,0,0,0,16,232,1,0,0,0,18,245,1,0,0,0,20,257,1,0,0,0,22, - 266,1,0,0,0,24,274,1,0,0,0,26,296,1,0,0,0,28,311,1,0,0,0,30,320, - 1,0,0,0,32,325,1,0,0,0,34,329,1,0,0,0,36,331,1,0,0,0,38,340,1,0, - 0,0,40,344,1,0,0,0,42,358,1,0,0,0,44,362,1,0,0,0,46,377,1,0,0,0, - 48,380,1,0,0,0,50,429,1,0,0,0,52,432,1,0,0,0,54,438,1,0,0,0,56,442, - 1,0,0,0,58,448,1,0,0,0,60,466,1,0,0,0,62,469,1,0,0,0,64,472,1,0, - 0,0,66,482,1,0,0,0,68,485,1,0,0,0,70,489,1,0,0,0,72,522,1,0,0,0, - 74,524,1,0,0,0,76,527,1,0,0,0,78,542,1,0,0,0,80,604,1,0,0,0,82,609, - 1,0,0,0,84,620,1,0,0,0,86,622,1,0,0,0,88,628,1,0,0,0,90,636,1,0, - 0,0,92,654,1,0,0,0,94,656,1,0,0,0,96,664,1,0,0,0,98,669,1,0,0,0, - 100,677,1,0,0,0,102,681,1,0,0,0,104,685,1,0,0,0,106,694,1,0,0,0, - 108,708,1,0,0,0,110,710,1,0,0,0,112,769,1,0,0,0,114,771,1,0,0,0, - 116,933,1,0,0,0,118,1075,1,0,0,0,120,1114,1,0,0,0,122,1127,1,0,0, - 0,124,1129,1,0,0,0,126,1150,1,0,0,0,128,1159,1,0,0,0,130,1161,1, - 0,0,0,132,1178,1,0,0,0,134,1191,1,0,0,0,136,1201,1,0,0,0,138,1205, - 1,0,0,0,140,1216,1,0,0,0,142,1226,1,0,0,0,144,1229,1,0,0,0,146,1242, - 1,0,0,0,148,1244,1,0,0,0,150,1246,1,0,0,0,152,1248,1,0,0,0,154,1252, - 1,0,0,0,156,1257,1,0,0,0,158,1259,1,0,0,0,160,1263,1,0,0,0,162,1267, - 1,0,0,0,164,1269,1,0,0,0,166,1283,1,0,0,0,168,1285,1,0,0,0,170,1299, - 1,0,0,0,172,174,3,2,1,0,173,172,1,0,0,0,174,177,1,0,0,0,175,173, - 1,0,0,0,175,176,1,0,0,0,176,178,1,0,0,0,177,175,1,0,0,0,178,179, - 5,0,0,1,179,1,1,0,0,0,180,183,3,6,3,0,181,183,3,10,5,0,182,180,1, - 0,0,0,182,181,1,0,0,0,183,3,1,0,0,0,184,185,3,116,58,0,185,5,1,0, - 0,0,186,187,5,53,0,0,187,191,3,156,78,0,188,189,5,116,0,0,189,190, - 5,123,0,0,190,192,3,4,2,0,191,188,1,0,0,0,191,192,1,0,0,0,192,7, - 1,0,0,0,193,198,3,156,78,0,194,195,5,117,0,0,195,197,3,156,78,0, - 196,194,1,0,0,0,197,200,1,0,0,0,198,196,1,0,0,0,198,199,1,0,0,0, - 199,202,1,0,0,0,200,198,1,0,0,0,201,203,5,117,0,0,202,201,1,0,0, - 0,202,203,1,0,0,0,203,9,1,0,0,0,204,217,3,12,6,0,205,217,3,14,7, - 0,206,217,3,18,9,0,207,217,3,20,10,0,208,217,3,22,11,0,209,217,3, - 26,13,0,210,217,3,24,12,0,211,217,3,28,14,0,212,217,3,30,15,0,213, - 217,3,36,18,0,214,217,3,32,16,0,215,217,3,34,17,0,216,204,1,0,0, - 0,216,205,1,0,0,0,216,206,1,0,0,0,216,207,1,0,0,0,216,208,1,0,0, - 0,216,209,1,0,0,0,216,210,1,0,0,0,216,211,1,0,0,0,216,212,1,0,0, - 0,216,213,1,0,0,0,216,214,1,0,0,0,216,215,1,0,0,0,217,11,1,0,0,0, - 218,220,5,73,0,0,219,221,3,4,2,0,220,219,1,0,0,0,220,221,1,0,0,0, - 221,223,1,0,0,0,222,224,5,151,0,0,223,222,1,0,0,0,223,224,1,0,0, - 0,224,13,1,0,0,0,225,227,5,85,0,0,226,228,3,4,2,0,227,226,1,0,0, - 0,227,228,1,0,0,0,228,230,1,0,0,0,229,231,5,151,0,0,230,229,1,0, - 0,0,230,231,1,0,0,0,231,15,1,0,0,0,232,241,5,14,0,0,233,234,5,131, - 0,0,234,237,3,156,78,0,235,236,5,116,0,0,236,238,3,156,78,0,237, - 235,1,0,0,0,237,238,1,0,0,0,238,239,1,0,0,0,239,240,5,150,0,0,240, - 242,1,0,0,0,241,233,1,0,0,0,241,242,1,0,0,0,242,243,1,0,0,0,243, - 244,3,36,18,0,244,17,1,0,0,0,245,246,5,94,0,0,246,250,3,36,18,0, - 247,249,3,16,8,0,248,247,1,0,0,0,249,252,1,0,0,0,250,248,1,0,0,0, - 250,251,1,0,0,0,251,255,1,0,0,0,252,250,1,0,0,0,253,254,5,29,0,0, - 254,256,3,36,18,0,255,253,1,0,0,0,255,256,1,0,0,0,256,19,1,0,0,0, - 257,258,5,41,0,0,258,259,5,131,0,0,259,260,3,4,2,0,260,261,5,150, - 0,0,261,264,3,10,5,0,262,263,5,25,0,0,263,265,3,10,5,0,264,262,1, - 0,0,0,264,265,1,0,0,0,265,21,1,0,0,0,266,267,5,101,0,0,267,268,5, - 131,0,0,268,269,3,4,2,0,269,270,5,150,0,0,270,272,3,10,5,0,271,273, - 5,151,0,0,272,271,1,0,0,0,272,273,1,0,0,0,273,23,1,0,0,0,274,275, - 5,33,0,0,275,279,5,131,0,0,276,280,3,6,3,0,277,280,3,30,15,0,278, - 280,3,4,2,0,279,276,1,0,0,0,279,277,1,0,0,0,279,278,1,0,0,0,279, - 280,1,0,0,0,280,281,1,0,0,0,281,283,5,151,0,0,282,284,3,4,2,0,283, - 282,1,0,0,0,283,284,1,0,0,0,284,285,1,0,0,0,285,289,5,151,0,0,286, - 290,3,6,3,0,287,290,3,30,15,0,288,290,3,4,2,0,289,286,1,0,0,0,289, - 287,1,0,0,0,289,288,1,0,0,0,289,290,1,0,0,0,290,291,1,0,0,0,291, - 292,5,150,0,0,292,294,3,10,5,0,293,295,5,151,0,0,294,293,1,0,0,0, - 294,295,1,0,0,0,295,25,1,0,0,0,296,297,5,33,0,0,297,298,5,131,0, - 0,298,299,5,53,0,0,299,302,3,156,78,0,300,301,5,117,0,0,301,303, - 3,156,78,0,302,300,1,0,0,0,302,303,1,0,0,0,303,304,1,0,0,0,304,305, - 5,43,0,0,305,306,3,4,2,0,306,307,5,150,0,0,307,309,3,10,5,0,308, - 310,5,151,0,0,309,308,1,0,0,0,309,310,1,0,0,0,310,27,1,0,0,0,311, - 312,7,0,0,0,312,313,3,156,78,0,313,315,5,131,0,0,314,316,3,8,4,0, - 315,314,1,0,0,0,315,316,1,0,0,0,316,317,1,0,0,0,317,318,5,150,0, - 0,318,319,3,36,18,0,319,29,1,0,0,0,320,321,3,4,2,0,321,322,5,116, - 0,0,322,323,5,123,0,0,323,324,3,4,2,0,324,31,1,0,0,0,325,327,3,4, - 2,0,326,328,5,151,0,0,327,326,1,0,0,0,327,328,1,0,0,0,328,33,1,0, - 0,0,329,330,5,151,0,0,330,35,1,0,0,0,331,335,5,129,0,0,332,334,3, - 2,1,0,333,332,1,0,0,0,334,337,1,0,0,0,335,333,1,0,0,0,335,336,1, - 0,0,0,336,338,1,0,0,0,337,335,1,0,0,0,338,339,5,148,0,0,339,37,1, - 0,0,0,340,341,3,4,2,0,341,342,5,116,0,0,342,343,3,4,2,0,343,39,1, - 0,0,0,344,349,3,38,19,0,345,346,5,117,0,0,346,348,3,38,19,0,347, - 345,1,0,0,0,348,351,1,0,0,0,349,347,1,0,0,0,349,350,1,0,0,0,350, - 353,1,0,0,0,351,349,1,0,0,0,352,354,5,117,0,0,353,352,1,0,0,0,353, - 354,1,0,0,0,354,41,1,0,0,0,355,359,3,44,22,0,356,359,3,48,24,0,357, - 359,3,120,60,0,358,355,1,0,0,0,358,356,1,0,0,0,358,357,1,0,0,0,359, - 360,1,0,0,0,360,361,5,0,0,1,361,43,1,0,0,0,362,368,3,46,23,0,363, - 364,5,96,0,0,364,365,5,1,0,0,365,367,3,46,23,0,366,363,1,0,0,0,367, - 370,1,0,0,0,368,366,1,0,0,0,368,369,1,0,0,0,369,45,1,0,0,0,370,368, - 1,0,0,0,371,378,3,48,24,0,372,373,5,131,0,0,373,374,3,44,22,0,374, - 375,5,150,0,0,375,378,1,0,0,0,376,378,3,160,80,0,377,371,1,0,0,0, - 377,372,1,0,0,0,377,376,1,0,0,0,378,47,1,0,0,0,379,381,3,50,25,0, - 380,379,1,0,0,0,380,381,1,0,0,0,381,382,1,0,0,0,382,384,5,80,0,0, - 383,385,5,24,0,0,384,383,1,0,0,0,384,385,1,0,0,0,385,387,1,0,0,0, - 386,388,3,52,26,0,387,386,1,0,0,0,387,388,1,0,0,0,388,389,1,0,0, - 0,389,391,3,114,57,0,390,392,3,54,27,0,391,390,1,0,0,0,391,392,1, - 0,0,0,392,394,1,0,0,0,393,395,3,56,28,0,394,393,1,0,0,0,394,395, - 1,0,0,0,395,397,1,0,0,0,396,398,3,60,30,0,397,396,1,0,0,0,397,398, - 1,0,0,0,398,400,1,0,0,0,399,401,3,62,31,0,400,399,1,0,0,0,400,401, - 1,0,0,0,401,403,1,0,0,0,402,404,3,64,32,0,403,402,1,0,0,0,403,404, - 1,0,0,0,404,407,1,0,0,0,405,406,5,103,0,0,406,408,7,1,0,0,407,405, - 1,0,0,0,407,408,1,0,0,0,408,411,1,0,0,0,409,410,5,103,0,0,410,412, - 5,90,0,0,411,409,1,0,0,0,411,412,1,0,0,0,412,414,1,0,0,0,413,415, - 3,66,33,0,414,413,1,0,0,0,414,415,1,0,0,0,415,417,1,0,0,0,416,418, - 3,58,29,0,417,416,1,0,0,0,417,418,1,0,0,0,418,420,1,0,0,0,419,421, - 3,68,34,0,420,419,1,0,0,0,420,421,1,0,0,0,421,424,1,0,0,0,422,425, - 3,72,36,0,423,425,3,74,37,0,424,422,1,0,0,0,424,423,1,0,0,0,424, - 425,1,0,0,0,425,427,1,0,0,0,426,428,3,76,38,0,427,426,1,0,0,0,427, - 428,1,0,0,0,428,49,1,0,0,0,429,430,5,103,0,0,430,431,3,124,62,0, - 431,51,1,0,0,0,432,433,5,89,0,0,433,436,5,109,0,0,434,435,5,103, - 0,0,435,437,5,86,0,0,436,434,1,0,0,0,436,437,1,0,0,0,437,53,1,0, - 0,0,438,439,5,34,0,0,439,440,3,78,39,0,440,55,1,0,0,0,441,443,7, - 2,0,0,442,441,1,0,0,0,442,443,1,0,0,0,443,444,1,0,0,0,444,445,5, - 5,0,0,445,446,5,48,0,0,446,447,3,114,57,0,447,57,1,0,0,0,448,449, - 5,102,0,0,449,450,3,156,78,0,450,451,5,6,0,0,451,452,5,131,0,0,452, - 453,3,98,49,0,453,463,5,150,0,0,454,455,5,117,0,0,455,456,3,156, - 78,0,456,457,5,6,0,0,457,458,5,131,0,0,458,459,3,98,49,0,459,460, - 5,150,0,0,460,462,1,0,0,0,461,454,1,0,0,0,462,465,1,0,0,0,463,461, - 1,0,0,0,463,464,1,0,0,0,464,59,1,0,0,0,465,463,1,0,0,0,466,467,5, - 70,0,0,467,468,3,116,58,0,468,61,1,0,0,0,469,470,5,100,0,0,470,471, - 3,116,58,0,471,63,1,0,0,0,472,473,5,37,0,0,473,480,5,11,0,0,474, - 475,7,1,0,0,475,476,5,131,0,0,476,477,3,114,57,0,477,478,5,150,0, - 0,478,481,1,0,0,0,479,481,3,114,57,0,480,474,1,0,0,0,480,479,1,0, - 0,0,481,65,1,0,0,0,482,483,5,38,0,0,483,484,3,116,58,0,484,67,1, - 0,0,0,485,486,5,65,0,0,486,487,5,11,0,0,487,488,3,88,44,0,488,69, - 1,0,0,0,489,490,5,65,0,0,490,491,5,11,0,0,491,492,3,114,57,0,492, - 71,1,0,0,0,493,494,5,55,0,0,494,497,3,116,58,0,495,496,5,117,0,0, - 496,498,3,116,58,0,497,495,1,0,0,0,497,498,1,0,0,0,498,503,1,0,0, - 0,499,500,5,103,0,0,500,504,5,86,0,0,501,502,5,11,0,0,502,504,3, - 114,57,0,503,499,1,0,0,0,503,501,1,0,0,0,503,504,1,0,0,0,504,523, - 1,0,0,0,505,506,5,55,0,0,506,509,3,116,58,0,507,508,5,103,0,0,508, - 510,5,86,0,0,509,507,1,0,0,0,509,510,1,0,0,0,510,511,1,0,0,0,511, - 512,5,62,0,0,512,513,3,116,58,0,513,523,1,0,0,0,514,515,5,55,0,0, - 515,516,3,116,58,0,516,517,5,62,0,0,517,520,3,116,58,0,518,519,5, - 11,0,0,519,521,3,114,57,0,520,518,1,0,0,0,520,521,1,0,0,0,521,523, - 1,0,0,0,522,493,1,0,0,0,522,505,1,0,0,0,522,514,1,0,0,0,523,73,1, - 0,0,0,524,525,5,62,0,0,525,526,3,116,58,0,526,75,1,0,0,0,527,528, - 5,82,0,0,528,529,3,94,47,0,529,77,1,0,0,0,530,531,6,39,-1,0,531, - 533,3,132,66,0,532,534,5,28,0,0,533,532,1,0,0,0,533,534,1,0,0,0, - 534,536,1,0,0,0,535,537,3,86,43,0,536,535,1,0,0,0,536,537,1,0,0, - 0,537,543,1,0,0,0,538,539,5,131,0,0,539,540,3,78,39,0,540,541,5, - 150,0,0,541,543,1,0,0,0,542,530,1,0,0,0,542,538,1,0,0,0,543,558, - 1,0,0,0,544,545,10,3,0,0,545,546,3,82,41,0,546,547,3,78,39,4,547, - 557,1,0,0,0,548,550,10,4,0,0,549,551,3,80,40,0,550,549,1,0,0,0,550, - 551,1,0,0,0,551,552,1,0,0,0,552,553,5,48,0,0,553,554,3,78,39,0,554, - 555,3,84,42,0,555,557,1,0,0,0,556,544,1,0,0,0,556,548,1,0,0,0,557, - 560,1,0,0,0,558,556,1,0,0,0,558,559,1,0,0,0,559,79,1,0,0,0,560,558, - 1,0,0,0,561,563,7,3,0,0,562,561,1,0,0,0,562,563,1,0,0,0,563,564, - 1,0,0,0,564,571,5,45,0,0,565,567,5,45,0,0,566,568,7,3,0,0,567,566, - 1,0,0,0,567,568,1,0,0,0,568,571,1,0,0,0,569,571,7,3,0,0,570,562, - 1,0,0,0,570,565,1,0,0,0,570,569,1,0,0,0,571,605,1,0,0,0,572,574, - 7,4,0,0,573,572,1,0,0,0,573,574,1,0,0,0,574,575,1,0,0,0,575,577, - 7,5,0,0,576,578,5,66,0,0,577,576,1,0,0,0,577,578,1,0,0,0,578,587, - 1,0,0,0,579,581,7,5,0,0,580,582,5,66,0,0,581,580,1,0,0,0,581,582, - 1,0,0,0,582,584,1,0,0,0,583,585,7,4,0,0,584,583,1,0,0,0,584,585, - 1,0,0,0,585,587,1,0,0,0,586,573,1,0,0,0,586,579,1,0,0,0,587,605, - 1,0,0,0,588,590,7,6,0,0,589,588,1,0,0,0,589,590,1,0,0,0,590,591, - 1,0,0,0,591,593,5,35,0,0,592,594,5,66,0,0,593,592,1,0,0,0,593,594, - 1,0,0,0,594,603,1,0,0,0,595,597,5,35,0,0,596,598,5,66,0,0,597,596, - 1,0,0,0,597,598,1,0,0,0,598,600,1,0,0,0,599,601,7,6,0,0,600,599, - 1,0,0,0,600,601,1,0,0,0,601,603,1,0,0,0,602,589,1,0,0,0,602,595, - 1,0,0,0,603,605,1,0,0,0,604,570,1,0,0,0,604,586,1,0,0,0,604,602, - 1,0,0,0,605,81,1,0,0,0,606,607,5,17,0,0,607,610,5,48,0,0,608,610, - 5,117,0,0,609,606,1,0,0,0,609,608,1,0,0,0,610,83,1,0,0,0,611,612, - 5,63,0,0,612,621,3,114,57,0,613,614,5,97,0,0,614,615,5,131,0,0,615, - 616,3,114,57,0,616,617,5,150,0,0,617,621,1,0,0,0,618,619,5,97,0, - 0,619,621,3,114,57,0,620,611,1,0,0,0,620,613,1,0,0,0,620,618,1,0, - 0,0,621,85,1,0,0,0,622,623,5,78,0,0,623,626,3,92,46,0,624,625,5, - 62,0,0,625,627,3,92,46,0,626,624,1,0,0,0,626,627,1,0,0,0,627,87, - 1,0,0,0,628,633,3,90,45,0,629,630,5,117,0,0,630,632,3,90,45,0,631, - 629,1,0,0,0,632,635,1,0,0,0,633,631,1,0,0,0,633,634,1,0,0,0,634, - 89,1,0,0,0,635,633,1,0,0,0,636,638,3,116,58,0,637,639,7,7,0,0,638, - 637,1,0,0,0,638,639,1,0,0,0,639,642,1,0,0,0,640,641,5,61,0,0,641, - 643,7,8,0,0,642,640,1,0,0,0,642,643,1,0,0,0,643,646,1,0,0,0,644, - 645,5,16,0,0,645,647,5,111,0,0,646,644,1,0,0,0,646,647,1,0,0,0,647, - 91,1,0,0,0,648,655,3,160,80,0,649,652,3,144,72,0,650,651,5,152,0, - 0,651,653,3,144,72,0,652,650,1,0,0,0,652,653,1,0,0,0,653,655,1,0, - 0,0,654,648,1,0,0,0,654,649,1,0,0,0,655,93,1,0,0,0,656,661,3,96, - 48,0,657,658,5,117,0,0,658,660,3,96,48,0,659,657,1,0,0,0,660,663, - 1,0,0,0,661,659,1,0,0,0,661,662,1,0,0,0,662,95,1,0,0,0,663,661,1, - 0,0,0,664,665,3,156,78,0,665,666,5,123,0,0,666,667,3,146,73,0,667, - 97,1,0,0,0,668,670,3,100,50,0,669,668,1,0,0,0,669,670,1,0,0,0,670, - 672,1,0,0,0,671,673,3,102,51,0,672,671,1,0,0,0,672,673,1,0,0,0,673, - 675,1,0,0,0,674,676,3,104,52,0,675,674,1,0,0,0,675,676,1,0,0,0,676, - 99,1,0,0,0,677,678,5,68,0,0,678,679,5,11,0,0,679,680,3,114,57,0, - 680,101,1,0,0,0,681,682,5,65,0,0,682,683,5,11,0,0,683,684,3,88,44, - 0,684,103,1,0,0,0,685,686,7,9,0,0,686,687,3,106,53,0,687,105,1,0, - 0,0,688,695,3,108,54,0,689,690,5,9,0,0,690,691,3,108,54,0,691,692, - 5,2,0,0,692,693,3,108,54,0,693,695,1,0,0,0,694,688,1,0,0,0,694,689, - 1,0,0,0,695,107,1,0,0,0,696,697,5,19,0,0,697,709,5,76,0,0,698,699, - 5,95,0,0,699,709,5,69,0,0,700,701,5,95,0,0,701,709,5,32,0,0,702, - 703,3,144,72,0,703,704,5,69,0,0,704,709,1,0,0,0,705,706,3,144,72, - 0,706,707,5,32,0,0,707,709,1,0,0,0,708,696,1,0,0,0,708,698,1,0,0, - 0,708,700,1,0,0,0,708,702,1,0,0,0,708,705,1,0,0,0,709,109,1,0,0, - 0,710,711,3,116,58,0,711,712,5,0,0,1,712,111,1,0,0,0,713,770,3,156, - 78,0,714,715,3,156,78,0,715,716,5,131,0,0,716,717,3,156,78,0,717, - 724,3,112,56,0,718,719,5,117,0,0,719,720,3,156,78,0,720,721,3,112, - 56,0,721,723,1,0,0,0,722,718,1,0,0,0,723,726,1,0,0,0,724,722,1,0, - 0,0,724,725,1,0,0,0,725,728,1,0,0,0,726,724,1,0,0,0,727,729,5,117, - 0,0,728,727,1,0,0,0,728,729,1,0,0,0,729,730,1,0,0,0,730,731,5,150, - 0,0,731,770,1,0,0,0,732,733,3,156,78,0,733,734,5,131,0,0,734,739, - 3,158,79,0,735,736,5,117,0,0,736,738,3,158,79,0,737,735,1,0,0,0, - 738,741,1,0,0,0,739,737,1,0,0,0,739,740,1,0,0,0,740,743,1,0,0,0, - 741,739,1,0,0,0,742,744,5,117,0,0,743,742,1,0,0,0,743,744,1,0,0, - 0,744,745,1,0,0,0,745,746,5,150,0,0,746,770,1,0,0,0,747,748,3,156, - 78,0,748,749,5,131,0,0,749,754,3,112,56,0,750,751,5,117,0,0,751, - 753,3,112,56,0,752,750,1,0,0,0,753,756,1,0,0,0,754,752,1,0,0,0,754, - 755,1,0,0,0,755,758,1,0,0,0,756,754,1,0,0,0,757,759,5,117,0,0,758, - 757,1,0,0,0,758,759,1,0,0,0,759,760,1,0,0,0,760,761,5,150,0,0,761, - 770,1,0,0,0,762,763,3,156,78,0,763,765,5,131,0,0,764,766,3,114,57, - 0,765,764,1,0,0,0,765,766,1,0,0,0,766,767,1,0,0,0,767,768,5,150, - 0,0,768,770,1,0,0,0,769,713,1,0,0,0,769,714,1,0,0,0,769,732,1,0, - 0,0,769,747,1,0,0,0,769,762,1,0,0,0,770,113,1,0,0,0,771,776,3,116, - 58,0,772,773,5,117,0,0,773,775,3,116,58,0,774,772,1,0,0,0,775,778, - 1,0,0,0,776,774,1,0,0,0,776,777,1,0,0,0,777,780,1,0,0,0,778,776, - 1,0,0,0,779,781,5,117,0,0,780,779,1,0,0,0,780,781,1,0,0,0,781,115, - 1,0,0,0,782,783,6,58,-1,0,783,785,5,12,0,0,784,786,3,116,58,0,785, - 784,1,0,0,0,785,786,1,0,0,0,786,792,1,0,0,0,787,788,5,99,0,0,788, - 789,3,116,58,0,789,790,5,84,0,0,790,791,3,116,58,0,791,793,1,0,0, - 0,792,787,1,0,0,0,793,794,1,0,0,0,794,792,1,0,0,0,794,795,1,0,0, - 0,795,798,1,0,0,0,796,797,5,25,0,0,797,799,3,116,58,0,798,796,1, - 0,0,0,798,799,1,0,0,0,799,800,1,0,0,0,800,801,5,26,0,0,801,934,1, - 0,0,0,802,803,5,13,0,0,803,804,5,131,0,0,804,805,3,116,58,0,805, - 806,5,6,0,0,806,807,3,112,56,0,807,808,5,150,0,0,808,934,1,0,0,0, - 809,810,5,20,0,0,810,934,5,111,0,0,811,812,5,46,0,0,812,813,3,116, - 58,0,813,814,3,148,74,0,814,934,1,0,0,0,815,816,5,83,0,0,816,817, - 5,131,0,0,817,818,3,116,58,0,818,819,5,34,0,0,819,822,3,116,58,0, - 820,821,5,33,0,0,821,823,3,116,58,0,822,820,1,0,0,0,822,823,1,0, - 0,0,823,824,1,0,0,0,824,825,5,150,0,0,825,934,1,0,0,0,826,827,5, - 87,0,0,827,934,5,111,0,0,828,829,5,92,0,0,829,830,5,131,0,0,830, - 831,7,10,0,0,831,832,3,162,81,0,832,833,5,34,0,0,833,834,3,116,58, - 0,834,835,5,150,0,0,835,934,1,0,0,0,836,837,3,156,78,0,837,839,5, - 131,0,0,838,840,3,114,57,0,839,838,1,0,0,0,839,840,1,0,0,0,840,841, - 1,0,0,0,841,842,5,150,0,0,842,851,1,0,0,0,843,845,5,131,0,0,844, - 846,5,24,0,0,845,844,1,0,0,0,845,846,1,0,0,0,846,848,1,0,0,0,847, - 849,3,114,57,0,848,847,1,0,0,0,848,849,1,0,0,0,849,850,1,0,0,0,850, - 852,5,150,0,0,851,843,1,0,0,0,851,852,1,0,0,0,852,853,1,0,0,0,853, - 854,5,67,0,0,854,855,5,131,0,0,855,856,3,98,49,0,856,857,5,150,0, - 0,857,934,1,0,0,0,858,859,3,156,78,0,859,861,5,131,0,0,860,862,3, - 114,57,0,861,860,1,0,0,0,861,862,1,0,0,0,862,863,1,0,0,0,863,864, - 5,150,0,0,864,873,1,0,0,0,865,867,5,131,0,0,866,868,5,24,0,0,867, - 866,1,0,0,0,867,868,1,0,0,0,868,870,1,0,0,0,869,871,3,114,57,0,870, - 869,1,0,0,0,870,871,1,0,0,0,871,872,1,0,0,0,872,874,5,150,0,0,873, - 865,1,0,0,0,873,874,1,0,0,0,874,875,1,0,0,0,875,876,5,67,0,0,876, - 877,3,156,78,0,877,934,1,0,0,0,878,884,3,156,78,0,879,881,5,131, - 0,0,880,882,3,114,57,0,881,880,1,0,0,0,881,882,1,0,0,0,882,883,1, - 0,0,0,883,885,5,150,0,0,884,879,1,0,0,0,884,885,1,0,0,0,885,886, - 1,0,0,0,886,888,5,131,0,0,887,889,5,24,0,0,888,887,1,0,0,0,888,889, - 1,0,0,0,889,891,1,0,0,0,890,892,3,114,57,0,891,890,1,0,0,0,891,892, - 1,0,0,0,892,893,1,0,0,0,893,894,5,150,0,0,894,934,1,0,0,0,895,934, - 3,120,60,0,896,934,3,164,82,0,897,934,3,146,73,0,898,899,5,119,0, - 0,899,934,3,116,58,21,900,901,5,59,0,0,901,934,3,116,58,15,902,903, - 3,136,68,0,903,904,5,121,0,0,904,906,1,0,0,0,905,902,1,0,0,0,905, - 906,1,0,0,0,906,907,1,0,0,0,907,934,5,113,0,0,908,909,5,131,0,0, - 909,910,3,44,22,0,910,911,5,150,0,0,911,934,1,0,0,0,912,913,5,131, - 0,0,913,914,3,116,58,0,914,915,5,150,0,0,915,934,1,0,0,0,916,917, - 5,131,0,0,917,918,3,114,57,0,918,919,5,150,0,0,919,934,1,0,0,0,920, - 922,5,130,0,0,921,923,3,114,57,0,922,921,1,0,0,0,922,923,1,0,0,0, - 923,924,1,0,0,0,924,934,5,149,0,0,925,927,5,129,0,0,926,928,3,40, - 20,0,927,926,1,0,0,0,927,928,1,0,0,0,928,929,1,0,0,0,929,934,5,148, - 0,0,930,934,3,118,59,0,931,934,3,128,64,0,932,934,3,36,18,0,933, - 782,1,0,0,0,933,802,1,0,0,0,933,809,1,0,0,0,933,811,1,0,0,0,933, - 815,1,0,0,0,933,826,1,0,0,0,933,828,1,0,0,0,933,836,1,0,0,0,933, - 858,1,0,0,0,933,878,1,0,0,0,933,895,1,0,0,0,933,896,1,0,0,0,933, - 897,1,0,0,0,933,898,1,0,0,0,933,900,1,0,0,0,933,905,1,0,0,0,933, - 908,1,0,0,0,933,912,1,0,0,0,933,916,1,0,0,0,933,920,1,0,0,0,933, - 925,1,0,0,0,933,930,1,0,0,0,933,931,1,0,0,0,933,932,1,0,0,0,934, - 1045,1,0,0,0,935,939,10,20,0,0,936,940,5,113,0,0,937,940,5,152,0, - 0,938,940,5,139,0,0,939,936,1,0,0,0,939,937,1,0,0,0,939,938,1,0, - 0,0,940,941,1,0,0,0,941,1044,3,116,58,21,942,946,10,19,0,0,943,947, - 5,140,0,0,944,947,5,119,0,0,945,947,5,118,0,0,946,943,1,0,0,0,946, - 944,1,0,0,0,946,945,1,0,0,0,947,948,1,0,0,0,948,1044,3,116,58,20, - 949,974,10,18,0,0,950,975,5,122,0,0,951,975,5,123,0,0,952,975,5, - 134,0,0,953,975,5,132,0,0,954,975,5,133,0,0,955,975,5,124,0,0,956, - 975,5,125,0,0,957,959,5,59,0,0,958,957,1,0,0,0,958,959,1,0,0,0,959, - 960,1,0,0,0,960,962,5,43,0,0,961,963,5,15,0,0,962,961,1,0,0,0,962, - 963,1,0,0,0,963,975,1,0,0,0,964,966,5,59,0,0,965,964,1,0,0,0,965, - 966,1,0,0,0,966,967,1,0,0,0,967,975,7,11,0,0,968,975,5,146,0,0,969, - 975,5,147,0,0,970,975,5,136,0,0,971,975,5,127,0,0,972,975,5,128, - 0,0,973,975,5,135,0,0,974,950,1,0,0,0,974,951,1,0,0,0,974,952,1, - 0,0,0,974,953,1,0,0,0,974,954,1,0,0,0,974,955,1,0,0,0,974,956,1, - 0,0,0,974,958,1,0,0,0,974,965,1,0,0,0,974,968,1,0,0,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,976,1,0,0,0,976,1044,3,116,58,19,977,978,10,16,0,0,978, - 979,5,138,0,0,979,1044,3,116,58,17,980,981,10,14,0,0,981,982,5,2, - 0,0,982,1044,3,116,58,15,983,984,10,13,0,0,984,985,5,64,0,0,985, - 1044,3,116,58,14,986,988,10,12,0,0,987,989,5,59,0,0,988,987,1,0, - 0,0,988,989,1,0,0,0,989,990,1,0,0,0,990,991,5,9,0,0,991,992,3,116, - 58,0,992,993,5,2,0,0,993,994,3,116,58,13,994,1044,1,0,0,0,995,996, - 10,11,0,0,996,997,5,141,0,0,997,998,3,116,58,0,998,999,5,116,0,0, - 999,1000,3,116,58,11,1000,1044,1,0,0,0,1001,1002,10,31,0,0,1002, - 1004,5,131,0,0,1003,1005,3,114,57,0,1004,1003,1,0,0,0,1004,1005, - 1,0,0,0,1005,1006,1,0,0,0,1006,1044,5,150,0,0,1007,1008,10,27,0, - 0,1008,1009,5,130,0,0,1009,1010,3,116,58,0,1010,1011,5,149,0,0,1011, - 1044,1,0,0,0,1012,1013,10,26,0,0,1013,1014,5,121,0,0,1014,1044,5, - 109,0,0,1015,1016,10,25,0,0,1016,1017,5,121,0,0,1017,1044,3,156, - 78,0,1018,1019,10,24,0,0,1019,1020,5,137,0,0,1020,1021,5,130,0,0, - 1021,1022,3,116,58,0,1022,1023,5,149,0,0,1023,1044,1,0,0,0,1024, - 1025,10,23,0,0,1025,1026,5,137,0,0,1026,1044,5,109,0,0,1027,1028, - 10,22,0,0,1028,1029,5,137,0,0,1029,1044,3,156,78,0,1030,1031,10, - 17,0,0,1031,1033,5,47,0,0,1032,1034,5,59,0,0,1033,1032,1,0,0,0,1033, - 1034,1,0,0,0,1034,1035,1,0,0,0,1035,1044,5,60,0,0,1036,1041,10,10, - 0,0,1037,1038,5,6,0,0,1038,1042,3,156,78,0,1039,1040,5,6,0,0,1040, - 1042,5,111,0,0,1041,1037,1,0,0,0,1041,1039,1,0,0,0,1042,1044,1,0, - 0,0,1043,935,1,0,0,0,1043,942,1,0,0,0,1043,949,1,0,0,0,1043,977, - 1,0,0,0,1043,980,1,0,0,0,1043,983,1,0,0,0,1043,986,1,0,0,0,1043, - 995,1,0,0,0,1043,1001,1,0,0,0,1043,1007,1,0,0,0,1043,1012,1,0,0, - 0,1043,1015,1,0,0,0,1043,1018,1,0,0,0,1043,1024,1,0,0,0,1043,1027, - 1,0,0,0,1043,1030,1,0,0,0,1043,1036,1,0,0,0,1044,1047,1,0,0,0,1045, - 1043,1,0,0,0,1045,1046,1,0,0,0,1046,117,1,0,0,0,1047,1045,1,0,0, - 0,1048,1049,5,131,0,0,1049,1054,3,156,78,0,1050,1051,5,117,0,0,1051, - 1053,3,156,78,0,1052,1050,1,0,0,0,1053,1056,1,0,0,0,1054,1052,1, - 0,0,0,1054,1055,1,0,0,0,1055,1058,1,0,0,0,1056,1054,1,0,0,0,1057, - 1059,5,117,0,0,1058,1057,1,0,0,0,1058,1059,1,0,0,0,1059,1060,1,0, - 0,0,1060,1061,5,150,0,0,1061,1076,1,0,0,0,1062,1067,3,156,78,0,1063, - 1064,5,117,0,0,1064,1066,3,156,78,0,1065,1063,1,0,0,0,1066,1069, - 1,0,0,0,1067,1065,1,0,0,0,1067,1068,1,0,0,0,1068,1071,1,0,0,0,1069, - 1067,1,0,0,0,1070,1072,5,117,0,0,1071,1070,1,0,0,0,1071,1072,1,0, - 0,0,1072,1076,1,0,0,0,1073,1074,5,131,0,0,1074,1076,5,150,0,0,1075, - 1048,1,0,0,0,1075,1062,1,0,0,0,1075,1073,1,0,0,0,1076,1077,1,0,0, - 0,1077,1080,5,112,0,0,1078,1081,3,36,18,0,1079,1081,3,116,58,0,1080, - 1078,1,0,0,0,1080,1079,1,0,0,0,1081,119,1,0,0,0,1082,1083,5,133, - 0,0,1083,1087,3,156,78,0,1084,1086,3,122,61,0,1085,1084,1,0,0,0, - 1086,1089,1,0,0,0,1087,1085,1,0,0,0,1087,1088,1,0,0,0,1088,1090, - 1,0,0,0,1089,1087,1,0,0,0,1090,1091,5,152,0,0,1091,1092,5,125,0, - 0,1092,1115,1,0,0,0,1093,1094,5,133,0,0,1094,1098,3,156,78,0,1095, - 1097,3,122,61,0,1096,1095,1,0,0,0,1097,1100,1,0,0,0,1098,1096,1, - 0,0,0,1098,1099,1,0,0,0,1099,1101,1,0,0,0,1100,1098,1,0,0,0,1101, - 1107,5,125,0,0,1102,1108,3,120,60,0,1103,1104,5,129,0,0,1104,1105, - 3,116,58,0,1105,1106,5,148,0,0,1106,1108,1,0,0,0,1107,1102,1,0,0, - 0,1107,1103,1,0,0,0,1107,1108,1,0,0,0,1108,1109,1,0,0,0,1109,1110, - 5,133,0,0,1110,1111,5,152,0,0,1111,1112,3,156,78,0,1112,1113,5,125, - 0,0,1113,1115,1,0,0,0,1114,1082,1,0,0,0,1114,1093,1,0,0,0,1115,121, - 1,0,0,0,1116,1117,3,156,78,0,1117,1118,5,123,0,0,1118,1119,3,162, - 81,0,1119,1128,1,0,0,0,1120,1121,3,156,78,0,1121,1122,5,123,0,0, - 1122,1123,5,129,0,0,1123,1124,3,116,58,0,1124,1125,5,148,0,0,1125, - 1128,1,0,0,0,1126,1128,3,156,78,0,1127,1116,1,0,0,0,1127,1120,1, - 0,0,0,1127,1126,1,0,0,0,1128,123,1,0,0,0,1129,1134,3,126,63,0,1130, - 1131,5,117,0,0,1131,1133,3,126,63,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,1138,1,0,0,0,1136, - 1134,1,0,0,0,1137,1139,5,117,0,0,1138,1137,1,0,0,0,1138,1139,1,0, - 0,0,1139,125,1,0,0,0,1140,1141,3,156,78,0,1141,1142,5,6,0,0,1142, - 1143,5,131,0,0,1143,1144,3,44,22,0,1144,1145,5,150,0,0,1145,1151, - 1,0,0,0,1146,1147,3,116,58,0,1147,1148,5,6,0,0,1148,1149,3,156,78, - 0,1149,1151,1,0,0,0,1150,1140,1,0,0,0,1150,1146,1,0,0,0,1151,127, - 1,0,0,0,1152,1160,3,160,80,0,1153,1154,3,136,68,0,1154,1155,5,121, - 0,0,1155,1157,1,0,0,0,1156,1153,1,0,0,0,1156,1157,1,0,0,0,1157,1158, - 1,0,0,0,1158,1160,3,130,65,0,1159,1152,1,0,0,0,1159,1156,1,0,0,0, - 1160,129,1,0,0,0,1161,1166,3,156,78,0,1162,1163,5,121,0,0,1163,1165, - 3,156,78,0,1164,1162,1,0,0,0,1165,1168,1,0,0,0,1166,1164,1,0,0,0, - 1166,1167,1,0,0,0,1167,131,1,0,0,0,1168,1166,1,0,0,0,1169,1170,6, - 66,-1,0,1170,1179,3,136,68,0,1171,1179,3,134,67,0,1172,1173,5,131, - 0,0,1173,1174,3,44,22,0,1174,1175,5,150,0,0,1175,1179,1,0,0,0,1176, - 1179,3,120,60,0,1177,1179,3,160,80,0,1178,1169,1,0,0,0,1178,1171, - 1,0,0,0,1178,1172,1,0,0,0,1178,1176,1,0,0,0,1178,1177,1,0,0,0,1179, - 1188,1,0,0,0,1180,1184,10,3,0,0,1181,1185,3,154,77,0,1182,1183,5, - 6,0,0,1183,1185,3,156,78,0,1184,1181,1,0,0,0,1184,1182,1,0,0,0,1185, - 1187,1,0,0,0,1186,1180,1,0,0,0,1187,1190,1,0,0,0,1188,1186,1,0,0, - 0,1188,1189,1,0,0,0,1189,133,1,0,0,0,1190,1188,1,0,0,0,1191,1192, - 3,156,78,0,1192,1194,5,131,0,0,1193,1195,3,138,69,0,1194,1193,1, - 0,0,0,1194,1195,1,0,0,0,1195,1196,1,0,0,0,1196,1197,5,150,0,0,1197, - 135,1,0,0,0,1198,1199,3,140,70,0,1199,1200,5,121,0,0,1200,1202,1, - 0,0,0,1201,1198,1,0,0,0,1201,1202,1,0,0,0,1202,1203,1,0,0,0,1203, - 1204,3,156,78,0,1204,137,1,0,0,0,1205,1210,3,116,58,0,1206,1207, - 5,117,0,0,1207,1209,3,116,58,0,1208,1206,1,0,0,0,1209,1212,1,0,0, - 0,1210,1208,1,0,0,0,1210,1211,1,0,0,0,1211,1214,1,0,0,0,1212,1210, - 1,0,0,0,1213,1215,5,117,0,0,1214,1213,1,0,0,0,1214,1215,1,0,0,0, - 1215,139,1,0,0,0,1216,1217,3,156,78,0,1217,141,1,0,0,0,1218,1227, - 5,107,0,0,1219,1220,5,121,0,0,1220,1227,7,12,0,0,1221,1222,5,109, - 0,0,1222,1224,5,121,0,0,1223,1225,7,12,0,0,1224,1223,1,0,0,0,1224, - 1225,1,0,0,0,1225,1227,1,0,0,0,1226,1218,1,0,0,0,1226,1219,1,0,0, - 0,1226,1221,1,0,0,0,1227,143,1,0,0,0,1228,1230,7,13,0,0,1229,1228, - 1,0,0,0,1229,1230,1,0,0,0,1230,1237,1,0,0,0,1231,1238,3,142,71,0, - 1232,1238,5,108,0,0,1233,1238,5,109,0,0,1234,1238,5,110,0,0,1235, - 1238,5,44,0,0,1236,1238,5,58,0,0,1237,1231,1,0,0,0,1237,1232,1,0, - 0,0,1237,1233,1,0,0,0,1237,1234,1,0,0,0,1237,1235,1,0,0,0,1237,1236, - 1,0,0,0,1238,145,1,0,0,0,1239,1243,3,144,72,0,1240,1243,5,111,0, - 0,1241,1243,5,60,0,0,1242,1239,1,0,0,0,1242,1240,1,0,0,0,1242,1241, - 1,0,0,0,1243,147,1,0,0,0,1244,1245,7,14,0,0,1245,149,1,0,0,0,1246, - 1247,7,15,0,0,1247,151,1,0,0,0,1248,1249,7,16,0,0,1249,153,1,0,0, - 0,1250,1253,5,106,0,0,1251,1253,3,152,76,0,1252,1250,1,0,0,0,1252, - 1251,1,0,0,0,1253,155,1,0,0,0,1254,1258,5,106,0,0,1255,1258,3,148, - 74,0,1256,1258,3,150,75,0,1257,1254,1,0,0,0,1257,1255,1,0,0,0,1257, - 1256,1,0,0,0,1258,157,1,0,0,0,1259,1260,3,162,81,0,1260,1261,5,123, - 0,0,1261,1262,3,144,72,0,1262,159,1,0,0,0,1263,1264,3,36,18,0,1264, - 161,1,0,0,0,1265,1268,5,111,0,0,1266,1268,3,164,82,0,1267,1265,1, - 0,0,0,1267,1266,1,0,0,0,1268,163,1,0,0,0,1269,1273,5,143,0,0,1270, - 1272,3,166,83,0,1271,1270,1,0,0,0,1272,1275,1,0,0,0,1273,1271,1, - 0,0,0,1273,1274,1,0,0,0,1274,1276,1,0,0,0,1275,1273,1,0,0,0,1276, - 1277,5,145,0,0,1277,165,1,0,0,0,1278,1279,5,158,0,0,1279,1280,3, - 116,58,0,1280,1281,5,148,0,0,1281,1284,1,0,0,0,1282,1284,5,157,0, - 0,1283,1278,1,0,0,0,1283,1282,1,0,0,0,1284,167,1,0,0,0,1285,1289, - 5,144,0,0,1286,1288,3,170,85,0,1287,1286,1,0,0,0,1288,1291,1,0,0, - 0,1289,1287,1,0,0,0,1289,1290,1,0,0,0,1290,1292,1,0,0,0,1291,1289, - 1,0,0,0,1292,1293,5,0,0,1,1293,169,1,0,0,0,1294,1295,5,160,0,0,1295, - 1296,3,116,58,0,1296,1297,5,148,0,0,1297,1300,1,0,0,0,1298,1300, - 5,159,0,0,1299,1294,1,0,0,0,1299,1298,1,0,0,0,1300,171,1,0,0,0,167, - 175,182,191,198,202,216,220,223,227,230,237,241,250,255,264,272, - 279,283,289,294,302,309,315,327,335,349,353,358,368,377,380,384, - 387,391,394,397,400,403,407,411,414,417,420,424,427,436,442,463, - 480,497,503,509,520,522,533,536,542,550,556,558,562,567,570,573, - 577,581,584,586,589,593,597,600,602,604,609,620,626,633,638,642, - 646,652,654,661,669,672,675,694,708,724,728,739,743,754,758,765, - 769,776,780,785,794,798,822,839,845,848,851,861,867,870,873,881, - 884,888,891,905,922,927,933,939,946,958,962,965,974,988,1004,1033, - 1041,1043,1045,1054,1058,1067,1071,1075,1080,1087,1098,1107,1114, - 1127,1134,1138,1150,1156,1159,1166,1178,1184,1188,1194,1201,1210, - 1214,1224,1226,1229,1237,1242,1252,1257,1267,1273,1283,1289,1299 + 1,58,1,58,1,58,1,58,1,58,1,58,1,58,3,58,1036,8,58,1,58,1,58,1,58, + 1,58,1,58,1,58,3,58,1044,8,58,5,58,1046,8,58,10,58,12,58,1049,9, + 58,1,59,1,59,1,59,1,59,5,59,1055,8,59,10,59,12,59,1058,9,59,1,59, + 3,59,1061,8,59,1,59,1,59,1,59,1,59,1,59,5,59,1068,8,59,10,59,12, + 59,1071,9,59,1,59,3,59,1074,8,59,1,59,1,59,3,59,1078,8,59,1,59,1, + 59,1,59,3,59,1083,8,59,1,60,1,60,1,60,5,60,1088,8,60,10,60,12,60, + 1091,9,60,1,60,1,60,1,60,1,60,1,60,1,60,5,60,1099,8,60,10,60,12, + 60,1102,9,60,1,60,1,60,1,60,1,60,1,60,1,60,3,60,1110,8,60,1,60,1, + 60,1,60,1,60,1,60,3,60,1117,8,60,1,61,1,61,1,61,1,61,1,61,1,61,1, + 61,1,61,1,61,1,61,1,61,3,61,1130,8,61,1,62,1,62,1,62,5,62,1135,8, + 62,10,62,12,62,1138,9,62,1,62,3,62,1141,8,62,1,63,1,63,1,63,1,63, + 1,63,1,63,1,63,1,63,1,63,1,63,3,63,1153,8,63,1,64,1,64,1,64,3,64, + 1158,8,64,1,64,1,64,1,65,1,65,1,65,5,65,1165,8,65,10,65,12,65,1168, + 9,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,3,66,1179,8,66, + 1,66,1,66,1,66,1,66,3,66,1185,8,66,5,66,1187,8,66,10,66,12,66,1190, + 9,66,1,67,1,67,1,67,3,67,1195,8,67,1,67,1,67,1,68,1,68,1,68,3,68, + 1202,8,68,1,68,1,68,1,69,1,69,1,69,5,69,1209,8,69,10,69,12,69,1212, + 9,69,1,69,3,69,1215,8,69,1,70,1,70,1,71,1,71,1,71,1,71,1,71,1,71, + 3,71,1225,8,71,3,71,1227,8,71,1,72,3,72,1230,8,72,1,72,1,72,1,72, + 1,72,1,72,1,72,3,72,1238,8,72,1,73,1,73,1,73,3,73,1243,8,73,1,74, + 1,74,1,75,1,75,1,76,1,76,1,77,1,77,3,77,1253,8,77,1,78,1,78,1,78, + 3,78,1258,8,78,1,79,1,79,1,79,1,79,1,80,1,80,3,80,1266,8,80,1,81, + 1,81,5,81,1270,8,81,10,81,12,81,1273,9,81,1,81,1,81,1,82,1,82,1, + 82,1,82,1,82,3,82,1282,8,82,1,83,1,83,5,83,1286,8,83,10,83,12,83, + 1289,9,83,1,83,1,83,1,84,1,84,1,84,1,84,1,84,3,84,1298,8,84,1,84, + 0,3,78,116,132,85,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,0,17,2,0,31,31,36,36, + 2,0,18,18,75,75,2,0,45,45,52,52,3,0,1,1,4,4,8,8,4,0,1,1,3,4,8,8, + 81,81,2,0,52,52,74,74,2,0,1,1,4,4,2,0,7,7,22,23,2,0,30,30,50,50, + 2,0,72,72,77,77,3,0,10,10,51,51,91,91,2,0,42,42,54,54,1,0,108,109, + 2,0,119,119,140,140,7,0,21,21,39,39,56,57,71,71,79,79,98,98,104, + 104,17,0,1,13,15,20,22,28,30,30,32,35,37,38,40,43,45,52,54,55,59, + 59,61,70,72,78,80,84,86,93,95,97,99,100,102,103,4,0,20,20,30,30, + 40,40,49,49,1474,0,173,1,0,0,0,2,180,1,0,0,0,4,182,1,0,0,0,6,184, + 1,0,0,0,8,191,1,0,0,0,10,214,1,0,0,0,12,216,1,0,0,0,14,223,1,0,0, + 0,16,230,1,0,0,0,18,243,1,0,0,0,20,255,1,0,0,0,22,264,1,0,0,0,24, + 272,1,0,0,0,26,294,1,0,0,0,28,309,1,0,0,0,30,318,1,0,0,0,32,323, + 1,0,0,0,34,327,1,0,0,0,36,329,1,0,0,0,38,338,1,0,0,0,40,342,1,0, + 0,0,42,356,1,0,0,0,44,360,1,0,0,0,46,375,1,0,0,0,48,378,1,0,0,0, + 50,427,1,0,0,0,52,430,1,0,0,0,54,436,1,0,0,0,56,440,1,0,0,0,58,446, + 1,0,0,0,60,464,1,0,0,0,62,467,1,0,0,0,64,470,1,0,0,0,66,480,1,0, + 0,0,68,483,1,0,0,0,70,487,1,0,0,0,72,520,1,0,0,0,74,522,1,0,0,0, + 76,525,1,0,0,0,78,540,1,0,0,0,80,602,1,0,0,0,82,607,1,0,0,0,84,618, + 1,0,0,0,86,620,1,0,0,0,88,626,1,0,0,0,90,634,1,0,0,0,92,652,1,0, + 0,0,94,654,1,0,0,0,96,662,1,0,0,0,98,667,1,0,0,0,100,675,1,0,0,0, + 102,679,1,0,0,0,104,683,1,0,0,0,106,692,1,0,0,0,108,706,1,0,0,0, + 110,708,1,0,0,0,112,767,1,0,0,0,114,769,1,0,0,0,116,935,1,0,0,0, + 118,1077,1,0,0,0,120,1116,1,0,0,0,122,1129,1,0,0,0,124,1131,1,0, + 0,0,126,1152,1,0,0,0,128,1157,1,0,0,0,130,1161,1,0,0,0,132,1178, + 1,0,0,0,134,1191,1,0,0,0,136,1201,1,0,0,0,138,1205,1,0,0,0,140,1216, + 1,0,0,0,142,1226,1,0,0,0,144,1229,1,0,0,0,146,1242,1,0,0,0,148,1244, + 1,0,0,0,150,1246,1,0,0,0,152,1248,1,0,0,0,154,1252,1,0,0,0,156,1257, + 1,0,0,0,158,1259,1,0,0,0,160,1265,1,0,0,0,162,1267,1,0,0,0,164,1281, + 1,0,0,0,166,1283,1,0,0,0,168,1297,1,0,0,0,170,172,3,2,1,0,171,170, + 1,0,0,0,172,175,1,0,0,0,173,171,1,0,0,0,173,174,1,0,0,0,174,176, + 1,0,0,0,175,173,1,0,0,0,176,177,5,0,0,1,177,1,1,0,0,0,178,181,3, + 6,3,0,179,181,3,10,5,0,180,178,1,0,0,0,180,179,1,0,0,0,181,3,1,0, + 0,0,182,183,3,116,58,0,183,5,1,0,0,0,184,185,5,53,0,0,185,189,3, + 156,78,0,186,187,5,116,0,0,187,188,5,123,0,0,188,190,3,4,2,0,189, + 186,1,0,0,0,189,190,1,0,0,0,190,7,1,0,0,0,191,196,3,156,78,0,192, + 193,5,117,0,0,193,195,3,156,78,0,194,192,1,0,0,0,195,198,1,0,0,0, + 196,194,1,0,0,0,196,197,1,0,0,0,197,200,1,0,0,0,198,196,1,0,0,0, + 199,201,5,117,0,0,200,199,1,0,0,0,200,201,1,0,0,0,201,9,1,0,0,0, + 202,215,3,12,6,0,203,215,3,14,7,0,204,215,3,18,9,0,205,215,3,20, + 10,0,206,215,3,22,11,0,207,215,3,26,13,0,208,215,3,24,12,0,209,215, + 3,28,14,0,210,215,3,30,15,0,211,215,3,36,18,0,212,215,3,32,16,0, + 213,215,3,34,17,0,214,202,1,0,0,0,214,203,1,0,0,0,214,204,1,0,0, + 0,214,205,1,0,0,0,214,206,1,0,0,0,214,207,1,0,0,0,214,208,1,0,0, + 0,214,209,1,0,0,0,214,210,1,0,0,0,214,211,1,0,0,0,214,212,1,0,0, + 0,214,213,1,0,0,0,215,11,1,0,0,0,216,218,5,73,0,0,217,219,3,4,2, + 0,218,217,1,0,0,0,218,219,1,0,0,0,219,221,1,0,0,0,220,222,5,151, + 0,0,221,220,1,0,0,0,221,222,1,0,0,0,222,13,1,0,0,0,223,225,5,85, + 0,0,224,226,3,4,2,0,225,224,1,0,0,0,225,226,1,0,0,0,226,228,1,0, + 0,0,227,229,5,151,0,0,228,227,1,0,0,0,228,229,1,0,0,0,229,15,1,0, + 0,0,230,239,5,14,0,0,231,232,5,131,0,0,232,235,3,156,78,0,233,234, + 5,116,0,0,234,236,3,156,78,0,235,233,1,0,0,0,235,236,1,0,0,0,236, + 237,1,0,0,0,237,238,5,150,0,0,238,240,1,0,0,0,239,231,1,0,0,0,239, + 240,1,0,0,0,240,241,1,0,0,0,241,242,3,36,18,0,242,17,1,0,0,0,243, + 244,5,94,0,0,244,248,3,36,18,0,245,247,3,16,8,0,246,245,1,0,0,0, + 247,250,1,0,0,0,248,246,1,0,0,0,248,249,1,0,0,0,249,253,1,0,0,0, + 250,248,1,0,0,0,251,252,5,29,0,0,252,254,3,36,18,0,253,251,1,0,0, + 0,253,254,1,0,0,0,254,19,1,0,0,0,255,256,5,41,0,0,256,257,5,131, + 0,0,257,258,3,4,2,0,258,259,5,150,0,0,259,262,3,10,5,0,260,261,5, + 25,0,0,261,263,3,10,5,0,262,260,1,0,0,0,262,263,1,0,0,0,263,21,1, + 0,0,0,264,265,5,101,0,0,265,266,5,131,0,0,266,267,3,4,2,0,267,268, + 5,150,0,0,268,270,3,10,5,0,269,271,5,151,0,0,270,269,1,0,0,0,270, + 271,1,0,0,0,271,23,1,0,0,0,272,273,5,33,0,0,273,277,5,131,0,0,274, + 278,3,6,3,0,275,278,3,30,15,0,276,278,3,4,2,0,277,274,1,0,0,0,277, + 275,1,0,0,0,277,276,1,0,0,0,277,278,1,0,0,0,278,279,1,0,0,0,279, + 281,5,151,0,0,280,282,3,4,2,0,281,280,1,0,0,0,281,282,1,0,0,0,282, + 283,1,0,0,0,283,287,5,151,0,0,284,288,3,6,3,0,285,288,3,30,15,0, + 286,288,3,4,2,0,287,284,1,0,0,0,287,285,1,0,0,0,287,286,1,0,0,0, + 287,288,1,0,0,0,288,289,1,0,0,0,289,290,5,150,0,0,290,292,3,10,5, + 0,291,293,5,151,0,0,292,291,1,0,0,0,292,293,1,0,0,0,293,25,1,0,0, + 0,294,295,5,33,0,0,295,296,5,131,0,0,296,297,5,53,0,0,297,300,3, + 156,78,0,298,299,5,117,0,0,299,301,3,156,78,0,300,298,1,0,0,0,300, + 301,1,0,0,0,301,302,1,0,0,0,302,303,5,43,0,0,303,304,3,4,2,0,304, + 305,5,150,0,0,305,307,3,10,5,0,306,308,5,151,0,0,307,306,1,0,0,0, + 307,308,1,0,0,0,308,27,1,0,0,0,309,310,7,0,0,0,310,311,3,156,78, + 0,311,313,5,131,0,0,312,314,3,8,4,0,313,312,1,0,0,0,313,314,1,0, + 0,0,314,315,1,0,0,0,315,316,5,150,0,0,316,317,3,36,18,0,317,29,1, + 0,0,0,318,319,3,4,2,0,319,320,5,116,0,0,320,321,5,123,0,0,321,322, + 3,4,2,0,322,31,1,0,0,0,323,325,3,4,2,0,324,326,5,151,0,0,325,324, + 1,0,0,0,325,326,1,0,0,0,326,33,1,0,0,0,327,328,5,151,0,0,328,35, + 1,0,0,0,329,333,5,129,0,0,330,332,3,2,1,0,331,330,1,0,0,0,332,335, + 1,0,0,0,333,331,1,0,0,0,333,334,1,0,0,0,334,336,1,0,0,0,335,333, + 1,0,0,0,336,337,5,148,0,0,337,37,1,0,0,0,338,339,3,4,2,0,339,340, + 5,116,0,0,340,341,3,4,2,0,341,39,1,0,0,0,342,347,3,38,19,0,343,344, + 5,117,0,0,344,346,3,38,19,0,345,343,1,0,0,0,346,349,1,0,0,0,347, + 345,1,0,0,0,347,348,1,0,0,0,348,351,1,0,0,0,349,347,1,0,0,0,350, + 352,5,117,0,0,351,350,1,0,0,0,351,352,1,0,0,0,352,41,1,0,0,0,353, + 357,3,44,22,0,354,357,3,48,24,0,355,357,3,120,60,0,356,353,1,0,0, + 0,356,354,1,0,0,0,356,355,1,0,0,0,357,358,1,0,0,0,358,359,5,0,0, + 1,359,43,1,0,0,0,360,366,3,46,23,0,361,362,5,96,0,0,362,363,5,1, + 0,0,363,365,3,46,23,0,364,361,1,0,0,0,365,368,1,0,0,0,366,364,1, + 0,0,0,366,367,1,0,0,0,367,45,1,0,0,0,368,366,1,0,0,0,369,376,3,48, + 24,0,370,371,5,131,0,0,371,372,3,44,22,0,372,373,5,150,0,0,373,376, + 1,0,0,0,374,376,3,36,18,0,375,369,1,0,0,0,375,370,1,0,0,0,375,374, + 1,0,0,0,376,47,1,0,0,0,377,379,3,50,25,0,378,377,1,0,0,0,378,379, + 1,0,0,0,379,380,1,0,0,0,380,382,5,80,0,0,381,383,5,24,0,0,382,381, + 1,0,0,0,382,383,1,0,0,0,383,385,1,0,0,0,384,386,3,52,26,0,385,384, + 1,0,0,0,385,386,1,0,0,0,386,387,1,0,0,0,387,389,3,114,57,0,388,390, + 3,54,27,0,389,388,1,0,0,0,389,390,1,0,0,0,390,392,1,0,0,0,391,393, + 3,56,28,0,392,391,1,0,0,0,392,393,1,0,0,0,393,395,1,0,0,0,394,396, + 3,60,30,0,395,394,1,0,0,0,395,396,1,0,0,0,396,398,1,0,0,0,397,399, + 3,62,31,0,398,397,1,0,0,0,398,399,1,0,0,0,399,401,1,0,0,0,400,402, + 3,64,32,0,401,400,1,0,0,0,401,402,1,0,0,0,402,405,1,0,0,0,403,404, + 5,103,0,0,404,406,7,1,0,0,405,403,1,0,0,0,405,406,1,0,0,0,406,409, + 1,0,0,0,407,408,5,103,0,0,408,410,5,90,0,0,409,407,1,0,0,0,409,410, + 1,0,0,0,410,412,1,0,0,0,411,413,3,66,33,0,412,411,1,0,0,0,412,413, + 1,0,0,0,413,415,1,0,0,0,414,416,3,58,29,0,415,414,1,0,0,0,415,416, + 1,0,0,0,416,418,1,0,0,0,417,419,3,68,34,0,418,417,1,0,0,0,418,419, + 1,0,0,0,419,422,1,0,0,0,420,423,3,72,36,0,421,423,3,74,37,0,422, + 420,1,0,0,0,422,421,1,0,0,0,422,423,1,0,0,0,423,425,1,0,0,0,424, + 426,3,76,38,0,425,424,1,0,0,0,425,426,1,0,0,0,426,49,1,0,0,0,427, + 428,5,103,0,0,428,429,3,124,62,0,429,51,1,0,0,0,430,431,5,89,0,0, + 431,434,5,109,0,0,432,433,5,103,0,0,433,435,5,86,0,0,434,432,1,0, + 0,0,434,435,1,0,0,0,435,53,1,0,0,0,436,437,5,34,0,0,437,438,3,78, + 39,0,438,55,1,0,0,0,439,441,7,2,0,0,440,439,1,0,0,0,440,441,1,0, + 0,0,441,442,1,0,0,0,442,443,5,5,0,0,443,444,5,48,0,0,444,445,3,114, + 57,0,445,57,1,0,0,0,446,447,5,102,0,0,447,448,3,156,78,0,448,449, + 5,6,0,0,449,450,5,131,0,0,450,451,3,98,49,0,451,461,5,150,0,0,452, + 453,5,117,0,0,453,454,3,156,78,0,454,455,5,6,0,0,455,456,5,131,0, + 0,456,457,3,98,49,0,457,458,5,150,0,0,458,460,1,0,0,0,459,452,1, + 0,0,0,460,463,1,0,0,0,461,459,1,0,0,0,461,462,1,0,0,0,462,59,1,0, + 0,0,463,461,1,0,0,0,464,465,5,70,0,0,465,466,3,116,58,0,466,61,1, + 0,0,0,467,468,5,100,0,0,468,469,3,116,58,0,469,63,1,0,0,0,470,471, + 5,37,0,0,471,478,5,11,0,0,472,473,7,1,0,0,473,474,5,131,0,0,474, + 475,3,114,57,0,475,476,5,150,0,0,476,479,1,0,0,0,477,479,3,114,57, + 0,478,472,1,0,0,0,478,477,1,0,0,0,479,65,1,0,0,0,480,481,5,38,0, + 0,481,482,3,116,58,0,482,67,1,0,0,0,483,484,5,65,0,0,484,485,5,11, + 0,0,485,486,3,88,44,0,486,69,1,0,0,0,487,488,5,65,0,0,488,489,5, + 11,0,0,489,490,3,114,57,0,490,71,1,0,0,0,491,492,5,55,0,0,492,495, + 3,116,58,0,493,494,5,117,0,0,494,496,3,116,58,0,495,493,1,0,0,0, + 495,496,1,0,0,0,496,501,1,0,0,0,497,498,5,103,0,0,498,502,5,86,0, + 0,499,500,5,11,0,0,500,502,3,114,57,0,501,497,1,0,0,0,501,499,1, + 0,0,0,501,502,1,0,0,0,502,521,1,0,0,0,503,504,5,55,0,0,504,507,3, + 116,58,0,505,506,5,103,0,0,506,508,5,86,0,0,507,505,1,0,0,0,507, + 508,1,0,0,0,508,509,1,0,0,0,509,510,5,62,0,0,510,511,3,116,58,0, + 511,521,1,0,0,0,512,513,5,55,0,0,513,514,3,116,58,0,514,515,5,62, + 0,0,515,518,3,116,58,0,516,517,5,11,0,0,517,519,3,114,57,0,518,516, + 1,0,0,0,518,519,1,0,0,0,519,521,1,0,0,0,520,491,1,0,0,0,520,503, + 1,0,0,0,520,512,1,0,0,0,521,73,1,0,0,0,522,523,5,62,0,0,523,524, + 3,116,58,0,524,75,1,0,0,0,525,526,5,82,0,0,526,527,3,94,47,0,527, + 77,1,0,0,0,528,529,6,39,-1,0,529,531,3,132,66,0,530,532,5,28,0,0, + 531,530,1,0,0,0,531,532,1,0,0,0,532,534,1,0,0,0,533,535,3,86,43, + 0,534,533,1,0,0,0,534,535,1,0,0,0,535,541,1,0,0,0,536,537,5,131, + 0,0,537,538,3,78,39,0,538,539,5,150,0,0,539,541,1,0,0,0,540,528, + 1,0,0,0,540,536,1,0,0,0,541,556,1,0,0,0,542,543,10,3,0,0,543,544, + 3,82,41,0,544,545,3,78,39,4,545,555,1,0,0,0,546,548,10,4,0,0,547, + 549,3,80,40,0,548,547,1,0,0,0,548,549,1,0,0,0,549,550,1,0,0,0,550, + 551,5,48,0,0,551,552,3,78,39,0,552,553,3,84,42,0,553,555,1,0,0,0, + 554,542,1,0,0,0,554,546,1,0,0,0,555,558,1,0,0,0,556,554,1,0,0,0, + 556,557,1,0,0,0,557,79,1,0,0,0,558,556,1,0,0,0,559,561,7,3,0,0,560, + 559,1,0,0,0,560,561,1,0,0,0,561,562,1,0,0,0,562,569,5,45,0,0,563, + 565,5,45,0,0,564,566,7,3,0,0,565,564,1,0,0,0,565,566,1,0,0,0,566, + 569,1,0,0,0,567,569,7,3,0,0,568,560,1,0,0,0,568,563,1,0,0,0,568, + 567,1,0,0,0,569,603,1,0,0,0,570,572,7,4,0,0,571,570,1,0,0,0,571, + 572,1,0,0,0,572,573,1,0,0,0,573,575,7,5,0,0,574,576,5,66,0,0,575, + 574,1,0,0,0,575,576,1,0,0,0,576,585,1,0,0,0,577,579,7,5,0,0,578, + 580,5,66,0,0,579,578,1,0,0,0,579,580,1,0,0,0,580,582,1,0,0,0,581, + 583,7,4,0,0,582,581,1,0,0,0,582,583,1,0,0,0,583,585,1,0,0,0,584, + 571,1,0,0,0,584,577,1,0,0,0,585,603,1,0,0,0,586,588,7,6,0,0,587, + 586,1,0,0,0,587,588,1,0,0,0,588,589,1,0,0,0,589,591,5,35,0,0,590, + 592,5,66,0,0,591,590,1,0,0,0,591,592,1,0,0,0,592,601,1,0,0,0,593, + 595,5,35,0,0,594,596,5,66,0,0,595,594,1,0,0,0,595,596,1,0,0,0,596, + 598,1,0,0,0,597,599,7,6,0,0,598,597,1,0,0,0,598,599,1,0,0,0,599, + 601,1,0,0,0,600,587,1,0,0,0,600,593,1,0,0,0,601,603,1,0,0,0,602, + 568,1,0,0,0,602,584,1,0,0,0,602,600,1,0,0,0,603,81,1,0,0,0,604,605, + 5,17,0,0,605,608,5,48,0,0,606,608,5,117,0,0,607,604,1,0,0,0,607, + 606,1,0,0,0,608,83,1,0,0,0,609,610,5,63,0,0,610,619,3,114,57,0,611, + 612,5,97,0,0,612,613,5,131,0,0,613,614,3,114,57,0,614,615,5,150, + 0,0,615,619,1,0,0,0,616,617,5,97,0,0,617,619,3,114,57,0,618,609, + 1,0,0,0,618,611,1,0,0,0,618,616,1,0,0,0,619,85,1,0,0,0,620,621,5, + 78,0,0,621,624,3,92,46,0,622,623,5,62,0,0,623,625,3,92,46,0,624, + 622,1,0,0,0,624,625,1,0,0,0,625,87,1,0,0,0,626,631,3,90,45,0,627, + 628,5,117,0,0,628,630,3,90,45,0,629,627,1,0,0,0,630,633,1,0,0,0, + 631,629,1,0,0,0,631,632,1,0,0,0,632,89,1,0,0,0,633,631,1,0,0,0,634, + 636,3,116,58,0,635,637,7,7,0,0,636,635,1,0,0,0,636,637,1,0,0,0,637, + 640,1,0,0,0,638,639,5,61,0,0,639,641,7,8,0,0,640,638,1,0,0,0,640, + 641,1,0,0,0,641,644,1,0,0,0,642,643,5,16,0,0,643,645,5,111,0,0,644, + 642,1,0,0,0,644,645,1,0,0,0,645,91,1,0,0,0,646,653,3,36,18,0,647, + 650,3,144,72,0,648,649,5,152,0,0,649,651,3,144,72,0,650,648,1,0, + 0,0,650,651,1,0,0,0,651,653,1,0,0,0,652,646,1,0,0,0,652,647,1,0, + 0,0,653,93,1,0,0,0,654,659,3,96,48,0,655,656,5,117,0,0,656,658,3, + 96,48,0,657,655,1,0,0,0,658,661,1,0,0,0,659,657,1,0,0,0,659,660, + 1,0,0,0,660,95,1,0,0,0,661,659,1,0,0,0,662,663,3,156,78,0,663,664, + 5,123,0,0,664,665,3,146,73,0,665,97,1,0,0,0,666,668,3,100,50,0,667, + 666,1,0,0,0,667,668,1,0,0,0,668,670,1,0,0,0,669,671,3,102,51,0,670, + 669,1,0,0,0,670,671,1,0,0,0,671,673,1,0,0,0,672,674,3,104,52,0,673, + 672,1,0,0,0,673,674,1,0,0,0,674,99,1,0,0,0,675,676,5,68,0,0,676, + 677,5,11,0,0,677,678,3,114,57,0,678,101,1,0,0,0,679,680,5,65,0,0, + 680,681,5,11,0,0,681,682,3,88,44,0,682,103,1,0,0,0,683,684,7,9,0, + 0,684,685,3,106,53,0,685,105,1,0,0,0,686,693,3,108,54,0,687,688, + 5,9,0,0,688,689,3,108,54,0,689,690,5,2,0,0,690,691,3,108,54,0,691, + 693,1,0,0,0,692,686,1,0,0,0,692,687,1,0,0,0,693,107,1,0,0,0,694, + 695,5,19,0,0,695,707,5,76,0,0,696,697,5,95,0,0,697,707,5,69,0,0, + 698,699,5,95,0,0,699,707,5,32,0,0,700,701,3,144,72,0,701,702,5,69, + 0,0,702,707,1,0,0,0,703,704,3,144,72,0,704,705,5,32,0,0,705,707, + 1,0,0,0,706,694,1,0,0,0,706,696,1,0,0,0,706,698,1,0,0,0,706,700, + 1,0,0,0,706,703,1,0,0,0,707,109,1,0,0,0,708,709,3,116,58,0,709,710, + 5,0,0,1,710,111,1,0,0,0,711,768,3,156,78,0,712,713,3,156,78,0,713, + 714,5,131,0,0,714,715,3,156,78,0,715,722,3,112,56,0,716,717,5,117, + 0,0,717,718,3,156,78,0,718,719,3,112,56,0,719,721,1,0,0,0,720,716, + 1,0,0,0,721,724,1,0,0,0,722,720,1,0,0,0,722,723,1,0,0,0,723,726, + 1,0,0,0,724,722,1,0,0,0,725,727,5,117,0,0,726,725,1,0,0,0,726,727, + 1,0,0,0,727,728,1,0,0,0,728,729,5,150,0,0,729,768,1,0,0,0,730,731, + 3,156,78,0,731,732,5,131,0,0,732,737,3,158,79,0,733,734,5,117,0, + 0,734,736,3,158,79,0,735,733,1,0,0,0,736,739,1,0,0,0,737,735,1,0, + 0,0,737,738,1,0,0,0,738,741,1,0,0,0,739,737,1,0,0,0,740,742,5,117, + 0,0,741,740,1,0,0,0,741,742,1,0,0,0,742,743,1,0,0,0,743,744,5,150, + 0,0,744,768,1,0,0,0,745,746,3,156,78,0,746,747,5,131,0,0,747,752, + 3,112,56,0,748,749,5,117,0,0,749,751,3,112,56,0,750,748,1,0,0,0, + 751,754,1,0,0,0,752,750,1,0,0,0,752,753,1,0,0,0,753,756,1,0,0,0, + 754,752,1,0,0,0,755,757,5,117,0,0,756,755,1,0,0,0,756,757,1,0,0, + 0,757,758,1,0,0,0,758,759,5,150,0,0,759,768,1,0,0,0,760,761,3,156, + 78,0,761,763,5,131,0,0,762,764,3,114,57,0,763,762,1,0,0,0,763,764, + 1,0,0,0,764,765,1,0,0,0,765,766,5,150,0,0,766,768,1,0,0,0,767,711, + 1,0,0,0,767,712,1,0,0,0,767,730,1,0,0,0,767,745,1,0,0,0,767,760, + 1,0,0,0,768,113,1,0,0,0,769,774,3,116,58,0,770,771,5,117,0,0,771, + 773,3,116,58,0,772,770,1,0,0,0,773,776,1,0,0,0,774,772,1,0,0,0,774, + 775,1,0,0,0,775,778,1,0,0,0,776,774,1,0,0,0,777,779,5,117,0,0,778, + 777,1,0,0,0,778,779,1,0,0,0,779,115,1,0,0,0,780,781,6,58,-1,0,781, + 783,5,12,0,0,782,784,3,116,58,0,783,782,1,0,0,0,783,784,1,0,0,0, + 784,790,1,0,0,0,785,786,5,99,0,0,786,787,3,116,58,0,787,788,5,84, + 0,0,788,789,3,116,58,0,789,791,1,0,0,0,790,785,1,0,0,0,791,792,1, + 0,0,0,792,790,1,0,0,0,792,793,1,0,0,0,793,796,1,0,0,0,794,795,5, + 25,0,0,795,797,3,116,58,0,796,794,1,0,0,0,796,797,1,0,0,0,797,798, + 1,0,0,0,798,799,5,26,0,0,799,936,1,0,0,0,800,801,5,13,0,0,801,802, + 5,131,0,0,802,803,3,116,58,0,803,804,5,6,0,0,804,805,3,112,56,0, + 805,806,5,150,0,0,806,936,1,0,0,0,807,808,5,20,0,0,808,936,5,111, + 0,0,809,810,5,46,0,0,810,811,3,116,58,0,811,812,3,148,74,0,812,936, + 1,0,0,0,813,814,5,83,0,0,814,815,5,131,0,0,815,816,3,116,58,0,816, + 817,5,34,0,0,817,820,3,116,58,0,818,819,5,33,0,0,819,821,3,116,58, + 0,820,818,1,0,0,0,820,821,1,0,0,0,821,822,1,0,0,0,822,823,5,150, + 0,0,823,936,1,0,0,0,824,825,5,87,0,0,825,936,5,111,0,0,826,827,5, + 92,0,0,827,828,5,131,0,0,828,829,7,10,0,0,829,830,3,160,80,0,830, + 831,5,34,0,0,831,832,3,116,58,0,832,833,5,150,0,0,833,936,1,0,0, + 0,834,835,3,156,78,0,835,837,5,131,0,0,836,838,3,114,57,0,837,836, + 1,0,0,0,837,838,1,0,0,0,838,839,1,0,0,0,839,840,5,150,0,0,840,849, + 1,0,0,0,841,843,5,131,0,0,842,844,5,24,0,0,843,842,1,0,0,0,843,844, + 1,0,0,0,844,846,1,0,0,0,845,847,3,114,57,0,846,845,1,0,0,0,846,847, + 1,0,0,0,847,848,1,0,0,0,848,850,5,150,0,0,849,841,1,0,0,0,849,850, + 1,0,0,0,850,851,1,0,0,0,851,852,5,67,0,0,852,853,5,131,0,0,853,854, + 3,98,49,0,854,855,5,150,0,0,855,936,1,0,0,0,856,857,3,156,78,0,857, + 859,5,131,0,0,858,860,3,114,57,0,859,858,1,0,0,0,859,860,1,0,0,0, + 860,861,1,0,0,0,861,862,5,150,0,0,862,871,1,0,0,0,863,865,5,131, + 0,0,864,866,5,24,0,0,865,864,1,0,0,0,865,866,1,0,0,0,866,868,1,0, + 0,0,867,869,3,114,57,0,868,867,1,0,0,0,868,869,1,0,0,0,869,870,1, + 0,0,0,870,872,5,150,0,0,871,863,1,0,0,0,871,872,1,0,0,0,872,873, + 1,0,0,0,873,874,5,67,0,0,874,875,3,156,78,0,875,936,1,0,0,0,876, + 882,3,156,78,0,877,879,5,131,0,0,878,880,3,114,57,0,879,878,1,0, + 0,0,879,880,1,0,0,0,880,881,1,0,0,0,881,883,5,150,0,0,882,877,1, + 0,0,0,882,883,1,0,0,0,883,884,1,0,0,0,884,886,5,131,0,0,885,887, + 5,24,0,0,886,885,1,0,0,0,886,887,1,0,0,0,887,889,1,0,0,0,888,890, + 3,114,57,0,889,888,1,0,0,0,889,890,1,0,0,0,890,891,1,0,0,0,891,892, + 5,150,0,0,892,936,1,0,0,0,893,936,3,120,60,0,894,936,3,162,81,0, + 895,936,3,146,73,0,896,897,5,119,0,0,897,936,3,116,58,22,898,899, + 5,59,0,0,899,936,3,116,58,16,900,901,3,136,68,0,901,902,5,121,0, + 0,902,904,1,0,0,0,903,900,1,0,0,0,903,904,1,0,0,0,904,905,1,0,0, + 0,905,936,5,113,0,0,906,907,5,131,0,0,907,908,3,44,22,0,908,909, + 5,150,0,0,909,936,1,0,0,0,910,911,5,131,0,0,911,912,3,116,58,0,912, + 913,5,150,0,0,913,936,1,0,0,0,914,915,5,131,0,0,915,916,3,114,57, + 0,916,917,5,150,0,0,917,936,1,0,0,0,918,920,5,130,0,0,919,921,3, + 114,57,0,920,919,1,0,0,0,920,921,1,0,0,0,921,922,1,0,0,0,922,936, + 5,149,0,0,923,925,5,129,0,0,924,926,3,40,20,0,925,924,1,0,0,0,925, + 926,1,0,0,0,926,927,1,0,0,0,927,936,5,148,0,0,928,936,3,118,59,0, + 929,930,5,129,0,0,930,931,3,130,65,0,931,932,5,148,0,0,932,936,1, + 0,0,0,933,936,3,36,18,0,934,936,3,128,64,0,935,780,1,0,0,0,935,800, + 1,0,0,0,935,807,1,0,0,0,935,809,1,0,0,0,935,813,1,0,0,0,935,824, + 1,0,0,0,935,826,1,0,0,0,935,834,1,0,0,0,935,856,1,0,0,0,935,876, + 1,0,0,0,935,893,1,0,0,0,935,894,1,0,0,0,935,895,1,0,0,0,935,896, + 1,0,0,0,935,898,1,0,0,0,935,903,1,0,0,0,935,906,1,0,0,0,935,910, + 1,0,0,0,935,914,1,0,0,0,935,918,1,0,0,0,935,923,1,0,0,0,935,928, + 1,0,0,0,935,929,1,0,0,0,935,933,1,0,0,0,935,934,1,0,0,0,936,1047, + 1,0,0,0,937,941,10,21,0,0,938,942,5,113,0,0,939,942,5,152,0,0,940, + 942,5,139,0,0,941,938,1,0,0,0,941,939,1,0,0,0,941,940,1,0,0,0,942, + 943,1,0,0,0,943,1046,3,116,58,22,944,948,10,20,0,0,945,949,5,140, + 0,0,946,949,5,119,0,0,947,949,5,118,0,0,948,945,1,0,0,0,948,946, + 1,0,0,0,948,947,1,0,0,0,949,950,1,0,0,0,950,1046,3,116,58,21,951, + 976,10,19,0,0,952,977,5,122,0,0,953,977,5,123,0,0,954,977,5,134, + 0,0,955,977,5,132,0,0,956,977,5,133,0,0,957,977,5,124,0,0,958,977, + 5,125,0,0,959,961,5,59,0,0,960,959,1,0,0,0,960,961,1,0,0,0,961,962, + 1,0,0,0,962,964,5,43,0,0,963,965,5,15,0,0,964,963,1,0,0,0,964,965, + 1,0,0,0,965,977,1,0,0,0,966,968,5,59,0,0,967,966,1,0,0,0,967,968, + 1,0,0,0,968,969,1,0,0,0,969,977,7,11,0,0,970,977,5,146,0,0,971,977, + 5,147,0,0,972,977,5,136,0,0,973,977,5,127,0,0,974,977,5,128,0,0, + 975,977,5,135,0,0,976,952,1,0,0,0,976,953,1,0,0,0,976,954,1,0,0, + 0,976,955,1,0,0,0,976,956,1,0,0,0,976,957,1,0,0,0,976,958,1,0,0, + 0,976,960,1,0,0,0,976,967,1,0,0,0,976,970,1,0,0,0,976,971,1,0,0, + 0,976,972,1,0,0,0,976,973,1,0,0,0,976,974,1,0,0,0,976,975,1,0,0, + 0,977,978,1,0,0,0,978,1046,3,116,58,20,979,980,10,17,0,0,980,981, + 5,138,0,0,981,1046,3,116,58,18,982,983,10,15,0,0,983,984,5,2,0,0, + 984,1046,3,116,58,16,985,986,10,14,0,0,986,987,5,64,0,0,987,1046, + 3,116,58,15,988,990,10,13,0,0,989,991,5,59,0,0,990,989,1,0,0,0,990, + 991,1,0,0,0,991,992,1,0,0,0,992,993,5,9,0,0,993,994,3,116,58,0,994, + 995,5,2,0,0,995,996,3,116,58,14,996,1046,1,0,0,0,997,998,10,12,0, + 0,998,999,5,141,0,0,999,1000,3,116,58,0,1000,1001,5,116,0,0,1001, + 1002,3,116,58,12,1002,1046,1,0,0,0,1003,1004,10,32,0,0,1004,1006, + 5,131,0,0,1005,1007,3,114,57,0,1006,1005,1,0,0,0,1006,1007,1,0,0, + 0,1007,1008,1,0,0,0,1008,1046,5,150,0,0,1009,1010,10,28,0,0,1010, + 1011,5,130,0,0,1011,1012,3,116,58,0,1012,1013,5,149,0,0,1013,1046, + 1,0,0,0,1014,1015,10,27,0,0,1015,1016,5,121,0,0,1016,1046,5,109, + 0,0,1017,1018,10,26,0,0,1018,1019,5,121,0,0,1019,1046,3,156,78,0, + 1020,1021,10,25,0,0,1021,1022,5,137,0,0,1022,1023,5,130,0,0,1023, + 1024,3,116,58,0,1024,1025,5,149,0,0,1025,1046,1,0,0,0,1026,1027, + 10,24,0,0,1027,1028,5,137,0,0,1028,1046,5,109,0,0,1029,1030,10,23, + 0,0,1030,1031,5,137,0,0,1031,1046,3,156,78,0,1032,1033,10,18,0,0, + 1033,1035,5,47,0,0,1034,1036,5,59,0,0,1035,1034,1,0,0,0,1035,1036, + 1,0,0,0,1036,1037,1,0,0,0,1037,1046,5,60,0,0,1038,1043,10,11,0,0, + 1039,1040,5,6,0,0,1040,1044,3,156,78,0,1041,1042,5,6,0,0,1042,1044, + 5,111,0,0,1043,1039,1,0,0,0,1043,1041,1,0,0,0,1044,1046,1,0,0,0, + 1045,937,1,0,0,0,1045,944,1,0,0,0,1045,951,1,0,0,0,1045,979,1,0, + 0,0,1045,982,1,0,0,0,1045,985,1,0,0,0,1045,988,1,0,0,0,1045,997, + 1,0,0,0,1045,1003,1,0,0,0,1045,1009,1,0,0,0,1045,1014,1,0,0,0,1045, + 1017,1,0,0,0,1045,1020,1,0,0,0,1045,1026,1,0,0,0,1045,1029,1,0,0, + 0,1045,1032,1,0,0,0,1045,1038,1,0,0,0,1046,1049,1,0,0,0,1047,1045, + 1,0,0,0,1047,1048,1,0,0,0,1048,117,1,0,0,0,1049,1047,1,0,0,0,1050, + 1051,5,131,0,0,1051,1056,3,156,78,0,1052,1053,5,117,0,0,1053,1055, + 3,156,78,0,1054,1052,1,0,0,0,1055,1058,1,0,0,0,1056,1054,1,0,0,0, + 1056,1057,1,0,0,0,1057,1060,1,0,0,0,1058,1056,1,0,0,0,1059,1061, + 5,117,0,0,1060,1059,1,0,0,0,1060,1061,1,0,0,0,1061,1062,1,0,0,0, + 1062,1063,5,150,0,0,1063,1078,1,0,0,0,1064,1069,3,156,78,0,1065, + 1066,5,117,0,0,1066,1068,3,156,78,0,1067,1065,1,0,0,0,1068,1071, + 1,0,0,0,1069,1067,1,0,0,0,1069,1070,1,0,0,0,1070,1073,1,0,0,0,1071, + 1069,1,0,0,0,1072,1074,5,117,0,0,1073,1072,1,0,0,0,1073,1074,1,0, + 0,0,1074,1078,1,0,0,0,1075,1076,5,131,0,0,1076,1078,5,150,0,0,1077, + 1050,1,0,0,0,1077,1064,1,0,0,0,1077,1075,1,0,0,0,1078,1079,1,0,0, + 0,1079,1082,5,112,0,0,1080,1083,3,36,18,0,1081,1083,3,116,58,0,1082, + 1080,1,0,0,0,1082,1081,1,0,0,0,1083,119,1,0,0,0,1084,1085,5,133, + 0,0,1085,1089,3,156,78,0,1086,1088,3,122,61,0,1087,1086,1,0,0,0, + 1088,1091,1,0,0,0,1089,1087,1,0,0,0,1089,1090,1,0,0,0,1090,1092, + 1,0,0,0,1091,1089,1,0,0,0,1092,1093,5,152,0,0,1093,1094,5,125,0, + 0,1094,1117,1,0,0,0,1095,1096,5,133,0,0,1096,1100,3,156,78,0,1097, + 1099,3,122,61,0,1098,1097,1,0,0,0,1099,1102,1,0,0,0,1100,1098,1, + 0,0,0,1100,1101,1,0,0,0,1101,1103,1,0,0,0,1102,1100,1,0,0,0,1103, + 1109,5,125,0,0,1104,1110,3,120,60,0,1105,1106,5,129,0,0,1106,1107, + 3,116,58,0,1107,1108,5,148,0,0,1108,1110,1,0,0,0,1109,1104,1,0,0, + 0,1109,1105,1,0,0,0,1109,1110,1,0,0,0,1110,1111,1,0,0,0,1111,1112, + 5,133,0,0,1112,1113,5,152,0,0,1113,1114,3,156,78,0,1114,1115,5,125, + 0,0,1115,1117,1,0,0,0,1116,1084,1,0,0,0,1116,1095,1,0,0,0,1117,121, + 1,0,0,0,1118,1119,3,156,78,0,1119,1120,5,123,0,0,1120,1121,3,160, + 80,0,1121,1130,1,0,0,0,1122,1123,3,156,78,0,1123,1124,5,123,0,0, + 1124,1125,5,129,0,0,1125,1126,3,116,58,0,1126,1127,5,148,0,0,1127, + 1130,1,0,0,0,1128,1130,3,156,78,0,1129,1118,1,0,0,0,1129,1122,1, + 0,0,0,1129,1128,1,0,0,0,1130,123,1,0,0,0,1131,1136,3,126,63,0,1132, + 1133,5,117,0,0,1133,1135,3,126,63,0,1134,1132,1,0,0,0,1135,1138, + 1,0,0,0,1136,1134,1,0,0,0,1136,1137,1,0,0,0,1137,1140,1,0,0,0,1138, + 1136,1,0,0,0,1139,1141,5,117,0,0,1140,1139,1,0,0,0,1140,1141,1,0, + 0,0,1141,125,1,0,0,0,1142,1143,3,156,78,0,1143,1144,5,6,0,0,1144, + 1145,5,131,0,0,1145,1146,3,44,22,0,1146,1147,5,150,0,0,1147,1153, + 1,0,0,0,1148,1149,3,116,58,0,1149,1150,5,6,0,0,1150,1151,3,156,78, + 0,1151,1153,1,0,0,0,1152,1142,1,0,0,0,1152,1148,1,0,0,0,1153,127, + 1,0,0,0,1154,1155,3,136,68,0,1155,1156,5,121,0,0,1156,1158,1,0,0, + 0,1157,1154,1,0,0,0,1157,1158,1,0,0,0,1158,1159,1,0,0,0,1159,1160, + 3,130,65,0,1160,129,1,0,0,0,1161,1166,3,156,78,0,1162,1163,5,121, + 0,0,1163,1165,3,156,78,0,1164,1162,1,0,0,0,1165,1168,1,0,0,0,1166, + 1164,1,0,0,0,1166,1167,1,0,0,0,1167,131,1,0,0,0,1168,1166,1,0,0, + 0,1169,1170,6,66,-1,0,1170,1179,3,136,68,0,1171,1179,3,134,67,0, + 1172,1173,5,131,0,0,1173,1174,3,44,22,0,1174,1175,5,150,0,0,1175, + 1179,1,0,0,0,1176,1179,3,120,60,0,1177,1179,3,36,18,0,1178,1169, + 1,0,0,0,1178,1171,1,0,0,0,1178,1172,1,0,0,0,1178,1176,1,0,0,0,1178, + 1177,1,0,0,0,1179,1188,1,0,0,0,1180,1184,10,3,0,0,1181,1185,3,154, + 77,0,1182,1183,5,6,0,0,1183,1185,3,156,78,0,1184,1181,1,0,0,0,1184, + 1182,1,0,0,0,1185,1187,1,0,0,0,1186,1180,1,0,0,0,1187,1190,1,0,0, + 0,1188,1186,1,0,0,0,1188,1189,1,0,0,0,1189,133,1,0,0,0,1190,1188, + 1,0,0,0,1191,1192,3,156,78,0,1192,1194,5,131,0,0,1193,1195,3,138, + 69,0,1194,1193,1,0,0,0,1194,1195,1,0,0,0,1195,1196,1,0,0,0,1196, + 1197,5,150,0,0,1197,135,1,0,0,0,1198,1199,3,140,70,0,1199,1200,5, + 121,0,0,1200,1202,1,0,0,0,1201,1198,1,0,0,0,1201,1202,1,0,0,0,1202, + 1203,1,0,0,0,1203,1204,3,156,78,0,1204,137,1,0,0,0,1205,1210,3,116, + 58,0,1206,1207,5,117,0,0,1207,1209,3,116,58,0,1208,1206,1,0,0,0, + 1209,1212,1,0,0,0,1210,1208,1,0,0,0,1210,1211,1,0,0,0,1211,1214, + 1,0,0,0,1212,1210,1,0,0,0,1213,1215,5,117,0,0,1214,1213,1,0,0,0, + 1214,1215,1,0,0,0,1215,139,1,0,0,0,1216,1217,3,156,78,0,1217,141, + 1,0,0,0,1218,1227,5,107,0,0,1219,1220,5,121,0,0,1220,1227,7,12,0, + 0,1221,1222,5,109,0,0,1222,1224,5,121,0,0,1223,1225,7,12,0,0,1224, + 1223,1,0,0,0,1224,1225,1,0,0,0,1225,1227,1,0,0,0,1226,1218,1,0,0, + 0,1226,1219,1,0,0,0,1226,1221,1,0,0,0,1227,143,1,0,0,0,1228,1230, + 7,13,0,0,1229,1228,1,0,0,0,1229,1230,1,0,0,0,1230,1237,1,0,0,0,1231, + 1238,3,142,71,0,1232,1238,5,108,0,0,1233,1238,5,109,0,0,1234,1238, + 5,110,0,0,1235,1238,5,44,0,0,1236,1238,5,58,0,0,1237,1231,1,0,0, + 0,1237,1232,1,0,0,0,1237,1233,1,0,0,0,1237,1234,1,0,0,0,1237,1235, + 1,0,0,0,1237,1236,1,0,0,0,1238,145,1,0,0,0,1239,1243,3,144,72,0, + 1240,1243,5,111,0,0,1241,1243,5,60,0,0,1242,1239,1,0,0,0,1242,1240, + 1,0,0,0,1242,1241,1,0,0,0,1243,147,1,0,0,0,1244,1245,7,14,0,0,1245, + 149,1,0,0,0,1246,1247,7,15,0,0,1247,151,1,0,0,0,1248,1249,7,16,0, + 0,1249,153,1,0,0,0,1250,1253,5,106,0,0,1251,1253,3,152,76,0,1252, + 1250,1,0,0,0,1252,1251,1,0,0,0,1253,155,1,0,0,0,1254,1258,5,106, + 0,0,1255,1258,3,148,74,0,1256,1258,3,150,75,0,1257,1254,1,0,0,0, + 1257,1255,1,0,0,0,1257,1256,1,0,0,0,1258,157,1,0,0,0,1259,1260,3, + 160,80,0,1260,1261,5,123,0,0,1261,1262,3,144,72,0,1262,159,1,0,0, + 0,1263,1266,5,111,0,0,1264,1266,3,162,81,0,1265,1263,1,0,0,0,1265, + 1264,1,0,0,0,1266,161,1,0,0,0,1267,1271,5,143,0,0,1268,1270,3,164, + 82,0,1269,1268,1,0,0,0,1270,1273,1,0,0,0,1271,1269,1,0,0,0,1271, + 1272,1,0,0,0,1272,1274,1,0,0,0,1273,1271,1,0,0,0,1274,1275,5,145, + 0,0,1275,163,1,0,0,0,1276,1277,5,158,0,0,1277,1278,3,116,58,0,1278, + 1279,5,148,0,0,1279,1282,1,0,0,0,1280,1282,5,157,0,0,1281,1276,1, + 0,0,0,1281,1280,1,0,0,0,1282,165,1,0,0,0,1283,1287,5,144,0,0,1284, + 1286,3,168,84,0,1285,1284,1,0,0,0,1286,1289,1,0,0,0,1287,1285,1, + 0,0,0,1287,1288,1,0,0,0,1288,1290,1,0,0,0,1289,1287,1,0,0,0,1290, + 1291,5,0,0,1,1291,167,1,0,0,0,1292,1293,5,160,0,0,1293,1294,3,116, + 58,0,1294,1295,5,148,0,0,1295,1298,1,0,0,0,1296,1298,5,159,0,0,1297, + 1292,1,0,0,0,1297,1296,1,0,0,0,1298,169,1,0,0,0,166,173,180,189, + 196,200,214,218,221,225,228,235,239,248,253,262,270,277,281,287, + 292,300,307,313,325,333,347,351,356,366,375,378,382,385,389,392, + 395,398,401,405,409,412,415,418,422,425,434,440,461,478,495,501, + 507,518,520,531,534,540,548,554,556,560,565,568,571,575,579,582, + 584,587,591,595,598,600,602,607,618,624,631,636,640,644,650,652, + 659,667,670,673,692,706,722,726,737,741,752,756,763,767,774,778, + 783,792,796,820,837,843,846,849,859,865,868,871,879,882,886,889, + 903,920,925,935,941,948,960,964,967,976,990,1006,1035,1043,1045, + 1047,1056,1060,1069,1073,1077,1082,1089,1100,1109,1116,1129,1136, + 1140,1152,1157,1166,1178,1184,1188,1194,1201,1210,1214,1224,1226, + 1229,1237,1242,1252,1257,1265,1271,1281,1287,1297 ] class HogQLParser ( Parser ): @@ -694,12 +694,11 @@ class HogQLParser ( Parser ): RULE_alias = 77 RULE_identifier = 78 RULE_enumValue = 79 - RULE_placeholder = 80 - RULE_string = 81 - RULE_templateString = 82 - RULE_stringContents = 83 - RULE_fullTemplateString = 84 - RULE_stringContentsFull = 85 + RULE_string = 80 + RULE_templateString = 81 + RULE_stringContents = 82 + RULE_fullTemplateString = 83 + RULE_stringContentsFull = 84 ruleNames = [ "program", "declaration", "expression", "varDecl", "identifierList", "statement", "returnStmt", "throwStmt", "catchBlock", @@ -721,9 +720,8 @@ class HogQLParser ( Parser ): "tableExpr", "tableFunctionExpr", "tableIdentifier", "tableArgList", "databaseIdentifier", "floatingLiteral", "numberLiteral", "literal", "interval", "keyword", "keywordForAlias", - "alias", "identifier", "enumValue", "placeholder", "string", - "templateString", "stringContents", "fullTemplateString", - "stringContentsFull" ] + "alias", "identifier", "enumValue", "string", "templateString", + "stringContents", "fullTemplateString", "stringContentsFull" ] EOF = Token.EOF ALL=1 @@ -932,17 +930,17 @@ def program(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 175 + self.state = 173 self._errHandler.sync(self) _la = self._input.LA(1) while (((_la) & ~0x3f) == 0 and ((1 << _la) & -536887298) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 180986211001696255) != 0) or ((((_la - 129)) & ~0x3f) == 0 and ((1 << (_la - 129)) & 4212759) != 0): - self.state = 172 + self.state = 170 self.declaration() - self.state = 177 + self.state = 175 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 178 + self.state = 176 self.match(HogQLParser.EOF) except RecognitionException as re: localctx.exception = re @@ -985,17 +983,17 @@ def declaration(self): localctx = HogQLParser.DeclarationContext(self, self._ctx, self.state) self.enterRule(localctx, 2, self.RULE_declaration) try: - self.state = 182 + self.state = 180 self._errHandler.sync(self) token = self._input.LA(1) if token in [53]: self.enterOuterAlt(localctx, 1) - self.state = 180 + self.state = 178 self.varDecl() pass elif token in [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 106, 107, 108, 109, 110, 111, 113, 119, 121, 129, 130, 131, 133, 140, 143, 151]: self.enterOuterAlt(localctx, 2) - self.state = 181 + self.state = 179 self.statement() pass else: @@ -1039,7 +1037,7 @@ def expression(self): self.enterRule(localctx, 4, self.RULE_expression) try: self.enterOuterAlt(localctx, 1) - self.state = 184 + self.state = 182 self.columnExpr(0) except RecognitionException as re: localctx.exception = re @@ -1093,19 +1091,19 @@ def varDecl(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 186 + self.state = 184 self.match(HogQLParser.LET) - self.state = 187 + self.state = 185 self.identifier() - self.state = 191 + self.state = 189 self._errHandler.sync(self) _la = self._input.LA(1) if _la==116: - self.state = 188 + self.state = 186 self.match(HogQLParser.COLON) - self.state = 189 + self.state = 187 self.match(HogQLParser.EQ_SINGLE) - self.state = 190 + self.state = 188 self.expression() @@ -1157,26 +1155,26 @@ def identifierList(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 193 + self.state = 191 self.identifier() - self.state = 198 + self.state = 196 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,3,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 194 + self.state = 192 self.match(HogQLParser.COMMA) - self.state = 195 + self.state = 193 self.identifier() - self.state = 200 + self.state = 198 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,3,self._ctx) - self.state = 202 + self.state = 200 self._errHandler.sync(self) _la = self._input.LA(1) if _la==117: - self.state = 201 + self.state = 199 self.match(HogQLParser.COMMA) @@ -1261,78 +1259,78 @@ def statement(self): localctx = HogQLParser.StatementContext(self, self._ctx, self.state) self.enterRule(localctx, 10, self.RULE_statement) try: - self.state = 216 + self.state = 214 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,5,self._ctx) if la_ == 1: self.enterOuterAlt(localctx, 1) - self.state = 204 + self.state = 202 self.returnStmt() pass elif la_ == 2: self.enterOuterAlt(localctx, 2) - self.state = 205 + self.state = 203 self.throwStmt() pass elif la_ == 3: self.enterOuterAlt(localctx, 3) - self.state = 206 + self.state = 204 self.tryCatchStmt() pass elif la_ == 4: self.enterOuterAlt(localctx, 4) - self.state = 207 + self.state = 205 self.ifStmt() pass elif la_ == 5: self.enterOuterAlt(localctx, 5) - self.state = 208 + self.state = 206 self.whileStmt() pass elif la_ == 6: self.enterOuterAlt(localctx, 6) - self.state = 209 + self.state = 207 self.forInStmt() pass elif la_ == 7: self.enterOuterAlt(localctx, 7) - self.state = 210 + self.state = 208 self.forStmt() pass elif la_ == 8: self.enterOuterAlt(localctx, 8) - self.state = 211 + self.state = 209 self.funcStmt() pass elif la_ == 9: self.enterOuterAlt(localctx, 9) - self.state = 212 + self.state = 210 self.varAssignment() pass elif la_ == 10: self.enterOuterAlt(localctx, 10) - self.state = 213 + self.state = 211 self.block() pass elif la_ == 11: self.enterOuterAlt(localctx, 11) - self.state = 214 + self.state = 212 self.exprStmt() pass elif la_ == 12: self.enterOuterAlt(localctx, 12) - self.state = 215 + self.state = 213 self.emptyStmt() pass @@ -1381,21 +1379,21 @@ def returnStmt(self): self.enterRule(localctx, 12, self.RULE_returnStmt) try: self.enterOuterAlt(localctx, 1) - self.state = 218 + self.state = 216 self.match(HogQLParser.RETURN) - self.state = 220 + self.state = 218 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,6,self._ctx) if la_ == 1: - self.state = 219 + self.state = 217 self.expression() - self.state = 223 + self.state = 221 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,7,self._ctx) if la_ == 1: - self.state = 222 + self.state = 220 self.match(HogQLParser.SEMICOLON) @@ -1443,21 +1441,21 @@ def throwStmt(self): self.enterRule(localctx, 14, self.RULE_throwStmt) try: self.enterOuterAlt(localctx, 1) - self.state = 225 + self.state = 223 self.match(HogQLParser.THROW) - self.state = 227 + self.state = 225 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,8,self._ctx) if la_ == 1: - self.state = 226 + self.state = 224 self.expression() - self.state = 230 + self.state = 228 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,9,self._ctx) if la_ == 1: - self.state = 229 + self.state = 227 self.match(HogQLParser.SEMICOLON) @@ -1522,31 +1520,31 @@ def catchBlock(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 232 + self.state = 230 self.match(HogQLParser.CATCH) - self.state = 241 + self.state = 239 self._errHandler.sync(self) _la = self._input.LA(1) if _la==131: - self.state = 233 + self.state = 231 self.match(HogQLParser.LPAREN) - self.state = 234 + self.state = 232 localctx.catchVar = self.identifier() - self.state = 237 + self.state = 235 self._errHandler.sync(self) _la = self._input.LA(1) if _la==116: - self.state = 235 + self.state = 233 self.match(HogQLParser.COLON) - self.state = 236 + self.state = 234 localctx.catchType = self.identifier() - self.state = 239 + self.state = 237 self.match(HogQLParser.RPAREN) - self.state = 243 + self.state = 241 localctx.catchStmt = self.block() except RecognitionException as re: localctx.exception = re @@ -1605,27 +1603,27 @@ def tryCatchStmt(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 245 + self.state = 243 self.match(HogQLParser.TRY) - self.state = 246 + self.state = 244 localctx.tryStmt = self.block() - self.state = 250 + self.state = 248 self._errHandler.sync(self) _la = self._input.LA(1) while _la==14: - self.state = 247 + self.state = 245 self.catchBlock() - self.state = 252 + self.state = 250 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 255 + self.state = 253 self._errHandler.sync(self) _la = self._input.LA(1) if _la==29: - self.state = 253 + self.state = 251 self.match(HogQLParser.FINALLY) - self.state = 254 + self.state = 252 localctx.finallyStmt = self.block() @@ -1686,23 +1684,23 @@ def ifStmt(self): self.enterRule(localctx, 20, self.RULE_ifStmt) try: self.enterOuterAlt(localctx, 1) - self.state = 257 + self.state = 255 self.match(HogQLParser.IF) - self.state = 258 + self.state = 256 self.match(HogQLParser.LPAREN) - self.state = 259 + self.state = 257 self.expression() - self.state = 260 + self.state = 258 self.match(HogQLParser.RPAREN) - self.state = 261 + self.state = 259 self.statement() - self.state = 264 + self.state = 262 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,14,self._ctx) if la_ == 1: - self.state = 262 + self.state = 260 self.match(HogQLParser.ELSE) - self.state = 263 + self.state = 261 self.statement() @@ -1760,21 +1758,21 @@ def whileStmt(self): self.enterRule(localctx, 22, self.RULE_whileStmt) try: self.enterOuterAlt(localctx, 1) - self.state = 266 + self.state = 264 self.match(HogQLParser.WHILE) - self.state = 267 + self.state = 265 self.match(HogQLParser.LPAREN) - self.state = 268 + self.state = 266 self.expression() - self.state = 269 + self.state = 267 self.match(HogQLParser.RPAREN) - self.state = 270 + self.state = 268 self.statement() - self.state = 272 + self.state = 270 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,15,self._ctx) if la_ == 1: - self.state = 271 + self.state = 269 self.match(HogQLParser.SEMICOLON) @@ -1860,63 +1858,63 @@ def forStmt(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 274 + self.state = 272 self.match(HogQLParser.FOR) - self.state = 275 + self.state = 273 self.match(HogQLParser.LPAREN) - self.state = 279 + self.state = 277 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,16,self._ctx) if la_ == 1: - self.state = 276 + self.state = 274 localctx.initializerVarDeclr = self.varDecl() elif la_ == 2: - self.state = 277 + self.state = 275 localctx.initializerVarAssignment = self.varAssignment() elif la_ == 3: - self.state = 278 + self.state = 276 localctx.initializerExpression = self.expression() - self.state = 281 + self.state = 279 self.match(HogQLParser.SEMICOLON) - self.state = 283 + self.state = 281 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & -9007270658588674) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 180986072486903807) != 0) or ((((_la - 129)) & ~0x3f) == 0 and ((1 << (_la - 129)) & 18455) != 0): - self.state = 282 + self.state = 280 localctx.condition = self.expression() - self.state = 285 + self.state = 283 self.match(HogQLParser.SEMICOLON) - self.state = 289 + self.state = 287 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,18,self._ctx) if la_ == 1: - self.state = 286 + self.state = 284 localctx.incrementVarDeclr = self.varDecl() elif la_ == 2: - self.state = 287 + self.state = 285 localctx.incrementVarAssignment = self.varAssignment() elif la_ == 3: - self.state = 288 + self.state = 286 localctx.incrementExpression = self.expression() - self.state = 291 + self.state = 289 self.match(HogQLParser.RPAREN) - self.state = 292 + self.state = 290 self.statement() - self.state = 294 + self.state = 292 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,19,self._ctx) if la_ == 1: - self.state = 293 + self.state = 291 self.match(HogQLParser.SEMICOLON) @@ -1991,37 +1989,37 @@ def forInStmt(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 296 + self.state = 294 self.match(HogQLParser.FOR) - self.state = 297 + self.state = 295 self.match(HogQLParser.LPAREN) - self.state = 298 + self.state = 296 self.match(HogQLParser.LET) - self.state = 299 + self.state = 297 self.identifier() - self.state = 302 + self.state = 300 self._errHandler.sync(self) _la = self._input.LA(1) if _la==117: - self.state = 300 + self.state = 298 self.match(HogQLParser.COMMA) - self.state = 301 + self.state = 299 self.identifier() - self.state = 304 + self.state = 302 self.match(HogQLParser.IN) - self.state = 305 + self.state = 303 self.expression() - self.state = 306 + self.state = 304 self.match(HogQLParser.RPAREN) - self.state = 307 + self.state = 305 self.statement() - self.state = 309 + self.state = 307 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,21,self._ctx) if la_ == 1: - self.state = 308 + self.state = 306 self.match(HogQLParser.SEMICOLON) @@ -2084,28 +2082,28 @@ def funcStmt(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 311 + self.state = 309 _la = self._input.LA(1) if not(_la==31 or _la==36): self._errHandler.recoverInline(self) else: self._errHandler.reportMatch(self) self.consume() - self.state = 312 + self.state = 310 self.identifier() - self.state = 313 + self.state = 311 self.match(HogQLParser.LPAREN) - self.state = 315 + self.state = 313 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & -1450176743603191810) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 6458554974207) != 0): - self.state = 314 + self.state = 312 self.identifierList() - self.state = 317 + self.state = 315 self.match(HogQLParser.RPAREN) - self.state = 318 + self.state = 316 self.block() except RecognitionException as re: localctx.exception = re @@ -2154,13 +2152,13 @@ def varAssignment(self): self.enterRule(localctx, 30, self.RULE_varAssignment) try: self.enterOuterAlt(localctx, 1) - self.state = 320 + self.state = 318 self.expression() - self.state = 321 + self.state = 319 self.match(HogQLParser.COLON) - self.state = 322 + self.state = 320 self.match(HogQLParser.EQ_SINGLE) - self.state = 323 + self.state = 321 self.expression() except RecognitionException as re: localctx.exception = re @@ -2203,13 +2201,13 @@ def exprStmt(self): self.enterRule(localctx, 32, self.RULE_exprStmt) try: self.enterOuterAlt(localctx, 1) - self.state = 325 + self.state = 323 self.expression() - self.state = 327 + self.state = 325 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,23,self._ctx) if la_ == 1: - self.state = 326 + self.state = 324 self.match(HogQLParser.SEMICOLON) @@ -2250,7 +2248,7 @@ def emptyStmt(self): self.enterRule(localctx, 34, self.RULE_emptyStmt) try: self.enterOuterAlt(localctx, 1) - self.state = 329 + self.state = 327 self.match(HogQLParser.SEMICOLON) except RecognitionException as re: localctx.exception = re @@ -2300,19 +2298,19 @@ def block(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 331 + self.state = 329 self.match(HogQLParser.LBRACE) - self.state = 335 + self.state = 333 self._errHandler.sync(self) _la = self._input.LA(1) while (((_la) & ~0x3f) == 0 and ((1 << _la) & -536887298) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 180986211001696255) != 0) or ((((_la - 129)) & ~0x3f) == 0 and ((1 << (_la - 129)) & 4212759) != 0): - self.state = 332 + self.state = 330 self.declaration() - self.state = 337 + self.state = 335 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 338 + self.state = 336 self.match(HogQLParser.RBRACE) except RecognitionException as re: localctx.exception = re @@ -2358,11 +2356,11 @@ def kvPair(self): self.enterRule(localctx, 38, self.RULE_kvPair) try: self.enterOuterAlt(localctx, 1) - self.state = 340 + self.state = 338 self.expression() - self.state = 341 + self.state = 339 self.match(HogQLParser.COLON) - self.state = 342 + self.state = 340 self.expression() except RecognitionException as re: localctx.exception = re @@ -2412,26 +2410,26 @@ def kvPairList(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 344 + self.state = 342 self.kvPair() - self.state = 349 + self.state = 347 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,25,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 345 + self.state = 343 self.match(HogQLParser.COMMA) - self.state = 346 + self.state = 344 self.kvPair() - self.state = 351 + self.state = 349 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,25,self._ctx) - self.state = 353 + self.state = 351 self._errHandler.sync(self) _la = self._input.LA(1) if _la==117: - self.state = 352 + self.state = 350 self.match(HogQLParser.COMMA) @@ -2484,26 +2482,26 @@ def select(self): self.enterRule(localctx, 42, self.RULE_select) try: self.enterOuterAlt(localctx, 1) - self.state = 358 + self.state = 356 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,27,self._ctx) if la_ == 1: - self.state = 355 + self.state = 353 self.selectUnionStmt() pass elif la_ == 2: - self.state = 356 + self.state = 354 self.selectStmt() pass elif la_ == 3: - self.state = 357 + self.state = 355 self.hogqlxTagElement() pass - self.state = 360 + self.state = 358 self.match(HogQLParser.EOF) except RecognitionException as re: localctx.exception = re @@ -2559,19 +2557,19 @@ def selectUnionStmt(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 362 + self.state = 360 self.selectStmtWithParens() - self.state = 368 + self.state = 366 self._errHandler.sync(self) _la = self._input.LA(1) while _la==96: - self.state = 363 + self.state = 361 self.match(HogQLParser.UNION) - self.state = 364 + self.state = 362 self.match(HogQLParser.ALL) - self.state = 365 + self.state = 363 self.selectStmtWithParens() - self.state = 370 + self.state = 368 self._errHandler.sync(self) _la = self._input.LA(1) @@ -2590,6 +2588,7 @@ class SelectStmtWithParensContext(ParserRuleContext): def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): super().__init__(parent, invokingState) self.parser = parser + self.placeholder = None # BlockContext def selectStmt(self): return self.getTypedRuleContext(HogQLParser.SelectStmtContext,0) @@ -2605,8 +2604,8 @@ def selectUnionStmt(self): def RPAREN(self): return self.getToken(HogQLParser.RPAREN, 0) - def placeholder(self): - return self.getTypedRuleContext(HogQLParser.PlaceholderContext,0) + def block(self): + return self.getTypedRuleContext(HogQLParser.BlockContext,0) def getRuleIndex(self): @@ -2626,27 +2625,27 @@ def selectStmtWithParens(self): localctx = HogQLParser.SelectStmtWithParensContext(self, self._ctx, self.state) self.enterRule(localctx, 46, self.RULE_selectStmtWithParens) try: - self.state = 377 + self.state = 375 self._errHandler.sync(self) token = self._input.LA(1) if token in [80, 103]: self.enterOuterAlt(localctx, 1) - self.state = 371 + self.state = 369 self.selectStmt() pass elif token in [131]: self.enterOuterAlt(localctx, 2) - self.state = 372 + self.state = 370 self.match(HogQLParser.LPAREN) - self.state = 373 + self.state = 371 self.selectUnionStmt() - self.state = 374 + self.state = 372 self.match(HogQLParser.RPAREN) pass elif token in [129]: self.enterOuterAlt(localctx, 3) - self.state = 376 - self.placeholder() + self.state = 374 + localctx.placeholder = self.block() pass else: raise NoViableAltException(self) @@ -2767,81 +2766,81 @@ def selectStmt(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 380 + self.state = 378 self._errHandler.sync(self) _la = self._input.LA(1) if _la==103: - self.state = 379 + self.state = 377 localctx.with_ = self.withClause() - self.state = 382 + self.state = 380 self.match(HogQLParser.SELECT) - self.state = 384 + self.state = 382 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,31,self._ctx) if la_ == 1: - self.state = 383 + self.state = 381 self.match(HogQLParser.DISTINCT) - self.state = 387 + self.state = 385 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,32,self._ctx) if la_ == 1: - self.state = 386 + self.state = 384 self.topClause() - self.state = 389 + self.state = 387 localctx.columns = self.columnExprList() - self.state = 391 + self.state = 389 self._errHandler.sync(self) _la = self._input.LA(1) if _la==34: - self.state = 390 + self.state = 388 localctx.from_ = self.fromClause() - self.state = 394 + self.state = 392 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & 4538783999459360) != 0): - self.state = 393 + self.state = 391 self.arrayJoinClause() - self.state = 397 + self.state = 395 self._errHandler.sync(self) _la = self._input.LA(1) if _la==70: - self.state = 396 + self.state = 394 self.prewhereClause() - self.state = 400 + self.state = 398 self._errHandler.sync(self) _la = self._input.LA(1) if _la==100: - self.state = 399 + self.state = 397 localctx.where = self.whereClause() - self.state = 403 + self.state = 401 self._errHandler.sync(self) _la = self._input.LA(1) if _la==37: - self.state = 402 + self.state = 400 self.groupByClause() - self.state = 407 + self.state = 405 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,38,self._ctx) if la_ == 1: - self.state = 405 + self.state = 403 self.match(HogQLParser.WITH) - self.state = 406 + self.state = 404 _la = self._input.LA(1) if not(_la==18 or _la==75): self._errHandler.recoverInline(self) @@ -2850,60 +2849,60 @@ def selectStmt(self): self.consume() - self.state = 411 + self.state = 409 self._errHandler.sync(self) _la = self._input.LA(1) if _la==103: - self.state = 409 + self.state = 407 self.match(HogQLParser.WITH) - self.state = 410 + self.state = 408 self.match(HogQLParser.TOTALS) - self.state = 414 + self.state = 412 self._errHandler.sync(self) _la = self._input.LA(1) if _la==38: - self.state = 413 + self.state = 411 self.havingClause() - self.state = 417 + self.state = 415 self._errHandler.sync(self) _la = self._input.LA(1) if _la==102: - self.state = 416 + self.state = 414 self.windowClause() - self.state = 420 + self.state = 418 self._errHandler.sync(self) _la = self._input.LA(1) if _la==65: - self.state = 419 + self.state = 417 self.orderByClause() - self.state = 424 + self.state = 422 self._errHandler.sync(self) token = self._input.LA(1) if token in [55]: - self.state = 422 + self.state = 420 self.limitAndOffsetClause() pass elif token in [62]: - self.state = 423 + self.state = 421 self.offsetOnlyClause() pass elif token in [-1, 82, 96, 150]: pass else: pass - self.state = 427 + self.state = 425 self._errHandler.sync(self) _la = self._input.LA(1) if _la==82: - self.state = 426 + self.state = 424 self.settingsClause() @@ -2948,9 +2947,9 @@ def withClause(self): self.enterRule(localctx, 50, self.RULE_withClause) try: self.enterOuterAlt(localctx, 1) - self.state = 429 + self.state = 427 self.match(HogQLParser.WITH) - self.state = 430 + self.state = 428 self.withExprList() except RecognitionException as re: localctx.exception = re @@ -2998,17 +2997,17 @@ def topClause(self): self.enterRule(localctx, 52, self.RULE_topClause) try: self.enterOuterAlt(localctx, 1) - self.state = 432 + self.state = 430 self.match(HogQLParser.TOP) - self.state = 433 + self.state = 431 self.match(HogQLParser.DECIMAL_LITERAL) - self.state = 436 + self.state = 434 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,45,self._ctx) if la_ == 1: - self.state = 434 + self.state = 432 self.match(HogQLParser.WITH) - self.state = 435 + self.state = 433 self.match(HogQLParser.TIES) @@ -3053,9 +3052,9 @@ def fromClause(self): self.enterRule(localctx, 54, self.RULE_fromClause) try: self.enterOuterAlt(localctx, 1) - self.state = 438 + self.state = 436 self.match(HogQLParser.FROM) - self.state = 439 + self.state = 437 self.joinExpr(0) except RecognitionException as re: localctx.exception = re @@ -3108,11 +3107,11 @@ def arrayJoinClause(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 442 + self.state = 440 self._errHandler.sync(self) _la = self._input.LA(1) if _la==45 or _la==52: - self.state = 441 + self.state = 439 _la = self._input.LA(1) if not(_la==45 or _la==52): self._errHandler.recoverInline(self) @@ -3121,11 +3120,11 @@ def arrayJoinClause(self): self.consume() - self.state = 444 + self.state = 442 self.match(HogQLParser.ARRAY) - self.state = 445 + self.state = 443 self.match(HogQLParser.JOIN) - self.state = 446 + self.state = 444 self.columnExprList() except RecognitionException as re: localctx.exception = re @@ -3203,35 +3202,35 @@ def windowClause(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 448 + self.state = 446 self.match(HogQLParser.WINDOW) - self.state = 449 + self.state = 447 self.identifier() - self.state = 450 + self.state = 448 self.match(HogQLParser.AS) - self.state = 451 + self.state = 449 self.match(HogQLParser.LPAREN) - self.state = 452 + self.state = 450 self.windowExpr() - self.state = 453 + self.state = 451 self.match(HogQLParser.RPAREN) - self.state = 463 + self.state = 461 self._errHandler.sync(self) _la = self._input.LA(1) while _la==117: - self.state = 454 + self.state = 452 self.match(HogQLParser.COMMA) - self.state = 455 + self.state = 453 self.identifier() - self.state = 456 + self.state = 454 self.match(HogQLParser.AS) - self.state = 457 + self.state = 455 self.match(HogQLParser.LPAREN) - self.state = 458 + self.state = 456 self.windowExpr() - self.state = 459 + self.state = 457 self.match(HogQLParser.RPAREN) - self.state = 465 + self.state = 463 self._errHandler.sync(self) _la = self._input.LA(1) @@ -3276,9 +3275,9 @@ def prewhereClause(self): self.enterRule(localctx, 60, self.RULE_prewhereClause) try: self.enterOuterAlt(localctx, 1) - self.state = 466 + self.state = 464 self.match(HogQLParser.PREWHERE) - self.state = 467 + self.state = 465 self.columnExpr(0) except RecognitionException as re: localctx.exception = re @@ -3321,9 +3320,9 @@ def whereClause(self): self.enterRule(localctx, 62, self.RULE_whereClause) try: self.enterOuterAlt(localctx, 1) - self.state = 469 + self.state = 467 self.match(HogQLParser.WHERE) - self.state = 470 + self.state = 468 self.columnExpr(0) except RecognitionException as re: localctx.exception = re @@ -3382,31 +3381,31 @@ def groupByClause(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 472 + self.state = 470 self.match(HogQLParser.GROUP) - self.state = 473 + self.state = 471 self.match(HogQLParser.BY) - self.state = 480 + self.state = 478 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,48,self._ctx) if la_ == 1: - self.state = 474 + self.state = 472 _la = self._input.LA(1) if not(_la==18 or _la==75): self._errHandler.recoverInline(self) else: self._errHandler.reportMatch(self) self.consume() - self.state = 475 + self.state = 473 self.match(HogQLParser.LPAREN) - self.state = 476 + self.state = 474 self.columnExprList() - self.state = 477 + self.state = 475 self.match(HogQLParser.RPAREN) pass elif la_ == 2: - self.state = 479 + self.state = 477 self.columnExprList() pass @@ -3452,9 +3451,9 @@ def havingClause(self): self.enterRule(localctx, 66, self.RULE_havingClause) try: self.enterOuterAlt(localctx, 1) - self.state = 482 + self.state = 480 self.match(HogQLParser.HAVING) - self.state = 483 + self.state = 481 self.columnExpr(0) except RecognitionException as re: localctx.exception = re @@ -3500,11 +3499,11 @@ def orderByClause(self): self.enterRule(localctx, 68, self.RULE_orderByClause) try: self.enterOuterAlt(localctx, 1) - self.state = 485 + self.state = 483 self.match(HogQLParser.ORDER) - self.state = 486 + self.state = 484 self.match(HogQLParser.BY) - self.state = 487 + self.state = 485 self.orderExprList() except RecognitionException as re: localctx.exception = re @@ -3550,11 +3549,11 @@ def projectionOrderByClause(self): self.enterRule(localctx, 70, self.RULE_projectionOrderByClause) try: self.enterOuterAlt(localctx, 1) - self.state = 489 + self.state = 487 self.match(HogQLParser.ORDER) - self.state = 490 + self.state = 488 self.match(HogQLParser.BY) - self.state = 491 + self.state = 489 self.columnExprList() except RecognitionException as re: localctx.exception = re @@ -3619,38 +3618,38 @@ def limitAndOffsetClause(self): self.enterRule(localctx, 72, self.RULE_limitAndOffsetClause) self._la = 0 # Token type try: - self.state = 522 + self.state = 520 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,53,self._ctx) if la_ == 1: self.enterOuterAlt(localctx, 1) - self.state = 493 + self.state = 491 self.match(HogQLParser.LIMIT) - self.state = 494 + self.state = 492 self.columnExpr(0) - self.state = 497 + self.state = 495 self._errHandler.sync(self) _la = self._input.LA(1) if _la==117: - self.state = 495 + self.state = 493 self.match(HogQLParser.COMMA) - self.state = 496 + self.state = 494 self.columnExpr(0) - self.state = 503 + self.state = 501 self._errHandler.sync(self) token = self._input.LA(1) if token in [103]: - self.state = 499 + self.state = 497 self.match(HogQLParser.WITH) - self.state = 500 + self.state = 498 self.match(HogQLParser.TIES) pass elif token in [11]: - self.state = 501 + self.state = 499 self.match(HogQLParser.BY) - self.state = 502 + self.state = 500 self.columnExprList() pass elif token in [-1, 82, 96, 150]: @@ -3661,43 +3660,43 @@ def limitAndOffsetClause(self): elif la_ == 2: self.enterOuterAlt(localctx, 2) - self.state = 505 + self.state = 503 self.match(HogQLParser.LIMIT) - self.state = 506 + self.state = 504 self.columnExpr(0) - self.state = 509 + self.state = 507 self._errHandler.sync(self) _la = self._input.LA(1) if _la==103: - self.state = 507 + self.state = 505 self.match(HogQLParser.WITH) - self.state = 508 + self.state = 506 self.match(HogQLParser.TIES) - self.state = 511 + self.state = 509 self.match(HogQLParser.OFFSET) - self.state = 512 + self.state = 510 self.columnExpr(0) pass elif la_ == 3: self.enterOuterAlt(localctx, 3) - self.state = 514 + self.state = 512 self.match(HogQLParser.LIMIT) - self.state = 515 + self.state = 513 self.columnExpr(0) - self.state = 516 + self.state = 514 self.match(HogQLParser.OFFSET) - self.state = 517 + self.state = 515 self.columnExpr(0) - self.state = 520 + self.state = 518 self._errHandler.sync(self) _la = self._input.LA(1) if _la==11: - self.state = 518 + self.state = 516 self.match(HogQLParser.BY) - self.state = 519 + self.state = 517 self.columnExprList() @@ -3745,9 +3744,9 @@ def offsetOnlyClause(self): self.enterRule(localctx, 74, self.RULE_offsetOnlyClause) try: self.enterOuterAlt(localctx, 1) - self.state = 524 + self.state = 522 self.match(HogQLParser.OFFSET) - self.state = 525 + self.state = 523 self.columnExpr(0) except RecognitionException as re: localctx.exception = re @@ -3790,9 +3789,9 @@ def settingsClause(self): self.enterRule(localctx, 76, self.RULE_settingsClause) try: self.enterOuterAlt(localctx, 1) - self.state = 527 + self.state = 525 self.match(HogQLParser.SETTINGS) - self.state = 528 + self.state = 526 self.settingExprList() except RecognitionException as re: localctx.exception = re @@ -3924,7 +3923,7 @@ def joinExpr(self, _p:int=0): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 542 + self.state = 540 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,56,self._ctx) if la_ == 1: @@ -3932,21 +3931,21 @@ def joinExpr(self, _p:int=0): self._ctx = localctx _prevctx = localctx - self.state = 531 + self.state = 529 self.tableExpr(0) - self.state = 533 + self.state = 531 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,54,self._ctx) if la_ == 1: - self.state = 532 + self.state = 530 self.match(HogQLParser.FINAL) - self.state = 536 + self.state = 534 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,55,self._ctx) if la_ == 1: - self.state = 535 + self.state = 533 self.sampleClause() @@ -3956,17 +3955,17 @@ def joinExpr(self, _p:int=0): localctx = HogQLParser.JoinExprParensContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 538 + self.state = 536 self.match(HogQLParser.LPAREN) - self.state = 539 + self.state = 537 self.joinExpr(0) - self.state = 540 + self.state = 538 self.match(HogQLParser.RPAREN) pass self._ctx.stop = self._input.LT(-1) - self.state = 558 + self.state = 556 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,59,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: @@ -3974,47 +3973,47 @@ def joinExpr(self, _p:int=0): if self._parseListeners is not None: self.triggerExitRuleEvent() _prevctx = localctx - self.state = 556 + self.state = 554 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,58,self._ctx) if la_ == 1: localctx = HogQLParser.JoinExprCrossOpContext(self, HogQLParser.JoinExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_joinExpr) - self.state = 544 + self.state = 542 if not self.precpred(self._ctx, 3): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 3)") - self.state = 545 + self.state = 543 self.joinOpCross() - self.state = 546 + self.state = 544 self.joinExpr(4) pass elif la_ == 2: localctx = HogQLParser.JoinExprOpContext(self, HogQLParser.JoinExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_joinExpr) - self.state = 548 + self.state = 546 if not self.precpred(self._ctx, 4): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 4)") - self.state = 550 + self.state = 548 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & 4538818359197978) != 0) or _la==74 or _la==81: - self.state = 549 + self.state = 547 self.joinOp() - self.state = 552 + self.state = 550 self.match(HogQLParser.JOIN) - self.state = 553 + self.state = 551 self.joinExpr(0) - self.state = 554 + self.state = 552 self.joinConstraintClause() pass - self.state = 560 + self.state = 558 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,59,self._ctx) @@ -4125,21 +4124,21 @@ def joinOp(self): self.enterRule(localctx, 80, self.RULE_joinOp) self._la = 0 # Token type try: - self.state = 604 + self.state = 602 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,73,self._ctx) if la_ == 1: localctx = HogQLParser.JoinOpInnerContext(self, localctx) self.enterOuterAlt(localctx, 1) - self.state = 570 + self.state = 568 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,62,self._ctx) if la_ == 1: - self.state = 562 + self.state = 560 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & 274) != 0): - self.state = 561 + self.state = 559 _la = self._input.LA(1) if not((((_la) & ~0x3f) == 0 and ((1 << _la) & 274) != 0)): self._errHandler.recoverInline(self) @@ -4148,18 +4147,18 @@ def joinOp(self): self.consume() - self.state = 564 + self.state = 562 self.match(HogQLParser.INNER) pass elif la_ == 2: - self.state = 565 + self.state = 563 self.match(HogQLParser.INNER) - self.state = 567 + self.state = 565 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & 274) != 0): - self.state = 566 + self.state = 564 _la = self._input.LA(1) if not((((_la) & ~0x3f) == 0 and ((1 << _la) & 274) != 0)): self._errHandler.recoverInline(self) @@ -4171,7 +4170,7 @@ def joinOp(self): pass elif la_ == 3: - self.state = 569 + self.state = 567 _la = self._input.LA(1) if not((((_la) & ~0x3f) == 0 and ((1 << _la) & 274) != 0)): self._errHandler.recoverInline(self) @@ -4186,15 +4185,15 @@ def joinOp(self): elif la_ == 2: localctx = HogQLParser.JoinOpLeftRightContext(self, localctx) self.enterOuterAlt(localctx, 2) - self.state = 586 + self.state = 584 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,67,self._ctx) if la_ == 1: - self.state = 573 + self.state = 571 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & 282) != 0) or _la==81: - self.state = 572 + self.state = 570 _la = self._input.LA(1) if not((((_la) & ~0x3f) == 0 and ((1 << _la) & 282) != 0) or _la==81): self._errHandler.recoverInline(self) @@ -4203,44 +4202,44 @@ def joinOp(self): self.consume() - self.state = 575 + self.state = 573 _la = self._input.LA(1) if not(_la==52 or _la==74): self._errHandler.recoverInline(self) else: self._errHandler.reportMatch(self) self.consume() - self.state = 577 + self.state = 575 self._errHandler.sync(self) _la = self._input.LA(1) if _la==66: - self.state = 576 + self.state = 574 self.match(HogQLParser.OUTER) pass elif la_ == 2: - self.state = 579 + self.state = 577 _la = self._input.LA(1) if not(_la==52 or _la==74): self._errHandler.recoverInline(self) else: self._errHandler.reportMatch(self) self.consume() - self.state = 581 + self.state = 579 self._errHandler.sync(self) _la = self._input.LA(1) if _la==66: - self.state = 580 + self.state = 578 self.match(HogQLParser.OUTER) - self.state = 584 + self.state = 582 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & 282) != 0) or _la==81: - self.state = 583 + self.state = 581 _la = self._input.LA(1) if not((((_la) & ~0x3f) == 0 and ((1 << _la) & 282) != 0) or _la==81): self._errHandler.recoverInline(self) @@ -4257,15 +4256,15 @@ def joinOp(self): elif la_ == 3: localctx = HogQLParser.JoinOpFullContext(self, localctx) self.enterOuterAlt(localctx, 3) - self.state = 602 + self.state = 600 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,72,self._ctx) if la_ == 1: - self.state = 589 + self.state = 587 self._errHandler.sync(self) _la = self._input.LA(1) if _la==1 or _la==4: - self.state = 588 + self.state = 586 _la = self._input.LA(1) if not(_la==1 or _la==4): self._errHandler.recoverInline(self) @@ -4274,34 +4273,34 @@ def joinOp(self): self.consume() - self.state = 591 + self.state = 589 self.match(HogQLParser.FULL) - self.state = 593 + self.state = 591 self._errHandler.sync(self) _la = self._input.LA(1) if _la==66: - self.state = 592 + self.state = 590 self.match(HogQLParser.OUTER) pass elif la_ == 2: - self.state = 595 + self.state = 593 self.match(HogQLParser.FULL) - self.state = 597 + self.state = 595 self._errHandler.sync(self) _la = self._input.LA(1) if _la==66: - self.state = 596 + self.state = 594 self.match(HogQLParser.OUTER) - self.state = 600 + self.state = 598 self._errHandler.sync(self) _la = self._input.LA(1) if _la==1 or _la==4: - self.state = 599 + self.state = 597 _la = self._input.LA(1) if not(_la==1 or _la==4): self._errHandler.recoverInline(self) @@ -4358,19 +4357,19 @@ def joinOpCross(self): localctx = HogQLParser.JoinOpCrossContext(self, self._ctx, self.state) self.enterRule(localctx, 82, self.RULE_joinOpCross) try: - self.state = 609 + self.state = 607 self._errHandler.sync(self) token = self._input.LA(1) if token in [17]: self.enterOuterAlt(localctx, 1) - self.state = 606 + self.state = 604 self.match(HogQLParser.CROSS) - self.state = 607 + self.state = 605 self.match(HogQLParser.JOIN) pass elif token in [117]: self.enterOuterAlt(localctx, 2) - self.state = 608 + self.state = 606 self.match(HogQLParser.COMMA) pass else: @@ -4425,34 +4424,34 @@ def joinConstraintClause(self): localctx = HogQLParser.JoinConstraintClauseContext(self, self._ctx, self.state) self.enterRule(localctx, 84, self.RULE_joinConstraintClause) try: - self.state = 620 + self.state = 618 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,75,self._ctx) if la_ == 1: self.enterOuterAlt(localctx, 1) - self.state = 611 + self.state = 609 self.match(HogQLParser.ON) - self.state = 612 + self.state = 610 self.columnExprList() pass elif la_ == 2: self.enterOuterAlt(localctx, 2) - self.state = 613 + self.state = 611 self.match(HogQLParser.USING) - self.state = 614 + self.state = 612 self.match(HogQLParser.LPAREN) - self.state = 615 + self.state = 613 self.columnExprList() - self.state = 616 + self.state = 614 self.match(HogQLParser.RPAREN) pass elif la_ == 3: self.enterOuterAlt(localctx, 3) - self.state = 618 + self.state = 616 self.match(HogQLParser.USING) - self.state = 619 + self.state = 617 self.columnExprList() pass @@ -4504,17 +4503,17 @@ def sampleClause(self): self.enterRule(localctx, 86, self.RULE_sampleClause) try: self.enterOuterAlt(localctx, 1) - self.state = 622 + self.state = 620 self.match(HogQLParser.SAMPLE) - self.state = 623 + self.state = 621 self.ratioExpr() - self.state = 626 + self.state = 624 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,76,self._ctx) if la_ == 1: - self.state = 624 + self.state = 622 self.match(HogQLParser.OFFSET) - self.state = 625 + self.state = 623 self.ratioExpr() @@ -4566,17 +4565,17 @@ def orderExprList(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 628 + self.state = 626 self.orderExpr() - self.state = 633 + self.state = 631 self._errHandler.sync(self) _la = self._input.LA(1) while _la==117: - self.state = 629 + self.state = 627 self.match(HogQLParser.COMMA) - self.state = 630 + self.state = 628 self.orderExpr() - self.state = 635 + self.state = 633 self._errHandler.sync(self) _la = self._input.LA(1) @@ -4643,13 +4642,13 @@ def orderExpr(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 636 + self.state = 634 self.columnExpr(0) - self.state = 638 + self.state = 636 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & 12583040) != 0): - self.state = 637 + self.state = 635 _la = self._input.LA(1) if not((((_la) & ~0x3f) == 0 and ((1 << _la) & 12583040) != 0)): self._errHandler.recoverInline(self) @@ -4658,13 +4657,13 @@ def orderExpr(self): self.consume() - self.state = 642 + self.state = 640 self._errHandler.sync(self) _la = self._input.LA(1) if _la==61: - self.state = 640 + self.state = 638 self.match(HogQLParser.NULLS) - self.state = 641 + self.state = 639 _la = self._input.LA(1) if not(_la==30 or _la==50): self._errHandler.recoverInline(self) @@ -4673,13 +4672,13 @@ def orderExpr(self): self.consume() - self.state = 646 + self.state = 644 self._errHandler.sync(self) _la = self._input.LA(1) if _la==16: - self.state = 644 + self.state = 642 self.match(HogQLParser.COLLATE) - self.state = 645 + self.state = 643 self.match(HogQLParser.STRING_LITERAL) @@ -4698,9 +4697,10 @@ class RatioExprContext(ParserRuleContext): def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): super().__init__(parent, invokingState) self.parser = parser + self.placeholder = None # BlockContext - def placeholder(self): - return self.getTypedRuleContext(HogQLParser.PlaceholderContext,0) + def block(self): + return self.getTypedRuleContext(HogQLParser.BlockContext,0) def numberLiteral(self, i:int=None): @@ -4730,25 +4730,25 @@ def ratioExpr(self): localctx = HogQLParser.RatioExprContext(self, self._ctx, self.state) self.enterRule(localctx, 92, self.RULE_ratioExpr) try: - self.state = 654 + self.state = 652 self._errHandler.sync(self) token = self._input.LA(1) if token in [129]: self.enterOuterAlt(localctx, 1) - self.state = 648 - self.placeholder() + self.state = 646 + localctx.placeholder = self.block() pass elif token in [44, 58, 107, 108, 109, 110, 119, 121, 140]: self.enterOuterAlt(localctx, 2) - self.state = 649 + self.state = 647 self.numberLiteral() - self.state = 652 + self.state = 650 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,81,self._ctx) if la_ == 1: - self.state = 650 + self.state = 648 self.match(HogQLParser.SLASH) - self.state = 651 + self.state = 649 self.numberLiteral() @@ -4804,17 +4804,17 @@ def settingExprList(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 656 + self.state = 654 self.settingExpr() - self.state = 661 + self.state = 659 self._errHandler.sync(self) _la = self._input.LA(1) while _la==117: - self.state = 657 + self.state = 655 self.match(HogQLParser.COMMA) - self.state = 658 + self.state = 656 self.settingExpr() - self.state = 663 + self.state = 661 self._errHandler.sync(self) _la = self._input.LA(1) @@ -4863,11 +4863,11 @@ def settingExpr(self): self.enterRule(localctx, 96, self.RULE_settingExpr) try: self.enterOuterAlt(localctx, 1) - self.state = 664 + self.state = 662 self.identifier() - self.state = 665 + self.state = 663 self.match(HogQLParser.EQ_SINGLE) - self.state = 666 + self.state = 664 self.literal() except RecognitionException as re: localctx.exception = re @@ -4916,27 +4916,27 @@ def windowExpr(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 669 + self.state = 667 self._errHandler.sync(self) _la = self._input.LA(1) if _la==68: - self.state = 668 + self.state = 666 self.winPartitionByClause() - self.state = 672 + self.state = 670 self._errHandler.sync(self) _la = self._input.LA(1) if _la==65: - self.state = 671 + self.state = 669 self.winOrderByClause() - self.state = 675 + self.state = 673 self._errHandler.sync(self) _la = self._input.LA(1) if _la==72 or _la==77: - self.state = 674 + self.state = 672 self.winFrameClause() @@ -4984,11 +4984,11 @@ def winPartitionByClause(self): self.enterRule(localctx, 100, self.RULE_winPartitionByClause) try: self.enterOuterAlt(localctx, 1) - self.state = 677 + self.state = 675 self.match(HogQLParser.PARTITION) - self.state = 678 + self.state = 676 self.match(HogQLParser.BY) - self.state = 679 + self.state = 677 self.columnExprList() except RecognitionException as re: localctx.exception = re @@ -5034,11 +5034,11 @@ def winOrderByClause(self): self.enterRule(localctx, 102, self.RULE_winOrderByClause) try: self.enterOuterAlt(localctx, 1) - self.state = 681 + self.state = 679 self.match(HogQLParser.ORDER) - self.state = 682 + self.state = 680 self.match(HogQLParser.BY) - self.state = 683 + self.state = 681 self.orderExprList() except RecognitionException as re: localctx.exception = re @@ -5085,14 +5085,14 @@ def winFrameClause(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 685 + self.state = 683 _la = self._input.LA(1) if not(_la==72 or _la==77): self._errHandler.recoverInline(self) else: self._errHandler.reportMatch(self) self.consume() - self.state = 686 + self.state = 684 self.winFrameExtend() except RecognitionException as re: localctx.exception = re @@ -5167,25 +5167,25 @@ def winFrameExtend(self): localctx = HogQLParser.WinFrameExtendContext(self, self._ctx, self.state) self.enterRule(localctx, 106, self.RULE_winFrameExtend) try: - self.state = 694 + self.state = 692 self._errHandler.sync(self) token = self._input.LA(1) if token in [19, 44, 58, 95, 107, 108, 109, 110, 119, 121, 140]: localctx = HogQLParser.FrameStartContext(self, localctx) self.enterOuterAlt(localctx, 1) - self.state = 688 + self.state = 686 self.winFrameBound() pass elif token in [9]: localctx = HogQLParser.FrameBetweenContext(self, localctx) self.enterOuterAlt(localctx, 2) - self.state = 689 + self.state = 687 self.match(HogQLParser.BETWEEN) - self.state = 690 + self.state = 688 self.winFrameBound() - self.state = 691 + self.state = 689 self.match(HogQLParser.AND) - self.state = 692 + self.state = 690 self.winFrameBound() pass else: @@ -5244,41 +5244,41 @@ def winFrameBound(self): self.enterRule(localctx, 108, self.RULE_winFrameBound) try: self.enterOuterAlt(localctx, 1) - self.state = 708 + self.state = 706 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,88,self._ctx) if la_ == 1: - self.state = 696 + self.state = 694 self.match(HogQLParser.CURRENT) - self.state = 697 + self.state = 695 self.match(HogQLParser.ROW) pass elif la_ == 2: - self.state = 698 + self.state = 696 self.match(HogQLParser.UNBOUNDED) - self.state = 699 + self.state = 697 self.match(HogQLParser.PRECEDING) pass elif la_ == 3: - self.state = 700 + self.state = 698 self.match(HogQLParser.UNBOUNDED) - self.state = 701 + self.state = 699 self.match(HogQLParser.FOLLOWING) pass elif la_ == 4: - self.state = 702 + self.state = 700 self.numberLiteral() - self.state = 703 + self.state = 701 self.match(HogQLParser.PRECEDING) pass elif la_ == 5: - self.state = 705 + self.state = 703 self.numberLiteral() - self.state = 706 + self.state = 704 self.match(HogQLParser.FOLLOWING) pass @@ -5324,9 +5324,9 @@ def expr(self): self.enterRule(localctx, 110, self.RULE_expr) try: self.enterOuterAlt(localctx, 1) - self.state = 710 + self.state = 708 self.columnExpr(0) - self.state = 711 + self.state = 709 self.match(HogQLParser.EOF) except RecognitionException as re: localctx.exception = re @@ -5501,138 +5501,138 @@ def columnTypeExpr(self): self.enterRule(localctx, 112, self.RULE_columnTypeExpr) self._la = 0 # Token type try: - self.state = 769 + self.state = 767 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,96,self._ctx) if la_ == 1: localctx = HogQLParser.ColumnTypeExprSimpleContext(self, localctx) self.enterOuterAlt(localctx, 1) - self.state = 713 + self.state = 711 self.identifier() pass elif la_ == 2: localctx = HogQLParser.ColumnTypeExprNestedContext(self, localctx) self.enterOuterAlt(localctx, 2) - self.state = 714 + self.state = 712 self.identifier() - self.state = 715 + self.state = 713 self.match(HogQLParser.LPAREN) - self.state = 716 + self.state = 714 self.identifier() - self.state = 717 + self.state = 715 self.columnTypeExpr() - self.state = 724 + self.state = 722 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,89,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 718 + self.state = 716 self.match(HogQLParser.COMMA) - self.state = 719 + self.state = 717 self.identifier() - self.state = 720 + self.state = 718 self.columnTypeExpr() - self.state = 726 + self.state = 724 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,89,self._ctx) - self.state = 728 + self.state = 726 self._errHandler.sync(self) _la = self._input.LA(1) if _la==117: - self.state = 727 + self.state = 725 self.match(HogQLParser.COMMA) - self.state = 730 + self.state = 728 self.match(HogQLParser.RPAREN) pass elif la_ == 3: localctx = HogQLParser.ColumnTypeExprEnumContext(self, localctx) self.enterOuterAlt(localctx, 3) - self.state = 732 + self.state = 730 self.identifier() - self.state = 733 + self.state = 731 self.match(HogQLParser.LPAREN) - self.state = 734 + self.state = 732 self.enumValue() - self.state = 739 + self.state = 737 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,91,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 735 + self.state = 733 self.match(HogQLParser.COMMA) - self.state = 736 + self.state = 734 self.enumValue() - self.state = 741 + self.state = 739 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,91,self._ctx) - self.state = 743 + self.state = 741 self._errHandler.sync(self) _la = self._input.LA(1) if _la==117: - self.state = 742 + self.state = 740 self.match(HogQLParser.COMMA) - self.state = 745 + self.state = 743 self.match(HogQLParser.RPAREN) pass elif la_ == 4: localctx = HogQLParser.ColumnTypeExprComplexContext(self, localctx) self.enterOuterAlt(localctx, 4) - self.state = 747 + self.state = 745 self.identifier() - self.state = 748 + self.state = 746 self.match(HogQLParser.LPAREN) - self.state = 749 + self.state = 747 self.columnTypeExpr() - self.state = 754 + self.state = 752 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,93,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 750 + self.state = 748 self.match(HogQLParser.COMMA) - self.state = 751 + self.state = 749 self.columnTypeExpr() - self.state = 756 + self.state = 754 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,93,self._ctx) - self.state = 758 + self.state = 756 self._errHandler.sync(self) _la = self._input.LA(1) if _la==117: - self.state = 757 + self.state = 755 self.match(HogQLParser.COMMA) - self.state = 760 + self.state = 758 self.match(HogQLParser.RPAREN) pass elif la_ == 5: localctx = HogQLParser.ColumnTypeExprParamContext(self, localctx) self.enterOuterAlt(localctx, 5) - self.state = 762 + self.state = 760 self.identifier() - self.state = 763 + self.state = 761 self.match(HogQLParser.LPAREN) - self.state = 765 + self.state = 763 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & -9007270658588674) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 180986072486903807) != 0) or ((((_la - 129)) & ~0x3f) == 0 and ((1 << (_la - 129)) & 18455) != 0): - self.state = 764 + self.state = 762 self.columnExprList() - self.state = 767 + self.state = 765 self.match(HogQLParser.RPAREN) pass @@ -5684,26 +5684,26 @@ def columnExprList(self): self.enterRule(localctx, 114, self.RULE_columnExprList) try: self.enterOuterAlt(localctx, 1) - self.state = 771 + self.state = 769 self.columnExpr(0) - self.state = 776 + self.state = 774 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,97,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 772 + self.state = 770 self.match(HogQLParser.COMMA) - self.state = 773 + self.state = 771 self.columnExpr(0) - self.state = 778 + self.state = 776 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,97,self._ctx) - self.state = 780 + self.state = 778 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,98,self._ctx) if la_ == 1: - self.state = 779 + self.state = 777 self.match(HogQLParser.COMMA) @@ -6473,6 +6473,27 @@ def accept(self, visitor:ParseTreeVisitor): return visitor.visitChildren(self) + class ColumnExprPlaceholderContext(ColumnExprContext): + + def __init__(self, parser, ctx:ParserRuleContext): # actually a HogQLParser.ColumnExprContext + super().__init__(parser) + self.copyFrom(ctx) + + def LBRACE(self): + return self.getToken(HogQLParser.LBRACE, 0) + def nestedIdentifier(self): + return self.getTypedRuleContext(HogQLParser.NestedIdentifierContext,0) + + def RBRACE(self): + return self.getToken(HogQLParser.RBRACE, 0) + + def accept(self, visitor:ParseTreeVisitor): + if hasattr( visitor, "visitColumnExprPlaceholder" ): + return visitor.visitColumnExprPlaceholder(self) + else: + return visitor.visitChildren(self) + + class ColumnExprNullishContext(ColumnExprContext): def __init__(self, parser, ctx:ParserRuleContext): # actually a HogQLParser.ColumnExprContext @@ -6760,7 +6781,7 @@ def columnExpr(self, _p:int=0): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 933 + self.state = 935 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,118,self._ctx) if la_ == 1: @@ -6768,45 +6789,45 @@ def columnExpr(self, _p:int=0): self._ctx = localctx _prevctx = localctx - self.state = 783 + self.state = 781 self.match(HogQLParser.CASE) - self.state = 785 + self.state = 783 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,99,self._ctx) if la_ == 1: - self.state = 784 + self.state = 782 localctx.caseExpr = self.columnExpr(0) - self.state = 792 + self.state = 790 self._errHandler.sync(self) _la = self._input.LA(1) while True: - self.state = 787 + self.state = 785 self.match(HogQLParser.WHEN) - self.state = 788 + self.state = 786 localctx.whenExpr = self.columnExpr(0) - self.state = 789 + self.state = 787 self.match(HogQLParser.THEN) - self.state = 790 + self.state = 788 localctx.thenExpr = self.columnExpr(0) - self.state = 794 + self.state = 792 self._errHandler.sync(self) _la = self._input.LA(1) if not (_la==99): break - self.state = 798 + self.state = 796 self._errHandler.sync(self) _la = self._input.LA(1) if _la==25: - self.state = 796 + self.state = 794 self.match(HogQLParser.ELSE) - self.state = 797 + self.state = 795 localctx.elseExpr = self.columnExpr(0) - self.state = 800 + self.state = 798 self.match(HogQLParser.END) pass @@ -6814,17 +6835,17 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprCastContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 802 + self.state = 800 self.match(HogQLParser.CAST) - self.state = 803 + self.state = 801 self.match(HogQLParser.LPAREN) - self.state = 804 + self.state = 802 self.columnExpr(0) - self.state = 805 + self.state = 803 self.match(HogQLParser.AS) - self.state = 806 + self.state = 804 self.columnTypeExpr() - self.state = 807 + self.state = 805 self.match(HogQLParser.RPAREN) pass @@ -6832,9 +6853,9 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprDateContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 809 + self.state = 807 self.match(HogQLParser.DATE) - self.state = 810 + self.state = 808 self.match(HogQLParser.STRING_LITERAL) pass @@ -6842,11 +6863,11 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprIntervalContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 811 + self.state = 809 self.match(HogQLParser.INTERVAL) - self.state = 812 + self.state = 810 self.columnExpr(0) - self.state = 813 + self.state = 811 self.interval() pass @@ -6854,27 +6875,27 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprSubstringContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 815 + self.state = 813 self.match(HogQLParser.SUBSTRING) - self.state = 816 + self.state = 814 self.match(HogQLParser.LPAREN) - self.state = 817 + self.state = 815 self.columnExpr(0) - self.state = 818 + self.state = 816 self.match(HogQLParser.FROM) - self.state = 819 + self.state = 817 self.columnExpr(0) - self.state = 822 + self.state = 820 self._errHandler.sync(self) _la = self._input.LA(1) if _la==33: - self.state = 820 + self.state = 818 self.match(HogQLParser.FOR) - self.state = 821 + self.state = 819 self.columnExpr(0) - self.state = 824 + self.state = 822 self.match(HogQLParser.RPAREN) pass @@ -6882,9 +6903,9 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprTimestampContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 826 + self.state = 824 self.match(HogQLParser.TIMESTAMP) - self.state = 827 + self.state = 825 self.match(HogQLParser.STRING_LITERAL) pass @@ -6892,24 +6913,24 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprTrimContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 828 + self.state = 826 self.match(HogQLParser.TRIM) - self.state = 829 + self.state = 827 self.match(HogQLParser.LPAREN) - self.state = 830 + self.state = 828 _la = self._input.LA(1) if not(_la==10 or _la==51 or _la==91): self._errHandler.recoverInline(self) else: self._errHandler.reportMatch(self) self.consume() - self.state = 831 + self.state = 829 self.string() - self.state = 832 + self.state = 830 self.match(HogQLParser.FROM) - self.state = 833 + self.state = 831 self.columnExpr(0) - self.state = 834 + self.state = 832 self.match(HogQLParser.RPAREN) pass @@ -6917,54 +6938,54 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprWinFunctionContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 836 + self.state = 834 self.identifier() - self.state = 837 + self.state = 835 self.match(HogQLParser.LPAREN) - self.state = 839 + self.state = 837 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & -9007270658588674) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 180986072486903807) != 0) or ((((_la - 129)) & ~0x3f) == 0 and ((1 << (_la - 129)) & 18455) != 0): - self.state = 838 + self.state = 836 localctx.columnExprs = self.columnExprList() - self.state = 841 + self.state = 839 self.match(HogQLParser.RPAREN) - self.state = 851 + self.state = 849 self._errHandler.sync(self) _la = self._input.LA(1) if _la==131: - self.state = 843 + self.state = 841 self.match(HogQLParser.LPAREN) - self.state = 845 + self.state = 843 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,104,self._ctx) if la_ == 1: - self.state = 844 + self.state = 842 self.match(HogQLParser.DISTINCT) - self.state = 848 + self.state = 846 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & -9007270658588674) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 180986072486903807) != 0) or ((((_la - 129)) & ~0x3f) == 0 and ((1 << (_la - 129)) & 18455) != 0): - self.state = 847 + self.state = 845 localctx.columnArgList = self.columnExprList() - self.state = 850 + self.state = 848 self.match(HogQLParser.RPAREN) - self.state = 853 + self.state = 851 self.match(HogQLParser.OVER) - self.state = 854 + self.state = 852 self.match(HogQLParser.LPAREN) - self.state = 855 + self.state = 853 self.windowExpr() - self.state = 856 + self.state = 854 self.match(HogQLParser.RPAREN) pass @@ -6972,50 +6993,50 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprWinFunctionTargetContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 858 + self.state = 856 self.identifier() - self.state = 859 + self.state = 857 self.match(HogQLParser.LPAREN) - self.state = 861 + self.state = 859 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & -9007270658588674) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 180986072486903807) != 0) or ((((_la - 129)) & ~0x3f) == 0 and ((1 << (_la - 129)) & 18455) != 0): - self.state = 860 + self.state = 858 localctx.columnExprs = self.columnExprList() - self.state = 863 + self.state = 861 self.match(HogQLParser.RPAREN) - self.state = 873 + self.state = 871 self._errHandler.sync(self) _la = self._input.LA(1) if _la==131: - self.state = 865 + self.state = 863 self.match(HogQLParser.LPAREN) - self.state = 867 + self.state = 865 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,108,self._ctx) if la_ == 1: - self.state = 866 + self.state = 864 self.match(HogQLParser.DISTINCT) - self.state = 870 + self.state = 868 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & -9007270658588674) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 180986072486903807) != 0) or ((((_la - 129)) & ~0x3f) == 0 and ((1 << (_la - 129)) & 18455) != 0): - self.state = 869 + self.state = 867 localctx.columnArgList = self.columnExprList() - self.state = 872 + self.state = 870 self.match(HogQLParser.RPAREN) - self.state = 875 + self.state = 873 self.match(HogQLParser.OVER) - self.state = 876 + self.state = 874 self.identifier() pass @@ -7023,45 +7044,45 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprFunctionContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 878 + self.state = 876 self.identifier() - self.state = 884 + self.state = 882 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,112,self._ctx) if la_ == 1: - self.state = 879 + self.state = 877 self.match(HogQLParser.LPAREN) - self.state = 881 + self.state = 879 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & -9007270658588674) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 180986072486903807) != 0) or ((((_la - 129)) & ~0x3f) == 0 and ((1 << (_la - 129)) & 18455) != 0): - self.state = 880 + self.state = 878 localctx.columnExprs = self.columnExprList() - self.state = 883 + self.state = 881 self.match(HogQLParser.RPAREN) - self.state = 886 + self.state = 884 self.match(HogQLParser.LPAREN) - self.state = 888 + self.state = 886 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,113,self._ctx) if la_ == 1: - self.state = 887 + self.state = 885 self.match(HogQLParser.DISTINCT) - self.state = 891 + self.state = 889 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & -9007270658588674) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 180986072486903807) != 0) or ((((_la - 129)) & ~0x3f) == 0 and ((1 << (_la - 129)) & 18455) != 0): - self.state = 890 + self.state = 888 localctx.columnArgList = self.columnExprList() - self.state = 893 + self.state = 891 self.match(HogQLParser.RPAREN) pass @@ -7069,7 +7090,7 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprTagElementContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 895 + self.state = 893 self.hogqlxTagElement() pass @@ -7077,7 +7098,7 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprTemplateStringContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 896 + self.state = 894 self.templateString() pass @@ -7085,7 +7106,7 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprLiteralContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 897 + self.state = 895 self.literal() pass @@ -7093,37 +7114,37 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprNegateContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 898 + self.state = 896 self.match(HogQLParser.DASH) - self.state = 899 - self.columnExpr(21) + self.state = 897 + self.columnExpr(22) pass elif la_ == 15: localctx = HogQLParser.ColumnExprNotContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 900 + self.state = 898 self.match(HogQLParser.NOT) - self.state = 901 - self.columnExpr(15) + self.state = 899 + self.columnExpr(16) pass elif la_ == 16: localctx = HogQLParser.ColumnExprAsteriskContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 905 + self.state = 903 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & -1450176743603191810) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 6458554974207) != 0): - self.state = 902 + self.state = 900 self.tableIdentifier() - self.state = 903 + self.state = 901 self.match(HogQLParser.DOT) - self.state = 907 + self.state = 905 self.match(HogQLParser.ASTERISK) pass @@ -7131,11 +7152,11 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprSubqueryContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 908 + self.state = 906 self.match(HogQLParser.LPAREN) - self.state = 909 + self.state = 907 self.selectUnionStmt() - self.state = 910 + self.state = 908 self.match(HogQLParser.RPAREN) pass @@ -7143,11 +7164,11 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprParensContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 912 + self.state = 910 self.match(HogQLParser.LPAREN) - self.state = 913 + self.state = 911 self.columnExpr(0) - self.state = 914 + self.state = 912 self.match(HogQLParser.RPAREN) pass @@ -7155,11 +7176,11 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprTupleContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 916 + self.state = 914 self.match(HogQLParser.LPAREN) - self.state = 917 + self.state = 915 self.columnExprList() - self.state = 918 + self.state = 916 self.match(HogQLParser.RPAREN) pass @@ -7167,17 +7188,17 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprArrayContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 920 + self.state = 918 self.match(HogQLParser.LBRACKET) - self.state = 922 + self.state = 920 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & -9007270658588674) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 180986072486903807) != 0) or ((((_la - 129)) & ~0x3f) == 0 and ((1 << (_la - 129)) & 18455) != 0): - self.state = 921 + self.state = 919 self.columnExprList() - self.state = 924 + self.state = 922 self.match(HogQLParser.RBRACKET) pass @@ -7185,17 +7206,17 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprDictContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 925 + self.state = 923 self.match(HogQLParser.LBRACE) - self.state = 927 + self.state = 925 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & -9007270658588674) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 180986072486903807) != 0) or ((((_la - 129)) & ~0x3f) == 0 and ((1 << (_la - 129)) & 18455) != 0): - self.state = 926 + self.state = 924 self.kvPairList() - self.state = 929 + self.state = 927 self.match(HogQLParser.RBRACE) pass @@ -7203,29 +7224,41 @@ def columnExpr(self, _p:int=0): localctx = HogQLParser.ColumnExprLambdaContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 930 + self.state = 928 self.columnLambdaExpr() pass elif la_ == 23: - localctx = HogQLParser.ColumnExprIdentifierContext(self, localctx) + localctx = HogQLParser.ColumnExprPlaceholderContext(self, localctx) self._ctx = localctx _prevctx = localctx + self.state = 929 + self.match(HogQLParser.LBRACE) + self.state = 930 + self.nestedIdentifier() self.state = 931 - self.columnIdentifier() + self.match(HogQLParser.RBRACE) pass elif la_ == 24: localctx = HogQLParser.ColumnExprBlockContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 932 + self.state = 933 self.block() pass + elif la_ == 25: + localctx = HogQLParser.ColumnExprIdentifierContext(self, localctx) + self._ctx = localctx + _prevctx = localctx + self.state = 934 + self.columnIdentifier() + pass + self._ctx.stop = self._input.LT(-1) - self.state = 1045 + self.state = 1047 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,130,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: @@ -7233,146 +7266,146 @@ def columnExpr(self, _p:int=0): if self._parseListeners is not None: self.triggerExitRuleEvent() _prevctx = localctx - self.state = 1043 + self.state = 1045 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,129,self._ctx) if la_ == 1: localctx = HogQLParser.ColumnExprPrecedence1Context(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) localctx.left = _prevctx self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 935 - if not self.precpred(self._ctx, 20): + self.state = 937 + if not self.precpred(self._ctx, 21): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 20)") - self.state = 939 + raise FailedPredicateException(self, "self.precpred(self._ctx, 21)") + self.state = 941 self._errHandler.sync(self) token = self._input.LA(1) if token in [113]: - self.state = 936 + self.state = 938 localctx.operator = self.match(HogQLParser.ASTERISK) pass elif token in [152]: - self.state = 937 + self.state = 939 localctx.operator = self.match(HogQLParser.SLASH) pass elif token in [139]: - self.state = 938 + self.state = 940 localctx.operator = self.match(HogQLParser.PERCENT) pass else: raise NoViableAltException(self) - self.state = 941 - localctx.right = self.columnExpr(21) + self.state = 943 + localctx.right = self.columnExpr(22) pass elif la_ == 2: localctx = HogQLParser.ColumnExprPrecedence2Context(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) localctx.left = _prevctx self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 942 - if not self.precpred(self._ctx, 19): + self.state = 944 + if not self.precpred(self._ctx, 20): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 19)") - self.state = 946 - self._errHandler.sync(self) + raise FailedPredicateException(self, "self.precpred(self._ctx, 20)") + self.state = 948 + self._errHandler.sync(self) token = self._input.LA(1) if token in [140]: - self.state = 943 + self.state = 945 localctx.operator = self.match(HogQLParser.PLUS) pass elif token in [119]: - self.state = 944 + self.state = 946 localctx.operator = self.match(HogQLParser.DASH) pass elif token in [118]: - self.state = 945 + self.state = 947 localctx.operator = self.match(HogQLParser.CONCAT) pass else: raise NoViableAltException(self) - self.state = 948 - localctx.right = self.columnExpr(20) + self.state = 950 + localctx.right = self.columnExpr(21) pass elif la_ == 3: localctx = HogQLParser.ColumnExprPrecedence3Context(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) localctx.left = _prevctx self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 949 - if not self.precpred(self._ctx, 18): + self.state = 951 + if not self.precpred(self._ctx, 19): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 18)") - self.state = 974 + raise FailedPredicateException(self, "self.precpred(self._ctx, 19)") + self.state = 976 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,124,self._ctx) if la_ == 1: - self.state = 950 + self.state = 952 localctx.operator = self.match(HogQLParser.EQ_DOUBLE) pass elif la_ == 2: - self.state = 951 + self.state = 953 localctx.operator = self.match(HogQLParser.EQ_SINGLE) pass elif la_ == 3: - self.state = 952 + self.state = 954 localctx.operator = self.match(HogQLParser.NOT_EQ) pass elif la_ == 4: - self.state = 953 + self.state = 955 localctx.operator = self.match(HogQLParser.LT_EQ) pass elif la_ == 5: - self.state = 954 + self.state = 956 localctx.operator = self.match(HogQLParser.LT) pass elif la_ == 6: - self.state = 955 + self.state = 957 localctx.operator = self.match(HogQLParser.GT_EQ) pass elif la_ == 7: - self.state = 956 + self.state = 958 localctx.operator = self.match(HogQLParser.GT) pass elif la_ == 8: - self.state = 958 + self.state = 960 self._errHandler.sync(self) _la = self._input.LA(1) if _la==59: - self.state = 957 + self.state = 959 localctx.operator = self.match(HogQLParser.NOT) - self.state = 960 - self.match(HogQLParser.IN) self.state = 962 + self.match(HogQLParser.IN) + self.state = 964 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,122,self._ctx) if la_ == 1: - self.state = 961 + self.state = 963 self.match(HogQLParser.COHORT) pass elif la_ == 9: - self.state = 965 + self.state = 967 self._errHandler.sync(self) _la = self._input.LA(1) if _la==59: - self.state = 964 + self.state = 966 localctx.operator = self.match(HogQLParser.NOT) - self.state = 967 + self.state = 969 _la = self._input.LA(1) if not(_la==42 or _la==54): self._errHandler.recoverInline(self) @@ -7382,268 +7415,268 @@ def columnExpr(self, _p:int=0): pass elif la_ == 10: - self.state = 968 + self.state = 970 localctx.operator = self.match(HogQLParser.REGEX_SINGLE) pass elif la_ == 11: - self.state = 969 + self.state = 971 localctx.operator = self.match(HogQLParser.REGEX_DOUBLE) pass elif la_ == 12: - self.state = 970 + self.state = 972 localctx.operator = self.match(HogQLParser.NOT_REGEX) pass elif la_ == 13: - self.state = 971 + self.state = 973 localctx.operator = self.match(HogQLParser.IREGEX_SINGLE) pass elif la_ == 14: - self.state = 972 + self.state = 974 localctx.operator = self.match(HogQLParser.IREGEX_DOUBLE) pass elif la_ == 15: - self.state = 973 + self.state = 975 localctx.operator = self.match(HogQLParser.NOT_IREGEX) pass - self.state = 976 - localctx.right = self.columnExpr(19) + self.state = 978 + localctx.right = self.columnExpr(20) pass elif la_ == 4: localctx = HogQLParser.ColumnExprNullishContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 977 - if not self.precpred(self._ctx, 16): + self.state = 979 + if not self.precpred(self._ctx, 17): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 16)") - self.state = 978 + raise FailedPredicateException(self, "self.precpred(self._ctx, 17)") + self.state = 980 self.match(HogQLParser.NULLISH) - self.state = 979 - self.columnExpr(17) + self.state = 981 + self.columnExpr(18) pass elif la_ == 5: localctx = HogQLParser.ColumnExprAndContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 980 - if not self.precpred(self._ctx, 14): + self.state = 982 + if not self.precpred(self._ctx, 15): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 14)") - self.state = 981 + raise FailedPredicateException(self, "self.precpred(self._ctx, 15)") + self.state = 983 self.match(HogQLParser.AND) - self.state = 982 - self.columnExpr(15) + self.state = 984 + self.columnExpr(16) pass elif la_ == 6: localctx = HogQLParser.ColumnExprOrContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 983 - if not self.precpred(self._ctx, 13): + self.state = 985 + if not self.precpred(self._ctx, 14): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 13)") - self.state = 984 + raise FailedPredicateException(self, "self.precpred(self._ctx, 14)") + self.state = 986 self.match(HogQLParser.OR) - self.state = 985 - self.columnExpr(14) + self.state = 987 + self.columnExpr(15) pass elif la_ == 7: localctx = HogQLParser.ColumnExprBetweenContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 986 - if not self.precpred(self._ctx, 12): - from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 12)") self.state = 988 + if not self.precpred(self._ctx, 13): + from antlr4.error.Errors import FailedPredicateException + raise FailedPredicateException(self, "self.precpred(self._ctx, 13)") + self.state = 990 self._errHandler.sync(self) _la = self._input.LA(1) if _la==59: - self.state = 987 + self.state = 989 self.match(HogQLParser.NOT) - self.state = 990 + self.state = 992 self.match(HogQLParser.BETWEEN) - self.state = 991 + self.state = 993 self.columnExpr(0) - self.state = 992 + self.state = 994 self.match(HogQLParser.AND) - self.state = 993 - self.columnExpr(13) + self.state = 995 + self.columnExpr(14) pass elif la_ == 8: localctx = HogQLParser.ColumnExprTernaryOpContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 995 - if not self.precpred(self._ctx, 11): + self.state = 997 + if not self.precpred(self._ctx, 12): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 11)") - self.state = 996 + raise FailedPredicateException(self, "self.precpred(self._ctx, 12)") + self.state = 998 self.match(HogQLParser.QUERY) - self.state = 997 + self.state = 999 self.columnExpr(0) - self.state = 998 + self.state = 1000 self.match(HogQLParser.COLON) - self.state = 999 - self.columnExpr(11) + self.state = 1001 + self.columnExpr(12) pass elif la_ == 9: localctx = HogQLParser.ColumnExprCallContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1001 - if not self.precpred(self._ctx, 31): + self.state = 1003 + if not self.precpred(self._ctx, 32): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 31)") - self.state = 1002 - self.match(HogQLParser.LPAREN) + raise FailedPredicateException(self, "self.precpred(self._ctx, 32)") self.state = 1004 + self.match(HogQLParser.LPAREN) + self.state = 1006 self._errHandler.sync(self) _la = self._input.LA(1) if (((_la) & ~0x3f) == 0 and ((1 << _la) & -9007270658588674) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 180986072486903807) != 0) or ((((_la - 129)) & ~0x3f) == 0 and ((1 << (_la - 129)) & 18455) != 0): - self.state = 1003 + self.state = 1005 self.columnExprList() - self.state = 1006 + self.state = 1008 self.match(HogQLParser.RPAREN) pass elif la_ == 10: localctx = HogQLParser.ColumnExprArrayAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1007 - if not self.precpred(self._ctx, 27): + self.state = 1009 + if not self.precpred(self._ctx, 28): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 27)") - self.state = 1008 + raise FailedPredicateException(self, "self.precpred(self._ctx, 28)") + self.state = 1010 self.match(HogQLParser.LBRACKET) - self.state = 1009 + self.state = 1011 self.columnExpr(0) - self.state = 1010 + self.state = 1012 self.match(HogQLParser.RBRACKET) pass elif la_ == 11: localctx = HogQLParser.ColumnExprTupleAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1012 - if not self.precpred(self._ctx, 26): + self.state = 1014 + if not self.precpred(self._ctx, 27): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 26)") - self.state = 1013 + raise FailedPredicateException(self, "self.precpred(self._ctx, 27)") + self.state = 1015 self.match(HogQLParser.DOT) - self.state = 1014 + self.state = 1016 self.match(HogQLParser.DECIMAL_LITERAL) pass elif la_ == 12: localctx = HogQLParser.ColumnExprPropertyAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1015 - if not self.precpred(self._ctx, 25): + self.state = 1017 + if not self.precpred(self._ctx, 26): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 25)") - self.state = 1016 + raise FailedPredicateException(self, "self.precpred(self._ctx, 26)") + self.state = 1018 self.match(HogQLParser.DOT) - self.state = 1017 + self.state = 1019 self.identifier() pass elif la_ == 13: localctx = HogQLParser.ColumnExprNullArrayAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1018 - if not self.precpred(self._ctx, 24): + self.state = 1020 + if not self.precpred(self._ctx, 25): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 24)") - self.state = 1019 + raise FailedPredicateException(self, "self.precpred(self._ctx, 25)") + self.state = 1021 self.match(HogQLParser.NULL_PROPERTY) - self.state = 1020 + self.state = 1022 self.match(HogQLParser.LBRACKET) - self.state = 1021 + self.state = 1023 self.columnExpr(0) - self.state = 1022 + self.state = 1024 self.match(HogQLParser.RBRACKET) pass elif la_ == 14: localctx = HogQLParser.ColumnExprNullTupleAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1024 - if not self.precpred(self._ctx, 23): + self.state = 1026 + if not self.precpred(self._ctx, 24): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 23)") - self.state = 1025 + raise FailedPredicateException(self, "self.precpred(self._ctx, 24)") + self.state = 1027 self.match(HogQLParser.NULL_PROPERTY) - self.state = 1026 + self.state = 1028 self.match(HogQLParser.DECIMAL_LITERAL) pass elif la_ == 15: localctx = HogQLParser.ColumnExprNullPropertyAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1027 - if not self.precpred(self._ctx, 22): + self.state = 1029 + if not self.precpred(self._ctx, 23): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 22)") - self.state = 1028 + raise FailedPredicateException(self, "self.precpred(self._ctx, 23)") + self.state = 1030 self.match(HogQLParser.NULL_PROPERTY) - self.state = 1029 + self.state = 1031 self.identifier() pass elif la_ == 16: localctx = HogQLParser.ColumnExprIsNullContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1030 - if not self.precpred(self._ctx, 17): + self.state = 1032 + if not self.precpred(self._ctx, 18): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 17)") - self.state = 1031 - self.match(HogQLParser.IS) + raise FailedPredicateException(self, "self.precpred(self._ctx, 18)") self.state = 1033 + self.match(HogQLParser.IS) + self.state = 1035 self._errHandler.sync(self) _la = self._input.LA(1) if _la==59: - self.state = 1032 + self.state = 1034 self.match(HogQLParser.NOT) - self.state = 1035 + self.state = 1037 self.match(HogQLParser.NULL_SQL) pass elif la_ == 17: localctx = HogQLParser.ColumnExprAliasContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 1036 - if not self.precpred(self._ctx, 10): + self.state = 1038 + if not self.precpred(self._ctx, 11): from antlr4.error.Errors import FailedPredicateException - raise FailedPredicateException(self, "self.precpred(self._ctx, 10)") - self.state = 1041 + raise FailedPredicateException(self, "self.precpred(self._ctx, 11)") + self.state = 1043 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,128,self._ctx) if la_ == 1: - self.state = 1037 + self.state = 1039 self.match(HogQLParser.AS) - self.state = 1038 + self.state = 1040 self.identifier() pass elif la_ == 2: - self.state = 1039 + self.state = 1041 self.match(HogQLParser.AS) - self.state = 1040 + self.state = 1042 self.match(HogQLParser.STRING_LITERAL) pass @@ -7651,7 +7684,7 @@ def columnExpr(self, _p:int=0): pass - self.state = 1047 + self.state = 1049 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,130,self._ctx) @@ -7720,85 +7753,85 @@ def columnLambdaExpr(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1075 + self.state = 1077 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,135,self._ctx) if la_ == 1: - self.state = 1048 + self.state = 1050 self.match(HogQLParser.LPAREN) - self.state = 1049 + self.state = 1051 self.identifier() - self.state = 1054 + self.state = 1056 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,131,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 1050 + self.state = 1052 self.match(HogQLParser.COMMA) - self.state = 1051 + self.state = 1053 self.identifier() - self.state = 1056 + self.state = 1058 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,131,self._ctx) - self.state = 1058 + self.state = 1060 self._errHandler.sync(self) _la = self._input.LA(1) if _la==117: - self.state = 1057 + self.state = 1059 self.match(HogQLParser.COMMA) - self.state = 1060 + self.state = 1062 self.match(HogQLParser.RPAREN) pass elif la_ == 2: - self.state = 1062 + self.state = 1064 self.identifier() - self.state = 1067 + self.state = 1069 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,133,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 1063 + self.state = 1065 self.match(HogQLParser.COMMA) - self.state = 1064 + self.state = 1066 self.identifier() - self.state = 1069 + self.state = 1071 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,133,self._ctx) - self.state = 1071 + self.state = 1073 self._errHandler.sync(self) _la = self._input.LA(1) if _la==117: - self.state = 1070 + self.state = 1072 self.match(HogQLParser.COMMA) pass elif la_ == 3: - self.state = 1073 + self.state = 1075 self.match(HogQLParser.LPAREN) - self.state = 1074 + self.state = 1076 self.match(HogQLParser.RPAREN) pass - self.state = 1077 + self.state = 1079 self.match(HogQLParser.ARROW) - self.state = 1080 + self.state = 1082 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,136,self._ctx) if la_ == 1: - self.state = 1078 + self.state = 1080 self.block() pass elif la_ == 2: - self.state = 1079 + self.state = 1081 self.columnExpr(0) pass @@ -7913,74 +7946,74 @@ def hogqlxTagElement(self): self.enterRule(localctx, 120, self.RULE_hogqlxTagElement) self._la = 0 # Token type try: - self.state = 1114 + self.state = 1116 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,140,self._ctx) if la_ == 1: localctx = HogQLParser.HogqlxTagElementClosedContext(self, localctx) self.enterOuterAlt(localctx, 1) - self.state = 1082 + self.state = 1084 self.match(HogQLParser.LT) - self.state = 1083 + self.state = 1085 self.identifier() - self.state = 1087 + self.state = 1089 self._errHandler.sync(self) _la = self._input.LA(1) while (((_la) & ~0x3f) == 0 and ((1 << _la) & -1450176743603191810) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 6458554974207) != 0): - self.state = 1084 + self.state = 1086 self.hogqlxTagAttribute() - self.state = 1089 + self.state = 1091 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 1090 + self.state = 1092 self.match(HogQLParser.SLASH) - self.state = 1091 + self.state = 1093 self.match(HogQLParser.GT) pass elif la_ == 2: localctx = HogQLParser.HogqlxTagElementNestedContext(self, localctx) self.enterOuterAlt(localctx, 2) - self.state = 1093 + self.state = 1095 self.match(HogQLParser.LT) - self.state = 1094 + self.state = 1096 self.identifier() - self.state = 1098 + self.state = 1100 self._errHandler.sync(self) _la = self._input.LA(1) while (((_la) & ~0x3f) == 0 and ((1 << _la) & -1450176743603191810) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & 6458554974207) != 0): - self.state = 1095 + self.state = 1097 self.hogqlxTagAttribute() - self.state = 1100 + self.state = 1102 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 1101 + self.state = 1103 self.match(HogQLParser.GT) - self.state = 1107 + self.state = 1109 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,139,self._ctx) if la_ == 1: - self.state = 1102 + self.state = 1104 self.hogqlxTagElement() elif la_ == 2: - self.state = 1103 + self.state = 1105 self.match(HogQLParser.LBRACE) - self.state = 1104 + self.state = 1106 self.columnExpr(0) - self.state = 1105 + self.state = 1107 self.match(HogQLParser.RBRACE) - self.state = 1109 + self.state = 1111 self.match(HogQLParser.LT) - self.state = 1110 + self.state = 1112 self.match(HogQLParser.SLASH) - self.state = 1111 + self.state = 1113 self.identifier() - self.state = 1112 + self.state = 1114 self.match(HogQLParser.GT) pass @@ -8039,36 +8072,36 @@ def hogqlxTagAttribute(self): localctx = HogQLParser.HogqlxTagAttributeContext(self, self._ctx, self.state) self.enterRule(localctx, 122, self.RULE_hogqlxTagAttribute) try: - self.state = 1127 + self.state = 1129 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,141,self._ctx) if la_ == 1: self.enterOuterAlt(localctx, 1) - self.state = 1116 + self.state = 1118 self.identifier() - self.state = 1117 + self.state = 1119 self.match(HogQLParser.EQ_SINGLE) - self.state = 1118 + self.state = 1120 self.string() pass elif la_ == 2: self.enterOuterAlt(localctx, 2) - self.state = 1120 + self.state = 1122 self.identifier() - self.state = 1121 + self.state = 1123 self.match(HogQLParser.EQ_SINGLE) - self.state = 1122 + self.state = 1124 self.match(HogQLParser.LBRACE) - self.state = 1123 + self.state = 1125 self.columnExpr(0) - self.state = 1124 + self.state = 1126 self.match(HogQLParser.RBRACE) pass elif la_ == 3: self.enterOuterAlt(localctx, 3) - self.state = 1126 + self.state = 1128 self.identifier() pass @@ -8121,26 +8154,26 @@ def withExprList(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1129 + self.state = 1131 self.withExpr() - self.state = 1134 + self.state = 1136 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,142,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 1130 + self.state = 1132 self.match(HogQLParser.COMMA) - self.state = 1131 + self.state = 1133 self.withExpr() - self.state = 1136 + self.state = 1138 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,142,self._ctx) - self.state = 1138 + self.state = 1140 self._errHandler.sync(self) _la = self._input.LA(1) if _la==117: - self.state = 1137 + self.state = 1139 self.match(HogQLParser.COMMA) @@ -8224,32 +8257,32 @@ def withExpr(self): localctx = HogQLParser.WithExprContext(self, self._ctx, self.state) self.enterRule(localctx, 126, self.RULE_withExpr) try: - self.state = 1150 + self.state = 1152 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,144,self._ctx) if la_ == 1: localctx = HogQLParser.WithExprSubqueryContext(self, localctx) self.enterOuterAlt(localctx, 1) - self.state = 1140 + self.state = 1142 self.identifier() - self.state = 1141 + self.state = 1143 self.match(HogQLParser.AS) - self.state = 1142 + self.state = 1144 self.match(HogQLParser.LPAREN) - self.state = 1143 + self.state = 1145 self.selectUnionStmt() - self.state = 1144 + self.state = 1146 self.match(HogQLParser.RPAREN) pass elif la_ == 2: localctx = HogQLParser.WithExprColumnContext(self, localctx) self.enterOuterAlt(localctx, 2) - self.state = 1146 + self.state = 1148 self.columnExpr(0) - self.state = 1147 + self.state = 1149 self.match(HogQLParser.AS) - self.state = 1148 + self.state = 1150 self.identifier() pass @@ -8270,10 +8303,6 @@ def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): super().__init__(parent, invokingState) self.parser = parser - def placeholder(self): - return self.getTypedRuleContext(HogQLParser.PlaceholderContext,0) - - def nestedIdentifier(self): return self.getTypedRuleContext(HogQLParser.NestedIdentifierContext,0) @@ -8302,32 +8331,19 @@ def columnIdentifier(self): localctx = HogQLParser.ColumnIdentifierContext(self, self._ctx, self.state) self.enterRule(localctx, 128, self.RULE_columnIdentifier) try: - self.state = 1159 + self.enterOuterAlt(localctx, 1) + self.state = 1157 self._errHandler.sync(self) - token = self._input.LA(1) - if token in [129]: - self.enterOuterAlt(localctx, 1) - self.state = 1152 - self.placeholder() - pass - elif token in [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 54, 55, 56, 57, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 86, 87, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99, 100, 102, 103, 104, 106]: - self.enterOuterAlt(localctx, 2) - self.state = 1156 - self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,145,self._ctx) - if la_ == 1: - self.state = 1153 - self.tableIdentifier() - self.state = 1154 - self.match(HogQLParser.DOT) - + la_ = self._interp.adaptivePredict(self._input,145,self._ctx) + if la_ == 1: + self.state = 1154 + self.tableIdentifier() + self.state = 1155 + self.match(HogQLParser.DOT) - self.state = 1158 - self.nestedIdentifier() - pass - else: - raise NoViableAltException(self) + self.state = 1159 + self.nestedIdentifier() except RecognitionException as re: localctx.exception = re self._errHandler.reportError(self, re) @@ -8379,7 +8395,7 @@ def nestedIdentifier(self): self.identifier() self.state = 1166 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,147,self._ctx) + _alt = self._interp.adaptivePredict(self._input,146,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: self.state = 1162 @@ -8388,7 +8404,7 @@ def nestedIdentifier(self): self.identifier() self.state = 1168 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,147,self._ctx) + _alt = self._interp.adaptivePredict(self._input,146,self._ctx) except RecognitionException as re: localctx.exception = re @@ -8453,10 +8469,11 @@ class TableExprPlaceholderContext(TableExprContext): def __init__(self, parser, ctx:ParserRuleContext): # actually a HogQLParser.TableExprContext super().__init__(parser) + self.placeholder = None # BlockContext self.copyFrom(ctx) - def placeholder(self): - return self.getTypedRuleContext(HogQLParser.PlaceholderContext,0) + def block(self): + return self.getTypedRuleContext(HogQLParser.BlockContext,0) def accept(self, visitor:ParseTreeVisitor): @@ -8541,7 +8558,7 @@ def tableExpr(self, _p:int=0): self.enterOuterAlt(localctx, 1) self.state = 1178 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,148,self._ctx) + la_ = self._interp.adaptivePredict(self._input,147,self._ctx) if la_ == 1: localctx = HogQLParser.TableExprIdentifierContext(self, localctx) self._ctx = localctx @@ -8584,14 +8601,14 @@ def tableExpr(self, _p:int=0): self._ctx = localctx _prevctx = localctx self.state = 1177 - self.placeholder() + localctx.placeholder = self.block() pass self._ctx.stop = self._input.LT(-1) self.state = 1188 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,150,self._ctx) + _alt = self._interp.adaptivePredict(self._input,149,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: if self._parseListeners is not None: @@ -8621,7 +8638,7 @@ def tableExpr(self, _p:int=0): self.state = 1190 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,150,self._ctx) + _alt = self._interp.adaptivePredict(self._input,149,self._ctx) except RecognitionException as re: localctx.exception = re @@ -8733,7 +8750,7 @@ def tableIdentifier(self): self.enterOuterAlt(localctx, 1) self.state = 1201 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,152,self._ctx) + la_ = self._interp.adaptivePredict(self._input,151,self._ctx) if la_ == 1: self.state = 1198 self.databaseIdentifier() @@ -8795,7 +8812,7 @@ def tableArgList(self): self.columnExpr(0) self.state = 1210 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,153,self._ctx) + _alt = self._interp.adaptivePredict(self._input,152,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: self.state = 1206 @@ -8804,7 +8821,7 @@ def tableArgList(self): self.columnExpr(0) self.state = 1212 self._errHandler.sync(self) - _alt = self._interp.adaptivePredict(self._input,153,self._ctx) + _alt = self._interp.adaptivePredict(self._input,152,self._ctx) self.state = 1214 self._errHandler.sync(self) @@ -8931,7 +8948,7 @@ def floatingLiteral(self): self.match(HogQLParser.DOT) self.state = 1224 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,155,self._ctx) + la_ = self._interp.adaptivePredict(self._input,154,self._ctx) if la_ == 1: self.state = 1223 _la = self._input.LA(1) @@ -9021,7 +9038,7 @@ def numberLiteral(self): self.state = 1237 self._errHandler.sync(self) - la_ = self._interp.adaptivePredict(self._input,158,self._ctx) + la_ = self._interp.adaptivePredict(self._input,157,self._ctx) if la_ == 1: self.state = 1231 self.floatingLiteral() @@ -9715,46 +9732,6 @@ def enumValue(self): return localctx - class PlaceholderContext(ParserRuleContext): - __slots__ = 'parser' - - def __init__(self, parser, parent:ParserRuleContext=None, invokingState:int=-1): - super().__init__(parent, invokingState) - self.parser = parser - - def block(self): - return self.getTypedRuleContext(HogQLParser.BlockContext,0) - - - def getRuleIndex(self): - return HogQLParser.RULE_placeholder - - def accept(self, visitor:ParseTreeVisitor): - if hasattr( visitor, "visitPlaceholder" ): - return visitor.visitPlaceholder(self) - else: - return visitor.visitChildren(self) - - - - - def placeholder(self): - - localctx = HogQLParser.PlaceholderContext(self, self._ctx, self.state) - self.enterRule(localctx, 160, self.RULE_placeholder) - try: - self.enterOuterAlt(localctx, 1) - self.state = 1263 - self.block() - except RecognitionException as re: - localctx.exception = re - self._errHandler.reportError(self, re) - self._errHandler.recover(self, re) - finally: - self.exitRule() - return localctx - - class StringContext(ParserRuleContext): __slots__ = 'parser' @@ -9784,19 +9761,19 @@ def accept(self, visitor:ParseTreeVisitor): def string(self): localctx = HogQLParser.StringContext(self, self._ctx, self.state) - self.enterRule(localctx, 162, self.RULE_string) + self.enterRule(localctx, 160, self.RULE_string) try: - self.state = 1267 + self.state = 1265 self._errHandler.sync(self) token = self._input.LA(1) if token in [111]: self.enterOuterAlt(localctx, 1) - self.state = 1265 + self.state = 1263 self.match(HogQLParser.STRING_LITERAL) pass elif token in [143]: self.enterOuterAlt(localctx, 2) - self.state = 1266 + self.state = 1264 self.templateString() pass else: @@ -9846,23 +9823,23 @@ def accept(self, visitor:ParseTreeVisitor): def templateString(self): localctx = HogQLParser.TemplateStringContext(self, self._ctx, self.state) - self.enterRule(localctx, 164, self.RULE_templateString) + self.enterRule(localctx, 162, self.RULE_templateString) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1269 + self.state = 1267 self.match(HogQLParser.QUOTE_SINGLE_TEMPLATE) - self.state = 1273 + self.state = 1271 self._errHandler.sync(self) _la = self._input.LA(1) while _la==157 or _la==158: - self.state = 1270 + self.state = 1268 self.stringContents() - self.state = 1275 + self.state = 1273 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 1276 + self.state = 1274 self.match(HogQLParser.QUOTE_SINGLE) except RecognitionException as re: localctx.exception = re @@ -9908,23 +9885,23 @@ def accept(self, visitor:ParseTreeVisitor): def stringContents(self): localctx = HogQLParser.StringContentsContext(self, self._ctx, self.state) - self.enterRule(localctx, 166, self.RULE_stringContents) + self.enterRule(localctx, 164, self.RULE_stringContents) try: - self.state = 1283 + self.state = 1281 self._errHandler.sync(self) token = self._input.LA(1) if token in [158]: self.enterOuterAlt(localctx, 1) - self.state = 1278 + self.state = 1276 self.match(HogQLParser.STRING_ESCAPE_TRIGGER) - self.state = 1279 + self.state = 1277 self.columnExpr(0) - self.state = 1280 + self.state = 1278 self.match(HogQLParser.RBRACE) pass elif token in [157]: self.enterOuterAlt(localctx, 2) - self.state = 1282 + self.state = 1280 self.match(HogQLParser.STRING_TEXT) pass else: @@ -9974,23 +9951,23 @@ def accept(self, visitor:ParseTreeVisitor): def fullTemplateString(self): localctx = HogQLParser.FullTemplateStringContext(self, self._ctx, self.state) - self.enterRule(localctx, 168, self.RULE_fullTemplateString) + self.enterRule(localctx, 166, self.RULE_fullTemplateString) self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 1285 + self.state = 1283 self.match(HogQLParser.QUOTE_SINGLE_TEMPLATE_FULL) - self.state = 1289 + self.state = 1287 self._errHandler.sync(self) _la = self._input.LA(1) while _la==159 or _la==160: - self.state = 1286 + self.state = 1284 self.stringContentsFull() - self.state = 1291 + self.state = 1289 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 1292 + self.state = 1290 self.match(HogQLParser.EOF) except RecognitionException as re: localctx.exception = re @@ -10036,23 +10013,23 @@ def accept(self, visitor:ParseTreeVisitor): def stringContentsFull(self): localctx = HogQLParser.StringContentsFullContext(self, self._ctx, self.state) - self.enterRule(localctx, 170, self.RULE_stringContentsFull) + self.enterRule(localctx, 168, self.RULE_stringContentsFull) try: - self.state = 1299 + self.state = 1297 self._errHandler.sync(self) token = self._input.LA(1) if token in [160]: self.enterOuterAlt(localctx, 1) - self.state = 1294 + self.state = 1292 self.match(HogQLParser.FULL_STRING_ESCAPE_TRIGGER) - self.state = 1295 + self.state = 1293 self.columnExpr(0) - self.state = 1296 + self.state = 1294 self.match(HogQLParser.RBRACE) pass elif token in [159]: self.enterOuterAlt(localctx, 2) - self.state = 1298 + self.state = 1296 self.match(HogQLParser.FULL_STRING_TEXT) pass else: @@ -10091,71 +10068,71 @@ def joinExpr_sempred(self, localctx:JoinExprContext, predIndex:int): def columnExpr_sempred(self, localctx:ColumnExprContext, predIndex:int): if predIndex == 2: - return self.precpred(self._ctx, 20) + return self.precpred(self._ctx, 21) if predIndex == 3: - return self.precpred(self._ctx, 19) + return self.precpred(self._ctx, 20) if predIndex == 4: - return self.precpred(self._ctx, 18) + return self.precpred(self._ctx, 19) if predIndex == 5: - return self.precpred(self._ctx, 16) + return self.precpred(self._ctx, 17) if predIndex == 6: - return self.precpred(self._ctx, 14) + return self.precpred(self._ctx, 15) if predIndex == 7: - return self.precpred(self._ctx, 13) + return self.precpred(self._ctx, 14) if predIndex == 8: - return self.precpred(self._ctx, 12) + return self.precpred(self._ctx, 13) if predIndex == 9: - return self.precpred(self._ctx, 11) + return self.precpred(self._ctx, 12) if predIndex == 10: - return self.precpred(self._ctx, 31) + return self.precpred(self._ctx, 32) if predIndex == 11: - return self.precpred(self._ctx, 27) + return self.precpred(self._ctx, 28) if predIndex == 12: - return self.precpred(self._ctx, 26) + return self.precpred(self._ctx, 27) if predIndex == 13: - return self.precpred(self._ctx, 25) + return self.precpred(self._ctx, 26) if predIndex == 14: - return self.precpred(self._ctx, 24) + return self.precpred(self._ctx, 25) if predIndex == 15: - return self.precpred(self._ctx, 23) + return self.precpred(self._ctx, 24) if predIndex == 16: - return self.precpred(self._ctx, 22) + return self.precpred(self._ctx, 23) if predIndex == 17: - return self.precpred(self._ctx, 17) + return self.precpred(self._ctx, 18) if predIndex == 18: - return self.precpred(self._ctx, 10) + return self.precpred(self._ctx, 11) def tableExpr_sempred(self, localctx:TableExprContext, predIndex:int): diff --git a/posthog/hogql/grammar/HogQLParserVisitor.py b/posthog/hogql/grammar/HogQLParserVisitor.py index d841b7a5e02b1..8c1a3fc77de3c 100644 --- a/posthog/hogql/grammar/HogQLParserVisitor.py +++ b/posthog/hogql/grammar/HogQLParserVisitor.py @@ -499,6 +499,11 @@ def visitColumnExprTimestamp(self, ctx:HogQLParser.ColumnExprTimestampContext): return self.visitChildren(ctx) + # Visit a parse tree produced by HogQLParser#ColumnExprPlaceholder. + def visitColumnExprPlaceholder(self, ctx:HogQLParser.ColumnExprPlaceholderContext): + return self.visitChildren(ctx) + + # Visit a parse tree produced by HogQLParser#ColumnExprNullish. def visitColumnExprNullish(self, ctx:HogQLParser.ColumnExprNullishContext): return self.visitChildren(ctx) @@ -694,11 +699,6 @@ def visitEnumValue(self, ctx:HogQLParser.EnumValueContext): return self.visitChildren(ctx) - # Visit a parse tree produced by HogQLParser#placeholder. - def visitPlaceholder(self, ctx:HogQLParser.PlaceholderContext): - return self.visitChildren(ctx) - - # Visit a parse tree produced by HogQLParser#string. def visitString(self, ctx:HogQLParser.StringContext): return self.visitChildren(ctx) diff --git a/posthog/hogql/parser.py b/posthog/hogql/parser.py index abcea6244cb44..7bd403f4a81e8 100644 --- a/posthog/hogql/parser.py +++ b/posthog/hogql/parser.py @@ -348,7 +348,7 @@ def visitSelectUnionStmt(self, ctx: HogQLParser.SelectUnionStmtContext): return ast.SelectUnionQuery(select_queries=flattened_queries) def visitSelectStmtWithParens(self, ctx: HogQLParser.SelectStmtWithParensContext): - return self.visit(ctx.selectStmt() or ctx.selectUnionStmt() or ctx.placeholder()) + return self.visit(ctx.selectStmt() or ctx.selectUnionStmt() or ctx.placeholder) def visitSelectStmt(self, ctx: HogQLParser.SelectStmtContext): select_query = ast.SelectQuery( @@ -557,8 +557,8 @@ def visitOrderExpr(self, ctx: HogQLParser.OrderExprContext): return ast.OrderExpr(expr=self.visit(ctx.columnExpr()), order=cast(Literal["ASC", "DESC"], order)) def visitRatioExpr(self, ctx: HogQLParser.RatioExprContext): - if ctx.placeholder(): - return self.visit(ctx.placeholder()) + if ctx.placeholder: + return self.visit(ctx.placeholder) number_literals = ctx.numberLiteral() @@ -971,9 +971,6 @@ def visitWithExprColumn(self, ctx: HogQLParser.WithExprColumnContext): return ast.CTE(name=name, expr=expr, cte_type="column") def visitColumnIdentifier(self, ctx: HogQLParser.ColumnIdentifierContext): - if ctx.placeholder(): - return self.visit(ctx.placeholder()) - table = self.visit(ctx.tableIdentifier()) if ctx.tableIdentifier() else [] nested = self.visit(ctx.nestedIdentifier()) if ctx.nestedIdentifier() else [] @@ -998,7 +995,7 @@ def visitTableExprSubquery(self, ctx: HogQLParser.TableExprSubqueryContext): return self.visit(ctx.selectUnionStmt()) def visitTableExprPlaceholder(self, ctx: HogQLParser.TableExprPlaceholderContext): - return self.visit(ctx.placeholder()) + return self.visit(ctx.placeholder) def visitTableExprAlias(self, ctx: HogQLParser.TableExprAliasContext): alias: str = self.visit(ctx.alias() or ctx.identifier()) @@ -1124,9 +1121,6 @@ def visitHogqlxTagAttribute(self, ctx: HogQLParser.HogqlxTagAttributeContext): else: return ast.HogQLXAttribute(name=name, value=ast.Constant(value=True)) - def visitPlaceholder(self, ctx: HogQLParser.PlaceholderContext): - return self.visit(ctx.block()) - def visitColumnExprTemplateString(self, ctx: HogQLParser.ColumnExprTemplateStringContext): return self.visit(ctx.templateString()) From bb3f072dd465eee5ffdd20d375410231d177ee6c Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Sun, 22 Sep 2024 22:57:24 +0200 Subject: [PATCH 10/11] bump --- hogql_parser/parser.cpp | 16 ++++++++-------- hogql_parser/setup.py | 2 +- posthog/hogql/grammar/HogQLParser.g4 | 6 +++--- posthog/hogql/parser.py | 6 +++--- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/hogql_parser/parser.cpp b/hogql_parser/parser.cpp index 844ba0eca911f..96c77e0b54bf2 100644 --- a/hogql_parser/parser.cpp +++ b/hogql_parser/parser.cpp @@ -846,9 +846,9 @@ class HogQLParseTreeConverter : public HogQLParserBaseVisitor { return visit(select_stmt_ctx); } - auto placeholder_ctx = ctx->placeholder; - if (placeholder_ctx) { - return visitAsPyObject(placeholder_ctx); + auto block_ctx = ctx->block(); + if (block_ctx) { + return visitAsPyObject(block_ctx); } return visit(ctx->selectUnionStmt()); @@ -885,7 +885,7 @@ class HogQLParseTreeConverter : public HogQLParserBaseVisitor { int extend_code = X_PyList_Extend(flattened_queries, sub_select_queries); if (extend_code == -1) goto select_queries_loop_py_error; Py_DECREF(sub_select_queries); - } else if (is_ast_node_instance(query, "Placeholder")) { + } else if (is_ast_node_instance(query, "Block")) { int append_code = PyList_Append(flattened_queries, query); if (append_code == -1) goto select_queries_loop_py_error; } else { @@ -1429,9 +1429,9 @@ class HogQLParseTreeConverter : public HogQLParserBaseVisitor { } VISIT(RatioExpr) { - auto placeholder_ctx = ctx->placeholder; - if (placeholder_ctx) { - return visitAsPyObject(placeholder_ctx); + auto block_ctx = ctx->block(); + if (block_ctx) { + return visitAsPyObject(block_ctx); } auto number_literal_ctxs = ctx->numberLiteral(); @@ -2345,7 +2345,7 @@ class HogQLParseTreeConverter : public HogQLParserBaseVisitor { VISIT(TableExprSubquery) { return visit(ctx->selectUnionStmt()); } - VISIT(TableExprPlaceholder) { return visitAsPyObject(ctx->placeholder); } + VISIT(TableExprPlaceholder) { return visitAsPyObject(ctx->block()); } VISIT(TableExprAlias) { auto alias_ctx = ctx->alias(); diff --git a/hogql_parser/setup.py b/hogql_parser/setup.py index 6fa4ec1c53f1b..fb1debd2eac2d 100644 --- a/hogql_parser/setup.py +++ b/hogql_parser/setup.py @@ -32,7 +32,7 @@ setup( name="hogql_parser", - version="1.0.42", + version="1.0.43", url="https://github.com/PostHog/posthog/tree/master/hogql_parser", author="PostHog Inc.", author_email="hey@posthog.com", diff --git a/posthog/hogql/grammar/HogQLParser.g4 b/posthog/hogql/grammar/HogQLParser.g4 index 21dc8004eaad7..53c09c1472f49 100644 --- a/posthog/hogql/grammar/HogQLParser.g4 +++ b/posthog/hogql/grammar/HogQLParser.g4 @@ -54,7 +54,7 @@ kvPairList: kvPair (COMMA kvPair)* COMMA?; select: (selectUnionStmt | selectStmt | hogqlxTagElement) EOF; selectUnionStmt: selectStmtWithParens (UNION ALL selectStmtWithParens)*; -selectStmtWithParens: selectStmt | LPAREN selectUnionStmt RPAREN | placeholder=block; +selectStmtWithParens: selectStmt | LPAREN selectUnionStmt RPAREN | block; selectStmt: with=withClause? @@ -117,7 +117,7 @@ joinConstraintClause sampleClause: SAMPLE ratioExpr (OFFSET ratioExpr)?; orderExprList: orderExpr (COMMA orderExpr)*; orderExpr: columnExpr (ASCENDING | DESCENDING | DESC)? (NULLS (FIRST | LAST))? (COLLATE STRING_LITERAL)?; -ratioExpr: placeholder=block | numberLiteral (SLASH numberLiteral)?; +ratioExpr: block | numberLiteral (SLASH numberLiteral)?; settingExprList: settingExpr (COMMA settingExpr)*; settingExpr: identifier EQ_SINGLE literal; @@ -251,7 +251,7 @@ tableExpr | LPAREN selectUnionStmt RPAREN # TableExprSubquery | tableExpr (alias | AS identifier) # TableExprAlias | hogqlxTagElement # TableExprTag - | placeholder=block # TableExprPlaceholder + | block # TableExprPlaceholder ; tableFunctionExpr: identifier LPAREN tableArgList? RPAREN; tableIdentifier: (databaseIdentifier DOT)? identifier; diff --git a/posthog/hogql/parser.py b/posthog/hogql/parser.py index 7bd403f4a81e8..10ff1b3e418d3 100644 --- a/posthog/hogql/parser.py +++ b/posthog/hogql/parser.py @@ -557,8 +557,8 @@ def visitOrderExpr(self, ctx: HogQLParser.OrderExprContext): return ast.OrderExpr(expr=self.visit(ctx.columnExpr()), order=cast(Literal["ASC", "DESC"], order)) def visitRatioExpr(self, ctx: HogQLParser.RatioExprContext): - if ctx.placeholder: - return self.visit(ctx.placeholder) + if ctx.block(): + return self.visit(ctx.block()) number_literals = ctx.numberLiteral() @@ -995,7 +995,7 @@ def visitTableExprSubquery(self, ctx: HogQLParser.TableExprSubqueryContext): return self.visit(ctx.selectUnionStmt()) def visitTableExprPlaceholder(self, ctx: HogQLParser.TableExprPlaceholderContext): - return self.visit(ctx.placeholder) + return self.visit(ctx.block()) def visitTableExprAlias(self, ctx: HogQLParser.TableExprAliasContext): alias: str = self.visit(ctx.alias() or ctx.identifier()) From a5c7bfa3b791eb1e2b7b44e57cc5543a56fb3841 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 22 Sep 2024 21:32:39 +0000 Subject: [PATCH 11/11] Use new hogql-parser version --- requirements.in | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.in b/requirements.in index 4e0d599cc2df1..464cfafdf0588 100644 --- a/requirements.in +++ b/requirements.in @@ -103,7 +103,7 @@ phonenumberslite==8.13.6 openai==1.43.0 tiktoken==0.7.0 nh3==0.2.14 -hogql-parser==1.0.42 +hogql-parser==1.0.43 zxcvbn==4.4.28 zstd==1.5.5.1 xmlsec==1.3.13 # Do not change this version - it will break SAML diff --git a/requirements.txt b/requirements.txt index cfcce8b2cc602..97c5ffba9a7cf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -279,7 +279,7 @@ h11==0.13.0 # wsproto hexbytes==1.0.0 # via dlt -hogql-parser==1.0.42 +hogql-parser==1.0.43 # via -r requirements.in httpcore==1.0.2 # via httpx