abouttreesummaryrefslogcommitdiff
path: root/gen/TocParser.cpp
diff options
context:
space:
mode:
authorPatrick Schönberger2021-08-04 21:44:26 +0200
committerPatrick Schönberger2021-08-04 21:44:26 +0200
commitb9322dfb8efe37f6f88a899269bdf21015f4db9a (patch)
tree837a9aadd80723f6c3d672fe0c9ae04f4f0864c8 /gen/TocParser.cpp
parentc2ba7425955ae538e220cec79d9124756d1b4c8b (diff)
downloadtoc-b9322dfb8efe37f6f88a899269bdf21015f4db9a.tar.gz
toc-b9322dfb8efe37f6f88a899269bdf21015f4db9a.zip
generic functions and structs
Diffstat (limited to 'gen/TocParser.cpp')
-rw-r--r--gen/TocParser.cpp1311
1 files changed, 768 insertions, 543 deletions
diff --git a/gen/TocParser.cpp b/gen/TocParser.cpp
index ec0c2e8..cc62d72 100644
--- a/gen/TocParser.cpp
+++ b/gen/TocParser.cpp
@@ -68,13 +68,13 @@ TocParser::ProgContext* TocParser::prog() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(79);
+ setState(85);
_errHandler->sync(this);
_la = _input->LA(1);
do {
- setState(78);
+ setState(84);
decl();
- setState(81);
+ setState(87);
_errHandler->sync(this);
_la = _input->LA(1);
} while ((((_la & ~ 0x3fULL) == 0) &&
@@ -82,7 +82,7 @@ TocParser::ProgContext* TocParser::prog() {
| (1ULL << TocParser::T__4)
| (1ULL << TocParser::T__11)
| (1ULL << TocParser::T__15))) != 0));
- setState(83);
+ setState(89);
match(TocParser::EOF);
}
@@ -135,35 +135,35 @@ TocParser::DeclContext* TocParser::decl() {
exitRule();
});
try {
- setState(91);
+ setState(97);
_errHandler->sync(this);
switch (_input->LA(1)) {
case TocParser::T__4: {
enterOuterAlt(_localctx, 1);
- setState(85);
+ setState(91);
varDecl();
- setState(86);
+ setState(92);
match(TocParser::T__0);
break;
}
case TocParser::T__11: {
enterOuterAlt(_localctx, 2);
- setState(88);
+ setState(94);
funcDecl();
break;
}
case TocParser::T__15: {
enterOuterAlt(_localctx, 3);
- setState(89);
+ setState(95);
structDecl();
break;
}
case TocParser::T__1: {
enterOuterAlt(_localctx, 4);
- setState(90);
+ setState(96);
namespaceDecl();
break;
}
@@ -220,13 +220,13 @@ TocParser::NamespaceDeclContext* TocParser::namespaceDecl() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(93);
+ setState(99);
match(TocParser::T__1);
- setState(94);
+ setState(100);
typeName();
- setState(95);
+ setState(101);
match(TocParser::T__2);
- setState(99);
+ setState(105);
_errHandler->sync(this);
_la = _input->LA(1);
while ((((_la & ~ 0x3fULL) == 0) &&
@@ -234,13 +234,13 @@ TocParser::NamespaceDeclContext* TocParser::namespaceDecl() {
| (1ULL << TocParser::T__4)
| (1ULL << TocParser::T__11)
| (1ULL << TocParser::T__15))) != 0)) {
- setState(96);
+ setState(102);
decl();
- setState(101);
+ setState(107);
_errHandler->sync(this);
_la = _input->LA(1);
}
- setState(102);
+ setState(108);
match(TocParser::T__3);
}
@@ -282,9 +282,9 @@ TocParser::VarDeclContext* TocParser::varDecl() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(104);
+ setState(110);
match(TocParser::T__4);
- setState(105);
+ setState(111);
var();
}
@@ -335,21 +335,21 @@ TocParser::VarContext* TocParser::var() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(107);
+ setState(113);
varName();
- setState(108);
+ setState(114);
match(TocParser::T__5);
- setState(109);
+ setState(115);
type();
- setState(113);
+ setState(119);
_errHandler->sync(this);
_la = _input->LA(1);
if (_la == TocParser::T__6) {
- setState(111);
+ setState(117);
match(TocParser::T__6);
- setState(112);
+ setState(118);
expr(0);
}
@@ -400,17 +400,17 @@ TocParser::VarInitContext* TocParser::varInit() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(115);
+ setState(121);
varName();
- setState(116);
+ setState(122);
match(TocParser::T__5);
- setState(117);
+ setState(123);
type();
- setState(119);
+ setState(125);
match(TocParser::T__6);
- setState(120);
+ setState(126);
expr(0);
}
@@ -441,6 +441,10 @@ TocParser::NamespaceSpecifierContext* TocParser::TypeContext::namespaceSpecifier
return getRuleContext<TocParser::NamespaceSpecifierContext>(i);
}
+TocParser::GenericInstantiationContext* TocParser::TypeContext::genericInstantiation() {
+ return getRuleContext<TocParser::GenericInstantiationContext>(0);
+}
+
std::vector<TocParser::TypeModifierContext *> TocParser::TypeContext::typeModifier() {
return getRuleContexts<TocParser::TypeModifierContext>();
}
@@ -470,29 +474,37 @@ TocParser::TypeContext* TocParser::type() {
try {
size_t alt;
enterOuterAlt(_localctx, 1);
- setState(125);
+ setState(131);
_errHandler->sync(this);
alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 4, _ctx);
while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) {
if (alt == 1) {
- setState(122);
+ setState(128);
namespaceSpecifier();
}
- setState(127);
+ setState(133);
_errHandler->sync(this);
alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 4, _ctx);
}
- setState(128);
+ setState(134);
typeName();
- setState(132);
+ setState(136);
+ _errHandler->sync(this);
+
+ _la = _input->LA(1);
+ if (_la == TocParser::T__17) {
+ setState(135);
+ genericInstantiation();
+ }
+ setState(141);
_errHandler->sync(this);
_la = _input->LA(1);
while (_la == TocParser::T__7
|| _la == TocParser::T__8) {
- setState(129);
+ setState(138);
typeModifier();
- setState(134);
+ setState(143);
_errHandler->sync(this);
_la = _input->LA(1);
}
@@ -536,29 +548,29 @@ TocParser::TypeModifierContext* TocParser::typeModifier() {
exitRule();
});
try {
- setState(141);
+ setState(150);
_errHandler->sync(this);
switch (_input->LA(1)) {
case TocParser::T__7: {
enterOuterAlt(_localctx, 1);
- setState(135);
+ setState(144);
match(TocParser::T__7);
break;
}
case TocParser::T__8: {
enterOuterAlt(_localctx, 2);
- setState(136);
+ setState(145);
match(TocParser::T__8);
- setState(138);
+ setState(147);
_errHandler->sync(this);
_la = _input->LA(1);
if (_la == TocParser::INT_LIT) {
- setState(137);
+ setState(146);
match(TocParser::INT_LIT);
}
- setState(140);
+ setState(149);
match(TocParser::T__9);
break;
}
@@ -606,9 +618,9 @@ TocParser::NamespaceSpecifierContext* TocParser::namespaceSpecifier() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(143);
+ setState(152);
typeName();
- setState(144);
+ setState(153);
match(TocParser::T__10);
}
@@ -650,9 +662,9 @@ TocParser::FuncDeclContext* TocParser::funcDecl() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(146);
+ setState(155);
match(TocParser::T__11);
- setState(147);
+ setState(156);
func();
}
@@ -711,38 +723,38 @@ TocParser::FuncContext* TocParser::func() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(149);
+ setState(158);
funcName();
- setState(151);
+ setState(160);
_errHandler->sync(this);
_la = _input->LA(1);
if (_la == TocParser::T__17) {
- setState(150);
+ setState(159);
genericDecl();
}
- setState(153);
+ setState(162);
match(TocParser::T__12);
- setState(154);
+ setState(163);
parameter();
- setState(155);
+ setState(164);
match(TocParser::T__13);
- setState(156);
+ setState(165);
match(TocParser::T__5);
- setState(157);
+ setState(166);
type();
- setState(161);
+ setState(170);
_errHandler->sync(this);
switch (_input->LA(1)) {
case TocParser::T__2: {
- setState(159);
+ setState(168);
body();
break;
}
case TocParser::T__0: {
- setState(160);
+ setState(169);
match(TocParser::T__0);
break;
}
@@ -795,22 +807,22 @@ TocParser::ParameterContext* TocParser::parameter() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(171);
+ setState(180);
_errHandler->sync(this);
_la = _input->LA(1);
if (_la == TocParser::NAME) {
- setState(163);
+ setState(172);
var();
- setState(168);
+ setState(177);
_errHandler->sync(this);
_la = _input->LA(1);
while (_la == TocParser::T__14) {
- setState(164);
+ setState(173);
match(TocParser::T__14);
- setState(165);
+ setState(174);
var();
- setState(170);
+ setState(179);
_errHandler->sync(this);
_la = _input->LA(1);
}
@@ -860,9 +872,9 @@ TocParser::BodyContext* TocParser::body() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(173);
+ setState(182);
match(TocParser::T__2);
- setState(177);
+ setState(186);
_errHandler->sync(this);
_la = _input->LA(1);
while ((((_la & ~ 0x3fULL) == 0) &&
@@ -874,25 +886,25 @@ TocParser::BodyContext* TocParser::body() {
| (1ULL << TocParser::T__23)
| (1ULL << TocParser::T__24)
| (1ULL << TocParser::T__25)
- | (1ULL << TocParser::T__28)
| (1ULL << TocParser::T__29)
| (1ULL << TocParser::T__30)
| (1ULL << TocParser::T__31)
| (1ULL << TocParser::T__32)
| (1ULL << TocParser::T__33)
| (1ULL << TocParser::T__34)
+ | (1ULL << TocParser::T__35)
| (1ULL << TocParser::INT_LIT)
| (1ULL << TocParser::DECIMAL_LIT)
| (1ULL << TocParser::BOOL_LIT)
| (1ULL << TocParser::StringLit)
| (1ULL << TocParser::NAME))) != 0)) {
- setState(174);
+ setState(183);
stmt();
- setState(179);
+ setState(188);
_errHandler->sync(this);
_la = _input->LA(1);
}
- setState(180);
+ setState(189);
match(TocParser::T__3);
}
@@ -947,33 +959,33 @@ TocParser::StructDeclContext* TocParser::structDecl() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(182);
+ setState(191);
match(TocParser::T__15);
- setState(183);
+ setState(192);
structName();
- setState(185);
+ setState(194);
_errHandler->sync(this);
_la = _input->LA(1);
if (_la == TocParser::T__17) {
- setState(184);
+ setState(193);
genericDecl();
}
- setState(187);
+ setState(196);
match(TocParser::T__2);
- setState(191);
+ setState(200);
_errHandler->sync(this);
_la = _input->LA(1);
while (_la == TocParser::T__16
|| _la == TocParser::NAME) {
- setState(188);
+ setState(197);
structMember();
- setState(193);
+ setState(202);
_errHandler->sync(this);
_la = _input->LA(1);
}
- setState(194);
+ setState(203);
match(TocParser::T__3);
}
@@ -1023,27 +1035,27 @@ TocParser::StructMemberContext* TocParser::structMember() {
exitRule();
});
try {
- setState(201);
+ setState(210);
_errHandler->sync(this);
- switch (getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 16, _ctx)) {
+ switch (getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 17, _ctx)) {
case 1: {
enterOuterAlt(_localctx, 1);
- setState(197);
+ setState(206);
_errHandler->sync(this);
_la = _input->LA(1);
if (_la == TocParser::T__16) {
- setState(196);
+ setState(205);
privateDecl();
}
- setState(199);
+ setState(208);
structVar();
break;
}
case 2: {
enterOuterAlt(_localctx, 2);
- setState(200);
+ setState(209);
structMethod();
break;
}
@@ -1091,9 +1103,9 @@ TocParser::StructVarContext* TocParser::structVar() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(203);
+ setState(212);
var();
- setState(204);
+ setState(213);
match(TocParser::T__0);
}
@@ -1135,7 +1147,7 @@ TocParser::StructMethodContext* TocParser::structMethod() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(206);
+ setState(215);
func();
}
@@ -1173,7 +1185,7 @@ TocParser::PrivateDeclContext* TocParser::privateDecl() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(208);
+ setState(217);
match(TocParser::T__16);
}
@@ -1220,23 +1232,86 @@ TocParser::GenericDeclContext* TocParser::genericDecl() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(210);
+ setState(219);
match(TocParser::T__17);
- setState(211);
+ setState(220);
typeName();
- setState(216);
+ setState(225);
_errHandler->sync(this);
_la = _input->LA(1);
while (_la == TocParser::T__14) {
- setState(212);
+ setState(221);
match(TocParser::T__14);
- setState(213);
+ setState(222);
typeName();
- setState(218);
+ setState(227);
_errHandler->sync(this);
_la = _input->LA(1);
}
- setState(219);
+ setState(228);
+ match(TocParser::T__18);
+
+ }
+ catch (RecognitionException &e) {
+ _errHandler->reportError(this, e);
+ _localctx->exception = std::current_exception();
+ _errHandler->recover(this, _localctx->exception);
+ }
+
+ return _localctx;
+}
+
+//----------------- GenericInstantiationContext ------------------------------------------------------------------
+
+TocParser::GenericInstantiationContext::GenericInstantiationContext(ParserRuleContext *parent, size_t invokingState)
+ : ParserRuleContext(parent, invokingState) {
+}
+
+std::vector<TocParser::TypeContext *> TocParser::GenericInstantiationContext::type() {
+ return getRuleContexts<TocParser::TypeContext>();
+}
+
+TocParser::TypeContext* TocParser::GenericInstantiationContext::type(size_t i) {
+ return getRuleContext<TocParser::TypeContext>(i);
+}
+
+
+size_t TocParser::GenericInstantiationContext::getRuleIndex() const {
+ return TocParser::RuleGenericInstantiation;
+}
+
+
+TocParser::GenericInstantiationContext* TocParser::genericInstantiation() {
+ GenericInstantiationContext *_localctx = _tracker.createInstance<GenericInstantiationContext>(_ctx, getState());
+ enterRule(_localctx, 38, TocParser::RuleGenericInstantiation);
+ size_t _la = 0;
+
+#if __cplusplus > 201703L
+ auto onExit = finally([=, this] {
+#else
+ auto onExit = finally([=] {
+#endif
+ exitRule();
+ });
+ try {
+ enterOuterAlt(_localctx, 1);
+ setState(230);
+ match(TocParser::T__17);
+ setState(231);
+ type();
+ setState(236);
+ _errHandler->sync(this);
+ _la = _input->LA(1);
+ while (_la == TocParser::T__14) {
+ setState(232);
+ match(TocParser::T__14);
+ setState(233);
+ type();
+ setState(238);
+ _errHandler->sync(this);
+ _la = _input->LA(1);
+ }
+ setState(239);
match(TocParser::T__18);
}
@@ -1295,7 +1370,7 @@ size_t TocParser::StmtContext::getRuleIndex() const {
TocParser::StmtContext* TocParser::stmt() {
StmtContext *_localctx = _tracker.createInstance<StmtContext>(_ctx, getState());
- enterRule(_localctx, 38, TocParser::RuleStmt);
+ enterRule(_localctx, 40, TocParser::RuleStmt);
#if __cplusplus > 201703L
auto onExit = finally([=, this] {
@@ -1305,69 +1380,69 @@ TocParser::StmtContext* TocParser::stmt() {
exitRule();
});
try {
- setState(237);
+ setState(257);
_errHandler->sync(this);
- switch (getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 18, _ctx)) {
+ switch (getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 20, _ctx)) {
case 1: {
enterOuterAlt(_localctx, 1);
- setState(221);
+ setState(241);
varDecl();
- setState(222);
+ setState(242);
match(TocParser::T__0);
break;
}
case 2: {
enterOuterAlt(_localctx, 2);
- setState(224);
+ setState(244);
ifStmt();
break;
}
case 3: {
enterOuterAlt(_localctx, 3);
- setState(225);
+ setState(245);
switchStmt();
break;
}
case 4: {
enterOuterAlt(_localctx, 4);
- setState(226);
+ setState(246);
forStmt();
break;
}
case 5: {
enterOuterAlt(_localctx, 5);
- setState(227);
+ setState(247);
whileStmt();
break;
}
case 6: {
enterOuterAlt(_localctx, 6);
- setState(228);
+ setState(248);
assignStmt();
- setState(229);
+ setState(249);
match(TocParser::T__0);
break;
}
case 7: {
enterOuterAlt(_localctx, 7);
- setState(231);
+ setState(251);
returnStmt();
- setState(232);
+ setState(252);
match(TocParser::T__0);
break;
}
case 8: {
enterOuterAlt(_localctx, 8);
- setState(234);
+ setState(254);
expr(0);
- setState(235);
+ setState(255);
match(TocParser::T__0);
break;
}
@@ -1420,7 +1495,7 @@ size_t TocParser::IfStmtContext::getRuleIndex() const {
TocParser::IfStmtContext* TocParser::ifStmt() {
IfStmtContext *_localctx = _tracker.createInstance<IfStmtContext>(_ctx, getState());
- enterRule(_localctx, 40, TocParser::RuleIfStmt);
+ enterRule(_localctx, 42, TocParser::RuleIfStmt);
size_t _la = 0;
#if __cplusplus > 201703L
@@ -1433,30 +1508,30 @@ TocParser::IfStmtContext* TocParser::ifStmt() {
try {
size_t alt;
enterOuterAlt(_localctx, 1);
- setState(239);
+ setState(259);
match(TocParser::T__19);
- setState(240);
+ setState(260);
expr(0);
- setState(241);
+ setState(261);
body();
- setState(245);
+ setState(265);
_errHandler->sync(this);
- alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 19, _ctx);
+ alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 21, _ctx);
while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) {
if (alt == 1) {
- setState(242);
+ setState(262);
elseIfStmt();
}
- setState(247);
+ setState(267);
_errHandler->sync(this);
- alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 19, _ctx);
+ alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 21, _ctx);
}
- setState(249);
+ setState(269);
_errHandler->sync(this);
_la = _input->LA(1);
if (_la == TocParser::T__20) {
- setState(248);
+ setState(268);
elseStmt();
}
@@ -1492,7 +1567,7 @@ size_t TocParser::ElseIfStmtContext::getRuleIndex() const {
TocParser::ElseIfStmtContext* TocParser::elseIfStmt() {
ElseIfStmtContext *_localctx = _tracker.createInstance<ElseIfStmtContext>(_ctx, getState());
- enterRule(_localctx, 42, TocParser::RuleElseIfStmt);
+ enterRule(_localctx, 44, TocParser::RuleElseIfStmt);
#if __cplusplus > 201703L
auto onExit = finally([=, this] {
@@ -1503,13 +1578,13 @@ TocParser::ElseIfStmtContext* TocParser::elseIfStmt() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(251);
+ setState(271);
match(TocParser::T__20);
- setState(252);
+ setState(272);
match(TocParser::T__19);
- setState(253);
+ setState(273);
expr(0);
- setState(254);
+ setState(274);
body();
}
@@ -1540,7 +1615,7 @@ size_t TocParser::ElseStmtContext::getRuleIndex() const {
TocParser::ElseStmtContext* TocParser::elseStmt() {
ElseStmtContext *_localctx = _tracker.createInstance<ElseStmtContext>(_ctx, getState());
- enterRule(_localctx, 44, TocParser::RuleElseStmt);
+ enterRule(_localctx, 46, TocParser::RuleElseStmt);
#if __cplusplus > 201703L
auto onExit = finally([=, this] {
@@ -1551,9 +1626,9 @@ TocParser::ElseStmtContext* TocParser::elseStmt() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(256);
+ setState(276);
match(TocParser::T__20);
- setState(257);
+ setState(277);
body();
}
@@ -1588,7 +1663,7 @@ size_t TocParser::SwitchStmtContext::getRuleIndex() const {
TocParser::SwitchStmtContext* TocParser::switchStmt() {
SwitchStmtContext *_localctx = _tracker.createInstance<SwitchStmtContext>(_ctx, getState());
- enterRule(_localctx, 46, TocParser::RuleSwitchStmt);
+ enterRule(_localctx, 48, TocParser::RuleSwitchStmt);
#if __cplusplus > 201703L
auto onExit = finally([=, this] {
@@ -1599,11 +1674,11 @@ TocParser::SwitchStmtContext* TocParser::switchStmt() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(259);
+ setState(279);
match(TocParser::T__21);
- setState(260);
+ setState(280);
expr(0);
- setState(261);
+ setState(281);
switchBody();
}
@@ -1638,7 +1713,7 @@ size_t TocParser::SwitchBodyContext::getRuleIndex() const {
TocParser::SwitchBodyContext* TocParser::switchBody() {
SwitchBodyContext *_localctx = _tracker.createInstance<SwitchBodyContext>(_ctx, getState());
- enterRule(_localctx, 48, TocParser::RuleSwitchBody);
+ enterRule(_localctx, 50, TocParser::RuleSwitchBody);
size_t _la = 0;
#if __cplusplus > 201703L
@@ -1650,19 +1725,19 @@ TocParser::SwitchBodyContext* TocParser::switchBody() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(263);
+ setState(283);
match(TocParser::T__2);
- setState(267);
+ setState(287);
_errHandler->sync(this);
_la = _input->LA(1);
while (_la == TocParser::T__22) {
- setState(264);
+ setState(284);
switchCase();
- setState(269);
+ setState(289);
_errHandler->sync(this);
_la = _input->LA(1);
}
- setState(270);
+ setState(290);
match(TocParser::T__3);
}
@@ -1697,7 +1772,7 @@ size_t TocParser::SwitchCaseContext::getRuleIndex() const {
TocParser::SwitchCaseContext* TocParser::switchCase() {
SwitchCaseContext *_localctx = _tracker.createInstance<SwitchCaseContext>(_ctx, getState());
- enterRule(_localctx, 50, TocParser::RuleSwitchCase);
+ enterRule(_localctx, 52, TocParser::RuleSwitchCase);
#if __cplusplus > 201703L
auto onExit = finally([=, this] {
@@ -1708,11 +1783,11 @@ TocParser::SwitchCaseContext* TocParser::switchCase() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(272);
+ setState(292);
match(TocParser::T__22);
- setState(273);
+ setState(293);
expr(0);
- setState(274);
+ setState(294);
body();
}
@@ -1755,7 +1830,7 @@ size_t TocParser::ForStmtContext::getRuleIndex() const {
TocParser::ForStmtContext* TocParser::forStmt() {
ForStmtContext *_localctx = _tracker.createInstance<ForStmtContext>(_ctx, getState());
- enterRule(_localctx, 52, TocParser::RuleForStmt);
+ enterRule(_localctx, 54, TocParser::RuleForStmt);
#if __cplusplus > 201703L
auto onExit = finally([=, this] {
@@ -1766,19 +1841,19 @@ TocParser::ForStmtContext* TocParser::forStmt() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(276);
+ setState(296);
match(TocParser::T__23);
- setState(277);
+ setState(297);
varInit();
- setState(278);
+ setState(298);
match(TocParser::T__14);
- setState(279);
+ setState(299);
expr(0);
- setState(280);
+ setState(300);
match(TocParser::T__14);
- setState(281);
+ setState(301);
expr(0);
- setState(282);
+ setState(302);
body();
}
@@ -1813,7 +1888,7 @@ size_t TocParser::WhileStmtContext::getRuleIndex() const {
TocParser::WhileStmtContext* TocParser::whileStmt() {
WhileStmtContext *_localctx = _tracker.createInstance<WhileStmtContext>(_ctx, getState());
- enterRule(_localctx, 54, TocParser::RuleWhileStmt);
+ enterRule(_localctx, 56, TocParser::RuleWhileStmt);
#if __cplusplus > 201703L
auto onExit = finally([=, this] {
@@ -1824,11 +1899,11 @@ TocParser::WhileStmtContext* TocParser::whileStmt() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(284);
+ setState(304);
match(TocParser::T__24);
- setState(285);
+ setState(305);
expr(0);
- setState(286);
+ setState(306);
body();
}
@@ -1863,7 +1938,7 @@ size_t TocParser::AssignStmtContext::getRuleIndex() const {
TocParser::AssignStmtContext* TocParser::assignStmt() {
AssignStmtContext *_localctx = _tracker.createInstance<AssignStmtContext>(_ctx, getState());
- enterRule(_localctx, 56, TocParser::RuleAssignStmt);
+ enterRule(_localctx, 58, TocParser::RuleAssignStmt);
#if __cplusplus > 201703L
auto onExit = finally([=, this] {
@@ -1874,11 +1949,11 @@ TocParser::AssignStmtContext* TocParser::assignStmt() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(288);
+ setState(308);
expr(0);
- setState(289);
+ setState(309);
match(TocParser::T__6);
- setState(290);
+ setState(310);
expr(0);
}
@@ -1909,7 +1984,7 @@ size_t TocParser::ReturnStmtContext::getRuleIndex() const {
TocParser::ReturnStmtContext* TocParser::returnStmt() {
ReturnStmtContext *_localctx = _tracker.createInstance<ReturnStmtContext>(_ctx, getState());
- enterRule(_localctx, 58, TocParser::RuleReturnStmt);
+ enterRule(_localctx, 60, TocParser::RuleReturnStmt);
#if __cplusplus > 201703L
auto onExit = finally([=, this] {
@@ -1920,9 +1995,9 @@ TocParser::ReturnStmtContext* TocParser::returnStmt() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(292);
+ setState(312);
match(TocParser::T__25);
- setState(293);
+ setState(313);
expr(0);
}
@@ -1960,6 +2035,14 @@ TocParser::VarNameContext* TocParser::DotExprContext::varName() {
return getRuleContext<TocParser::VarNameContext>(0);
}
+TocParser::DotContext* TocParser::DotExprContext::dot() {
+ return getRuleContext<TocParser::DotContext>(0);
+}
+
+TocParser::ArrowContext* TocParser::DotExprContext::arrow() {
+ return getRuleContext<TocParser::ArrowContext>(0);
+}
+
TocParser::DotExprContext::DotExprContext(ExprContext *ctx) { copyFrom(ctx); }
@@ -1977,6 +2060,10 @@ TocParser::NamespaceSpecifierContext* TocParser::FuncExprContext::namespaceSpeci
return getRuleContext<TocParser::NamespaceSpecifierContext>(i);
}
+TocParser::GenericInstantiationContext* TocParser::FuncExprContext::genericInstantiation() {
+ return getRuleContext<TocParser::GenericInstantiationContext>(0);
+}
+
std::vector<TocParser::ExprContext *> TocParser::FuncExprContext::expr() {
return getRuleContexts<TocParser::ExprContext>();
}
@@ -2028,6 +2115,10 @@ TocParser::FuncNameContext* TocParser::MethodExprContext::funcName() {
return getRuleContext<TocParser::FuncNameContext>(0);
}
+TocParser::GenericInstantiationContext* TocParser::MethodExprContext::genericInstantiation() {
+ return getRuleContext<TocParser::GenericInstantiationContext>(0);
+}
+
TocParser::MethodExprContext::MethodExprContext(ExprContext *ctx) { copyFrom(ctx); }
@@ -2120,8 +2211,8 @@ TocParser::ExprContext* TocParser::expr(int precedence) {
TocParser::ExprContext *_localctx = _tracker.createInstance<ExprContext>(_ctx, parentState);
TocParser::ExprContext *previousContext = _localctx;
(void)previousContext; // Silence compiler, in case the context is not used by generated code.
- size_t startState = 60;
- enterRecursionRule(_localctx, 60, TocParser::RuleExpr, precedence);
+ size_t startState = 62;
+ enterRecursionRule(_localctx, 62, TocParser::RuleExpr, precedence);
size_t _la = 0;
@@ -2135,65 +2226,73 @@ TocParser::ExprContext* TocParser::expr(int precedence) {
try {
size_t alt;
enterOuterAlt(_localctx, 1);
- setState(331);
+ setState(354);
_errHandler->sync(this);
- switch (getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 26, _ctx)) {
+ switch (getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 29, _ctx)) {
case 1: {
_localctx = _tracker.createInstance<FuncExprContext>(_localctx);
_ctx = _localctx;
previousContext = _localctx;
- setState(299);
+ setState(319);
_errHandler->sync(this);
- alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 22, _ctx);
+ alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 24, _ctx);
while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) {
if (alt == 1) {
- setState(296);
+ setState(316);
namespaceSpecifier();
}
- setState(301);
+ setState(321);
_errHandler->sync(this);
- alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 22, _ctx);
+ alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 24, _ctx);
}
- setState(302);
+ setState(322);
funcName();
- setState(303);
+ setState(324);
+ _errHandler->sync(this);
+
+ _la = _input->LA(1);
+ if (_la == TocParser::T__17) {
+ setState(323);
+ genericInstantiation();
+ }
+ setState(326);
match(TocParser::T__12);
- setState(312);
+ setState(335);
_errHandler->sync(this);
_la = _input->LA(1);
if ((((_la & ~ 0x3fULL) == 0) &&
((1ULL << _la) & ((1ULL << TocParser::T__7)
| (1ULL << TocParser::T__12)
- | (1ULL << TocParser::T__28)
| (1ULL << TocParser::T__29)
| (1ULL << TocParser::T__30)
| (1ULL << TocParser::T__31)
| (1ULL << TocParser::T__32)
| (1ULL << TocParser::T__33)
| (1ULL << TocParser::T__34)
+ | (1ULL << TocParser::T__35)
| (1ULL << TocParser::INT_LIT)
| (1ULL << TocParser::DECIMAL_LIT)
| (1ULL << TocParser::BOOL_LIT)
| (1ULL << TocParser::StringLit)
| (1ULL << TocParser::NAME))) != 0)) {
- setState(304);
+ setState(327);
expr(0);
- setState(309);
+ setState(332);
_errHandler->sync(this);
_la = _input->LA(1);
while (_la == TocParser::T__14) {
- setState(305);
+ setState(328);
match(TocParser::T__14);
- setState(306);
+ setState(329);
expr(0);
- setState(311);
+ setState(334);
_errHandler->sync(this);
_la = _input->LA(1);
}
}
- setState(314);
+ setState(337);
match(TocParser::T__13);
break;
}
@@ -2202,7 +2301,7 @@ TocParser::ExprContext* TocParser::expr(int precedence) {
_localctx = _tracker.createInstance<LitExprContext>(_localctx);
_ctx = _localctx;
previousContext = _localctx;
- setState(316);
+ setState(339);
literal();
break;
}
@@ -2211,11 +2310,11 @@ TocParser::ExprContext* TocParser::expr(int precedence) {
_localctx = _tracker.createInstance<ParenExprContext>(_localctx);
_ctx = _localctx;
previousContext = _localctx;
- setState(317);
+ setState(340);
match(TocParser::T__12);
- setState(318);
+ setState(341);
expr(0);
- setState(319);
+ setState(342);
match(TocParser::T__13);
break;
}
@@ -2224,9 +2323,9 @@ TocParser::ExprContext* TocParser::expr(int precedence) {
_localctx = _tracker.createInstance<PrefixOpExprContext>(_localctx);
_ctx = _localctx;
previousContext = _localctx;
- setState(321);
+ setState(344);
prefix_op();
- setState(322);
+ setState(345);
expr(6);
break;
}
@@ -2235,19 +2334,19 @@ TocParser::ExprContext* TocParser::expr(int precedence) {
_localctx = _tracker.createInstance<IdentifierExprContext>(_localctx);
_ctx = _localctx;
previousContext = _localctx;
- setState(327);
+ setState(350);
_errHandler->sync(this);
- alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 25, _ctx);
+ alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 28, _ctx);
while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) {
if (alt == 1) {
- setState(324);
+ setState(347);
namespaceSpecifier();
}
- setState(329);
+ setState(352);
_errHandler->sync(this);
- alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 25, _ctx);
+ alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 28, _ctx);
}
- setState(330);
+ setState(353);
varName();
break;
}
@@ -2256,27 +2355,27 @@ TocParser::ExprContext* TocParser::expr(int precedence) {
break;
}
_ctx->stop = _input->LT(-1);
- setState(371);
+ setState(401);
_errHandler->sync(this);
- alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 30, _ctx);
+ alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 35, _ctx);
while (alt != 2 && alt != atn::ATN::INVALID_ALT_NUMBER) {
if (alt == 1) {
if (!_parseListeners.empty())
triggerExitRuleEvent();
previousContext = _localctx;
- setState(369);
+ setState(399);
_errHandler->sync(this);
- switch (getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 29, _ctx)) {
+ switch (getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 34, _ctx)) {
case 1: {
auto newContext = _tracker.createInstance<BinaryOpExprContext>(_tracker.createInstance<ExprContext>(parentContext, parentState));
_localctx = newContext;
pushNewRecursionContext(newContext, startState, RuleExpr);
- setState(333);
+ setState(356);
if (!(precpred(_ctx, 4))) throw FailedPredicateException(this, "precpred(_ctx, 4)");
- setState(334);
+ setState(357);
binary_op();
- setState(335);
+ setState(358);
expr(5);
break;
}
@@ -2285,16 +2384,16 @@ TocParser::ExprContext* TocParser::expr(int precedence) {
auto newContext = _tracker.createInstance<TernaryOpExprContext>(_tracker.createInstance<ExprContext>(parentContext, parentState));
_localctx = newContext;
pushNewRecursionContext(newContext, startState, RuleExpr);
- setState(337);
+ setState(360);
if (!(precpred(_ctx, 3))) throw FailedPredicateException(this, "precpred(_ctx, 3)");
- setState(338);
+ setState(361);
match(TocParser::T__27);
- setState(339);
+ setState(362);
expr(0);
- setState(340);
+ setState(363);
match(TocParser::T__5);
- setState(341);
+ setState(364);
expr(4);
break;
}
@@ -2303,50 +2402,58 @@ TocParser::ExprContext* TocParser::expr(int precedence) {
auto newContext = _tracker.createInstance<MethodExprContext>(_tracker.createInstance<ExprContext>(parentContext, parentState));
_localctx = newContext;
pushNewRecursionContext(newContext, startState, RuleExpr);
- setState(343);
+ setState(366);
if (!(precpred(_ctx, 10))) throw FailedPredicateException(this, "precpred(_ctx, 10)");
- setState(344);
+ setState(367);
match(TocParser::T__26);
- setState(345);
+ setState(368);
funcName();
- setState(346);
+ setState(370);
+ _errHandler->sync(this);
+
+ _la = _input->LA(1);
+ if (_la == TocParser::T__17) {
+ setState(369);
+ genericInstantiation();
+ }
+ setState(372);
match(TocParser::T__12);
- setState(355);
+ setState(381);
_errHandler->sync(this);
_la = _input->LA(1);
if ((((_la & ~ 0x3fULL) == 0) &&
((1ULL << _la) & ((1ULL << TocParser::T__7)
| (1ULL << TocParser::T__12)
- | (1ULL << TocParser::T__28)
| (1ULL << TocParser::T__29)
| (1ULL << TocParser::T__30)
| (1ULL << TocParser::T__31)
| (1ULL << TocParser::T__32)
| (1ULL << TocParser::T__33)
| (1ULL << TocParser::T__34)
+ | (1ULL << TocParser::T__35)
| (1ULL << TocParser::INT_LIT)
| (1ULL << TocParser::DECIMAL_LIT)
| (1ULL << TocParser::BOOL_LIT)
| (1ULL << TocParser::StringLit)
| (1ULL << TocParser::NAME))) != 0)) {
- setState(347);
+ setState(373);
expr(0);
- setState(352);
+ setState(378);
_errHandler->sync(this);
_la = _input->LA(1);
while (_la == TocParser::T__14) {
- setState(348);
+ setState(374);
match(TocParser::T__14);
- setState(349);
+ setState(375);
expr(0);
- setState(354);
+ setState(380);
_errHandler->sync(this);
_la = _input->LA(1);
}
}
- setState(357);
+ setState(383);
match(TocParser::T__13);
break;
}
@@ -2355,12 +2462,28 @@ TocParser::ExprContext* TocParser::expr(int precedence) {
auto newContext = _tracker.createInstance<DotExprContext>(_tracker.createInstance<ExprContext>(parentContext, parentState));
_localctx = newContext;
pushNewRecursionContext(newContext, startState, RuleExpr);
- setState(359);
+ setState(385);
if (!(precpred(_ctx, 7))) throw FailedPredicateException(this, "precpred(_ctx, 7)");
- setState(360);
- match(TocParser::T__26);
- setState(361);
+ setState(388);
+ _errHandler->sync(this);
+ switch (_input->LA(1)) {
+ case TocParser::T__26: {
+ setState(386);
+ dot();
+ break;
+ }
+
+ case TocParser::T__28: {
+ setState(387);
+ arrow();
+ break;
+ }
+
+ default:
+ throw NoViableAltException(this);
+ }
+ setState(390);
varName();
break;
}
@@ -2369,10 +2492,10 @@ TocParser::ExprContext* TocParser::expr(int precedence) {
auto newContext = _tracker.createInstance<PostfixOpExprContext>(_tracker.createInstance<ExprContext>(parentContext, parentState));
_localctx = newContext;
pushNewRecursionContext(newContext, startState, RuleExpr);
- setState(362);
+ setState(392);
if (!(precpred(_ctx, 5))) throw FailedPredicateException(this, "precpred(_ctx, 5)");
- setState(363);
+ setState(393);
postfix_op();
break;
}
@@ -2381,14 +2504,14 @@ TocParser::ExprContext* TocParser::expr(int precedence) {
auto newContext = _tracker.createInstance<BracketExprContext>(_tracker.createInstance<ExprContext>(parentContext, parentState));
_localctx = newContext;
pushNewRecursionContext(newContext, startState, RuleExpr);
- setState(364);
+ setState(394);
if (!(precpred(_ctx, 2))) throw FailedPredicateException(this, "precpred(_ctx, 2)");
- setState(365);
+ setState(395);
match(TocParser::T__8);
- setState(366);
+ setState(396);
expr(0);
- setState(367);
+ setState(397);
match(TocParser::T__9);
break;
}
@@ -2397,9 +2520,9 @@ TocParser::ExprContext* TocParser::expr(int precedence) {
break;
}
}
- setState(373);
+ setState(403);
_errHandler->sync(this);
- alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 30, _ctx);
+ alt = getInterpreter<atn::ParserATNSimulator>()->adaptivePredict(_input, 35, _ctx);
}
}
catch (RecognitionException &e) {
@@ -2410,6 +2533,82 @@ TocParser::ExprContext* TocParser::expr(int precedence) {
return _localctx;
}
+//----------------- DotContext ------------------------------------------------------------------
+
+TocParser::DotContext::DotContext(ParserRuleContext *parent, size_t invokingState)
+ : ParserRuleContext(parent, invokingState) {
+}
+
+
+size_t TocParser::DotContext::getRuleIndex() const {
+ return TocParser::RuleDot;
+}
+
+
+TocParser::DotContext* TocParser::dot() {
+ DotContext *_localctx = _tracker.createInstance<DotContext>(_ctx, getState());
+ enterRule(_localctx, 64, TocParser::RuleDot);
+
+#if __cplusplus > 201703L
+ auto onExit = finally([=, this] {
+#else
+ auto onExit = finally([=] {
+#endif
+ exitRule();
+ });
+ try {
+ enterOuterAlt(_localctx, 1);
+ setState(404);
+ match(TocParser::T__26);
+
+ }
+ catch (RecognitionException &e) {
+ _errHandler->reportError(this, e);
+ _localctx->exception = std::current_exception();
+ _errHandler->recover(this, _localctx->exception);
+ }
+
+ return _localctx;
+}
+
+//----------------- ArrowContext ------------------------------------------------------------------
+
+TocParser::ArrowContext::ArrowContext(ParserRuleContext *parent, size_t invokingState)
+ : ParserRuleContext(parent, invokingState) {
+}
+
+
+size_t TocParser::ArrowContext::getRuleIndex() const {
+ return TocParser::RuleArrow;
+}
+
+
+TocParser::ArrowContext* TocParser::arrow() {
+ ArrowContext *_localctx = _tracker.createInstance<ArrowContext>(_ctx, getState());
+ enterRule(_localctx, 66, TocParser::RuleArrow);
+
+#if __cplusplus > 201703L
+ auto onExit = finally([=, this] {
+#else
+ auto onExit = finally([=] {
+#endif
+ exitRule();
+ });
+ try {
+ enterOuterAlt(_localctx, 1);
+ setState(406);
+ match(TocParser::T__28);
+
+ }
+ catch (RecognitionException &e) {
+ _errHandler->reportError(this, e);
+ _localctx->exception = std::current_exception();
+ _errHandler->recover(this, _localctx->exception);
+ }
+
+ return _localctx;
+}
+
//----------------- LiteralContext ------------------------------------------------------------------
TocParser::LiteralContext::LiteralContext(ParserRuleContext *parent, size_t invokingState)
@@ -2440,7 +2639,7 @@ size_t TocParser::LiteralContext::getRuleIndex() const {
TocParser::LiteralContext* TocParser::literal() {
LiteralContext *_localctx = _tracker.createInstance<LiteralContext>(_ctx, getState());
- enterRule(_localctx, 62, TocParser::RuleLiteral);
+ enterRule(_localctx, 68, TocParser::RuleLiteral);
size_t _la = 0;
#if __cplusplus > 201703L
@@ -2452,7 +2651,7 @@ TocParser::LiteralContext* TocParser::literal() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(374);
+ setState(408);
_la = _input->LA(1);
if (!((((_la & ~ 0x3fULL) == 0) &&
((1ULL << _la) & ((1ULL << TocParser::INT_LIT)
@@ -2494,7 +2693,7 @@ size_t TocParser::FuncNameContext::getRuleIndex() const {
TocParser::FuncNameContext* TocParser::funcName() {
FuncNameContext *_localctx = _tracker.createInstance<FuncNameContext>(_ctx, getState());
- enterRule(_localctx, 64, TocParser::RuleFuncName);
+ enterRule(_localctx, 70, TocParser::RuleFuncName);
#if __cplusplus > 201703L
auto onExit = finally([=, this] {
@@ -2505,7 +2704,7 @@ TocParser::FuncNameContext* TocParser::funcName() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(376);
+ setState(410);
match(TocParser::NAME);
}
@@ -2536,7 +2735,7 @@ size_t TocParser::VarNameContext::getRuleIndex() const {
TocParser::VarNameContext* TocParser::varName() {
VarNameContext *_localctx = _tracker.createInstance<VarNameContext>(_ctx, getState());
- enterRule(_localctx, 66, TocParser::RuleVarName);
+ enterRule(_localctx, 72, TocParser::RuleVarName);
#if __cplusplus > 201703L
auto onExit = finally([=, this] {
@@ -2547,7 +2746,7 @@ TocParser::VarNameContext* TocParser::varName() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(378);
+ setState(412);
match(TocParser::NAME);
}
@@ -2578,7 +2777,7 @@ size_t TocParser::TypeNameContext::getRuleIndex() const {
TocParser::TypeNameContext* TocParser::typeName() {
TypeNameContext *_localctx = _tracker.createInstance<TypeNameContext>(_ctx, getState());
- enterRule(_localctx, 68, TocParser::RuleTypeName);
+ enterRule(_localctx, 74, TocParser::RuleTypeName);
#if __cplusplus > 201703L
auto onExit = finally([=, this] {
@@ -2589,7 +2788,7 @@ TocParser::TypeNameContext* TocParser::typeName() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(380);
+ setState(414);
match(TocParser::NAME);
}
@@ -2620,7 +2819,7 @@ size_t TocParser::StructNameContext::getRuleIndex() const {
TocParser::StructNameContext* TocParser::structName() {
StructNameContext *_localctx = _tracker.createInstance<StructNameContext>(_ctx, getState());
- enterRule(_localctx, 70, TocParser::RuleStructName);
+ enterRule(_localctx, 76, TocParser::RuleStructName);
#if __cplusplus > 201703L
auto onExit = finally([=, this] {
@@ -2631,7 +2830,7 @@ TocParser::StructNameContext* TocParser::structName() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(382);
+ setState(416);
match(TocParser::NAME);
}
@@ -2658,7 +2857,7 @@ size_t TocParser::Postfix_opContext::getRuleIndex() const {
TocParser::Postfix_opContext* TocParser::postfix_op() {
Postfix_opContext *_localctx = _tracker.createInstance<Postfix_opContext>(_ctx, getState());
- enterRule(_localctx, 72, TocParser::RulePostfix_op);
+ enterRule(_localctx, 78, TocParser::RulePostfix_op);
size_t _la = 0;
#if __cplusplus > 201703L
@@ -2670,11 +2869,11 @@ TocParser::Postfix_opContext* TocParser::postfix_op() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(384);
+ setState(418);
_la = _input->LA(1);
- if (!(_la == TocParser::T__28
+ if (!(_la == TocParser::T__29
- || _la == TocParser::T__29)) {
+ || _la == TocParser::T__30)) {
_errHandler->recoverInline(this);
}
else {
@@ -2710,7 +2909,7 @@ size_t TocParser::Prefix_opContext::getRuleIndex() const {
TocParser::Prefix_opContext* TocParser::prefix_op() {
Prefix_opContext *_localctx = _tracker.createInstance<Prefix_opContext>(_ctx, getState());
- enterRule(_localctx, 74, TocParser::RulePrefix_op);
+ enterRule(_localctx, 80, TocParser::RulePrefix_op);
#if __cplusplus > 201703L
auto onExit = finally([=, this] {
@@ -2720,55 +2919,55 @@ TocParser::Prefix_opContext* TocParser::prefix_op() {
exitRule();
});
try {
- setState(393);
+ setState(427);
_errHandler->sync(this);
switch (_input->LA(1)) {
- case TocParser::T__30: {
- enterOuterAlt(_localctx, 1);
- setState(386);
- match(TocParser::T__30);
- break;
- }
-
case TocParser::T__31: {
- enterOuterAlt(_localctx, 2);
- setState(387);
+ enterOuterAlt(_localctx, 1);
+ setState(420);
match(TocParser::T__31);
break;
}
case TocParser::T__32: {
- enterOuterAlt(_localctx, 3);
- setState(388);
+ enterOuterAlt(_localctx, 2);
+ setState(421);
match(TocParser::T__32);
break;
}
case TocParser::T__33: {
- enterOuterAlt(_localctx, 4);
- setState(389);
+ enterOuterAlt(_localctx, 3);
+ setState(422);
match(TocParser::T__33);
break;
}
case TocParser::T__34: {
- enterOuterAlt(_localctx, 5);
- setState(390);
+ enterOuterAlt(_localctx, 4);
+ setState(423);
match(TocParser::T__34);
break;
}
+ case TocParser::T__35: {
+ enterOuterAlt(_localctx, 5);
+ setState(424);
+ match(TocParser::T__35);
+ break;
+ }
+
case TocParser::T__7: {
enterOuterAlt(_localctx, 6);
- setState(391);
+ setState(425);
match(TocParser::T__7);
break;
}
- case TocParser::T__28:
- case TocParser::T__29: {
+ case TocParser::T__29:
+ case TocParser::T__30: {
enterOuterAlt(_localctx, 7);
- setState(392);
+ setState(426);
postfix_op();
break;
}
@@ -2801,7 +3000,7 @@ size_t TocParser::Binary_opContext::getRuleIndex() const {
TocParser::Binary_opContext* TocParser::binary_op() {
Binary_opContext *_localctx = _tracker.createInstance<Binary_opContext>(_ctx, getState());
- enterRule(_localctx, 76, TocParser::RuleBinary_op);
+ enterRule(_localctx, 82, TocParser::RuleBinary_op);
size_t _la = 0;
#if __cplusplus > 201703L
@@ -2813,15 +3012,14 @@ TocParser::Binary_opContext* TocParser::binary_op() {
});
try {
enterOuterAlt(_localctx, 1);
- setState(395);
+ setState(429);
_la = _input->LA(1);
if (!((((_la & ~ 0x3fULL) == 0) &&
((1ULL << _la) & ((1ULL << TocParser::T__7)
| (1ULL << TocParser::T__17)
| (1ULL << TocParser::T__18)
- | (1ULL << TocParser::T__30)
| (1ULL << TocParser::T__31)
- | (1ULL << TocParser::T__34)
+ | (1ULL << TocParser::T__32)
| (1ULL << TocParser::T__35)
| (1ULL << TocParser::T__36)
| (1ULL << TocParser::T__37)
@@ -2843,7 +3041,8 @@ TocParser::Binary_opContext* TocParser::binary_op() {
| (1ULL << TocParser::T__53)
| (1ULL << TocParser::T__54)
| (1ULL << TocParser::T__55)
- | (1ULL << TocParser::T__56))) != 0))) {
+ | (1ULL << TocParser::T__56)
+ | (1ULL << TocParser::T__57))) != 0))) {
_errHandler->recoverInline(this);
}
else {
@@ -2863,7 +3062,7 @@ TocParser::Binary_opContext* TocParser::binary_op() {
bool TocParser::sempred(RuleContext *context, size_t ruleIndex, size_t predicateIndex) {
switch (ruleIndex) {
- case 30: return exprSempred(dynamic_cast<ExprContext *>(context), predicateIndex);
+ case 31: return exprSempred(dynamic_cast<ExprContext *>(context), predicateIndex);
default:
break;
@@ -2898,28 +3097,28 @@ std::vector<std::string> TocParser::_ruleNames = {
"prog", "decl", "namespaceDecl", "varDecl", "var", "varInit", "type",
"typeModifier", "namespaceSpecifier", "funcDecl", "func", "parameter",
"body", "structDecl", "structMember", "structVar", "structMethod", "privateDecl",
- "genericDecl", "stmt", "ifStmt", "elseIfStmt", "elseStmt", "switchStmt",
- "switchBody", "switchCase", "forStmt", "whileStmt", "assignStmt", "returnStmt",
- "expr", "literal", "funcName", "varName", "typeName", "structName", "postfix_op",
- "prefix_op", "binary_op"
+ "genericDecl", "genericInstantiation", "stmt", "ifStmt", "elseIfStmt",
+ "elseStmt", "switchStmt", "switchBody", "switchCase", "forStmt", "whileStmt",
+ "assignStmt", "returnStmt", "expr", "dot", "arrow", "literal", "funcName",
+ "varName", "typeName", "structName", "postfix_op", "prefix_op", "binary_op"
};
std::vector<std::string> TocParser::_literalNames = {
"", "';'", "'namespace'", "'{'", "'}'", "'var'", "':'", "'='", "'*'",
"'['", "']'", "'::'", "'func'", "'('", "')'", "','", "'struct'", "'private'",
"'<'", "'>'", "'if'", "'else'", "'switch'", "'case'", "'for'", "'while'",
- "'return'", "'.'", "'\u003F'", "'++'", "'--'", "'+'", "'-'", "'!'", "'~'",
- "'&'", "'/'", "'%'", "'|'", "'^'", "'=='", "'!='", "'<='", "'>='", "'<<'",
- "'>>'", "'||'", "'&&'", "'&='", "'|='", "'^='", "'<<='", "'>>='", "'+='",
- "'-='", "'*='", "'/='", "'%='"
+ "'return'", "'.'", "'\u003F'", "'->'", "'++'", "'--'", "'+'", "'-'", "'!'",
+ "'~'", "'&'", "'/'", "'%'", "'|'", "'^'", "'=='", "'!='", "'<='", "'>='",
+ "'<<'", "'>>'", "'||'", "'&&'", "'&='", "'|='", "'^='", "'<<='", "'>>='",
+ "'+='", "'-='", "'*='", "'/='", "'%='"
};
std::vector<std::string> TocParser::_symbolicNames = {
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
"", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "",
- "", "", "", "", "INT_LIT", "DECIMAL_LIT", "BOOL_LIT", "StringLit", "NAME",
- "WS", "NEWLINE"
+ "", "", "", "", "", "INT_LIT", "DECIMAL_LIT", "BOOL_LIT", "StringLit",
+ "NAME", "WS", "NEWLINE"
};
dfa::Vocabulary TocParser::_vocabulary(_literalNames, _symbolicNames);
@@ -2942,7 +3141,7 @@ TocParser::Initializer::Initializer() {
static const uint16_t serializedATNSegment0[] = {
0x3, 0x608b, 0xa72a, 0x8133, 0xb9ed, 0x417c, 0x3be7, 0x7786, 0x5964,
- 0x3, 0x42, 0x190, 0x4, 0x2, 0x9, 0x2, 0x4, 0x3, 0x9, 0x3, 0x4, 0x4,
+ 0x3, 0x43, 0x1b2, 0x4, 0x2, 0x9, 0x2, 0x4, 0x3, 0x9, 0x3, 0x4, 0x4,
0x9, 0x4, 0x4, 0x5, 0x9, 0x5, 0x4, 0x6, 0x9, 0x6, 0x4, 0x7, 0x9,
0x7, 0x4, 0x8, 0x9, 0x8, 0x4, 0x9, 0x9, 0x9, 0x4, 0xa, 0x9, 0xa,
0x4, 0xb, 0x9, 0xb, 0x4, 0xc, 0x9, 0xc, 0x4, 0xd, 0x9, 0xd, 0x4,
@@ -2954,271 +3153,297 @@ TocParser::Initializer::Initializer() {
0x9, 0x1d, 0x4, 0x1e, 0x9, 0x1e, 0x4, 0x1f, 0x9, 0x1f, 0x4, 0x20,
0x9, 0x20, 0x4, 0x21, 0x9, 0x21, 0x4, 0x22, 0x9, 0x22, 0x4, 0x23,
0x9, 0x23, 0x4, 0x24, 0x9, 0x24, 0x4, 0x25, 0x9, 0x25, 0x4, 0x26,
- 0x9, 0x26, 0x4, 0x27, 0x9, 0x27, 0x4, 0x28, 0x9, 0x28, 0x3, 0x2,
- 0x6, 0x2, 0x52, 0xa, 0x2, 0xd, 0x2, 0xe, 0x2, 0x53, 0x3, 0x2, 0x3,
+ 0x9, 0x26, 0x4, 0x27, 0x9, 0x27, 0x4, 0x28, 0x9, 0x28, 0x4, 0x29,
+ 0x9, 0x29, 0x4, 0x2a, 0x9, 0x2a, 0x4, 0x2b, 0x9, 0x2b, 0x3, 0x2,
+ 0x6, 0x2, 0x58, 0xa, 0x2, 0xd, 0x2, 0xe, 0x2, 0x59, 0x3, 0x2, 0x3,
0x2, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3, 0x3,
- 0x5, 0x3, 0x5e, 0xa, 0x3, 0x3, 0x4, 0x3, 0x4, 0x3, 0x4, 0x3, 0x4,
- 0x7, 0x4, 0x64, 0xa, 0x4, 0xc, 0x4, 0xe, 0x4, 0x67, 0xb, 0x4, 0x3,
+ 0x5, 0x3, 0x64, 0xa, 0x3, 0x3, 0x4, 0x3, 0x4, 0x3, 0x4, 0x3, 0x4,
+ 0x7, 0x4, 0x6a, 0xa, 0x4, 0xc, 0x4, 0xe, 0x4, 0x6d, 0xb, 0x4, 0x3,
0x4, 0x3, 0x4, 0x3, 0x5, 0x3, 0x5, 0x3, 0x5, 0x3, 0x6, 0x3, 0x6,
- 0x3, 0x6, 0x3, 0x6, 0x3, 0x6, 0x3, 0x6, 0x5, 0x6, 0x74, 0xa, 0x6,
+ 0x3, 0x6, 0x3, 0x6, 0x3, 0x6, 0x3, 0x6, 0x5, 0x6, 0x7a, 0xa, 0x6,
0x3, 0x7, 0x3, 0x7, 0x3, 0x7, 0x3, 0x7, 0x3, 0x7, 0x3, 0x7, 0x3,
- 0x7, 0x3, 0x8, 0x7, 0x8, 0x7e, 0xa, 0x8, 0xc, 0x8, 0xe, 0x8, 0x81,
- 0xb, 0x8, 0x3, 0x8, 0x3, 0x8, 0x7, 0x8, 0x85, 0xa, 0x8, 0xc, 0x8,
- 0xe, 0x8, 0x88, 0xb, 0x8, 0x3, 0x9, 0x3, 0x9, 0x3, 0x9, 0x5, 0x9,
- 0x8d, 0xa, 0x9, 0x3, 0x9, 0x5, 0x9, 0x90, 0xa, 0x9, 0x3, 0xa, 0x3,
- 0xa, 0x3, 0xa, 0x3, 0xb, 0x3, 0xb, 0x3, 0xb, 0x3, 0xc, 0x3, 0xc,
- 0x5, 0xc, 0x9a, 0xa, 0xc, 0x3, 0xc, 0x3, 0xc, 0x3, 0xc, 0x3, 0xc,
- 0x3, 0xc, 0x3, 0xc, 0x3, 0xc, 0x3, 0xc, 0x5, 0xc, 0xa4, 0xa, 0xc,
- 0x3, 0xd, 0x3, 0xd, 0x3, 0xd, 0x7, 0xd, 0xa9, 0xa, 0xd, 0xc, 0xd,
- 0xe, 0xd, 0xac, 0xb, 0xd, 0x5, 0xd, 0xae, 0xa, 0xd, 0x3, 0xe, 0x3,
- 0xe, 0x7, 0xe, 0xb2, 0xa, 0xe, 0xc, 0xe, 0xe, 0xe, 0xb5, 0xb, 0xe,
- 0x3, 0xe, 0x3, 0xe, 0x3, 0xf, 0x3, 0xf, 0x3, 0xf, 0x5, 0xf, 0xbc,
- 0xa, 0xf, 0x3, 0xf, 0x3, 0xf, 0x7, 0xf, 0xc0, 0xa, 0xf, 0xc, 0xf,
- 0xe, 0xf, 0xc3, 0xb, 0xf, 0x3, 0xf, 0x3, 0xf, 0x3, 0x10, 0x5, 0x10,
- 0xc8, 0xa, 0x10, 0x3, 0x10, 0x3, 0x10, 0x5, 0x10, 0xcc, 0xa, 0x10,
- 0x3, 0x11, 0x3, 0x11, 0x3, 0x11, 0x3, 0x12, 0x3, 0x12, 0x3, 0x13,
- 0x3, 0x13, 0x3, 0x14, 0x3, 0x14, 0x3, 0x14, 0x3, 0x14, 0x7, 0x14,
- 0xd9, 0xa, 0x14, 0xc, 0x14, 0xe, 0x14, 0xdc, 0xb, 0x14, 0x3, 0x14,
- 0x3, 0x14, 0x3, 0x15, 0x3, 0x15, 0x3, 0x15, 0x3, 0x15, 0x3, 0x15,
- 0x3, 0x15, 0x3, 0x15, 0x3, 0x15, 0x3, 0x15, 0x3, 0x15, 0x3, 0x15,
- 0x3, 0x15, 0x3, 0x15, 0x3, 0x15, 0x3, 0x15, 0x3, 0x15, 0x5, 0x15,
- 0xf0, 0xa, 0x15, 0x3, 0x16, 0x3, 0x16, 0x3, 0x16, 0x3, 0x16, 0x7,
- 0x16, 0xf6, 0xa, 0x16, 0xc, 0x16, 0xe, 0x16, 0xf9, 0xb, 0x16, 0x3,
- 0x16, 0x5, 0x16, 0xfc, 0xa, 0x16, 0x3, 0x17, 0x3, 0x17, 0x3, 0x17,
- 0x3, 0x17, 0x3, 0x17, 0x3, 0x18, 0x3, 0x18, 0x3, 0x18, 0x3, 0x19,
- 0x3, 0x19, 0x3, 0x19, 0x3, 0x19, 0x3, 0x1a, 0x3, 0x1a, 0x7, 0x1a,
- 0x10c, 0xa, 0x1a, 0xc, 0x1a, 0xe, 0x1a, 0x10f, 0xb, 0x1a, 0x3, 0x1a,
- 0x3, 0x1a, 0x3, 0x1b, 0x3, 0x1b, 0x3, 0x1b, 0x3, 0x1b, 0x3, 0x1c,
- 0x3, 0x1c, 0x3, 0x1c, 0x3, 0x1c, 0x3, 0x1c, 0x3, 0x1c, 0x3, 0x1c,
- 0x3, 0x1c, 0x3, 0x1d, 0x3, 0x1d, 0x3, 0x1d, 0x3, 0x1d, 0x3, 0x1e,
- 0x3, 0x1e, 0x3, 0x1e, 0x3, 0x1e, 0x3, 0x1f, 0x3, 0x1f, 0x3, 0x1f,
- 0x3, 0x20, 0x3, 0x20, 0x7, 0x20, 0x12c, 0xa, 0x20, 0xc, 0x20, 0xe,
- 0x20, 0x12f, 0xb, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20,
- 0x3, 0x20, 0x7, 0x20, 0x136, 0xa, 0x20, 0xc, 0x20, 0xe, 0x20, 0x139,
- 0xb, 0x20, 0x5, 0x20, 0x13b, 0xa, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3,
- 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3,
- 0x20, 0x3, 0x20, 0x3, 0x20, 0x7, 0x20, 0x148, 0xa, 0x20, 0xc, 0x20,
- 0xe, 0x20, 0x14b, 0xb, 0x20, 0x3, 0x20, 0x5, 0x20, 0x14e, 0xa, 0x20,
- 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20,
- 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20,
- 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x7, 0x20,
- 0x161, 0xa, 0x20, 0xc, 0x20, 0xe, 0x20, 0x164, 0xb, 0x20, 0x5, 0x20,
- 0x166, 0xa, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3,
- 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3,
- 0x20, 0x3, 0x20, 0x7, 0x20, 0x174, 0xa, 0x20, 0xc, 0x20, 0xe, 0x20,
- 0x177, 0xb, 0x20, 0x3, 0x21, 0x3, 0x21, 0x3, 0x22, 0x3, 0x22, 0x3,
- 0x23, 0x3, 0x23, 0x3, 0x24, 0x3, 0x24, 0x3, 0x25, 0x3, 0x25, 0x3,
- 0x26, 0x3, 0x26, 0x3, 0x27, 0x3, 0x27, 0x3, 0x27, 0x3, 0x27, 0x3,
- 0x27, 0x3, 0x27, 0x3, 0x27, 0x5, 0x27, 0x18c, 0xa, 0x27, 0x3, 0x28,
- 0x3, 0x28, 0x3, 0x28, 0x2, 0x3, 0x3e, 0x29, 0x2, 0x4, 0x6, 0x8, 0xa,
- 0xc, 0xe, 0x10, 0x12, 0x14, 0x16, 0x18, 0x1a, 0x1c, 0x1e, 0x20, 0x22,
- 0x24, 0x26, 0x28, 0x2a, 0x2c, 0x2e, 0x30, 0x32, 0x34, 0x36, 0x38,
- 0x3a, 0x3c, 0x3e, 0x40, 0x42, 0x44, 0x46, 0x48, 0x4a, 0x4c, 0x4e,
- 0x2, 0x5, 0x3, 0x2, 0x3c, 0x3f, 0x3, 0x2, 0x1f, 0x20, 0x6, 0x2, 0xa,
- 0xa, 0x14, 0x15, 0x21, 0x22, 0x25, 0x3b, 0x2, 0x19c, 0x2, 0x51, 0x3,
- 0x2, 0x2, 0x2, 0x4, 0x5d, 0x3, 0x2, 0x2, 0x2, 0x6, 0x5f, 0x3, 0x2,
- 0x2, 0x2, 0x8, 0x6a, 0x3, 0x2, 0x2, 0x2, 0xa, 0x6d, 0x3, 0x2, 0x2,
- 0x2, 0xc, 0x75, 0x3, 0x2, 0x2, 0x2, 0xe, 0x7f, 0x3, 0x2, 0x2, 0x2,
- 0x10, 0x8f, 0x3, 0x2, 0x2, 0x2, 0x12, 0x91, 0x3, 0x2, 0x2, 0x2, 0x14,
- 0x94, 0x3, 0x2, 0x2, 0x2, 0x16, 0x97, 0x3, 0x2, 0x2, 0x2, 0x18, 0xad,
- 0x3, 0x2, 0x2, 0x2, 0x1a, 0xaf, 0x3, 0x2, 0x2, 0x2, 0x1c, 0xb8, 0x3,
- 0x2, 0x2, 0x2, 0x1e, 0xcb, 0x3, 0x2, 0x2, 0x2, 0x20, 0xcd, 0x3, 0x2,
- 0x2, 0x2, 0x22, 0xd0, 0x3, 0x2, 0x2, 0x2, 0x24, 0xd2, 0x3, 0x2, 0x2,
- 0x2, 0x26, 0xd4, 0x3, 0x2, 0x2, 0x2, 0x28, 0xef, 0x3, 0x2, 0x2, 0x2,
- 0x2a, 0xf1, 0x3, 0x2, 0x2, 0x2, 0x2c, 0xfd, 0x3, 0x2, 0x2, 0x2, 0x2e,
- 0x102, 0x3, 0x2, 0x2, 0x2, 0x30, 0x105, 0x3, 0x2, 0x2, 0x2, 0x32,
- 0x109, 0x3, 0x2, 0x2, 0x2, 0x34, 0x112, 0x3, 0x2, 0x2, 0x2, 0x36,
- 0x116, 0x3, 0x2, 0x2, 0x2, 0x38, 0x11e, 0x3, 0x2, 0x2, 0x2, 0x3a,
- 0x122, 0x3, 0x2, 0x2, 0x2, 0x3c, 0x126, 0x3, 0x2, 0x2, 0x2, 0x3e,
- 0x14d, 0x3, 0x2, 0x2, 0x2, 0x40, 0x178, 0x3, 0x2, 0x2, 0x2, 0x42,
- 0x17a, 0x3, 0x2, 0x2, 0x2, 0x44, 0x17c, 0x3, 0x2, 0x2, 0x2, 0x46,
- 0x17e, 0x3, 0x2, 0x2, 0x2, 0x48, 0x180, 0x3, 0x2, 0x2, 0x2, 0x4a,
- 0x182, 0x3, 0x2, 0x2, 0x2, 0x4c, 0x18b, 0x3, 0x2, 0x2, 0x2, 0x4e,
- 0x18d, 0x3, 0x2, 0x2, 0x2, 0x50, 0x52, 0x5, 0x4, 0x3, 0x2, 0x51,
- 0x50, 0x3, 0x2, 0x2, 0x2, 0x52, 0x53, 0x3, 0x2, 0x2, 0x2, 0x53, 0x51,
- 0x3, 0x2, 0x2, 0x2, 0x53, 0x54, 0x3, 0x2, 0x2, 0x2, 0x54, 0x55, 0x3,
- 0x2, 0x2, 0x2, 0x55, 0x56, 0x7, 0x2, 0x2, 0x3, 0x56, 0x3, 0x3, 0x2,
- 0x2, 0x2, 0x57, 0x58, 0x5, 0x8, 0x5, 0x2, 0x58, 0x59, 0x7, 0x3, 0x2,
- 0x2, 0x59, 0x5e, 0x3, 0x2, 0x2, 0x2, 0x5a, 0x5e, 0x5, 0x14, 0xb,
- 0x2, 0x5b, 0x5e, 0x5, 0x1c, 0xf, 0x2, 0x5c, 0x5e, 0x5, 0x6, 0x4,
- 0x2, 0x5d, 0x57, 0x3, 0x2, 0x2, 0x2, 0x5d, 0x5a, 0x3, 0x2, 0x2, 0x2,
- 0x5d, 0x5b, 0x3, 0x2, 0x2, 0x2, 0x5d, 0x5c, 0x3, 0x2, 0x2, 0x2, 0x5e,
- 0x5, 0x3, 0x2, 0x2, 0x2, 0x5f, 0x60, 0x7, 0x4, 0x2, 0x2, 0x60, 0x61,
- 0x5, 0x46, 0x24, 0x2, 0x61, 0x65, 0x7, 0x5, 0x2, 0x2, 0x62, 0x64,
- 0x5, 0x4, 0x3, 0x2, 0x63, 0x62, 0x3, 0x2, 0x2, 0x2, 0x64, 0x67, 0x3,
- 0x2, 0x2, 0x2, 0x65, 0x63, 0x3, 0x2, 0x2, 0x2, 0x65, 0x66, 0x3, 0x2,
- 0x2, 0x2, 0x66, 0x68, 0x3, 0x2, 0x2, 0x2, 0x67, 0x65, 0x3, 0x2, 0x2,
- 0x2, 0x68, 0x69, 0x7, 0x6, 0x2, 0x2, 0x69, 0x7, 0x3, 0x2, 0x2, 0x2,
- 0x6a, 0x6b, 0x7, 0x7, 0x2, 0x2, 0x6b, 0x6c, 0x5, 0xa, 0x6, 0x2, 0x6c,
- 0x9, 0x3, 0x2, 0x2, 0x2, 0x6d, 0x6e, 0x5, 0x44, 0x23, 0x2, 0x6e,
- 0x6f, 0x7, 0x8, 0x2, 0x2, 0x6f, 0x70, 0x5, 0xe, 0x8, 0x2, 0x70, 0x73,
- 0x3, 0x2, 0x2, 0x2, 0x71, 0x72, 0x7, 0x9, 0x2, 0x2, 0x72, 0x74, 0x5,
- 0x3e, 0x20, 0x2, 0x73, 0x71, 0x3, 0x2, 0x2, 0x2, 0x73, 0x74, 0x3,
- 0x2, 0x2, 0x2, 0x74, 0xb, 0x3, 0x2, 0x2, 0x2, 0x75, 0x76, 0x5, 0x44,
- 0x23, 0x2, 0x76, 0x77, 0x7, 0x8, 0x2, 0x2, 0x77, 0x78, 0x5, 0xe,
- 0x8, 0x2, 0x78, 0x79, 0x3, 0x2, 0x2, 0x2, 0x79, 0x7a, 0x7, 0x9, 0x2,
- 0x2, 0x7a, 0x7b, 0x5, 0x3e, 0x20, 0x2, 0x7b, 0xd, 0x3, 0x2, 0x2,
- 0x2, 0x7c, 0x7e, 0x5, 0x12, 0xa, 0x2, 0x7d, 0x7c, 0x3, 0x2, 0x2,
- 0x2, 0x7e, 0x81, 0x3, 0x2, 0x2, 0x2, 0x7f, 0x7d, 0x3, 0x2, 0x2, 0x2,
- 0x7f, 0x80, 0x3, 0x2, 0x2, 0x2, 0x80, 0x82, 0x3, 0x2, 0x2, 0x2, 0x81,
- 0x7f, 0x3, 0x2, 0x2, 0x2, 0x82, 0x86, 0x5, 0x46, 0x24, 0x2, 0x83,
- 0x85, 0x5, 0x10, 0x9, 0x2, 0x84, 0x83, 0x3, 0x2, 0x2, 0x2, 0x85,
- 0x88, 0x3, 0x2, 0x2, 0x2, 0x86, 0x84, 0x3, 0x2, 0x2, 0x2, 0x86, 0x87,
- 0x3, 0x2, 0x2, 0x2, 0x87, 0xf, 0x3, 0x2, 0x2, 0x2, 0x88, 0x86, 0x3,
- 0x2, 0x2, 0x2, 0x89, 0x90, 0x7, 0xa, 0x2, 0x2, 0x8a, 0x8c, 0x7, 0xb,
- 0x2, 0x2, 0x8b, 0x8d, 0x7, 0x3c, 0x2, 0x2, 0x8c, 0x8b, 0x3, 0x2,
- 0x2, 0x2, 0x8c, 0x8d, 0x3, 0x2, 0x2, 0x2, 0x8d, 0x8e, 0x3, 0x2, 0x2,
- 0x2, 0x8e, 0x90, 0x7, 0xc, 0x2, 0x2, 0x8f, 0x89, 0x3, 0x2, 0x2, 0x2,
- 0x8f, 0x8a, 0x3, 0x2, 0x2, 0x2, 0x90, 0x11, 0x3, 0x2, 0x2, 0x2, 0x91,
- 0x92, 0x5, 0x46, 0x24, 0x2, 0x92, 0x93, 0x7, 0xd, 0x2, 0x2, 0x93,
- 0x13, 0x3, 0x2, 0x2, 0x2, 0x94, 0x95, 0x7, 0xe, 0x2, 0x2, 0x95, 0x96,
- 0x5, 0x16, 0xc, 0x2, 0x96, 0x15, 0x3, 0x2, 0x2, 0x2, 0x97, 0x99,
- 0x5, 0x42, 0x22, 0x2, 0x98, 0x9a, 0x5, 0x26, 0x14, 0x2, 0x99, 0x98,
- 0x3, 0x2, 0x2, 0x2, 0x99, 0x9a, 0x3, 0x2, 0x2, 0x2, 0x9a, 0x9b, 0x3,
- 0x2, 0x2, 0x2, 0x9b, 0x9c, 0x7, 0xf, 0x2, 0x2, 0x9c, 0x9d, 0x5, 0x18,
- 0xd, 0x2, 0x9d, 0x9e, 0x7, 0x10, 0x2, 0x2, 0x9e, 0x9f, 0x7, 0x8,
- 0x2, 0x2, 0x9f, 0xa0, 0x5, 0xe, 0x8, 0x2, 0xa0, 0xa3, 0x3, 0x2, 0x2,
- 0x2, 0xa1, 0xa4, 0x5, 0x1a, 0xe, 0x2, 0xa2, 0xa4, 0x7, 0x3, 0x2,
- 0x2, 0xa3, 0xa1, 0x3, 0x2, 0x2, 0x2, 0xa3, 0xa2, 0x3, 0x2, 0x2, 0x2,
- 0xa4, 0x17, 0x3, 0x2, 0x2, 0x2, 0xa5, 0xaa, 0x5, 0xa, 0x6, 0x2, 0xa6,
- 0xa7, 0x7, 0x11, 0x2, 0x2, 0xa7, 0xa9, 0x5, 0xa, 0x6, 0x2, 0xa8,
- 0xa6, 0x3, 0x2, 0x2, 0x2, 0xa9, 0xac, 0x3, 0x2, 0x2, 0x2, 0xaa, 0xa8,
- 0x3, 0x2, 0x2, 0x2, 0xaa, 0xab, 0x3, 0x2, 0x2, 0x2, 0xab, 0xae, 0x3,
- 0x2, 0x2, 0x2, 0xac, 0xaa, 0x3, 0x2, 0x2, 0x2, 0xad, 0xa5, 0x3, 0x2,
- 0x2, 0x2, 0xad, 0xae, 0x3, 0x2, 0x2, 0x2, 0xae, 0x19, 0x3, 0x2, 0x2,
- 0x2, 0xaf, 0xb3, 0x7, 0x5, 0x2, 0x2, 0xb0, 0xb2, 0x5, 0x28, 0x15,
- 0x2, 0xb1, 0xb0, 0x3, 0x2, 0x2, 0x2, 0xb2, 0xb5, 0x3, 0x2, 0x2, 0x2,
- 0xb3, 0xb1, 0x3, 0x2, 0x2, 0x2, 0xb3, 0xb4, 0x3, 0x2, 0x2, 0x2, 0xb4,
- 0xb6, 0x3, 0x2, 0x2, 0x2, 0xb5, 0xb3, 0x3, 0x2, 0x2, 0x2, 0xb6, 0xb7,
- 0x7, 0x6, 0x2, 0x2, 0xb7, 0x1b, 0x3, 0x2, 0x2, 0x2, 0xb8, 0xb9, 0x7,
- 0x12, 0x2, 0x2, 0xb9, 0xbb, 0x5, 0x48, 0x25, 0x2, 0xba, 0xbc, 0x5,
- 0x26, 0x14, 0x2, 0xbb, 0xba, 0x3, 0x2, 0x2, 0x2, 0xbb, 0xbc, 0x3,
- 0x2, 0x2, 0x2, 0xbc, 0xbd, 0x3, 0x2, 0x2, 0x2, 0xbd, 0xc1, 0x7, 0x5,
- 0x2, 0x2, 0xbe, 0xc0, 0x5, 0x1e, 0x10, 0x2, 0xbf, 0xbe, 0x3, 0x2,
- 0x2, 0x2, 0xc0, 0xc3, 0x3, 0x2, 0x2, 0x2, 0xc1, 0xbf, 0x3, 0x2, 0x2,
- 0x2, 0xc1, 0xc2, 0x3, 0x2, 0x2, 0x2, 0xc2, 0xc4, 0x3, 0x2, 0x2, 0x2,
- 0xc3, 0xc1, 0x3, 0x2, 0x2, 0x2, 0xc4, 0xc5, 0x7, 0x6, 0x2, 0x2, 0xc5,
- 0x1d, 0x3, 0x2, 0x2, 0x2, 0xc6, 0xc8, 0x5, 0x24, 0x13, 0x2, 0xc7,
- 0xc6, 0x3, 0x2, 0x2, 0x2, 0xc7, 0xc8, 0x3, 0x2, 0x2, 0x2, 0xc8, 0xc9,
- 0x3, 0x2, 0x2, 0x2, 0xc9, 0xcc, 0x5, 0x20, 0x11, 0x2, 0xca, 0xcc,
- 0x5, 0x22, 0x12, 0x2, 0xcb, 0xc7, 0x3, 0x2, 0x2, 0x2, 0xcb, 0xca,
- 0x3, 0x2, 0x2, 0x2, 0xcc, 0x1f, 0x3, 0x2, 0x2, 0x2, 0xcd, 0xce, 0x5,
- 0xa, 0x6, 0x2, 0xce, 0xcf, 0x7, 0x3, 0x2, 0x2, 0xcf, 0x21, 0x3, 0x2,
- 0x2, 0x2, 0xd0, 0xd1, 0x5, 0x16, 0xc, 0x2, 0xd1, 0x23, 0x3, 0x2,
- 0x2, 0x2, 0xd2, 0xd3, 0x7, 0x13, 0x2, 0x2, 0xd3, 0x25, 0x3, 0x2,
- 0x2, 0x2, 0xd4, 0xd5, 0x7, 0x14, 0x2, 0x2, 0xd5, 0xda, 0x5, 0x46,
- 0x24, 0x2, 0xd6, 0xd7, 0x7, 0x11, 0x2, 0x2, 0xd7, 0xd9, 0x5, 0x46,
- 0x24, 0x2, 0xd8, 0xd6, 0x3, 0x2, 0x2, 0x2, 0xd9, 0xdc, 0x3, 0x2,
- 0x2, 0x2, 0xda, 0xd8, 0x3, 0x2, 0x2, 0x2, 0xda, 0xdb, 0x3, 0x2, 0x2,
- 0x2, 0xdb, 0xdd, 0x3, 0x2, 0x2, 0x2, 0xdc, 0xda, 0x3, 0x2, 0x2, 0x2,
- 0xdd, 0xde, 0x7, 0x15, 0x2, 0x2, 0xde, 0x27, 0x3, 0x2, 0x2, 0x2,
- 0xdf, 0xe0, 0x5, 0x8, 0x5, 0x2, 0xe0, 0xe1, 0x7, 0x3, 0x2, 0x2, 0xe1,
- 0xf0, 0x3, 0x2, 0x2, 0x2, 0xe2, 0xf0, 0x5, 0x2a, 0x16, 0x2, 0xe3,
- 0xf0, 0x5, 0x30, 0x19, 0x2, 0xe4, 0xf0, 0x5, 0x36, 0x1c, 0x2, 0xe5,
- 0xf0, 0x5, 0x38, 0x1d, 0x2, 0xe6, 0xe7, 0x5, 0x3a, 0x1e, 0x2, 0xe7,
- 0xe8, 0x7, 0x3, 0x2, 0x2, 0xe8, 0xf0, 0x3, 0x2, 0x2, 0x2, 0xe9, 0xea,
- 0x5, 0x3c, 0x1f, 0x2, 0xea, 0xeb, 0x7, 0x3, 0x2, 0x2, 0xeb, 0xf0,
- 0x3, 0x2, 0x2, 0x2, 0xec, 0xed, 0x5, 0x3e, 0x20, 0x2, 0xed, 0xee,
- 0x7, 0x3, 0x2, 0x2, 0xee, 0xf0, 0x3, 0x2, 0x2, 0x2, 0xef, 0xdf, 0x3,
- 0x2, 0x2, 0x2, 0xef, 0xe2, 0x3, 0x2, 0x2, 0x2, 0xef, 0xe3, 0x3, 0x2,
- 0x2, 0x2, 0xef, 0xe4, 0x3, 0x2, 0x2, 0x2, 0xef, 0xe5, 0x3, 0x2, 0x2,
- 0x2, 0xef, 0xe6, 0x3, 0x2, 0x2, 0x2, 0xef, 0xe9, 0x3, 0x2, 0x2, 0x2,
- 0xef, 0xec, 0x3, 0x2, 0x2, 0x2, 0xf0, 0x29, 0x3, 0x2, 0x2, 0x2, 0xf1,
- 0xf2, 0x7, 0x16, 0x2, 0x2, 0xf2, 0xf3, 0x5, 0x3e, 0x20, 0x2, 0xf3,
- 0xf7, 0x5, 0x1a, 0xe, 0x2, 0xf4, 0xf6, 0x5, 0x2c, 0x17, 0x2, 0xf5,
- 0xf4, 0x3, 0x2, 0x2, 0x2, 0xf6, 0xf9, 0x3, 0x2, 0x2, 0x2, 0xf7, 0xf5,
- 0x3, 0x2, 0x2, 0x2, 0xf7, 0xf8, 0x3, 0x2, 0x2, 0x2, 0xf8, 0xfb, 0x3,
- 0x2, 0x2, 0x2, 0xf9, 0xf7, 0x3, 0x2, 0x2, 0x2, 0xfa, 0xfc, 0x5, 0x2e,
- 0x18, 0x2, 0xfb, 0xfa, 0x3, 0x2, 0x2, 0x2, 0xfb, 0xfc, 0x3, 0x2,
- 0x2, 0x2, 0xfc, 0x2b, 0x3, 0x2, 0x2, 0x2, 0xfd, 0xfe, 0x7, 0x17,
- 0x2, 0x2, 0xfe, 0xff, 0x7, 0x16, 0x2, 0x2, 0xff, 0x100, 0x5, 0x3e,
- 0x20, 0x2, 0x100, 0x101, 0x5, 0x1a, 0xe, 0x2, 0x101, 0x2d, 0x3, 0x2,
- 0x2, 0x2, 0x102, 0x103, 0x7, 0x17, 0x2, 0x2, 0x103, 0x104, 0x5, 0x1a,
- 0xe, 0x2, 0x104, 0x2f, 0x3, 0x2, 0x2, 0x2, 0x105, 0x106, 0x7, 0x18,
- 0x2, 0x2, 0x106, 0x107, 0x5, 0x3e, 0x20, 0x2, 0x107, 0x108, 0x5,
- 0x32, 0x1a, 0x2, 0x108, 0x31, 0x3, 0x2, 0x2, 0x2, 0x109, 0x10d, 0x7,
- 0x5, 0x2, 0x2, 0x10a, 0x10c, 0x5, 0x34, 0x1b, 0x2, 0x10b, 0x10a,
+ 0x7, 0x3, 0x8, 0x7, 0x8, 0x84, 0xa, 0x8, 0xc, 0x8, 0xe, 0x8, 0x87,
+ 0xb, 0x8, 0x3, 0x8, 0x3, 0x8, 0x5, 0x8, 0x8b, 0xa, 0x8, 0x3, 0x8,
+ 0x7, 0x8, 0x8e, 0xa, 0x8, 0xc, 0x8, 0xe, 0x8, 0x91, 0xb, 0x8, 0x3,
+ 0x9, 0x3, 0x9, 0x3, 0x9, 0x5, 0x9, 0x96, 0xa, 0x9, 0x3, 0x9, 0x5,
+ 0x9, 0x99, 0xa, 0x9, 0x3, 0xa, 0x3, 0xa, 0x3, 0xa, 0x3, 0xb, 0x3,
+ 0xb, 0x3, 0xb, 0x3, 0xc, 0x3, 0xc, 0x5, 0xc, 0xa3, 0xa, 0xc, 0x3,
+ 0xc, 0x3, 0xc, 0x3, 0xc, 0x3, 0xc, 0x3, 0xc, 0x3, 0xc, 0x3, 0xc,
+ 0x3, 0xc, 0x5, 0xc, 0xad, 0xa, 0xc, 0x3, 0xd, 0x3, 0xd, 0x3, 0xd,
+ 0x7, 0xd, 0xb2, 0xa, 0xd, 0xc, 0xd, 0xe, 0xd, 0xb5, 0xb, 0xd, 0x5,
+ 0xd, 0xb7, 0xa, 0xd, 0x3, 0xe, 0x3, 0xe, 0x7, 0xe, 0xbb, 0xa, 0xe,
+ 0xc, 0xe, 0xe, 0xe, 0xbe, 0xb, 0xe, 0x3, 0xe, 0x3, 0xe, 0x3, 0xf,
+ 0x3, 0xf, 0x3, 0xf, 0x5, 0xf, 0xc5, 0xa, 0xf, 0x3, 0xf, 0x3, 0xf,
+ 0x7, 0xf, 0xc9, 0xa, 0xf, 0xc, 0xf, 0xe, 0xf, 0xcc, 0xb, 0xf, 0x3,
+ 0xf, 0x3, 0xf, 0x3, 0x10, 0x5, 0x10, 0xd1, 0xa, 0x10, 0x3, 0x10,
+ 0x3, 0x10, 0x5, 0x10, 0xd5, 0xa, 0x10, 0x3, 0x11, 0x3, 0x11, 0x3,
+ 0x11, 0x3, 0x12, 0x3, 0x12, 0x3, 0x13, 0x3, 0x13, 0x3, 0x14, 0x3,
+ 0x14, 0x3, 0x14, 0x3, 0x14, 0x7, 0x14, 0xe2, 0xa, 0x14, 0xc, 0x14,
+ 0xe, 0x14, 0xe5, 0xb, 0x14, 0x3, 0x14, 0x3, 0x14, 0x3, 0x15, 0x3,
+ 0x15, 0x3, 0x15, 0x3, 0x15, 0x7, 0x15, 0xed, 0xa, 0x15, 0xc, 0x15,
+ 0xe, 0x15, 0xf0, 0xb, 0x15, 0x3, 0x15, 0x3, 0x15, 0x3, 0x16, 0x3,
+ 0x16, 0x3, 0x16, 0x3, 0x16, 0x3, 0x16, 0x3, 0x16, 0x3, 0x16, 0x3,
+ 0x16, 0x3, 0x16, 0x3, 0x16, 0x3, 0x16, 0x3, 0x16, 0x3, 0x16, 0x3,
+ 0x16, 0x3, 0x16, 0x3, 0x16, 0x5, 0x16, 0x104, 0xa, 0x16, 0x3, 0x17,
+ 0x3, 0x17, 0x3, 0x17, 0x3, 0x17, 0x7, 0x17, 0x10a, 0xa, 0x17, 0xc,
+ 0x17, 0xe, 0x17, 0x10d, 0xb, 0x17, 0x3, 0x17, 0x5, 0x17, 0x110, 0xa,
+ 0x17, 0x3, 0x18, 0x3, 0x18, 0x3, 0x18, 0x3, 0x18, 0x3, 0x18, 0x3,
+ 0x19, 0x3, 0x19, 0x3, 0x19, 0x3, 0x1a, 0x3, 0x1a, 0x3, 0x1a, 0x3,
+ 0x1a, 0x3, 0x1b, 0x3, 0x1b, 0x7, 0x1b, 0x120, 0xa, 0x1b, 0xc, 0x1b,
+ 0xe, 0x1b, 0x123, 0xb, 0x1b, 0x3, 0x1b, 0x3, 0x1b, 0x3, 0x1c, 0x3,
+ 0x1c, 0x3, 0x1c, 0x3, 0x1c, 0x3, 0x1d, 0x3, 0x1d, 0x3, 0x1d, 0x3,
+ 0x1d, 0x3, 0x1d, 0x3, 0x1d, 0x3, 0x1d, 0x3, 0x1d, 0x3, 0x1e, 0x3,
+ 0x1e, 0x3, 0x1e, 0x3, 0x1e, 0x3, 0x1f, 0x3, 0x1f, 0x3, 0x1f, 0x3,
+ 0x1f, 0x3, 0x20, 0x3, 0x20, 0x3, 0x20, 0x3, 0x21, 0x3, 0x21, 0x7,
+ 0x21, 0x140, 0xa, 0x21, 0xc, 0x21, 0xe, 0x21, 0x143, 0xb, 0x21, 0x3,
+ 0x21, 0x3, 0x21, 0x5, 0x21, 0x147, 0xa, 0x21, 0x3, 0x21, 0x3, 0x21,
+ 0x3, 0x21, 0x3, 0x21, 0x7, 0x21, 0x14d, 0xa, 0x21, 0xc, 0x21, 0xe,
+ 0x21, 0x150, 0xb, 0x21, 0x5, 0x21, 0x152, 0xa, 0x21, 0x3, 0x21, 0x3,
+ 0x21, 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x3,
+ 0x21, 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x7, 0x21, 0x15f, 0xa, 0x21,
+ 0xc, 0x21, 0xe, 0x21, 0x162, 0xb, 0x21, 0x3, 0x21, 0x5, 0x21, 0x165,
+ 0xa, 0x21, 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x3, 0x21,
+ 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x3, 0x21,
+ 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x5, 0x21, 0x175, 0xa, 0x21, 0x3,
+ 0x21, 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x7, 0x21, 0x17b, 0xa, 0x21,
+ 0xc, 0x21, 0xe, 0x21, 0x17e, 0xb, 0x21, 0x5, 0x21, 0x180, 0xa, 0x21,
+ 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x5, 0x21,
+ 0x187, 0xa, 0x21, 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x3,
+ 0x21, 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x3, 0x21, 0x7, 0x21, 0x192,
+ 0xa, 0x21, 0xc, 0x21, 0xe, 0x21, 0x195, 0xb, 0x21, 0x3, 0x22, 0x3,
+ 0x22, 0x3, 0x23, 0x3, 0x23, 0x3, 0x24, 0x3, 0x24, 0x3, 0x25, 0x3,
+ 0x25, 0x3, 0x26, 0x3, 0x26, 0x3, 0x27, 0x3, 0x27, 0x3, 0x28, 0x3,
+ 0x28, 0x3, 0x29, 0x3, 0x29, 0x3, 0x2a, 0x3, 0x2a, 0x3, 0x2a, 0x3,
+ 0x2a, 0x3, 0x2a, 0x3, 0x2a, 0x3, 0x2a, 0x5, 0x2a, 0x1ae, 0xa, 0x2a,
+ 0x3, 0x2b, 0x3, 0x2b, 0x3, 0x2b, 0x2, 0x3, 0x40, 0x2c, 0x2, 0x4,
+ 0x6, 0x8, 0xa, 0xc, 0xe, 0x10, 0x12, 0x14, 0x16, 0x18, 0x1a, 0x1c,
+ 0x1e, 0x20, 0x22, 0x24, 0x26, 0x28, 0x2a, 0x2c, 0x2e, 0x30, 0x32,
+ 0x34, 0x36, 0x38, 0x3a, 0x3c, 0x3e, 0x40, 0x42, 0x44, 0x46, 0x48,
+ 0x4a, 0x4c, 0x4e, 0x50, 0x52, 0x54, 0x2, 0x5, 0x3, 0x2, 0x3d, 0x40,
+ 0x3, 0x2, 0x20, 0x21, 0x6, 0x2, 0xa, 0xa, 0x14, 0x15, 0x22, 0x23,
+ 0x26, 0x3c, 0x2, 0x1c0, 0x2, 0x57, 0x3, 0x2, 0x2, 0x2, 0x4, 0x63,
+ 0x3, 0x2, 0x2, 0x2, 0x6, 0x65, 0x3, 0x2, 0x2, 0x2, 0x8, 0x70, 0x3,
+ 0x2, 0x2, 0x2, 0xa, 0x73, 0x3, 0x2, 0x2, 0x2, 0xc, 0x7b, 0x3, 0x2,
+ 0x2, 0x2, 0xe, 0x85, 0x3, 0x2, 0x2, 0x2, 0x10, 0x98, 0x3, 0x2, 0x2,
+ 0x2, 0x12, 0x9a, 0x3, 0x2, 0x2, 0x2, 0x14, 0x9d, 0x3, 0x2, 0x2, 0x2,
+ 0x16, 0xa0, 0x3, 0x2, 0x2, 0x2, 0x18, 0xb6, 0x3, 0x2, 0x2, 0x2, 0x1a,
+ 0xb8, 0x3, 0x2, 0x2, 0x2, 0x1c, 0xc1, 0x3, 0x2, 0x2, 0x2, 0x1e, 0xd4,
+ 0x3, 0x2, 0x2, 0x2, 0x20, 0xd6, 0x3, 0x2, 0x2, 0x2, 0x22, 0xd9, 0x3,
+ 0x2, 0x2, 0x2, 0x24, 0xdb, 0x3, 0x2, 0x2, 0x2, 0x26, 0xdd, 0x3, 0x2,
+ 0x2, 0x2, 0x28, 0xe8, 0x3, 0x2, 0x2, 0x2, 0x2a, 0x103, 0x3, 0x2,
+ 0x2, 0x2, 0x2c, 0x105, 0x3, 0x2, 0x2, 0x2, 0x2e, 0x111, 0x3, 0x2,
+ 0x2, 0x2, 0x30, 0x116, 0x3, 0x2, 0x2, 0x2, 0x32, 0x119, 0x3, 0x2,
+ 0x2, 0x2, 0x34, 0x11d, 0x3, 0x2, 0x2, 0x2, 0x36, 0x126, 0x3, 0x2,
+ 0x2, 0x2, 0x38, 0x12a, 0x3, 0x2, 0x2, 0x2, 0x3a, 0x132, 0x3, 0x2,
+ 0x2, 0x2, 0x3c, 0x136, 0x3, 0x2, 0x2, 0x2, 0x3e, 0x13a, 0x3, 0x2,
+ 0x2, 0x2, 0x40, 0x164, 0x3, 0x2, 0x2, 0x2, 0x42, 0x196, 0x3, 0x2,
+ 0x2, 0x2, 0x44, 0x198, 0x3, 0x2, 0x2, 0x2, 0x46, 0x19a, 0x3, 0x2,
+ 0x2, 0x2, 0x48, 0x19c, 0x3, 0x2, 0x2, 0x2, 0x4a, 0x19e, 0x3, 0x2,
+ 0x2, 0x2, 0x4c, 0x1a0, 0x3, 0x2, 0x2, 0x2, 0x4e, 0x1a2, 0x3, 0x2,
+ 0x2, 0x2, 0x50, 0x1a4, 0x3, 0x2, 0x2, 0x2, 0x52, 0x1ad, 0x3, 0x2,
+ 0x2, 0x2, 0x54, 0x1af, 0x3, 0x2, 0x2, 0x2, 0x56, 0x58, 0x5, 0x4,
+ 0x3, 0x2, 0x57, 0x56, 0x3, 0x2, 0x2, 0x2, 0x58, 0x59, 0x3, 0x2, 0x2,
+ 0x2, 0x59, 0x57, 0x3, 0x2, 0x2, 0x2, 0x59, 0x5a, 0x3, 0x2, 0x2, 0x2,
+ 0x5a, 0x5b, 0x3, 0x2, 0x2, 0x2, 0x5b, 0x5c, 0x7, 0x2, 0x2, 0x3, 0x5c,
+ 0x3, 0x3, 0x2, 0x2, 0x2, 0x5d, 0x5e, 0x5, 0x8, 0x5, 0x2, 0x5e, 0x5f,
+ 0x7, 0x3, 0x2, 0x2, 0x5f, 0x64, 0x3, 0x2, 0x2, 0x2, 0x60, 0x64, 0x5,
+ 0x14, 0xb, 0x2, 0x61, 0x64, 0x5, 0x1c, 0xf, 0x2, 0x62, 0x64, 0x5,
+ 0x6, 0x4, 0x2, 0x63, 0x5d, 0x3, 0x2, 0x2, 0x2, 0x63, 0x60, 0x3, 0x2,
+ 0x2, 0x2, 0x63, 0x61, 0x3, 0x2, 0x2, 0x2, 0x63, 0x62, 0x3, 0x2, 0x2,
+ 0x2, 0x64, 0x5, 0x3, 0x2, 0x2, 0x2, 0x65, 0x66, 0x7, 0x4, 0x2, 0x2,
+ 0x66, 0x67, 0x5, 0x4c, 0x27, 0x2, 0x67, 0x6b, 0x7, 0x5, 0x2, 0x2,
+ 0x68, 0x6a, 0x5, 0x4, 0x3, 0x2, 0x69, 0x68, 0x3, 0x2, 0x2, 0x2, 0x6a,
+ 0x6d, 0x3, 0x2, 0x2, 0x2, 0x6b, 0x69, 0x3, 0x2, 0x2, 0x2, 0x6b, 0x6c,
+ 0x3, 0x2, 0x2, 0x2, 0x6c, 0x6e, 0x3, 0x2, 0x2, 0x2, 0x6d, 0x6b, 0x3,
+ 0x2, 0x2, 0x2, 0x6e, 0x6f, 0x7, 0x6, 0x2, 0x2, 0x6f, 0x7, 0x3, 0x2,
+ 0x2, 0x2, 0x70, 0x71, 0x7, 0x7, 0x2, 0x2, 0x71, 0x72, 0x5, 0xa, 0x6,
+ 0x2, 0x72, 0x9, 0x3, 0x2, 0x2, 0x2, 0x73, 0x74, 0x5, 0x4a, 0x26,
+ 0x2, 0x74, 0x75, 0x7, 0x8, 0x2, 0x2, 0x75, 0x76, 0x5, 0xe, 0x8, 0x2,
+ 0x76, 0x79, 0x3, 0x2, 0x2, 0x2, 0x77, 0x78, 0x7, 0x9, 0x2, 0x2, 0x78,
+ 0x7a, 0x5, 0x40, 0x21, 0x2, 0x79, 0x77, 0x3, 0x2, 0x2, 0x2, 0x79,
+ 0x7a, 0x3, 0x2, 0x2, 0x2, 0x7a, 0xb, 0x3, 0x2, 0x2, 0x2, 0x7b, 0x7c,
+ 0x5, 0x4a, 0x26, 0x2, 0x7c, 0x7d, 0x7, 0x8, 0x2, 0x2, 0x7d, 0x7e,
+ 0x5, 0xe, 0x8, 0x2, 0x7e, 0x7f, 0x3, 0x2, 0x2, 0x2, 0x7f, 0x80, 0x7,
+ 0x9, 0x2, 0x2, 0x80, 0x81, 0x5, 0x40, 0x21, 0x2, 0x81, 0xd, 0x3,
+ 0x2, 0x2, 0x2, 0x82, 0x84, 0x5, 0x12, 0xa, 0x2, 0x83, 0x82, 0x3,
+ 0x2, 0x2, 0x2, 0x84, 0x87, 0x3, 0x2, 0x2, 0x2, 0x85, 0x83, 0x3, 0x2,
+ 0x2, 0x2, 0x85, 0x86, 0x3, 0x2, 0x2, 0x2, 0x86, 0x88, 0x3, 0x2, 0x2,
+ 0x2, 0x87, 0x85, 0x3, 0x2, 0x2, 0x2, 0x88, 0x8a, 0x5, 0x4c, 0x27,
+ 0x2, 0x89, 0x8b, 0x5, 0x28, 0x15, 0x2, 0x8a, 0x89, 0x3, 0x2, 0x2,
+ 0x2, 0x8a, 0x8b, 0x3, 0x2, 0x2, 0x2, 0x8b, 0x8f, 0x3, 0x2, 0x2, 0x2,
+ 0x8c, 0x8e, 0x5, 0x10, 0x9, 0x2, 0x8d, 0x8c, 0x3, 0x2, 0x2, 0x2,
+ 0x8e, 0x91, 0x3, 0x2, 0x2, 0x2, 0x8f, 0x8d, 0x3, 0x2, 0x2, 0x2, 0x8f,
+ 0x90, 0x3, 0x2, 0x2, 0x2, 0x90, 0xf, 0x3, 0x2, 0x2, 0x2, 0x91, 0x8f,
+ 0x3, 0x2, 0x2, 0x2, 0x92, 0x99, 0x7, 0xa, 0x2, 0x2, 0x93, 0x95, 0x7,
+ 0xb, 0x2, 0x2, 0x94, 0x96, 0x7, 0x3d, 0x2, 0x2, 0x95, 0x94, 0x3,
+ 0x2, 0x2, 0x2, 0x95, 0x96, 0x3, 0x2, 0x2, 0x2, 0x96, 0x97, 0x3, 0x2,
+ 0x2, 0x2, 0x97, 0x99, 0x7, 0xc, 0x2, 0x2, 0x98, 0x92, 0x3, 0x2, 0x2,
+ 0x2, 0x98, 0x93, 0x3, 0x2, 0x2, 0x2, 0x99, 0x11, 0x3, 0x2, 0x2, 0x2,
+ 0x9a, 0x9b, 0x5, 0x4c, 0x27, 0x2, 0x9b, 0x9c, 0x7, 0xd, 0x2, 0x2,
+ 0x9c, 0x13, 0x3, 0x2, 0x2, 0x2, 0x9d, 0x9e, 0x7, 0xe, 0x2, 0x2, 0x9e,
+ 0x9f, 0x5, 0x16, 0xc, 0x2, 0x9f, 0x15, 0x3, 0x2, 0x2, 0x2, 0xa0,
+ 0xa2, 0x5, 0x48, 0x25, 0x2, 0xa1, 0xa3, 0x5, 0x26, 0x14, 0x2, 0xa2,
+ 0xa1, 0x3, 0x2, 0x2, 0x2, 0xa2, 0xa3, 0x3, 0x2, 0x2, 0x2, 0xa3, 0xa4,
+ 0x3, 0x2, 0x2, 0x2, 0xa4, 0xa5, 0x7, 0xf, 0x2, 0x2, 0xa5, 0xa6, 0x5,
+ 0x18, 0xd, 0x2, 0xa6, 0xa7, 0x7, 0x10, 0x2, 0x2, 0xa7, 0xa8, 0x7,
+ 0x8, 0x2, 0x2, 0xa8, 0xa9, 0x5, 0xe, 0x8, 0x2, 0xa9, 0xac, 0x3, 0x2,
+ 0x2, 0x2, 0xaa, 0xad, 0x5, 0x1a, 0xe, 0x2, 0xab, 0xad, 0x7, 0x3,
+ 0x2, 0x2, 0xac, 0xaa, 0x3, 0x2, 0x2, 0x2, 0xac, 0xab, 0x3, 0x2, 0x2,
+ 0x2, 0xad, 0x17, 0x3, 0x2, 0x2, 0x2, 0xae, 0xb3, 0x5, 0xa, 0x6, 0x2,
+ 0xaf, 0xb0, 0x7, 0x11, 0x2, 0x2, 0xb0, 0xb2, 0x5, 0xa, 0x6, 0x2,
+ 0xb1, 0xaf, 0x3, 0x2, 0x2, 0x2, 0xb2, 0xb5, 0x3, 0x2, 0x2, 0x2, 0xb3,
+ 0xb1, 0x3, 0x2, 0x2, 0x2, 0xb3, 0xb4, 0x3, 0x2, 0x2, 0x2, 0xb4, 0xb7,
+ 0x3, 0x2, 0x2, 0x2, 0xb5, 0xb3, 0x3, 0x2, 0x2, 0x2, 0xb6, 0xae, 0x3,
+ 0x2, 0x2, 0x2, 0xb6, 0xb7, 0x3, 0x2, 0x2, 0x2, 0xb7, 0x19, 0x3, 0x2,
+ 0x2, 0x2, 0xb8, 0xbc, 0x7, 0x5, 0x2, 0x2, 0xb9, 0xbb, 0x5, 0x2a,
+ 0x16, 0x2, 0xba, 0xb9, 0x3, 0x2, 0x2, 0x2, 0xbb, 0xbe, 0x3, 0x2,
+ 0x2, 0x2, 0xbc, 0xba, 0x3, 0x2, 0x2, 0x2, 0xbc, 0xbd, 0x3, 0x2, 0x2,
+ 0x2, 0xbd, 0xbf, 0x3, 0x2, 0x2, 0x2, 0xbe, 0xbc, 0x3, 0x2, 0x2, 0x2,
+ 0xbf, 0xc0, 0x7, 0x6, 0x2, 0x2, 0xc0, 0x1b, 0x3, 0x2, 0x2, 0x2, 0xc1,
+ 0xc2, 0x7, 0x12, 0x2, 0x2, 0xc2, 0xc4, 0x5, 0x4e, 0x28, 0x2, 0xc3,
+ 0xc5, 0x5, 0x26, 0x14, 0x2, 0xc4, 0xc3, 0x3, 0x2, 0x2, 0x2, 0xc4,
+ 0xc5, 0x3, 0x2, 0x2, 0x2, 0xc5, 0xc6, 0x3, 0x2, 0x2, 0x2, 0xc6, 0xca,
+ 0x7, 0x5, 0x2, 0x2, 0xc7, 0xc9, 0x5, 0x1e, 0x10, 0x2, 0xc8, 0xc7,
+ 0x3, 0x2, 0x2, 0x2, 0xc9, 0xcc, 0x3, 0x2, 0x2, 0x2, 0xca, 0xc8, 0x3,
+ 0x2, 0x2, 0x2, 0xca, 0xcb, 0x3, 0x2, 0x2, 0x2, 0xcb, 0xcd, 0x3, 0x2,
+ 0x2, 0x2, 0xcc, 0xca, 0x3, 0x2, 0x2, 0x2, 0xcd, 0xce, 0x7, 0x6, 0x2,
+ 0x2, 0xce, 0x1d, 0x3, 0x2, 0x2, 0x2, 0xcf, 0xd1, 0x5, 0x24, 0x13,
+ 0x2, 0xd0, 0xcf, 0x3, 0x2, 0x2, 0x2, 0xd0, 0xd1, 0x3, 0x2, 0x2, 0x2,
+ 0xd1, 0xd2, 0x3, 0x2, 0x2, 0x2, 0xd2, 0xd5, 0x5, 0x20, 0x11, 0x2,
+ 0xd3, 0xd5, 0x5, 0x22, 0x12, 0x2, 0xd4, 0xd0, 0x3, 0x2, 0x2, 0x2,
+ 0xd4, 0xd3, 0x3, 0x2, 0x2, 0x2, 0xd5, 0x1f, 0x3, 0x2, 0x2, 0x2, 0xd6,
+ 0xd7, 0x5, 0xa, 0x6, 0x2, 0xd7, 0xd8, 0x7, 0x3, 0x2, 0x2, 0xd8, 0x21,
+ 0x3, 0x2, 0x2, 0x2, 0xd9, 0xda, 0x5, 0x16, 0xc, 0x2, 0xda, 0x23,
+ 0x3, 0x2, 0x2, 0x2, 0xdb, 0xdc, 0x7, 0x13, 0x2, 0x2, 0xdc, 0x25,
+ 0x3, 0x2, 0x2, 0x2, 0xdd, 0xde, 0x7, 0x14, 0x2, 0x2, 0xde, 0xe3,
+ 0x5, 0x4c, 0x27, 0x2, 0xdf, 0xe0, 0x7, 0x11, 0x2, 0x2, 0xe0, 0xe2,
+ 0x5, 0x4c, 0x27, 0x2, 0xe1, 0xdf, 0x3, 0x2, 0x2, 0x2, 0xe2, 0xe5,
+ 0x3, 0x2, 0x2, 0x2, 0xe3, 0xe1, 0x3, 0x2, 0x2, 0x2, 0xe3, 0xe4, 0x3,
+ 0x2, 0x2, 0x2, 0xe4, 0xe6, 0x3, 0x2, 0x2, 0x2, 0xe5, 0xe3, 0x3, 0x2,
+ 0x2, 0x2, 0xe6, 0xe7, 0x7, 0x15, 0x2, 0x2, 0xe7, 0x27, 0x3, 0x2,
+ 0x2, 0x2, 0xe8, 0xe9, 0x7, 0x14, 0x2, 0x2, 0xe9, 0xee, 0x5, 0xe,
+ 0x8, 0x2, 0xea, 0xeb, 0x7, 0x11, 0x2, 0x2, 0xeb, 0xed, 0x5, 0xe,
+ 0x8, 0x2, 0xec, 0xea, 0x3, 0x2, 0x2, 0x2, 0xed, 0xf0, 0x3, 0x2, 0x2,
+ 0x2, 0xee, 0xec, 0x3, 0x2, 0x2, 0x2, 0xee, 0xef, 0x3, 0x2, 0x2, 0x2,
+ 0xef, 0xf1, 0x3, 0x2, 0x2, 0x2, 0xf0, 0xee, 0x3, 0x2, 0x2, 0x2, 0xf1,
+ 0xf2, 0x7, 0x15, 0x2, 0x2, 0xf2, 0x29, 0x3, 0x2, 0x2, 0x2, 0xf3,
+ 0xf4, 0x5, 0x8, 0x5, 0x2, 0xf4, 0xf5, 0x7, 0x3, 0x2, 0x2, 0xf5, 0x104,
+ 0x3, 0x2, 0x2, 0x2, 0xf6, 0x104, 0x5, 0x2c, 0x17, 0x2, 0xf7, 0x104,
+ 0x5, 0x32, 0x1a, 0x2, 0xf8, 0x104, 0x5, 0x38, 0x1d, 0x2, 0xf9, 0x104,
+ 0x5, 0x3a, 0x1e, 0x2, 0xfa, 0xfb, 0x5, 0x3c, 0x1f, 0x2, 0xfb, 0xfc,
+ 0x7, 0x3, 0x2, 0x2, 0xfc, 0x104, 0x3, 0x2, 0x2, 0x2, 0xfd, 0xfe,
+ 0x5, 0x3e, 0x20, 0x2, 0xfe, 0xff, 0x7, 0x3, 0x2, 0x2, 0xff, 0x104,
+ 0x3, 0x2, 0x2, 0x2, 0x100, 0x101, 0x5, 0x40, 0x21, 0x2, 0x101, 0x102,
+ 0x7, 0x3, 0x2, 0x2, 0x102, 0x104, 0x3, 0x2, 0x2, 0x2, 0x103, 0xf3,
+ 0x3, 0x2, 0x2, 0x2, 0x103, 0xf6, 0x3, 0x2, 0x2, 0x2, 0x103, 0xf7,
+ 0x3, 0x2, 0x2, 0x2, 0x103, 0xf8, 0x3, 0x2, 0x2, 0x2, 0x103, 0xf9,
+ 0x3, 0x2, 0x2, 0x2, 0x103, 0xfa, 0x3, 0x2, 0x2, 0x2, 0x103, 0xfd,
+ 0x3, 0x2, 0x2, 0x2, 0x103, 0x100, 0x3, 0x2, 0x2, 0x2, 0x104, 0x2b,
+ 0x3, 0x2, 0x2, 0x2, 0x105, 0x106, 0x7, 0x16, 0x2, 0x2, 0x106, 0x107,
+ 0x5, 0x40, 0x21, 0x2, 0x107, 0x10b, 0x5, 0x1a, 0xe, 0x2, 0x108, 0x10a,
+ 0x5, 0x2e, 0x18, 0x2, 0x109, 0x108, 0x3, 0x2, 0x2, 0x2, 0x10a, 0x10d,
+ 0x3, 0x2, 0x2, 0x2, 0x10b, 0x109, 0x3, 0x2, 0x2, 0x2, 0x10b, 0x10c,
0x3, 0x2, 0x2, 0x2, 0x10c, 0x10f, 0x3, 0x2, 0x2, 0x2, 0x10d, 0x10b,
- 0x3, 0x2, 0x2, 0x2, 0x10d, 0x10e, 0x3, 0x2, 0x2, 0x2, 0x10e, 0x110,
- 0x3, 0x2, 0x2, 0x2, 0x10f, 0x10d, 0x3, 0x2, 0x2, 0x2, 0x110, 0x111,
- 0x7, 0x6, 0x2, 0x2, 0x111, 0x33, 0x3, 0x2, 0x2, 0x2, 0x112, 0x113,
- 0x7, 0x19, 0x2, 0x2, 0x113, 0x114, 0x5, 0x3e, 0x20, 0x2, 0x114, 0x115,
- 0x5, 0x1a, 0xe, 0x2, 0x115, 0x35, 0x3, 0x2, 0x2, 0x2, 0x116, 0x117,
- 0x7, 0x1a, 0x2, 0x2, 0x117, 0x118, 0x5, 0xc, 0x7, 0x2, 0x118, 0x119,
- 0x7, 0x11, 0x2, 0x2, 0x119, 0x11a, 0x5, 0x3e, 0x20, 0x2, 0x11a, 0x11b,
- 0x7, 0x11, 0x2, 0x2, 0x11b, 0x11c, 0x5, 0x3e, 0x20, 0x2, 0x11c, 0x11d,
- 0x5, 0x1a, 0xe, 0x2, 0x11d, 0x37, 0x3, 0x2, 0x2, 0x2, 0x11e, 0x11f,
- 0x7, 0x1b, 0x2, 0x2, 0x11f, 0x120, 0x5, 0x3e, 0x20, 0x2, 0x120, 0x121,
- 0x5, 0x1a, 0xe, 0x2, 0x121, 0x39, 0x3, 0x2, 0x2, 0x2, 0x122, 0x123,
- 0x5, 0x3e, 0x20, 0x2, 0x123, 0x124, 0x7, 0x9, 0x2, 0x2, 0x124, 0x125,
- 0x5, 0x3e, 0x20, 0x2, 0x125, 0x3b, 0x3, 0x2, 0x2, 0x2, 0x126, 0x127,
- 0x7, 0x1c, 0x2, 0x2, 0x127, 0x128, 0x5, 0x3e, 0x20, 0x2, 0x128, 0x3d,
- 0x3, 0x2, 0x2, 0x2, 0x129, 0x12d, 0x8, 0x20, 0x1, 0x2, 0x12a, 0x12c,
- 0x5, 0x12, 0xa, 0x2, 0x12b, 0x12a, 0x3, 0x2, 0x2, 0x2, 0x12c, 0x12f,
- 0x3, 0x2, 0x2, 0x2, 0x12d, 0x12b, 0x3, 0x2, 0x2, 0x2, 0x12d, 0x12e,
- 0x3, 0x2, 0x2, 0x2, 0x12e, 0x130, 0x3, 0x2, 0x2, 0x2, 0x12f, 0x12d,
- 0x3, 0x2, 0x2, 0x2, 0x130, 0x131, 0x5, 0x42, 0x22, 0x2, 0x131, 0x13a,
- 0x7, 0xf, 0x2, 0x2, 0x132, 0x137, 0x5, 0x3e, 0x20, 0x2, 0x133, 0x134,
- 0x7, 0x11, 0x2, 0x2, 0x134, 0x136, 0x5, 0x3e, 0x20, 0x2, 0x135, 0x133,
- 0x3, 0x2, 0x2, 0x2, 0x136, 0x139, 0x3, 0x2, 0x2, 0x2, 0x137, 0x135,
- 0x3, 0x2, 0x2, 0x2, 0x137, 0x138, 0x3, 0x2, 0x2, 0x2, 0x138, 0x13b,
- 0x3, 0x2, 0x2, 0x2, 0x139, 0x137, 0x3, 0x2, 0x2, 0x2, 0x13a, 0x132,
- 0x3, 0x2, 0x2, 0x2, 0x13a, 0x13b, 0x3, 0x2, 0x2, 0x2, 0x13b, 0x13c,
- 0x3, 0x2, 0x2, 0x2, 0x13c, 0x13d, 0x7, 0x10, 0x2, 0x2, 0x13d, 0x14e,
- 0x3, 0x2, 0x2, 0x2, 0x13e, 0x14e, 0x5, 0x40, 0x21, 0x2, 0x13f, 0x140,
- 0x7, 0xf, 0x2, 0x2, 0x140, 0x141, 0x5, 0x3e, 0x20, 0x2, 0x141, 0x142,
- 0x7, 0x10, 0x2, 0x2, 0x142, 0x14e, 0x3, 0x2, 0x2, 0x2, 0x143, 0x144,
- 0x5, 0x4c, 0x27, 0x2, 0x144, 0x145, 0x5, 0x3e, 0x20, 0x8, 0x145,
- 0x14e, 0x3, 0x2, 0x2, 0x2, 0x146, 0x148, 0x5, 0x12, 0xa, 0x2, 0x147,
- 0x146, 0x3, 0x2, 0x2, 0x2, 0x148, 0x14b, 0x3, 0x2, 0x2, 0x2, 0x149,
- 0x147, 0x3, 0x2, 0x2, 0x2, 0x149, 0x14a, 0x3, 0x2, 0x2, 0x2, 0x14a,
- 0x14c, 0x3, 0x2, 0x2, 0x2, 0x14b, 0x149, 0x3, 0x2, 0x2, 0x2, 0x14c,
- 0x14e, 0x5, 0x44, 0x23, 0x2, 0x14d, 0x129, 0x3, 0x2, 0x2, 0x2, 0x14d,
- 0x13e, 0x3, 0x2, 0x2, 0x2, 0x14d, 0x13f, 0x3, 0x2, 0x2, 0x2, 0x14d,
- 0x143, 0x3, 0x2, 0x2, 0x2, 0x14d, 0x149, 0x3, 0x2, 0x2, 0x2, 0x14e,
- 0x175, 0x3, 0x2, 0x2, 0x2, 0x14f, 0x150, 0xc, 0x6, 0x2, 0x2, 0x150,
- 0x151, 0x5, 0x4e, 0x28, 0x2, 0x151, 0x152, 0x5, 0x3e, 0x20, 0x7,
- 0x152, 0x174, 0x3, 0x2, 0x2, 0x2, 0x153, 0x154, 0xc, 0x5, 0x2, 0x2,
- 0x154, 0x155, 0x7, 0x1e, 0x2, 0x2, 0x155, 0x156, 0x5, 0x3e, 0x20,
- 0x2, 0x156, 0x157, 0x7, 0x8, 0x2, 0x2, 0x157, 0x158, 0x5, 0x3e, 0x20,
- 0x6, 0x158, 0x174, 0x3, 0x2, 0x2, 0x2, 0x159, 0x15a, 0xc, 0xc, 0x2,
- 0x2, 0x15a, 0x15b, 0x7, 0x1d, 0x2, 0x2, 0x15b, 0x15c, 0x5, 0x42,
- 0x22, 0x2, 0x15c, 0x165, 0x7, 0xf, 0x2, 0x2, 0x15d, 0x162, 0x5, 0x3e,
- 0x20, 0x2, 0x15e, 0x15f, 0x7, 0x11, 0x2, 0x2, 0x15f, 0x161, 0x5,
- 0x3e, 0x20, 0x2, 0x160, 0x15e, 0x3, 0x2, 0x2, 0x2, 0x161, 0x164,
- 0x3, 0x2, 0x2, 0x2, 0x162, 0x160, 0x3, 0x2, 0x2, 0x2, 0x162, 0x163,
- 0x3, 0x2, 0x2, 0x2, 0x163, 0x166, 0x3, 0x2, 0x2, 0x2, 0x164, 0x162,
- 0x3, 0x2, 0x2, 0x2, 0x165, 0x15d, 0x3, 0x2, 0x2, 0x2, 0x165, 0x166,
- 0x3, 0x2, 0x2, 0x2, 0x166, 0x167, 0x3, 0x2, 0x2, 0x2, 0x167, 0x168,
- 0x7, 0x10, 0x2, 0x2, 0x168, 0x174, 0x3, 0x2, 0x2, 0x2, 0x169, 0x16a,
- 0xc, 0x9, 0x2, 0x2, 0x16a, 0x16b, 0x7, 0x1d, 0x2, 0x2, 0x16b, 0x174,
- 0x5, 0x44, 0x23, 0x2, 0x16c, 0x16d, 0xc, 0x7, 0x2, 0x2, 0x16d, 0x174,
- 0x5, 0x4a, 0x26, 0x2, 0x16e, 0x16f, 0xc, 0x4, 0x2, 0x2, 0x16f, 0x170,
- 0x7, 0xb, 0x2, 0x2, 0x170, 0x171, 0x5, 0x3e, 0x20, 0x2, 0x171, 0x172,
- 0x7, 0xc, 0x2, 0x2, 0x172, 0x174, 0x3, 0x2, 0x2, 0x2, 0x173, 0x14f,
- 0x3, 0x2, 0x2, 0x2, 0x173, 0x153, 0x3, 0x2, 0x2, 0x2, 0x173, 0x159,
- 0x3, 0x2, 0x2, 0x2, 0x173, 0x169, 0x3, 0x2, 0x2, 0x2, 0x173, 0x16c,
- 0x3, 0x2, 0x2, 0x2, 0x173, 0x16e, 0x3, 0x2, 0x2, 0x2, 0x174, 0x177,
- 0x3, 0x2, 0x2, 0x2, 0x175, 0x173, 0x3, 0x2, 0x2, 0x2, 0x175, 0x176,
- 0x3, 0x2, 0x2, 0x2, 0x176, 0x3f, 0x3, 0x2, 0x2, 0x2, 0x177, 0x175,
- 0x3, 0x2, 0x2, 0x2, 0x178, 0x179, 0x9, 0x2, 0x2, 0x2, 0x179, 0x41,
- 0x3, 0x2, 0x2, 0x2, 0x17a, 0x17b, 0x7, 0x40, 0x2, 0x2, 0x17b, 0x43,
- 0x3, 0x2, 0x2, 0x2, 0x17c, 0x17d, 0x7, 0x40, 0x2, 0x2, 0x17d, 0x45,
- 0x3, 0x2, 0x2, 0x2, 0x17e, 0x17f, 0x7, 0x40, 0x2, 0x2, 0x17f, 0x47,
- 0x3, 0x2, 0x2, 0x2, 0x180, 0x181, 0x7, 0x40, 0x2, 0x2, 0x181, 0x49,
- 0x3, 0x2, 0x2, 0x2, 0x182, 0x183, 0x9, 0x3, 0x2, 0x2, 0x183, 0x4b,
- 0x3, 0x2, 0x2, 0x2, 0x184, 0x18c, 0x7, 0x21, 0x2, 0x2, 0x185, 0x18c,
- 0x7, 0x22, 0x2, 0x2, 0x186, 0x18c, 0x7, 0x23, 0x2, 0x2, 0x187, 0x18c,
- 0x7, 0x24, 0x2, 0x2, 0x188, 0x18c, 0x7, 0x25, 0x2, 0x2, 0x189, 0x18c,
- 0x7, 0xa, 0x2, 0x2, 0x18a, 0x18c, 0x5, 0x4a, 0x26, 0x2, 0x18b, 0x184,
- 0x3, 0x2, 0x2, 0x2, 0x18b, 0x185, 0x3, 0x2, 0x2, 0x2, 0x18b, 0x186,
- 0x3, 0x2, 0x2, 0x2, 0x18b, 0x187, 0x3, 0x2, 0x2, 0x2, 0x18b, 0x188,
- 0x3, 0x2, 0x2, 0x2, 0x18b, 0x189, 0x3, 0x2, 0x2, 0x2, 0x18b, 0x18a,
- 0x3, 0x2, 0x2, 0x2, 0x18c, 0x4d, 0x3, 0x2, 0x2, 0x2, 0x18d, 0x18e,
- 0x9, 0x4, 0x2, 0x2, 0x18e, 0x4f, 0x3, 0x2, 0x2, 0x2, 0x22, 0x53,
- 0x5d, 0x65, 0x73, 0x7f, 0x86, 0x8c, 0x8f, 0x99, 0xa3, 0xaa, 0xad,
- 0xb3, 0xbb, 0xc1, 0xc7, 0xcb, 0xda, 0xef, 0xf7, 0xfb, 0x10d, 0x12d,
- 0x137, 0x13a, 0x149, 0x14d, 0x162, 0x165, 0x173, 0x175, 0x18b,
+ 0x3, 0x2, 0x2, 0x2, 0x10e, 0x110, 0x5, 0x30, 0x19, 0x2, 0x10f, 0x10e,
+ 0x3, 0x2, 0x2, 0x2, 0x10f, 0x110, 0x3, 0x2, 0x2, 0x2, 0x110, 0x2d,
+ 0x3, 0x2, 0x2, 0x2, 0x111, 0x112, 0x7, 0x17, 0x2, 0x2, 0x112, 0x113,
+ 0x7, 0x16, 0x2, 0x2, 0x113, 0x114, 0x5, 0x40, 0x21, 0x2, 0x114, 0x115,
+ 0x5, 0x1a, 0xe, 0x2, 0x115, 0x2f, 0x3, 0x2, 0x2, 0x2, 0x116, 0x117,
+ 0x7, 0x17, 0x2, 0x2, 0x117, 0x118, 0x5, 0x1a, 0xe, 0x2, 0x118, 0x31,
+ 0x3, 0x2, 0x2, 0x2, 0x119, 0x11a, 0x7, 0x18, 0x2, 0x2, 0x11a, 0x11b,
+ 0x5, 0x40, 0x21, 0x2, 0x11b, 0x11c, 0x5, 0x34, 0x1b, 0x2, 0x11c,
+ 0x33, 0x3, 0x2, 0x2, 0x2, 0x11d, 0x121, 0x7, 0x5, 0x2, 0x2, 0x11e,
+ 0x120, 0x5, 0x36, 0x1c, 0x2, 0x11f, 0x11e, 0x3, 0x2, 0x2, 0x2, 0x120,
+ 0x123, 0x3, 0x2, 0x2, 0x2, 0x121, 0x11f, 0x3, 0x2, 0x2, 0x2, 0x121,
+ 0x122, 0x3, 0x2, 0x2, 0x2, 0x122, 0x124, 0x3, 0x2, 0x2, 0x2, 0x123,
+ 0x121, 0x3, 0x2, 0x2, 0x2, 0x124, 0x125, 0x7, 0x6, 0x2, 0x2, 0x125,
+ 0x35, 0x3, 0x2, 0x2, 0x2, 0x126, 0x127, 0x7, 0x19, 0x2, 0x2, 0x127,
+ 0x128, 0x5, 0x40, 0x21, 0x2, 0x128, 0x129, 0x5, 0x1a, 0xe, 0x2, 0x129,
+ 0x37, 0x3, 0x2, 0x2, 0x2, 0x12a, 0x12b, 0x7, 0x1a, 0x2, 0x2, 0x12b,
+ 0x12c, 0x5, 0xc, 0x7, 0x2, 0x12c, 0x12d, 0x7, 0x11, 0x2, 0x2, 0x12d,
+ 0x12e, 0x5, 0x40, 0x21, 0x2, 0x12e, 0x12f, 0x7, 0x11, 0x2, 0x2, 0x12f,
+ 0x130, 0x5, 0x40, 0x21, 0x2, 0x130, 0x131, 0x5, 0x1a, 0xe, 0x2, 0x131,
+ 0x39, 0x3, 0x2, 0x2, 0x2, 0x132, 0x133, 0x7, 0x1b, 0x2, 0x2, 0x133,
+ 0x134, 0x5, 0x40, 0x21, 0x2, 0x134, 0x135, 0x5, 0x1a, 0xe, 0x2, 0x135,
+ 0x3b, 0x3, 0x2, 0x2, 0x2, 0x136, 0x137, 0x5, 0x40, 0x21, 0x2, 0x137,
+ 0x138, 0x7, 0x9, 0x2, 0x2, 0x138, 0x139, 0x5, 0x40, 0x21, 0x2, 0x139,
+ 0x3d, 0x3, 0x2, 0x2, 0x2, 0x13a, 0x13b, 0x7, 0x1c, 0x2, 0x2, 0x13b,
+ 0x13c, 0x5, 0x40, 0x21, 0x2, 0x13c, 0x3f, 0x3, 0x2, 0x2, 0x2, 0x13d,
+ 0x141, 0x8, 0x21, 0x1, 0x2, 0x13e, 0x140, 0x5, 0x12, 0xa, 0x2, 0x13f,
+ 0x13e, 0x3, 0x2, 0x2, 0x2, 0x140, 0x143, 0x3, 0x2, 0x2, 0x2, 0x141,
+ 0x13f, 0x3, 0x2, 0x2, 0x2, 0x141, 0x142, 0x3, 0x2, 0x2, 0x2, 0x142,
+ 0x144, 0x3, 0x2, 0x2, 0x2, 0x143, 0x141, 0x3, 0x2, 0x2, 0x2, 0x144,
+ 0x146, 0x5, 0x48, 0x25, 0x2, 0x145, 0x147, 0x5, 0x28, 0x15, 0x2,
+ 0x146, 0x145, 0x3, 0x2, 0x2, 0x2, 0x146, 0x147, 0x3, 0x2, 0x2, 0x2,
+ 0x147, 0x148, 0x3, 0x2, 0x2, 0x2, 0x148, 0x151, 0x7, 0xf, 0x2, 0x2,
+ 0x149, 0x14e, 0x5, 0x40, 0x21, 0x2, 0x14a, 0x14b, 0x7, 0x11, 0x2,
+ 0x2, 0x14b, 0x14d, 0x5, 0x40, 0x21, 0x2, 0x14c, 0x14a, 0x3, 0x2,
+ 0x2, 0x2, 0x14d, 0x150, 0x3, 0x2, 0x2, 0x2, 0x14e, 0x14c, 0x3, 0x2,
+ 0x2, 0x2, 0x14e, 0x14f, 0x3, 0x2, 0x2, 0x2, 0x14f, 0x152, 0x3, 0x2,
+ 0x2, 0x2, 0x150, 0x14e, 0x3, 0x2, 0x2, 0x2, 0x151, 0x149, 0x3, 0x2,
+ 0x2, 0x2, 0x151, 0x152, 0x3, 0x2, 0x2, 0x2, 0x152, 0x153, 0x3, 0x2,
+ 0x2, 0x2, 0x153, 0x154, 0x7, 0x10, 0x2, 0x2, 0x154, 0x165, 0x3, 0x2,
+ 0x2, 0x2, 0x155, 0x165, 0x5, 0x46, 0x24, 0x2, 0x156, 0x157, 0x7,
+ 0xf, 0x2, 0x2, 0x157, 0x158, 0x5, 0x40, 0x21, 0x2, 0x158, 0x159,
+ 0x7, 0x10, 0x2, 0x2, 0x159, 0x165, 0x3, 0x2, 0x2, 0x2, 0x15a, 0x15b,
+ 0x5, 0x52, 0x2a, 0x2, 0x15b, 0x15c, 0x5, 0x40, 0x21, 0x8, 0x15c,
+ 0x165, 0x3, 0x2, 0x2, 0x2, 0x15d, 0x15f, 0x5, 0x12, 0xa, 0x2, 0x15e,
+ 0x15d, 0x3, 0x2, 0x2, 0x2, 0x15f, 0x162, 0x3, 0x2, 0x2, 0x2, 0x160,
+ 0x15e, 0x3, 0x2, 0x2, 0x2, 0x160, 0x161, 0x3, 0x2, 0x2, 0x2, 0x161,
+ 0x163, 0x3, 0x2, 0x2, 0x2, 0x162, 0x160, 0x3, 0x2, 0x2, 0x2, 0x163,
+ 0x165, 0x5, 0x4a, 0x26, 0x2, 0x164, 0x13d, 0x3, 0x2, 0x2, 0x2, 0x164,
+ 0x155, 0x3, 0x2, 0x2, 0x2, 0x164, 0x156, 0x3, 0x2, 0x2, 0x2, 0x164,
+ 0x15a, 0x3, 0x2, 0x2, 0x2, 0x164, 0x160, 0x3, 0x2, 0x2, 0x2, 0x165,
+ 0x193, 0x3, 0x2, 0x2, 0x2, 0x166, 0x167, 0xc, 0x6, 0x2, 0x2, 0x167,
+ 0x168, 0x5, 0x54, 0x2b, 0x2, 0x168, 0x169, 0x5, 0x40, 0x21, 0x7,
+ 0x169, 0x192, 0x3, 0x2, 0x2, 0x2, 0x16a, 0x16b, 0xc, 0x5, 0x2, 0x2,
+ 0x16b, 0x16c, 0x7, 0x1e, 0x2, 0x2, 0x16c, 0x16d, 0x5, 0x40, 0x21,
+ 0x2, 0x16d, 0x16e, 0x7, 0x8, 0x2, 0x2, 0x16e, 0x16f, 0x5, 0x40, 0x21,
+ 0x6, 0x16f, 0x192, 0x3, 0x2, 0x2, 0x2, 0x170, 0x171, 0xc, 0xc, 0x2,
+ 0x2, 0x171, 0x172, 0x7, 0x1d, 0x2, 0x2, 0x172, 0x174, 0x5, 0x48,
+ 0x25, 0x2, 0x173, 0x175, 0x5, 0x28, 0x15, 0x2, 0x174, 0x173, 0x3,
+ 0x2, 0x2, 0x2, 0x174, 0x175, 0x3, 0x2, 0x2, 0x2, 0x175, 0x176, 0x3,
+ 0x2, 0x2, 0x2, 0x176, 0x17f, 0x7, 0xf, 0x2, 0x2, 0x177, 0x17c, 0x5,
+ 0x40, 0x21, 0x2, 0x178, 0x179, 0x7, 0x11, 0x2, 0x2, 0x179, 0x17b,
+ 0x5, 0x40, 0x21, 0x2, 0x17a, 0x178, 0x3, 0x2, 0x2, 0x2, 0x17b, 0x17e,
+ 0x3, 0x2, 0x2, 0x2, 0x17c, 0x17a, 0x3, 0x2, 0x2, 0x2, 0x17c, 0x17d,
+ 0x3, 0x2, 0x2, 0x2, 0x17d, 0x180, 0x3, 0x2, 0x2, 0x2, 0x17e, 0x17c,
+ 0x3, 0x2, 0x2, 0x2, 0x17f, 0x177, 0x3, 0x2, 0x2, 0x2, 0x17f, 0x180,
+ 0x3, 0x2, 0x2, 0x2, 0x180, 0x181, 0x3, 0x2, 0x2, 0x2, 0x181, 0x182,
+ 0x7, 0x10, 0x2, 0x2, 0x182, 0x192, 0x3, 0x2, 0x2, 0x2, 0x183, 0x186,
+ 0xc, 0x9, 0x2, 0x2, 0x184, 0x187, 0x5, 0x42, 0x22, 0x2, 0x185, 0x187,
+ 0x5, 0x44, 0x23, 0x2, 0x186, 0x184, 0x3, 0x2, 0x2, 0x2, 0x186, 0x185,
+ 0x3, 0x2, 0x2, 0x2, 0x187, 0x188, 0x3, 0x2, 0x2, 0x2, 0x188, 0x189,
+ 0x5, 0x4a, 0x26, 0x2, 0x189, 0x192, 0x3, 0x2, 0x2, 0x2, 0x18a, 0x18b,
+ 0xc, 0x7, 0x2, 0x2, 0x18b, 0x192, 0x5, 0x50, 0x29, 0x2, 0x18c, 0x18d,
+ 0xc, 0x4, 0x2, 0x2, 0x18d, 0x18e, 0x7, 0xb, 0x2, 0x2, 0x18e, 0x18f,
+ 0x5, 0x40, 0x21, 0x2, 0x18f, 0x190, 0x7, 0xc, 0x2, 0x2, 0x190, 0x192,
+ 0x3, 0x2, 0x2, 0x2, 0x191, 0x166, 0x3, 0x2, 0x2, 0x2, 0x191, 0x16a,
+ 0x3, 0x2, 0x2, 0x2, 0x191, 0x170, 0x3, 0x2, 0x2, 0x2, 0x191, 0x183,
+ 0x3, 0x2, 0x2, 0x2, 0x191, 0x18a, 0x3, 0x2, 0x2, 0x2, 0x191, 0x18c,
+ 0x3, 0x2, 0x2, 0x2, 0x192, 0x195, 0x3, 0x2, 0x2, 0x2, 0x193, 0x191,
+ 0x3, 0x2, 0x2, 0x2, 0x193, 0x194, 0x3, 0x2, 0x2, 0x2, 0x194, 0x41,
+ 0x3, 0x2, 0x2, 0x2, 0x195, 0x193, 0x3, 0x2, 0x2, 0x2, 0x196, 0x197,
+ 0x7, 0x1d, 0x2, 0x2, 0x197, 0x43, 0x3, 0x2, 0x2, 0x2, 0x198, 0x199,
+ 0x7, 0x1f, 0x2, 0x2, 0x199, 0x45, 0x3, 0x2, 0x2, 0x2, 0x19a, 0x19b,
+ 0x9, 0x2, 0x2, 0x2, 0x19b, 0x47, 0x3, 0x2, 0x2, 0x2, 0x19c, 0x19d,
+ 0x7, 0x41, 0x2, 0x2, 0x19d, 0x49, 0x3, 0x2, 0x2, 0x2, 0x19e, 0x19f,
+ 0x7, 0x41, 0x2, 0x2, 0x19f, 0x4b, 0x3, 0x2, 0x2, 0x2, 0x1a0, 0x1a1,
+ 0x7, 0x41, 0x2, 0x2, 0x1a1, 0x4d, 0x3, 0x2, 0x2, 0x2, 0x1a2, 0x1a3,
+ 0x7, 0x41, 0x2, 0x2, 0x1a3, 0x4f, 0x3, 0x2, 0x2, 0x2, 0x1a4, 0x1a5,
+ 0x9, 0x3, 0x2, 0x2, 0x1a5, 0x51, 0x3, 0x2, 0x2, 0x2, 0x1a6, 0x1ae,
+ 0x7, 0x22, 0x2, 0x2, 0x1a7, 0x1ae, 0x7, 0x23, 0x2, 0x2, 0x1a8, 0x1ae,
+ 0x7, 0x24, 0x2, 0x2, 0x1a9, 0x1ae, 0x7, 0x25, 0x2, 0x2, 0x1aa, 0x1ae,
+ 0x7, 0x26, 0x2, 0x2, 0x1ab, 0x1ae, 0x7, 0xa, 0x2, 0x2, 0x1ac, 0x1ae,
+ 0x5, 0x50, 0x29, 0x2, 0x1ad, 0x1a6, 0x3, 0x2, 0x2, 0x2, 0x1ad, 0x1a7,
+ 0x3, 0x2, 0x2, 0x2, 0x1ad, 0x1a8, 0x3, 0x2, 0x2, 0x2, 0x1ad, 0x1a9,
+ 0x3, 0x2, 0x2, 0x2, 0x1ad, 0x1aa, 0x3, 0x2, 0x2, 0x2, 0x1ad, 0x1ab,
+ 0x3, 0x2, 0x2, 0x2, 0x1ad, 0x1ac, 0x3, 0x2, 0x2, 0x2, 0x1ae, 0x53,
+ 0x3, 0x2, 0x2, 0x2, 0x1af, 0x1b0, 0x9, 0x4, 0x2, 0x2, 0x1b0, 0x55,
+ 0x3, 0x2, 0x2, 0x2, 0x27, 0x59, 0x63, 0x6b, 0x79, 0x85, 0x8a, 0x8f,
+ 0x95, 0x98, 0xa2, 0xac, 0xb3, 0xb6, 0xbc, 0xc4, 0xca, 0xd0, 0xd4,
+ 0xe3, 0xee, 0x103, 0x10b, 0x10f, 0x121, 0x141, 0x146, 0x14e, 0x151,
+ 0x160, 0x164, 0x174, 0x17c, 0x17f, 0x186, 0x191, 0x193, 0x1ad,
};
_serializedATN.insert(_serializedATN.end(), serializedATNSegment0,